text
stringlengths 9
498k
| input_ids
sequencelengths 5
331k
| attention_mask
sequencelengths 5
331k
|
---|---|---|
#include "UIDock.h"
#include "UIObject.h"
#include "../GraphicsManager.h"
namespace star
{
UIDock::UIDock(const tstring & name)
: UIObject(name)
, m_Dimensions(
GraphicsManager::GetInstance()->GetScreenResolution().x,
GraphicsManager::GetInstance()->GetScreenResolution().y)
{
}
UIDock::UIDock(
const tstring & name,
float32 width,
float32 height
)
: UIObject(name)
, m_Dimensions(width, height)
{
}
UIDock::~UIDock(void)
{
}
void UIDock::SetHorizontalAlignment(
HorizontalAlignment alignment,
bool redefineCenter
)
{
if(redefineCenter)
{
switch(alignment)
{
case HorizontalAlignment::Left:
GetTransform()->SetCenterX(0);
break;
case HorizontalAlignment::Center:
GetTransform()->SetCenterX(
m_Dimensions.x / 2.0f
);
break;
case HorizontalAlignment::Right:
GetTransform()->SetCenterX(
m_Dimensions.x
);
break;
}
}
UIObject::SetHorizontalAlignment(
alignment,
redefineCenter
);
}
void UIDock::SetVerticalAlignment(
VerticalAlignment alignment,
bool redefineCenter
)
{
if(redefineCenter)
{
switch(alignment)
{
case VerticalAlignment::Bottom:
GetTransform()->SetCenterY(0);
break;
case VerticalAlignment::Center:
GetTransform()->SetCenterY(
m_Dimensions.y / 2.0f
);
break;
case VerticalAlignment::Top:
GetTransform()->SetCenterY(
m_Dimensions.y
);
break;
}
}
UIObject::SetVerticalAlignment(
alignment,
redefineCenter
);
}
void UIDock::SetDimensions(const vec2 & dimensions)
{
m_Dimensions = dimensions;
RepositionChildren();
}
void UIDock::SetDimensions(float32 x, float32 y)
{
m_Dimensions.x = x;
m_Dimensions.y = y;
RepositionChildren();
}
void UIDock::SetDimensionsX(float32 x)
{
m_Dimensions.x = x;
RepositionChildren();
}
void UIDock::SetDimensionsY(float32 y)
{
m_Dimensions.y = y;
RepositionChildren();
}
vec2 UIDock::GetDimensions() const
{
return m_Dimensions;
}
bool UIDock::CheckCulling(
float32 left,
float32 right,
float32 top,
float32 bottom
)
{
return
(m_Position.x + m_Dimensions.x >= left && m_Position.x <= right)
&&
(m_Position.y + m_Dimensions.y >= bottom && m_Position.y <= top);
}
}
| [
1,
396,
2856,
376,
11150,
1698,
29889,
29882,
19451,
13,
29937,
2856,
376,
3120,
2061,
29889,
29882,
19451,
13,
30004,
13,
29937,
2856,
376,
6995,
17290,
3260,
29889,
29882,
19451,
13,
30004,
13,
22377,
5810,
30004,
13,
14626,
13,
12,
11150,
1698,
1057,
11150,
1698,
29898,
3075,
260,
1807,
669,
1024,
8443,
13,
12,
12,
29901,
3740,
2061,
29898,
978,
8443,
13,
12,
12,
29892,
286,
29918,
16142,
5580,
29898,
30004,
13,
12,
12,
12,
17290,
3260,
1057,
2577,
4998,
13539,
2577,
11357,
12375,
918,
2141,
29916,
11167,
13,
12,
12,
12,
17290,
3260,
1057,
2577,
4998,
13539,
2577,
11357,
12375,
918,
2141,
29891,
8443,
13,
12,
14626,
13,
30004,
13,
12,
8117,
13,
30004,
13,
12,
11150,
1698,
1057,
11150,
1698,
29898,
30004,
13,
12,
12,
12,
3075,
260,
1807,
669,
1024,
11167,
13,
12,
12,
12,
7411,
29941,
29906,
2920,
11167,
13,
12,
12,
12,
7411,
29941,
29906,
3171,
30004,
13,
12,
12,
12,
8443,
13,
12,
12,
29901,
3740,
2061,
29898,
978,
8443,
13,
12,
12,
29892,
286,
29918,
16142,
5580,
29898,
2103,
29892,
3171,
8443,
13,
12,
14626,
13,
30004,
13,
12,
8117,
13,
30004,
13,
12,
11150,
1698,
1057,
30022,
11150,
1698,
29898,
5405,
8443,
13,
12,
14626,
13,
30004,
13,
12,
8117,
13,
12,
30004,
13,
12,
5405,
501,
1367,
1698,
1057,
2697,
24932,
14658,
29898,
30004,
13,
12,
12,
24932,
14658,
22239,
11167,
13,
12,
12,
11227,
337,
7922,
13409,
30004,
13,
12,
12,
8443,
13,
12,
14626,
13,
12,
12,
361,
29898,
276,
7922,
13409,
8443,
13,
12,
12,
14626,
13,
12,
12,
12,
15123,
29898,
2520,
358,
8443,
13,
12,
12,
12,
14626,
13,
12,
12,
12,
12,
4878,
6912,
7731,
14658,
1057,
8091,
29901,
30004,
13,
12,
12,
12,
12,
12,
2577,
13372,
13539,
2697,
13409,
29990,
29898,
29900,
6075,
13,
12,
12,
12,
12,
12,
8690,
2104,
13,
12,
12,
12,
12,
4878,
6912,
7731,
14658,
1057,
13409,
29901,
30004,
13,
12,
12,
12,
12,
12,
2577,
13372,
13539,
2697,
13409,
29990,
29898,
30004,
13,
12,
12,
12,
12,
12,
12,
29885,
29918,
16142,
5580,
29889,
29916,
847,
29871,
29906,
29889,
29900,
29888,
30004,
13,
12,
12,
12,
12,
12,
12,
6075,
13,
12,
12,
12,
12,
12,
8690,
2104,
13,
12,
12,
12,
12,
4878,
6912,
7731,
14658,
1057,
7341,
29901,
30004,
13,
12,
12,
12,
12,
12,
2577,
13372,
13539,
2697,
13409,
29990,
29898,
30004,
13,
12,
12,
12,
12,
12,
12,
29885,
29918,
16142,
5580,
29889,
29916,
30004,
13,
12,
12,
12,
12,
12,
12,
6075,
13,
12,
12,
12,
12,
12,
8690,
2104,
13,
12,
12,
12,
8117,
13,
12,
12,
8117,
13,
30004,
13,
12,
12,
3120,
2061,
1057,
2697,
24932,
14658,
29898,
30004,
13,
12,
12,
12,
2520,
358,
11167,
13,
12,
12,
12,
276,
7922,
13409,
30004,
13,
12,
12,
12,
6075,
13,
12,
8117,
13,
30004,
13,
12,
5405,
501,
1367,
1698,
1057,
2697,
29270,
14658,
29898,
30004,
13,
12,
12,
29270,
14658,
22239,
11167,
13,
12,
12,
11227,
337,
7922,
13409,
30004,
13,
12,
12,
8443,
13,
12,
14626,
13,
12,
12,
361,
29898,
276,
7922,
13409,
8443,
13,
12,
12,
14626,
13,
12,
12,
12,
15123,
29898,
2520,
358,
8443,
13,
12,
12,
12,
14626,
13,
12,
12,
12,
12,
4878,
11198,
936,
14658,
1057,
15342,
29901,
30004,
13,
12,
12,
12,
12,
12,
2577,
13372,
13539,
2697,
13409,
29979,
29898,
29900,
6075,
13,
12,
12,
12,
12,
12,
8690,
2104,
13,
12,
12,
12,
12,
4878,
11198,
936,
14658,
1057,
13409,
29901,
30004,
13,
12,
12,
12,
12,
12,
2577,
13372,
13539,
2697,
13409,
29979,
29898,
30004,
13,
12,
12,
12,
12,
12,
12,
29885,
29918,
16142,
5580,
29889,
29891,
847,
29871,
29906,
29889,
29900,
29888,
30004,
13,
12,
12,
12,
12,
12,
12,
6075,
13,
12,
12,
12,
12,
12,
8690,
2104,
13,
12,
12,
12,
12,
4878,
11198,
936,
14658,
1057,
7031,
29901,
30004,
13,
12,
12,
12,
12,
12,
2577,
13372,
13539,
2697,
13409,
29979,
29898,
30004,
13,
12,
12,
12,
12,
12,
12,
29885,
29918,
16142,
5580,
29889,
29891,
30004,
13,
12,
12,
12,
12,
12,
12,
6075,
13,
12,
12,
12,
12,
12,
8690,
2104,
13,
12,
12,
12,
8117,
13,
12,
12,
8117,
13,
30004,
13,
12,
12,
3120,
2061,
1057,
2697,
29270,
14658,
29898,
30004,
13,
12,
12,
12,
2520,
358,
11167,
13,
12,
12,
12,
276,
7922,
13409,
30004,
13,
12,
12,
12,
6075,
13,
12,
8117,
13,
30004,
13,
12,
5405,
501,
1367,
1698,
1057,
2697,
16142,
5580,
29898,
3075,
9649,
29906,
669,
13391,
8443,
13,
12,
14626,
13,
12,
12,
29885,
29918,
16142,
5580,
353,
13391,
2104,
13,
12,
12,
5612,
4490,
19334,
14078,
13,
12,
8117,
13,
30004,
13,
12,
5405,
501,
1367,
1698,
1057,
2697,
16142,
5580,
29898,
7411,
29941,
29906,
921,
29892,
5785,
29941,
29906,
343,
8443,
13,
12,
14626,
13,
12,
12,
29885,
29918,
16142,
5580,
29889,
29916,
353,
921,
2104,
13,
12,
12,
29885,
29918,
16142,
5580,
29889,
29891,
353,
343,
2104,
13,
12,
12,
5612,
4490,
19334,
14078,
13,
12,
8117,
13,
30004,
13,
12,
5405,
501,
1367,
1698,
1057,
2697,
16142,
5580,
29990,
29898,
7411,
29941,
29906,
921,
8443,
13,
12,
14626,
13,
12,
12,
29885,
29918,
16142,
5580,
29889,
29916,
353,
921,
2104,
13,
12,
12,
5612,
4490,
19334,
14078,
13,
12,
8117,
13,
30004,
13,
12,
5405,
501,
1367,
1698,
1057,
2697,
16142,
5580,
29979,
29898,
7411,
29941,
29906,
343,
8443,
13,
12,
14626,
13,
12,
12,
29885,
29918,
16142,
5580,
29889,
29891,
353,
343,
2104,
13,
12,
12,
5612,
4490,
19334,
14078,
13,
12,
8117,
13,
30004,
13,
12,
2003,
29906,
501,
1367,
1698,
1057,
2577,
16142,
5580,
580,
1040,
30004,
13,
12,
14626,
13,
12,
12,
2457,
286,
29918,
16142,
5580,
2104,
13,
12,
8117,
13,
30004,
13,
12,
11227,
501,
1367,
1698,
1057,
5596,
29907,
913,
292,
29898,
30004,
13,
12,
12,
12,
7411,
29941,
29906,
2175,
11167,
13,
12,
12,
12,
7411,
29941,
29906,
1492,
11167,
13,
12,
12,
12,
7411,
29941,
29906,
2246,
11167,
13,
12,
12,
12,
7411,
29941,
29906,
5970,
30004,
13,
12,
12,
12,
8443,
13,
12,
14626,
13,
12,
12,
2457,
30004,
13,
12,
12,
12,
29898,
29885,
29918,
8003,
29889,
29916,
718,
286,
29918,
16142,
5580,
29889,
29916,
6736,
2175,
2607,
286,
29918,
8003,
29889,
29916,
5277,
1492,
8443,
13,
12,
12,
12,
12774,
30004,
13,
12,
12,
12,
29898,
29885,
29918,
8003,
29889,
29891,
718,
286,
29918,
16142,
5580,
29889,
29891,
6736,
5970,
2607,
286,
29918,
8003,
29889,
29891,
5277,
2246,
6075,
13,
12,
8117,
13,
8117,
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
] |
Happy New Year 2008
I hope I am not so late to wish you all Happy New Year. So, what are your resolutions for 2008? I hope you have achived all your resolutions that you made last year. 😀
Well, this year will be my last semester at UTM Skudai. I hope I will graduate as second class upper at least. Could not get the first class because my CGPA is not that good. Hahaha. So lazy to study but very serious in doing websites and blogs.
Anyway, I hope you all will be success in your career, websites, life and everything for this year. For those who will get married this year, I wish you “Selamat Pengantin Baru”. 😉 Don’t forget to invite me ha. :p | [
1,
28569,
1570,
8905,
29871,
29906,
29900,
29900,
29947,
13,
13,
29902,
4966,
306,
626,
451,
577,
5683,
304,
6398,
366,
599,
28569,
1570,
8905,
29889,
1105,
29892,
825,
526,
596,
10104,
29879,
363,
29871,
29906,
29900,
29900,
29947,
29973,
306,
4966,
366,
505,
3657,
2347,
599,
596,
10104,
29879,
393,
366,
1754,
1833,
1629,
29889,
29871,
243,
162,
155,
131,
13,
13,
11284,
29892,
445,
1629,
674,
367,
590,
1833,
3031,
4156,
472,
501,
23081,
4971,
566,
1794,
29889,
306,
4966,
306,
674,
10591,
403,
408,
1473,
770,
7568,
472,
3203,
29889,
6527,
451,
679,
278,
937,
770,
1363,
590,
8446,
7228,
338,
451,
393,
1781,
29889,
379,
801,
25613,
29889,
1105,
17366,
304,
6559,
541,
1407,
10676,
297,
2599,
28007,
322,
12618,
29879,
29889,
13,
13,
10773,
1582,
29892,
306,
4966,
366,
599,
674,
367,
2551,
297,
596,
6413,
29892,
28007,
29892,
2834,
322,
4129,
363,
445,
1629,
29889,
1152,
1906,
1058,
674,
679,
8300,
445,
1629,
29892,
306,
6398,
366,
1346,
29903,
295,
314,
271,
349,
996,
13027,
2261,
29884,
8643,
29871,
243,
162,
155,
140,
3872,
30010,
29873,
9566,
304,
2437,
568,
592,
447,
29889,
584,
29886
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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:
C# Can't public list is null?
When I try to add to a list that I declared at the start of the file it says gives a null reference exception.
I have this at the start of the code:
namespace YTDL
{
public partial class options : Form
{
public List<string> output;
public List<RadioButton> radioButtons;
public RadioButton checkedButton;
then I have this method
public void updateRdio()
{
if (output != null)
{
for (int i = 7; i < output.Count(); i++)
{
radioButtons[i] = new RadioButton();
radioButtons[i].Text = output[i];
radioButtons[i].Location = new System.Drawing.Point(10, 30 + (i - 7) * 30);
radioButtons[i].Name = "radioButton" + i.ToString();
radioButtons[i].AutoSize = true;
this.Controls.Add(radioButtons[i]);
Console.Write(output[i]);
}
}
}
when I run it it breaks and highlights the lines that use "radioButtons" and says null reference error.
A:
You have to initialize this list before adding elements to it:
radioButtons = new List<RadioButton>();
for (int i = 7; i < output.Count(); i++)
{
radioButtons[i] = new RadioButton();
radioButtons[i].Text = output[i];
radioButtons[i].Location = new System.Drawing.Point(10, 30 + (i - 7) * 30);
radioButtons[i].Name = "radioButton" + i.ToString();
radioButtons[i].AutoSize = true;
this.Controls.Add(radioButtons[i]);
Console.Write(output[i]);
}
| [
1,
660,
29901,
13,
13,
29907,
29937,
1815,
29915,
29873,
970,
1051,
338,
1870,
29973,
13,
13,
10401,
306,
1018,
304,
788,
304,
263,
1051,
393,
306,
8052,
472,
278,
1369,
310,
278,
934,
372,
4083,
4076,
263,
1870,
3407,
3682,
29889,
13,
29902,
505,
445,
472,
278,
1369,
310,
278,
775,
29901,
13,
22377,
612,
29911,
19558,
13,
29912,
13,
1678,
970,
7687,
770,
3987,
584,
3812,
13,
1678,
426,
13,
4706,
970,
2391,
29966,
1807,
29958,
1962,
29936,
13,
4706,
970,
2391,
29966,
21818,
3125,
29958,
7155,
29819,
787,
29936,
13,
4706,
970,
9204,
3125,
7120,
3125,
29936,
13,
13,
6098,
306,
505,
445,
1158,
13,
3597,
1780,
2767,
29934,
29881,
601,
580,
13,
29912,
13,
1678,
565,
313,
4905,
2804,
1870,
29897,
13,
1678,
426,
13,
4706,
363,
313,
524,
474,
353,
29871,
29955,
29936,
474,
529,
1962,
29889,
3981,
890,
474,
4862,
13,
4706,
426,
462,
1678,
13,
9651,
7155,
29819,
787,
29961,
29875,
29962,
353,
716,
9204,
3125,
890,
13,
9651,
7155,
29819,
787,
29961,
29875,
1822,
1626,
353,
1962,
29961,
29875,
1385,
13,
9651,
7155,
29819,
787,
29961,
29875,
1822,
6508,
353,
716,
2184,
29889,
16327,
29889,
5228,
29898,
29896,
29900,
29892,
29871,
29941,
29900,
718,
313,
29875,
448,
29871,
29955,
29897,
334,
29871,
29941,
29900,
416,
13,
9651,
7155,
29819,
787,
29961,
29875,
1822,
1170,
353,
376,
13399,
3125,
29908,
718,
474,
29889,
8246,
890,
13,
9651,
7155,
29819,
787,
29961,
29875,
1822,
12300,
3505,
353,
1565,
29936,
13,
9651,
445,
29889,
17825,
29889,
2528,
29898,
13399,
29819,
787,
29961,
29875,
5691,
13,
9651,
9405,
29889,
6113,
29898,
4905,
29961,
29875,
5691,
13,
4706,
500,
13,
1678,
500,
13,
29913,
13,
13,
8256,
306,
1065,
372,
372,
16706,
322,
12141,
29879,
278,
3454,
393,
671,
376,
13399,
29819,
787,
29908,
322,
4083,
1870,
3407,
1059,
29889,
13,
13,
29909,
29901,
13,
13,
3492,
505,
304,
11905,
445,
1051,
1434,
4417,
3161,
304,
372,
29901,
13,
13399,
29819,
787,
353,
716,
2391,
29966,
21818,
3125,
8295,
13,
13,
1454,
313,
524,
474,
353,
29871,
29955,
29936,
474,
529,
1962,
29889,
3981,
890,
474,
4862,
13,
29912,
462,
1678,
13,
1678,
7155,
29819,
787,
29961,
29875,
29962,
353,
716,
9204,
3125,
890,
13,
1678,
7155,
29819,
787,
29961,
29875,
1822,
1626,
353,
1962,
29961,
29875,
1385,
13,
1678,
7155,
29819,
787,
29961,
29875,
1822,
6508,
353,
716,
2184,
29889,
16327,
29889,
5228,
29898,
29896,
29900,
29892,
29871,
29941,
29900,
718,
313,
29875,
448,
29871,
29955,
29897,
334,
29871,
29941,
29900,
416,
13,
1678,
7155,
29819,
787,
29961,
29875,
1822,
1170,
353,
376,
13399,
3125,
29908,
718,
474,
29889,
8246,
890,
13,
1678,
7155,
29819,
787,
29961,
29875,
1822,
12300,
3505,
353,
1565,
29936,
13,
1678,
445,
29889,
17825,
29889,
2528,
29898,
13399,
29819,
787,
29961,
29875,
5691,
13,
1678,
9405,
29889,
6113,
29898,
4905,
29961,
29875,
5691,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Trump Issues New Travel Restrictions As Ban Expires
26/09/2017
"The fact that Trump has added North Korea - with few visitors to the US - and a few government officials from Venezuela doesn't obfuscate the real fact that the administration's order is still a Muslim ban", said Anthony D. Romero, the executive director of the American Civil Liberties Union.
US President Donald Trump has announced travel restrictions into the country and the new list features people from North Korea.
Taylor said the recommendations were based on whether countries were providing US authorities with enough information to validate the identities of potential immigrants and visitors and to determine whether or not they posed a threat.
Johnathan Smith, legal director of the advocacy group Muslim Advocates, also slammed the measure as the "same Muslim ban" and an attempt "to undermine our Constitution".
Iran, Libya, Syria, Yemen and Somalia were left on the list of affected countries in a new proclamation issued by the president.
Such a grace period may prevent mass confusions and chaos across USA airports seen in late January, when the initial travel ban took effect immediately upon Trump's announcement.
Days ago, the USA president called for a "tougher" travel ban after a bomb partially exploded on a London subway. Restrictions may be removed from countries if they meet a new set of minimum standards, according to the New York Times. Its most significant act came in June when it allowed both bans to go into effect in a limited fashion.
DHS confirmed that last week it provided the administration with a classified security report examining the vetting process for entry into the US.
Google Launches Its Mobile Payment App Tez In India
In addition to the support for banks, Tez also supports online payment partners which include Dominos, RedBus, and Jet Airways. Using Tez lets you win huge rewards by way of Scratch Cards of upto Rs 1,000 which can be won with each eligible transactions.
The White House said the restrictions follow a review of information sharing by foreign governments. We will not admit those into our country we can not safely vet,"Trump Twitted". A Justice Department spokesperson said the solicitor general will be updating the court about the new restrictions, adding that the administration will continue to defend the president's "lawful authority to issue his executive order". The Department of Homeland Security completed its review and the administration's new guidelines are based on its recommendations.
Senior administration officials say that the ban is now "condition-based and not time-based", so countries may come off the restricted list at some point.
One mostly Muslim country, Sudan, was dropped from the previous list and another, Chad, was added.
The enhanced national security measures, aim to create, for the first time in history, minimum requirements for global cooperation to support visa and immigration vetting and adjudications for individuals seeking entry to the U.S. They are designed to protect Americans' safety in an era of unsafe terrorism and transnational crime.
Meanwhile, Trump kept the controversial travel ban which was set to expire Sunday on five of six countries, namely, Iran, Libya, Somalia, Syria and Yemen, and lifted restrictions on Sudan.
Trump signed the initial travel ban during his first week in office, but it was met with immediate legal challenges, which have continued to hinder implementation of the full scope of the executive order.
The U.S. then shared the new baseline requirements with every foreign government in July and gave them 50 days to comply.
"Six of President Trump's targeted countries are Muslim".
Related News:
You can see this in the way the yield curve actually flattened as long-term Treasury bonds failed to decline as one would expect. She said the Fed would adjust its policymaking if it thought the causes of low inflation had become permanent.
The monitoring stretched into 2017 following the renewal of the FISA warrant after the first one was discontinued a year ago . Lindsey Graham said that if true, Trump's wiretapping claims would be the "biggest political scandal since Watergate".
The Snapchat post also showed the woman and her colleague allegedly make a baby "dance" by holding it under the armpits. The two nurses were dismissed from their jobs after a whistle blower alerted the hospital to the posts.
The measure would end the Affordable Care Act's requirements that individuals have insurance and that most employers provide it. Rand Paul (R-KY) could ultimately back the Graham-Cassidy health reform bill, which aims to repeal and replace Obamacare.
Trump's comments came a day after Kim vowed North Korea would complete its controversial nuclear weapons ambitions. She said , however, that options for dealing with the regime of Kim Jong Un are not limited to diplomacy.
It comes as Mrs Clinton has released her latest book, " What Happened ", which tackles the 2016 U.S. presidential election . It's refreshing to have a politician in the White House that isn't afraid to crack a joke every once in a while.
However, a repeat of the current "Grand Coalition" with the Social Democrats is not the chancellor's only option. AfD co-leader Alexander Gauland vowed that "we will take our country back" and promised to "chase" Merkel.
North Korea may be famous for the bombastic, derogatory and often-awkward English phrases it uses to slam its enemies. President Donald Trump and Japanese Prime Minister Shinzo Abe are discussing the ongoing crisis with North Korea .
Kamanyola is home to 2,000 of the almost 44,000 people who have fled Burundi to neighboring Congo, according to the U.N. Eyewitness Alfred Rukungo said the soldiers continued shooting into the crowd even after some refugees were wounded.
Hospital officials said that numerous co-morbid conditions including heart diseases and kidney dysfunction resulted in her death. Abdul Atti's sister, Shaimaa Selim, was her fiercest champion, raising money and reaching out to doctors until she found Dr.
Fans will get to see Kingsman: The Golden Circle - and all of its various punches - when the film premieres on September 22. The movie needs an editor, or a bartender to remind the director when he's hit the two hour mark: Last orders, Mr.
Carlos Muñoz Portal was scouting locations for season four of the popular Netflix series when he was shot to death. The area of the country in which his corpse was found is considered to have one of world's highest murder rates.
North Korea tests another nuclear weapon
North Korea's recent missile launches over Japan especially drew stern rebukes from Tokyo and the global community. Park said analysts could not rule out the possibility that a natural quake occurred because of a nuclear test.
Apple TV 4K Finally Catches Up to Its Competitors
The magazine and digital news service rated the Apple TV 4K 4 out of 5 based on its "gorgeous high-fidelity video". Apple also announced last week that it will upgrade customers' previous purchases to 4K free of charge.
Agreement reached for Diego Costa to return to Atletico
I totally agree when journalists talk because you journalists speak well and know what you are saying. "I'm leaving home at once". According to the Mirror , Chelsea have reached an agreement with Atletico Madrid for the sale of their star striker.
Statement by Minister Joly on Rosh Hashanah
It is a time for observant people to acknowledge their sins of the previous year and are judged for their transgressions by God. Like with many Jewish holidays, it's essentially an excuse to get together with your family and gorge on delicious food.
IOS 11: 15 Hidden Features We Bet You Won't Know!
We have been speculating about what the new iOS would have in store for us and luckily, Apple did not disappoint. Apple advises users to access iTunes via trusted computers and then connect their devices to the computers.
Forex - Dollar Broadly Lower With All Eyes On Fed
ENERGY: Benchmark U.S. crude fell 36 cents to $49.53 per barrel in electronic trading on the New York Mercantile Exchange. Forecasters expect the Fed to leave interest rates unchanged and stick to plans to raise rates in December.
Trump plans military parade for Independence Day
Trump said he was so impressed by the military parade in France that he would like to recreate it in Washington. The military parade was "I think a tremendous thing for France and for the spirit of France", Trump said Monday.
Klopp: Liverpool could have won every game
Jurgen Klopp says it feels "strange" and "wrong" that Liverpool could only muster a point against Burnley at Anfield . The second half picked up were the first had left off, with Liverpool probing and Burnley doing well to contain them.
Singapore Grand Prix gets new four-year F1 deal
The fact Mercedes have struggled on high down force circuits this year gives him even more confidence heading into the weekend. Red Bull's Daniel Ricciardo holds the single lap record in-race in Singapore and was a standout on the first day of practice.
XI beat Pakistan by 7 wickets in 2nd T-20
But Perera took charge in the last five overs as he cut loose against Pakistan seamers Shoaib Malik and Rumman Raees. Badree (2-31), Perera (2-23 of three overs) and Tahir (1-29 of three) were the prominent World XI bowlers. | [
1,
27504,
16982,
1041,
1570,
3201,
955,
11654,
4146,
1080,
1094,
10765,
12027,
2658,
13,
13,
29906,
29953,
29914,
29900,
29929,
29914,
29906,
29900,
29896,
29955,
13,
13,
29908,
1576,
2114,
393,
27504,
756,
2715,
4644,
19109,
448,
411,
2846,
26824,
304,
278,
3148,
448,
322,
263,
2846,
5874,
24921,
515,
20931,
1838,
29915,
29873,
704,
29888,
22142,
403,
278,
1855,
2114,
393,
278,
17517,
29915,
29879,
1797,
338,
1603,
263,
23772,
9892,
613,
1497,
16477,
360,
29889,
6033,
1489,
29892,
278,
22760,
8881,
310,
278,
3082,
12886,
25421,
583,
7761,
29889,
13,
13,
3308,
7178,
18935,
27504,
756,
9326,
9850,
25091,
964,
278,
4234,
322,
278,
716,
1051,
5680,
2305,
515,
4644,
19109,
29889,
13,
13,
29911,
11017,
1497,
278,
6907,
800,
892,
2729,
373,
3692,
10916,
892,
13138,
3148,
21142,
411,
3307,
2472,
304,
12725,
278,
2893,
1907,
310,
7037,
5198,
4481,
1934,
322,
26824,
322,
304,
8161,
3692,
470,
451,
896,
926,
287,
263,
28469,
29889,
13,
13,
11639,
11385,
7075,
29892,
11706,
8881,
310,
278,
22545,
4135,
2318,
23772,
25215,
542,
1078,
29892,
884,
2243,
28913,
278,
5645,
408,
278,
376,
17642,
23772,
9892,
29908,
322,
385,
4218,
376,
517,
563,
837,
457,
1749,
20063,
1642,
13,
13,
29902,
661,
29892,
8153,
3761,
29892,
8713,
2849,
29892,
612,
12398,
322,
6254,
19627,
892,
2175,
373,
278,
1051,
310,
15201,
10916,
297,
263,
716,
410,
15719,
362,
16610,
491,
278,
6673,
29889,
13,
13,
29903,
987,
263,
17659,
3785,
1122,
5557,
4158,
1970,
375,
1080,
322,
10329,
359,
4822,
8278,
4799,
4011,
3595,
297,
5683,
5490,
29892,
746,
278,
2847,
9850,
9892,
3614,
2779,
7389,
2501,
27504,
29915,
29879,
7475,
13561,
29889,
13,
13,
25991,
8020,
29892,
278,
8278,
6673,
2000,
363,
263,
376,
29873,
820,
261,
29908,
9850,
9892,
1156,
263,
13585,
22039,
3902,
6797,
373,
263,
4517,
1014,
1582,
29889,
11654,
4146,
1080,
1122,
367,
6206,
515,
10916,
565,
896,
5870,
263,
716,
731,
310,
9212,
20801,
29892,
5034,
304,
278,
1570,
3088,
10277,
29889,
8011,
1556,
7282,
1044,
2996,
297,
5306,
746,
372,
6068,
1716,
289,
550,
304,
748,
964,
2779,
297,
263,
9078,
13460,
29889,
13,
13,
29928,
14851,
16725,
393,
1833,
4723,
372,
4944,
278,
17517,
411,
263,
770,
2164,
6993,
3461,
4392,
2827,
278,
325,
300,
1259,
1889,
363,
6251,
964,
278,
3148,
29889,
13,
13,
14207,
997,
3322,
267,
8011,
21600,
14617,
358,
2401,
1920,
29920,
512,
7513,
13,
797,
6124,
304,
278,
2304,
363,
24388,
29892,
1920,
29920,
884,
11286,
7395,
19179,
22056,
607,
3160,
13298,
359,
29892,
4367,
16890,
29892,
322,
27804,
5593,
1994,
29889,
5293,
1920,
29920,
16869,
366,
5401,
12176,
337,
2935,
491,
982,
310,
2522,
29878,
905,
315,
3163,
310,
318,
24070,
390,
29879,
29871,
29896,
29892,
29900,
29900,
29900,
607,
508,
367,
2113,
411,
1269,
560,
335,
1821,
22160,
29889,
13,
13,
1576,
8037,
5619,
1497,
278,
25091,
1101,
263,
9076,
310,
2472,
19383,
491,
9117,
4095,
1860,
29889,
1334,
674,
451,
20000,
1906,
964,
1749,
4234,
591,
508,
451,
23511,
325,
300,
1699,
2308,
3427,
8168,
4430,
1642,
319,
17181,
10317,
805,
554,
9983,
1330,
1497,
278,
26978,
2105,
2498,
674,
367,
13271,
278,
8973,
1048,
278,
716,
25091,
29892,
4417,
393,
278,
17517,
674,
6773,
304,
24663,
278,
6673,
29915,
29879,
376,
10653,
1319,
14329,
304,
2228,
670,
22760,
1797,
1642,
450,
10317,
310,
15089,
14045,
14223,
8676,
967,
9076,
322,
278,
17517,
29915,
29879,
716,
1410,
10652,
1475,
526,
2729,
373,
967,
6907,
800,
29889,
13,
13,
29903,
264,
1611,
17517,
24921,
1827,
393,
278,
9892,
338,
1286,
376,
16122,
29899,
6707,
322,
451,
931,
29899,
6707,
613,
577,
10916,
1122,
2041,
1283,
278,
22078,
1051,
472,
777,
1298,
29889,
13,
13,
6716,
11149,
23772,
4234,
29892,
8383,
273,
29892,
471,
13700,
515,
278,
3517,
1051,
322,
1790,
29892,
678,
328,
29892,
471,
2715,
29889,
13,
13,
1576,
427,
29308,
4797,
6993,
15366,
29892,
12242,
304,
1653,
29892,
363,
278,
937,
931,
297,
4955,
29892,
9212,
11780,
363,
5534,
1302,
16453,
304,
2304,
1998,
29874,
322,
5198,
16783,
325,
300,
1259,
322,
12109,
566,
293,
800,
363,
15724,
25738,
6251,
304,
278,
501,
29889,
29903,
29889,
2688,
526,
8688,
304,
12566,
23035,
29915,
15332,
297,
385,
3152,
310,
25110,
15115,
1608,
322,
1301,
29876,
1288,
17268,
29889,
13,
13,
6816,
273,
8000,
29892,
27504,
8126,
278,
19341,
616,
9850,
9892,
607,
471,
731,
304,
1518,
533,
16340,
373,
5320,
310,
4832,
10916,
29892,
18451,
29892,
14883,
29892,
8153,
3761,
29892,
6254,
19627,
29892,
8713,
2849,
322,
612,
12398,
29892,
322,
26239,
25091,
373,
8383,
273,
29889,
13,
13,
2308,
3427,
8794,
278,
2847,
9850,
9892,
2645,
670,
937,
4723,
297,
8034,
29892,
541,
372,
471,
1539,
411,
16800,
11706,
18066,
267,
29892,
607,
505,
7572,
304,
298,
4995,
5314,
310,
278,
2989,
6874,
310,
278,
22760,
1797,
29889,
13,
13,
1576,
501,
29889,
29903,
29889,
769,
7258,
278,
716,
2362,
5570,
11780,
411,
1432,
9117,
5874,
297,
5468,
322,
4846,
963,
29871,
29945,
29900,
3841,
304,
752,
368,
29889,
13,
13,
29908,
29903,
861,
310,
7178,
27504,
29915,
29879,
3646,
287,
10916,
526,
23772,
1642,
13,
13,
9662,
630,
10130,
29901,
13,
13,
3492,
508,
1074,
445,
297,
278,
982,
278,
7709,
11672,
2869,
1652,
8606,
287,
408,
1472,
29899,
8489,
6479,
294,
2857,
289,
13788,
5229,
304,
4845,
457,
408,
697,
723,
2149,
29889,
2296,
1497,
278,
17972,
723,
10365,
967,
13665,
962,
5086,
565,
372,
2714,
278,
9946,
310,
4482,
4414,
362,
750,
4953,
17667,
29889,
13,
13,
1576,
29652,
16116,
287,
964,
29871,
29906,
29900,
29896,
29955,
1494,
278,
23011,
284,
310,
278,
383,
3235,
29909,
1370,
21867,
1156,
278,
937,
697,
471,
766,
1285,
262,
6742,
263,
1629,
8020,
869,
17277,
7759,
22196,
1497,
393,
565,
1565,
29892,
27504,
29915,
29879,
8014,
29873,
20304,
16726,
723,
367,
278,
376,
3752,
7118,
8604,
885,
24258,
1951,
13062,
17062,
1642,
13,
13,
1576,
317,
8971,
13496,
1400,
884,
10018,
278,
6114,
322,
902,
23056,
3437,
16831,
23244,
1207,
263,
24354,
376,
29881,
749,
29908,
491,
13587,
372,
1090,
278,
564,
1526,
1169,
29889,
450,
1023,
302,
1295,
267,
892,
18918,
287,
515,
1009,
17643,
1156,
263,
377,
391,
280,
13031,
261,
6655,
287,
278,
13457,
304,
278,
11803,
29889,
13,
13,
1576,
5645,
723,
1095,
278,
13737,
536,
519,
10057,
3185,
29915,
29879,
11780,
393,
15724,
505,
1663,
18541,
322,
393,
1556,
5703,
414,
3867,
372,
29889,
17468,
3739,
313,
29934,
29899,
29968,
29979,
29897,
1033,
18973,
1250,
278,
22196,
29899,
29907,
465,
333,
29891,
9045,
11736,
11118,
29892,
607,
263,
9893,
304,
5565,
284,
322,
5191,
4250,
314,
562,
598,
29889,
13,
13,
2308,
3427,
29915,
29879,
6589,
2996,
263,
2462,
1156,
12931,
325,
20937,
4644,
19109,
723,
4866,
967,
19341,
616,
20346,
25340,
3181,
2187,
29889,
2296,
1497,
1919,
3138,
29892,
393,
3987,
363,
16743,
411,
278,
22384,
310,
12931,
435,
549,
853,
526,
451,
9078,
304,
13487,
4135,
29889,
13,
13,
3112,
5304,
408,
6285,
2233,
16929,
756,
5492,
902,
9281,
3143,
29892,
376,
1724,
379,
932,
6419,
9162,
607,
22002,
793,
278,
29871,
29906,
29900,
29896,
29953,
501,
29889,
29903,
29889,
6673,
616,
8271,
869,
739,
29915,
29879,
2143,
690,
2790,
304,
505,
263,
14099,
297,
278,
8037,
5619,
393,
3508,
29915,
29873,
13421,
304,
26755,
263,
2958,
446,
1432,
2748,
297,
263,
1550,
29889,
13,
13,
17245,
29892,
263,
12312,
310,
278,
1857,
376,
3338,
392,
3189,
284,
654,
29908,
411,
278,
10307,
14189,
1446,
338,
451,
278,
521,
273,
3729,
272,
29915,
29879,
871,
2984,
29889,
10393,
29928,
1302,
29899,
280,
1664,
9428,
10415,
352,
392,
325,
20937,
393,
376,
705,
674,
2125,
1749,
4234,
1250,
29908,
322,
22399,
304,
376,
305,
559,
29908,
4702,
10265,
29889,
13,
13,
29940,
2072,
19109,
1122,
367,
13834,
363,
278,
13585,
6288,
29892,
589,
468,
7606,
322,
4049,
29899,
20011,
1328,
4223,
12216,
2129,
372,
3913,
304,
2243,
314,
967,
22595,
29889,
7178,
18935,
27504,
322,
10369,
15512,
7668,
27948,
2502,
319,
915,
526,
5353,
292,
278,
373,
17696,
24161,
411,
4644,
19109,
869,
13,
13,
29968,
314,
1384,
2963,
338,
3271,
304,
29871,
29906,
29892,
29900,
29900,
29900,
310,
278,
4359,
29871,
29946,
29946,
29892,
29900,
29900,
29900,
2305,
1058,
505,
27481,
6640,
870,
29875,
304,
12307,
292,
29723,
29892,
5034,
304,
278,
501,
29889,
29940,
29889,
382,
29891,
809,
277,
2264,
12299,
390,
2679,
686,
29877,
1497,
278,
13936,
7572,
27904,
964,
278,
19174,
1584,
1156,
777,
25447,
267,
892,
19747,
29889,
13,
13,
29950,
8189,
24921,
1497,
393,
12727,
1302,
29899,
29885,
11831,
333,
5855,
3704,
5192,
10267,
2129,
322,
26397,
3801,
270,
952,
2220,
20601,
297,
902,
4892,
29889,
17860,
352,
6212,
29875,
29915,
29879,
9883,
29892,
1383,
29874,
2946,
29874,
8365,
326,
29892,
471,
902,
21334,
29883,
342,
8064,
29892,
29263,
6909,
322,
20888,
714,
304,
437,
14359,
2745,
1183,
1476,
4942,
29889,
13,
13,
29943,
550,
674,
679,
304,
1074,
21701,
1171,
29901,
450,
16108,
27927,
448,
322,
599,
310,
967,
5164,
282,
3322,
267,
448,
746,
278,
2706,
7017,
267,
373,
3839,
29871,
29906,
29906,
29889,
450,
14064,
4225,
385,
6920,
29892,
470,
263,
289,
442,
1581,
304,
1083,
513,
278,
8881,
746,
540,
29915,
29879,
7124,
278,
1023,
7234,
2791,
29901,
9208,
11299,
29892,
3237,
29889,
13,
13,
8179,
5409,
8229,
30046,
2112,
28612,
471,
885,
449,
292,
14354,
363,
4259,
3023,
310,
278,
5972,
12670,
20157,
29916,
3652,
746,
540,
471,
10322,
304,
4892,
29889,
450,
4038,
310,
278,
4234,
297,
607,
670,
1034,
27358,
471,
1476,
338,
5545,
304,
505,
697,
310,
3186,
29915,
29879,
9939,
13406,
19257,
29889,
13,
13,
29940,
2072,
19109,
6987,
1790,
20346,
28639,
13,
29940,
2072,
19109,
29915,
29879,
7786,
3052,
488,
6826,
267,
975,
5546,
7148,
15010,
27784,
337,
2423,
10794,
515,
20377,
322,
278,
5534,
7881,
29889,
4815,
1497,
3483,
858,
29879,
1033,
451,
5751,
714,
278,
13331,
393,
263,
5613,
439,
1296,
10761,
1363,
310,
263,
20346,
1243,
29889,
13,
13,
2052,
280,
5648,
29871,
29946,
29968,
9788,
315,
905,
267,
5020,
304,
8011,
24620,
17259,
13,
1576,
14853,
322,
13436,
9763,
2669,
364,
630,
278,
12113,
5648,
29871,
29946,
29968,
29871,
29946,
714,
310,
29871,
29945,
2729,
373,
967,
376,
29887,
3890,
681,
1880,
29899,
29888,
10652,
537,
4863,
1642,
12113,
884,
9326,
1833,
4723,
393,
372,
674,
14955,
20330,
29915,
3517,
10596,
2129,
304,
29871,
29946,
29968,
3889,
310,
8323,
29889,
13,
13,
29909,
7979,
882,
7450,
363,
16879,
17513,
304,
736,
304,
2180,
1026,
1417,
13,
29902,
14909,
8661,
746,
8955,
2879,
5193,
1363,
366,
8955,
2879,
7726,
1532,
322,
1073,
825,
366,
526,
5934,
29889,
376,
29902,
29915,
29885,
10124,
3271,
472,
2748,
1642,
7579,
304,
278,
11612,
729,
1919,
678,
2870,
29874,
505,
7450,
385,
17327,
411,
2180,
1026,
1417,
9669,
363,
278,
14686,
310,
1009,
5810,
10076,
3946,
29889,
13,
13,
14473,
491,
7668,
435,
18333,
373,
5678,
29882,
11874,
273,
801,
13,
3112,
338,
263,
931,
363,
5820,
424,
2305,
304,
18145,
5485,
1009,
269,
1144,
310,
278,
3517,
1629,
322,
526,
6577,
3192,
363,
1009,
1301,
3663,
1080,
491,
4177,
29889,
8502,
411,
1784,
16728,
8753,
333,
1036,
29892,
372,
29915,
29879,
13674,
385,
5566,
1509,
304,
679,
4208,
411,
596,
3942,
322,
330,
3890,
373,
628,
14803,
9687,
29889,
13,
13,
25925,
29871,
29896,
29896,
29901,
29871,
29896,
29945,
379,
4215,
5169,
3698,
1334,
6313,
887,
399,
265,
29915,
29873,
19320,
29991,
13,
4806,
505,
1063,
1580,
18099,
1048,
825,
278,
716,
10012,
723,
505,
297,
3787,
363,
502,
322,
9885,
2354,
29892,
12113,
1258,
451,
23451,
29889,
12113,
25228,
267,
4160,
304,
2130,
474,
29911,
7844,
3025,
9311,
287,
23226,
322,
769,
4511,
1009,
9224,
304,
278,
23226,
29889,
13,
13,
29943,
487,
29916,
448,
360,
26810,
12046,
368,
27723,
2973,
2178,
382,
3582,
1551,
17972,
13,
1430,
1001,
29954,
29979,
29901,
4111,
16580,
501,
29889,
29903,
29889,
7618,
311,
8379,
29871,
29941,
29953,
274,
1237,
304,
395,
29946,
29929,
29889,
29945,
29941,
639,
2594,
2674,
297,
27758,
3534,
292,
373,
278,
1570,
3088,
4702,
29883,
424,
488,
24004,
29889,
28297,
29883,
1901,
29879,
2149,
278,
17972,
304,
5967,
4066,
19257,
443,
15033,
322,
12070,
304,
13900,
304,
12020,
19257,
297,
5846,
29889,
13,
13,
2308,
3427,
13900,
9121,
1702,
311,
363,
28052,
663,
8373,
13,
2308,
3427,
1497,
540,
471,
577,
527,
13120,
491,
278,
9121,
1702,
311,
297,
3444,
393,
540,
723,
763,
304,
337,
3258,
372,
297,
7660,
29889,
450,
9121,
1702,
311,
471,
376,
29902,
1348,
263,
14586,
355,
681,
2655,
363,
3444,
322,
363,
278,
8548,
310,
3444,
613,
27504,
1497,
27822,
29889,
13,
13,
29968,
417,
407,
29901,
24607,
1033,
505,
2113,
1432,
3748,
13,
29967,
332,
1885,
476,
417,
407,
4083,
372,
23880,
376,
303,
3881,
29908,
322,
376,
15866,
549,
29908,
393,
24607,
1033,
871,
1818,
261,
263,
1298,
2750,
16640,
2330,
472,
530,
2671,
869,
450,
1473,
4203,
18691,
701,
892,
278,
937,
750,
2175,
1283,
29892,
411,
24607,
2070,
292,
322,
16640,
2330,
2599,
1532,
304,
1712,
963,
29889,
13,
13,
10873,
481,
487,
6265,
11963,
4947,
716,
3023,
29899,
6360,
383,
29896,
5376,
13,
1576,
2114,
4702,
28352,
505,
10205,
839,
373,
1880,
1623,
4889,
3449,
19544,
445,
1629,
4076,
1075,
1584,
901,
16420,
28435,
964,
278,
4723,
355,
29889,
4367,
20293,
29915,
29879,
8432,
13675,
455,
6491,
8640,
278,
2323,
23012,
2407,
297,
29899,
25525,
297,
25960,
322,
471,
263,
2317,
449,
373,
278,
937,
2462,
310,
6944,
29889,
13,
13,
29990,
29902,
16646,
21215,
491,
29871,
29955,
281,
860,
1691,
297,
29871,
29906,
299,
323,
29899,
29906,
29900,
13,
6246,
2431,
1572,
3614,
8323,
297,
278,
1833,
5320,
288,
874,
408,
540,
5700,
23819,
2750,
21215,
409,
314,
414,
17550,
29874,
747,
3792,
638,
322,
20852,
1171,
390,
3660,
267,
29889,
9178,
929,
313,
29906,
29899,
29941,
29896,
511,
2431,
1572,
313,
29906,
29899,
29906,
29941,
310,
2211,
288,
874,
29897,
322,
323,
801,
381,
313,
29896,
29899,
29906,
29929,
310,
2211,
29897,
892,
278,
19555,
2787,
18488,
12580,
9306,
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
] |
Australia
The “Groundwater Quality” conference this year was held in Fremantle, Australia. So for slightly over a week I was in the midst of summer next to the Indian Ocean. The nature of conferences is that you get to sit inside a conference room for vast amounts of time, however we did get to look round Perth, Fremantle and 4 contaminated sites …. a fertiliser factory, a diamond separating factory, a nutrient plume in the Garden Island Sound and an acid lake caused by lowered groundwater levels. | [
1,
8314,
13,
13,
1576,
1346,
3338,
618,
13405,
751,
2877,
30024,
21362,
445,
1629,
471,
4934,
297,
383,
1745,
424,
280,
29892,
8314,
29889,
1105,
363,
10029,
975,
263,
4723,
306,
471,
297,
278,
29214,
310,
11801,
2446,
304,
278,
7560,
21091,
29889,
450,
5469,
310,
378,
10662,
338,
393,
366,
679,
304,
7845,
2768,
263,
21362,
5716,
363,
13426,
26999,
310,
931,
29892,
3138,
591,
1258,
679,
304,
1106,
4513,
2431,
386,
29892,
383,
1745,
424,
280,
322,
29871,
29946,
640,
9103,
630,
11840,
16088,
29889,
263,
19965,
309,
7608,
12529,
29892,
263,
11502,
898,
2903,
1218,
12529,
29892,
263,
18254,
374,
296,
715,
2017,
297,
278,
19906,
7935,
14976,
322,
385,
22193,
19437,
8581,
491,
5224,
287,
5962,
13405,
11174,
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
] |
Case of Abraham Lincoln : a story of adultery, murder, and the making of a great president by J. M Fenster(
Book
)6
editions published
between
2007
and
2009
in
English
and held by
1,297 WorldCat member
libraries
worldwide
Documents the events surrounding a mid-nineteenth-century Springfield blacksmith's murder trial that would define Abraham
Lincoln's legal career, evaluating how the case reflected the beliefs of the time and placed Lincoln in the national spotlight
Parish priest : Father Michael McGivney and American Catholicism by Douglas Brinkley(
Book
)13
editions published
between
2005
and
2009
in
English
and held by
1,087 WorldCat member
libraries
worldwide
The son of Irish immigrants, McGivney was a man to whom "family values" represented more than mere rhetoric. And he left a
legacy of hope still celebrated around the world. In the late 1800s, discrimination against American Catholics was widespread.
Many Catholics struggled to find work and ended up in infernolike mills, where an injury or death would leave a family penniless.
Called to action in 1882 by his sympathy for these suffering people, Father McGivney founded the Knights of Columbus, an organization
that has helped to save countless families from the indignity of destitution. From its uncertain beginnings, it has grown
to an international membership of 1.7 million men. At heart, though, Father McGivney was never anything more than an American
parish priest, and nothing less than that, either--perhaps the most beloved parish priest in U.S. history.--From publisher
description
Jefferson's America : the President, the purchase, and the explorers who transformed a nation by J. M Fenster(
Book
)5
editions published
between
2014
and
2017
in
English and Undetermined
and held by
844 WorldCat member
libraries
worldwide
"The surprising story of how Thomas Jefferson commanded an unrivaled age of American exploration, sending out waves of expeditions
into the West after the Louisiana Purchase. In presiding over that era of discovery, Jefferson forged a great nation"--
Mavericks, miracles, and medicine : the pioneers who risked their lives to bring medicine into the modern age by J. M Fenster(
Book
)3
editions published
between
2003
and
2005
in
English
and held by
518 WorldCat member
libraries
worldwide
"Mavericks, Miracles, and Medicine, the companion volume to The History Channel series of the same name, brings to life the
stories behind twenty groundbreaking achievements in the field of medical science." "From Typhoid Mary to Dolly, from Andreas
Vesalius's sixteenth century studies in anatomy to John Gibbon Jr.'s development of the heart-lung machine over two decades
in the twentieth, here are the healers and dreamers who marched resolutely ahead of their time - and altered the face of medicine
for all time."--Jacket
For the next generation : a wake-up call to solving our nation's problems by Debbie Wasserman Schultz(
Book
)3
editions published
between
2013
and
2014
in
English
and held by
448 WorldCat member
libraries
worldwide
Congresswoman and Democratic National Committee Chair Debbie Wasserman Schultz challenges the nation to resolve tough issues
for future generations. America has witnessed the dangers that come with shortsightedness, she writes. If we want to ensure
prosperity for ourselves and an improved way of life for young Americans, we have to change, starting now. We need to create
jobs, turn around our economy, formulate a long-term energy solution, reform immigration policies, and enhance and expand
health-care coverage. Yet these important issues have been sidelined by gridlock in a Congress that is too concerned about
the next election to worry about the future. The group of Americans who have the most to lose from this dysfunction are the
ones least represented in government: America's children. This book is one mother's challenge to her congressional colleagues
and to the rest of the nation, to adopt a parent's perspective for doing right by our kids.--From publisher description
Race of the century : the heroic true story of the 1908 New York to Paris auto race by J. M Fenster(
Book
)4
editions published
between
2005
and
2013
in
English
and held by
395 WorldCat member
libraries
worldwide
Provides an account of a 1908 New York to Paris auto race that took the competitors westward across the United States, aboard
a boat to the Far East, across Japan to a trek across Siberia, Asia, and Eastern Europe to Paris
The spirit of invention : the story of the thinkers, creators, and dreamers who formed our nation by J. M Fenster(
Book
)3
editions published
in
2009
in
English
and held by
360 WorldCat member
libraries
worldwide
An illustrated appreciation of America's spirit of invention, which introduces unique characters whose insistence on change
for the better made America what it is today. This book is a fascinating examination of innovation as a driving characteristic
of Americans from all eras and all walks of life. In this book we meet Gertrude Forbes, a sickly widow so poor she had to
live in her aunt's attic, who overcame the odds to invent, among other things, an adjustable ironing board cover. We follow
Cromwell Dixon, a fifteen-year-old from Columbus, Ohio, whose dreams of finding a way to fly inspired him to invent a bicycle-powered
airship. We see John Dove, an African-American inventor, originating concepts integral to the compact disc. We learn about
Purdue University, one of the earliest educational institutions to promote invention and engineering ideas. We eavesdrop on
Thomas Edison in his laboratory in Menlo Park, New Jersey, and also find out about the beginnings of film colorization, a
controversial process that adds tint to film. And we read about Luther Burbank and how he revolutionized plant breeding. The
book even reviews the invention of illegal devices such as the "light wand," which induced slot machines to pay out on every
spin, and we are introduced to a poker player who invented a "holdout" that allowed him to conceal cards in a shirt sleeve
during games
In the words of great business leaders by Fen si te(
Book
)7
editions published
between
1999
and
2001
in
English and Chinese
and held by
277 WorldCat member
libraries
worldwide
Brilliant, practical, obsessed with the day-to-day details of running a company-all are characteristics of the greatest business
leaders of our time. This book reveals remarkable insights into these men and women, teaching timeless lessons about business,
money, and even human nature. This book also features thorough background information on each leader, telling the stories
of their struggles to succeed, their triumphs, and how their various experiences-both good and bad-formed their business philosophies
The case of Abraham Lincoln : a story of adultery, murder, and the making of a great president by J. M Fenster(
Recording
)14
editions published
between
2007
and
2009
in
English and No Linguistic content
and held by
182 WorldCat member
libraries
worldwide
Documents the events surrounding a mid-nineteenth-century Springfield blacksmith's murder trial that would define Abraham
Lincoln's legal career, evaluating how the case reflected the beliefs of the time and placed Lincoln in a national spotlight
Jefferson's America : the President, the purchase, and the explorers who transformed a nation by J. M Fenster(
Recording
)7
editions published
in
2016
in
English
and held by
72 WorldCat member
libraries
worldwide
Almost everyone who has taken a U.S. history course is familiar with Jefferson's Louisiana Purchase and the travels of Lewis
and Clark, but that's not where this formative episode in American history begins or ends. In fact, Jefferson sent four other
expeditions West; Zebulon Pike was dispatched on two missions: first, to the headwaters of the Mississippi, and second, toward
what is now Colorado. William Dunbar and Dr. George Hunter explored northern Louisiana and Arkansas. Peter Custis and Thomas
Freeman followed the Red River of North Texas and Oklahoma. The stakes for American expansion were enormously high at a time
when Britain, France, and Spain were also all vying for control of the vast expanse of land west of the Mississippi River,
the geopolitics of discovery were paramount
Packard : the pride by J. M Fenster(
Book
)3
editions published
between
1989
and
2002
in
English
and held by
45 WorldCat member
libraries
worldwide
The greatest stock picks of all time : lessons on buying the right stock at the right time by W. Randall Jones(
Book
)2
editions published
in
2002
in
English
and held by
26 WorldCat member
libraries
worldwide
Worth magazine founder Randy Jones shows how to pick the best stocks of the future by learning the lessons of the greatest
stocks of all time. In a turbulent investing environment, luck must be the only way to score in the stock market, right' Not
so, says Randy Jones. The people who bought McDonald's in 1965 or Chrysler in 1980 weren't just fortunate. Most of them knew
how to read the signs of a good stock and jumped on the opportunity. Such stocks exist in every economic climate, and Jones
shows readers exactly how to find them. In The Greatest Stock Picks of All Time, Jones describes twenty-five of the best stock
picks ever and explains what made them great. He shows how the smartest investors find companies that are about to zoom, giving
readers a framework for analyzing stocks today. For example, Jones explains why AT & T was a great stock pick in the 1920s,
Polaroid in the 1940s, Xerox in the 1950s, Teledyne in the 1970s, and Intel in the 1990s. He then guides readers to discover
stocks that represent the same kinds of pathbreaking products, innovative business models, great management teams, and other
harbingers of success that will certainly be characteristic of the great stock picks of tomorrow. The Greatest Stock Picks
of All Time has invaluable lessons for anyone in the market today. "Today a lot of people think they should murder their brokers,
but my advice is don't. You can stay out of jail and make a lot of money by learning from the greatest stocks of the last
century and by heeding this advice for your future investments." 'Dominick Dunne From the Trade Paperback edition | [
1,
11733,
310,
24763,
17274,
584,
263,
5828,
310,
594,
352,
22005,
29892,
13406,
29892,
322,
278,
3907,
310,
263,
2107,
6673,
491,
435,
29889,
341,
20685,
2475,
29898,
13,
10967,
13,
29897,
29953,
13,
287,
2187,
6369,
13,
14811,
13,
29906,
29900,
29900,
29955,
13,
392,
13,
29906,
29900,
29900,
29929,
13,
262,
13,
24636,
13,
392,
4934,
491,
13,
29896,
29892,
29906,
29929,
29955,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
20128,
278,
4959,
18830,
263,
7145,
29899,
29876,
262,
2650,
9097,
29899,
27371,
7206,
2671,
4628,
3844,
389,
29915,
29879,
13406,
14260,
393,
723,
4529,
24763,
13,
11667,
16575,
29915,
29879,
11706,
6413,
29892,
6161,
1218,
920,
278,
1206,
25312,
278,
17750,
29879,
310,
278,
931,
322,
7180,
17274,
297,
278,
4797,
9758,
4366,
13,
13,
2177,
728,
18781,
584,
17852,
5765,
22805,
440,
3801,
322,
3082,
11865,
1608,
491,
16721,
1771,
682,
2330,
29898,
13,
10967,
13,
29897,
29896,
29941,
13,
287,
2187,
6369,
13,
14811,
13,
29906,
29900,
29900,
29945,
13,
392,
13,
29906,
29900,
29900,
29929,
13,
262,
13,
24636,
13,
392,
4934,
491,
13,
29896,
29892,
29900,
29947,
29955,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
1576,
1487,
310,
12601,
5198,
4481,
1934,
29892,
22805,
440,
3801,
471,
263,
767,
304,
6029,
376,
11922,
1819,
29908,
9875,
901,
1135,
15187,
364,
9188,
272,
293,
29889,
1126,
540,
2175,
263,
13,
1397,
4135,
310,
4966,
1603,
26301,
2820,
278,
3186,
29889,
512,
278,
5683,
29871,
29896,
29947,
29900,
29900,
29879,
29892,
2313,
5632,
3381,
2750,
3082,
315,
6347,
1199,
471,
281,
2247,
29886,
949,
29889,
13,
14804,
315,
6347,
1199,
10205,
839,
304,
1284,
664,
322,
9698,
701,
297,
10115,
29876,
5079,
446,
3533,
29879,
29892,
988,
385,
24092,
470,
4892,
723,
5967,
263,
3942,
282,
2108,
309,
404,
29889,
13,
29907,
4212,
304,
3158,
297,
29871,
29896,
29947,
29947,
29906,
491,
670,
29738,
363,
1438,
23164,
2305,
29892,
17852,
22805,
440,
3801,
11091,
278,
8360,
5861,
310,
11990,
375,
29892,
385,
13013,
13,
5747,
756,
9213,
304,
4078,
2302,
2222,
13175,
515,
278,
1399,
647,
537,
310,
2731,
5008,
29889,
3645,
967,
17999,
1812,
2559,
886,
29892,
372,
756,
21633,
13,
517,
385,
6121,
28512,
310,
29871,
29896,
29889,
29955,
7284,
1757,
29889,
2180,
5192,
29892,
2466,
29892,
17852,
22805,
440,
3801,
471,
2360,
3099,
901,
1135,
385,
3082,
13,
862,
728,
18781,
29892,
322,
3078,
3109,
1135,
393,
29892,
2845,
489,
546,
4252,
278,
1556,
1339,
8238,
19373,
18781,
297,
501,
29889,
29903,
29889,
4955,
7703,
4591,
9805,
261,
13,
8216,
13,
13,
29967,
12352,
1330,
29915,
29879,
6813,
584,
278,
7178,
29892,
278,
20590,
29892,
322,
278,
3902,
272,
414,
1058,
27615,
263,
5233,
491,
435,
29889,
341,
20685,
2475,
29898,
13,
10967,
13,
29897,
29945,
13,
287,
2187,
6369,
13,
14811,
13,
29906,
29900,
29896,
29946,
13,
392,
13,
29906,
29900,
29896,
29955,
13,
262,
13,
24636,
322,
14211,
300,
837,
1312,
13,
392,
4934,
491,
13,
29947,
29946,
29946,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
29908,
1576,
26800,
5828,
310,
920,
5569,
29011,
26540,
385,
443,
1150,
7943,
5046,
310,
3082,
3902,
12418,
29892,
9348,
714,
20037,
310,
15310,
2187,
13,
8941,
278,
3122,
1156,
278,
28838,
349,
27574,
29889,
512,
2225,
4821,
975,
393,
3152,
310,
20699,
29892,
29011,
363,
3192,
263,
2107,
5233,
29908,
489,
13,
13,
29924,
12483,
7358,
29892,
286,
3055,
7799,
29892,
322,
26602,
584,
278,
29323,
414,
1058,
12045,
287,
1009,
12080,
304,
6963,
26602,
964,
278,
5400,
5046,
491,
435,
29889,
341,
20685,
2475,
29898,
13,
10967,
13,
29897,
29941,
13,
287,
2187,
6369,
13,
14811,
13,
29906,
29900,
29900,
29941,
13,
392,
13,
29906,
29900,
29900,
29945,
13,
262,
13,
24636,
13,
392,
4934,
491,
13,
29945,
29896,
29947,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
29908,
29924,
12483,
7358,
29892,
29422,
7799,
29892,
322,
27529,
29892,
278,
18708,
7977,
304,
450,
5298,
17368,
3652,
310,
278,
1021,
1024,
29892,
23522,
304,
2834,
278,
13,
303,
3842,
5742,
10081,
5962,
1030,
5086,
27012,
4110,
297,
278,
1746,
310,
16083,
10466,
1213,
376,
4591,
9656,
561,
3398,
6182,
304,
11201,
368,
29892,
515,
21186,
13,
29963,
267,
284,
2482,
29915,
29879,
4832,
19839,
6462,
11898,
297,
385,
8678,
29891,
304,
2259,
15347,
6718,
13843,
6169,
29879,
5849,
310,
278,
5192,
29899,
8285,
4933,
975,
1023,
1602,
3076,
13,
262,
278,
3252,
7268,
621,
29892,
1244,
526,
278,
540,
284,
414,
322,
12561,
414,
1058,
8575,
287,
3770,
11579,
14432,
310,
1009,
931,
448,
322,
10551,
287,
278,
3700,
310,
26602,
13,
1454,
599,
931,
1213,
489,
27006,
300,
13,
13,
2831,
278,
2446,
12623,
584,
263,
281,
1296,
29899,
786,
1246,
304,
17069,
1749,
5233,
29915,
29879,
4828,
491,
7089,
10993,
29457,
3504,
1102,
499,
29920,
29898,
13,
10967,
13,
29897,
29941,
13,
287,
2187,
6369,
13,
14811,
13,
29906,
29900,
29896,
29941,
13,
392,
13,
29906,
29900,
29896,
29946,
13,
262,
13,
24636,
13,
392,
4934,
491,
13,
29946,
29946,
29947,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
29907,
549,
1253,
29893,
2480,
322,
19083,
3086,
12930,
24193,
7089,
10993,
29457,
3504,
1102,
499,
29920,
18066,
267,
278,
5233,
304,
8814,
260,
820,
5626,
13,
1454,
5434,
1176,
800,
29889,
6813,
756,
16277,
287,
278,
270,
13873,
393,
2041,
411,
3273,
29879,
523,
287,
2264,
29892,
1183,
15873,
29889,
960,
591,
864,
304,
9801,
13,
771,
29879,
546,
537,
363,
20278,
322,
385,
16710,
982,
310,
2834,
363,
4123,
23035,
29892,
591,
505,
304,
1735,
29892,
6257,
1286,
29889,
1334,
817,
304,
1653,
13,
9057,
29879,
29892,
2507,
2820,
1749,
26504,
29892,
883,
5987,
263,
1472,
29899,
8489,
5864,
1650,
29892,
11736,
5198,
16783,
24833,
29892,
322,
26371,
749,
322,
7985,
13,
354,
4298,
29899,
18020,
23746,
29889,
15175,
1438,
4100,
5626,
505,
1063,
269,
10652,
1312,
491,
6856,
908,
297,
263,
11559,
393,
338,
2086,
15041,
1048,
13,
1552,
2446,
8271,
304,
15982,
1048,
278,
5434,
29889,
450,
2318,
310,
23035,
1058,
505,
278,
1556,
304,
14074,
515,
445,
270,
952,
2220,
526,
278,
13,
2873,
3203,
9875,
297,
5874,
29901,
6813,
29915,
29879,
4344,
29889,
910,
3143,
338,
697,
5637,
29915,
29879,
18766,
304,
902,
378,
11476,
284,
23056,
21628,
13,
392,
304,
278,
1791,
310,
278,
5233,
29892,
304,
9332,
263,
3847,
29915,
29879,
18520,
363,
2599,
1492,
491,
1749,
413,
4841,
7703,
4591,
9805,
261,
6139,
13,
13,
29934,
815,
310,
278,
6462,
584,
278,
13444,
293,
1565,
5828,
310,
278,
29871,
29896,
29929,
29900,
29947,
1570,
3088,
304,
3681,
4469,
8175,
491,
435,
29889,
341,
20685,
2475,
29898,
13,
10967,
13,
29897,
29946,
13,
287,
2187,
6369,
13,
14811,
13,
29906,
29900,
29900,
29945,
13,
392,
13,
29906,
29900,
29896,
29941,
13,
262,
13,
24636,
13,
392,
4934,
491,
13,
29941,
29929,
29945,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
1184,
29894,
2247,
385,
3633,
310,
263,
29871,
29896,
29929,
29900,
29947,
1570,
3088,
304,
3681,
4469,
8175,
393,
3614,
278,
5100,
17259,
5833,
1328,
4822,
278,
3303,
3900,
29892,
633,
29877,
538,
13,
29874,
13006,
304,
278,
8413,
6932,
29892,
4822,
5546,
304,
263,
2578,
29895,
4822,
6101,
495,
423,
29892,
14325,
29892,
322,
16162,
4092,
304,
3681,
13,
13,
1576,
8548,
310,
297,
7316,
584,
278,
5828,
310,
278,
1348,
414,
29892,
907,
4097,
29892,
322,
12561,
414,
1058,
8429,
1749,
5233,
491,
435,
29889,
341,
20685,
2475,
29898,
13,
10967,
13,
29897,
29941,
13,
287,
2187,
6369,
13,
262,
13,
29906,
29900,
29900,
29929,
13,
262,
13,
24636,
13,
392,
4934,
491,
13,
29941,
29953,
29900,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
2744,
26848,
5108,
362,
310,
6813,
29915,
29879,
8548,
310,
297,
7316,
29892,
607,
4547,
778,
5412,
4890,
5069,
1663,
11416,
373,
1735,
13,
1454,
278,
2253,
1754,
6813,
825,
372,
338,
9826,
29889,
910,
3143,
338,
263,
21028,
262,
1218,
4392,
3381,
310,
24233,
362,
408,
263,
19500,
17443,
13,
974,
23035,
515,
599,
604,
294,
322,
599,
17042,
2039,
310,
2834,
29889,
512,
445,
3143,
591,
5870,
5681,
509,
1151,
1152,
5707,
29892,
263,
17319,
368,
9449,
340,
577,
6460,
1183,
750,
304,
13,
9258,
297,
902,
263,
1657,
29915,
29879,
1098,
293,
29892,
1058,
975,
29883,
420,
278,
7736,
29879,
304,
11817,
29892,
4249,
916,
2712,
29892,
385,
10365,
519,
13977,
292,
7613,
4612,
29889,
1334,
1101,
13,
29907,
456,
5872,
360,
28778,
29892,
263,
25020,
29899,
6360,
29899,
1025,
515,
11990,
375,
29892,
15821,
29892,
5069,
12561,
29879,
310,
9138,
263,
982,
304,
11340,
20603,
1075,
304,
11817,
263,
289,
4245,
2841,
29899,
13519,
287,
13,
1466,
3527,
29889,
1334,
1074,
2259,
360,
994,
29892,
385,
11715,
29899,
14689,
11817,
272,
29892,
3978,
1218,
22001,
10160,
304,
278,
11071,
2313,
29889,
1334,
5110,
1048,
13,
29925,
18245,
434,
3014,
29892,
697,
310,
278,
24577,
28976,
21561,
304,
27391,
297,
7316,
322,
21639,
7014,
29889,
1334,
321,
5989,
8865,
373,
13,
1349,
18902,
2155,
2285,
297,
670,
10212,
7606,
297,
7567,
417,
4815,
29892,
1570,
14500,
29892,
322,
884,
1284,
714,
1048,
278,
1812,
2559,
886,
310,
2706,
2927,
2133,
29892,
263,
13,
1285,
307,
874,
616,
1889,
393,
12778,
260,
524,
304,
2706,
29889,
1126,
591,
1303,
1048,
24760,
6640,
9157,
322,
920,
540,
19479,
1891,
8024,
2078,
21219,
29889,
450,
13,
2909,
1584,
21804,
278,
297,
7316,
310,
27302,
9224,
1316,
408,
278,
376,
4366,
24706,
1699,
607,
20974,
21497,
14884,
304,
5146,
714,
373,
1432,
13,
1028,
262,
29892,
322,
591,
526,
9129,
304,
263,
11293,
261,
4847,
1058,
11817,
287,
263,
376,
8948,
449,
29908,
393,
6068,
1075,
304,
10628,
284,
15889,
297,
263,
528,
2728,
12844,
29872,
345,
13,
29881,
3864,
8090,
13,
13,
797,
278,
3838,
310,
2107,
5381,
20251,
491,
20685,
1354,
734,
29898,
13,
10967,
13,
29897,
29955,
13,
287,
2187,
6369,
13,
14811,
13,
29896,
29929,
29929,
29929,
13,
392,
13,
29906,
29900,
29900,
29896,
13,
262,
13,
24636,
322,
10013,
13,
392,
4934,
491,
13,
29906,
29955,
29955,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
12432,
23951,
29892,
15031,
29892,
20881,
11517,
411,
278,
2462,
29899,
517,
29899,
3250,
4902,
310,
2734,
263,
5001,
29899,
497,
526,
21862,
310,
278,
14176,
5381,
13,
280,
24574,
310,
1749,
931,
29889,
910,
3143,
10320,
1338,
22567,
1663,
5861,
964,
1438,
1757,
322,
5866,
29892,
18819,
5335,
6393,
3109,
787,
1048,
5381,
29892,
13,
29885,
4992,
29892,
322,
1584,
5199,
5469,
29889,
910,
3143,
884,
5680,
17826,
3239,
2472,
373,
1269,
11822,
29892,
14509,
278,
15874,
13,
974,
1009,
10205,
793,
304,
9269,
29892,
1009,
24124,
29879,
29892,
322,
920,
1009,
5164,
27482,
29899,
20313,
1781,
322,
4319,
29899,
15628,
1009,
5381,
11847,
583,
13,
13,
1576,
1206,
310,
24763,
17274,
584,
263,
5828,
310,
594,
352,
22005,
29892,
13406,
29892,
322,
278,
3907,
310,
263,
2107,
6673,
491,
435,
29889,
341,
20685,
2475,
29898,
13,
4789,
3278,
13,
29897,
29896,
29946,
13,
287,
2187,
6369,
13,
14811,
13,
29906,
29900,
29900,
29955,
13,
392,
13,
29906,
29900,
29900,
29929,
13,
262,
13,
24636,
322,
1939,
365,
6202,
4695,
2793,
13,
392,
4934,
491,
13,
29896,
29947,
29906,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
20128,
278,
4959,
18830,
263,
7145,
29899,
29876,
262,
2650,
9097,
29899,
27371,
7206,
2671,
4628,
3844,
389,
29915,
29879,
13406,
14260,
393,
723,
4529,
24763,
13,
11667,
16575,
29915,
29879,
11706,
6413,
29892,
6161,
1218,
920,
278,
1206,
25312,
278,
17750,
29879,
310,
278,
931,
322,
7180,
17274,
297,
263,
4797,
9758,
4366,
13,
13,
29967,
12352,
1330,
29915,
29879,
6813,
584,
278,
7178,
29892,
278,
20590,
29892,
322,
278,
3902,
272,
414,
1058,
27615,
263,
5233,
491,
435,
29889,
341,
20685,
2475,
29898,
13,
4789,
3278,
13,
29897,
29955,
13,
287,
2187,
6369,
13,
262,
13,
29906,
29900,
29896,
29953,
13,
262,
13,
24636,
13,
392,
4934,
491,
13,
29955,
29906,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
2499,
3242,
14332,
1058,
756,
4586,
263,
501,
29889,
29903,
29889,
4955,
3236,
338,
9985,
411,
29011,
29915,
29879,
28838,
349,
27574,
322,
278,
9850,
29879,
310,
15037,
13,
392,
17129,
29892,
541,
393,
29915,
29879,
451,
988,
445,
883,
1230,
12720,
297,
3082,
4955,
16410,
470,
10614,
29889,
512,
2114,
29892,
29011,
2665,
3023,
916,
13,
4548,
287,
2187,
3122,
29936,
796,
774,
352,
265,
7362,
446,
471,
13916,
287,
373,
1023,
3052,
1080,
29901,
937,
29892,
304,
278,
2343,
29893,
10412,
310,
278,
24743,
29892,
322,
1473,
29892,
11183,
13,
5816,
338,
1286,
21137,
29889,
4667,
11566,
1646,
322,
4942,
29889,
5122,
25703,
3902,
4395,
14622,
28838,
322,
19444,
13353,
29889,
5310,
315,
504,
275,
322,
5569,
13,
23923,
11422,
5643,
278,
4367,
6163,
310,
4644,
10319,
322,
27879,
29889,
450,
380,
6926,
363,
3082,
13184,
892,
18886,
5794,
1880,
472,
263,
931,
13,
8256,
14933,
29892,
3444,
29892,
322,
13616,
892,
884,
599,
325,
5414,
363,
2761,
310,
278,
13426,
1518,
12350,
310,
2982,
5833,
310,
278,
24743,
6163,
29892,
13,
1552,
1737,
13242,
277,
1199,
310,
20699,
892,
1828,
792,
13,
13,
16638,
538,
584,
278,
24967,
491,
435,
29889,
341,
20685,
2475,
29898,
13,
10967,
13,
29897,
29941,
13,
287,
2187,
6369,
13,
14811,
13,
29896,
29929,
29947,
29929,
13,
392,
13,
29906,
29900,
29900,
29906,
13,
262,
13,
24636,
13,
392,
4934,
491,
13,
29946,
29945,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
13,
1576,
14176,
10961,
5839,
29879,
310,
599,
931,
584,
3109,
787,
373,
1321,
5414,
278,
1492,
10961,
472,
278,
1492,
931,
491,
399,
29889,
17468,
497,
10920,
29898,
13,
10967,
13,
29897,
29906,
13,
287,
2187,
6369,
13,
262,
13,
29906,
29900,
29900,
29906,
13,
262,
13,
24636,
13,
392,
4934,
491,
13,
29906,
29953,
13293,
4509,
13,
492,
8464,
13,
11526,
8157,
13,
29956,
2072,
14853,
25331,
390,
13910,
10920,
3697,
920,
304,
5839,
278,
1900,
10961,
29879,
310,
278,
5434,
491,
6509,
278,
3109,
787,
310,
278,
14176,
13,
17712,
29879,
310,
599,
931,
29889,
512,
263,
7013,
8645,
296,
13258,
292,
5177,
29892,
9885,
1818,
367,
278,
871,
982,
304,
8158,
297,
278,
10961,
9999,
29892,
1492,
29915,
2216,
13,
578,
29892,
4083,
390,
13910,
10920,
29889,
450,
2305,
1058,
18093,
4052,
28080,
29915,
29879,
297,
29871,
29896,
29929,
29953,
29945,
470,
678,
18450,
1358,
297,
29871,
29896,
29929,
29947,
29900,
2949,
264,
29915,
29873,
925,
5162,
348,
403,
29889,
7849,
310,
963,
6363,
13,
3525,
304,
1303,
278,
18906,
310,
263,
1781,
10961,
322,
12500,
287,
373,
278,
15130,
29889,
10506,
10961,
29879,
1863,
297,
1432,
17407,
23622,
29892,
322,
10920,
13,
845,
1242,
22176,
3721,
920,
304,
1284,
963,
29889,
512,
450,
7027,
342,
10224,
349,
7358,
310,
2178,
5974,
29892,
10920,
16612,
10081,
29899,
20818,
310,
278,
1900,
10961,
13,
29886,
7358,
3926,
322,
18568,
825,
1754,
963,
2107,
29889,
940,
3697,
920,
278,
15040,
342,
13258,
943,
1284,
14582,
393,
526,
1048,
304,
19342,
29892,
6820,
13,
949,
414,
263,
6890,
363,
29537,
292,
10961,
29879,
9826,
29889,
1152,
1342,
29892,
10920,
18568,
2020,
15531,
669,
323,
471,
263,
2107,
10961,
5839,
297,
278,
29871,
29896,
29929,
29906,
29900,
29879,
29892,
13,
7713,
279,
3398,
297,
278,
29871,
29896,
29929,
29946,
29900,
29879,
29892,
1060,
1489,
29916,
297,
278,
29871,
29896,
29929,
29945,
29900,
29879,
29892,
1920,
839,
29891,
484,
297,
278,
29871,
29896,
29929,
29955,
29900,
29879,
29892,
322,
18555,
297,
278,
29871,
29896,
29929,
29929,
29900,
29879,
29889,
940,
769,
1410,
2247,
22176,
304,
6523,
13,
17712,
29879,
393,
2755,
278,
1021,
17690,
310,
2224,
1030,
5086,
9316,
29892,
24233,
1230,
5381,
4733,
29892,
2107,
10643,
10907,
29892,
322,
916,
13,
8222,
10549,
414,
310,
2551,
393,
674,
8959,
367,
17443,
310,
278,
2107,
10961,
5839,
29879,
310,
6454,
22396,
29889,
450,
7027,
342,
10224,
349,
7358,
13,
974,
2178,
5974,
756,
297,
4387,
519,
3109,
787,
363,
5019,
297,
278,
9999,
9826,
29889,
376,
29911,
397,
388,
263,
3287,
310,
2305,
1348,
896,
881,
13406,
1009,
2545,
29895,
414,
29892,
13,
4187,
590,
9848,
338,
1016,
29915,
29873,
29889,
887,
508,
7952,
714,
310,
432,
737,
322,
1207,
263,
3287,
310,
6909,
491,
6509,
515,
278,
14176,
10961,
29879,
310,
278,
1833,
13,
27371,
322,
491,
540,
21219,
445,
9848,
363,
596,
5434,
13258,
1860,
1213,
525,
29928,
5817,
860,
11566,
484,
3645,
278,
27226,
349,
7202,
1627,
12203
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
# -*- coding: utf-8 -*-
#
# PyOdps documentation build configuration file, created by
# sphinx-quickstart on Wed Nov 18 09:47:14 2015.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
import sys
import os
import shutil
import atexit
import tempfile
import textwrap
import codecs
import re
from sphinx.directives import Include
dirname = os.path.dirname
docroot = os.path.dirname(os.path.abspath(__file__))
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, dirname(dirname(dirname(os.path.abspath(__file__)))))
sys.path.append(os.path.abspath('../sphinx-ext/'))
# on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.todo',
'sphinx.ext.ifconfig',
'sphinx.ext.viewcode',
'sphinx.ext.autosummary',
'sphinx.ext.napoleon',
'sphinx.ext.mathjax',
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
# The encoding of source files.
#source_encoding = 'utf-8-sig'
# The master toctree document.
master_doc = 'index'
# General information about the project.
project = u'PyODPS'
copyright = u'2014-2018, The Alibaba Group Holding Ltd.'
author = u'Qin Xuye'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
from odps import __version__
version = __version__
# The full version, including alpha/beta/rc tags.
release = __version__
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
# Else, today_fmt is used as the format for a strftime call.
#today_fmt = '%B %d, %Y'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
if 'gettext' not in sys.argv:
try:
import odps.internal
with_internal = True
exclude_patterns = ['*-ext.rst', '*-ext-*.rst']
except ImportError:
with_internal = False
exclude_patterns = ['*-int.rst', '*-int-*.rst']
else:
with_internal = None
# The reST default role (used for this markup: `text`) to use for all
# documents.
#default_role = None
# If true, '()' will be appended to :func: etc. cross-reference text.
#add_function_parentheses = True
# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
#add_module_names = True
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
#show_authors = False
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
# A list of ignored prefixes for module index sorting.
#modindex_common_prefix = []
# If true, keep warnings as "system message" paragraphs in the built documents.
#keep_warnings = False
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = True
# -- Options for HTML output ----------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'sphinx_rtd_theme'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#html_theme_options = {}
# Add any paths that contain custom themes here, relative to this directory.
#html_theme_path = []
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
#html_title = None
# A shorter title for the navigation bar. Default is the same as html_title.
#html_short_title = None
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
html_logo = '_static/PyODPS.png'
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
#html_favicon = None
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
# directly to the root of the documentation.
#html_extra_path = []
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
#html_last_updated_fmt = '%b %d, %Y'
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
#html_use_smartypants = True
# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}
# Additional templates that should be rendered to pages, maps page names to
# template names.
#html_additional_pages = {}
# If false, no module index is generated.
#html_domain_indices = True
# If false, no index is generated.
#html_use_index = True
# If true, the index is split into individual pages for each letter.
#html_split_index = False
# If true, links to the reST sources are added to the pages.
#html_show_sourcelink = True
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
#html_show_sphinx = True
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
#html_show_copyright = True
# If true, an OpenSearch description file will be output, and all pages will
# contain a <link> tag referring to it. The value of this option must be the
# base URL from which the finished HTML is served.
#html_use_opensearch = ''
# This is the file name suffix for HTML files (e.g. ".xhtml").
#html_file_suffix = None
# Language to be used for generating the HTML full-text search index.
# Sphinx supports the following languages:
# 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
# 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
#html_search_language = 'en'
# A dictionary with options for the search language support, empty by default.
# Now only 'ja' uses this config value
#html_search_options = {'type': 'default'}
# The name of a javascript file (relative to the configuration directory) that
# implements a search results scorer. If empty, the default will be used.
#html_search_scorer = 'scorer.js'
# Output file base name for HTML help builder.
htmlhelp_basename = 'PyOdpsdoc'
# -- Options for LaTeX output ---------------------------------------------
latex_engine = 'xelatex'
latex_elements = {
'preamble': textwrap.dedent(r"""
\usepackage{svg}
\usepackage{hyperref}
\setcounter{tocdepth}{2}
""")
}
if on_rtd:
del latex_engine
latex_elements['preamble'] = textwrap.dedent(r"""
\hypersetup{unicode=true}
\usepackage{CJKutf8}
\usepackage{svg}
\usepackage{hyperref}
\setcounter{tocdepth}{2}
\DeclareUnicodeCharacter{00A0}{\nobreakspace}
\DeclareUnicodeCharacter{2203}{\ensuremath{\exists}}
\DeclareUnicodeCharacter{2200}{\ensuremath{\forall}}
\DeclareUnicodeCharacter{2286}{\ensuremath{\subseteq}}
\DeclareUnicodeCharacter{2713}{x}
\DeclareUnicodeCharacter{27FA}{\ensuremath{\Longleftrightarrow}}
\DeclareUnicodeCharacter{221A}{\ensuremath{\sqrt{}}}
\DeclareUnicodeCharacter{221B}{\ensuremath{\sqrt[3]{}}}
\DeclareUnicodeCharacter{2295}{\ensuremath{\oplus}}
\DeclareUnicodeCharacter{2297}{\ensuremath{\otimes}}
\begin{CJK}{UTF8}{gbsn}
\AtEndDocument{\end{CJK}}
""")
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'PyOdps.tex', u'PyODPS Documentation',
u'The Alibaba Group Holding Ltd.', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
# the title page.
#latex_logo = None
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
#latex_use_parts = False
# If true, show page references after internal links.
#latex_show_pagerefs = False
# If true, show URL addresses after external links.
#latex_show_urls = False
# Documents to append as an appendix to all manuals.
#latex_appendices = []
# If false, no module index is generated.
#latex_domain_indices = True
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'pyodps', u'PyODPS Documentation',
[author], 1)
]
# If true, show URL addresses after external links.
#man_show_urls = False
# -- Options for Texinfo output -------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'PyODPS', u'PyODPS Documentation',
author, 'PyODPS', 'One line description of project.',
'Miscellaneous'),
]
# Documents to append as an appendix to all manuals.
#texinfo_appendices = []
# If false, no module index is generated.
#texinfo_domain_indices = True
# How to display URL addresses: 'footnote', 'no', or 'inline'.
#texinfo_show_urls = 'footnote'
# If true, do not generate a @detailmenu in the "Top" node's menu.
#texinfo_no_detailmenu = False
# napoleon_google_docstring = False
gettext_additional_targets = ['literal-block', 'image', 'raw']
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
mathjax_path = "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"
# -- Extension configuration -------------------------------------------------
if any('sphinx-intl' in a for a in sys.argv) or 'gettext' in sys.argv or on_rtd:
locale_dirs = ['locale/']
locale_dir = os.path.join(docroot, 'locale')
else:
temp_lc_dir = tempfile.mkdtemp(prefix='pyodps-po-')
locale_dir = os.path.join(temp_lc_dir, 'locale')
shutil.copytree('locale', locale_dir)
locale_dirs = [locale_dir]
atexit.register(shutil.rmtree, temp_lc_dir)
gettext_compact = False
class IncludeInternal(Include):
def run(self):
if with_internal is None:
return []
if with_internal:
return Include.run(self)
else:
return []
class IncludeExternal(Include):
def run(self):
if with_internal is None:
return []
if with_internal:
return []
else:
return Include.run(self)
def merge_po(dest_file, *src_files):
from collections import OrderedDict
pairs = OrderedDict()
for src_file in src_files:
lines = []
last_msg_id = None
for line in codecs.open(src_file, 'r', encoding='utf-8'):
if line.startswith('#'):
continue
if not line.strip():
continue
if line.startswith('msgid'):
if last_msg_id:
msg_txt = '\n'.join(lines)
pairs[last_msg_id] = msg_txt
last_msg_id = None
lines = [line.strip('\n')]
elif line.startswith('msgstr'):
if lines:
last_msg_id = '\n'.join(lines)
lines = [line.strip('\n')]
else:
lines.append(line.strip('\n'))
if last_msg_id:
msg_txt = '\n'.join(lines)
pairs[last_msg_id] = msg_txt
with codecs.open(dest_file, 'w', encoding='utf-8') as outf:
for k, v in pairs.items():
outf.write(k)
outf.write('\n')
outf.write(v)
outf.write('\n\n')
# config for internal label
def setup(app):
if with_internal:
tags.add('internal')
app.add_stylesheet('theme_override.css')
app.add_javascript('theme_override.js')
if not on_rtd:
app.add_stylesheet('theme_override-nrtd.css')
app.add_javascript('theme_override-nrtd.js')
if os.path.exists(os.path.join(docroot, '_static', 'theme_override-nrtd-int.css')):
app.add_stylesheet('theme_override-nrtd-int.css')
if os.path.exists(os.path.join(docroot, '_static', 'theme_override-nrtd-int.js')):
app.add_javascript('theme_override-nrtd-int.js')
app.add_directive('intinclude', IncludeInternal)
app.add_directive('extinclude', IncludeExternal)
if with_internal is None:
return
lang = app.config.language
if lang is None:
return
if with_internal:
inc_pattern = re.compile(r'\n *\.\. *intinclude:: *([^\s]+)')
else:
inc_pattern = re.compile(r'\n *\.\. *extinclude:: *([^\s]+)')
conf_root = os.path.dirname(os.path.abspath(__file__))
for root, _, files in os.walk(conf_root):
for f in files:
if not f.lower().endswith('.rst'):
continue
dest_po_file, _ = os.path.splitext(f)
dest_po_file = os.path.join(locale_dir, lang, 'LC_MESSAGES', dest_po_file + '.po')
with codecs.open(os.path.join(root, f), 'r') as inf:
content = inf.read()
src_po_files = []
for match in inc_pattern.finditer(content):
src_po_file, _ = os.path.splitext(match.group(1))
src_po_file = os.path.join(locale_dir, lang, 'LC_MESSAGES', src_po_file + '.po')
if os.path.exists(src_po_file):
src_po_files.append(src_po_file)
if src_po_files:
if os.path.exists(dest_po_file):
src_po_files = [dest_po_file] + src_po_files
print('Merge %s <- %s' % (dest_po_file, ','.join(src_po_files)))
merge_po(dest_po_file, *src_po_files)
| [
1,
396,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
29937,
13,
29937,
10772,
29949,
29881,
567,
5106,
2048,
5285,
934,
29892,
2825,
491,
13,
29937,
269,
561,
14668,
29899,
24561,
2962,
373,
15050,
2864,
29871,
29896,
29947,
29871,
29900,
29929,
29901,
29946,
29955,
29901,
29896,
29946,
29871,
29906,
29900,
29896,
29945,
29889,
13,
29937,
13,
29937,
910,
934,
338,
2279,
1445,
580,
29881,
411,
278,
1857,
3884,
731,
304,
967,
13,
29937,
6943,
4516,
29889,
13,
29937,
13,
29937,
3940,
393,
451,
599,
1950,
5285,
1819,
526,
2198,
297,
445,
13,
29937,
1120,
468,
759,
630,
934,
29889,
13,
29937,
13,
29937,
2178,
5285,
1819,
505,
263,
2322,
29936,
1819,
393,
526,
19952,
714,
13,
29937,
9080,
304,
1510,
278,
2322,
29889,
13,
13,
5215,
10876,
13,
5215,
2897,
13,
5215,
528,
4422,
13,
5215,
263,
4776,
277,
13,
5215,
5694,
1445,
13,
5215,
1426,
6312,
13,
5215,
775,
2395,
13,
5215,
337,
13,
3166,
269,
561,
14668,
29889,
11851,
3145,
1053,
512,
2325,
13,
13,
25721,
353,
2897,
29889,
2084,
29889,
25721,
13,
1514,
4632,
353,
2897,
29889,
2084,
29889,
25721,
29898,
359,
29889,
2084,
29889,
370,
1028,
493,
22168,
1445,
1649,
876,
13,
13,
29937,
960,
17752,
313,
272,
10585,
304,
1842,
411,
1120,
397,
542,
29897,
526,
297,
1790,
3884,
29892,
13,
29937,
788,
1438,
17525,
304,
10876,
29889,
2084,
1244,
29889,
960,
278,
3884,
338,
6198,
304,
278,
13,
29937,
5106,
3876,
29892,
671,
2897,
29889,
2084,
29889,
370,
1028,
493,
304,
1207,
372,
8380,
29892,
763,
4318,
1244,
29889,
13,
9675,
29889,
2084,
29889,
7851,
29898,
29900,
29892,
4516,
978,
29898,
25721,
29898,
25721,
29898,
359,
29889,
2084,
29889,
370,
1028,
493,
22168,
1445,
1649,
876,
4961,
13,
9675,
29889,
2084,
29889,
4397,
29898,
359,
29889,
2084,
29889,
370,
1028,
493,
877,
6995,
29879,
561,
14668,
29899,
1062,
29914,
8785,
13,
13,
29937,
373,
29918,
29878,
1594,
338,
3692,
591,
526,
373,
1303,
386,
287,
12332,
29889,
990,
29892,
445,
1196,
310,
775,
2646,
1327,
287,
515,
10561,
29889,
949,
386,
287,
12332,
29889,
990,
13,
265,
29918,
29878,
1594,
353,
2897,
29889,
21813,
29889,
657,
877,
16310,
4690,
3352,
29949,
9295,
742,
6213,
29897,
1275,
525,
5574,
29915,
13,
13,
29937,
1192,
4593,
5285,
448,
2683,
2683,
9072,
5634,
13,
13,
29937,
960,
596,
5106,
4225,
263,
13114,
317,
561,
14668,
1873,
29892,
2106,
372,
1244,
29889,
13,
29937,
484,
5779,
29918,
29879,
561,
14668,
353,
525,
29896,
29889,
29900,
29915,
13,
13,
29937,
3462,
738,
317,
561,
14668,
6081,
3883,
2983,
1244,
29892,
408,
6031,
29889,
2688,
508,
367,
13,
29937,
17752,
6421,
411,
317,
561,
14668,
313,
17514,
525,
29879,
561,
14668,
29889,
1062,
5575,
1495,
470,
596,
2888,
13,
29937,
6743,
29889,
13,
24299,
353,
518,
13,
1678,
525,
29879,
561,
14668,
29889,
1062,
29889,
1300,
397,
542,
742,
13,
1678,
525,
29879,
561,
14668,
29889,
1062,
29889,
29873,
8144,
742,
13,
1678,
525,
29879,
561,
14668,
29889,
1062,
29889,
361,
2917,
742,
13,
1678,
525,
29879,
561,
14668,
29889,
1062,
29889,
1493,
401,
742,
13,
1678,
525,
29879,
561,
14668,
29889,
1062,
29889,
1300,
359,
398,
5219,
742,
13,
1678,
525,
29879,
561,
14668,
29889,
1062,
29889,
8971,
1772,
265,
742,
13,
1678,
525,
29879,
561,
14668,
29889,
1062,
29889,
755,
6487,
742,
13,
29962,
13,
13,
29937,
3462,
738,
10898,
393,
1712,
17475,
1244,
29892,
6198,
304,
445,
3884,
29889,
13,
20943,
29918,
2084,
353,
6024,
29918,
20943,
2033,
13,
13,
29937,
450,
25557,
29898,
267,
29897,
310,
2752,
977,
264,
1280,
29889,
13,
29937,
887,
508,
6084,
2999,
25557,
408,
263,
1051,
310,
1347,
29901,
13,
29937,
2752,
29918,
2146,
600,
861,
353,
518,
4286,
29878,
303,
742,
15300,
3487,
2033,
13,
4993,
29918,
2146,
600,
861,
353,
15300,
29878,
303,
29915,
13,
13,
29937,
450,
8025,
310,
2752,
2066,
29889,
13,
29937,
4993,
29918,
22331,
353,
525,
9420,
29899,
29947,
29899,
18816,
29915,
13,
13,
29937,
450,
5835,
304,
312,
929,
1842,
29889,
13,
6207,
29918,
1514,
353,
525,
2248,
29915,
13,
13,
29937,
4593,
2472,
1048,
278,
2060,
29889,
13,
4836,
353,
318,
29915,
19737,
13668,
7024,
29915,
13,
8552,
1266,
353,
318,
29915,
29906,
29900,
29896,
29946,
29899,
29906,
29900,
29896,
29947,
29892,
450,
319,
1982,
5363,
6431,
21771,
292,
19806,
6169,
13,
8921,
353,
318,
29915,
29984,
262,
1060,
29884,
4099,
29915,
13,
13,
29937,
450,
1873,
5235,
363,
278,
2060,
366,
29915,
276,
1842,
292,
29892,
14741,
408,
16920,
363,
13,
29937,
891,
3259,
29989,
322,
891,
14096,
29989,
29892,
884,
1304,
297,
5164,
916,
7600,
10106,
278,
13,
29937,
4240,
10701,
29889,
13,
29937,
13,
29937,
450,
3273,
1060,
29889,
29979,
1873,
29889,
13,
3166,
2413,
567,
1053,
4770,
3259,
1649,
13,
3259,
353,
4770,
3259,
1649,
13,
29937,
450,
2989,
1873,
29892,
3704,
15595,
29914,
3571,
29914,
2214,
8282,
29889,
13,
14096,
353,
4770,
3259,
1649,
13,
13,
29937,
450,
4086,
363,
2793,
1120,
468,
759,
630,
491,
317,
561,
14668,
29889,
4118,
304,
5106,
13,
29937,
363,
263,
1051,
310,
6969,
10276,
29889,
13,
29937,
13,
29937,
910,
338,
884,
1304,
565,
366,
437,
2793,
13962,
3025,
679,
726,
16653,
29879,
29889,
13,
29937,
26991,
366,
731,
376,
11675,
29908,
515,
278,
1899,
1196,
363,
1438,
4251,
29889,
13,
11675,
353,
6213,
13,
13,
29937,
1670,
526,
1023,
3987,
363,
15270,
891,
27765,
29989,
29901,
2845,
29892,
366,
731,
9826,
304,
777,
13,
29937,
1661,
29899,
4541,
995,
29892,
769,
372,
338,
1304,
29901,
13,
29937,
27765,
353,
6629,
13,
29937,
15785,
29892,
9826,
29918,
23479,
338,
1304,
408,
278,
3402,
363,
263,
851,
615,
603,
1246,
29889,
13,
29937,
27765,
29918,
23479,
353,
14210,
29933,
1273,
29881,
29892,
1273,
29979,
29915,
13,
13,
29937,
2391,
310,
15038,
29892,
6198,
304,
2752,
3884,
29892,
393,
1993,
2066,
322,
13,
29937,
17525,
304,
11455,
746,
3063,
363,
2752,
2066,
29889,
13,
361,
525,
657,
726,
29915,
451,
297,
10876,
29889,
19218,
29901,
13,
1678,
1018,
29901,
13,
4706,
1053,
2413,
567,
29889,
7564,
13,
4706,
411,
29918,
7564,
353,
5852,
13,
4706,
19060,
29918,
11037,
29879,
353,
6024,
29930,
29899,
1062,
29889,
29878,
303,
742,
525,
29930,
29899,
1062,
29899,
10521,
29878,
303,
2033,
13,
1678,
5174,
16032,
2392,
29901,
13,
4706,
411,
29918,
7564,
353,
7700,
13,
4706,
19060,
29918,
11037,
29879,
353,
6024,
29930,
29899,
524,
29889,
29878,
303,
742,
525,
29930,
29899,
524,
29899,
10521,
29878,
303,
2033,
13,
2870,
29901,
13,
1678,
411,
29918,
7564,
353,
6213,
13,
13,
29937,
450,
337,
1254,
2322,
6297,
313,
3880,
363,
445,
24986,
29901,
421,
726,
6348,
304,
671,
363,
599,
13,
29937,
10701,
29889,
13,
29937,
4381,
29918,
12154,
353,
6213,
13,
13,
29937,
960,
1565,
29892,
525,
580,
29915,
674,
367,
623,
2760,
304,
584,
9891,
29901,
2992,
29889,
4891,
29899,
5679,
1426,
29889,
13,
29937,
1202,
29918,
2220,
29918,
3560,
13244,
267,
353,
5852,
13,
13,
29937,
960,
1565,
29892,
278,
1857,
3883,
1024,
674,
367,
8273,
2760,
304,
599,
6139,
13,
29937,
5190,
17735,
313,
14565,
408,
6317,
740,
1057,
467,
13,
29937,
1202,
29918,
5453,
29918,
7039,
353,
5852,
13,
13,
29937,
960,
1565,
29892,
4004,
8921,
322,
3883,
8921,
1513,
3145,
674,
367,
4318,
297,
278,
13,
29937,
1962,
29889,
2688,
526,
17262,
491,
2322,
29889,
13,
29937,
4294,
29918,
5150,
943,
353,
7700,
13,
13,
29937,
450,
1024,
310,
278,
349,
4790,
1860,
313,
29562,
12141,
292,
29897,
3114,
304,
671,
29889,
13,
2272,
29887,
1860,
29918,
3293,
353,
525,
29879,
561,
14668,
29915,
13,
13,
29937,
319,
1051,
310,
17262,
10944,
267,
363,
3883,
2380,
16548,
29889,
13,
29937,
1545,
2248,
29918,
9435,
29918,
13506,
353,
5159,
13,
13,
29937,
960,
1565,
29892,
3013,
18116,
408,
376,
5205,
2643,
29908,
14880,
29879,
297,
278,
4240,
10701,
29889,
13,
29937,
17462,
29918,
25442,
886,
353,
7700,
13,
13,
29937,
960,
1565,
29892,
421,
29873,
8144,
29952,
322,
421,
29873,
8144,
1293,
29952,
7738,
1962,
29892,
1683,
896,
7738,
3078,
29889,
13,
29873,
8144,
29918,
2856,
29918,
20034,
359,
353,
5852,
13,
13,
29937,
1192,
25186,
363,
4544,
1962,
448,
2683,
2683,
9072,
29899,
13,
13,
29937,
450,
10929,
304,
671,
363,
4544,
322,
4544,
22305,
6515,
29889,
29871,
2823,
278,
5106,
363,
13,
29937,
263,
1051,
310,
4240,
262,
963,
267,
29889,
13,
1420,
29918,
18193,
353,
525,
29879,
561,
14668,
29918,
29878,
1594,
29918,
18193,
29915,
13,
13,
29937,
498,
2004,
3987,
526,
10929,
29899,
14940,
322,
2888,
675,
278,
1106,
322,
4459,
310,
263,
10929,
13,
29937,
4340,
29889,
29871,
1152,
263,
1051,
310,
3987,
3625,
363,
1269,
10929,
29892,
1074,
278,
13,
29937,
5106,
29889,
13,
29937,
1420,
29918,
18193,
29918,
6768,
353,
6571,
13,
13,
29937,
3462,
738,
10898,
393,
1712,
2888,
963,
267,
1244,
29892,
6198,
304,
445,
3884,
29889,
13,
29937,
1420,
29918,
18193,
29918,
2084,
353,
5159,
13,
13,
29937,
450,
1024,
363,
445,
731,
310,
317,
561,
14668,
10701,
29889,
29871,
960,
6213,
29892,
372,
21274,
304,
13,
29937,
9872,
4836,
29958,
325,
29966,
14096,
29958,
5106,
1642,
13,
29937,
1420,
29918,
3257,
353,
6213,
13,
13,
29937,
319,
20511,
3611,
363,
278,
11322,
2594,
29889,
29871,
13109,
338,
278,
1021,
408,
3472,
29918,
3257,
29889,
13,
29937,
1420,
29918,
12759,
29918,
3257,
353,
6213,
13,
13,
29937,
450,
1024,
310,
385,
1967,
934,
313,
22925,
304,
445,
3884,
29897,
304,
2058,
472,
278,
2246,
13,
29937,
310,
278,
2625,
1646,
29889,
13,
1420,
29918,
14569,
353,
22868,
7959,
29914,
19737,
13668,
7024,
29889,
2732,
29915,
13,
13,
29937,
450,
1024,
310,
385,
1967,
934,
313,
2541,
262,
278,
2294,
2224,
29897,
304,
671,
408,
5025,
4144,
310,
278,
13,
29937,
10561,
29889,
29871,
910,
934,
881,
367,
263,
3852,
9849,
934,
14544,
1417,
29897,
1641,
29871,
29896,
29953,
29916,
29896,
29953,
470,
29871,
29941,
29906,
29916,
29941,
29906,
13,
29937,
17036,
2919,
29889,
13,
29937,
1420,
29918,
29888,
485,
4144,
353,
6213,
13,
13,
29937,
3462,
738,
10898,
393,
1712,
2888,
2294,
2066,
313,
14565,
408,
3114,
26718,
29897,
1244,
29892,
13,
29937,
6198,
304,
445,
3884,
29889,
2688,
526,
13746,
1156,
278,
4240,
262,
2294,
2066,
29892,
13,
29937,
577,
263,
934,
4257,
376,
4381,
29889,
4268,
29908,
674,
26556,
278,
4240,
262,
376,
4381,
29889,
4268,
1642,
13,
1420,
29918,
7959,
29918,
2084,
353,
6024,
29918,
7959,
2033,
13,
13,
29937,
3462,
738,
4805,
10898,
393,
1712,
2888,
2066,
313,
14565,
408,
10832,
1862,
29889,
3945,
470,
13,
29937,
869,
21294,
29897,
1244,
29892,
6198,
304,
445,
3884,
29889,
4525,
2066,
526,
13746,
13,
29937,
4153,
304,
278,
3876,
310,
278,
5106,
29889,
13,
29937,
1420,
29918,
17833,
29918,
2084,
353,
5159,
13,
13,
29937,
960,
451,
15516,
263,
525,
8897,
4784,
373,
11283,
14334,
338,
15478,
472,
1432,
1813,
5970,
29892,
13,
29937,
773,
278,
2183,
851,
615,
603,
3402,
29889,
13,
29937,
1420,
29918,
4230,
29918,
21402,
29918,
23479,
353,
14210,
29890,
1273,
29881,
29892,
1273,
29979,
29915,
13,
13,
29937,
960,
1565,
29892,
4116,
442,
29891,
29925,
1934,
674,
367,
1304,
304,
3588,
11839,
322,
12569,
267,
304,
13,
29937,
2393,
1946,
1711,
1959,
16212,
29889,
13,
29937,
1420,
29918,
1509,
29918,
3844,
442,
1478,
1934,
353,
5852,
13,
13,
29937,
8701,
2625,
1646,
17475,
29892,
11053,
1842,
2983,
304,
4472,
2983,
29889,
13,
29937,
1420,
29918,
2975,
28408,
353,
6571,
13,
13,
29937,
3462,
3245,
17475,
393,
881,
367,
13751,
304,
6515,
29892,
11053,
1813,
2983,
304,
13,
29937,
4472,
2983,
29889,
13,
29937,
1420,
29918,
1202,
3245,
29918,
12292,
353,
6571,
13,
13,
29937,
960,
2089,
29892,
694,
3883,
2380,
338,
5759,
29889,
13,
29937,
1420,
29918,
7247,
29918,
513,
1575,
353,
5852,
13,
13,
29937,
960,
2089,
29892,
694,
2380,
338,
5759,
29889,
13,
29937,
1420,
29918,
1509,
29918,
2248,
353,
5852,
13,
13,
29937,
960,
1565,
29892,
278,
2380,
338,
6219,
964,
5375,
6515,
363,
1269,
5497,
29889,
13,
29937,
1420,
29918,
5451,
29918,
2248,
353,
7700,
13,
13,
29937,
960,
1565,
29892,
2988,
304,
278,
337,
1254,
8974,
526,
2715,
304,
278,
6515,
29889,
13,
29937,
1420,
29918,
4294,
29918,
29879,
473,
2242,
682,
353,
5852,
13,
13,
29937,
960,
1565,
29892,
376,
20399,
773,
317,
561,
14668,
29908,
338,
4318,
297,
278,
4544,
24166,
29889,
13109,
338,
5852,
29889,
13,
29937,
1420,
29918,
4294,
29918,
29879,
561,
14668,
353,
5852,
13,
13,
29937,
960,
1565,
29892,
18227,
29907,
29897,
14187,
1266,
2023,
29908,
338,
4318,
297,
278,
4544,
24166,
29889,
13109,
338,
5852,
29889,
13,
29937,
1420,
29918,
4294,
29918,
8552,
1266,
353,
5852,
13,
13,
29937,
960,
1565,
29892,
385,
4673,
7974,
6139,
934,
674,
367,
1962,
29892,
322,
599,
6515,
674,
13,
29937,
1712,
263,
529,
2324,
29958,
4055,
16811,
304,
372,
29889,
29871,
450,
995,
310,
445,
2984,
1818,
367,
278,
13,
29937,
2967,
3988,
515,
607,
278,
7743,
4544,
338,
6766,
29889,
13,
29937,
1420,
29918,
1509,
29918,
459,
1947,
1279,
353,
6629,
13,
13,
29937,
910,
338,
278,
934,
1024,
25557,
363,
4544,
2066,
313,
29872,
29889,
29887,
29889,
11393,
28392,
2564,
13,
29937,
1420,
29918,
1445,
29918,
2146,
600,
861,
353,
6213,
13,
13,
29937,
17088,
304,
367,
1304,
363,
14655,
278,
4544,
2989,
29899,
726,
2740,
2380,
29889,
13,
29937,
317,
561,
14668,
11286,
278,
1494,
10276,
29901,
13,
29937,
259,
525,
1388,
742,
525,
311,
742,
525,
264,
742,
525,
267,
742,
525,
7241,
742,
525,
1341,
742,
525,
6905,
742,
525,
277,
742,
525,
1764,
29915,
13,
29937,
259,
525,
12938,
742,
525,
1217,
742,
525,
415,
742,
525,
307,
742,
525,
582,
742,
525,
4501,
742,
525,
509,
29915,
13,
29937,
1420,
29918,
4478,
29918,
11675,
353,
525,
264,
29915,
13,
13,
29937,
319,
8600,
411,
3987,
363,
278,
2740,
4086,
2304,
29892,
4069,
491,
2322,
29889,
13,
29937,
2567,
871,
525,
1764,
29915,
3913,
445,
2295,
995,
13,
29937,
1420,
29918,
4478,
29918,
6768,
353,
11117,
1853,
2396,
525,
4381,
10827,
13,
13,
29937,
450,
1024,
310,
263,
3513,
934,
313,
22925,
304,
278,
5285,
3884,
29897,
393,
13,
29937,
10703,
263,
2740,
2582,
885,
9386,
29889,
960,
4069,
29892,
278,
2322,
674,
367,
1304,
29889,
13,
29937,
1420,
29918,
4478,
29918,
1557,
9386,
353,
525,
1557,
9386,
29889,
1315,
29915,
13,
13,
29937,
10604,
934,
2967,
1024,
363,
4544,
1371,
12856,
29889,
13,
1420,
8477,
29918,
6500,
3871,
353,
525,
19737,
29949,
29881,
567,
1514,
29915,
13,
13,
29937,
1192,
25186,
363,
29186,
1962,
448,
2683,
2683,
9072,
13,
13,
25694,
29918,
10599,
353,
525,
29916,
295,
403,
29916,
29915,
13,
13,
25694,
29918,
17664,
353,
426,
13,
1678,
525,
1457,
314,
569,
2396,
1426,
6312,
29889,
7176,
296,
29898,
29878,
15945,
29908,
13,
1678,
320,
9096,
29912,
15120,
29913,
13,
1678,
320,
9096,
29912,
24947,
999,
29913,
13,
1678,
320,
842,
11808,
29912,
517,
29883,
19488,
1157,
29906,
29913,
13,
1678,
5124,
1159,
13,
29913,
13,
13,
361,
373,
29918,
29878,
1594,
29901,
13,
1678,
628,
5683,
29916,
29918,
10599,
13,
1678,
5683,
29916,
29918,
17664,
1839,
1457,
314,
569,
2033,
353,
1426,
6312,
29889,
7176,
296,
29898,
29878,
15945,
29908,
13,
1678,
320,
29882,
1478,
24197,
786,
29912,
2523,
356,
29922,
3009,
29913,
13,
1678,
320,
9096,
29912,
29907,
29967,
29968,
9420,
29947,
29913,
13,
1678,
320,
9096,
29912,
15120,
29913,
13,
1678,
320,
9096,
29912,
24947,
999,
29913,
13,
1678,
320,
842,
11808,
29912,
517,
29883,
19488,
1157,
29906,
29913,
13,
1678,
320,
6185,
8663,
2525,
12858,
20755,
29912,
29900,
29900,
29909,
29900,
3331,
29876,
7630,
557,
3493,
29913,
13,
1678,
320,
6185,
8663,
2525,
12858,
20755,
29912,
29906,
29906,
29900,
29941,
3331,
8065,
741,
9933,
930,
13,
1678,
320,
6185,
8663,
2525,
12858,
20755,
29912,
29906,
29906,
29900,
29900,
3331,
8065,
741,
10956,
930,
13,
1678,
320,
6185,
8663,
2525,
12858,
20755,
29912,
29906,
29906,
29947,
29953,
3331,
8065,
741,
11725,
930,
13,
1678,
320,
6185,
8663,
2525,
12858,
20755,
29912,
29906,
29955,
29896,
29941,
1157,
29916,
29913,
13,
1678,
320,
6185,
8663,
2525,
12858,
20755,
29912,
29906,
29955,
4519,
3331,
8065,
741,
8208,
25874,
28751,
930,
13,
1678,
320,
6185,
8663,
2525,
12858,
20755,
29912,
29906,
29906,
29896,
29909,
3331,
8065,
741,
3676,
29912,
12499,
13,
1678,
320,
6185,
8663,
2525,
12858,
20755,
29912,
29906,
29906,
29896,
29933,
3331,
8065,
741,
3676,
29961,
29941,
3199,
12499,
13,
1678,
320,
6185,
8663,
2525,
12858,
20755,
29912,
29906,
29906,
29929,
29945,
3331,
8065,
741,
17201,
930,
13,
1678,
320,
6185,
8663,
2525,
12858,
20755,
29912,
29906,
29906,
29929,
29955,
3331,
8065,
741,
9356,
930,
13,
1678,
320,
463,
29912,
29907,
29967,
29968,
1157,
10496,
29947,
1157,
29887,
5824,
29876,
29913,
13,
1678,
320,
4178,
5044,
6268,
741,
355,
29912,
29907,
29967,
29968,
930,
13,
1678,
5124,
1159,
13,
13,
29937,
6431,
292,
278,
1842,
5447,
964,
29186,
2066,
29889,
2391,
310,
5291,
2701,
13,
29937,
313,
4993,
1369,
934,
29892,
3646,
1024,
29892,
3611,
29892,
13,
29937,
29871,
4148,
29892,
1842,
1990,
518,
3525,
517,
29892,
12219,
29892,
470,
1914,
770,
14664,
13,
25694,
29918,
3225,
29879,
353,
518,
13,
29871,
313,
6207,
29918,
1514,
29892,
525,
19737,
29949,
29881,
567,
29889,
4776,
742,
318,
29915,
19737,
13668,
7024,
10854,
362,
742,
13,
259,
318,
29915,
1576,
319,
1982,
5363,
6431,
21771,
292,
19806,
29889,
742,
525,
11288,
5477,
13,
29962,
13,
13,
29937,
450,
1024,
310,
385,
1967,
934,
313,
22925,
304,
445,
3884,
29897,
304,
2058,
472,
278,
2246,
310,
13,
29937,
278,
3611,
1813,
29889,
13,
29937,
25694,
29918,
14569,
353,
6213,
13,
13,
29937,
1152,
376,
11288,
29908,
10701,
29892,
565,
445,
338,
1565,
29892,
769,
304,
552,
955,
2343,
886,
526,
5633,
29892,
13,
29937,
451,
10708,
2153,
29889,
13,
29937,
25694,
29918,
1509,
29918,
20895,
353,
7700,
13,
13,
29937,
960,
1565,
29892,
1510,
1813,
9282,
1156,
7463,
2988,
29889,
13,
29937,
25694,
29918,
4294,
29918,
13573,
406,
5847,
353,
7700,
13,
13,
29937,
960,
1565,
29892,
1510,
3988,
14157,
1156,
7029,
2988,
29889,
13,
29937,
25694,
29918,
4294,
29918,
26045,
353,
7700,
13,
13,
29937,
10854,
29879,
304,
9773,
408,
385,
9773,
861,
304,
599,
12219,
29879,
29889,
13,
29937,
25694,
29918,
4397,
1575,
353,
5159,
13,
13,
29937,
960,
2089,
29892,
694,
3883,
2380,
338,
5759,
29889,
13,
29937,
25694,
29918,
7247,
29918,
513,
1575,
353,
5852,
13,
13,
13,
29937,
1192,
25186,
363,
12219,
1813,
1962,
448,
2683,
2683,
22158,
13,
13,
29937,
3118,
6251,
639,
12219,
1813,
29889,
2391,
310,
5291,
2701,
13,
29937,
313,
4993,
1369,
934,
29892,
1024,
29892,
6139,
29892,
15717,
29892,
12219,
4004,
467,
13,
1171,
29918,
12292,
353,
518,
13,
1678,
313,
6207,
29918,
1514,
29892,
525,
2272,
397,
567,
742,
318,
29915,
19737,
13668,
7024,
10854,
362,
742,
13,
268,
518,
8921,
1402,
29871,
29896,
29897,
13,
29962,
13,
13,
29937,
960,
1565,
29892,
1510,
3988,
14157,
1156,
7029,
2988,
29889,
13,
29937,
1171,
29918,
4294,
29918,
26045,
353,
7700,
13,
13,
13,
29937,
1192,
25186,
363,
8490,
3888,
1962,
448,
2683,
2683,
28400,
13,
13,
29937,
6431,
292,
278,
1842,
5447,
964,
8490,
3888,
2066,
29889,
2391,
310,
5291,
2701,
13,
29937,
313,
4993,
1369,
934,
29892,
3646,
1024,
29892,
3611,
29892,
4148,
29892,
13,
29937,
29871,
4516,
6143,
6251,
29892,
6139,
29892,
7663,
29897,
13,
4776,
3888,
29918,
3225,
29879,
353,
518,
13,
29871,
313,
6207,
29918,
1514,
29892,
525,
19737,
13668,
7024,
742,
318,
29915,
19737,
13668,
7024,
10854,
362,
742,
13,
259,
4148,
29892,
525,
19737,
13668,
7024,
742,
525,
6716,
1196,
6139,
310,
2060,
29889,
742,
13,
259,
525,
29924,
275,
3729,
23584,
5477,
13,
29962,
13,
13,
29937,
10854,
29879,
304,
9773,
408,
385,
9773,
861,
304,
599,
12219,
29879,
29889,
13,
29937,
4776,
3888,
29918,
4397,
1575,
353,
5159,
13,
13,
29937,
960,
2089,
29892,
694,
3883,
2380,
338,
5759,
29889,
13,
29937,
4776,
3888,
29918,
7247,
29918,
513,
1575,
353,
5852,
13,
13,
29937,
1128,
304,
2479,
3988,
14157,
29901,
525,
20273,
742,
525,
1217,
742,
470,
525,
14764,
4286,
13,
29937,
4776,
3888,
29918,
4294,
29918,
26045,
353,
525,
20273,
29915,
13,
13,
29937,
960,
1565,
29892,
437,
451,
5706,
263,
732,
16432,
6510,
297,
278,
376,
7031,
29908,
2943,
29915,
29879,
6143,
29889,
13,
29937,
4776,
3888,
29918,
1217,
29918,
16432,
6510,
353,
7700,
13,
13,
29937,
9709,
1772,
265,
29918,
3608,
29918,
1514,
1807,
353,
7700,
13,
13,
657,
726,
29918,
1202,
3245,
29918,
5182,
29879,
353,
6024,
20889,
284,
29899,
1271,
742,
525,
3027,
742,
525,
1610,
2033,
13,
13,
29937,
8741,
5285,
363,
1006,
29879,
561,
14668,
29901,
2737,
304,
278,
5132,
3918,
3489,
29889,
13,
1639,
29879,
561,
14668,
29918,
20698,
353,
11117,
991,
597,
2640,
29889,
4691,
29889,
990,
29914,
2396,
6213,
29913,
13,
13,
755,
6487,
29918,
2084,
353,
376,
991,
597,
29062,
29889,
28260,
29889,
510,
29914,
6538,
29914,
10254,
29914,
755,
6487,
29914,
29906,
29889,
29955,
29889,
29896,
29914,
11309,
29967,
1165,
29889,
1315,
29973,
2917,
29922,
16644,
29899,
29909,
4345,
29899,
29924,
1988,
29918,
7020,
272,
29924,
1988,
29908,
13,
13,
29937,
1192,
7338,
2673,
5285,
448,
2683,
2683,
2683,
13,
13,
361,
738,
877,
29879,
561,
14668,
29899,
524,
29880,
29915,
297,
263,
363,
263,
297,
10876,
29889,
19218,
29897,
470,
525,
657,
726,
29915,
297,
10876,
29889,
19218,
470,
373,
29918,
29878,
1594,
29901,
13,
1678,
15068,
29918,
3972,
29879,
353,
6024,
23337,
29914,
2033,
13,
1678,
15068,
29918,
3972,
353,
2897,
29889,
2084,
29889,
7122,
29898,
1514,
4632,
29892,
525,
23337,
1495,
13,
2870,
29901,
13,
1678,
5694,
29918,
29880,
29883,
29918,
3972,
353,
5694,
1445,
29889,
11256,
29881,
7382,
29898,
13506,
2433,
2272,
397,
567,
29899,
1129,
29899,
1495,
13,
1678,
15068,
29918,
3972,
353,
2897,
29889,
2084,
29889,
7122,
29898,
7382,
29918,
29880,
29883,
29918,
3972,
29892,
525,
23337,
1495,
13,
1678,
528,
4422,
29889,
8552,
8336,
877,
23337,
742,
15068,
29918,
3972,
29897,
13,
1678,
15068,
29918,
3972,
29879,
353,
518,
23337,
29918,
3972,
29962,
13,
1678,
263,
4776,
277,
29889,
9573,
29898,
845,
4422,
29889,
1758,
8336,
29892,
5694,
29918,
29880,
29883,
29918,
3972,
29897,
13,
657,
726,
29918,
2388,
627,
353,
7700,
13,
13,
13,
1990,
512,
2325,
16491,
29898,
29419,
1125,
13,
1678,
822,
1065,
29898,
1311,
1125,
13,
4706,
565,
411,
29918,
7564,
338,
6213,
29901,
13,
9651,
736,
5159,
13,
4706,
565,
411,
29918,
7564,
29901,
13,
9651,
736,
512,
2325,
29889,
3389,
29898,
1311,
29897,
13,
4706,
1683,
29901,
13,
9651,
736,
5159,
13,
13,
13,
1990,
512,
2325,
25865,
29898,
29419,
1125,
13,
1678,
822,
1065,
29898,
1311,
1125,
13,
4706,
565,
411,
29918,
7564,
338,
6213,
29901,
13,
9651,
736,
5159,
13,
4706,
565,
411,
29918,
7564,
29901,
13,
9651,
736,
5159,
13,
4706,
1683,
29901,
13,
9651,
736,
512,
2325,
29889,
3389,
29898,
1311,
29897,
13,
13,
13,
1753,
10366,
29918,
1129,
29898,
7854,
29918,
1445,
29892,
334,
4351,
29918,
5325,
1125,
13,
1678,
515,
16250,
1053,
8170,
287,
21533,
13,
1678,
11000,
353,
8170,
287,
21533,
580,
13,
1678,
363,
4765,
29918,
1445,
297,
4765,
29918,
5325,
29901,
13,
4706,
3454,
353,
5159,
13,
4706,
1833,
29918,
7645,
29918,
333,
353,
6213,
13,
4706,
363,
1196,
297,
775,
2395,
29889,
3150,
29898,
4351,
29918,
1445,
29892,
525,
29878,
742,
8025,
2433,
9420,
29899,
29947,
29374,
13,
9651,
565,
1196,
29889,
27382,
2541,
14237,
29374,
13,
18884,
6773,
13,
9651,
565,
451,
1196,
29889,
17010,
7295,
13,
18884,
6773,
13,
9651,
565,
1196,
29889,
27382,
2541,
877,
7645,
333,
29374,
13,
18884,
565,
1833,
29918,
7645,
29918,
333,
29901,
13,
462,
1678,
10191,
29918,
3945,
353,
11297,
29876,
4286,
7122,
29898,
9012,
29897,
13,
462,
1678,
11000,
29961,
4230,
29918,
7645,
29918,
333,
29962,
353,
10191,
29918,
3945,
13,
462,
1678,
1833,
29918,
7645,
29918,
333,
353,
6213,
13,
18884,
3454,
353,
518,
1220,
29889,
17010,
28909,
29876,
1495,
29962,
13,
9651,
25342,
1196,
29889,
27382,
2541,
877,
7645,
710,
29374,
13,
18884,
565,
3454,
29901,
13,
462,
1678,
1833,
29918,
7645,
29918,
333,
353,
11297,
29876,
4286,
7122,
29898,
9012,
29897,
13,
18884,
3454,
353,
518,
1220,
29889,
17010,
28909,
29876,
1495,
29962,
13,
9651,
1683,
29901,
13,
18884,
3454,
29889,
4397,
29898,
1220,
29889,
17010,
28909,
29876,
8785,
13,
13,
4706,
565,
1833,
29918,
7645,
29918,
333,
29901,
13,
9651,
10191,
29918,
3945,
353,
11297,
29876,
4286,
7122,
29898,
9012,
29897,
13,
9651,
11000,
29961,
4230,
29918,
7645,
29918,
333,
29962,
353,
10191,
29918,
3945,
13,
13,
1678,
411,
775,
2395,
29889,
3150,
29898,
7854,
29918,
1445,
29892,
525,
29893,
742,
8025,
2433,
9420,
29899,
29947,
1495,
408,
714,
29888,
29901,
13,
4706,
363,
413,
29892,
325,
297,
11000,
29889,
7076,
7295,
13,
9651,
714,
29888,
29889,
3539,
29898,
29895,
29897,
13,
9651,
714,
29888,
29889,
3539,
28909,
29876,
1495,
13,
9651,
714,
29888,
29889,
3539,
29898,
29894,
29897,
13,
9651,
714,
29888,
29889,
3539,
28909,
29876,
29905,
29876,
1495,
13,
13,
13,
29937,
2295,
363,
7463,
3858,
13,
1753,
6230,
29898,
932,
1125,
13,
1678,
565,
411,
29918,
7564,
29901,
13,
4706,
8282,
29889,
1202,
877,
7564,
1495,
13,
1678,
623,
29889,
1202,
29918,
13558,
877,
18193,
29918,
15752,
29889,
4268,
1495,
13,
1678,
623,
29889,
1202,
29918,
7729,
877,
18193,
29918,
15752,
29889,
1315,
1495,
13,
1678,
565,
451,
373,
29918,
29878,
1594,
29901,
13,
4706,
623,
29889,
1202,
29918,
13558,
877,
18193,
29918,
15752,
29899,
22230,
1594,
29889,
4268,
1495,
13,
4706,
623,
29889,
1202,
29918,
7729,
877,
18193,
29918,
15752,
29899,
22230,
1594,
29889,
1315,
1495,
13,
4706,
565,
2897,
29889,
2084,
29889,
9933,
29898,
359,
29889,
2084,
29889,
7122,
29898,
1514,
4632,
29892,
22868,
7959,
742,
525,
18193,
29918,
15752,
29899,
22230,
1594,
29899,
524,
29889,
4268,
8785,
29901,
13,
9651,
623,
29889,
1202,
29918,
13558,
877,
18193,
29918,
15752,
29899,
22230,
1594,
29899,
524,
29889,
4268,
1495,
13,
4706,
565,
2897,
29889,
2084,
29889,
9933,
29898,
359,
29889,
2084,
29889,
7122,
29898,
1514,
4632,
29892,
22868,
7959,
742,
525,
18193,
29918,
15752,
29899,
22230,
1594,
29899,
524,
29889,
1315,
8785,
29901,
13,
9651,
623,
29889,
1202,
29918,
7729,
877,
18193,
29918,
15752,
29899,
22230,
1594,
29899,
524,
29889,
1315,
1495,
13,
13,
1678,
623,
29889,
1202,
29918,
11851,
573,
877,
524,
2856,
742,
512,
2325,
16491,
29897,
13,
1678,
623,
29889,
1202,
29918,
11851,
573,
877,
1062,
2856,
742,
512,
2325,
25865,
29897,
13,
13,
1678,
565,
411,
29918,
7564,
338,
6213,
29901,
13,
4706,
736,
13,
13,
1678,
6361,
353,
623,
29889,
2917,
29889,
11675,
13,
1678,
565,
6361,
338,
6213,
29901,
13,
4706,
736,
13,
13,
1678,
565,
411,
29918,
7564,
29901,
13,
4706,
5528,
29918,
11037,
353,
337,
29889,
12198,
29898,
29878,
12764,
29876,
334,
29905,
7790,
29889,
334,
524,
2856,
1057,
334,
4197,
3823,
29879,
10062,
29897,
1495,
13,
1678,
1683,
29901,
13,
4706,
5528,
29918,
11037,
353,
337,
29889,
12198,
29898,
29878,
12764,
29876,
334,
29905,
7790,
29889,
334,
1062,
2856,
1057,
334,
4197,
3823,
29879,
10062,
29897,
1495,
13,
13,
1678,
1970,
29918,
4632,
353,
2897,
29889,
2084,
29889,
25721,
29898,
359,
29889,
2084,
29889,
370,
1028,
493,
22168,
1445,
1649,
876,
13,
1678,
363,
3876,
29892,
17117,
2066,
297,
2897,
29889,
20919,
29898,
5527,
29918,
4632,
1125,
13,
4706,
363,
285,
297,
2066,
29901,
13,
9651,
565,
451,
285,
29889,
13609,
2141,
1975,
2541,
12839,
29878,
303,
29374,
13,
18884,
6773,
13,
13,
9651,
2731,
29918,
1129,
29918,
1445,
29892,
903,
353,
2897,
29889,
2084,
29889,
23579,
568,
486,
29898,
29888,
29897,
13,
9651,
2731,
29918,
1129,
29918,
1445,
353,
2897,
29889,
2084,
29889,
7122,
29898,
23337,
29918,
3972,
29892,
6361,
29892,
525,
12182,
29918,
2303,
1799,
10461,
29903,
742,
2731,
29918,
1129,
29918,
1445,
718,
15300,
1129,
1495,
13,
9651,
411,
775,
2395,
29889,
3150,
29898,
359,
29889,
2084,
29889,
7122,
29898,
4632,
29892,
285,
511,
525,
29878,
1495,
408,
3041,
29901,
13,
18884,
2793,
353,
3041,
29889,
949,
580,
13,
9651,
4765,
29918,
1129,
29918,
5325,
353,
5159,
13,
9651,
363,
1993,
297,
5528,
29918,
11037,
29889,
2886,
1524,
29898,
3051,
1125,
13,
18884,
4765,
29918,
1129,
29918,
1445,
29892,
903,
353,
2897,
29889,
2084,
29889,
23579,
568,
486,
29898,
4352,
29889,
2972,
29898,
29896,
876,
13,
18884,
4765,
29918,
1129,
29918,
1445,
353,
2897,
29889,
2084,
29889,
7122,
29898,
23337,
29918,
3972,
29892,
6361,
29892,
525,
12182,
29918,
2303,
1799,
10461,
29903,
742,
4765,
29918,
1129,
29918,
1445,
718,
15300,
1129,
1495,
13,
18884,
565,
2897,
29889,
2084,
29889,
9933,
29898,
4351,
29918,
1129,
29918,
1445,
1125,
13,
462,
1678,
4765,
29918,
1129,
29918,
5325,
29889,
4397,
29898,
4351,
29918,
1129,
29918,
1445,
29897,
13,
13,
9651,
565,
4765,
29918,
1129,
29918,
5325,
29901,
13,
18884,
565,
2897,
29889,
2084,
29889,
9933,
29898,
7854,
29918,
1129,
29918,
1445,
1125,
13,
462,
1678,
4765,
29918,
1129,
29918,
5325,
353,
518,
7854,
29918,
1129,
29918,
1445,
29962,
718,
4765,
29918,
1129,
29918,
5325,
13,
18884,
1596,
877,
15836,
479,
1273,
29879,
3705,
1273,
29879,
29915,
1273,
313,
7854,
29918,
1129,
29918,
1445,
29892,
13420,
4286,
7122,
29898,
4351,
29918,
1129,
29918,
5325,
4961,
13,
18884,
10366,
29918,
1129,
29898,
7854,
29918,
1129,
29918,
1445,
29892,
334,
4351,
29918,
1129,
29918,
5325,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Saturday, February 18, 2012
Cabinet reshuffle had nothing to do with failure – PM
KINGSTOWN, St. Vincent – The changes to the Cabinet announced yesterday was not a as result of failure of the ministers or their ministries affected, according to Prime Minister Dr. Ralph Gonsalves.
Gonsalves announced that effective next Monday, Housing Minister Clayton Burgin will become Minister of Health, Wellness and the Environment while outgoing Health Minster Cecil “Ces” McKie will be reassigned as Minister of Tourism, Sports and Culture.Montgomery Daniel will be transferred to the Ministry of Housing, Informal Human Settlements, Lands and Surveys and Physical Planning. He will leave the Ministry of Agriculture for the first time since he was elected to Parliament in 2001.
Tourism Minister Saboto Caesar will become Minister of Agriculture, Industry, Forestry, Fisheries and Rural Transformation.Senator Elvis Charles will be transferred from the Prime Minister’s office to become Parliamentary Secretary in the Ministry of Tourism, Sports and Culture, with special responsibility for Sports and Culture.
Gonsalves said yesterday that the ministers have been reassigned so that they can have different experiences.
Responding to a journalist’s questions about whether the particular ministers were transferred because of failure in their current ministries, Gonsalves said ‘No” and noted that he has reshuffled his Cabinet several times since coming to office on March 28, 2001.
“It is good for ministers to be reassigned and have responsibilities,” he said.
He said that Burgin, who has been a parliamentarian and Cabinet member since 2001, has been minister of state in ministry of education, minister of education, minister of transport and works, and minister of housing.
“He is a man with great experience [in] different ministries. He is now in the Ministry of Health,” Gonsalves said.
He further said that Mckie has been doing “a very good job” at the Ministry of Health and has had a lot of accomplishments after one year. “He has put many important things in place there. But Ces would be happy, too, from his personality standpoint, to deal with Tourism and Sports and Culture. In fact, … when I put him in Health, people said they thought he was going to get Sports and Culture.
“Now, different time: different things. Now, I have judgements to make. I know where the issue are being – where some of the issues, we are putting some emphasis on as we are going forward,” Gonsalves said.
He said that Caesar has been doing “a tremendous amount of work” in Tourism and Industry.
“And you know there is a lot of revamping taking place in Vincyfresh, producing a number of commodities and Saboto is also a natural for the Ministry of Agriculture. He is in a rural constituency,” Gonsalves said.
He further noted that Daniel has been at the Ministry of Agriculture for 11 years. “It is good for him to have another area of work. He has a lot of work to do in the area of Lands, Informal Human Settlement and ‘Gomery is an individual who attends to a lot of detail like that. He will also do that.
“He has the support of the Housing and Land Development Corporation as the big housing programme — we are currently negotiating monies for a big housing push again. Clayton has done a lot of the basic work with the people at Housing and Land Development Corporation,” Gonsalves said.
Frederick Stephenson will no longer have ministerial responsibility for Sports and Culture.
Gonsalves said that Stephenson has been doing “very good work”.
“But the portfolio, when you look at the size, it was kind of spread and there was a fair amount of detailed attention that has to be given to Sports and Culture – a number of regional meetings and so on and so forth. I want to ease some of that,” he said.Stephenson will now have ministerial responsibility for National Mobilization, Social Development, the Family, Persons with Disabilities, and Youth.
He further said that Charles has done “well” at the office of the Prime Minister’s office and a reassignment to the Ministry of Sports and Culture will “widens his experience further”.
“If you listen to my narrative and as I explain it, there is a consistency,” Gonsalves said.
“I am the chairman of Cabinet. I know what is taking place in every ministry and I like the different ministers to have different experiences and strengthen their capacity. I know we have done a good job here in these reassignments,” Gonsalves said of the reshuffle that came 14 months to the day his Unity Labour Party was re-elected to a third term in office.
“Of course, there are some persons who are going to say why didn’t he reassign Tom to here or Mary to there. Of course, unfortunately for those person, they don’t hold the office of the prime minister and they don’t know how I want to see the government shaped in going forward,” he added. | [
1,
24211,
29892,
6339,
29871,
29896,
29947,
29892,
29871,
29906,
29900,
29896,
29906,
13,
13,
29907,
370,
10157,
620,
29882,
21897,
750,
3078,
304,
437,
411,
10672,
785,
11278,
13,
13,
29968,
4214,
1254,
9806,
29940,
29892,
624,
29889,
19748,
785,
450,
3620,
304,
278,
11680,
10157,
9326,
22600,
471,
451,
263,
408,
1121,
310,
10672,
310,
278,
11050,
29879,
470,
1009,
9668,
2722,
15201,
29892,
5034,
304,
15512,
7668,
4942,
29889,
23438,
402,
787,
284,
1960,
29889,
13,
13,
29954,
787,
284,
1960,
9326,
393,
11828,
2446,
27822,
29892,
379,
681,
292,
7668,
26234,
880,
11202,
262,
674,
4953,
7668,
310,
15202,
29892,
5674,
2264,
322,
278,
16738,
1550,
714,
17696,
15202,
3080,
2475,
21325,
309,
1346,
29907,
267,
30024,
24053,
347,
674,
367,
337,
465,
12961,
408,
7668,
310,
6371,
1608,
29892,
12453,
322,
14062,
29889,
24665,
27157,
708,
8432,
674,
367,
18440,
304,
278,
20886,
310,
379,
681,
292,
29892,
15162,
284,
12968,
317,
1803,
944,
29879,
29892,
3172,
29879,
322,
6298,
345,
952,
322,
11661,
936,
1858,
9450,
29889,
940,
674,
5967,
278,
20886,
310,
27051,
545,
363,
278,
937,
931,
1951,
540,
471,
11467,
304,
13212,
297,
29871,
29906,
29900,
29900,
29896,
29889,
13,
13,
29911,
473,
1608,
7668,
11775,
3747,
9243,
26892,
674,
4953,
7668,
310,
27051,
545,
29892,
12157,
719,
29892,
17300,
719,
29892,
12030,
6358,
322,
390,
3631,
4103,
5404,
29889,
29903,
264,
1061,
1260,
1730,
5322,
674,
367,
18440,
515,
278,
15512,
7668,
30010,
29879,
8034,
304,
4953,
13212,
653,
17719,
297,
278,
20886,
310,
6371,
1608,
29892,
12453,
322,
14062,
29892,
411,
4266,
23134,
363,
12453,
322,
14062,
29889,
13,
13,
29954,
787,
284,
1960,
1497,
22600,
393,
278,
11050,
29879,
505,
1063,
337,
465,
12961,
577,
393,
896,
508,
505,
1422,
27482,
29889,
13,
13,
1666,
2818,
292,
304,
263,
24452,
30010,
29879,
5155,
1048,
3692,
278,
3153,
11050,
29879,
892,
18440,
1363,
310,
10672,
297,
1009,
1857,
9668,
2722,
29892,
402,
787,
284,
1960,
1497,
5129,
3782,
30024,
322,
11682,
393,
540,
756,
620,
29882,
3096,
839,
670,
11680,
10157,
3196,
3064,
1951,
6421,
304,
8034,
373,
4779,
29871,
29906,
29947,
29892,
29871,
29906,
29900,
29900,
29896,
29889,
13,
13,
30015,
3112,
338,
1781,
363,
11050,
29879,
304,
367,
337,
465,
12961,
322,
505,
5544,
747,
9770,
3995,
540,
1497,
29889,
13,
13,
3868,
1497,
393,
11202,
262,
29892,
1058,
756,
1063,
263,
22765,
13956,
322,
11680,
10157,
4509,
1951,
29871,
29906,
29900,
29900,
29896,
29892,
756,
1063,
11050,
310,
2106,
297,
1375,
6020,
310,
9793,
29892,
11050,
310,
9793,
29892,
11050,
310,
8608,
322,
1736,
29892,
322,
11050,
310,
27261,
29889,
13,
13,
30015,
3868,
338,
263,
767,
411,
2107,
7271,
518,
262,
29962,
1422,
9668,
2722,
29889,
940,
338,
1286,
297,
278,
20886,
310,
15202,
3995,
402,
787,
284,
1960,
1497,
29889,
13,
13,
3868,
4340,
1497,
393,
341,
384,
347,
756,
1063,
2599,
1346,
29874,
1407,
1781,
4982,
30024,
472,
278,
20886,
310,
15202,
322,
756,
750,
263,
3287,
310,
12709,
1860,
1156,
697,
1629,
29889,
1346,
3868,
756,
1925,
1784,
4100,
2712,
297,
2058,
727,
29889,
1205,
12390,
723,
367,
9796,
29892,
2086,
29892,
515,
670,
2022,
2877,
2317,
3149,
29892,
304,
5376,
411,
6371,
1608,
322,
12453,
322,
14062,
29889,
512,
2114,
29892,
16088,
746,
306,
1925,
1075,
297,
15202,
29892,
2305,
1497,
896,
2714,
540,
471,
2675,
304,
679,
12453,
322,
14062,
29889,
13,
13,
30015,
10454,
29892,
1422,
931,
29901,
1422,
2712,
29889,
2567,
29892,
306,
505,
6577,
29887,
4110,
304,
1207,
29889,
306,
1073,
988,
278,
2228,
526,
1641,
785,
988,
777,
310,
278,
5626,
29892,
591,
526,
10594,
777,
19310,
275,
373,
408,
591,
526,
2675,
6375,
3995,
402,
787,
284,
1960,
1497,
29889,
13,
13,
3868,
1497,
393,
9243,
26892,
756,
1063,
2599,
1346,
29874,
14586,
355,
681,
5253,
310,
664,
30024,
297,
6371,
1608,
322,
12157,
719,
29889,
13,
13,
30015,
2855,
366,
1073,
727,
338,
263,
3287,
310,
6664,
1160,
292,
5622,
2058,
297,
12540,
1270,
29888,
3781,
29892,
20811,
263,
1353,
310,
844,
397,
1907,
322,
11775,
3747,
338,
884,
263,
5613,
363,
278,
20886,
310,
27051,
545,
29889,
940,
338,
297,
263,
17692,
10719,
3819,
3995,
402,
787,
284,
1960,
1497,
29889,
13,
13,
3868,
4340,
11682,
393,
8432,
756,
1063,
472,
278,
20886,
310,
27051,
545,
363,
29871,
29896,
29896,
2440,
29889,
1346,
3112,
338,
1781,
363,
1075,
304,
505,
1790,
4038,
310,
664,
29889,
940,
756,
263,
3287,
310,
664,
304,
437,
297,
278,
4038,
310,
3172,
29879,
29892,
15162,
284,
12968,
317,
1803,
944,
322,
5129,
29954,
290,
708,
338,
385,
5375,
1058,
1098,
1975,
304,
263,
3287,
310,
9493,
763,
393,
29889,
940,
674,
884,
437,
393,
29889,
13,
13,
30015,
3868,
756,
278,
2304,
310,
278,
379,
681,
292,
322,
3172,
14650,
15025,
408,
278,
4802,
27261,
19607,
813,
591,
526,
5279,
27214,
1218,
1601,
583,
363,
263,
4802,
27261,
5503,
1449,
29889,
26234,
880,
756,
2309,
263,
3287,
310,
278,
6996,
664,
411,
278,
2305,
472,
379,
681,
292,
322,
3172,
14650,
15025,
3995,
402,
787,
284,
1960,
1497,
29889,
13,
13,
23923,
672,
860,
27265,
25151,
674,
694,
5520,
505,
11050,
616,
23134,
363,
12453,
322,
14062,
29889,
13,
13,
29954,
787,
284,
1960,
1497,
393,
27265,
25151,
756,
1063,
2599,
1346,
1201,
1781,
664,
8643,
13,
13,
30015,
6246,
278,
2011,
25648,
29892,
746,
366,
1106,
472,
278,
2159,
29892,
372,
471,
2924,
310,
9677,
322,
727,
471,
263,
6534,
5253,
310,
13173,
8570,
393,
756,
304,
367,
2183,
304,
12453,
322,
14062,
785,
263,
1353,
310,
14014,
5870,
886,
322,
577,
373,
322,
577,
11483,
29889,
306,
864,
304,
16326,
777,
310,
393,
3995,
540,
1497,
29889,
7789,
561,
25151,
674,
1286,
505,
11050,
616,
23134,
363,
3086,
341,
12213,
2133,
29892,
10307,
14650,
29892,
278,
14662,
29892,
9034,
787,
411,
3295,
11614,
29892,
322,
26040,
29889,
13,
13,
3868,
4340,
1497,
393,
5322,
756,
2309,
1346,
5872,
30024,
472,
278,
8034,
310,
278,
15512,
7668,
30010,
29879,
8034,
322,
263,
337,
465,
10194,
304,
278,
20886,
310,
12453,
322,
14062,
674,
1346,
9163,
575,
670,
7271,
4340,
8643,
13,
13,
30015,
3644,
366,
11621,
304,
590,
15474,
1230,
322,
408,
306,
5649,
372,
29892,
727,
338,
263,
5718,
3819,
3995,
402,
787,
284,
1960,
1497,
29889,
13,
13,
30015,
29902,
626,
278,
28942,
310,
11680,
10157,
29889,
306,
1073,
825,
338,
5622,
2058,
297,
1432,
1375,
6020,
322,
306,
763,
278,
1422,
11050,
29879,
304,
505,
1422,
27482,
322,
9324,
264,
1009,
13284,
29889,
306,
1073,
591,
505,
2309,
263,
1781,
4982,
1244,
297,
1438,
337,
16645,
1860,
3995,
402,
787,
284,
1960,
1497,
310,
278,
620,
29882,
21897,
393,
2996,
29871,
29896,
29946,
7378,
304,
278,
2462,
670,
20872,
29453,
9173,
471,
337,
29899,
15436,
287,
304,
263,
4654,
1840,
297,
8034,
29889,
13,
13,
30015,
2776,
3236,
29892,
727,
526,
777,
12407,
1058,
526,
2675,
304,
1827,
2020,
3282,
30010,
29873,
540,
337,
16645,
4335,
304,
1244,
470,
6182,
304,
727,
29889,
4587,
3236,
29892,
15428,
363,
1906,
2022,
29892,
896,
1016,
30010,
29873,
4808,
278,
8034,
310,
278,
6019,
11050,
322,
896,
1016,
30010,
29873,
1073,
920,
306,
864,
304,
1074,
278,
5874,
528,
10501,
297,
2675,
6375,
3995,
540,
2715,
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
] |
October 5 marks a very special day in history. Fifteen years ago today, Lorelai and Rory Gilmore entered our lives, and nothing was the same. The very first episode of Gilmore Girls aired in 2000, and today, fans are celebrating 15 years of reruns, marathon viewing sessions, and just a bit of obsession. The citizens of Stars Hollow are more like family members than fictional characters to diehards. These fans might even fall asleep watching the show, and perpetually hear “Where You Lead” in their dreams. Regardless, the 15 jokes here are only for those fans who truly understand Gilmore Girls.
One year ago, the show landed on Netflix, vastly improving the lives of super fans. From that moment, we didn't have to get up to switch the discs anymore. It was pretty much the best gift that could have ever appeared on our screens. So how many times have you watched the series in the year since? If you're a diehard, it might be more than once, and you’re probably not even ashamed to admit it. With the anniversary underway, you can go home tonight and celebrate the anniversary by watching the show, even though you were probably already going to do that anyways.
Sit back, grab a cup of coffee, and enjoy these 15 jokes in honor of 15 years with the Gilmore Girls.
1. Swans Are Dangerous Creatures
Jess was hard-pressed to admit that a swan led to his black eye. Who could blame him, though?
2. The Magical Hiding Spot
Lane taught us where the one place you should hide all your belongings. Floorboards will never fail you.
3. "Oy, With The Poodles Already!"
Pretty much what you say when you want a change in conversation. It works every time. Mainly because no one knows what you’re talking about.
4. "Quit Being Such A Dean!"
Something you say when a guy you’re dating is being needy or clingy, or straight-up does something annoying.
5. "Do You Like Coffee?"
Coffee is a sacred thing that is needed at all hours of the day. If you’ve ever seen even one episode of Gilmore Girls, you would understand this.
6. “I’m Smad”
It’s what happens when you’re sad and mad all at the same time. It happens to the best of us.
7. Paul Anka References
While the rest of the world might hear the name and immediately think about the person, a true Gilmore Girls fan would assume that you’re talking about the dog Paul Anka. Dog Paul Anka is way better than person Paul Anka.
8. Mrs. Kim Doesn't Approve
Of literally anything. Sometimes, right as you’re doing something you know you shouldn’t do, you think to yourself that Mrs. Kim would never approve of this.
9. “I Am A Young, Desirable Woman”
The affirmation you repeat when cats keep showing up on your doorstep.
10. The Special Art Of Eating
“People don’t realize, but it takes years of training to be able to eat the way we do.” Lorelai and Rory Gilmore know how to eat, and they're better at it than you are.
11. “Butt-Faced Miscreant”
The mother of all insults. Talking to you, Logan Huntzberger.
12. The Wrath Of Paris Geller
Gilmore Girls fans know that this is the one thing in life that you do not want to mess with. Let her have her damn arts and crafts table in the dorm or whatever else she wants, because the wrath of Paris is a scary thing.
13. A No-Cell Zone
Respect the sign, people.
14. The Importance Of When To Talk In Movies
You can’t talk during the parts you talked through last time because you haven’t seen them in awhile. Poor Max, he didn’t stand a chance.
15. “Where You Lead …”
You just started singing, didn’t you?
Images: Warner Bros. Television (3); Giphy (6); Cooperboomed/Tumblr; Alizziebyanyothername/Tumblr; Lindseykupfer/Tumblr (2); Gilmored/Tumblr (2); Ameliashepnerd/Tumblr | [
1,
5533,
29871,
29945,
17997,
263,
1407,
4266,
2462,
297,
4955,
29889,
29008,
9404,
2440,
8020,
9826,
29892,
10980,
295,
1794,
322,
390,
706,
11788,
5514,
7802,
1749,
12080,
29892,
322,
3078,
471,
278,
1021,
29889,
450,
1407,
937,
12720,
310,
11788,
5514,
23992,
263,
2859,
297,
29871,
29906,
29900,
29900,
29900,
29892,
322,
9826,
29892,
24909,
526,
10894,
1218,
29871,
29896,
29945,
2440,
310,
364,
261,
6948,
29892,
1766,
25206,
1776,
292,
21396,
29892,
322,
925,
263,
2586,
310,
704,
7924,
29889,
450,
18363,
310,
25435,
379,
2952,
526,
901,
763,
3942,
5144,
1135,
26797,
1848,
4890,
304,
762,
29882,
3163,
29889,
4525,
24909,
1795,
1584,
6416,
408,
5436,
21217,
278,
1510,
29892,
322,
25722,
1474,
8293,
1346,
11921,
887,
951,
328,
30024,
297,
1009,
12561,
29879,
29889,
2169,
538,
2222,
29892,
278,
29871,
29896,
29945,
432,
23195,
1244,
526,
871,
363,
1906,
24909,
1058,
19781,
2274,
11788,
5514,
23992,
29889,
13,
13,
6716,
1629,
8020,
29892,
278,
1510,
2982,
287,
373,
12670,
20157,
29916,
29892,
13426,
368,
4857,
1747,
278,
12080,
310,
2428,
24909,
29889,
3645,
393,
3256,
29892,
591,
3282,
29915,
29873,
505,
304,
679,
701,
304,
4607,
278,
2313,
29879,
15128,
29889,
739,
471,
5051,
1568,
278,
1900,
19797,
393,
1033,
505,
3926,
7470,
373,
1749,
11844,
29889,
1105,
920,
1784,
3064,
505,
366,
20654,
278,
3652,
297,
278,
1629,
1951,
29973,
960,
366,
29915,
276,
263,
762,
6800,
29892,
372,
1795,
367,
901,
1135,
2748,
29892,
322,
366,
30010,
276,
3117,
451,
1584,
23723,
2795,
304,
20000,
372,
29889,
2973,
278,
6957,
27547,
1090,
1582,
29892,
366,
508,
748,
3271,
15243,
523,
322,
10894,
403,
278,
6957,
27547,
491,
21217,
278,
1510,
29892,
1584,
2466,
366,
892,
3117,
2307,
2675,
304,
437,
393,
738,
1994,
29889,
13,
13,
29903,
277,
1250,
29892,
17229,
263,
18002,
310,
26935,
29892,
322,
13389,
1438,
29871,
29896,
29945,
432,
23195,
297,
10657,
310,
29871,
29896,
29945,
2440,
411,
278,
11788,
5514,
23992,
29889,
13,
13,
29896,
29889,
3925,
550,
4683,
360,
4600,
681,
6760,
3698,
13,
13,
29967,
404,
471,
2898,
29899,
13120,
304,
20000,
393,
263,
2381,
273,
5331,
304,
670,
4628,
10977,
29889,
11644,
1033,
1999,
420,
1075,
29892,
2466,
29973,
13,
13,
29906,
29889,
450,
3561,
936,
379,
4821,
1706,
327,
13,
13,
29931,
1662,
16187,
502,
988,
278,
697,
2058,
366,
881,
9563,
599,
596,
6852,
886,
29889,
383,
10102,
24691,
674,
2360,
4418,
366,
29889,
13,
13,
29941,
29889,
376,
29949,
29891,
29892,
2973,
450,
349,
2092,
793,
838,
2040,
3850,
13,
13,
6572,
4349,
1568,
825,
366,
1827,
746,
366,
864,
263,
1735,
297,
14983,
29889,
739,
1736,
1432,
931,
29889,
4241,
368,
1363,
694,
697,
9906,
825,
366,
30010,
276,
9963,
1048,
29889,
13,
13,
29946,
29889,
376,
2182,
277,
28265,
10506,
319,
23263,
3850,
13,
13,
16804,
366,
1827,
746,
263,
1410,
29891,
366,
30010,
276,
270,
1218,
338,
1641,
817,
29891,
470,
1067,
292,
29891,
29892,
470,
7812,
29899,
786,
947,
1554,
12327,
5414,
29889,
13,
13,
29945,
29889,
376,
6132,
887,
8502,
315,
2696,
3905,
3026,
13,
13,
29907,
2696,
3905,
338,
263,
26546,
2655,
393,
338,
4312,
472,
599,
6199,
310,
278,
2462,
29889,
960,
366,
30010,
345,
3926,
3595,
1584,
697,
12720,
310,
11788,
5514,
23992,
29892,
366,
723,
2274,
445,
29889,
13,
13,
29953,
29889,
1346,
29902,
30010,
29885,
4116,
328,
30024,
13,
13,
3112,
30010,
29879,
825,
5930,
746,
366,
30010,
276,
14610,
322,
10395,
599,
472,
278,
1021,
931,
29889,
739,
5930,
304,
278,
1900,
310,
502,
29889,
13,
13,
29955,
29889,
3739,
530,
1335,
28318,
13,
13,
8809,
488,
278,
1791,
310,
278,
3186,
1795,
8293,
278,
1024,
322,
7389,
1348,
1048,
278,
2022,
29892,
263,
1565,
11788,
5514,
23992,
13524,
723,
5251,
393,
366,
30010,
276,
9963,
1048,
278,
11203,
3739,
530,
1335,
29889,
18776,
3739,
530,
1335,
338,
982,
2253,
1135,
2022,
3739,
530,
1335,
29889,
13,
13,
29947,
29889,
6285,
29889,
12931,
5538,
29876,
29915,
29873,
28268,
345,
13,
13,
2776,
22830,
3099,
29889,
18512,
29892,
1492,
408,
366,
30010,
276,
2599,
1554,
366,
1073,
366,
9273,
30010,
29873,
437,
29892,
366,
1348,
304,
7535,
393,
6285,
29889,
12931,
723,
2360,
2134,
345,
310,
445,
29889,
13,
13,
29929,
29889,
1346,
29902,
1913,
319,
10443,
29892,
2726,
27797,
22712,
30024,
13,
13,
1576,
2756,
3568,
362,
366,
12312,
746,
274,
1446,
3013,
6445,
701,
373,
596,
3050,
10568,
29889,
13,
13,
29896,
29900,
29889,
450,
12630,
3012,
4587,
382,
1218,
13,
13,
30015,
15666,
1991,
1016,
30010,
29873,
16289,
29892,
541,
372,
4893,
2440,
310,
6694,
304,
367,
2221,
304,
17545,
278,
982,
591,
437,
3178,
10980,
295,
1794,
322,
390,
706,
11788,
5514,
1073,
920,
304,
17545,
29892,
322,
896,
29915,
276,
2253,
472,
372,
1135,
366,
526,
29889,
13,
13,
29896,
29896,
29889,
1346,
29819,
29899,
29943,
562,
287,
20929,
1037,
424,
30024,
13,
13,
1576,
5637,
310,
599,
1663,
499,
29879,
29889,
323,
2235,
292,
304,
366,
29892,
4522,
273,
379,
1657,
29920,
15734,
29889,
13,
13,
29896,
29906,
29889,
450,
399,
29878,
493,
4587,
3681,
402,
4539,
13,
13,
29954,
309,
5514,
23992,
24909,
1073,
393,
445,
338,
278,
697,
2655,
297,
2834,
393,
366,
437,
451,
864,
304,
4473,
411,
29889,
2803,
902,
505,
902,
5625,
29876,
16930,
322,
25554,
29879,
1591,
297,
278,
270,
555,
470,
6514,
1683,
1183,
10753,
29892,
1363,
278,
2358,
493,
310,
3681,
338,
263,
885,
653,
2655,
29889,
13,
13,
29896,
29941,
29889,
319,
1939,
29899,
4617,
24385,
13,
13,
1666,
1103,
278,
1804,
29892,
2305,
29889,
13,
13,
29896,
29946,
29889,
450,
16032,
749,
4587,
1932,
1763,
323,
2235,
512,
14104,
583,
13,
13,
3492,
508,
30010,
29873,
5193,
2645,
278,
5633,
366,
24867,
1549,
1833,
931,
1363,
366,
7359,
30010,
29873,
3595,
963,
297,
263,
8000,
29889,
3929,
272,
5918,
29892,
540,
3282,
30010,
29873,
2317,
263,
8825,
29889,
13,
13,
29896,
29945,
29889,
1346,
11921,
887,
951,
328,
16088,
30024,
13,
13,
3492,
925,
4687,
23623,
29892,
3282,
30010,
29873,
366,
29973,
13,
13,
20163,
29901,
26699,
350,
1883,
29889,
22417,
313,
29941,
416,
4406,
11461,
313,
29953,
416,
21851,
833,
27067,
29914,
29911,
398,
2204,
29878,
29936,
838,
466,
3914,
1609,
1384,
720,
4510,
29914,
29911,
398,
2204,
29878,
29936,
17277,
7759,
22947,
571,
29914,
29911,
398,
2204,
29878,
313,
29906,
416,
11788,
29885,
4395,
29914,
29911,
398,
2204,
29878,
313,
29906,
416,
1913,
295,
3173,
354,
29886,
1089,
29881,
29914,
29911,
398,
2204,
29878
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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. Field of the Invention
The present invention relates generally to vehicles for collecting, packing, hauling, and unloading refuse materials which may include recyclable materials.. More particularly, the invention is directed to refuse collection systems which incorporate integral side-loading lift and dump bucket systems which cooperate with corresponding offset or recessed receiving hoppers having packing devices to load refuse materials into truck bodies. The truck body and loading system including the hopper may be divided into a plurality of separate dedicated compartments to segregate materials during loading and maintain separation after compaction. The side-loading system includes one or more single or multi-compartment manually-loaded buckets and may also be provided with an automated extensible arm system for addressing and tipping other curbside containers.
II. Related Art
The business of collecting, hauling, and disposing of waste materials is rapidly becoming increasingly complex. The materials of collection, in addition to normal refuse disposable at landfills, may further contain a variety of types of materials destined for recycle. It is preferable that materials collected for recycle be at least separated from other refuse if not further broken down into individual recycle species at the point of collection. Of course, generally the complete breakdown into separate species is not practical, but it is desirable that at least highly compactable materials (for example, aluminum, plastic, and paper) be separated from glass at this juncture.
Furthermore, the types of containers in which materials are placed at the points of collection are many and varied. This, of course, has led to the development of a variety of dedicated accessing, lifting and dumping devices to be carried by collection vehicles.
It is known to provide a dedicated rail or track or similar guide or mounting system on the side of a refuse vehicle in combination with a dedicated container which can be filled in a lowered position and thereafter lifted and dumped using a dedicated lift and dump mechanism and operating along the guide system. Side-loading mechanisms of this type are described in U.S. Pat. Nos. 3,910,434 and 4,090,626 to Ebeling et al.; U.S. Pat. No. 4,427,333 to Ebeling; and U.S. Pat. No. 4,597,710 to Kovats. A vertical rail assembly having a bin-gripping carriage apparatus for engaging, lifting and dumping a refuse container is the subject of U.S. Pat. No. 5,007,786 to Bingman.
Multi-compartment systems which include dedicated multi-compartment collection receptacles which operate using guided mechanized lift and dump systems to lift and empty them into corresponding multi-compartment hoppers and haulers have also been described. One such system that includes a vertically moving external lifting and dumping trough having a series of compartments which correspond to internal truck body divisions is shown in Dinneen (U.S. Pat. No. 4,840,531). The internal compartments are discharged by tilting the truck body relative to the chaise. In Seader (U.S. Pat. No. 4,978,271), a pair of pivoting buckets on each side empty into larger containers mounted on the chassis of the truck forward of a rear-loading refuse body. Mezey (U.S. Pat. No. 5,035,563) discloses multi-compartment container/hopper systems for front and side-loading trucks.
A further side-loading multi-compartment system is depicted by Ratledge, Jr., et al. in U.S. Pat. No. 5,427,496. Other divided side bucket-loaded multi-compartment refuse truck bodies are illustrated and described by Horning et al. in U.S. Pat. Nos. 5,288,196 and 5,316,430 and by Glomski in U.S. Pat. No. 5,122,025. Buckets may be provided on both sides of these devices and may be recessed. Howells et al. (U.S. Pat. No. 4,425,070) discloses a single sided divided bucket which loads compartments forward of a rear-loading refuse body mounted on an elongated frame.
While each of these systems has certain desirable attributes, all of these devices have shortcomings or limitations overcome by one or more aspects of the embodiments of the present invention, which contemplates an improved lift and dump guide systems for side bucket loaders in combination with offset or recessed hoppers in singular multi-compartment versions. Additionally, boom-mounted container emptying devices may be combined with the bucket system. The truck bodies may be permanently mounted or removable/detachable units. These ends are achieved with a general simplification of the prior mechanical complexity of such systems and introduce improvements which facilitate efficient operation.
Accordingly, it is a primary object of the present invention to provide an improved side-loading refuse vehicle.
Another object of the invention is to provide an improved multi-compartment side-loading refuse vehicle.
Yet another object of the invention is to provide an improved bucket lifting and dumping mechanism for a single or multi-compartment side-loading refuse vehicle.
Still another object of the invention is to provide improved side-loading refuse vehicles having bucket lifting and dumping mechanisms which reduce spillage commonly associated with bucket lift and dump mechanisms.
Yet still another object of the invention is to provide an improved side-loading refuse vehicle having single or multi-compartment mechanized lift and dump buckets on both sides of a receiving hopper.
A further object of the invention is provide an improved side-loading refuse vehicle which has a refuse hopper recessed to correspond with the longitudinal chassis support beams of the vehicle.
A still further object of the invention is to provide an improved side-loading refuse vehicle in which an extensible boom container lift and dump mechanism is combined with one or more side-loading bucket lift and dump systems in a single or multi-compartment system.
A yet still further object of the invention is to provide a multi-compartment refuse hopper which avoids the build-up of refuse materials behind associated compartmentalized compaction devices.
The present invention provides improved side-loading refuse collecting vehicles of the class having a generally vertically operating, manually loaded bucket system in conjunction with a complimentary compensating offset receiving and charging hopper. The charging hopper is associated with a truck body having forward and aft ends and mounted on a truck frame extending longitudinally along the truck body, the truck body enclosing a material receiving volume. The truck support frame or chassis typically is constructed using a pair of spaced cross based main longitudinal channels or stringer members and the offset receiving hopper of the invention may be recessed as far as the adjacent chassis channel member to accommodate a wider charging bucket.
The bucket system includes an improved lift and dump mechanism and an elongate guide channel system which includes the pair of initially outward extending and finally arcuate guide paths which accommodate with offset follower members attached to each side of the bucket which cooperate to maintain an upright bucket posture in the loading position and provide additional inversion angle in the arc when the bucket is fully raised in the discharge position. The guides are preferably recessed channels and in the general shape of candy canes. The buckets are designed for manual loading. In conjunction with the outward directed channel guide systems, the hopper is preferably flared at the top to reduce the possibility of material spillage or loss in dumping. In addition, the buckets of the system may themselves be provided with can handling devices. In addition, each of the several embodiments of the refuse truck of the invention may be used in combination with a removable material receiving truck body. These, of course, may take any of several forms.
The refuse collection system may further include an automated extensible boom arm with an associated container lift and dump mechanism which may include an operable grabber system in addition to the bucket system. The extensible arm may include a system that adjusts the position of the grabber mechanism along the arm to allow dumping at diverse fore and aft locations in the charging hopper. Adjustable grabbers are typically associated with multi-compartment systems.
The refuse collection vehicles may take the form of any of a number of embodiments. These include one having a single side bucket of one compartment associated with a truck body having a single material receiving volume in which a single material receiving volume and packer are provided in the receiving hopper. A single divided bucket may be located on one side of the vehicle and used to charge a front to rear split compartment receiving hopper which, in turn, charges a truck body having a split material receiving volume using dual packing devices which may operate together. Of course, a system employing either a single bin or split bin bucket loading system may also be combined with an automated extensible boom arm lift and dump mechanism for automated dumping of refuse cans. The split is typically fore and aft with the forward bucket and hopper compartment associated with a lower truck body material receiving volume and the aft or rear bucket and hopper compartment associated with the upper truck body material receiving volume. In this regard, the grabber positioning mechanism is used in conjunction with the extensible boom arm lift and dump mechanism to allow cans to be loaded into either forward or aft compartments of the charging hopper.
A plurality of both single and multiple compartmented manually loaded buckets can be used alone or in conjunction with an automated fixed or adjustable position extensible boom arm and grabber systems. Single or multi-compartment buckets may be symmetrically or asymmetrically placed on both sides of the charging hopper with commensurate recesses being provided in the hopper to accommodate each bucket.
In addition, means are provided to prevent accumulation of refuse material trapped behind packing devices. In this regard, a hinged door may be provided in the front wall associated with the upper compartment behind the compactor which allows the material accumulated behind the packer to escape into the lower compartment upon retraction of the packer.
Thus, the present invention represents a variety of improvements in a class of side-loading refuse vehicles which can take the form in any of a great variety of embodiments. The detailed embodiments are taken as representative or exemplary of those in which the improvements of the invention may be incorporated and are not presented as being limiting in any manner. | [
1,
306,
29889,
8989,
310,
278,
512,
7316,
13,
1576,
2198,
297,
7316,
1104,
1078,
6892,
304,
24413,
363,
6314,
292,
29892,
4870,
292,
29892,
447,
19478,
29892,
322,
443,
13234,
26506,
17279,
607,
1122,
3160,
1162,
29891,
695,
519,
17279,
636,
5853,
10734,
29892,
278,
297,
7316,
338,
10624,
304,
26506,
4333,
6757,
607,
11039,
403,
10160,
2625,
29899,
13234,
13777,
322,
16766,
20968,
6757,
607,
1302,
3372,
403,
411,
6590,
9210,
470,
337,
985,
287,
13442,
5089,
22437,
2534,
4870,
292,
9224,
304,
2254,
26506,
17279,
964,
534,
2707,
17873,
29889,
450,
534,
2707,
3573,
322,
8363,
1788,
3704,
278,
5089,
2496,
1122,
367,
13931,
964,
263,
715,
332,
2877,
310,
5004,
16955,
29078,
1860,
304,
2377,
1727,
403,
17279,
2645,
8363,
322,
7344,
23683,
1156,
752,
2467,
29889,
450,
2625,
29899,
13234,
1788,
7805,
697,
470,
901,
2323,
470,
2473,
29899,
510,
8076,
7522,
29899,
15638,
1321,
9737,
322,
1122,
884,
367,
4944,
411,
385,
3345,
630,
21103,
1821,
5075,
1788,
363,
3211,
292,
322,
260,
17347,
916,
3151,
29890,
2975,
22637,
29889,
13,
2687,
29889,
6376,
630,
3012,
13,
1576,
5381,
310,
6314,
292,
29892,
447,
19478,
29892,
322,
11549,
292,
310,
19863,
17279,
338,
19328,
14171,
10231,
368,
4280,
29889,
450,
17279,
310,
4333,
29892,
297,
6124,
304,
4226,
26506,
11549,
519,
472,
2982,
5589,
29879,
29892,
1122,
4340,
1712,
263,
12875,
310,
4072,
310,
17279,
2731,
1312,
363,
1162,
13317,
29889,
739,
338,
5821,
519,
393,
17279,
16531,
363,
1162,
13317,
367,
472,
3203,
13055,
515,
916,
26506,
565,
451,
4340,
9391,
1623,
964,
5375,
1162,
13317,
6606,
472,
278,
1298,
310,
4333,
29889,
4587,
3236,
29892,
6892,
278,
4866,
2867,
3204,
964,
5004,
6606,
338,
451,
15031,
29892,
541,
372,
338,
553,
27797,
393,
472,
3203,
10712,
11071,
519,
17279,
313,
1454,
1342,
29892,
394,
9735,
398,
29892,
715,
6288,
29892,
322,
5650,
29897,
367,
13055,
515,
12917,
472,
445,
4707,
312,
545,
29889,
13,
29943,
332,
721,
5514,
29892,
278,
4072,
310,
22637,
297,
607,
17279,
526,
7180,
472,
278,
3291,
310,
4333,
526,
1784,
322,
23821,
29889,
910,
29892,
310,
3236,
29892,
756,
5331,
304,
278,
5849,
310,
263,
12875,
310,
16955,
17378,
29892,
11747,
1259,
322,
16766,
292,
9224,
304,
367,
8988,
491,
4333,
24413,
29889,
13,
3112,
338,
2998,
304,
3867,
263,
16955,
8367,
470,
5702,
470,
2788,
10754,
470,
5766,
292,
1788,
373,
278,
2625,
310,
263,
26506,
19716,
297,
10296,
411,
263,
16955,
5639,
607,
508,
367,
10423,
297,
263,
5224,
287,
2602,
322,
727,
7045,
26239,
322,
16766,
287,
773,
263,
16955,
13777,
322,
16766,
13336,
322,
13598,
3412,
278,
10754,
1788,
29889,
19160,
29899,
13234,
7208,
12903,
310,
445,
1134,
526,
5439,
297,
501,
29889,
29903,
29889,
4121,
29889,
405,
359,
29889,
29871,
29941,
29892,
29929,
29896,
29900,
29892,
29946,
29941,
29946,
322,
29871,
29946,
29892,
29900,
29929,
29900,
29892,
29953,
29906,
29953,
304,
382,
6596,
292,
634,
394,
8670,
501,
29889,
29903,
29889,
4121,
29889,
1939,
29889,
29871,
29946,
29892,
29946,
29906,
29955,
29892,
29941,
29941,
29941,
304,
382,
6596,
292,
29936,
322,
501,
29889,
29903,
29889,
4121,
29889,
1939,
29889,
29871,
29946,
29892,
29945,
29929,
29955,
29892,
29955,
29896,
29900,
304,
476,
586,
1446,
29889,
319,
11408,
8367,
11470,
2534,
263,
9016,
29899,
29887,
374,
3262,
23840,
7132,
2389,
363,
3033,
6751,
29892,
11747,
1259,
322,
16766,
292,
263,
26506,
5639,
338,
278,
4967,
310,
501,
29889,
29903,
29889,
4121,
29889,
1939,
29889,
29871,
29945,
29892,
29900,
29900,
29955,
29892,
29955,
29947,
29953,
304,
350,
292,
1171,
29889,
13,
15329,
29899,
510,
8076,
6757,
607,
3160,
16955,
2473,
29899,
510,
8076,
4333,
337,
1547,
23435,
607,
21994,
773,
1410,
2618,
7208,
1891,
13777,
322,
16766,
6757,
304,
13777,
322,
4069,
963,
964,
6590,
2473,
29899,
510,
8076,
5089,
22437,
322,
447,
352,
414,
505,
884,
1063,
5439,
29889,
3118,
1316,
1788,
393,
7805,
263,
4837,
1711,
8401,
7029,
11747,
1259,
322,
16766,
292,
534,
820,
2534,
263,
3652,
310,
29078,
1860,
607,
3928,
304,
7463,
534,
2707,
3573,
25884,
338,
4318,
297,
15651,
484,
264,
313,
29965,
29889,
29903,
29889,
4121,
29889,
1939,
29889,
29871,
29946,
29892,
29947,
29946,
29900,
29892,
29945,
29941,
29896,
467,
450,
7463,
29078,
1860,
526,
766,
25389,
287,
491,
6928,
1259,
278,
534,
2707,
3573,
6198,
304,
278,
10329,
895,
29889,
512,
922,
1664,
313,
29965,
29889,
29903,
29889,
4121,
29889,
1939,
29889,
29871,
29946,
29892,
29929,
29955,
29947,
29892,
29906,
29955,
29896,
511,
263,
5101,
310,
24438,
292,
1321,
9737,
373,
1269,
2625,
4069,
964,
7200,
22637,
19239,
373,
278,
521,
465,
275,
310,
278,
534,
2707,
6375,
310,
263,
18983,
29899,
13234,
26506,
3573,
29889,
2191,
911,
29891,
313,
29965,
29889,
29903,
29889,
4121,
29889,
1939,
29889,
29871,
29945,
29892,
29900,
29941,
29945,
29892,
29945,
29953,
29941,
29897,
766,
11291,
267,
2473,
29899,
510,
8076,
5639,
29914,
1251,
2496,
6757,
363,
4565,
322,
2625,
29899,
13234,
534,
2707,
29879,
29889,
13,
29909,
4340,
2625,
29899,
13234,
2473,
29899,
510,
8076,
1788,
338,
1401,
18186,
491,
17450,
5485,
29892,
13843,
1696,
634,
394,
29889,
297,
501,
29889,
29903,
29889,
4121,
29889,
1939,
29889,
29871,
29945,
29892,
29946,
29906,
29955,
29892,
29946,
29929,
29953,
29889,
5901,
13931,
2625,
20968,
29899,
15638,
2473,
29899,
510,
8076,
26506,
534,
2707,
17873,
526,
26848,
322,
5439,
491,
6912,
1076,
634,
394,
29889,
297,
501,
29889,
29903,
29889,
4121,
29889,
405,
359,
29889,
29871,
29945,
29892,
29906,
29947,
29947,
29892,
29896,
29929,
29953,
322,
29871,
29945,
29892,
29941,
29896,
29953,
29892,
29946,
29941,
29900,
322,
491,
8467,
290,
2574,
297,
501,
29889,
29903,
29889,
4121,
29889,
1939,
29889,
29871,
29945,
29892,
29896,
29906,
29906,
29892,
29900,
29906,
29945,
29889,
16281,
1691,
1122,
367,
4944,
373,
1716,
11192,
310,
1438,
9224,
322,
1122,
367,
337,
985,
287,
29889,
1128,
10071,
634,
394,
29889,
313,
29965,
29889,
29903,
29889,
4121,
29889,
1939,
29889,
29871,
29946,
29892,
29946,
29906,
29945,
29892,
29900,
29955,
29900,
29897,
766,
11291,
267,
263,
2323,
269,
2618,
13931,
20968,
607,
15376,
29078,
1860,
6375,
310,
263,
18983,
29899,
13234,
26506,
3573,
19239,
373,
385,
560,
549,
630,
3515,
29889,
13,
8809,
488,
1269,
310,
1438,
6757,
756,
3058,
553,
27797,
8393,
29892,
599,
310,
1438,
9224,
505,
3273,
510,
886,
470,
27028,
25688,
491,
697,
470,
901,
21420,
310,
278,
7232,
397,
7862,
310,
278,
2198,
297,
7316,
29892,
607,
640,
331,
9884,
385,
16710,
13777,
322,
16766,
10754,
6757,
363,
2625,
20968,
2254,
414,
297,
10296,
411,
9210,
470,
337,
985,
287,
5089,
22437,
297,
13512,
2473,
29899,
510,
8076,
6910,
29889,
19814,
29892,
1045,
290,
29899,
16476,
287,
5639,
4069,
292,
9224,
1122,
367,
12420,
411,
278,
20968,
1788,
29889,
450,
534,
2707,
17873,
1122,
367,
9410,
2705,
19239,
470,
4030,
519,
29914,
4801,
496,
519,
10340,
29889,
4525,
10614,
526,
14363,
411,
263,
2498,
5466,
2450,
310,
278,
7536,
28310,
13644,
310,
1316,
6757,
322,
14944,
28473,
607,
16089,
10388,
8543,
5858,
29889,
13,
7504,
3278,
368,
29892,
372,
338,
263,
7601,
1203,
310,
278,
2198,
297,
7316,
304,
3867,
385,
16710,
2625,
29899,
13234,
26506,
19716,
29889,
13,
2744,
1228,
1203,
310,
278,
297,
7316,
338,
304,
3867,
385,
16710,
2473,
29899,
510,
8076,
2625,
29899,
13234,
26506,
19716,
29889,
13,
29979,
300,
1790,
1203,
310,
278,
297,
7316,
338,
304,
3867,
385,
16710,
20968,
11747,
1259,
322,
16766,
292,
13336,
363,
263,
2323,
470,
2473,
29899,
510,
8076,
2625,
29899,
13234,
26506,
19716,
29889,
13,
855,
453,
1790,
1203,
310,
278,
297,
7316,
338,
304,
3867,
16710,
2625,
29899,
13234,
26506,
24413,
2534,
20968,
11747,
1259,
322,
16766,
292,
7208,
12903,
607,
10032,
805,
453,
482,
15574,
6942,
411,
20968,
13777,
322,
16766,
7208,
12903,
29889,
13,
29979,
300,
1603,
1790,
1203,
310,
278,
297,
7316,
338,
304,
3867,
385,
16710,
2625,
29899,
13234,
26506,
19716,
2534,
2323,
470,
2473,
29899,
510,
8076,
7208,
1891,
13777,
322,
16766,
1321,
9737,
373,
1716,
11192,
310,
263,
13442,
5089,
2496,
29889,
13,
29909,
4340,
1203,
310,
278,
297,
7316,
338,
3867,
385,
16710,
2625,
29899,
13234,
26506,
19716,
607,
756,
263,
26506,
5089,
2496,
337,
985,
287,
304,
3928,
411,
278,
25579,
979,
521,
465,
275,
2304,
367,
2232,
310,
278,
19716,
29889,
13,
29909,
1603,
4340,
1203,
310,
278,
297,
7316,
338,
304,
3867,
385,
16710,
2625,
29899,
13234,
26506,
19716,
297,
607,
385,
21103,
1821,
1045,
290,
5639,
13777,
322,
16766,
13336,
338,
12420,
411,
697,
470,
901,
2625,
29899,
13234,
20968,
13777,
322,
16766,
6757,
297,
263,
2323,
470,
2473,
29899,
510,
8076,
1788,
29889,
13,
29909,
3447,
1603,
4340,
1203,
310,
278,
297,
7316,
338,
304,
3867,
263,
2473,
29899,
510,
8076,
26506,
5089,
2496,
607,
4772,
29879,
278,
2048,
29899,
786,
310,
26506,
17279,
5742,
6942,
29078,
358,
284,
1891,
752,
2467,
9224,
29889,
13,
1576,
2198,
297,
7316,
8128,
16710,
2625,
29899,
13234,
26506,
6314,
292,
24413,
310,
278,
770,
2534,
263,
6892,
4837,
1711,
13598,
29892,
7522,
7500,
20968,
1788,
297,
9589,
651,
411,
263,
13162,
2073,
653,
22874,
1218,
9210,
13442,
322,
9151,
292,
5089,
2496,
29889,
450,
9151,
292,
5089,
2496,
338,
6942,
411,
263,
534,
2707,
3573,
2534,
6375,
322,
263,
615,
10614,
322,
19239,
373,
263,
534,
2707,
3515,
23771,
25579,
262,
635,
3412,
278,
534,
2707,
3573,
29892,
278,
534,
2707,
3573,
427,
11291,
292,
263,
5518,
13442,
7977,
29889,
450,
534,
2707,
2304,
3515,
470,
521,
465,
275,
12234,
338,
13319,
773,
263,
5101,
310,
26325,
287,
4891,
2729,
1667,
25579,
979,
18196,
470,
1347,
261,
5144,
322,
278,
9210,
13442,
5089,
2496,
310,
278,
297,
7316,
1122,
367,
337,
985,
287,
408,
2215,
408,
278,
20114,
521,
465,
275,
8242,
4509,
304,
24803,
403,
263,
25734,
9151,
292,
20968,
29889,
13,
1576,
20968,
1788,
7805,
385,
16710,
13777,
322,
16766,
13336,
322,
385,
560,
549,
403,
10754,
8242,
1788,
607,
7805,
278,
5101,
310,
12919,
714,
1328,
23771,
322,
7146,
564,
4979,
403,
10754,
10898,
607,
24803,
403,
411,
9210,
1101,
261,
5144,
10959,
304,
1269,
2625,
310,
278,
20968,
607,
1302,
3372,
403,
304,
7344,
385,
318,
558,
523,
20968,
1400,
545,
297,
278,
8363,
2602,
322,
3867,
5684,
297,
3259,
10696,
297,
278,
15232,
746,
278,
20968,
338,
8072,
10425,
297,
278,
766,
23367,
2602,
29889,
450,
1410,
2247,
526,
5821,
2197,
337,
985,
287,
18196,
322,
297,
278,
2498,
8267,
310,
274,
13910,
508,
267,
29889,
450,
1321,
9737,
526,
8688,
363,
12219,
8363,
29889,
512,
9589,
651,
411,
278,
714,
1328,
10624,
8242,
10754,
6757,
29892,
278,
5089,
2496,
338,
5821,
2197,
17422,
1127,
472,
278,
2246,
304,
10032,
278,
13331,
310,
5518,
805,
453,
482,
470,
6410,
297,
16766,
292,
29889,
512,
6124,
29892,
278,
1321,
9737,
310,
278,
1788,
1122,
6053,
367,
4944,
411,
508,
11415,
9224,
29889,
512,
6124,
29892,
1269,
310,
278,
3196,
7232,
397,
7862,
310,
278,
26506,
534,
2707,
310,
278,
297,
7316,
1122,
367,
1304,
297,
10296,
411,
263,
4030,
519,
5518,
13442,
534,
2707,
3573,
29889,
4525,
29892,
310,
3236,
29892,
1122,
2125,
738,
310,
3196,
7190,
29889,
13,
1576,
26506,
4333,
1788,
1122,
4340,
3160,
385,
3345,
630,
21103,
1821,
1045,
290,
5075,
411,
385,
6942,
5639,
13777,
322,
16766,
13336,
607,
1122,
3160,
385,
1751,
519,
17229,
495,
1788,
297,
6124,
304,
278,
20968,
1788,
29889,
450,
21103,
1821,
5075,
1122,
3160,
263,
1788,
393,
10365,
29879,
278,
2602,
310,
278,
17229,
495,
13336,
3412,
278,
5075,
304,
2758,
16766,
292,
472,
16984,
26839,
322,
263,
615,
14354,
297,
278,
9151,
292,
5089,
2496,
29889,
2087,
5143,
519,
2646,
1327,
414,
526,
12234,
6942,
411,
2473,
29899,
510,
8076,
6757,
29889,
13,
1576,
26506,
4333,
24413,
1122,
2125,
278,
883,
310,
738,
310,
263,
1353,
310,
7232,
397,
7862,
29889,
4525,
3160,
697,
2534,
263,
2323,
2625,
20968,
310,
697,
29078,
358,
6942,
411,
263,
534,
2707,
3573,
2534,
263,
2323,
5518,
13442,
7977,
297,
607,
263,
2323,
5518,
13442,
7977,
322,
4870,
261,
526,
4944,
297,
278,
13442,
5089,
2496,
29889,
319,
2323,
13931,
20968,
1122,
367,
5982,
373,
697,
2625,
310,
278,
19716,
322,
1304,
304,
8323,
263,
4565,
304,
18983,
6219,
29078,
358,
13442,
5089,
2496,
607,
29892,
297,
2507,
29892,
21090,
263,
534,
2707,
3573,
2534,
263,
6219,
5518,
13442,
7977,
773,
14581,
4870,
292,
9224,
607,
1122,
21994,
4208,
29889,
4587,
3236,
29892,
263,
1788,
5703,
292,
2845,
263,
2323,
9016,
470,
6219,
9016,
20968,
8363,
1788,
1122,
884,
367,
12420,
411,
385,
3345,
630,
21103,
1821,
1045,
290,
5075,
13777,
322,
16766,
13336,
363,
3345,
630,
16766,
292,
310,
26506,
508,
29879,
29889,
450,
6219,
338,
12234,
26839,
322,
263,
615,
411,
278,
6375,
20968,
322,
5089,
2496,
29078,
358,
6942,
411,
263,
5224,
534,
2707,
3573,
5518,
13442,
7977,
322,
278,
263,
615,
470,
18983,
20968,
322,
5089,
2496,
29078,
358,
6942,
411,
278,
7568,
534,
2707,
3573,
5518,
13442,
7977,
29889,
512,
445,
4880,
29892,
278,
17229,
495,
2602,
292,
13336,
338,
1304,
297,
9589,
651,
411,
278,
21103,
1821,
1045,
290,
5075,
13777,
322,
16766,
13336,
304,
2758,
508,
29879,
304,
367,
7500,
964,
2845,
6375,
470,
263,
615,
29078,
1860,
310,
278,
9151,
292,
5089,
2496,
29889,
13,
29909,
715,
332,
2877,
310,
1716,
2323,
322,
2999,
29078,
358,
287,
7522,
7500,
1321,
9737,
508,
367,
1304,
7432,
470,
297,
9589,
651,
411,
385,
3345,
630,
4343,
470,
10365,
519,
2602,
21103,
1821,
1045,
290,
5075,
322,
17229,
495,
6757,
29889,
16740,
470,
2473,
29899,
510,
8076,
1321,
9737,
1122,
367,
9682,
29878,
1711,
470,
16936,
2527,
29878,
1711,
7180,
373,
1716,
11192,
310,
278,
9151,
292,
5089,
2496,
411,
844,
575,
332,
403,
337,
985,
267,
1641,
4944,
297,
278,
5089,
2496,
304,
24803,
403,
1269,
20968,
29889,
13,
797,
6124,
29892,
2794,
526,
4944,
304,
5557,
18414,
2785,
310,
26506,
5518,
1020,
2986,
5742,
4870,
292,
9224,
29889,
512,
445,
4880,
29892,
263,
298,
292,
287,
3050,
1122,
367,
4944,
297,
278,
4565,
10090,
6942,
411,
278,
7568,
29078,
358,
5742,
278,
752,
7168,
607,
6511,
278,
5518,
18414,
7964,
5742,
278,
4870,
261,
304,
10169,
964,
278,
5224,
29078,
358,
2501,
29578,
428,
310,
278,
4870,
261,
29889,
13,
1349,
375,
29892,
278,
2198,
297,
7316,
11524,
263,
12875,
310,
28473,
297,
263,
770,
310,
2625,
29899,
13234,
26506,
24413,
607,
508,
2125,
278,
883,
297,
738,
310,
263,
2107,
12875,
310,
7232,
397,
7862,
29889,
450,
13173,
7232,
397,
7862,
526,
4586,
408,
21097,
470,
29455,
653,
310,
1906,
297,
607,
278,
28473,
310,
278,
297,
7316,
1122,
367,
11039,
630,
322,
526,
451,
9132,
408,
1641,
4046,
292,
297,
738,
8214,
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
] |
Winter Solstice
By Elin Hilderbrand
Description
*The USA Today Bestseller*
Raise one last glass with the Quinn Family at the Winter Street Inn.
It's been too long since the entire Quinn family has been able to celebrate the holidays under the same roof, but that's about to change. With Bart back safe and sound from Afghanistan, the Quinns are preparing for a holiday more joyous than any they've experienced in years. And Bart's safe return isn't the family's only good news: Kevin is enjoying married life with Isabelle; Patrick is getting back on his feet after paying his debt to society; Ava thinks she's finally found the love of her life; and Kelly is thrilled to see his family reunited at last. But it just wouldn't be a Quinn family gathering if things went smoothly. A celebration of everything we love--and some of the things we endure--about the holidays, WINTER SOLSTICE is Elin Hilderbrand at her festive best.
Reviews
Another great story about Nantucket and the Quinn family
5
By Diane Offutt
Elin’s “Winter Street” series is beautifully written. The characters are unforgettable. This is the last book in the series. I did not want it to end.
By the way, “Winter Street” is a real Street on Nantucket.
Love!
5
By Princess Fergie
I have never been disappointed reading an Elin Hilderbrand book. The Winter series are some of my favorites! This one made me cry, I love the Quinn family.
It is because of this author and her books that I long to travel to Nantucket some day.
Beautifully Written!
5
By pegg12
Winter Solstice is an amazing and beautifully written novel, about living, loving, and weathering the storms that show up in life. The author draws the reader deep into the heart of the Quinn family, a healing, blended family from Nantucket. Kelly Quinn is dying from brain cancer. He is fortunate, though, to have a good relationship with his children, his current wife, Mitzi, and his ex-wife, Margaret. Although Margaret and Mitzi are cordial and work together now for the children and Kelly’s sake, that had not always been the case. Margaret’s children, Patrick, Kevin, and Ava have all lived under Mitzi and Kelly’s roof for years; along with Bart, Mitzi and Kelly’s only child. All of the children in this book are grown and struggle with some very adult issues.
The author’s writing is sharp and descriptive. She effortlessly places the reader deep into each character’s life. I came to know the characters intimately and cared for them all. I felt their pain, their struggles, and their joy. Because the author covers a wide range of topics and difficulties, readers will easily be able to identify with some of the character’s experiences; such as love and betrayal, choices and consequences, selfishness and sacrifice and forgiveness and acceptance. Nobody is perfect, and everyone must live with the consequences of their decisions. Pain is a part of life, but so is joy, acceptance, and love.
I had a hard time keeping the characters straight at first. But, once I did, I couldn’t put the book down. Winter Solstice is an in-depth, enjoyable, and well-written read.
Thank you, Little, Brown and Company and NetGalley, for my advanced review copy. | [
1,
12267,
4956,
303,
625,
13,
13,
2059,
1260,
262,
379,
2700,
16472,
13,
13,
9868,
13,
13,
29930,
1576,
8278,
20628,
6407,
29879,
4539,
29930,
13,
13,
29934,
29874,
895,
697,
1833,
12917,
411,
278,
751,
2559,
14662,
472,
278,
12267,
7103,
25408,
29889,
13,
13,
3112,
29915,
29879,
1063,
2086,
1472,
1951,
278,
4152,
751,
2559,
3942,
756,
1063,
2221,
304,
10894,
403,
278,
8753,
333,
1036,
1090,
278,
1021,
17526,
29892,
541,
393,
29915,
29879,
1048,
304,
1735,
29889,
2973,
12245,
1250,
9109,
322,
6047,
515,
27135,
9777,
29892,
278,
751,
262,
1983,
526,
10223,
292,
363,
263,
8753,
22394,
901,
15331,
681,
1135,
738,
896,
29915,
345,
18860,
297,
2440,
29889,
1126,
12245,
29915,
29879,
9109,
736,
3508,
29915,
29873,
278,
3942,
29915,
29879,
871,
1781,
9763,
29901,
19323,
338,
11418,
5414,
8300,
2834,
411,
16543,
280,
29936,
14875,
338,
2805,
1250,
373,
670,
6900,
1156,
5146,
292,
670,
2553,
29873,
304,
12459,
29936,
319,
1564,
22405,
1183,
29915,
29879,
7146,
1476,
278,
5360,
310,
902,
2834,
29936,
322,
21872,
338,
1468,
24455,
304,
1074,
670,
3942,
23038,
1573,
472,
1833,
29889,
1205,
372,
925,
7656,
29915,
29873,
367,
263,
751,
2559,
3942,
11705,
292,
565,
2712,
3512,
10597,
368,
29889,
319,
10894,
362,
310,
4129,
591,
5360,
489,
392,
777,
310,
278,
2712,
591,
1095,
545,
489,
12717,
278,
8753,
333,
1036,
29892,
399,
23845,
317,
5607,
1254,
12107,
338,
1260,
262,
379,
2700,
16472,
472,
902,
10982,
573,
1900,
29889,
13,
13,
1123,
7406,
13,
13,
2744,
1228,
2107,
5828,
1048,
405,
424,
2707,
300,
322,
278,
751,
2559,
3942,
13,
13,
29945,
13,
13,
2059,
360,
16677,
5947,
4774,
13,
13,
29923,
1915,
30010,
29879,
1346,
29956,
1639,
7103,
30024,
3652,
338,
9560,
368,
3971,
29889,
450,
4890,
526,
443,
1454,
657,
2371,
29889,
910,
338,
278,
1833,
3143,
297,
278,
3652,
29889,
306,
1258,
451,
864,
372,
304,
1095,
29889,
13,
2059,
278,
982,
29892,
1346,
29956,
1639,
7103,
30024,
338,
263,
1855,
7103,
373,
405,
424,
2707,
300,
29889,
13,
13,
29931,
994,
29991,
13,
13,
29945,
13,
13,
2059,
22063,
7756,
12053,
13,
13,
29902,
505,
2360,
1063,
23451,
287,
5183,
385,
1260,
262,
379,
2700,
16472,
3143,
29889,
450,
12267,
3652,
526,
777,
310,
590,
7853,
3246,
29991,
910,
697,
1754,
592,
10901,
29892,
306,
5360,
278,
751,
2559,
3942,
29889,
13,
3112,
338,
1363,
310,
445,
4148,
322,
902,
8277,
393,
306,
1472,
304,
9850,
304,
405,
424,
2707,
300,
777,
2462,
29889,
13,
13,
3629,
1300,
6845,
368,
16849,
841,
29991,
13,
13,
29945,
13,
13,
2059,
282,
387,
29887,
29896,
29906,
13,
13,
29956,
1639,
4956,
303,
625,
338,
385,
21863,
292,
322,
9560,
368,
3971,
9554,
29892,
1048,
8471,
29892,
12355,
292,
29892,
322,
14826,
292,
278,
14280,
29879,
393,
1510,
701,
297,
2834,
29889,
450,
4148,
4216,
29879,
278,
9591,
6483,
964,
278,
5192,
310,
278,
751,
2559,
3942,
29892,
263,
540,
12818,
29892,
1999,
2760,
3942,
515,
405,
424,
2707,
300,
29889,
21872,
751,
2559,
338,
27116,
515,
17294,
23900,
29889,
940,
338,
5162,
348,
403,
29892,
2466,
29892,
304,
505,
263,
1781,
9443,
411,
670,
4344,
29892,
670,
1857,
6532,
29892,
4573,
2526,
29892,
322,
670,
429,
29899,
29893,
1607,
29892,
18364,
29889,
8512,
18364,
322,
4573,
2526,
526,
13793,
616,
322,
664,
4208,
1286,
363,
278,
4344,
322,
21872,
30010,
29879,
16563,
29892,
393,
750,
451,
2337,
1063,
278,
1206,
29889,
18364,
30010,
29879,
4344,
29892,
14875,
29892,
19323,
29892,
322,
319,
1564,
505,
599,
10600,
1090,
4573,
2526,
322,
21872,
30010,
29879,
17526,
363,
2440,
29936,
3412,
411,
12245,
29892,
4573,
2526,
322,
21872,
30010,
29879,
871,
2278,
29889,
2178,
310,
278,
4344,
297,
445,
3143,
526,
21633,
322,
21117,
411,
777,
1407,
16157,
5626,
29889,
13,
1576,
4148,
30010,
29879,
5007,
338,
15301,
322,
29037,
573,
29889,
2296,
7225,
23769,
7600,
278,
9591,
6483,
964,
1269,
2931,
30010,
29879,
2834,
29889,
306,
2996,
304,
1073,
278,
4890,
938,
15084,
322,
274,
1965,
363,
963,
599,
29889,
306,
7091,
1009,
6788,
29892,
1009,
10205,
793,
29892,
322,
1009,
15331,
29889,
7311,
278,
4148,
18469,
263,
9377,
3464,
310,
23820,
322,
23553,
29892,
22176,
674,
5948,
367,
2221,
304,
12439,
411,
777,
310,
278,
2931,
30010,
29879,
27482,
29936,
1316,
408,
5360,
322,
1010,
764,
284,
29892,
19995,
322,
27721,
29892,
1583,
728,
2264,
322,
28839,
322,
18879,
20193,
322,
3544,
749,
29889,
15706,
1486,
338,
4922,
29892,
322,
14332,
1818,
5735,
411,
278,
27721,
310,
1009,
1602,
12112,
29889,
349,
475,
338,
263,
760,
310,
2834,
29892,
541,
577,
338,
15331,
29892,
3544,
749,
29892,
322,
5360,
29889,
13,
29902,
750,
263,
2898,
931,
12515,
278,
4890,
7812,
472,
937,
29889,
1205,
29892,
2748,
306,
1258,
29892,
306,
8496,
30010,
29873,
1925,
278,
3143,
1623,
29889,
12267,
4956,
303,
625,
338,
385,
297,
29899,
19488,
29892,
13389,
519,
29892,
322,
1532,
29899,
17625,
1303,
29889,
13,
25271,
366,
29892,
11143,
29892,
9817,
322,
6938,
322,
12670,
29954,
284,
2330,
29892,
363,
590,
12862,
9076,
3509,
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
] |
Posted
by
timothy
on Saturday October 08, 2011 @05:47PM
from the new-meaning-for-parental-support dept.
CNET reports that as of yesterday, a new Chrome extension will "let a person on one computer remotely control another across the network." The new remote-desktop capability is in BETA (Google's all-caps version, for emphasis), but is said to work to control any OS from any other OS, so long as both sides are equipped with Chrome and the new extension. Related: Wired is running a profile of
Rajen Sheth — "father of Gmail," and now in charge of Google's Chromebook project as well.
It actually sounds brilliant. Normally I have to direct clients, friends, family to a remote-support site, direct them to download the generated.exe, and run it to allow me in (actually, I usually end up permenantly installing said agent). Think LogMeIn Rescue, or TeamViewer (we actually use Bomgar).
If this works as advertised, it could make things a whole lot easier. Combined with the fact that Chrome can be deployed as an MSI, and extensions can be pushed and locked with GPOs, this could make support much easier.
Check out Synergy [google.com], it allows you to share keyboard and mouse across multiple computers, but each needs it's own monitor. It also works across OS (linux, mac, windows). Another option, that sound more like what you want is italc [sourceforge.net]. It lets you remote control other PC's from one master PC. I deployed it in a Fire Department training room and they love it.
This isn't going to be very useful if it requires a user to be already logged in to work.
It has just that limitation:
The technology right now is limited so that permission must be granted each time remote administration is activated. "This version enables users to share with or get access to another computer by providing a one-time authentication code. Access is given only to the specific person the user identifies for one time only, and the sharing session is fully secured,"
This isn't going to be very useful if it requires a user to be already logged in to work.
It sounds like it could be an alternative to WebEx, for those who use it for remote support.
It beats the hell out of trying to get most adults to follow simple verbal instructions.
Ever work a technical support job? After explaining to an otherwise educated person (i.e. educated stupid) for the fifth time that when you ask him to "right-click with the right mouse button" it is not the same as "double-click (with the left)" you start thinking about remote desktop yourself.
Thankfully that was a long time ago. After a while, you stop thinking of involuntary sterilization as a viable option.
After explaining to an otherwise educated person (i.e. educated stupid) for the fifth time that when you ask him to "right-click with the right mouse button" it is not the same as "double-click (with the left)" you start thinking about remote desktop yourself.
Three cheers for the CLI !! You IM the luser commands to run and have them paste in the results.
I work in tech support. I've encountered a few users who didn't even realise the round thing in the corner of Office was a menu until I opened it for them.
I've had one user who was amazed by my techno-skills when I opened the documents folder. Turned out she had spent the last two years managing documents by opening Word, selecting Save As and using the save dialog as a file manager.
To be fair, I'm a programmer, a user of both Linux and Windows, capable of fixing minor kernel bugs, and have about 30 years of experience with various user interfaces, regularly confuse people because of how fast I use most interfaces, and it took me a short while to work out that the marble thing in Office was the menu. When you're used to the menu being in the... menu bar (who'dathunk!) when it suddenly vanishes and gets replaced by the ribbon, you're inclined to think that that's where all the menu ite
We get that a lot. Our generic fix-everything solution is the profile reset - just wipes the users profile and replaces with default, which is usually much easier than diagnosing the specific problem. A side effect of this is that the recent documents listing is cleared, so we sometimes get recently-reset users calling in a panic because they think their documents have disappeared. Rather more commonly they call in a panic because they think software is no longer installed after it's icon vanishes from the
"OK now just right click that icon"...'but I'm left handed'
"No, take your finger and push the button on the right side of the mouse once and hold it down.. what do you see?".." My email browser explorer express just started up"
"no you clicked the LEFT button.. i want you to click the Right button!.. don't you know left from right"
"...hey don't get mad at me i'm not a computer EXPERT like you!"...20 minutes later...
that's click it TWO times.. double click means TWO clicks"
"...hey don't get mad at me i'm not a computer EXPERT like you!"....
Yeah, that's about how it goes. The ability to rub two brain cells together is suddenly defined as expertise...
I wonder, when a doctor writes a prescription and says something like "take this pill once a day", does anyone reply with "but I'm not a medical EXPERT like you!"?
what I find to work is a combination of join.me and teamviewer. https://join.me/ [join.me] is dead simple to get people to do "click the orange circle on the left...yes it to death until it gives you a nine digit number...what's the number...say 'yes' to let me remote control..." and then use that for userland stuff. One thing that join.me doesn't deal with well is UAC prompts - namely that it doesn't allow users to click on them, since it's sandboxed similar to the browser. If you're only going to hit one that isn't
They, and other non-MS remote control software need to run as admin at least once, so they can inject screen-mirroring drivers. The talking to the driver happens from non-admin mode later, but it only takes one admin session to infiltrate your system and work from there, if there's ANY malicious intent.
But back on topic, remote control isn't for the BLIND by any means; it MUST relay your screen by using "screen-mirroring" which requires vi
Thats not 100% accurate, we use Bomgar remote support which allows non-admins to run an agent to give us user-level access to their screen, remotely, even if it is our first time accessing said system. We also trial ran LogMeIn Rescue 2 years ago, which likewise did not require admin rights even for first time access-- even on Windows 7. However, in order to have access to the login screen, we would have to press a button to request UAC elevation.
Something else that I just don't get with "technology" like this is how it's mistakenly seen as "innovative" because it somehow involves a web browser, although it's something we have been able to do for decades using other software.
This is basically the same as telnet, or rsh, or ssh, or VNC, or the many other technologies that do the same thing. Fuck, this is something we could even do in the browser years ago! I remember using a Java applet that let me connect in to computers at work using ssh or VNC. Th
VNC will need you to walk grandma through a reboot, through configuring VNC, through configuring a port on her router, and then through turning VNC server off afterward to close the security hole.
Chro-mote will just need her to download and run a program, and then visit a particular URL, and maybe read a number to you over the phone. The lack of router config I think, is the biggest win here ; people are used to links, but not arcane looking network settings. She might not even know which IP address her rou
+1. The C.S.-101 catchphrase would be 'what is old is new again'. In a related vein, the computer developer in me was hit by Steve Jobs death, regardless of the fact that much of his modern fame involved not the main innovations, but rather polishing and driving them to market with a coherent vision (and the power that a deep bank account provides didn't hurt his odds either). I.e. the ipod was a brand of mp3 player, not a music playing device invention. Likewise this latest google gadget is a brand of
As an Archos Jukebrick fan myself, the innovative part that the iPod brought was bringing the technology to a functional level of convenience. The iPod was the first one that fit in your pocket.
I'm not going to be able to explain to my mother how to get an ssh server up and running on her machine. But getting Chrome installed with an extension? That I could believe.
The key is *enabling.* Twenty years ago, setting up an FTP based home file synchronization service was technically possible. But it was a huge PITA. DropBox automated everything with a simple single login. Similarly, simplifying VNC into something that everyone already has. That means that people who wouldn't have exposure to remote control, now do.
"As an Archos Jukebrick fan myself, the innovative part that the iPod brought was bringing the technology to a functional level of convenience. The iPod was the first one that fit in your pocket."
I owned a rio800 in 2001. Not much longer or thicker than its power source, a AA or AAA battery (I think the former, but thats still smaller than a deck of playing cards, and probably half the weight). I still would prefer to be able to carry bog standard extra power cells like a AAA to power my player, though my
The Rio800 was a flash-based player. A solid one... I had a Rio PMP300 and 500 as well, and gazed longingly at the Rio 800's 128MB of space. But the original iPod had a micro HDD, up until then only used in photography, which started at 5GB of space. They definitely were the first to jump down from notebook hard drives to micro drives, in order to get a HDD based player into your pocket.
The signature scroll wheel is also easier to navigate large lists of songs with. And Apple was the first to integrate
That is the key point of our disagreement I think. What you describe them doing to what you describe as a 'niche tech gadget', I would alternately call the blazing obvious happening to the blazing obvious mainstream device. There was nobody who in y2000 and much earlier, did not see that computer memory and processing devices were shrinking, and that as you could now have a music system in a PC size device, that eventually you would have one i
well the point was Google is once again doing something that was tried before in the past. sorry i was wrong about who gets credit for the idea... it just was VNC was my first remote graphical terminal/desktop sharing app. and it was called a virus by av scanners.
In other news a computer companies continue to provide users with a button to turn their computers on despite the obvious security risks introduced when the machine is running.
Everything is a security vulnerability. An OS is a vulnerability. Having a computer connected to the internet is a vulnerability. A web browser is a vulnerability. Even your post and the fact it was modded insightful is a vulnerability to the sanity and common sense of people reading it.
i realize you were being rather sarcastic, but there's a difference between "There is an attack surface that, given enough time, a determined hacker can exploit" and "there's an exorbitantly easy exploit being built directly into the browser".
"there's an exorbitantly easy exploit being built directly into the browser".
I wasn't being sarcastic at all. The parts of our lives that have been most helped by the emergency of technology are the most easy to exploit. They are all born out of convenience and interconnectivity.
My point is if you want security they you may as well give up many of the useful functions of your computer. You plug in a Windows XP machine to the internet and it gets owned before you even have a chance to load up the windows update server. Yet here we have a extension, unlikely to be very widely used, co
Or is your concern that its "within a browser", and thus inherently must be insecure?
In a nutshell, yes. One great way to take relatively small security concerns and greatly magnify them is to have a single application that tries to be everything and do everything for everyone. The browser is involved in too many different things as it is. As it becomes more and more central, it is also a more and more tempting target. A worst-case compromise now has fewer barriers in terms of the damage it can do.
Except that to all appearances this requires the user to go to a specific web site (or somehow generate a control code) and explicitly allow the connection. It's still not without some security concerns I suppose, but it would require a fair amount of fooling both Google and the user to abuse it. Mostly I can see it as being a great way to help friends/relatives with their computers. As a double plus good you can help your mom with her Mac from your Windows box, or your dad with his Windows box from your
Or is your concern that its "within a browser", and thus inherently must be insecure?
In a nutshell, yes. One great way to take relatively small security concerns and greatly magnify them is to have a single application that tries to be everything and do everything for everyone. The browser is involved in too many different things as it is. As it becomes more and more central, it is also a more and more tempting target. A worst-case compromise now has fewer barriers in terms of the damage it can do.
If you are (implicitly, of course) saying that adding remote access to an already complex Web browser has absolutely no security implications whatsoever and no amount of caution could possibly be reasonable, well, I say that statement carries with it a burden of proof. Until you demonstrate otherwise, that positive claim is rightly considered false.
Those who disagree with you by default are merely being sensible.
Hmmm. Isn't "a single application that tries to be everything and do everything for everyone" a reasonable description of the OS? I'm not attempting a reductio ad absurdum, but it seems to me your (legitimate!) concerns over the security issues involved when you start adding functionality to software had to be solved for the OS, and those lessons can be applied to the browser.
Once again, if your browser is exploited to the extent that the attacker can invoke that remote access plugin unauthorized, the battle is already lost-- they are running arbitrary code and could if desired download that plugin or another userland program on demand.
This is what I was thinking. If MS did this we would all be screaming about bloat and the security implications. Sure there may be millions of layers of security, but security has a way of being circumvented.
We are moving into another scary world with very little forethought. We are putting all our data online with free services without thinking deeply about securing that data. This is like when we hooked our computers to the internet without knowing that we were exposing ourselves to every two bit sc
Google is just catching up to Microsoft. Windows has had this capability for many years, of other people remotely accessing it. In fact, Microsoft has even had to apply major resources to reducing access to this feature, due to overwhelming demand.
Does Microsoft's solution work even over the Internet, when both machines are behind firewalls? How about when the machines are running different operating systems (i.e. not Windows)?
Agreed. I'll go one further - it is fscking stupid to allow a browser (which should be sandboxed and unable to access anything outside of its window frame) remotely control your machine. Dumb Dumb Dumb. Google used to understand this. Apparently they went insane recently?
They realize that consumers don't give a shit about security until you first give them enough convenience to hang themselves with; after that though they complain a lot but you already have all their money and their business by then so it doesn't matter.
The process which will 'control the machine' will most probably have almost nothing to do with the processes which control the windows. That's how the whole browser is built: lots of independent processes limited on what they can do and able only to talk to each other over well defined interfaces.
Ever have a customer that purchased your $30k services, you spend 2 weeks discussing how everything works and everything you'll need with them, you sign all the contracts/etc, then when you're ready to go you contact their tech admin to get Remote Desktop to set things up, and they strait out refuse to give you access.
Now, the customer also says that the only reason they are willing to get our services is because we told them we can have it running in under 1 week. From a legal standpoint, we would be fine,
We should eliminate all possible sources of exploits regardless if they are attached to useful things. I have the perfect computer:
- Runs Linux with all the latest security kernel enhancements.- No browser installed to prevent users from accidentally finding something malicious on the net.- Not network connected to prevent attacks from outside.- No monitor to prevent people looking over your shoulder stealing your sensitive data.- No Powersupply to make sure it can't be turned on, after all a computer that's not running is secure right?
Yes it is a brilliant idea, for many reasons. Yes there's a possible security exploit. Yes it's quite probably a risk worth taking.
You can't ignore the fact that the browser is the most critical attack surface for any computer connected to the Internet nowadays: often, it's even the only one, given that most other network interactions from home computers are blocked by residential firewalls.
That is a widely common misconception. The vast majority of attacks using the browser are social engineering attacks, phishing and the like. Many of the non-social attacks use the browser as just another vector to gain access to other components of the system, PDFs and Flash being the latest in vogue right now amongst the usual array of windows specific attacks.
There's actually very few exploits aimed at the browser itself in active use.
They are. So let's not use them and instead go for network daemons which sit there idly waiting to also be exploited for malevolent purposes.
My point is here is a tool that provides functionality. It either exists or it is replaced by a similar tool by those who need the functionality. The fact that it is a browser plugin as opposed to a standalone program doesn't necessarily make it any more or less of a security risk. Complaining that this is a security risk but RDP, VNC or many other similar products isn
This can only be a useful alternative to existing tools like TeamViewer if and only if the Chrome browser itself becomes a truly ubiquitous browser, found on EVERY machine. Otherwise, what's the difference if one still has to install software on both systems to make it feasible? In this instance, it's actually two installations, given the need to install the extension as well as the browser itself.
They could have at least used their own damn implementation of the NX protocol [google.com] and got work going around porting it to Windows and Mac. Maybe then NX would finally start to replace VNC and the FLOSS community would have a high quality remote desktop environment (and by high quality I mean HDX responsiveness). Or, god forbid, an HTML 5 client -like Ericom's AccessNow [ericom.com] which is marketed for Chromebooks. You know, anything other than reinventing the damn wheel.
I had to connect to some machines in California from London via VNC the other day. A timely reminder of how much I hate that protocol: it's so slow. RDP completely kicks its arse. The OS X server side implementation seems particularly slow, but even with everything turned down in TightVNC and JPEG compression turned up, it's still horrible (and there are all of the bugs in TightVNC on Windows, like on some machines failing to redraw the screen). Only RDP seems to be able to cope with higher latency conn
The fallback is to use Google servers. Are there any guarantees Google can't track that data is some way? I don't know enough about how this works to have any idea what's technically feasible. If it is feasible, is this another one of those things where people will say, "Well, they're a private company. They can do anything they want"? Who's looked at this? What have they found?
That's a fairly minor wrinkle on the main one. Setting up browser control of OS may not be that big a deal on the tech support
I think you might be confused about what a firewall actually does. Without reviewing the product at all I'm just gonna go ahead and say "no." Not unless you punch a hole in the firewall at least. Making it so that hole can be on port 80 is something VNC can do as well that does *not* actually make it more secure.
When you design software, you can either design with security as part of the architecture or not. Secure software designs still have problems, but it's the difference between a pinhole and a barn door.
Unix systems were much more secure than Windows systems for years (whether they are now is up to debate). The reason is that Microsoft had to take drastic measures over more than a decade to secure their system was because their architecture was never designed with security in mind. Unix didn't have the problem - as a multiuser system, security was part of the design, so replacing insecure pieces with secure components (think rsh -> ssh, crypt() to md5(), shadow, etc.) was much easier.
In order to have a remote desktop application be part of a web browser, you need to break the security of the browser and reach the base system. I don't know how the extension framework for Chrome works (I only use it for webcomics), but I would definitely think twice before installing something like this onto a piece of software that regularly communicates with untrusted data (which is primarily what a web browser does). | [
1,
4918,
287,
13,
1609,
13,
9346,
20336,
13,
265,
24211,
5533,
29871,
29900,
29947,
29892,
29871,
29906,
29900,
29896,
29896,
732,
29900,
29945,
29901,
29946,
29955,
13427,
13,
3166,
278,
716,
29899,
12676,
292,
29899,
1454,
29899,
3560,
284,
29899,
5924,
316,
415,
29889,
13,
13,
29907,
6006,
13676,
393,
408,
310,
22600,
29892,
263,
716,
10228,
6081,
674,
376,
1026,
263,
2022,
373,
697,
6601,
1083,
327,
873,
2761,
1790,
4822,
278,
3564,
1213,
450,
716,
7592,
29899,
20858,
2117,
3097,
338,
297,
350,
2544,
29909,
313,
14207,
29915,
29879,
599,
29899,
29883,
2547,
1873,
29892,
363,
19310,
275,
511,
541,
338,
1497,
304,
664,
304,
2761,
738,
6570,
515,
738,
916,
6570,
29892,
577,
1472,
408,
1716,
11192,
526,
1592,
16242,
411,
10228,
322,
278,
716,
6081,
29889,
6376,
630,
29901,
399,
2859,
338,
2734,
263,
8722,
310,
13,
29934,
1175,
264,
1383,
621,
813,
376,
22212,
310,
402,
2549,
1699,
322,
1286,
297,
8323,
310,
5087,
29915,
29879,
678,
456,
19273,
2060,
408,
1532,
29889,
13,
13,
3112,
2869,
10083,
27592,
29889,
5655,
635,
306,
505,
304,
1513,
13154,
29892,
7875,
29892,
3942,
304,
263,
7592,
29899,
5924,
3268,
29892,
1513,
963,
304,
5142,
278,
5759,
29889,
8097,
29892,
322,
1065,
372,
304,
2758,
592,
297,
313,
627,
1474,
29892,
306,
5491,
1095,
701,
639,
1527,
10835,
15476,
1497,
10823,
467,
25086,
4522,
6816,
797,
2538,
18376,
29892,
470,
8583,
29963,
15580,
313,
705,
2869,
671,
27707,
5397,
467,
13,
13,
3644,
445,
1736,
408,
18811,
3368,
29892,
372,
1033,
1207,
2712,
263,
3353,
3287,
6775,
29889,
422,
29890,
1312,
411,
278,
2114,
393,
10228,
508,
367,
21168,
408,
385,
341,
5425,
29892,
322,
17752,
508,
367,
18760,
322,
22822,
411,
402,
13152,
29879,
29892,
445,
1033,
1207,
2304,
1568,
6775,
29889,
13,
13,
5596,
714,
10829,
261,
1927,
518,
3608,
29889,
510,
1402,
372,
6511,
366,
304,
6232,
12247,
322,
9495,
4822,
2999,
23226,
29892,
541,
1269,
4225,
372,
29915,
29879,
1914,
11819,
29889,
739,
884,
1736,
4822,
6570,
313,
9389,
29892,
5825,
29892,
5417,
467,
7280,
2984,
29892,
393,
6047,
901,
763,
825,
366,
864,
338,
4698,
29883,
518,
28315,
29889,
1212,
1822,
739,
16869,
366,
7592,
2761,
916,
9609,
29915,
29879,
515,
697,
5835,
9609,
29889,
306,
21168,
372,
297,
263,
6438,
10317,
6694,
5716,
322,
896,
5360,
372,
29889,
13,
13,
4013,
3508,
29915,
29873,
2675,
304,
367,
1407,
5407,
565,
372,
6858,
263,
1404,
304,
367,
2307,
13817,
297,
304,
664,
29889,
13,
13,
3112,
756,
925,
393,
29485,
29901,
13,
13,
1576,
15483,
1492,
1286,
338,
9078,
577,
393,
10751,
1818,
367,
16896,
1269,
931,
7592,
17517,
338,
5039,
630,
29889,
376,
4013,
1873,
28936,
4160,
304,
6232,
411,
470,
679,
2130,
304,
1790,
6601,
491,
13138,
263,
697,
29899,
2230,
10760,
775,
29889,
11028,
338,
2183,
871,
304,
278,
2702,
2022,
278,
1404,
2893,
11057,
363,
697,
931,
871,
29892,
322,
278,
19383,
4867,
338,
8072,
26130,
1699,
13,
13,
4013,
3508,
29915,
29873,
2675,
304,
367,
1407,
5407,
565,
372,
6858,
263,
1404,
304,
367,
2307,
13817,
297,
304,
664,
29889,
13,
13,
3112,
10083,
763,
372,
1033,
367,
385,
8671,
304,
2563,
1252,
29892,
363,
1906,
1058,
671,
372,
363,
7592,
2304,
29889,
13,
13,
3112,
367,
1446,
278,
23927,
714,
310,
1811,
304,
679,
1556,
16157,
29879,
304,
1101,
2560,
1147,
5521,
11994,
29889,
13,
13,
29923,
369,
664,
263,
16905,
2304,
4982,
29973,
2860,
24232,
304,
385,
6467,
27729,
2022,
313,
29875,
29889,
29872,
29889,
27729,
20239,
29897,
363,
278,
18615,
931,
393,
746,
366,
2244,
1075,
304,
376,
1266,
29899,
3808,
411,
278,
1492,
9495,
2826,
29908,
372,
338,
451,
278,
1021,
408,
376,
8896,
29899,
3808,
313,
2541,
278,
2175,
5513,
366,
1369,
7291,
1048,
7592,
14616,
7535,
29889,
13,
13,
25271,
3730,
393,
471,
263,
1472,
931,
8020,
29889,
2860,
263,
1550,
29892,
366,
5040,
7291,
310,
5297,
1657,
653,
16864,
309,
2133,
408,
263,
3516,
519,
2984,
29889,
13,
13,
13555,
24232,
304,
385,
6467,
27729,
2022,
313,
29875,
29889,
29872,
29889,
27729,
20239,
29897,
363,
278,
18615,
931,
393,
746,
366,
2244,
1075,
304,
376,
1266,
29899,
3808,
411,
278,
1492,
9495,
2826,
29908,
372,
338,
451,
278,
1021,
408,
376,
8896,
29899,
3808,
313,
2541,
278,
2175,
5513,
366,
1369,
7291,
1048,
7592,
14616,
7535,
29889,
13,
13,
28575,
923,
414,
363,
278,
24492,
21443,
887,
22313,
278,
301,
1792,
8260,
304,
1065,
322,
505,
963,
11417,
297,
278,
2582,
29889,
13,
13,
29902,
664,
297,
734,
305,
2304,
29889,
306,
29915,
345,
18169,
263,
2846,
4160,
1058,
3282,
29915,
29873,
1584,
1855,
895,
278,
4513,
2655,
297,
278,
11155,
310,
11367,
471,
263,
6143,
2745,
306,
6496,
372,
363,
963,
29889,
13,
13,
29902,
29915,
345,
750,
697,
1404,
1058,
471,
21863,
287,
491,
590,
734,
305,
1217,
29899,
808,
6090,
746,
306,
6496,
278,
10701,
4138,
29889,
9603,
287,
714,
1183,
750,
10398,
278,
1833,
1023,
2440,
767,
6751,
10701,
491,
8718,
10803,
29892,
18851,
16913,
1094,
322,
773,
278,
4078,
7928,
408,
263,
934,
8455,
29889,
13,
13,
1762,
367,
6534,
29892,
306,
29915,
29885,
263,
27922,
29892,
263,
1404,
310,
1716,
8074,
322,
3852,
29892,
15390,
310,
27826,
9461,
8466,
24557,
29892,
322,
505,
1048,
29871,
29941,
29900,
2440,
310,
7271,
411,
5164,
1404,
19510,
29892,
25704,
1970,
1509,
2305,
1363,
310,
920,
5172,
306,
671,
1556,
19510,
29892,
322,
372,
3614,
592,
263,
3273,
1550,
304,
664,
714,
393,
278,
1766,
569,
2655,
297,
11367,
471,
278,
6143,
29889,
1932,
366,
29915,
276,
1304,
304,
278,
6143,
1641,
297,
278,
856,
6143,
2594,
313,
15970,
29915,
29881,
493,
2960,
14366,
746,
372,
11584,
1109,
17006,
322,
4947,
8611,
491,
278,
18130,
6718,
29892,
366,
29915,
276,
1343,
1312,
304,
1348,
393,
393,
29915,
29879,
988,
599,
278,
6143,
372,
29872,
13,
13,
4806,
679,
393,
263,
3287,
29889,
8680,
10035,
2329,
29899,
17991,
1918,
1650,
338,
278,
8722,
10092,
448,
925,
281,
29488,
278,
4160,
8722,
322,
1634,
6048,
411,
2322,
29892,
607,
338,
5491,
1568,
6775,
1135,
24876,
14556,
278,
2702,
1108,
29889,
319,
2625,
2779,
310,
445,
338,
393,
278,
7786,
10701,
18028,
338,
24639,
29892,
577,
591,
6041,
679,
10325,
29899,
12071,
4160,
5432,
297,
263,
7243,
293,
1363,
896,
1348,
1009,
10701,
505,
24273,
29889,
390,
1624,
901,
15574,
896,
1246,
297,
263,
7243,
293,
1363,
896,
1348,
7047,
338,
694,
5520,
5130,
1156,
372,
29915,
29879,
9849,
1109,
17006,
515,
278,
13,
13,
29908,
8949,
1286,
925,
1492,
2828,
393,
9849,
29908,
856,
29915,
4187,
306,
29915,
29885,
2175,
29692,
29915,
13,
29908,
3782,
29892,
2125,
596,
19917,
322,
5503,
278,
2826,
373,
278,
1492,
2625,
310,
278,
9495,
2748,
322,
4808,
372,
1623,
636,
825,
437,
366,
1074,
3026,
636,
29908,
1619,
4876,
4714,
3902,
9386,
4653,
925,
4687,
701,
29908,
13,
29908,
1217,
366,
11484,
278,
19246,
2826,
636,
474,
864,
366,
304,
2828,
278,
10428,
2826,
29991,
636,
1016,
29915,
29873,
366,
1073,
2175,
515,
1492,
29908,
13,
29908,
856,
354,
29891,
1016,
29915,
29873,
679,
10395,
472,
592,
474,
29915,
29885,
451,
263,
6601,
8528,
13171,
29911,
763,
366,
3850,
856,
29906,
29900,
6233,
2678,
856,
13,
5747,
29915,
29879,
2828,
372,
323,
29956,
29949,
3064,
636,
3765,
2828,
2794,
323,
29956,
29949,
19367,
29908,
13,
29908,
856,
354,
29891,
1016,
29915,
29873,
679,
10395,
472,
592,
474,
29915,
29885,
451,
263,
6601,
8528,
13171,
29911,
763,
366,
3850,
3045,
13,
13,
29979,
29872,
801,
29892,
393,
29915,
29879,
1048,
920,
372,
5771,
29889,
450,
11509,
304,
14051,
1023,
17294,
9101,
4208,
338,
11584,
3342,
408,
17924,
895,
856,
13,
13,
29902,
4997,
29892,
746,
263,
11619,
15873,
263,
2225,
3395,
322,
4083,
1554,
763,
376,
19730,
445,
22549,
2748,
263,
2462,
613,
947,
5019,
8908,
411,
376,
4187,
306,
29915,
29885,
451,
263,
16083,
8528,
13171,
29911,
763,
366,
3850,
29973,
13,
13,
5816,
306,
1284,
304,
664,
338,
263,
10296,
310,
5988,
29889,
1004,
322,
3815,
29894,
15580,
29889,
2045,
597,
7122,
29889,
1004,
29914,
518,
7122,
29889,
1004,
29962,
338,
7123,
2560,
304,
679,
2305,
304,
437,
376,
3808,
278,
24841,
8607,
373,
278,
2175,
856,
3582,
372,
304,
4892,
2745,
372,
4076,
366,
263,
14183,
13615,
1353,
856,
5816,
29915,
29879,
278,
1353,
856,
20834,
525,
3582,
29915,
304,
1235,
592,
7592,
2761,
17794,
322,
769,
671,
393,
363,
1404,
1049,
6433,
29889,
3118,
2655,
393,
5988,
29889,
1004,
1838,
29915,
29873,
5376,
411,
1532,
338,
501,
2477,
9508,
29879,
448,
18451,
393,
372,
1838,
29915,
29873,
2758,
4160,
304,
2828,
373,
963,
29892,
1951,
372,
29915,
29879,
11982,
1884,
287,
2788,
304,
278,
4714,
29889,
960,
366,
29915,
276,
871,
2675,
304,
7124,
697,
393,
3508,
29915,
29873,
13,
13,
15597,
29892,
322,
916,
1661,
29899,
4345,
7592,
2761,
7047,
817,
304,
1065,
408,
4113,
472,
3203,
2748,
29892,
577,
896,
508,
11658,
4315,
29899,
11038,
729,
292,
18563,
29889,
450,
9963,
304,
278,
7156,
5930,
515,
1661,
29899,
6406,
4464,
2678,
29892,
541,
372,
871,
4893,
697,
4113,
4867,
304,
297,
1777,
509,
403,
596,
1788,
322,
664,
515,
727,
29892,
565,
727,
29915,
29879,
13764,
29979,
4439,
14803,
7609,
29889,
13,
13,
6246,
1250,
373,
11261,
29892,
7592,
2761,
3508,
29915,
29873,
363,
278,
350,
29931,
22255,
491,
738,
2794,
29936,
372,
341,
17321,
29856,
596,
4315,
491,
773,
376,
10525,
29899,
11038,
729,
292,
29908,
607,
6858,
3516,
13,
13,
1349,
1446,
451,
29871,
29896,
29900,
29900,
29995,
16232,
29892,
591,
671,
27707,
5397,
7592,
2304,
607,
6511,
1661,
29899,
328,
29885,
1144,
304,
1065,
385,
10823,
304,
2367,
502,
1404,
29899,
5563,
2130,
304,
1009,
4315,
29892,
1083,
327,
873,
29892,
1584,
565,
372,
338,
1749,
937,
931,
17378,
1497,
1788,
29889,
1334,
884,
14260,
6350,
4522,
6816,
797,
2538,
18376,
29871,
29906,
2440,
8020,
29892,
607,
763,
3538,
1258,
451,
1996,
4113,
10462,
1584,
363,
937,
931,
2130,
489,
1584,
373,
3852,
29871,
29955,
29889,
2398,
29892,
297,
1797,
304,
505,
2130,
304,
278,
6464,
4315,
29892,
591,
723,
505,
304,
3965,
263,
2826,
304,
2009,
501,
2477,
11858,
362,
29889,
13,
13,
16804,
1683,
393,
306,
925,
1016,
29915,
29873,
679,
411,
376,
21695,
3002,
29908,
763,
445,
338,
920,
372,
29915,
29879,
25257,
368,
3595,
408,
376,
2559,
586,
1230,
29908,
1363,
372,
10431,
20789,
263,
1856,
4714,
29892,
5998,
372,
29915,
29879,
1554,
591,
505,
1063,
2221,
304,
437,
363,
1602,
3076,
773,
916,
7047,
29889,
13,
13,
4013,
338,
8830,
278,
1021,
408,
13547,
1212,
29892,
470,
364,
845,
29892,
470,
13927,
29892,
470,
478,
15868,
29892,
470,
278,
1784,
916,
5722,
11763,
393,
437,
278,
1021,
2655,
29889,
383,
2707,
29892,
445,
338,
1554,
591,
1033,
1584,
437,
297,
278,
4714,
2440,
8020,
29991,
306,
6456,
773,
263,
3355,
623,
1026,
393,
1235,
592,
4511,
297,
304,
23226,
472,
664,
773,
13927,
470,
478,
15868,
29889,
498,
13,
13,
29963,
15868,
674,
817,
366,
304,
6686,
4595,
655,
1549,
263,
22538,
29892,
1549,
2295,
3864,
478,
15868,
29892,
1549,
2295,
3864,
263,
2011,
373,
902,
12876,
29892,
322,
769,
1549,
14712,
478,
15868,
1923,
1283,
1156,
1328,
304,
3802,
278,
6993,
16188,
29889,
13,
13,
1451,
307,
29899,
29885,
866,
674,
925,
817,
902,
304,
5142,
322,
1065,
263,
1824,
29892,
322,
769,
6493,
263,
3153,
3988,
29892,
322,
5505,
1303,
263,
1353,
304,
366,
975,
278,
9008,
29889,
450,
10225,
310,
12876,
2295,
306,
1348,
29892,
338,
278,
24842,
5401,
1244,
2056,
2305,
526,
1304,
304,
2988,
29892,
541,
451,
15232,
1662,
3063,
3564,
6055,
29889,
2296,
1795,
451,
1584,
1073,
607,
5641,
3211,
902,
16053,
13,
13,
29974,
29896,
29889,
450,
315,
29889,
29903,
9229,
29896,
29900,
29896,
4380,
24588,
559,
723,
367,
525,
5816,
338,
2030,
338,
716,
1449,
4286,
512,
263,
4475,
2453,
262,
29892,
278,
6601,
13897,
297,
592,
471,
7124,
491,
13981,
17163,
29879,
4892,
29892,
17126,
310,
278,
2114,
393,
1568,
310,
670,
5400,
27965,
9701,
451,
278,
1667,
24233,
800,
29892,
541,
3265,
1248,
14424,
322,
19500,
963,
304,
9999,
411,
263,
16165,
261,
296,
18551,
313,
392,
278,
3081,
393,
263,
6483,
9124,
3633,
8128,
3282,
29915,
29873,
21682,
670,
7736,
29879,
2845,
467,
306,
29889,
29872,
29889,
278,
10377,
397,
471,
263,
14982,
310,
22326,
29941,
4847,
29892,
451,
263,
4696,
8743,
4742,
297,
7316,
29889,
8502,
3538,
445,
9281,
5386,
330,
328,
657,
338,
263,
14982,
310,
13,
13,
2887,
385,
2595,
359,
5342,
446,
1182,
860,
13524,
6142,
29892,
278,
24233,
1230,
760,
393,
278,
474,
27345,
6296,
471,
20794,
278,
15483,
304,
263,
13303,
3233,
310,
29703,
29889,
450,
474,
27345,
471,
278,
937,
697,
393,
6216,
297,
596,
24589,
29889,
13,
13,
29902,
29915,
29885,
451,
2675,
304,
367,
2221,
304,
5649,
304,
590,
5637,
920,
304,
679,
385,
13927,
1923,
701,
322,
2734,
373,
902,
4933,
29889,
1205,
2805,
10228,
5130,
411,
385,
6081,
29973,
2193,
306,
1033,
4658,
29889,
13,
13,
1576,
1820,
338,
334,
264,
17961,
5575,
8168,
6478,
2440,
8020,
29892,
4444,
701,
385,
383,
3557,
2729,
3271,
934,
12231,
2133,
2669,
471,
5722,
1711,
1950,
29889,
1205,
372,
471,
263,
12176,
349,
1806,
29909,
29889,
20724,
3313,
3345,
630,
4129,
411,
263,
2560,
2323,
6464,
29889,
20175,
29892,
5466,
9215,
478,
15868,
964,
1554,
393,
14332,
2307,
756,
29889,
2193,
2794,
393,
2305,
1058,
7656,
29915,
29873,
505,
14060,
545,
304,
7592,
2761,
29892,
1286,
437,
29889,
13,
13,
29908,
2887,
385,
2595,
359,
5342,
446,
1182,
860,
13524,
6142,
29892,
278,
24233,
1230,
760,
393,
278,
474,
27345,
6296,
471,
20794,
278,
15483,
304,
263,
13303,
3233,
310,
29703,
29889,
450,
474,
27345,
471,
278,
937,
697,
393,
6216,
297,
596,
24589,
1213,
13,
13,
29902,
15205,
263,
364,
601,
29947,
29900,
29900,
297,
29871,
29906,
29900,
29900,
29896,
29889,
2216,
1568,
5520,
470,
266,
6541,
1135,
967,
3081,
2752,
29892,
263,
22704,
470,
319,
6344,
16988,
313,
29902,
1348,
278,
4642,
29892,
541,
20952,
1603,
7968,
1135,
263,
19810,
310,
8743,
15889,
29892,
322,
3117,
4203,
278,
7688,
467,
306,
1603,
723,
5821,
304,
367,
2221,
304,
8677,
26652,
3918,
4805,
3081,
9101,
763,
263,
319,
6344,
304,
3081,
590,
4847,
29892,
2466,
590,
13,
13,
1576,
11611,
29947,
29900,
29900,
471,
263,
11013,
29899,
6707,
4847,
29889,
319,
7773,
697,
856,
306,
750,
263,
11611,
349,
3580,
29941,
29900,
29900,
322,
29871,
29945,
29900,
29900,
408,
1532,
29892,
322,
12642,
287,
1472,
11687,
472,
278,
11611,
29871,
29947,
29900,
29900,
29915,
29879,
29871,
29896,
29906,
29947,
9486,
310,
2913,
29889,
1205,
278,
2441,
474,
27345,
750,
263,
9200,
379,
7858,
29892,
701,
2745,
769,
871,
1304,
297,
6731,
5275,
29892,
607,
4687,
472,
29871,
29945,
7210,
310,
2913,
29889,
2688,
11630,
892,
278,
937,
304,
12500,
1623,
515,
451,
19273,
2898,
25100,
304,
9200,
25100,
29892,
297,
1797,
304,
679,
263,
379,
7858,
2729,
4847,
964,
596,
24589,
29889,
13,
13,
1576,
12608,
6355,
18875,
338,
884,
6775,
304,
23624,
2919,
8857,
310,
12516,
411,
29889,
1126,
12113,
471,
278,
937,
304,
22782,
13,
13,
7058,
338,
278,
1820,
1298,
310,
1749,
22941,
276,
882,
306,
1348,
29889,
1724,
366,
8453,
963,
2599,
304,
825,
366,
8453,
408,
263,
525,
29876,
4070,
734,
305,
330,
328,
657,
742,
306,
723,
5136,
2486,
1246,
278,
12995,
19583,
6924,
10464,
304,
278,
12995,
19583,
6924,
1667,
5461,
4742,
29889,
1670,
471,
23196,
1058,
297,
343,
29906,
29900,
29900,
29900,
322,
1568,
8859,
29892,
1258,
451,
1074,
393,
6601,
3370,
322,
9068,
9224,
892,
14653,
18159,
29892,
322,
393,
408,
366,
1033,
1286,
505,
263,
4696,
1788,
297,
263,
9609,
2159,
4742,
29892,
393,
10201,
366,
723,
505,
697,
474,
13,
13,
5872,
278,
1298,
471,
5087,
338,
2748,
1449,
2599,
1554,
393,
471,
1898,
1434,
297,
278,
4940,
29889,
7423,
474,
471,
2743,
1048,
1058,
4947,
16200,
363,
278,
2969,
856,
372,
925,
471,
478,
15868,
471,
590,
937,
7592,
3983,
936,
8638,
29914,
20858,
19383,
623,
29889,
322,
372,
471,
2000,
263,
24424,
491,
1029,
885,
812,
414,
29889,
13,
13,
797,
916,
9763,
263,
6601,
14582,
6773,
304,
3867,
4160,
411,
263,
2826,
304,
2507,
1009,
23226,
373,
15020,
278,
6924,
6993,
5161,
2039,
9129,
746,
278,
4933,
338,
2734,
29889,
13,
13,
26526,
1918,
338,
263,
6993,
23180,
3097,
29889,
530,
6570,
338,
263,
23180,
3097,
29889,
15950,
263,
6601,
6631,
304,
278,
8986,
338,
263,
23180,
3097,
29889,
319,
1856,
4714,
338,
263,
23180,
3097,
29889,
7753,
596,
1400,
322,
278,
2114,
372,
471,
878,
7176,
25483,
1319,
338,
263,
23180,
3097,
304,
278,
9753,
537,
322,
3619,
4060,
310,
2305,
5183,
372,
29889,
13,
13,
29875,
16289,
366,
892,
1641,
3265,
22887,
4384,
293,
29892,
541,
727,
29915,
29879,
263,
4328,
1546,
376,
8439,
338,
385,
5337,
7101,
393,
29892,
2183,
3307,
931,
29892,
263,
10087,
447,
4937,
508,
16035,
277,
29908,
322,
376,
12711,
29915,
29879,
385,
429,
272,
2966,
10835,
4780,
16035,
277,
1641,
4240,
4153,
964,
278,
4714,
1642,
13,
13,
29908,
12711,
29915,
29879,
385,
429,
272,
2966,
10835,
4780,
16035,
277,
1641,
4240,
4153,
964,
278,
4714,
1642,
13,
13,
29902,
9007,
29915,
29873,
1641,
22887,
4384,
293,
472,
599,
29889,
450,
5633,
310,
1749,
12080,
393,
505,
1063,
1556,
9213,
491,
278,
11176,
14703,
310,
15483,
526,
278,
1556,
4780,
304,
16035,
277,
29889,
2688,
526,
599,
6345,
714,
310,
29703,
322,
1006,
6915,
2068,
29889,
13,
13,
3421,
1298,
338,
565,
366,
864,
6993,
896,
366,
1122,
408,
1532,
2367,
701,
1784,
310,
278,
5407,
3168,
310,
596,
6601,
29889,
887,
18665,
297,
263,
3852,
28932,
4933,
304,
278,
8986,
322,
372,
4947,
15205,
1434,
366,
1584,
505,
263,
8825,
304,
2254,
701,
278,
5417,
2767,
1923,
29889,
15175,
1244,
591,
505,
263,
6081,
29892,
25057,
304,
367,
1407,
17644,
1304,
29892,
1302,
13,
13,
2816,
338,
596,
5932,
393,
967,
376,
2541,
262,
263,
4714,
613,
322,
4550,
7846,
2705,
1818,
367,
297,
24216,
29973,
13,
13,
797,
263,
18254,
15903,
29892,
4874,
29889,
3118,
2107,
982,
304,
2125,
13774,
2319,
6993,
21838,
322,
11180,
9119,
1598,
963,
338,
304,
505,
263,
2323,
2280,
393,
14335,
304,
367,
4129,
322,
437,
4129,
363,
14332,
29889,
450,
4714,
338,
9701,
297,
2086,
1784,
1422,
2712,
408,
372,
338,
29889,
1094,
372,
7415,
901,
322,
901,
6555,
29892,
372,
338,
884,
263,
901,
322,
901,
25782,
292,
3646,
29889,
319,
17322,
29899,
4878,
19632,
895,
1286,
756,
28145,
2594,
26536,
297,
4958,
310,
278,
18658,
372,
508,
437,
29889,
13,
13,
1252,
1547,
393,
304,
599,
21712,
445,
6858,
278,
1404,
304,
748,
304,
263,
2702,
1856,
3268,
313,
272,
10431,
5706,
263,
2761,
775,
29897,
322,
9479,
2758,
278,
3957,
29889,
739,
29915,
29879,
1603,
451,
1728,
777,
6993,
21838,
306,
7755,
29892,
541,
372,
723,
1996,
263,
6534,
5253,
310,
17928,
292,
1716,
5087,
322,
278,
1404,
304,
633,
1509,
372,
29889,
7849,
368,
306,
508,
1074,
372,
408,
1641,
263,
2107,
982,
304,
1371,
7875,
29914,
2674,
5056,
411,
1009,
23226,
29889,
1094,
263,
3765,
2298,
1781,
366,
508,
1371,
596,
16823,
411,
902,
4326,
515,
596,
3852,
3800,
29892,
470,
596,
270,
328,
411,
670,
3852,
3800,
515,
596,
13,
13,
2816,
338,
596,
5932,
393,
967,
376,
2541,
262,
263,
4714,
613,
322,
4550,
7846,
2705,
1818,
367,
297,
24216,
29973,
13,
13,
797,
263,
18254,
15903,
29892,
4874,
29889,
3118,
2107,
982,
304,
2125,
13774,
2319,
6993,
21838,
322,
11180,
9119,
1598,
963,
338,
304,
505,
263,
2323,
2280,
393,
14335,
304,
367,
4129,
322,
437,
4129,
363,
14332,
29889,
450,
4714,
338,
9701,
297,
2086,
1784,
1422,
2712,
408,
372,
338,
29889,
1094,
372,
7415,
901,
322,
901,
6555,
29892,
372,
338,
884,
263,
901,
322,
901,
25782,
292,
3646,
29889,
319,
17322,
29899,
4878,
19632,
895,
1286,
756,
28145,
2594,
26536,
297,
4958,
310,
278,
18658,
372,
508,
437,
29889,
13,
13,
3644,
366,
526,
313,
6574,
4019,
368,
29892,
310,
3236,
29897,
5934,
393,
4417,
7592,
2130,
304,
385,
2307,
4280,
2563,
4714,
756,
13312,
694,
6993,
2411,
5795,
825,
578,
1310,
322,
694,
5253,
310,
5777,
918,
1033,
10075,
367,
15590,
29892,
1532,
29892,
306,
1827,
393,
3229,
1559,
2722,
411,
372,
263,
6866,
1145,
310,
5296,
29889,
28609,
366,
22222,
6467,
29892,
393,
6374,
5995,
338,
1492,
368,
5545,
2089,
29889,
13,
13,
1349,
852,
1058,
22941,
929,
411,
366,
491,
2322,
526,
13586,
1641,
25182,
29889,
13,
13,
29950,
4317,
29885,
29889,
29489,
29915,
29873,
376,
29874,
2323,
2280,
393,
14335,
304,
367,
4129,
322,
437,
4129,
363,
14332,
29908,
263,
15590,
6139,
310,
278,
6570,
29973,
306,
29915,
29885,
451,
15661,
263,
337,
2199,
601,
594,
6425,
18245,
398,
29892,
541,
372,
2444,
304,
592,
596,
313,
1397,
277,
6490,
14366,
21838,
975,
278,
6993,
5626,
9701,
746,
366,
1369,
4417,
9863,
304,
7047,
750,
304,
367,
7484,
363,
278,
6570,
29892,
322,
1906,
3109,
787,
508,
367,
7436,
304,
278,
4714,
29889,
13,
13,
26222,
1449,
29892,
565,
596,
4714,
338,
16035,
1573,
304,
278,
15834,
393,
278,
5337,
261,
508,
15928,
393,
7592,
2130,
7079,
1185,
329,
2015,
1891,
29892,
278,
10555,
338,
2307,
5714,
489,
896,
526,
2734,
11472,
775,
322,
1033,
565,
7429,
5142,
393,
7079,
470,
1790,
1404,
1049,
1824,
373,
9667,
29889,
13,
13,
4013,
338,
825,
306,
471,
7291,
29889,
960,
10888,
1258,
445,
591,
723,
599,
367,
885,
1633,
292,
1048,
289,
3071,
322,
278,
6993,
2411,
5795,
29889,
18585,
727,
1122,
367,
14746,
310,
15359,
310,
6993,
29892,
541,
6993,
756,
263,
982,
310,
1641,
9942,
794,
287,
29889,
13,
13,
4806,
526,
8401,
964,
1790,
885,
653,
3186,
411,
1407,
2217,
363,
621,
1774,
29889,
1334,
526,
10594,
599,
1749,
848,
7395,
411,
3889,
5786,
1728,
7291,
24344,
1048,
409,
2764,
292,
393,
848,
29889,
910,
338,
763,
746,
591,
12422,
287,
1749,
23226,
304,
278,
8986,
1728,
13797,
393,
591,
892,
14060,
292,
20278,
304,
1432,
1023,
2586,
885,
13,
13,
14207,
338,
925,
4380,
292,
701,
304,
7783,
29889,
3852,
756,
750,
445,
2117,
3097,
363,
1784,
2440,
29892,
310,
916,
2305,
1083,
327,
873,
17378,
372,
29889,
512,
2114,
29892,
7783,
756,
1584,
750,
304,
3394,
4655,
7788,
304,
27668,
2130,
304,
445,
4682,
29892,
2861,
304,
975,
1332,
295,
4056,
9667,
29889,
13,
13,
25125,
7783,
29915,
29879,
1650,
664,
1584,
975,
278,
4685,
29892,
746,
1716,
14884,
526,
5742,
3974,
29893,
4293,
29973,
1128,
1048,
746,
278,
14884,
526,
2734,
1422,
13598,
6757,
313,
29875,
29889,
29872,
29889,
451,
3852,
6877,
13,
13,
29909,
7979,
287,
29889,
306,
29915,
645,
748,
697,
4340,
448,
372,
338,
18920,
384,
292,
20239,
304,
2758,
263,
4714,
313,
4716,
881,
367,
11982,
1884,
287,
322,
9368,
304,
2130,
3099,
5377,
310,
967,
3474,
3515,
29897,
1083,
327,
873,
2761,
596,
4933,
29889,
360,
3774,
360,
3774,
360,
3774,
29889,
5087,
1304,
304,
2274,
445,
29889,
27466,
2705,
896,
3512,
1663,
1662,
10325,
29973,
13,
13,
15597,
16289,
393,
11233,
414,
1016,
29915,
29873,
2367,
263,
528,
277,
1048,
6993,
2745,
366,
937,
2367,
963,
3307,
29703,
304,
13958,
6053,
411,
29936,
1156,
393,
2466,
896,
752,
7420,
263,
3287,
541,
366,
2307,
505,
599,
1009,
6909,
322,
1009,
5381,
491,
769,
577,
372,
1838,
29915,
29873,
4383,
29889,
13,
13,
1576,
1889,
607,
674,
525,
6451,
278,
4933,
29915,
674,
1556,
3117,
505,
4359,
3078,
304,
437,
411,
278,
10174,
607,
2761,
278,
5417,
29889,
2193,
29915,
29879,
920,
278,
3353,
4714,
338,
4240,
29901,
14568,
310,
7417,
10174,
9078,
373,
825,
896,
508,
437,
322,
2221,
871,
304,
5193,
304,
1269,
916,
975,
1532,
3342,
19510,
29889,
13,
13,
29923,
369,
505,
263,
11962,
393,
20848,
596,
395,
29941,
29900,
29895,
5786,
29892,
366,
18864,
29871,
29906,
11405,
5353,
292,
920,
4129,
1736,
322,
4129,
366,
29915,
645,
817,
411,
963,
29892,
366,
1804,
599,
278,
8078,
29879,
29914,
7070,
29892,
769,
746,
366,
29915,
276,
7960,
304,
748,
366,
6958,
1009,
734,
305,
4113,
304,
679,
5240,
866,
2726,
6883,
304,
731,
2712,
701,
29892,
322,
896,
5312,
277,
714,
26506,
304,
2367,
366,
2130,
29889,
13,
13,
10454,
29892,
278,
11962,
884,
4083,
393,
278,
871,
2769,
896,
526,
17762,
304,
679,
1749,
5786,
338,
1363,
591,
5429,
963,
591,
508,
505,
372,
2734,
297,
1090,
29871,
29896,
4723,
29889,
3645,
263,
11706,
2317,
3149,
29892,
591,
723,
367,
2691,
29892,
13,
13,
4806,
881,
27399,
599,
1950,
8974,
310,
16035,
1169,
17126,
565,
896,
526,
10959,
304,
5407,
2712,
29889,
306,
505,
278,
4922,
6601,
29901,
13,
13,
29899,
390,
6948,
8074,
411,
599,
278,
9281,
6993,
8466,
26371,
4564,
4110,
9229,
1939,
4714,
5130,
304,
5557,
4160,
515,
11423,
635,
9138,
1554,
4439,
14803,
373,
278,
7787,
9229,
2216,
3564,
6631,
304,
5557,
16661,
515,
5377,
9229,
1939,
11819,
304,
5557,
2305,
3063,
975,
596,
23468,
1886,
12818,
596,
20502,
848,
9229,
1939,
12265,
414,
14889,
368,
304,
1207,
1854,
372,
508,
29915,
29873,
367,
6077,
373,
29892,
1156,
599,
263,
6601,
393,
29915,
29879,
451,
2734,
338,
11592,
1492,
29973,
13,
13,
8241,
372,
338,
263,
27592,
2969,
29892,
363,
1784,
9590,
29889,
3869,
727,
29915,
29879,
263,
1950,
6993,
16035,
277,
29889,
3869,
372,
29915,
29879,
3755,
3117,
263,
12045,
7088,
5622,
29889,
13,
13,
3492,
508,
29915,
29873,
11455,
278,
2114,
393,
278,
4714,
338,
278,
1556,
12187,
5337,
7101,
363,
738,
6601,
6631,
304,
278,
4685,
1286,
328,
1036,
29901,
4049,
29892,
372,
29915,
29879,
1584,
278,
871,
697,
29892,
2183,
393,
1556,
916,
3564,
22060,
515,
3271,
23226,
526,
24370,
491,
20201,
616,
3974,
29893,
4293,
29889,
13,
13,
7058,
338,
263,
17644,
3619,
3984,
535,
1441,
29889,
450,
13426,
13638,
310,
16661,
773,
278,
4714,
526,
5264,
21639,
16661,
29892,
1374,
14424,
322,
278,
763,
29889,
9267,
310,
278,
1661,
29899,
24911,
16661,
671,
278,
4714,
408,
925,
1790,
4608,
304,
11581,
2130,
304,
916,
7117,
310,
278,
1788,
29892,
11328,
29879,
322,
21967,
1641,
278,
9281,
297,
325,
468,
434,
1492,
1286,
22611,
278,
9670,
1409,
310,
5417,
2702,
16661,
29889,
13,
13,
8439,
29915,
29879,
2869,
1407,
2846,
16035,
1169,
12242,
287,
472,
278,
4714,
3528,
297,
6136,
671,
29889,
13,
13,
15597,
526,
29889,
1105,
1235,
29915,
29879,
451,
671,
963,
322,
2012,
748,
363,
3564,
1146,
331,
787,
607,
7845,
727,
1178,
368,
10534,
304,
884,
367,
16035,
1573,
363,
14263,
1555,
296,
11976,
29889,
13,
13,
3421,
1298,
338,
1244,
338,
263,
5780,
393,
8128,
9863,
29889,
739,
2845,
4864,
470,
372,
338,
8611,
491,
263,
2788,
5780,
491,
1906,
1058,
817,
278,
9863,
29889,
450,
2114,
393,
372,
338,
263,
4714,
7079,
408,
15869,
304,
263,
2317,
18785,
1824,
1838,
29915,
29873,
12695,
1207,
372,
738,
901,
470,
3109,
310,
263,
6993,
12045,
29889,
3831,
433,
2827,
393,
445,
338,
263,
6993,
12045,
541,
390,
11191,
29892,
478,
15868,
470,
1784,
916,
2788,
9316,
3508,
13,
13,
4013,
508,
871,
367,
263,
5407,
8671,
304,
5923,
8492,
763,
8583,
29963,
15580,
565,
322,
871,
565,
278,
10228,
4714,
3528,
7415,
263,
19781,
318,
5365,
28358,
681,
4714,
29892,
1476,
373,
382,
5348,
29979,
4933,
29889,
13466,
29892,
825,
29915,
29879,
278,
4328,
565,
697,
1603,
756,
304,
2601,
7047,
373,
1716,
6757,
304,
1207,
372,
28326,
1821,
29973,
512,
445,
2777,
29892,
372,
29915,
29879,
2869,
1023,
2601,
800,
29892,
2183,
278,
817,
304,
2601,
278,
6081,
408,
1532,
408,
278,
4714,
3528,
29889,
13,
13,
15597,
1033,
505,
472,
3203,
1304,
1009,
1914,
5625,
29876,
5314,
310,
278,
405,
29990,
9608,
518,
3608,
29889,
510,
29962,
322,
2355,
664,
2675,
2820,
2011,
292,
372,
304,
3852,
322,
4326,
29889,
7198,
769,
405,
29990,
723,
7146,
1369,
304,
5191,
478,
15868,
322,
278,
383,
3927,
1799,
7881,
723,
505,
263,
1880,
11029,
7592,
14616,
5177,
313,
392,
491,
1880,
11029,
306,
2099,
18435,
29990,
5544,
20193,
467,
1394,
29892,
7339,
19752,
333,
29892,
385,
4544,
29871,
29945,
3132,
448,
4561,
14713,
290,
29915,
29879,
11028,
10454,
518,
261,
293,
290,
29889,
510,
29962,
607,
338,
9999,
287,
363,
678,
456,
19273,
29879,
29889,
887,
1073,
29892,
3099,
916,
1135,
15561,
794,
292,
278,
5625,
29876,
18875,
29889,
13,
13,
29902,
750,
304,
4511,
304,
777,
14884,
297,
8046,
515,
4517,
3025,
478,
15868,
278,
916,
2462,
29889,
319,
5335,
873,
1083,
4995,
310,
920,
1568,
306,
26277,
393,
9608,
29901,
372,
29915,
29879,
577,
5232,
29889,
390,
11191,
6446,
413,
7358,
967,
564,
344,
29889,
450,
6570,
1060,
1923,
2625,
5314,
2444,
10734,
5232,
29892,
541,
1584,
411,
4129,
6077,
1623,
297,
323,
523,
29963,
15868,
322,
435,
4162,
29954,
24221,
6077,
701,
29892,
372,
29915,
29879,
1603,
4029,
11710,
313,
392,
727,
526,
599,
310,
278,
24557,
297,
323,
523,
29963,
15868,
373,
3852,
29892,
763,
373,
777,
14884,
17581,
304,
2654,
1610,
278,
4315,
467,
9333,
390,
11191,
2444,
304,
367,
2221,
304,
1302,
412,
411,
6133,
23316,
1270,
11009,
13,
13,
1576,
6416,
1627,
338,
304,
671,
5087,
12424,
29889,
4683,
727,
738,
10509,
267,
5087,
508,
29915,
29873,
5702,
393,
848,
338,
777,
982,
29973,
306,
1016,
29915,
29873,
1073,
3307,
1048,
920,
445,
1736,
304,
505,
738,
2969,
825,
29915,
29879,
5722,
1711,
28326,
1821,
29889,
960,
372,
338,
28326,
1821,
29892,
338,
445,
1790,
697,
310,
1906,
2712,
988,
2305,
674,
1827,
29892,
376,
11284,
29892,
896,
29915,
276,
263,
2024,
5001,
29889,
2688,
508,
437,
3099,
896,
864,
8652,
11644,
29915,
29879,
5148,
472,
445,
29973,
1724,
505,
896,
1476,
29973,
13,
13,
7058,
29915,
29879,
263,
12558,
9461,
2358,
682,
280,
373,
278,
1667,
697,
29889,
21605,
701,
4714,
2761,
310,
6570,
1122,
451,
367,
393,
4802,
263,
5376,
373,
278,
734,
305,
2304,
13,
13,
29902,
1348,
366,
1795,
367,
9613,
1048,
825,
263,
25570,
2869,
947,
29889,
13932,
9076,
292,
278,
3234,
472,
599,
306,
29915,
29885,
925,
330,
11586,
748,
14432,
322,
1827,
376,
1217,
1213,
2216,
6521,
366,
282,
3322,
263,
16188,
297,
278,
25570,
472,
3203,
29889,
341,
5086,
372,
577,
393,
16188,
508,
367,
373,
2011,
29871,
29947,
29900,
338,
1554,
478,
15868,
508,
437,
408,
1532,
393,
947,
334,
1333,
29930,
2869,
1207,
372,
901,
11592,
29889,
13,
13,
10401,
366,
2874,
7047,
29892,
366,
508,
2845,
2874,
411,
6993,
408,
760,
310,
278,
11258,
470,
451,
29889,
5356,
545,
7047,
25517,
1603,
505,
4828,
29892,
541,
372,
29915,
29879,
278,
4328,
1546,
263,
12534,
29716,
322,
263,
2594,
29876,
3050,
29889,
13,
13,
2525,
861,
6757,
892,
1568,
901,
11592,
1135,
3852,
6757,
363,
2440,
313,
1332,
1979,
896,
526,
1286,
338,
701,
304,
27836,
467,
450,
2769,
338,
393,
7783,
750,
304,
2125,
4192,
6288,
15366,
975,
901,
1135,
263,
316,
6332,
304,
11592,
1009,
1788,
471,
1363,
1009,
11258,
471,
2360,
8688,
411,
6993,
297,
3458,
29889,
26663,
3282,
29915,
29873,
505,
278,
1108,
448,
408,
263,
2473,
1792,
1788,
29892,
6993,
471,
760,
310,
278,
2874,
29892,
577,
15270,
297,
24216,
12785,
411,
11592,
7117,
313,
386,
682,
364,
845,
1599,
13927,
29892,
24941,
580,
304,
22821,
29945,
3285,
15504,
29892,
2992,
1846,
471,
1568,
6775,
29889,
13,
13,
797,
1797,
304,
505,
263,
7592,
14616,
2280,
367,
760,
310,
263,
1856,
4714,
29892,
366,
817,
304,
2867,
278,
6993,
310,
278,
4714,
322,
6159,
278,
2967,
1788,
29889,
306,
1016,
29915,
29873,
1073,
920,
278,
6081,
6890,
363,
10228,
1736,
313,
29902,
871,
671,
372,
363,
1856,
510,
1199,
511,
541,
306,
723,
11630,
1348,
8951,
1434,
15476,
1554,
763,
445,
11480,
263,
8424,
310,
7047,
393,
25704,
7212,
1078,
411,
443,
509,
16656,
848,
313,
4716,
338,
19434,
825,
263,
1856,
4714,
947,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 exquisite and expansive estate nestled on 160 acre of benchland property between Juniper Ridge and Valleyview offers mesmerizing views of the South Thompson River, city lights and Kamloops Lake. Yet offers privacy. Custom built over 6600 sqft luxury home hosts lofty 10' ceilings on both floors and a 14' barrel ceiling in living room. Gourmet kitchen with cherry cabinets and granite countertops. A sumptuous 6 piece master ensuite with marble tile, steam shower and self cleaning tub. Combinations of marble, African mahogany flooring and soothing colour tones throughout make the home feel like an extension of the natural surroundings. Nanny suite, long leisure decks, courtyard, hot tub, geothermal heat and A/C, security system, remote control lighting, sound throughout with separate controls in all areas, 3 car garage plus a double 25x40 RV garage and too many more features to list here. Possible potential for dividing off smaller estate lots. An extraordinary property. | [
1,
910,
429,
7680,
568,
322,
1518,
550,
573,
19989,
17763,
839,
373,
29871,
29896,
29953,
29900,
263,
1037,
310,
3856,
305,
1049,
2875,
1546,
7452,
546,
390,
5525,
322,
13939,
1493,
16688,
4883,
1050,
5281,
8386,
310,
278,
4275,
22348,
6163,
29892,
4272,
26068,
322,
12986,
417,
3554,
9459,
29889,
15175,
16688,
5999,
4135,
29889,
8701,
4240,
975,
29871,
29953,
29953,
29900,
29900,
18074,
615,
21684,
2857,
3271,
18982,
658,
3312,
29871,
29896,
29900,
29915,
2257,
309,
886,
373,
1716,
5685,
943,
322,
263,
29871,
29896,
29946,
29915,
2594,
2674,
2257,
6504,
297,
8471,
5716,
29889,
402,
473,
2527,
29181,
411,
14954,
719,
28830,
1691,
322,
3803,
568,
6795,
3332,
29879,
29889,
319,
2533,
415,
17269,
29871,
29953,
8424,
5835,
18158,
411,
1766,
569,
25900,
29892,
21837,
1510,
261,
322,
1583,
5941,
292,
23131,
29889,
422,
2109,
800,
310,
1766,
569,
29892,
11715,
611,
29882,
468,
1384,
5685,
8253,
322,
577,
6046,
12384,
260,
2873,
10106,
1207,
278,
3271,
4459,
763,
385,
6081,
310,
278,
5613,
8388,
618,
886,
29889,
405,
14763,
9460,
29892,
1472,
454,
275,
545,
316,
4684,
29892,
2085,
1017,
538,
29892,
7375,
23131,
29892,
1737,
720,
837,
284,
12871,
322,
319,
29914,
29907,
29892,
6993,
1788,
29892,
7592,
2761,
3578,
292,
29892,
6047,
10106,
411,
5004,
11761,
297,
599,
10161,
29892,
29871,
29941,
1559,
7171,
482,
2298,
263,
3765,
29871,
29906,
29945,
29916,
29946,
29900,
390,
29963,
7171,
482,
322,
2086,
1784,
901,
5680,
304,
1051,
1244,
29889,
20049,
7037,
363,
1933,
4821,
1283,
7968,
19989,
14568,
29889,
530,
28163,
2875,
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
] |
Asia Tour: Bhutan–Where Is My Flying Tiger?
Hanya Yanagihara is in Paro, Bhutan, today—Day 18 of her grand Tour of Asia. Today, she climbs Bhutan's famed Tiger's Nest temple complex and then relaxes at Uma Paro hotel.
Location: Paro, Bhutan
What I did today: climbed Tiger’s Nest, the 17th-century temple complex that clings to a cliff 9,800 feet above the ground. The story goes that Guru Rinpoche, the patron saint of Bhutan and, Himalayan Buddhists believe, the reincarnation of the Buddha himself, flew to the site on his tiger in the 8th century (as, you know, one does). I kept looking around for my flying tiger, until it dawned on me that there was none forthcoming: I’d have to walk like a mortal. And walk I did, to the very top: it took three and a half hours to ascend and descend and my knees are now so sore that I can only assume two positions—supine and prone.
**My room with a view: **From the bedroom at Uma Paro (above), which is like your fantasy summer camp lodge but with amazing ginger tea. (I wish I had some right now but am unable to summon the strength to sit up.) See the fluttering prayer flags just outside? That’s one of the sights I’ll miss most about Bhutan. | [
1,
14325,
6371,
29901,
20303,
329,
273,
29994,
11921,
1317,
1619,
383,
5890,
323,
4087,
29973,
13,
13,
29950,
20912,
23094,
351,
4861,
2518,
338,
297,
1459,
29877,
29892,
20303,
329,
273,
29892,
9826,
30003,
12742,
29871,
29896,
29947,
310,
902,
4595,
6371,
310,
14325,
29889,
20628,
29892,
1183,
10784,
5824,
20303,
329,
273,
29915,
29879,
285,
2795,
323,
4087,
29915,
29879,
405,
342,
17567,
4280,
322,
769,
10208,
9100,
472,
501,
655,
1459,
29877,
16730,
29889,
13,
13,
6508,
29901,
1459,
29877,
29892,
20303,
329,
273,
13,
13,
5618,
306,
1258,
9826,
29901,
10784,
2580,
323,
4087,
30010,
29879,
405,
342,
29892,
278,
29871,
29896,
29955,
386,
29899,
27371,
17567,
4280,
393,
1067,
886,
304,
263,
1067,
2593,
29871,
29929,
29892,
29947,
29900,
29900,
6900,
2038,
278,
5962,
29889,
450,
5828,
5771,
393,
402,
20144,
390,
262,
1129,
1173,
29892,
278,
18259,
22635,
310,
20303,
329,
273,
322,
29892,
379,
3039,
388,
273,
28234,
2879,
4658,
29892,
278,
337,
3742,
2753,
362,
310,
278,
7038,
29881,
2350,
3654,
29892,
9115,
29893,
304,
278,
3268,
373,
670,
260,
4087,
297,
278,
29871,
29947,
386,
6462,
313,
294,
29892,
366,
1073,
29892,
697,
947,
467,
306,
8126,
3063,
2820,
363,
590,
22764,
260,
4087,
29892,
2745,
372,
27470,
287,
373,
592,
393,
727,
471,
5642,
11483,
11506,
29901,
306,
30010,
29881,
505,
304,
6686,
763,
263,
5758,
284,
29889,
1126,
6686,
306,
1258,
29892,
304,
278,
1407,
2246,
29901,
372,
3614,
2211,
322,
263,
4203,
6199,
304,
12066,
355,
322,
17086,
322,
590,
17905,
267,
526,
1286,
577,
269,
487,
393,
306,
508,
871,
5251,
1023,
11909,
30003,
12587,
457,
322,
544,
650,
29889,
13,
13,
1068,
3421,
5716,
411,
263,
1776,
29901,
3579,
4591,
278,
6592,
8345,
472,
501,
655,
1459,
29877,
313,
27215,
511,
607,
338,
763,
596,
13568,
8995,
11801,
4242,
301,
17979,
541,
411,
21863,
292,
330,
5621,
23429,
29889,
313,
29902,
6398,
306,
750,
777,
1492,
1286,
541,
626,
9368,
304,
2533,
3712,
278,
9324,
304,
7845,
701,
1846,
2823,
278,
20287,
292,
27402,
13449,
925,
5377,
29973,
2193,
30010,
29879,
697,
310,
278,
269,
5861,
306,
30010,
645,
3052,
1556,
1048,
20303,
329,
273,
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
] |
Pick Your Apples at Arbor Day Farm During the AppleJack Festival
Nebraska City, Neb. (Sept. 9, 2008) – There’s no better way to get into the spirit of the AppleJack Festival than by picking apples at Arbor Day Farm.
There will be plenty of pick-your-own apples available at Arbor Day Farm and Kimmel Orchard & Vineyard during the AppleJack Festival, which will be held throughout Nebraska City on Sept. 20-21. Events at Arbor Day Farm are open from 9 a.m. until 7 p.m. each day.
Arbor Day Farm is located at 2611 Arbor Avenue in Nebraska City.
“This appears to be our best apple crop in more than 10 years, and picking apples is a wonderful way for families to spend time together and enjoy the outdoors,” said Erik Olson, orchard manager at Arbor Day Farm. “Families can experience nature first-hand by walking through the orchards and selecting apples right off the tree, and they can go home and enjoy the delicious fruit they harvested.”
Visitors can also enjoy the new Discovery Ride at Arbor Day Farm’s Tree Adventure attraction. The Discovery Ride gives riders a front row seat during a one-hour journey through woodland trails across the historic 260-acre Arbor Day Farm. Guests ride under a giant red oak leaf canopy as they learn about nature while being transported through apple orchards and vineyards and encounter wildlife in its natural habitat.
While at the Tree Adventure attraction, children, parents and grandparents can explore two Nature Explore Classrooms, walk the Exploratory Trails and climb 50 feet high in the Canopy Tree House.
The area’s largest craft show featuring nature-inspired handcrafted items will be held at the Historic Barns from 10 a.m. until 5 p.m. each day during the AppleJack Festival.
Special AppleJack Festival activities include expert wine, food and nature demonstrations at the new Tent Events; live traditional folk music; tree climbing and cross-cut sawing exhibitions; nature activities for children in the two Nature Explore Classrooms; face painting; a tree sale at the Lied Greenhouse; and a bird exhibit by the National Pigeon Association.
The AppleJack Festival kicks off a special fall season at Arbor Day Farm. Special events include the pick-your-own apple harvest through October, a pick-your-own pumpkin patch beginning in late September, and Discover Fall Day Tours.
More information on Arbor Day Farm and the AppleJack Festival is available by calling (402) 873-8717 or by visiting www.arbordayfarm.org.
###
About the Arbor Day Foundation: The Arbor Day Foundation is a nonprofit conservation organization of nearly one million members, with a mission to inspire people to plant, nurture, and celebrate trees. More information on the Foundation and its programs can be found at arborday.org. | [
1,
23868,
3575,
2401,
793,
472,
826,
4089,
8373,
23354,
7133,
278,
12113,
27006,
8518,
13,
13,
29940,
774,
29878,
16191,
4412,
29892,
19288,
29889,
313,
2008,
415,
29889,
29871,
29929,
29892,
29871,
29906,
29900,
29900,
29947,
29897,
785,
1670,
30010,
29879,
694,
2253,
982,
304,
679,
964,
278,
8548,
310,
278,
12113,
27006,
8518,
1135,
491,
5839,
292,
623,
793,
472,
826,
4089,
8373,
23354,
29889,
13,
13,
8439,
674,
367,
20947,
310,
5839,
29899,
8066,
29899,
776,
623,
793,
3625,
472,
826,
4089,
8373,
23354,
322,
476,
6727,
295,
1394,
305,
538,
669,
478,
457,
19852,
2645,
278,
12113,
27006,
8518,
29892,
607,
674,
367,
4934,
10106,
19288,
29878,
16191,
4412,
373,
28742,
29889,
29871,
29906,
29900,
29899,
29906,
29896,
29889,
28488,
472,
826,
4089,
8373,
23354,
526,
1722,
515,
29871,
29929,
263,
29889,
29885,
29889,
2745,
29871,
29955,
282,
29889,
29885,
29889,
1269,
2462,
29889,
13,
13,
1433,
4089,
8373,
23354,
338,
5982,
472,
29871,
29906,
29953,
29896,
29896,
826,
4089,
18874,
297,
19288,
29878,
16191,
4412,
29889,
13,
13,
30015,
4013,
5692,
304,
367,
1749,
1900,
26163,
274,
1336,
297,
901,
1135,
29871,
29896,
29900,
2440,
29892,
322,
5839,
292,
623,
793,
338,
263,
20695,
982,
363,
13175,
304,
18864,
931,
4208,
322,
13389,
278,
714,
1867,
943,
3995,
1497,
23599,
7137,
1100,
29892,
22624,
538,
8455,
472,
826,
4089,
8373,
23354,
29889,
1346,
22555,
583,
508,
7271,
5469,
937,
29899,
3179,
491,
22049,
1549,
278,
22624,
3163,
322,
18851,
623,
793,
1492,
1283,
278,
5447,
29892,
322,
896,
508,
748,
3271,
322,
13389,
278,
628,
14803,
15774,
896,
4023,
29894,
2868,
3178,
13,
13,
6116,
17259,
508,
884,
13389,
278,
716,
8565,
22205,
390,
680,
472,
826,
4089,
8373,
23354,
30010,
29879,
15472,
21255,
545,
1098,
13857,
29889,
450,
8565,
22205,
390,
680,
4076,
8177,
414,
263,
4565,
1948,
12949,
2645,
263,
697,
29899,
18721,
16342,
1549,
8112,
1049,
1020,
2719,
4822,
278,
22879,
29871,
29906,
29953,
29900,
29899,
21160,
826,
4089,
8373,
23354,
29889,
2088,
9197,
22203,
1090,
263,
28396,
2654,
288,
557,
20447,
508,
2270,
408,
896,
5110,
1048,
5469,
1550,
1641,
8608,
287,
1549,
26163,
22624,
3163,
322,
325,
457,
29891,
3163,
322,
11735,
8775,
19264,
297,
967,
5613,
17570,
29889,
13,
13,
8809,
488,
472,
278,
15472,
21255,
545,
1098,
13857,
29892,
4344,
29892,
11825,
322,
4595,
862,
1237,
508,
26987,
1023,
17677,
1222,
572,
487,
4134,
18901,
29892,
6686,
278,
1222,
572,
272,
7606,
3201,
2719,
322,
10784,
29890,
29871,
29945,
29900,
6900,
1880,
297,
278,
1815,
2270,
15472,
5619,
29889,
13,
13,
1576,
4038,
30010,
29879,
10150,
25554,
1510,
23425,
5469,
29899,
262,
1028,
2859,
1361,
17293,
287,
4452,
674,
367,
4934,
472,
278,
17939,
2261,
1983,
515,
29871,
29896,
29900,
263,
29889,
29885,
29889,
2745,
29871,
29945,
282,
29889,
29885,
29889,
1269,
2462,
2645,
278,
12113,
27006,
8518,
29889,
13,
13,
24780,
12113,
27006,
8518,
14188,
3160,
17924,
19006,
29892,
9687,
322,
5469,
9004,
800,
472,
278,
716,
323,
296,
28488,
29936,
5735,
13807,
19589,
4696,
29936,
5447,
10784,
10549,
322,
4891,
29899,
7582,
4446,
292,
10371,
2187,
29936,
5469,
14188,
363,
4344,
297,
278,
1023,
17677,
1222,
572,
487,
4134,
18901,
29936,
3700,
20413,
29936,
263,
5447,
14686,
472,
278,
29382,
7646,
8697,
29936,
322,
263,
11199,
10371,
277,
491,
278,
3086,
349,
2231,
265,
7993,
29889,
13,
13,
1576,
12113,
27006,
8518,
413,
7358,
1283,
263,
4266,
6416,
4259,
472,
826,
4089,
8373,
23354,
29889,
12630,
4959,
3160,
278,
5839,
29899,
8066,
29899,
776,
26163,
4023,
10147,
1549,
5533,
29892,
263,
5839,
29899,
8066,
29899,
776,
282,
3427,
9089,
13261,
6763,
297,
5683,
3839,
29892,
322,
8565,
957,
14053,
8373,
323,
2470,
29889,
13,
13,
20761,
2472,
373,
826,
4089,
8373,
23354,
322,
278,
12113,
27006,
8518,
338,
3625,
491,
5432,
313,
29946,
29900,
29906,
29897,
29871,
29947,
29955,
29941,
29899,
29947,
29955,
29896,
29955,
470,
491,
6493,
292,
7821,
29889,
279,
29890,
536,
388,
29888,
2817,
29889,
990,
29889,
13,
13,
2277,
29937,
13,
13,
28173,
278,
826,
4089,
8373,
10606,
29901,
450,
826,
4089,
8373,
10606,
338,
263,
1661,
771,
9202,
24201,
13013,
310,
8886,
697,
7284,
5144,
29892,
411,
263,
10655,
304,
8681,
533,
2305,
304,
8024,
29892,
302,
4227,
545,
29892,
322,
10894,
403,
10697,
29889,
5853,
2472,
373,
278,
10606,
322,
967,
11104,
508,
367,
1476,
472,
564,
29890,
536,
388,
29889,
990,
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
] |
Chicago
Mordecai
A Jewish hero in the story of Esther, which illustrates the reversal of fortunes. His execution for lack of respect to Haman, favourite in the court of the Persian king Ahazuerus, was authorized by the king, along with extermination of Jews throughout the empire. Mordecai was to be hanged; gallows were
erected. But the Jewish queen Esther intervened; records existed to show the king that Mordecai had once saved him from an
intended assassination (Esther 2: 22). Thus informed, the king revoked the execution order served on Mordecai and instead Haman was hanged on the same gallows. Although fictitious, it is possible that the story may be based on some historical incident.
It is celebrated by the minor Jewish feast of Purim. | [
1,
10059,
13,
13,
29924,
24568,
1113,
29875,
13,
13,
29909,
16728,
13444,
297,
278,
5828,
310,
2661,
2276,
29892,
607,
8632,
1078,
278,
18764,
284,
310,
5162,
7844,
29889,
3600,
8225,
363,
10225,
310,
3390,
304,
7904,
273,
29892,
15381,
568,
297,
278,
8973,
310,
278,
9034,
713,
6989,
9070,
834,
2853,
375,
29892,
471,
4148,
1891,
491,
278,
6989,
29892,
3412,
411,
429,
18821,
362,
310,
22057,
10106,
278,
3710,
533,
29889,
3879,
311,
1113,
29875,
471,
304,
367,
298,
4618,
29936,
11798,
1242,
892,
13,
406,
2954,
29889,
1205,
278,
16728,
26624,
2661,
2276,
26314,
287,
29936,
6475,
22856,
304,
1510,
278,
6989,
393,
3879,
311,
1113,
29875,
750,
2748,
7160,
1075,
515,
385,
13,
524,
2760,
20105,
3381,
313,
12787,
2276,
29871,
29906,
29901,
29871,
29906,
29906,
467,
6549,
23388,
29892,
278,
6989,
6664,
12504,
278,
8225,
1797,
6766,
373,
3879,
311,
1113,
29875,
322,
2012,
7904,
273,
471,
298,
4618,
373,
278,
1021,
11798,
1242,
29889,
8512,
26797,
277,
2738,
29892,
372,
338,
1950,
393,
278,
5828,
1122,
367,
2729,
373,
777,
15839,
15134,
29889,
13,
3112,
338,
26301,
491,
278,
9461,
16728,
1238,
579,
310,
15247,
326,
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
] |
Tesla, GM and Nissan are all part of a new coalition aiming to extend the EV tax credit
Tesla, GM and Nissan are among a group of 15 companies that launched a new coalition aimed at reforming the electric vehicle tax credit.
The group, called EV Drive Coalition, brings together a mix of automakers, industry giant ABB, climate change and energy lobbying organizations and EV infrastructure companies, including ChargePoint.
The coalition, which officially launched Tuesday, wants to pass legislation that would tweak the federal electric vehicle tax credit to “ensure that it works better for more consumers for a longer time frame and spurs increased growth of the U.S. EV market.”
The federal electric vehicle tax credit gives consumers a $7,500 credit when they buy an all-electric vehicle. The incentive has been credited with spurring adoption of EVs. However, once an automaker has sold 200,000 electric vehicles, the credit begins to wind down.
Tesla is already in this position and GM is closing in. Earlier this year, the electric automaker delivered its 200,000th electric vehicle. The achievement activated a countdown for the $7,500 federal tax credit offered to consumers who buy new electric vehicles. Under these rules, Tesla customers must take delivery of their new Model S, Model X or Model 3 by December 31 to get the full credit.
Tesla vehicles delivered between January 1 and June 30, 2019, will get a reduced $3,750 federal tax credit. After that, the credit drops to $1,875 before ending altogether. As of October, GM has sold nearly 197,000 electric vehicles.
The EV Drive Coalition wants to lift the current cap on the number of consumers who can take advantage of the credit through each manufacturer.
“Arbitrary constraints with the federal credit limit consumer options and make it harder for consumers to purchase the cars they want,” Joel Levin, executive director of Plug In America said in a statement. “Lifting the cap would create a more level playing field for all manufacturers, giving consumers the freedom to decide which car they want in a free and fair market. Increased competition spurs more American innovation and technology.”
The coalition says it supports the eventual phase-out of the credit once the EV industry has had additional time to mature and grow. | [
1,
323,
267,
433,
29892,
402,
29924,
322,
405,
790,
273,
526,
599,
760,
310,
263,
716,
17148,
654,
12242,
292,
304,
10985,
278,
382,
29963,
8818,
16200,
13,
13,
29911,
267,
433,
29892,
402,
29924,
322,
405,
790,
273,
526,
4249,
263,
2318,
310,
29871,
29896,
29945,
14582,
393,
15241,
263,
716,
17148,
654,
12242,
287,
472,
11736,
292,
278,
12646,
19716,
8818,
16200,
29889,
13,
13,
1576,
2318,
29892,
2000,
382,
29963,
22850,
3189,
284,
654,
29892,
23522,
4208,
263,
6837,
310,
3345,
21079,
29892,
13661,
28396,
319,
14388,
29892,
23622,
1735,
322,
5864,
658,
1327,
5414,
25700,
322,
382,
29963,
22035,
12425,
14582,
29892,
3704,
2896,
479,
5228,
29889,
13,
13,
1576,
17148,
654,
29892,
607,
22444,
15241,
323,
1041,
3250,
29892,
10753,
304,
1209,
13332,
362,
393,
723,
7780,
557,
278,
17097,
12646,
19716,
8818,
16200,
304,
1346,
7469,
393,
372,
1736,
2253,
363,
901,
11233,
414,
363,
263,
5520,
931,
3515,
322,
805,
1295,
11664,
14321,
310,
278,
501,
29889,
29903,
29889,
382,
29963,
9999,
3178,
13,
13,
1576,
17097,
12646,
19716,
8818,
16200,
4076,
11233,
414,
263,
395,
29955,
29892,
29945,
29900,
29900,
16200,
746,
896,
15649,
385,
599,
29899,
15436,
2200,
19716,
29889,
450,
297,
1760,
573,
756,
1063,
6625,
1573,
411,
805,
1038,
292,
594,
3385,
310,
382,
29963,
29879,
29889,
2398,
29892,
2748,
385,
3345,
5790,
756,
5239,
29871,
29906,
29900,
29900,
29892,
29900,
29900,
29900,
12646,
24413,
29892,
278,
16200,
16410,
304,
8805,
1623,
29889,
13,
13,
29911,
267,
433,
338,
2307,
297,
445,
2602,
322,
402,
29924,
338,
14382,
297,
29889,
5290,
4926,
445,
1629,
29892,
278,
12646,
3345,
5790,
20115,
967,
29871,
29906,
29900,
29900,
29892,
29900,
29900,
29900,
386,
12646,
19716,
29889,
450,
27012,
882,
5039,
630,
263,
2302,
3204,
363,
278,
395,
29955,
29892,
29945,
29900,
29900,
17097,
8818,
16200,
12520,
304,
11233,
414,
1058,
15649,
716,
12646,
24413,
29889,
7634,
1438,
6865,
29892,
323,
267,
433,
20330,
1818,
2125,
28289,
310,
1009,
716,
8125,
317,
29892,
8125,
1060,
470,
8125,
29871,
29941,
491,
5846,
29871,
29941,
29896,
304,
679,
278,
2989,
16200,
29889,
13,
13,
29911,
267,
433,
24413,
20115,
1546,
5490,
29871,
29896,
322,
5306,
29871,
29941,
29900,
29892,
29871,
29906,
29900,
29896,
29929,
29892,
674,
679,
263,
12212,
395,
29941,
29892,
29955,
29945,
29900,
17097,
8818,
16200,
29889,
2860,
393,
29892,
278,
16200,
4441,
567,
304,
395,
29896,
29892,
29947,
29955,
29945,
1434,
17140,
19148,
29889,
1094,
310,
5533,
29892,
402,
29924,
756,
5239,
8886,
29871,
29896,
29929,
29955,
29892,
29900,
29900,
29900,
12646,
24413,
29889,
13,
13,
1576,
382,
29963,
22850,
3189,
284,
654,
10753,
304,
13777,
278,
1857,
2117,
373,
278,
1353,
310,
11233,
414,
1058,
508,
2125,
10631,
310,
278,
16200,
1549,
1269,
12012,
9945,
29889,
13,
13,
30015,
1433,
8844,
653,
11938,
411,
278,
17097,
16200,
4046,
21691,
3987,
322,
1207,
372,
22622,
363,
11233,
414,
304,
20590,
278,
18647,
896,
864,
3995,
3650,
295,
951,
3845,
29892,
22760,
8881,
310,
1858,
688,
512,
6813,
1497,
297,
263,
3229,
29889,
1346,
29931,
24377,
278,
2117,
723,
1653,
263,
901,
3233,
8743,
1746,
363,
599,
12012,
332,
414,
29892,
6820,
11233,
414,
278,
16082,
304,
11097,
607,
1559,
896,
864,
297,
263,
3889,
322,
6534,
9999,
29889,
512,
1037,
1463,
13888,
805,
1295,
901,
3082,
24233,
362,
322,
15483,
3178,
13,
13,
1576,
17148,
654,
4083,
372,
11286,
278,
1741,
950,
8576,
29899,
449,
310,
278,
16200,
2748,
278,
382,
29963,
13661,
756,
750,
5684,
931,
304,
286,
1535,
322,
6548,
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
] |
Learn More About Women's Winter Coats & Jackets
Bundle Up in Women's Winter Coats
Enjoy your next outdoor adventure in the right women's winter jackets.
From rain coats to versatile fleece jackets and the luxe warmth of a down coat, find outerwear that fits both your style and your adventure. Take on the slopes in women's ski jackets or layer with soft-shells, puffy vests and more.
Choose from a variety of materials, colors and constructions for the women's coat that's right for you:
Keep in mind factors including weather condition, your activity and level of comfort when selecting the best women's winter coat for you:
Soft shell jackets provide lightweight comfort and warmth and are generally waterproof and wind resistant. These winter jackets function as an ideal outer layer over a sweater, baselayer or fleece jacket when temperatures become harsh
Fleece jackets for women are versatile in a variety of weather conditions. Wear a fleece alone when it's mild or pair it with a soft shell for customizable warmth
Insulated jackets provide superior levels of warmth in bitter temperatures. Insulated jackets are soft shells lined with layers of insulation, including down. These jackets are generally waterproof, seam-sealed, and constructed with a variety of natural and synthetic materials. Down jackets, for example, are filled with the fluffy undercoating of ducks or geese
Three-in-one system jackets include multiple layers and components that can be zipped together to form a single jacket. These pieces can be worn together or separately in more mild temperatures
Always choose women's winter coats designed with a seam-sealed, waterproof and wind-resistant construction.
To select the right rain jacket, ensure the garment will remain breathable to prevent overheating during wear. Rain jackets should allow moisture to escape so you stay comfortable in wet conditions. When it's both cold and wet outside, a soft shell jacket over a fleece jacket makes for an excellent layering system.
When purchasing a down jacket, keep in mind that the efficiency of the jacket is measured in its “fill power,” or the amount of space in the garment taken up by one ounce of down. | [
1,
19530,
29876,
5853,
13611,
10152,
29915,
29879,
12267,
3189,
1446,
669,
5457,
1691,
13,
13,
9534,
5020,
297,
10152,
29915,
29879,
12267,
3189,
1446,
13,
13,
2369,
2212,
29891,
596,
2446,
714,
17433,
17623,
545,
297,
278,
1492,
5866,
29915,
29879,
13851,
28015,
1691,
29889,
13,
13,
4591,
17251,
1302,
1446,
304,
1224,
24285,
9115,
29872,
346,
28015,
1691,
322,
278,
21684,
29872,
14294,
386,
310,
263,
1623,
24296,
29892,
1284,
11420,
705,
279,
393,
23994,
1716,
596,
3114,
322,
596,
17623,
545,
29889,
11190,
373,
278,
269,
4757,
267,
297,
5866,
29915,
29879,
14993,
28015,
1691,
470,
7546,
411,
4964,
29899,
845,
10071,
29892,
2653,
600,
29891,
325,
9197,
322,
901,
29889,
13,
13,
15954,
852,
515,
263,
12875,
310,
17279,
29892,
11955,
322,
6787,
1953,
363,
278,
5866,
29915,
29879,
24296,
393,
29915,
29879,
1492,
363,
366,
29901,
13,
13,
9598,
1022,
297,
3458,
13879,
3704,
14826,
4195,
29892,
596,
6354,
322,
3233,
310,
13016,
746,
18851,
278,
1900,
5866,
29915,
29879,
13851,
24296,
363,
366,
29901,
13,
13,
6295,
615,
6473,
28015,
1691,
3867,
3578,
7915,
13016,
322,
14294,
386,
322,
526,
6892,
4094,
8017,
322,
8805,
9241,
424,
29889,
4525,
13851,
28015,
1691,
740,
408,
385,
10839,
11420,
7546,
975,
263,
7901,
1008,
29892,
2362,
295,
2747,
470,
9115,
29872,
346,
28015,
300,
746,
6238,
3698,
4953,
4023,
845,
13,
13,
29943,
17179,
346,
28015,
1691,
363,
5866,
526,
1224,
24285,
297,
263,
12875,
310,
14826,
5855,
29889,
399,
799,
263,
9115,
29872,
346,
7432,
746,
372,
29915,
29879,
286,
789,
470,
5101,
372,
411,
263,
4964,
6473,
363,
2888,
13902,
14294,
386,
13,
13,
797,
29879,
7964,
28015,
1691,
3867,
11558,
11174,
310,
14294,
386,
297,
22773,
6238,
3698,
29889,
13377,
7964,
28015,
1691,
526,
4964,
6473,
29879,
301,
1312,
411,
15359,
310,
1663,
2785,
29892,
3704,
1623,
29889,
4525,
28015,
1691,
526,
6892,
4094,
8017,
29892,
409,
314,
29899,
344,
7943,
29892,
322,
13319,
411,
263,
12875,
310,
5613,
322,
14710,
7492,
17279,
29889,
9943,
28015,
1691,
29892,
363,
1342,
29892,
526,
10423,
411,
278,
1652,
3096,
29891,
1090,
1111,
1218,
310,
868,
4684,
470,
1737,
968,
13,
13,
28575,
29899,
262,
29899,
650,
1788,
28015,
1691,
3160,
2999,
15359,
322,
7117,
393,
508,
367,
503,
16242,
4208,
304,
883,
263,
2323,
28015,
300,
29889,
4525,
12785,
508,
367,
28043,
4208,
470,
16949,
297,
901,
286,
789,
6238,
3698,
13,
13,
2499,
1994,
6755,
5866,
29915,
29879,
13851,
1302,
1446,
8688,
411,
263,
409,
314,
29899,
344,
7943,
29892,
4094,
8017,
322,
8805,
29899,
690,
22137,
7632,
29889,
13,
13,
1762,
1831,
278,
1492,
17251,
28015,
300,
29892,
9801,
278,
7171,
358,
674,
3933,
16172,
519,
304,
5557,
975,
354,
1218,
2645,
19531,
29889,
21431,
28015,
1691,
881,
2758,
2730,
391,
545,
304,
10169,
577,
366,
7952,
25561,
297,
7990,
5855,
29889,
1932,
372,
29915,
29879,
1716,
11220,
322,
7990,
5377,
29892,
263,
4964,
6473,
28015,
300,
975,
263,
9115,
29872,
346,
28015,
300,
3732,
363,
385,
15129,
7546,
292,
1788,
29889,
13,
13,
10401,
10596,
5832,
263,
1623,
28015,
300,
29892,
3013,
297,
3458,
393,
278,
19201,
310,
278,
28015,
300,
338,
17005,
297,
967,
1346,
5589,
3081,
3995,
470,
278,
5253,
310,
2913,
297,
278,
7171,
358,
4586,
701,
491,
697,
29871,
21543,
310,
1623,
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
] |
Writer, poet, and editor of New Orleans. She was active in various local and national literary groups, and had works published in a varriety of journals. Ms. Shay also edited several local magazines including The Nutshell, Mardi Gras Parade, The Beacon, and Pen Patter. She founded Poetry Day in Louisiana and worked for the establishment of Louisiana Cookery Week.
The papers comprise .5 linear feet of correspondence, articles, and a collection of "Little Magazines." The correspondence (including some photocopies) deal with the origins of Poetry Day and Louisiana Cookery Week. The articles include items both by and about Ms. Shay. The "Little Magazines" were collected from around the country, and include several that were edited by Ms. Shay. | [
1,
399,
5385,
29892,
9821,
29892,
322,
6920,
310,
1570,
26884,
29889,
2296,
471,
6136,
297,
5164,
1887,
322,
4797,
22937,
6471,
29892,
322,
750,
1736,
6369,
297,
263,
722,
374,
3305,
310,
21824,
1338,
29889,
341,
29879,
29889,
1383,
388,
884,
8788,
3196,
1887,
2320,
834,
1475,
3704,
450,
405,
329,
15903,
29892,
341,
18015,
1632,
294,
1459,
1943,
29892,
450,
1522,
23074,
29892,
322,
7363,
349,
2620,
29889,
2296,
11091,
3929,
27184,
8373,
297,
28838,
322,
3796,
363,
278,
25012,
310,
28838,
17278,
708,
15511,
29889,
13,
13,
1576,
15055,
7199,
895,
869,
29945,
5608,
6900,
310,
3928,
663,
29892,
7456,
29892,
322,
263,
4333,
310,
376,
29931,
1992,
3561,
834,
1475,
1213,
450,
3928,
663,
313,
18271,
777,
6731,
542,
459,
583,
29897,
5376,
411,
278,
1677,
1144,
310,
3929,
27184,
8373,
322,
28838,
17278,
708,
15511,
29889,
450,
7456,
3160,
4452,
1716,
491,
322,
1048,
341,
29879,
29889,
1383,
388,
29889,
450,
376,
29931,
1992,
3561,
834,
1475,
29908,
892,
16531,
515,
2820,
278,
4234,
29892,
322,
3160,
3196,
393,
892,
8788,
491,
341,
29879,
29889,
1383,
388,
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
] |
How much thought do you give to pavement? Our cities are covered with it, but it’s not exactly a hot topic of conversation—though it should be. Pavement causes all sorts of problems including the fact that water can’t soak through it and instead runs across it, collecting pollutants and biological contaminants that make their way into waterways, plants, animals, and ourselves.
By Adiel Gavish "What the industrial age has done is take life away from the planet and turn it into goods and services," Paul Hawken stated at the 2014 VERGE Conference in San Francisco this past December. The annual event put on by Joel Makower, a former Biomimicry 3.8 Board Member and GreenBiz.com brings corporations…
“The unhappy city contains a happy city unaware of its own existence,” wrote Italo Calvino in his masterpiece Invisible Cities. Beyond designing the Ecole Normale Supérieure Cachan in Paris and the Columbia University Campus Plan in New York City, architect Renzo Piano has spent last year looking for fragments of happy cities around Italian suburbs with a team of six young architects.
The 77-year-old architect named "Senator for life" by the President of Italy decided to invest his funds as politician to develop a plan to rescue the suburban areas of major italian cities with a group of young architects.
From Phyllis Omido, who battled to close a plant in a Kenyan slum that was poisoning its inhabitants and her baby, to Berta Cáceres, who campaigning against the construction of the Agua Zarca dams, these are winners of this year’s ‘Green Nobels’, which will be awarded in Washington
One of the few female figureheads in the US green movement, 350.org’s executive director has risen with the organisation to become a leading voice for the global divestment movement. She looks back to the early campaigns and reveals what winning the campaign would look like
For decades the leading nature writer has been collecting unusual words for landscapes and natural phenomena – from aquabob to zawn. It’s a lexicon we need to cherish in an age when a junior dictionary finds room for ‘broadband’ but has no place for ‘bluebell’
Anne Caspari's insight:
fantastic. ...... "Other terms were striking for their visual poetry: rionnach maoim means “the shadows cast on the moorland by clouds moving across the sky on a bright and windy day”; èit refers to “the practice of placing quartz stones in streams so that they sparkle in moonlight and thereby attract salmon to them in the late summer and autumn”, and teine biorach is “the flame or will-o’-the-wisp that runs on top of heather when the moor burns during the summer”
Sharing your scoops to your social media accounts is a must to distribute your curated content. Not only will it drive traffic and leads through your content, but it will help show your expertise with your followers.
Integrating your curated content to your website or blog will allow you to increase your website visitors’ engagement, boost SEO and acquire new visitors. By redirecting your social media traffic to your website, Scoop.it will also help you generate more qualified traffic and leads from your curation work.
Distributing your curated content through a newsletter is a great way to nurture and engage your email subscribers will developing your traffic and visibility.
Creating engaging newsletters with your curated content is really easy. | [
1,
1128,
1568,
2714,
437,
366,
2367,
304,
23952,
882,
29973,
8680,
14368,
526,
10664,
411,
372,
29892,
541,
372,
30010,
29879,
451,
3721,
263,
7375,
11261,
310,
14983,
30003,
3592,
372,
881,
367,
29889,
20096,
882,
9946,
599,
23551,
310,
4828,
3704,
278,
2114,
393,
4094,
508,
30010,
29873,
577,
557,
1549,
372,
322,
2012,
6057,
4822,
372,
29892,
6314,
292,
21180,
329,
1934,
322,
4768,
5996,
640,
9103,
1934,
393,
1207,
1009,
982,
964,
4094,
1994,
29892,
18577,
29892,
15006,
29892,
322,
20278,
29889,
13,
13,
2059,
2087,
709,
402,
485,
728,
376,
5618,
278,
18408,
5046,
756,
2309,
338,
2125,
2834,
3448,
515,
278,
15754,
322,
2507,
372,
964,
22535,
322,
5786,
1699,
3739,
10875,
1717,
8703,
472,
278,
29871,
29906,
29900,
29896,
29946,
478,
1001,
1692,
16377,
297,
3087,
8970,
445,
4940,
5846,
29889,
450,
17568,
1741,
1925,
373,
491,
3650,
295,
17232,
1680,
29892,
263,
4642,
3457,
290,
326,
293,
719,
29871,
29941,
29889,
29947,
12590,
19495,
322,
7646,
29933,
466,
29889,
510,
23522,
17266,
800,
30098,
13,
13,
30015,
1576,
28859,
14862,
4272,
3743,
263,
9796,
4272,
1185,
2519,
310,
967,
1914,
10379,
3995,
5456,
4041,
29877,
3037,
29894,
1789,
297,
670,
5835,
12343,
346,
512,
12872,
315,
1907,
29889,
18502,
898,
2874,
292,
278,
382,
10936,
5655,
744,
13786,
22673,
315,
496,
273,
297,
3681,
322,
278,
15411,
3014,
7259,
375,
8402,
297,
1570,
3088,
4412,
29892,
6956,
7493,
2502,
349,
3328,
756,
10398,
1833,
1629,
3063,
363,
22370,
310,
9796,
14368,
2820,
10545,
1014,
332,
5824,
411,
263,
3815,
310,
4832,
4123,
6956,
29879,
29889,
13,
13,
1576,
29871,
29955,
29955,
29899,
6360,
29899,
1025,
6956,
4257,
376,
29903,
264,
1061,
363,
2834,
29908,
491,
278,
7178,
310,
12730,
8459,
304,
13258,
670,
29199,
408,
14099,
304,
2693,
263,
3814,
304,
26429,
278,
1014,
25006,
10161,
310,
4655,
4698,
713,
14368,
411,
263,
2318,
310,
4123,
6956,
29879,
29889,
13,
13,
4591,
1963,
15114,
275,
13352,
1941,
29892,
1058,
8957,
839,
304,
3802,
263,
8024,
297,
263,
10015,
10094,
2243,
398,
393,
471,
27908,
292,
967,
19681,
322,
902,
24354,
29892,
304,
16662,
29874,
315,
29976,
2265,
267,
29892,
1058,
11531,
292,
2750,
278,
7632,
310,
278,
24106,
29874,
22453,
1113,
270,
2232,
29892,
1438,
526,
281,
16697,
310,
445,
1629,
30010,
29879,
5129,
24599,
15706,
1379,
30010,
29892,
607,
674,
367,
15074,
297,
7660,
13,
13,
6716,
310,
278,
2846,
12944,
4377,
2813,
29879,
297,
278,
3148,
7933,
10298,
29892,
29871,
29941,
29945,
29900,
29889,
990,
30010,
29879,
22760,
8881,
756,
5161,
264,
411,
278,
24788,
304,
4953,
263,
8236,
7314,
363,
278,
5534,
1933,
342,
358,
10298,
29889,
2296,
3430,
1250,
304,
278,
4688,
11531,
29879,
322,
10320,
1338,
825,
15613,
278,
11531,
723,
1106,
763,
13,
13,
2831,
1602,
3076,
278,
8236,
5469,
9227,
756,
1063,
6314,
292,
22910,
3838,
363,
2982,
1557,
11603,
322,
5613,
17292,
28342,
785,
515,
10592,
370,
711,
304,
4022,
1233,
29889,
739,
30010,
29879,
263,
19566,
4144,
591,
817,
304,
14954,
728,
297,
385,
5046,
746,
263,
20183,
8600,
14061,
5716,
363,
5129,
6729,
328,
4980,
30010,
541,
756,
694,
2058,
363,
5129,
9539,
12562,
30010,
13,
13,
2744,
484,
6960,
862,
29875,
29915,
29879,
25483,
29901,
13,
13,
29888,
424,
6288,
29889,
13035,
636,
376,
16107,
4958,
892,
29191,
363,
1009,
7604,
22309,
29901,
364,
291,
29683,
611,
29877,
326,
2794,
1346,
1552,
528,
23626,
4320,
373,
278,
2730,
272,
1049,
491,
27091,
8401,
4822,
278,
14744,
373,
263,
11785,
322,
8805,
29891,
2462,
30024,
29936,
2077,
277,
14637,
304,
1346,
1552,
6944,
310,
24421,
10256,
29920,
25702,
297,
20873,
577,
393,
896,
16267,
280,
297,
18786,
4366,
322,
27999,
13978,
4497,
3712,
304,
963,
297,
278,
5683,
11801,
322,
1120,
1227,
9363,
322,
734,
457,
289,
1611,
496,
338,
1346,
1552,
1652,
420,
470,
674,
29899,
29877,
30010,
29899,
1552,
29899,
29893,
11936,
393,
6057,
373,
2246,
310,
540,
1624,
746,
278,
2730,
272,
12138,
29879,
2645,
278,
11801,
30024,
13,
13,
2713,
4362,
596,
885,
29877,
3554,
304,
596,
5264,
5745,
15303,
338,
263,
1818,
304,
1320,
2666,
596,
3151,
630,
2793,
29889,
2216,
871,
674,
372,
7899,
12469,
322,
11981,
1549,
596,
2793,
29892,
541,
372,
674,
1371,
1510,
596,
17924,
895,
411,
596,
1101,
414,
29889,
13,
13,
23573,
1218,
596,
3151,
630,
2793,
304,
596,
4700,
470,
12618,
674,
2758,
366,
304,
7910,
596,
4700,
26824,
30010,
3033,
5049,
29892,
14505,
3725,
29949,
322,
1274,
1548,
716,
26824,
29889,
2648,
6684,
292,
596,
5264,
5745,
12469,
304,
596,
4700,
29892,
317,
1111,
459,
29889,
277,
674,
884,
1371,
366,
5706,
901,
18698,
12469,
322,
11981,
515,
596,
274,
2633,
664,
29889,
13,
13,
13398,
1091,
17068,
596,
3151,
630,
2793,
1549,
263,
9763,
15670,
338,
263,
2107,
982,
304,
302,
4227,
545,
322,
3033,
482,
596,
4876,
21696,
2596,
674,
14338,
596,
12469,
322,
26401,
29889,
13,
9832,
1218,
3033,
6751,
9763,
1026,
2153,
411,
596,
3151,
630,
2793,
338,
2289,
4780,
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
] |
Q:
Android: onClick causing me to go back an Activity
I am trying to build a dynamic UI, but when I add the onClick method to the button whenever I push the button I go back to my previous activity. Any ideas on how to fix it?
my button's code: (the addMenu method is never run in the activities class)
<Button
android:text="New Menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/newButton"
android:layout_weight="1"
android:onClick="addMenu"/>
here is my addmenu code although no matter what goes in here(even if nothing at all) it still won't work
public void addMenu()
{
LinearLayout layout = (LinearLayout) findViewById(R.id.backLayer);
Button newButton = new Button(this);
newButton.setText("menu "+menu);
layout.addView(newButton);
menu++;
}
A:
whenever I push the button I go back to my previous activity.
Sounds like your app is crashing and restarting... read the logcat, and you'd see something along the lines that your method signature is wrong.
android:onClick="addMenu" needs a method of public void addMenu(View v).
Or just use Java to set the button listener and remove android:onClick.
findViewById(R.id.newButton).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
addMenu();
}
}
| [
1,
660,
29901,
13,
13,
8136,
29901,
14478,
10805,
592,
304,
748,
1250,
385,
13414,
13,
13,
29902,
626,
1811,
304,
2048,
263,
7343,
3740,
29892,
541,
746,
306,
788,
278,
14478,
1158,
304,
278,
2826,
10940,
306,
5503,
278,
2826,
306,
748,
1250,
304,
590,
3517,
6354,
29889,
3139,
7014,
373,
920,
304,
2329,
372,
29973,
29871,
13,
1357,
2826,
29915,
29879,
775,
29901,
313,
1552,
788,
6823,
1158,
338,
2360,
1065,
297,
278,
14188,
770,
29897,
13,
29966,
3125,
13,
1678,
1442,
29901,
726,
543,
4373,
20019,
29908,
13,
1678,
1442,
29901,
2680,
29918,
2103,
543,
6312,
29918,
3051,
29908,
13,
1678,
1442,
29901,
2680,
29918,
3545,
543,
6312,
29918,
3051,
29908,
13,
1678,
1442,
29901,
333,
9438,
333,
29914,
1482,
3125,
29908,
13,
1678,
1442,
29901,
2680,
29918,
7915,
543,
29896,
29908,
13,
1678,
1442,
29901,
265,
4164,
543,
1202,
6823,
4681,
13,
13,
4150,
338,
590,
788,
6510,
775,
5998,
694,
4383,
825,
5771,
297,
1244,
29898,
11884,
565,
3078,
472,
599,
29897,
372,
1603,
2113,
29915,
29873,
664,
13,
3597,
1780,
788,
6823,
580,
13,
29912,
13,
1678,
22985,
3453,
5912,
353,
313,
15575,
29897,
17003,
29898,
29934,
29889,
333,
29889,
1627,
14420,
416,
13,
1678,
11025,
716,
3125,
353,
716,
11025,
29898,
1366,
416,
13,
1678,
716,
3125,
29889,
12038,
703,
6510,
15691,
6510,
416,
13,
1678,
5912,
29889,
1202,
1043,
29898,
1482,
3125,
416,
13,
1678,
6143,
9107,
13,
29913,
13,
13,
29909,
29901,
13,
13,
8256,
1310,
306,
5503,
278,
2826,
306,
748,
1250,
304,
590,
3517,
6354,
29889,
13,
13,
29903,
3885,
763,
596,
623,
338,
8095,
292,
322,
10715,
292,
856,
1303,
278,
1480,
4117,
29892,
322,
366,
29915,
29881,
1074,
1554,
3412,
278,
3454,
393,
596,
1158,
12608,
338,
2743,
29889,
29871,
13,
2843,
29901,
265,
4164,
543,
1202,
6823,
29908,
4225,
263,
1158,
310,
970,
1780,
788,
6823,
29898,
1043,
325,
467,
29871,
13,
2816,
925,
671,
3355,
304,
731,
278,
2826,
13254,
322,
3349,
1442,
29901,
265,
4164,
29889,
29871,
13,
15418,
29898,
29934,
29889,
333,
29889,
1482,
3125,
467,
842,
15909,
29898,
1482,
4533,
29889,
15909,
580,
426,
13,
1678,
732,
4640,
13,
1678,
970,
1780,
14478,
29898,
1043,
325,
29897,
426,
29871,
13,
4706,
788,
6823,
890,
13,
1678,
500,
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
] |
Manchester United boss Sir Alex Ferguson insists Premier League is still betting better
07 December 2010 08:42
Sir Alex Ferguson insists the quality of the Premier League is still getting better.
One win from five for Chelsea, too many draws for Manchester United and three home defeats already at Arsenal have led to a far more open top flight this term - and a widespread conclusion that standards have fallen.
Ferguson's immediate task is to find a way for his United to beat Valencia in the Champions League on Tuesday night.
Keeping an eye on the lads: Ferguson watches United training on Monday
However, with Arsenal and Chelsea his side's next two league opponents, domestic matters clearly occupy a significant place in his thoughts.
And, rather than agree his own side are among a group of underperforming title contenders, Ferguson is adamant the league is getting stronger.
'It is a strange Premier League this season,' he said. 'We have to give credit to the lower parts of the league who are now catching up and condensing it into a much tighter competition.
'The table is like we are used to seeing in the Championship every year where you win two games and you are challenging for the play-off spots.
'Only a few weeks ago Sunderland were down the bottom. Now they are challenging for a European place. That is the kind of league we are in at the moment.
'It is difficult to assess whether it is the teams at the top who are failing or the one below them getting better.
Hoping for more of the same: Javier Hernandez fires United's winner against Valencia in Spain back in September
'I think it is the lower teams getting better because the standard has improved.'
The immediate priority though is avoiding a defeat against the Spaniards. In addition to potentially allowing United to become the first team to go through an entire group phase programme without conceding a goal, anything other than a loss would confirm top spot in Group C.
And that would allow United to side-step Real Madrid and Madrid's five-goal conquerors Barcelona in next week's knock-out phase draw.
'If you get Barcelona on one of their good days they can do that to anyone,' said Ferguson.
'It was a marvellous performance but even before the Champions League started they would have been one of the favourites.
'Like everyone else, they have days when they can be beaten but the sensible approach is to avoid the bigger hitters and we can only do that if we do finish first in our group.'
Ferguson reveals fresh fears over future of Man United crock HargreavesOwen ruled out of Manchester United's Champions League clash with ValenciaMANCHESTER UNITED FC | [
1,
19659,
3303,
289,
2209,
6290,
4827,
7756,
29887,
375,
265,
1663,
2879,
14163,
5165,
338,
1603,
1010,
1259,
2253,
13,
13,
29900,
29955,
5846,
29871,
29906,
29900,
29896,
29900,
29871,
29900,
29947,
29901,
29946,
29906,
13,
13,
29903,
381,
4827,
7756,
29887,
375,
265,
1663,
2879,
278,
11029,
310,
278,
14163,
5165,
338,
1603,
2805,
2253,
29889,
13,
13,
6716,
5401,
515,
5320,
363,
678,
2870,
29874,
29892,
2086,
1784,
4216,
29879,
363,
19659,
3303,
322,
2211,
3271,
8686,
1446,
2307,
472,
826,
4881,
284,
505,
5331,
304,
263,
2215,
901,
1722,
2246,
16286,
445,
1840,
448,
322,
263,
281,
2247,
29886,
949,
15997,
393,
20801,
505,
19225,
29889,
13,
13,
29943,
15064,
375,
265,
29915,
29879,
16800,
3414,
338,
304,
1284,
263,
982,
363,
670,
3303,
304,
16646,
2630,
5760,
297,
278,
22036,
5165,
373,
323,
1041,
3250,
4646,
29889,
13,
13,
9598,
26819,
385,
10977,
373,
278,
301,
7925,
29901,
7756,
29887,
375,
265,
6505,
267,
3303,
6694,
373,
27822,
13,
13,
17245,
29892,
411,
826,
4881,
284,
322,
678,
2870,
29874,
670,
2625,
29915,
29879,
2446,
1023,
13225,
23995,
1237,
29892,
21849,
13750,
9436,
6919,
29891,
263,
7282,
2058,
297,
670,
13133,
29889,
13,
13,
2855,
29892,
3265,
1135,
8661,
670,
1914,
2625,
526,
4249,
263,
2318,
310,
1090,
19826,
292,
3611,
640,
21043,
29892,
7756,
29887,
375,
265,
338,
594,
314,
424,
278,
13225,
338,
2805,
23505,
29889,
13,
13,
29915,
3112,
338,
263,
8515,
14163,
5165,
445,
4259,
5501,
540,
1497,
29889,
525,
4806,
505,
304,
2367,
16200,
304,
278,
5224,
5633,
310,
278,
13225,
1058,
526,
1286,
4380,
292,
701,
322,
2148,
575,
292,
372,
964,
263,
1568,
260,
14643,
13888,
29889,
13,
13,
29915,
1576,
1591,
338,
763,
591,
526,
1304,
304,
8790,
297,
278,
8972,
1432,
1629,
988,
366,
5401,
1023,
8090,
322,
366,
526,
18066,
292,
363,
278,
1708,
29899,
2696,
805,
1862,
29889,
13,
13,
29915,
11730,
263,
2846,
11405,
8020,
317,
5062,
1049,
892,
1623,
278,
5970,
29889,
2567,
896,
526,
18066,
292,
363,
263,
7824,
2058,
29889,
2193,
338,
278,
2924,
310,
13225,
591,
526,
297,
472,
278,
3256,
29889,
13,
13,
29915,
3112,
338,
5189,
304,
24809,
3692,
372,
338,
278,
10907,
472,
278,
2246,
1058,
526,
17581,
470,
278,
697,
2400,
963,
2805,
2253,
29889,
13,
13,
29950,
459,
292,
363,
901,
310,
278,
1021,
29901,
435,
18852,
25962,
4182,
29920,
24237,
3303,
29915,
29879,
19576,
2750,
2630,
5760,
297,
13616,
1250,
297,
3839,
13,
13,
29915,
29902,
1348,
372,
338,
278,
5224,
10907,
2805,
2253,
1363,
278,
3918,
756,
16710,
6169,
13,
13,
1576,
16800,
20136,
2466,
338,
4772,
292,
263,
20653,
2750,
278,
1706,
3270,
3163,
29889,
512,
6124,
304,
19998,
14372,
3303,
304,
4953,
278,
937,
3815,
304,
748,
1549,
385,
4152,
2318,
8576,
19607,
1728,
27943,
292,
263,
7306,
29892,
3099,
916,
1135,
263,
6410,
723,
9659,
2246,
9758,
297,
6431,
315,
29889,
13,
13,
2855,
393,
723,
2758,
3303,
304,
2625,
29899,
10568,
8195,
9669,
322,
9669,
29915,
29879,
5320,
29899,
28111,
26474,
943,
12408,
297,
2446,
4723,
29915,
29879,
18232,
29899,
449,
8576,
4216,
29889,
13,
13,
29915,
3644,
366,
679,
12408,
373,
697,
310,
1009,
1781,
3841,
896,
508,
437,
393,
304,
5019,
5501,
1497,
7756,
29887,
375,
265,
29889,
13,
13,
29915,
3112,
471,
263,
1766,
29894,
514,
681,
4180,
541,
1584,
1434,
278,
22036,
5165,
4687,
896,
723,
505,
1063,
697,
310,
278,
15381,
3246,
29889,
13,
13,
29915,
27552,
14332,
1683,
29892,
896,
505,
3841,
746,
896,
508,
367,
367,
2579,
541,
278,
25182,
2948,
338,
304,
4772,
278,
16600,
7124,
2153,
322,
591,
508,
871,
437,
393,
565,
591,
437,
8341,
937,
297,
1749,
2318,
6169,
13,
13,
29943,
15064,
375,
265,
10320,
1338,
10849,
8866,
29879,
975,
5434,
310,
2315,
3303,
8182,
384,
379,
1191,
276,
5989,
29949,
15556,
29490,
714,
310,
19659,
3303,
29915,
29879,
22036,
5165,
1067,
1161,
411,
2630,
5760,
27616,
3210,
29923,
1254,
1001,
8291,
1806,
3352,
7992
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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.github.rawls238.scientist4j;
import com.github.rawls238.scientist4j.metrics.MetricsProvider.Timer;
import java.util.Optional;
public class Observation<T> {
private String name;
private Optional<Exception> exception;
private T value;
private Timer timer;
public Observation(String name, Timer timer) {
this.name = name;
this.timer = timer;
this.exception = Optional.empty();
}
public String getName() {
return name;
}
public void setValue(T o) {
this.value = o;
}
public T getValue() {
return value;
}
public void setException(Exception e) {
this.exception = Optional.of(e);
}
public Optional<Exception> getException() {
return exception;
}
public long getDuration() {
return timer.getDuration();
}
public void time(Runnable runnable) {
timer.record(runnable);
}
}
| [
1,
3577,
419,
29889,
3292,
29889,
1610,
3137,
29906,
29941,
29947,
29889,
29879,
15566,
391,
29946,
29926,
29936,
13,
13,
5215,
419,
29889,
3292,
29889,
1610,
3137,
29906,
29941,
29947,
29889,
29879,
15566,
391,
29946,
29926,
29889,
2527,
10817,
29889,
10095,
10817,
6980,
29889,
14745,
29936,
13,
13,
5215,
2115,
29889,
4422,
29889,
27636,
29936,
13,
13,
3597,
770,
21651,
362,
29966,
29911,
29958,
426,
13,
13,
1678,
2024,
1714,
1024,
29936,
13,
1678,
2024,
28379,
29966,
2451,
29958,
3682,
29936,
13,
1678,
2024,
323,
995,
29936,
13,
1678,
2024,
29168,
12237,
29936,
13,
13,
1678,
970,
21651,
362,
29898,
1231,
1024,
29892,
29168,
12237,
29897,
426,
13,
418,
445,
29889,
978,
353,
1024,
29936,
13,
418,
445,
29889,
20404,
353,
12237,
29936,
13,
418,
445,
29889,
11739,
353,
28379,
29889,
6310,
890,
13,
1678,
500,
13,
13,
1678,
970,
1714,
679,
1170,
580,
426,
13,
4706,
736,
1024,
29936,
13,
1678,
500,
13,
13,
1678,
970,
1780,
731,
1917,
29898,
29911,
288,
29897,
426,
13,
4706,
445,
29889,
1767,
353,
288,
29936,
13,
1678,
500,
13,
13,
1678,
970,
323,
679,
1917,
580,
426,
13,
4706,
736,
995,
29936,
13,
1678,
500,
13,
13,
1678,
970,
1780,
731,
2451,
29898,
2451,
321,
29897,
426,
13,
4706,
445,
29889,
11739,
353,
28379,
29889,
974,
29898,
29872,
416,
13,
1678,
500,
13,
13,
1678,
970,
28379,
29966,
2451,
29958,
679,
2451,
580,
426,
13,
4706,
736,
3682,
29936,
13,
1678,
500,
13,
13,
1678,
970,
1472,
679,
18984,
580,
426,
13,
4706,
736,
12237,
29889,
657,
18984,
890,
13,
1678,
500,
13,
13,
1678,
970,
1780,
931,
29898,
29934,
21725,
1065,
29876,
519,
29897,
426,
13,
4706,
12237,
29889,
11651,
29898,
3389,
29876,
519,
416,
13,
1678,
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
] |
Yung Brown – “Girls Them Daddy”
A woman isn’t complete without a man. But where do you find a real man these days? Franklin Onyiriuka stage name Yung Brown Born on the 4th of September, 1990, hails from Imo State, Nigeria, comes with this mind blowing second single under the stable of TSME / Tru Music Records
There’s a lot to love about Yung Brown, a man with a free spirit, Yung Brown choruses how he’s the girls favorite man, you know a real man smiles in trouble, satisfies her woman, gathers strength from distress, and grows brave by reflection, That’s what the theme of this song centres on! | [
1,
612,
686,
9817,
785,
1346,
29954,
9968,
498,
331,
360,
25644,
30024,
13,
13,
29909,
6114,
3508,
30010,
29873,
4866,
1728,
263,
767,
29889,
1205,
988,
437,
366,
1284,
263,
1855,
767,
1438,
3841,
29973,
21504,
438,
1460,
12737,
22971,
7408,
1024,
612,
686,
9817,
19298,
373,
278,
29871,
29946,
386,
310,
3839,
29892,
29871,
29896,
29929,
29929,
29900,
29892,
447,
2719,
515,
1954,
29877,
4306,
29892,
20537,
423,
29892,
5304,
411,
445,
3458,
13031,
292,
1473,
2323,
1090,
278,
13714,
310,
323,
29903,
2303,
847,
17238,
6125,
7983,
13,
13,
8439,
30010,
29879,
263,
3287,
304,
5360,
1048,
612,
686,
9817,
29892,
263,
767,
411,
263,
3889,
8548,
29892,
612,
686,
9817,
521,
272,
6394,
920,
540,
30010,
29879,
278,
14000,
25448,
767,
29892,
366,
1073,
263,
1855,
767,
1560,
5475,
297,
7458,
29892,
17150,
902,
6114,
29892,
330,
19467,
9324,
515,
1320,
1253,
29892,
322,
25088,
26565,
491,
17842,
29892,
2193,
30010,
29879,
825,
278,
10929,
310,
445,
4823,
1644,
690,
373,
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
] |
A Good Death
“The family is often doing everything to avoid the conversation going to ‘the worst place’ in case it gets emotionally horrible. But actually it becomes a lot calmer once you start asking: If she is so sick, she can’t be saved what sort of things should we all be doing now so we don’t regret anything? I don’t want them to wish in two week’s time, when they’re suffering agonising grief, that they’d had that conversation.” Palliative care consultant, Dr Kathryn Mannix. | [
1,
319,
7197,
14450,
13,
13,
30015,
1576,
3942,
338,
4049,
2599,
4129,
304,
4772,
278,
14983,
2675,
304,
5129,
1552,
17322,
2058,
30010,
297,
1206,
372,
4947,
953,
8194,
635,
4029,
11710,
29889,
1205,
2869,
372,
7415,
263,
3287,
1208,
1050,
2748,
366,
1369,
6721,
29901,
960,
1183,
338,
577,
17319,
29892,
1183,
508,
30010,
29873,
367,
7160,
825,
2656,
310,
2712,
881,
591,
599,
367,
2599,
1286,
577,
591,
1016,
30010,
29873,
28883,
3099,
29973,
306,
1016,
30010,
29873,
864,
963,
304,
6398,
297,
1023,
4723,
30010,
29879,
931,
29892,
746,
896,
30010,
276,
23164,
946,
265,
5921,
867,
2575,
29892,
393,
896,
30010,
29881,
750,
393,
14983,
3178,
3793,
492,
1230,
2562,
8799,
424,
29892,
4942,
19663,
719,
29876,
7908,
861,
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
] |
Five Reasons Why the Obama-GOP Deal Sucks
The reality is that the deal does more for Paris Hilton than it does the 100,000 people who work at Hilton hotels.
The Obama-GOP plan sucks because it doesn’t do anything to close the wealth divide that has been growing steadily for decades. Closing this gap by allowing the Bush tax cuts to expire and restoring the estate tax was a top priority for progressives during the 2008 election. We expected bold, decisive action. Needless to say, we're a little pissed off.
Compromise usually means that both sides give up a little something to reach an agreement that we can all live with. The problem is, all the Republicans wanted out of a deal with Obama was to preserve tax cuts for the wealthy. And they got it.
Of course, not everything in the deal sucks. Extension of the Bush tax cuts for the middle class is good, as well as the tax credits. And there’s little question that reprieve was essential for the millions of out-of-work Americans. But to settle for a deal that provides a huge tax break for millionaires and billionaires is wildly irresponsible and undeniably unfair. Not to mention sucky.
The deal sucks. And – in plain English – here’s why:
1. It holds unemployed Americans hostage.
It sounds like a nightmare: either watch unemployment benefits for out of work Americans expire or let Wall Street fat cats walk away -- scot-free -- from paying their fair share of taxes. This plan sucks because it wrongly turns this compromise into a black/white, either/or decision. It draws a line in the sand, attempting to divide the left at a time when we should be pulling together.
Besides, I thought we weren’t supposed to negotiate with hostage-takers?
2. It increases economic inequality.
It’s a frightening reality: the top one percent of Americans own as much wealth as those in the bottom 90 percent (to be clear, by “top” and “bottom” we’re only talking net worth). If you think it’s completely unacceptable that billionaire Warren Buffet’s secretary pays more in taxes a higher tax rate than the man himself (as he famously pointed out), know that this plan will do nothing to change that. And that sucks.
The wealthy in this country are doing fine. Why aren’t they being asked to make sacrifices like the rest of us?
3. It values whack economic principles.
The number one economic justification for tax breaks for the rich is that they will somehow trickle down these savings into jobs to provide economic stimulus. Yet, history tells us that this simply isn’t true. If tax breaks for the rich resulted in job creation, we wouldn’t be in the mess we’re in a decade after the Bush tax cuts. History tells us that tax breaks for the rich sit idle in their bank accounts.
Consider a very sophisticated and economically nuanced piece of economic insight: people need money to buy stuff. If we want to stimulate the economy, we need to be looking at how we can put regular people back to work. That seems to be the most surefire plan for economic stimulus out there.
4. It’s more of the same.
Extending Bush tax cuts for the wealthy and weakening the estate tax is bad policy, bad economics, and bad for our country. During challenging times, we should be investing in our people, our education, and our national infrastructure. Instead, we are prioritizing the bank accounts of millionaires and billionaires.
This tax deal does nothing to move us forward and simply provides more of the same, setting us up for a painful bout of economic déjà vu in a year or so.
5. It disrespects the will of the people.
Obama may chide us for being progressive “purists”, but I prefer to think of those who are skeptical of this plan as progressive patriots. It is our job to hold our elected officials accountable. Polling shows that the majority of Americans believe that tax breaks for the super-wealthy should be allowed to expire. After all, low- and middle-income Americans have tightened their belts, why aren’t we asking the same of millionaires and billionaires?
This deal sucks. It sucks real bad. It’s time we rise up, make lots of noise, and hold our elected officials accountable. We must call on our elected officials and tell them that the deal sucks, and we expect more. Whose back do they have, anyway? | [
1,
22853,
830,
7040,
3750,
278,
4250,
3304,
29899,
29954,
4590,
897,
284,
2166,
4684,
13,
13,
1576,
16832,
338,
393,
278,
5376,
947,
901,
363,
3681,
12338,
880,
1135,
372,
947,
278,
29871,
29896,
29900,
29900,
29892,
29900,
29900,
29900,
2305,
1058,
664,
472,
12338,
880,
7375,
1379,
29889,
13,
13,
1576,
4250,
3304,
29899,
29954,
4590,
3814,
480,
4684,
1363,
372,
1838,
30010,
29873,
437,
3099,
304,
3802,
278,
17173,
16429,
393,
756,
1063,
15678,
28325,
2354,
363,
1602,
3076,
29889,
2233,
14556,
445,
17261,
491,
14372,
278,
24715,
8818,
5700,
29879,
304,
1518,
533,
322,
1791,
8253,
278,
19989,
8818,
471,
263,
2246,
20136,
363,
6728,
3145,
2645,
278,
29871,
29906,
29900,
29900,
29947,
8271,
29889,
1334,
3806,
14288,
29892,
22442,
573,
3158,
29889,
20768,
2222,
304,
1827,
29892,
591,
29915,
276,
263,
2217,
282,
790,
287,
1283,
29889,
13,
13,
6843,
456,
895,
5491,
2794,
393,
1716,
11192,
2367,
701,
263,
2217,
1554,
304,
6159,
385,
17327,
393,
591,
508,
599,
5735,
411,
29889,
450,
1108,
338,
29892,
599,
278,
8063,
550,
5131,
714,
310,
263,
5376,
411,
4250,
3304,
471,
304,
19905,
8818,
5700,
29879,
363,
278,
17173,
29891,
29889,
1126,
896,
2355,
372,
29889,
13,
13,
2776,
3236,
29892,
451,
4129,
297,
278,
5376,
480,
4684,
29889,
7338,
2673,
310,
278,
24715,
8818,
5700,
29879,
363,
278,
7256,
770,
338,
1781,
29892,
408,
1532,
408,
278,
8818,
6625,
1169,
29889,
1126,
727,
30010,
29879,
2217,
1139,
393,
2062,
2418,
471,
18853,
363,
278,
14746,
310,
714,
29899,
974,
29899,
1287,
23035,
29889,
1205,
304,
3604,
280,
363,
263,
5376,
393,
8128,
263,
12176,
8818,
2867,
363,
7284,
7147,
322,
24464,
7147,
338,
8775,
368,
3805,
26679,
1821,
322,
563,
11344,
2197,
29395,
1466,
29889,
2216,
304,
3585,
480,
384,
29891,
29889,
13,
13,
1576,
5376,
480,
4684,
29889,
1126,
785,
297,
8656,
4223,
785,
1244,
30010,
29879,
2020,
29901,
13,
13,
29896,
29889,
739,
8640,
443,
3451,
2376,
287,
23035,
3495,
482,
29889,
13,
13,
3112,
10083,
763,
263,
4646,
29885,
598,
29901,
2845,
6505,
443,
3451,
22812,
23633,
363,
714,
310,
664,
23035,
1518,
533,
470,
1235,
14406,
7103,
9950,
274,
1446,
6686,
3448,
1192,
885,
327,
29899,
9021,
1192,
515,
5146,
292,
1009,
6534,
6232,
310,
8818,
267,
29889,
910,
3814,
480,
4684,
1363,
372,
2743,
368,
12169,
445,
19632,
895,
964,
263,
4628,
29914,
10921,
29892,
2845,
29914,
272,
10608,
29889,
739,
4216,
29879,
263,
1196,
297,
278,
11982,
29892,
15661,
304,
16429,
278,
2175,
472,
263,
931,
746,
591,
881,
367,
28420,
4208,
29889,
13,
13,
29933,
267,
2247,
29892,
306,
2714,
591,
2949,
264,
30010,
29873,
7424,
304,
27214,
403,
411,
3495,
482,
29899,
29873,
21079,
29973,
13,
13,
29906,
29889,
739,
16415,
17407,
14585,
29889,
13,
13,
3112,
30010,
29879,
263,
22739,
8333,
16832,
29901,
278,
2246,
697,
10151,
310,
23035,
1914,
408,
1568,
17173,
408,
1906,
297,
278,
5970,
29871,
29929,
29900,
10151,
313,
517,
367,
2821,
29892,
491,
1346,
3332,
30024,
322,
1346,
8968,
30024,
591,
30010,
276,
871,
9963,
7787,
7088,
467,
960,
366,
1348,
372,
30010,
29879,
6446,
443,
16044,
519,
393,
24464,
5218,
24511,
22274,
300,
30010,
29879,
28274,
9744,
901,
297,
8818,
267,
263,
6133,
8818,
6554,
1135,
278,
767,
3654,
313,
294,
540,
5216,
5794,
11520,
714,
511,
1073,
393,
445,
3814,
674,
437,
3078,
304,
1735,
393,
29889,
1126,
393,
480,
4684,
29889,
13,
13,
1576,
17173,
29891,
297,
445,
4234,
526,
2599,
2691,
29889,
3750,
9455,
30010,
29873,
896,
1641,
4433,
304,
1207,
26285,
267,
763,
278,
1791,
310,
502,
29973,
13,
13,
29941,
29889,
739,
1819,
377,
547,
17407,
18671,
29889,
13,
13,
1576,
1353,
697,
17407,
925,
2450,
363,
8818,
16706,
363,
278,
8261,
338,
393,
896,
674,
10431,
8938,
280,
1623,
1438,
4048,
886,
964,
17643,
304,
3867,
17407,
20436,
14999,
29889,
15175,
29892,
4955,
10603,
502,
393,
445,
3763,
3508,
30010,
29873,
1565,
29889,
960,
8818,
16706,
363,
278,
8261,
20601,
297,
4982,
11265,
29892,
591,
7656,
30010,
29873,
367,
297,
278,
4473,
591,
30010,
276,
297,
263,
316,
6332,
1156,
278,
24715,
8818,
5700,
29879,
29889,
5298,
10603,
502,
393,
8818,
16706,
363,
278,
8261,
7845,
28132,
297,
1009,
9124,
15303,
29889,
13,
13,
13696,
1241,
263,
1407,
269,
3021,
4695,
630,
322,
7766,
1711,
4948,
8362,
8424,
310,
17407,
25483,
29901,
2305,
817,
6909,
304,
15649,
6433,
29889,
960,
591,
864,
304,
20436,
5987,
278,
26504,
29892,
591,
817,
304,
367,
3063,
472,
920,
591,
508,
1925,
4943,
2305,
1250,
304,
664,
29889,
2193,
2444,
304,
367,
278,
1556,
480,
999,
533,
3814,
363,
17407,
20436,
14999,
714,
727,
29889,
13,
13,
29946,
29889,
739,
30010,
29879,
901,
310,
278,
1021,
29889,
13,
13,
5647,
2548,
24715,
8818,
5700,
29879,
363,
278,
17173,
29891,
322,
8062,
8333,
278,
19989,
8818,
338,
4319,
8898,
29892,
4319,
7766,
1199,
29892,
322,
4319,
363,
1749,
4234,
29889,
7133,
18066,
292,
3064,
29892,
591,
881,
367,
13258,
292,
297,
1749,
2305,
29892,
1749,
9793,
29892,
322,
1749,
4797,
22035,
12425,
29889,
8669,
29892,
591,
526,
7536,
277,
5281,
278,
9124,
15303,
310,
7284,
7147,
322,
24464,
7147,
29889,
13,
13,
4013,
8818,
5376,
947,
3078,
304,
4337,
502,
6375,
322,
3763,
8128,
901,
310,
278,
1021,
29892,
4444,
502,
701,
363,
263,
6788,
1319,
25927,
310,
17407,
20737,
18679,
297,
263,
1629,
470,
577,
29889,
13,
13,
29945,
29889,
739,
766,
690,
1103,
29879,
278,
674,
310,
278,
2305,
29889,
13,
13,
6039,
3304,
1122,
521,
680,
502,
363,
1641,
6728,
573,
1346,
15503,
2879,
9363,
541,
306,
5821,
304,
1348,
310,
1906,
1058,
526,
18109,
415,
936,
310,
445,
3814,
408,
6728,
573,
16967,
1862,
29889,
739,
338,
1749,
4982,
304,
4808,
1749,
11467,
24921,
3633,
519,
29889,
2043,
1847,
3697,
393,
278,
13638,
310,
23035,
4658,
393,
8818,
16706,
363,
278,
2428,
29899,
24447,
29891,
881,
367,
6068,
304,
1518,
533,
29889,
2860,
599,
29892,
4482,
29899,
322,
7256,
29899,
262,
2763,
23035,
505,
19932,
6419,
1009,
1339,
1372,
29892,
2020,
9455,
30010,
29873,
591,
6721,
278,
1021,
310,
7284,
7147,
322,
24464,
7147,
29973,
13,
13,
4013,
5376,
480,
4684,
29889,
739,
480,
4684,
1855,
4319,
29889,
739,
30010,
29879,
931,
591,
14451,
701,
29892,
1207,
14568,
310,
11462,
29892,
322,
4808,
1749,
11467,
24921,
3633,
519,
29889,
1334,
1818,
1246,
373,
1749,
11467,
24921,
322,
2649,
963,
393,
278,
5376,
480,
4684,
29892,
322,
591,
2149,
901,
29889,
806,
852,
1250,
437,
896,
505,
29892,
8763,
29973
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Tom Ewing's Poptimist column is the only reason to visit the Pitchfork site (though I admit that once I'm there, I very quickly skim the list of latest album reviews to see if there's anything worth looking at).
i think it's great, you can tell he really loves the album but it's stuck behind this awful, ugly lit-wank bombast. it's just really funny, but also cool that they weren't afraid to be that pretentious.
i realise a lot of UK indie is awful shit, but they don't really try very hard to care. they just give a 8.0 to every los camp album and then 0.8s to all the NME filler.
i don't really understand why they never reviewed johnny foreigner, they're definitely big enough to get a review and there was even one article or review where they alluded to them and called waited up "fantastic"
it doesn't really matter. it's just jofo are my favourite band and they deserve the exposure.
Seems to be the more hyped bands that get the slaggings - Meursault got 7.9, for instance. On the flipside, rare was the review of the last British Sea Power album that didn't contain something like "another album of U2-like stadium indie", an opinion nobody had of their music up until that DYLRM? P4K review.
Elliott Smith
Either/Or
[Kill Rock Stars]
Rating: 8.5
Whispering his way into your heart with the voice of an angel, Elliott's new solo record, Either/Or is the type of music you'd hear in Heaven's elevator: While everything's nice and pretty, you're still pretty bummed out that you died.
Smith shares all his personal secrets with us like other Smiths before him. (i.e. The Smiths, The Cure's Robert Smith, etc.) The result is nothing less than Zoloftian genius. I'll put money down that says this is the best album Kill Rock Stars releases for a couple of months.
Was the greatest message board I've come across. A combination of hipster douchebag belly laughs and intelligent music chat. So many great threads. DiS comes close - though not quite as addictive - or maybe I'm just getting older.
Shame they took it down - but I guess it was beginning to get as much attention as the articles themselves and Ryan couldn't handle not being in control of everything that was said on the site.
I can barely move my head now. There have been so many NWW albums released now that there's no room in my apartment for all of them. I've had to amputate both my legs and construct prosthetics out of the NWW packaging. Currently, half my body is NWW albums, and they're weighing me down. Please send this review to Steven Stapleton so he knows someone is listening and that only he can stall this flood. "The sucking recess of my cunt to the nut of muscle that is my asshole."
i didn't read ^this until very recently and it really is spot on, and i say that as someone who used to really like the album, and now thinks it's quite shit. but it will always remind me of sitting in the sun in my friends garden when we'd just finished our GCSEs.
Can't they just have a cut-off score and award anything BNM that gets above that score? The other thing that annoys me is certain bands they hand out consistently good reviews for, and then conveniently leave off their Best Of Year lists (see Sunset Rubdown, Menomena). Other than that, it remains my first port of call, usually very reliable, and the writing has got better (read: less pretentious) over the years.
Sometimes I think that it's all I really want from music writing. The perfect balance of really caring about the music they write about, whilst also not giving a fuck what people think (that 'U.2' BSP review, the Jet review, the Black Kids review- all class). The earlier reviews seem mind numbingly pretentious, glad that's in the past though. It never feels too try hard intellectual, never too hipsterish. Just right.
Though yeah, don't really like their attitude towards UK bands (or at least towards UK bands who don't idolise US bands), also all the Pitchfork TV stuff is pretty shit/features Pains of being pure at heart a million times. I also sometimes think that the site is too big. But overall I love it.
and the site has introduced me to a hell of a lot of great new music (and some great old music I missed out on), as well as occasionally putting a new spin on music I already know. And that is all I ask of music journalism.
Used to get me into loads of stuff, now I just find it has crawled entirely up its own arse. Some of the stuff they gush over is alright, nothing more. Just look at the best new music section - full of bland crap.
it would suggest to me that they think any old pish will do and that they're convinced they're right in doing it. Because I agree, whereas a couple years ago P4k consistently suggested some brilliant new music, it's been in sharp decline, and they seem obsessed with a certain group of bands and artists who aren't very interesting, and of course whatever Odd Future are up to.
Bearing in mind I love Autechre's album Untilted and mostly dislike Pitchfork and its writers sometimes unhealthy obsession with music, I thought their unconventional review of it was quite good and quite spot on, seeing as I think they're mostly wrong about other Autechre and 'IDM' albums. Though 7.4 is too low. | [
1,
4335,
382,
16958,
29915,
29879,
349,
20640,
391,
1897,
338,
278,
871,
2769,
304,
6493,
278,
349,
2335,
29888,
548,
3268,
313,
3592,
306,
20000,
393,
2748,
306,
29915,
29885,
727,
29892,
306,
1407,
9098,
2071,
326,
278,
1051,
310,
9281,
3769,
21804,
304,
1074,
565,
727,
29915,
29879,
3099,
7088,
3063,
472,
467,
13,
13,
29875,
1348,
372,
29915,
29879,
2107,
29892,
366,
508,
2649,
540,
2289,
12355,
267,
278,
3769,
541,
372,
29915,
29879,
10771,
5742,
445,
28893,
29892,
22769,
11872,
29899,
29893,
804,
13585,
579,
29889,
372,
29915,
29879,
925,
2289,
2090,
1460,
29892,
541,
884,
12528,
393,
896,
2949,
264,
29915,
29873,
13421,
304,
367,
393,
14794,
296,
2738,
29889,
13,
13,
29875,
1855,
895,
263,
3287,
310,
10261,
1399,
347,
338,
28893,
528,
277,
29892,
541,
896,
1016,
29915,
29873,
2289,
1018,
1407,
2898,
304,
2562,
29889,
896,
925,
2367,
263,
29871,
29947,
29889,
29900,
304,
1432,
1232,
4242,
3769,
322,
769,
29871,
29900,
29889,
29947,
29879,
304,
599,
278,
405,
2303,
5445,
261,
29889,
13,
13,
29875,
1016,
29915,
29873,
2289,
2274,
2020,
896,
2360,
9076,
287,
432,
6547,
1460,
9117,
261,
29892,
896,
29915,
276,
11630,
4802,
3307,
304,
679,
263,
9076,
322,
727,
471,
1584,
697,
4274,
470,
9076,
988,
896,
599,
566,
287,
304,
963,
322,
2000,
25993,
701,
376,
29888,
424,
6288,
29908,
13,
13,
277,
1838,
29915,
29873,
2289,
4383,
29889,
372,
29915,
29879,
925,
432,
974,
29877,
526,
590,
15381,
568,
3719,
322,
896,
553,
7143,
278,
14060,
545,
29889,
13,
13,
2008,
1567,
304,
367,
278,
901,
10163,
287,
22706,
393,
679,
278,
2243,
16170,
886,
448,
2191,
1295,
1292,
2355,
29871,
29955,
29889,
29929,
29892,
363,
2777,
29889,
1551,
278,
285,
492,
567,
680,
29892,
10812,
471,
278,
9076,
310,
278,
1833,
4908,
14070,
9206,
3769,
393,
3282,
29915,
29873,
1712,
1554,
763,
376,
23327,
3769,
310,
501,
29906,
29899,
4561,
10728,
1974,
1399,
347,
613,
385,
9426,
23196,
750,
310,
1009,
4696,
701,
2745,
393,
360,
29979,
29519,
29924,
29973,
349,
29946,
29968,
9076,
29889,
13,
13,
6489,
492,
1501,
7075,
13,
29923,
2121,
29914,
2816,
13,
29961,
29968,
453,
8027,
25435,
29962,
13,
29934,
1218,
29901,
29871,
29947,
29889,
29945,
13,
8809,
275,
546,
292,
670,
982,
964,
596,
5192,
411,
278,
7314,
310,
385,
2614,
295,
29892,
26656,
1501,
29915,
29879,
716,
6651,
2407,
29892,
20370,
29914,
2816,
338,
278,
1134,
310,
4696,
366,
29915,
29881,
8293,
297,
22977,
29915,
29879,
11858,
1061,
29901,
5806,
4129,
29915,
29879,
7575,
322,
5051,
29892,
366,
29915,
276,
1603,
5051,
289,
398,
2168,
714,
393,
366,
6423,
29889,
13,
13,
29209,
29358,
599,
670,
7333,
22183,
1372,
411,
502,
763,
916,
7075,
29879,
1434,
1075,
29889,
313,
29875,
29889,
29872,
29889,
450,
7075,
29879,
29892,
450,
315,
545,
29915,
29879,
4755,
7075,
29892,
2992,
1846,
450,
1121,
338,
3078,
3109,
1135,
796,
3543,
615,
713,
26858,
29889,
306,
29915,
645,
1925,
6909,
1623,
393,
4083,
445,
338,
278,
1900,
3769,
29021,
8027,
25435,
27474,
363,
263,
7303,
310,
7378,
29889,
13,
13,
29956,
294,
278,
14176,
2643,
7613,
306,
29915,
345,
2041,
4822,
29889,
319,
10296,
310,
21464,
2475,
270,
3222,
774,
351,
1339,
368,
10569,
29879,
322,
13052,
296,
4696,
13563,
29889,
1105,
1784,
2107,
9717,
29889,
4671,
29903,
5304,
3802,
448,
2466,
451,
3755,
408,
788,
919,
573,
448,
470,
5505,
306,
29915,
29885,
925,
2805,
9642,
29889,
13,
13,
2713,
420,
896,
3614,
372,
1623,
448,
541,
306,
4140,
372,
471,
6763,
304,
679,
408,
1568,
8570,
408,
278,
7456,
6053,
322,
20916,
8496,
29915,
29873,
4386,
451,
1641,
297,
2761,
310,
4129,
393,
471,
1497,
373,
278,
3268,
29889,
13,
13,
29902,
508,
16079,
368,
4337,
590,
2343,
1286,
29889,
1670,
505,
1063,
577,
1784,
405,
29956,
29956,
20618,
5492,
1286,
393,
727,
29915,
29879,
694,
5716,
297,
590,
263,
8076,
363,
599,
310,
963,
29889,
306,
29915,
345,
750,
304,
626,
649,
403,
1716,
590,
21152,
322,
3386,
16810,
9188,
1199,
714,
310,
278,
405,
29956,
29956,
4870,
6751,
29889,
15447,
29892,
4203,
590,
3573,
338,
405,
29956,
29956,
20618,
29892,
322,
896,
29915,
276,
591,
1141,
292,
592,
1623,
29889,
3529,
3638,
445,
9076,
304,
24703,
624,
481,
11285,
577,
540,
9906,
4856,
338,
19866,
322,
393,
871,
540,
508,
380,
497,
445,
5685,
397,
29889,
376,
1576,
480,
384,
292,
337,
985,
310,
590,
274,
1657,
304,
278,
18254,
310,
2301,
2841,
393,
338,
590,
408,
845,
1772,
1213,
13,
13,
29875,
3282,
29915,
29873,
1303,
6228,
1366,
2745,
1407,
10325,
322,
372,
2289,
338,
9758,
373,
29892,
322,
474,
1827,
393,
408,
4856,
1058,
1304,
304,
2289,
763,
278,
3769,
29892,
322,
1286,
22405,
372,
29915,
29879,
3755,
528,
277,
29889,
541,
372,
674,
2337,
1083,
513,
592,
310,
16246,
297,
278,
6575,
297,
590,
7875,
16423,
746,
591,
29915,
29881,
925,
7743,
1749,
19983,
1660,
29879,
29889,
13,
13,
6028,
29915,
29873,
896,
925,
505,
263,
5700,
29899,
2696,
8158,
322,
9862,
3099,
350,
29940,
29924,
393,
4947,
2038,
393,
8158,
29973,
450,
916,
2655,
393,
12327,
952,
592,
338,
3058,
22706,
896,
1361,
714,
5718,
2705,
1781,
21804,
363,
29892,
322,
769,
19192,
368,
5967,
1283,
1009,
6407,
4587,
8905,
8857,
313,
4149,
8991,
842,
14985,
3204,
29892,
7567,
28342,
467,
5901,
1135,
393,
29892,
372,
9242,
590,
937,
2011,
310,
1246,
29892,
5491,
1407,
23279,
29892,
322,
278,
5007,
756,
2355,
2253,
313,
949,
29901,
3109,
14794,
296,
2738,
29897,
975,
278,
2440,
29889,
13,
13,
29903,
14618,
306,
1348,
393,
372,
29915,
29879,
599,
306,
2289,
864,
515,
4696,
5007,
29889,
450,
4922,
17346,
310,
2289,
1559,
292,
1048,
278,
4696,
896,
2436,
1048,
29892,
21109,
884,
451,
6820,
263,
285,
2707,
825,
2305,
1348,
313,
5747,
525,
29965,
29889,
29906,
29915,
350,
5550,
9076,
29892,
278,
27804,
9076,
29892,
278,
6054,
476,
4841,
9076,
29899,
599,
770,
467,
450,
8859,
21804,
2833,
3458,
954,
10549,
368,
14794,
296,
2738,
29892,
10932,
393,
29915,
29879,
297,
278,
4940,
2466,
29889,
739,
2360,
23880,
2086,
1018,
2898,
29762,
29892,
2360,
2086,
21464,
2475,
728,
29889,
3387,
1492,
29889,
13,
13,
1349,
820,
21915,
29892,
1016,
29915,
29873,
2289,
763,
1009,
26309,
7113,
10261,
22706,
313,
272,
472,
3203,
7113,
10261,
22706,
1058,
1016,
29915,
29873,
1178,
324,
895,
3148,
22706,
511,
884,
599,
278,
349,
2335,
29888,
548,
5648,
6433,
338,
5051,
528,
277,
29914,
22100,
349,
2708,
310,
1641,
8296,
472,
5192,
263,
7284,
3064,
29889,
306,
884,
6041,
1348,
393,
278,
3268,
338,
2086,
4802,
29889,
1205,
12463,
306,
5360,
372,
29889,
13,
13,
392,
278,
3268,
756,
9129,
592,
304,
263,
23927,
310,
263,
3287,
310,
2107,
716,
4696,
313,
392,
777,
2107,
2030,
4696,
306,
13726,
714,
373,
511,
408,
1532,
408,
23025,
10594,
263,
716,
10917,
373,
4696,
306,
2307,
1073,
29889,
1126,
393,
338,
599,
306,
2244,
310,
4696,
8955,
1608,
29889,
13,
13,
29965,
8485,
304,
679,
592,
964,
15376,
310,
6433,
29892,
1286,
306,
925,
1284,
372,
756,
29349,
839,
9186,
701,
967,
1914,
564,
344,
29889,
3834,
310,
278,
6433,
896,
330,
1878,
975,
338,
394,
1266,
29892,
3078,
901,
29889,
3387,
1106,
472,
278,
1900,
716,
4696,
4004,
448,
2989,
310,
18742,
274,
2390,
29889,
13,
13,
277,
723,
4368,
304,
592,
393,
896,
1348,
738,
2030,
282,
728,
674,
437,
322,
393,
896,
29915,
276,
25617,
896,
29915,
276,
1492,
297,
2599,
372,
29889,
7311,
306,
8661,
29892,
13452,
263,
7303,
2440,
8020,
349,
29946,
29895,
5718,
2705,
7829,
777,
27592,
716,
4696,
29892,
372,
29915,
29879,
1063,
297,
15301,
4845,
457,
29892,
322,
896,
2833,
20881,
11517,
411,
263,
3058,
2318,
310,
22706,
322,
17906,
1058,
9455,
29915,
29873,
1407,
8031,
29892,
322,
310,
3236,
6514,
438,
1289,
16367,
526,
701,
304,
29889,
13,
13,
29933,
799,
292,
297,
3458,
306,
5360,
319,
1082,
305,
276,
29915,
29879,
3769,
501,
593,
2782,
287,
322,
11149,
766,
4561,
349,
2335,
29888,
548,
322,
967,
23550,
6041,
443,
354,
4298,
29891,
704,
7924,
411,
4696,
29892,
306,
2714,
1009,
443,
535,
794,
1848,
9076,
310,
372,
471,
3755,
1781,
322,
3755,
9758,
373,
29892,
8790,
408,
306,
1348,
896,
29915,
276,
11149,
2743,
1048,
916,
319,
1082,
305,
276,
322,
525,
1367,
29924,
29915,
20618,
29889,
14832,
29871,
29955,
29889,
29946,
338,
2086,
4482,
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
] |
package liquibase.parser;
import liquibase.Scope;
import liquibase.exception.LiquibaseException;
import liquibase.exception.UnexpectedLiquibaseException;
import liquibase.exception.UnknownFormatException;
import liquibase.resource.ResourceAccessor;
import liquibase.servicelocator.ServiceLocator;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class SnapshotParserFactory {
private static SnapshotParserFactory instance;
private List<SnapshotParser> parsers;
private Comparator<SnapshotParser> snapshotParserComparator;
public static synchronized void reset() {
instance = new SnapshotParserFactory();
}
public static synchronized SnapshotParserFactory getInstance() {
if (instance == null) {
instance = new SnapshotParserFactory();
}
return instance;
}
/**
* Set the instance used by this singleton. Used primarily for testing.
*/
public static void setInstance(SnapshotParserFactory instance) {
SnapshotParserFactory.instance = instance;
}
private SnapshotParserFactory() {
snapshotParserComparator = new Comparator<SnapshotParser>() {
@Override
public int compare(SnapshotParser o1, SnapshotParser o2) {
return Integer.valueOf(o2.getPriority()).compareTo(o1.getPriority());
}
};
parsers = new ArrayList<>();
try {
for (SnapshotParser parser : Scope.getCurrentScope().getServiceLocator().findInstances(SnapshotParser.class)) {
register(parser);
}
} catch (Exception e) {
throw new UnexpectedLiquibaseException(e);
}
}
public List<SnapshotParser> getParsers() {
return parsers;
}
public SnapshotParser getParser(String fileNameOrExtension, ResourceAccessor resourceAccessor) throws LiquibaseException {
for (SnapshotParser parser : parsers) {
if (parser.supports(fileNameOrExtension, resourceAccessor)) {
return parser;
}
}
throw new UnknownFormatException("Cannot find parser that supports "+fileNameOrExtension);
}
public void register(SnapshotParser snapshotParser) {
parsers.add(snapshotParser);
Collections.sort(parsers, snapshotParserComparator);
}
public void unregister(SnapshotParser snapshotParser) {
parsers.remove(snapshotParser);
}
}
| [
1,
3577,
15617,
747,
559,
29889,
16680,
29936,
13,
13,
5215,
15617,
747,
559,
29889,
15289,
29936,
13,
5215,
15617,
747,
559,
29889,
11739,
29889,
29931,
8105,
747,
559,
2451,
29936,
13,
5215,
15617,
747,
559,
29889,
11739,
29889,
29965,
13996,
6021,
29931,
8105,
747,
559,
2451,
29936,
13,
5215,
15617,
747,
559,
29889,
11739,
29889,
14148,
5809,
2451,
29936,
13,
5215,
15617,
747,
559,
29889,
10314,
29889,
6848,
16055,
29936,
13,
5215,
15617,
747,
559,
29889,
2140,
293,
295,
542,
1061,
29889,
3170,
3524,
1061,
29936,
13,
13,
5215,
2115,
29889,
4422,
29889,
20165,
29936,
13,
5215,
2115,
29889,
4422,
29889,
19466,
29936,
13,
5215,
2115,
29889,
4422,
29889,
1523,
17954,
29936,
13,
5215,
2115,
29889,
4422,
29889,
1293,
29936,
13,
13,
3597,
770,
317,
14551,
11726,
5126,
426,
13,
13,
1678,
2024,
2294,
317,
14551,
11726,
5126,
2777,
29936,
13,
13,
1678,
2024,
2391,
29966,
21913,
11726,
29958,
610,
4253,
29936,
13,
1678,
2024,
422,
17954,
29966,
21913,
11726,
29958,
22395,
11726,
1523,
17954,
29936,
13,
13,
13,
1678,
970,
2294,
12231,
1891,
1780,
10092,
580,
426,
13,
4706,
2777,
353,
716,
317,
14551,
11726,
5126,
890,
13,
1678,
500,
13,
13,
1678,
970,
2294,
12231,
1891,
317,
14551,
11726,
5126,
679,
4998,
580,
426,
13,
4706,
565,
313,
8758,
1275,
1870,
29897,
426,
13,
632,
2777,
353,
716,
317,
14551,
11726,
5126,
890,
13,
4706,
500,
13,
4706,
736,
2777,
29936,
13,
1678,
500,
13,
13,
1678,
7762,
13,
268,
334,
3789,
278,
2777,
1304,
491,
445,
27130,
29889,
501,
8485,
19434,
363,
6724,
29889,
13,
268,
3776,
13,
1678,
970,
2294,
1780,
731,
4998,
29898,
21913,
11726,
5126,
2777,
29897,
426,
13,
4706,
317,
14551,
11726,
5126,
29889,
8758,
353,
2777,
29936,
13,
1678,
500,
13,
13,
1678,
2024,
317,
14551,
11726,
5126,
580,
426,
13,
4706,
22395,
11726,
1523,
17954,
353,
716,
422,
17954,
29966,
21913,
11726,
16917,
426,
13,
9651,
732,
4640,
13,
9651,
970,
938,
7252,
29898,
21913,
11726,
288,
29896,
29892,
317,
14551,
11726,
288,
29906,
29897,
426,
13,
18884,
736,
8102,
29889,
25835,
29898,
29877,
29906,
29889,
657,
29925,
21766,
16655,
18307,
1762,
29898,
29877,
29896,
29889,
657,
29925,
21766,
3310,
13,
9651,
500,
13,
4706,
3980,
13,
13,
4706,
610,
4253,
353,
716,
9791,
27258,
13,
4706,
1018,
426,
13,
9651,
363,
313,
21913,
11726,
13812,
584,
317,
4338,
29889,
657,
7583,
15289,
2141,
657,
3170,
3524,
1061,
2141,
2886,
3379,
2925,
29898,
21913,
11726,
29889,
1990,
876,
426,
13,
462,
1678,
6036,
29898,
16680,
416,
13,
9651,
500,
13,
4706,
500,
4380,
313,
2451,
321,
29897,
426,
13,
9651,
3183,
716,
10016,
29916,
6021,
29931,
8105,
747,
559,
2451,
29898,
29872,
416,
13,
4706,
500,
13,
13,
1678,
500,
13,
13,
1678,
970,
2391,
29966,
21913,
11726,
29958,
679,
29925,
1503,
414,
580,
426,
13,
4706,
736,
610,
4253,
29936,
13,
1678,
500,
13,
13,
1678,
970,
317,
14551,
11726,
679,
11726,
29898,
1231,
29729,
2816,
17657,
29892,
18981,
16055,
6503,
16055,
29897,
8026,
2718,
339,
747,
559,
2451,
426,
13,
4706,
363,
313,
21913,
11726,
13812,
584,
610,
4253,
29897,
426,
13,
9651,
565,
313,
16680,
29889,
5924,
29879,
29898,
28926,
2816,
17657,
29892,
6503,
16055,
876,
426,
13,
18884,
736,
13812,
29936,
13,
9651,
500,
13,
4706,
500,
13,
13,
4706,
3183,
716,
853,
5203,
5809,
2451,
703,
29089,
1284,
13812,
393,
11286,
15691,
28926,
2816,
17657,
416,
13,
1678,
500,
13,
13,
1678,
970,
1780,
6036,
29898,
21913,
11726,
22395,
11726,
29897,
426,
13,
4706,
610,
4253,
29889,
1202,
29898,
29879,
14551,
11726,
416,
13,
4706,
1530,
5942,
29889,
6605,
29898,
862,
4253,
29892,
22395,
11726,
1523,
17954,
416,
13,
1678,
500,
13,
13,
1678,
970,
1780,
443,
9573,
29898,
21913,
11726,
22395,
11726,
29897,
426,
13,
4706,
610,
4253,
29889,
5992,
29898,
29879,
14551,
11726,
416,
13,
1678,
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
] |
At Liferay's North American Symposium, I announced the immediate availability of a new website we've developed specifically for those who use Liferay and write code on its platform. We call this site the Liferay Developer Network.
This site is the new home for Liferay's documentation and, by the time it gets out of beta, Liferay's community pages. After receiving good feedback from our user community for years, we knew that the way we currently publish our documentation had some problems:
Many times, people would search either on liferay.com or the search engine of their choice, for a topic they needed to know about. Often, the search results would direct them to an article in Liferay's Wiki. The Wiki over the years has become a place where well-intentioned Liferay employees and community members have placed articles describing how to use various features of Liferay. Because the Wiki has been on the site for so long, Google tends to rank its articles pretty high. Even though I've been shouting from the highest turrets that the Wiki is not Liferay's documentation, Google's indexing bot doesn't have ears.
Unfortunately, however, the Wiki is also where user documentation goes to die. Articles are written and then abandoned by their authors. They then become out of date and actually do more harm than good, by sending people who read them down rabbit trails that were meant for older versions of Liferay. For this reason, we are retiring the Liferay Wiki. In its place, we've created Liferaypedia, a new Wiki for defining Liferay, development, and open source terms.
We've also heard feedback that our current documentation pages are hard to navigate. There's a reason for this: they're just HTML versions of documentation that's organized as books. We've now changed that. The Liferay Developer Network is divided into four sections:
Discover: The contents of Liferay's user-oriented documentation have been re-imagined for this section. Front and center is the documentation for Liferay Portal. Using a new interface, it's much easier to find the documentation you're looking for. The Social Office section contains our Social Office documentation. The Deployment section is for Liferay systems administrators everywhere: it contains documentation for installing and configuring Liferay, including clustering.
Develop: This is the section for developers. When we designed it, we asked ourselves, Who is our audience, and how will they want to learn about Liferay?. What we learned was that we have a variety of readers: some want to learn in a step-by-step fashion, and some already have a project and want a quick answer to a question. To serve everybody, we created learning paths for developers new to Liferay who want to start from scratch, and we created tutorials for developers in the midst of a project who want to learn something quickly. And, of course, we have our reference documentation so you can look up APIs, tag libraries, DTDs, faces docs, and properties docs.
Participate: This is the new home for Liferay's community. As the months go by, we'll be migrating more and more of our community pages here. Currently, it contains information on how to contribute to Liferay, the aforementioned Liferaypedia, the feature ideas page, and the feedback forums.
Want to contribute to the documentation like you maybe once did with the Wiki? We haven't left you out. In fact, we welcome contributions to our documentation. And here's the real kicker: because we have a team of people reviewing and updating our documentation, you can do the same thing you did with the Wiki. Submit it and forget about it. We'll take care of keeping the documentation you submit up to date with all the changes that happen to Liferay in the future. You won't have to worry or feel guilty about your submitted documentation again! Instead, you can feel good knowing that you made an important contribution to Liferay, because contributions help our community. There are three ways in which you can contribute:
Editing existing documentation. Every piece of documentation on the site contains an Edit with Github button. This lets you go to our documentation repository and use Github's tools to edit documentation right in your browser. When you're finished, you can send a pull request to the liferay-docs repository, and we'll review your updates and push them into the site.
Creating new documentation. Every section of the Liferay Developer Network has a corresponding folder in our repository. In that folder is another folder called new-articles. If you have documentation for a feature we don't currently cover, you can submit it right into this folder. You don't have to know where it goes in the rest of our docs or anything like that. We even have a shell script (Mac, Linux) and a batch file (Windows) that lets you preview your Markdown in HTML before you submit it. Submit it to the liferay-docs repository.
Contributing to Liferaypedia. We still have a Wiki, but it's for defining Liferay and open source terms. Currently, it's pretty bare, and we need to fill it out. We could use definitions for all kinds of terms that are germane to Liferay, like CMIS and SAML, as well as Liferay concepts like Theme Display and Service Builder.
In closing, I just want to say that we've designed this site for our community of users and developers. All design decisions were made based on feedback from our community. We know we're not perfect, however, and we may not have captured everything you've been telling us over the years. For that reason, and because we're in beta and can still change things, there's a feedback link at the bottom of every page. We welcome your feedback. Don't know where to start? How about starting with our learning paths. This is a brand new effort we're making, the learning paths aren't complete yet, and we want to make sure we're getting it right. Try reading the first learning path and let us know what you think. Will it help beginners get started with Liferay?
Or maybe you're more interested in mobile development on Liferay. We have a whole set of mobile tutorials that you could read and let us know if they're hitting the mark on Liferay mobile development.
Thanks for reading this long post, and thanks for all the great feedback we've heard on our documentation over the years. We hope that the new Liferay Developer Network serves you well as we continue to build it.
I am pleased to announce the immediate availability of the print edition of Using Liferay Portal 6.1! For those of you on your toes (and you know who you are), it's actually been available since Friday, but who reads a blog entry that is published on Friday afternoon?
It's a big book. We're getting close to 700 pages now in print, and that does not include the properties reference, which we think is better as an online reference than stuffed into the book (plus, we can lower the price if we excise those pages). I want to acknowledge the hard work of Liferay's Knowledge Management team for a job well done: Jim Hinkey, Stephen Kostas, Jesse Rao, and Cody Hoag. In addition to these guys, some other key contributors include James Falkner, Bruno Farache, Michael Han, Jeffrey Handa, Mark Healy, and Jonathon Omahen.
So if you like big, thick books on your shelf, especially ones with the Liferay logo on them, why not pick one up?
Of course, we're not stopping there. I'm in the midst of working on the styling of the epub version of the book, which we'll release next. Stay tuned!
One of the benefits of moving our documentation out of LibreOffice and into Markdown is that Markdown converts to many publishable formats. We're already converting it into Liferay web content for display on the web site. I had always planned to publish also in PDF and print format, and up until recently, I intended to use the open source DTP program Scribus to do so. Those of you who attended the talk that Jim Hinkey and I did at the NA Symposium know this, as it was actually a part of the slides.
I spent some time attempting to create the book layout in Scribus. While Scribus is a great program, it has limitations with our workflow, some of which are not Scribus's fault, and some of which are. The biggest issue I had was that none of the images would import into Scribus with the text. I had to do them all manually and re-add all the captions. I spent about two or three weeks doing this.
Suffice it to say that I soon realized I needed to find another tool, or I'd probably be finishing the book layout sometime this summer. The conversion tool we use for our Markdown--Pandoc--also supports LaTeX, a type-setting tool that's been around for a long time, and something that Darren, a college professor friend of mine I haven't seen in many years, tried to get me into, oh, about 15 or so years ago. I've avoided it all these years in favor of various systems that gave me a WYSIWYG view into my documents.
Well, in this case, LaTeX saved the day, and I haven't seen Darren in so long that maybe he won't even have the opportunity to say "I told you so."
The conversion to LaTeX preserved all the images, along with their captions. Combined with xelatex, the Memoir class, and lots of hand-massaging of the file (which we'll automate next time), we now have a PDF, almost suitable for publishing, and which we've made available as a download on the Documentation page. It just needs an index at this point, which is something we're working on.
Since we haven't been announcing it much, you're probably unaware that we've recently started making weekly updates to the Liferay documentation. This is one of the reasons we haven't published the PDF or the book yet, though now we're getting much closer to doing just that.
But I want to use this space to point out what's been updated recently, so you can see all the great new content we've been working so hard on. And after this, I'll be writing a weekly blog entry describing everything that's gone in that week. This is much easier than following Github commits, and it gives us the opportunity to hear what's most important to you. That, in turn, helps us to define the priorities for any upcoming documentation.
But first, I need to play catch up. To do that, I'm going to steal a couple of graphics that I'm planning to present with Jim Hinkey at Liferay's North American Symposium next week. Because of the relative size of the graphics, one resized better than the other. Regardless of that, it shows just how much of the new User Guide and Developer Guide is new material that we've added for the 6.1 release.
First, the User Guide: Next, the Developer Guide: Finally, here's what we added this week:
One of the things we've been working on over the past few months is a complete reorganization of Using Liferay Portal, the documentation for our flagship product, Liferay Portal.
For the 6.1 release cycle, we decided to rename the book (it used to be called the Liferay Portal Administrator's Guide) so that it would better reflect its content. For several releases, the "Admin Guide" (as we'd call it for short) had been more than a guide for Liferay administrators: it also contained a growing library of end user documentation on Liferay Portal's functionality. So for 6.1, we renamed it so that its title would match what was actually inside the book.
After a month or two, though, we realized that this was not enough. To truly be a complete user's guide, the book's content needed to be reorganized. Working with Liferay's Product Management and Engineering groups, we spent a couple of months moving, reorganizing, changing, and wordsmithing the text. To do this, we first created an outline of what our "ideal" user's guide would look like. We then moved our existing content around to match the outline. Finally, we went through all the text and smoothed everything out.
The result is what you see on Liferay's documentation page. But we aren't done yet.
When re-outlining the content for the book, we realized that some features were missing. Our next task, then, is to fill those gaps. Once we've done that, we'll be ready to publish the book in other formats, such as print, PDF, and EPUB.
I want to thank all of those who worked so hard on this reorganization: Jesse Rao, Mark Healy, and Jim Hinkey, as well as Ed Chung and Jorge Ferrer for their guidance. Though we're all Liferay employees, I hope you know that community members are welcome to participate. Not everybody is a developer. If you love Liferay and you like to write, you are more than welcome to help us. Head on over to github.com/liferay/liferay-docs to grab the source files for our documentation. Here are some gaps that we need to fill:
Chapter 10: need content for workflow in applications such as WCM, Docs & Media, and collaboration.
Chapter 12: we need to cover some of the smaller applications, such as Bookmarks, Shopping, and Weather.
Chapter 15: needs real world examples of using Liferay's security model, as well as best practices.
I hope you enjoy the new book. I know it's not perfect, so any comments, questions, and suggestions are welcome. Thanks for reading!
Writing is something I've been doing for a long time. I mean, a long time--since I was something like 12 years old. To give you a piece of perspective on this (without giving away my age), I was 12 years old in the 1980s. Since then, a lot of things have changed with regard to writing: word usage (I still by default write *worshipped* and *kidnapped*), the process (mindmapping replaces outlining for me), and most especially the tools (pen/pencil and paper, to typewriter, to text-based computer, to graphical computer).
Since the Liferay documentation team has recently undergone a lot of changes with regard to the way we write documentation, I thought it might be cool to start a blog series on what we've done and the philosophy behind why we've done it, with some personal reflections along the way. I hope you find this interesting. If not, feel free to stop reading and move on to some of the other excellent bloggers here on liferay.com. Much of what follows in this first part is somewhat of a response to a blog entry I saw here: http://www.guardian.co.uk/books/2011/nov/03/creative-writing-better-pen-longhand.
I was bad at penmanship in grammar school. It was the only subject in which I got Cs and Ds consistently. I struggled through capital letters, chafed through lower case letters, and dragged on cursive. Finally, in the 5th grade, when penmanship was no longer a course, I switched myself to writing in all caps, and have stuck with that from then until now. Why? Because I'd been writing in all caps the longest, and the nature of capital letters means you have to slow down and be more careful, thus producing more legible text. And by the 5th grade, none of my teachers cared or said anything about it.
In 6th grade, we started getting these spelling assignments where you'd have a list of new words to spell, and you had to make up sentences in which the word was used. Rather than produce a bunch of dry, boring sentences (e.g., The patient was paralyzed from the waist down.), I'd make up stories and work the spelling words into these. My teachers loved it. I always got an A+ on my spelling sentences--when my teachers could read them.
Somewhere around this time, I got a plastic "children's" typewriter. I think it was only labeled a children's typewriter because it was cheap plastic: it did have metal hammers and a real ribbon. My mom, who is an office manager for an orthopedic surgeon, was always an excellent touch-typist, and she began teaching me to type. At this point in my life, though, I didn't have much use for the skill, because I couldn't use it much for my school work, and I hadn't gotten the idea yet that I might someday become a writer. Handwriting was everything in school work at this time, and I sucked at it.
Also about this time, rather than typewriters, friends whose families had more money than mine began getting Commodore 64 and Apple II computers. I was incredibly interested in these things, but they were way out of reach for me. I remember the envy I felt in 8th grade when we had these bulletin board projects to do and my friends were able to produce posters and banners strung together on dot-matrix paper, while I was stuck with crappy construction paper and markers. I don't remember what circumstances brought this about--it was probably getting older and having to start writing papers for school--but in the 7th or 8th grade, my stepfather pulled out for me this old Royal manual typewriter. The thing must've weighed 50 pounds. We lived on the 2nd floor of a two-floor duplex, and I'm sure if I ever dropped it, it would've gone right through the floor and hit our neighbor on the head. It was gun metal gray and had round keys that when you pressed them, went way, way down, slapping a hammer onto a page. At the end of each line a bell would ring, signifying that you needed to finish the word you were working on or hyphenate it. Once you did this, you'd reach up with your left hand and in a smooth motion that my mother demonstrated for me, use a bright, chrome lever to swipe the "platen," or the roller the paper was on, back over to the right to begin a new line. I looked at the machine in awe. Everything about it said to me, "serious writing."
Coincidentally, sometime before this typewriter appeared, I'd done some of my first bit of creative writing outside of my spelling sentences, just for fun. I'd written a short story that had been inspired by a dream I'd had, and I'd also attempted a magazine based on Mad Magazine which I called Crazy Magazine. Of course, my drawing skills are probably worse than my penmanship skills, so the magazine really had no prayer of going anywhere--but I do remember photocopying it for some friends and handing them out.
The story, though, had some promise, if other people could read it. So I thought maybe I could try my hand at another one--this time, on the typewriter. I was in high school now, and taking a typing class, so if it didn't work out, at least I'd become a faster typist. And so I produced a story called The Deadly System, also loosely based on a dream I'd had (I was having all kinds of weird science-fiction dreams at the time). I stuck this one in a green folder and gave it to a friend of mine--an artist--to read. The story inspired him enough to illustrate the front of the green folder with the main protagonist of the story, which I thought was pretty cool. There are more details here, but they aren't germane to my point.
I was off and running. That story blossomed into several more, and soon I began thinking that I might want to do this writing thing for a living. Upon my high school graduation, I got a PC--a discounted Philips 8088 with a monochrome screen--to take to college with me, where I would be majoring in English. The 386 had just come out, so this machine was already antiquated, but I loved the thing. I did all of my college writing on that PC, in WordStar, where I most appreciated being able to continuously type without have to reach up and swing that platen over at the end of every line. And of course, there was the all-important Backspace key. Right before my senior year, I purchased a 486, and of course I did my writing on that. I have more to say on this subject, but that will have to wait till part two.
The point I want to make here is that for me, the keyboard has always represented serious writing--whether that writing is creative, scholarly, or technical. Writing with a pen always got in my way, and represented extra, tedious work--in other words, re-typing, not to mention deciphering what I wrote--and I thought there were better ways to use my time. I'm happy to write notes in a journal and jot lists, but if I want to do any serious writing, I always sit down at a keyboard. All keyboards are on PCs now, and I definitely have specific thoughts on how best to write on a PC, but they'll have to wait till part two.
If you made it this far, you must have some interest in writing, or in the process of writing. I'd love to hear your thoughts in the comments.
I've learned a lot while writing Liferay in Action. I'm going through my final edits now before the book goes through its production cycle, tightening up the prose and making sure everything is as clear as I can make it. Once of the things I've had a lot of fun doing is the crutch.
What is a crutch? It's a technique whereby you introduce a concept with an anecdote, a story, or an analogy of some kind that speaks to the topic you're about to discuss. It's supposed to draw the reader in and get him or her interested.
You may not know that though I work for Liferay and have done software development for many years, my degree is not in Computer Science: it's in English. So I like to write. My favorite kind of writing is of the creative sort, and I don't get to do it often. So with Liferay in Action, the concept of a crutch was something that I kind of got really into doing. In fact, you might say that I tended to get carried away with it.
Below is an example of a crutch that I had to cut out of the book. It was intended to introduce the concept of Ext plugins, but instead it took on a life of its own and tended to be a bit distracting. If it were to stand on its own, I would give it the title below. And if you'd like, let me know in the comments if you think this would have worked or if indeed it is distracting.
Enjoy!
The Chocolate Monster
Once upon a time, a man woke up after having a strange dream. In that dream, he found himself face to face with a being he couldn't identify, who was glowing with an odd, brown-mixed-with-gold hue. The being's face was obscured, and its body consisted of an amorphous, flowing robe that hid its actual shape. Before he could react to the presence of such a unique person, the being spoke.
“I am not long for this existence. Before I pass into whatever comes next, I must bequeath my unique ability to someone else. I have chosen you.”
“Uh—wow. Um, thank you,” the man said. “Who are you?”
“Who I am does not matter. What I am giving you does. Use it wisely. Use it well,” stated the being, dramatically.
With that, the man found himself enveloped in a bear hug. That odd brownish-goldish glow surrounded him, and he could smell something—something familiar, but for some reason in the dream, he couldn't figure out what it was. The being squeezed harder and harder, until the man began to have trouble breathing. He tried to choke, “Stop!” but to no avail. As the final breaths of air escaped his mouth, he panicked and started to squirm. The smell—whatever it was—was overpowering. How could he smell when he couldn't breathe? He wasn't sure, but black spots appeared before his eyes, and he knew he was about to pass out due to a lack of oxygen. Gasping violently, he screamed, and—
He woke up. And now he could identify the smell: chocolate. Weird.
The rest of the day proceeded normally, until the man came home from work. Living alone, he was accustomed to keeping pretty much whatever schedule he wanted, so it was rather late when he got back. His stomach growled as he stood in his kitchen pondering what to make himself for dinner, and it occurred him that it might be nice to have a snack. He'd been thinking about that dream all day—and also the smell of chocolate. Boy, it would be nice to have a piece of chocolate right now.
Wait, what was that? He opened his right hand, and inside was a piece of chocolate. How did that get there? He smelled it. Yup, it was definitely chocolate. Gingerly, he bit into it. Tasted like chocolate too. So he ate it.
Of course, once you've had one small piece of chocolate, you sort of want another one, don't you? The man did. Before he could reach for the handle of his refrigerator to find some, however, there was another piece of chocolate in his hand.
“Wha—?” escaped the man's mouth. He put the piece of chocolate down on the counter and stared at it, his heart pounding. What was going on here? He placed his hand out, palm up.
“Okay, let's try something,” he said out loud, though nobody else was in the room. He closed his eyes and thought to himself, I want a piece of chocolate! He opened his eyes. There was a piece of chocolate in his hand.
“No way!” he shouted, again, to nobody in particular. Over the course of the night, he found that he could make any kind of chocolate he wanted. He could make dark chocolate. He could make milk chocolate. He could make liquid chocolate. He could make it in any shape, size, or consistency he wanted.
He was a super hero! Well, not really.
He started making chocolate for his friends—any kind they wanted, as much as they wanted. He made chocolate for his town. He made things out of chocolate that really shouldn't be made out of chocolate—like buildings, statues, and even monuments. He became rich by selling his chocolate. Children loved him. Women adored him. Candy companies despised him.
He married, divorced, and married again. Why? Because his wives initially loved the chocolate and the power and the money—but not him. He wasn't the same man he'd been before he had his chocolate power: when you really got to know him, the man he'd become really wasn't all that lovable. For instance, over the years he grew rather fat as he consumed a lot of his own chocolate, but he wasn't a nice fat, or a jolly fat. Instead, he was a mean fat, unkempt, and unwashed. He was also rather selfish—if he wanted something, he could generally get it through his chocolate power. And he did. When someone he knew needed something, he could give it to them if it could be obtained through chocolate, because that was easy. If it took more work than that, well, he had more important things to do. What was most important was that he was famous as the only man in the world who could make chocolate from nothing.
At least, he thought it was nothing. He started noticing the symptoms after he made his first mountain of pure chocolate, up in the Pocono mountains in Pennsylvania. He started to think that maybe his skin had taken on somewhat of a more golden hue. Over the years it got darker and darker, until his facial features were obscured. He became a recluse, rarely seen. He wore dark, hooded robes so that no one could see the change in him. It seemed that the more chocolate he made, the more he changed, and the weaker he became. It was as though using his power drained his life force prematurely somehow. But still he made chocolate.
His greatest achievement, to his mind, was made during this period of his life. He made a chocolate island, floating in the Pacific Ocean. It was his own world, one which could be used and replenished at his every whim. At first he thought this would gain him praise from the world, but instead he received only criticism. As the mountains of chocolate he'd made elsewhere had begun to melt, the surrounding environment suffered. Birds, toads, rabbits, and other animals became mired in sticky goo as the chocolate melted and flowed down. Streams and rivers were choked with pieces of chocolate. If that was happening with the mountains, what could happen with the island?
His skin went from dark gold to dark brown, the color of chocolate. Then it began to glow in that familiar brownish-goldish hue that he remembered from his dream, and he somehow knew that this signaled the end of his life. It had only been ten years since he'd been given his gift. He sat, in a chocolate castle he'd built for himself, alone on his chocolate island, and pondered the meaning of it all. Why wasn't he happy? Why did people shun him? What could he have changed? He fell asleep.
In his dream, he felt an urgency. He had to give away his power to someone else in the dream—because this wasn't a dream, really. He was being given a glimpse into another dimension, another universe, where other people lived. He zeroed in on one house, in a particular neighborhood, and found the person living there. He didn't have time for niceties; he had to do this quickly.
“I am not long for this existence,” he said to the person. “Before I pass into whatever comes next, I must bequeath my unique ability to someone else. I have chosen you.”
The other person sputtered something, but the man had no time to talk. He had to do this now, before it was too late. He could only give the person one sentence of advice, so it had to be a good one—a better one than he'd been given.
“I am giving you a great power—use it responsibly, and for the good of others.”
With that, he embraced the other person as hard as he could, feeling his power flowing from him into the other person.
The man died in his sleep. The other person woke up. That person is you. The power, however, is not necessarily based on chocolate.
When given a great power, it's wise to consider how best to use it. Can it be used for everything? Probably not, and if you try, you'll almost certainly make a mess. Can it be abused? Definitely. Can it be used for good, and optimally, so that it provides the best benefit for the most people? Absolutely, but that will take a lot of thought to accomplish.
Ext plugins are like this. When I first started working with Liferay, we didn't have all these great plugin types you've already seen. Instead, everything, and I mean everything, had to be done using the Extension environment, or Ext environment for short. Ext plugins, as they are now called, give you unlimited power within Liferay to do whatever you want. You could implement your entire site using only a single Ext plugin if you wanted to. But that is not the best way. In fact, more likely than not, if you do it that way, you'll make a big mess. So Ext plugins need to be used responsibly. We're going to look at two ways you can use Ext plugins responsibly:
Customizing Struts actions of internal Liferay portlets
Modifying core Liferay behavior that can't be done with hooks
For the first use case, I'll be able to show you an example. For the second, since there is so much core functionality within Liferay, what I'll do is list some common things people do with Ext. Then I’ll give you an overview of Liferay's architecture by tracing exactly what Liferay does from receiving a browser request to rendering a page. Since I can't be sure what exactly you may be wanting to modify, this should hit a lot of internal Liferay code, giving you the tools to determine your strategy for making Liferay do what you want.
Once we've looked at Liferay's architecture, we'll discuss some best practices for Liferay development, to help you decide when to use each plugin type. We'll round out this discussion by helping you decide if your changes would be something you could even give back to the product as open source!
The Liferay in Action MEAP was updated today and now includes all the chapters that will be a part of the book. I still have some editing to do, but we're getting pretty close now. From the Manning announcement:
What's new:
Chapter 1, "Liferay is a different portal," has been revised.
Chapter 2, "Appray: Development at light speed," has been revised.
Chapter 3, "A data-driven portlet made easy," has been revised.
Chapter 4, "MVC the Liferay way," has been revised.
Chapter 5, "Providing your own site design with themes and layout templates," has been revised.
Chapter 9, "Liferay architecture and extension points," has been revised.
Chapter 10, "A tour of Liferay APIs," has been added.
The new chapter 10 provides a tour of Liferay APIs that you'll want to use in your applications. You can give your applications friendly URLs, organize larger applications with ActionCommands, use the message bus, schedule jobs, index your data, and more. Chapters 1-5 and 9 have been updated in response to reader and reviewer feedback.
Next, the book will be moving into production, where it will get a copy edit and will be typeset for printing.
What's next:
I have to get the manuscript for its final technical review. Once that's done, there will be another batch of revised chapters in the next update. So you can still subscribe to the MEAP, and now is a great time to do it, since the book now has all its chapters. You can get a 35% discount on it by clicking here or on any of the banners for it that you see on liferay.com.
To anyone who's been reading, thank you for your valuable comments and feedback. We're on the home stretch now!
Well, we're marching right along on our way to completion. Manning has just updated the Liferay in Action MEAP with the next-to-last chapter, on Ext plugins. With this chapter, you learn all about Ext plugins, what they're for, and how you can use them. You also learn about the core of Liferay: what it's composed of and how it's architected. Along with this, you get a complete tour of how Liferay composes a page from browser request to page delivery. And since now all the plugin types have been covered, we discuss best practices for Liferay development, including guidelines on when to use each plugin type.
I'm currently working on the last chapter of the book, so we're almost there! Chapter 10 will discuss a list of Liferay APIs you can use that can greatly enhance your site. You'll be surprised at all the things Liferay gives you, such as large project organization, friendly URLs, view level permission filtering, indexing, and a lot more!
I'm really excited to be this close to being done. It's not too late to jump onboard the bus and get the book as I write it. I look forward to hearing your comments and feedback on the new chapter!
The Liferay in Action MEAP update came out on Christmas Eve, so I wanted to make sure that I let everyone knew about it in case you, like me, have been offline for the past few days. So Merry Christmas from me, Liferay and Manning: you get a whopping big chapter which covers a lot of ground:
- Liferay's asset system, which undergirds a lot of other features
- Workflow-enabling your applications
- Adding tags and categories to your entities
- Using Liferay's ratings and commenting systems in your applications
- And if that weren't enough, how to do custom SQL queries in Service Builder!
I hope you all are enjoying your holidays. I sort of need to get back to mine, as my daughter is standing next to me waiting for me to finish this so we can go out and play in the snow. So I wish you all the best of holidays and a very happy New Year! And if you plan on taking a look at the MEAP, I hope it serves your Liferay needs or at least provides you some good, diverting reading material!
This has been a long time coming, and could not have been done without the help of a whole team of people, but we have finally done a redesign of the documentation pages on this site.
Our previous docs page was, I'll admit, confusing. In fact, we've heard several times that people thought the only documentation we had is in our wiki, and that is far from the truth. The wiki is great, but it's not where we place our documentation. The best place to find official documentation that is vetted and sanctioned by Liferay is on our Docs & Resources page. We spent a lot of time listening to what the community was saying, and have made these changes as a direct response, not only to provide more documentation, but also to make the docs we have easier to find.
So what will you find? First: the Portal Admin Guide for all three supported releases of Liferay (6.0, 5.2, and 5.1) is now browseable on the site, and its contents will appear in searches. This is a big change in and of itself, because previously our documentation was locked up in PDF files which weren't easily indexed (by Liferay or by search engines such as Google). We could not have done this without our awesome dev team in Spain, who provided a way for us to import the documentation and convert it automatically to Liferay Web Content.
In addition to this, we now have more documentation. The Portal Admin Guide for Liferay 6 has been comprehensively updated and now covers Liferay's CMS and Liferay 6 specific features such as workflow. The print edition adds more than 100 pages of material, and the rest of the content has been updated to cover the new user interface. We don't have the physical print book ready yet, but watch for it soon.
As you probably know, Liferay's official development documentation is contained in the Manning book Liferay in Action, which as of this writing has about three and a half chapters to go. You can get it electronically now as part of Manning's early access program here. If, however, you want to learn about Liferay development without parting with any cash, we've written a Developer's Guide which is free. This way, you can get some help getting started with Liferay development, and if you find that you want to go deeper, you can then go get the book. Why have we done it this way? Because it gives you the best of both worlds: we love the zero barriers to entry that open source provides, and we want to make it as easy as possible for developers to learn how to build on our platform. We're also very excited to be working with a publisher like Manning who has a reach in the industry that we don't have.
You'll find all of this stuff on the new Docs & Resources page. Above all, this is a response to you, our community, without whom we could not have gotten this far. I hope that it helps you to better find the information you're looking for. We're working hard to get more materials out there all the time. Please keep giving us feedback on how we're doing, because we want to get it right.
Ever since I first started working for Liferay, I had always planned to release two books: the Liferay Portal Administrator's Guide, and the Liferay Portal Developer's Guide. They were designed to be companion books: one (the Administrator's Guide) would help users get started with Liferay by showing how to install, configure, and use Liferay out of the box. The other (the Developer's Guide) would help developers to use Liferay as a platform to build web sites. I was successful in completing three editions of one of these books: the Administrator's Guide. The other one, though, has been a bit more elusive. If you've read the Administrator's Guide, you've probably even seen the Developer's Guide mentioned in the text. And on more than one occasion, I've had to answer the question, "Where is the Developer's Guide?"
For lots of different reasons, work began on the Developer's Guide, and then it stalled, and then it began again. Part of it is me: I find it a lot easier to write about functionality that the engineers implement than to write my own code and then explain it. Last year, though, I was doing pretty well with it and had hoped to release a "preview" or "rough" version for 5.2.
But now something really exciting has happened. Liferay has partnered with Manning Publications to release Liferay in Action, the official guide to Liferay Portal development! This is a book for Liferay developers which focuses on creating applications and web sites on the Liferay Portal platform, and it fills the same need (and then some) that the Liferay Developer's Guide would have filled.
This book covers portal development on Liferay 6. Though it is still a work in progress, you can get it right now, thanks to Manning's Early Access Program (MEAP). I have been working really hard on it for the past few months, with the desire to deliver the best possible product to Liferay developers who have been waiting so long. If you want the book early or if you feel like you want to help, you can get involved with the book right away by taking advantage of the Early Access Program. You then get the chapters as I deliver them, and can give me feedback on what works and what doesn't. If you want to get involved, head over here:
I just want to thank all of you who have been so patient in waiting for this--we've seen your forum posts and are doing the best we can to help. I'm very thankful for Manning and their early access program which allows us to get material to you faster while it's still being produced. My blog has been rather scarce of late, but now that I can finally annouce this, I hope to keep it up to date as a journal of sorts of my progress. So even if you don't want to get involved in the MEAP right away, hopefully I'll be able to give you a bird's eye view of what's going on.
With great (relief? fanfare?) enthusiasm, I am happy to announce the availability of the Liferay Portal Administrator's Guide, Third Edition. Now coming in at a more hefty 313 pages, this is the best Admin Guide that we have ever released. It's been updated to cover Liferay 5.2.x, which means coverage of the Liferay Control Panel. It also includes a new chapter on Liferay's collaboration suite, in addition to hundreds of other improvements, including an expanded performance tuning section.
Thanks are due not only to the many Liferay-ers who helped me out with technical details (your names are listed in the front of the book), but also to the many members of the Liferay community who have been so good with feedback and wiki articles. Seriously, the book would not be nearly as complete as it is without you. I think we are doing amazing things together and providing a great piece of software that can serve everybody from the largest corporation to the smallest non-profit.
I am pleased to announce the availability of the Liferay Administrator's Guide, Second Edition. The Guide has now been exhaustively gone through and updated to support Liferay 5.1 (and below). But there's more than that: a new chapter on Portal Administration has been added which covers how to design a site using Liferay and how to use Liferay's administrative portlets.
Beyond the updates and the new chapter, there are new sections of documentation sprinkled throughout the book in appropriate places. For example, the book now covers how to upgrade an existing Liferay installation. The new pluggable search is also covered, and you will be shown how to configure a separate search server to use in a clustered environment.
In all, this is a significant update to the documentation. As usual, it's available as both a paperback book and as a downloadable PDF. The book has been reformatted so that it is not so large as it previously had been, and should now fit on your bookshelf nicely with the rest of your computer books. In fact, it's the exact same size as the O'Reilly Nutshell series books. Mine is sitting on my shelf right next to XML in a Nutshell, and it fits in really well.
Some people might be wondering why I've been so scarce around here. The reason for this is that I and my team have been heads-down working on a couple of brand new training courses that we will soon be offering.
We've just put the finishing touches on both courses, and I am excited about what's in store.
First up is the new Portal Administration course. This is a two-day introductory course which focuses on designing a portal, portal administration, and content management. It covers many of Liferay's included portlets, including the wiki and the shopping cart, and shows you how to administer all the aspects of a Liferay Portal, including tags, assets, documents, polls, and more. You will also get to delve deeply into Liferay's Content Management system, creating structures and advanced templates to display them.
Because this course now exists, we have removed all of the portal administration and content management stuff from the Liferay Development course, turning that course into a concentrated three-day course on Liferay development only. So now developers can take a course that covers just development on the Liferay platform, and portal administrators can take a course that covers just portal administration!
If that weren't enough, we have also added a Liferay System Administration course. This is another three-day course that covers Liferay from a server administrator's point of view. It covers everything from installing Liferay for the enterprise (both configuring bundles for the enterprise and installing Liferay on an existing application server) to administering Liferay, to plugin management, and more. An entire day of this course is spent creating a two-node load balanced Liferay cluster.
You will also learn some techniques for performance tuning Liferay, as well as how to back up a Liferay portal. There's more, but I don't want to give it all away.
Keep your eyes peeled on the Liferay training pages (under the Services menu) to see when you can begin signing up for these new courses. These courses are a direct result of feedback from those who have taken our training in the past, and it is our hope that they will serve you better.
Liferay is a big application, made up of thousands of files. That's not the kind of typical, everyday application that your system is used to dealing with.
Everywhere I've worked (including Liferay), I've made a point of advocating to the IT department that a developer needs both a different kind of machine and a different kind of configuration than the regular worker. Thankfully, that's well understood here, and I've had the freedom to pretty much configure things the way I would be able to work best.
The advent of desktop Linux, however, has been both a boon and a detriment for the community that uses it. Linux on the desktop is now much easier to use and to install, but that comes at a price: many times the configuration that is shipped by default is only optimal for the typical desktop user. For developers, like other commercial, proprietary operating systems, there are OS settings that need to be tweaked. Sometimes you know what to do right away after the install, and sometimes you run into an issue that causes you to both learn a little more about your OS of choice and to come up with one more setting that needs to be customized when you build your new box.
Recently, I've been doing a lot of training slides. This activity tends to happen in fits and spurts: I spend a bunch of time trying to get something to work, and then in a burst, I create a whole bunch of slides about it. This lets me do stuff that I haven't necessarily done before, which generally means I run into a bunch of problems I haven't had before.
This week, I've been profiling Liferay and comparing the results of different configurations. I've been working specifically with the Netbeans profiler, for two reasons: 1) It's free and open source--which means we're free to use it in training, and 2) I've never used it before. So I wanted to see if it would work for the scenario I've got going. No guarantees here--I'm still working on it. :-)
Anyway, I kept having Netbeans crash (actually it wouldn't crash--it would just become unresponsive). Checking my .netbeans/6.1/var/log/messages.log file, I found that it was unable to open any more files because of a "Too many open files" exception. At first, I thought this was a Netbeans issue, because I never had this problem with Eclipse, but everything I found online pointed to an issue with the way the OS was configured.
I use Kubuntu, which is definitely a desktop OS. By default, Kubuntu (and presumably, Ubuntu) is configured to allow 1024 open files per shell session. Liferay easily exceeds this number, and this is the problem Netbeans was running into. I found several things you can do to fix this, though, and it all has to do with tweaking the number of files that are allowed to be opened by a user on Linux.
First, take a look at your /etc/sysctl.conf file. In that file is a property called fs.file-max. This should be set to 200000 or above. On Kubuntu, this was already set properly. If yours isn't, go ahead and change it, but this won't solve the problem by itself.
Next, there's a setting for shell level file limits. You can check what your current one is by using the command ulimit -n. Mine was 1024, and that was the problem.
To change this setting, you need to edit the file /etc/security/limits.conf. Add the following lines to the file: * soft nofile 5000* hard nofile 5000
This basically changes the setting from 1024 files to 5000 files for all users. I had no idea how much I was going over the limit, so this seemed like a good setting. Save the file and then reboot your machine, and everything should be fixed.
So if you find yourself with this error, it's likely because Liferay is a very large project, and your default settings are simply not sufficient to handle it. Linux is by design tweakable, so it's not so hard to fix.
Here's a good story for a Friday: I'm running around today opening windows because it's hot, but not so hot as to turn on the air conditioner. I'm a little frustrated trying to get something to work, and so I want to get back to it. Because of this, I'm racing around the house trying to get the windows open as fast as possible.
Last room to enter is my three year-old daughter's room, and what I saw made me stop and smile:
She put an old diaper on one of her stuffed animals, and then put it to bed. Priceless. | [
1,
2180,
365,
9633,
388,
29915,
29879,
4644,
3082,
10667,
1066,
1974,
29892,
306,
9326,
278,
16800,
20847,
3097,
310,
263,
716,
4700,
591,
29915,
345,
8906,
10816,
363,
1906,
1058,
671,
365,
9633,
388,
322,
2436,
775,
373,
967,
7481,
29889,
1334,
1246,
445,
3268,
278,
365,
9633,
388,
10682,
261,
8527,
29889,
13,
13,
4013,
3268,
338,
278,
716,
3271,
363,
365,
9633,
388,
29915,
29879,
5106,
322,
29892,
491,
278,
931,
372,
4947,
714,
310,
21762,
29892,
365,
9633,
388,
29915,
29879,
7881,
6515,
29889,
2860,
13442,
1781,
16705,
515,
1749,
1404,
7881,
363,
2440,
29892,
591,
6363,
393,
278,
982,
591,
5279,
9805,
1749,
5106,
750,
777,
4828,
29901,
13,
13,
14804,
3064,
29892,
2305,
723,
2740,
2845,
373,
301,
9633,
388,
29889,
510,
470,
278,
2740,
6012,
310,
1009,
7348,
29892,
363,
263,
11261,
896,
4312,
304,
1073,
1048,
29889,
438,
15535,
29892,
278,
2740,
2582,
723,
1513,
963,
304,
385,
4274,
297,
365,
9633,
388,
29915,
29879,
3772,
29875,
29889,
450,
3772,
29875,
975,
278,
2440,
756,
4953,
263,
2058,
988,
1532,
29899,
524,
2509,
287,
365,
9633,
388,
22873,
322,
7881,
5144,
505,
7180,
7456,
20766,
920,
304,
671,
5164,
5680,
310,
365,
9633,
388,
29889,
7311,
278,
3772,
29875,
756,
1063,
373,
278,
3268,
363,
577,
1472,
29892,
5087,
29867,
304,
7115,
967,
7456,
5051,
1880,
29889,
7753,
2466,
306,
29915,
345,
1063,
21272,
292,
515,
278,
9939,
7013,
27487,
393,
278,
3772,
29875,
338,
451,
365,
9633,
388,
29915,
29879,
5106,
29892,
5087,
29915,
29879,
26190,
9225,
1838,
29915,
29873,
505,
22827,
29889,
13,
13,
2525,
7524,
29892,
3138,
29892,
278,
3772,
29875,
338,
884,
988,
1404,
5106,
5771,
304,
762,
29889,
12952,
526,
3971,
322,
769,
23181,
491,
1009,
15717,
29889,
2688,
769,
4953,
714,
310,
2635,
322,
2869,
437,
901,
10311,
1135,
1781,
29892,
491,
9348,
2305,
1058,
1303,
963,
1623,
27127,
277,
1020,
2719,
393,
892,
6839,
363,
9642,
6910,
310,
365,
9633,
388,
29889,
1152,
445,
2769,
29892,
591,
526,
3240,
8491,
278,
365,
9633,
388,
3772,
29875,
29889,
512,
967,
2058,
29892,
591,
29915,
345,
2825,
365,
9633,
388,
29886,
1381,
29892,
263,
716,
3772,
29875,
363,
16184,
365,
9633,
388,
29892,
5849,
29892,
322,
1722,
2752,
4958,
29889,
13,
13,
4806,
29915,
345,
884,
6091,
16705,
393,
1749,
1857,
5106,
6515,
526,
2898,
304,
23624,
29889,
1670,
29915,
29879,
263,
2769,
363,
445,
29901,
896,
29915,
276,
925,
4544,
6910,
310,
5106,
393,
29915,
29879,
19098,
408,
8277,
29889,
1334,
29915,
345,
1286,
3939,
393,
29889,
450,
365,
9633,
388,
10682,
261,
8527,
338,
13931,
964,
3023,
13926,
29901,
13,
13,
4205,
11911,
29901,
450,
8118,
310,
365,
9633,
388,
29915,
29879,
1404,
29899,
12236,
287,
5106,
505,
1063,
337,
29899,
326,
351,
1312,
363,
445,
4004,
29889,
13960,
322,
4818,
338,
278,
5106,
363,
365,
9633,
388,
28612,
29889,
5293,
263,
716,
5067,
29892,
372,
29915,
29879,
1568,
6775,
304,
1284,
278,
5106,
366,
29915,
276,
3063,
363,
29889,
450,
10307,
11367,
4004,
3743,
1749,
10307,
11367,
5106,
29889,
450,
10034,
22812,
4004,
338,
363,
365,
9633,
388,
6757,
6343,
4097,
16978,
29901,
372,
3743,
5106,
363,
15476,
322,
2295,
3864,
365,
9633,
388,
29892,
3704,
16993,
3241,
29889,
13,
13,
21956,
29901,
910,
338,
278,
4004,
363,
18777,
29889,
1932,
591,
8688,
372,
29892,
591,
4433,
20278,
29892,
11644,
338,
1749,
20026,
29892,
322,
920,
674,
896,
864,
304,
5110,
1048,
365,
9633,
388,
9808,
1724,
591,
10972,
471,
393,
591,
505,
263,
12875,
310,
22176,
29901,
777,
864,
304,
5110,
297,
263,
4331,
29899,
1609,
29899,
10568,
13460,
29892,
322,
777,
2307,
505,
263,
2060,
322,
864,
263,
4996,
1234,
304,
263,
1139,
29889,
1763,
9080,
26077,
29892,
591,
2825,
6509,
10898,
363,
18777,
716,
304,
365,
9633,
388,
1058,
864,
304,
1369,
515,
22728,
29892,
322,
591,
2825,
25410,
363,
18777,
297,
278,
29214,
310,
263,
2060,
1058,
864,
304,
5110,
1554,
9098,
29889,
1126,
29892,
310,
3236,
29892,
591,
505,
1749,
3407,
5106,
577,
366,
508,
1106,
701,
23649,
29892,
4055,
9562,
29892,
360,
24495,
29879,
29892,
17240,
10561,
29892,
322,
4426,
10561,
29889,
13,
13,
7439,
12654,
403,
29901,
910,
338,
278,
716,
3271,
363,
365,
9633,
388,
29915,
29879,
7881,
29889,
1094,
278,
7378,
748,
491,
29892,
591,
29915,
645,
367,
9725,
1218,
901,
322,
901,
310,
1749,
7881,
6515,
1244,
29889,
15447,
29892,
372,
3743,
2472,
373,
920,
304,
29126,
304,
365,
9633,
388,
29892,
278,
263,
1454,
882,
28487,
365,
9633,
388,
29886,
1381,
29892,
278,
4682,
7014,
1813,
29892,
322,
278,
16705,
363,
6762,
29889,
13,
13,
29956,
424,
304,
29126,
304,
278,
5106,
763,
366,
5505,
2748,
1258,
411,
278,
3772,
29875,
29973,
1334,
7359,
29915,
29873,
2175,
366,
714,
29889,
512,
2114,
29892,
591,
12853,
20706,
304,
1749,
5106,
29889,
1126,
1244,
29915,
29879,
278,
1855,
413,
6541,
29901,
1363,
591,
505,
263,
3815,
310,
2305,
9076,
292,
322,
13271,
1749,
5106,
29892,
366,
508,
437,
278,
1021,
2655,
366,
1258,
411,
278,
3772,
29875,
29889,
3323,
2415,
372,
322,
9566,
1048,
372,
29889,
1334,
29915,
645,
2125,
2562,
310,
12515,
278,
5106,
366,
9752,
701,
304,
2635,
411,
599,
278,
3620,
393,
3799,
304,
365,
9633,
388,
297,
278,
5434,
29889,
887,
2113,
29915,
29873,
505,
304,
15982,
470,
4459,
27719,
1048,
596,
18397,
5106,
1449,
29991,
8669,
29892,
366,
508,
4459,
1781,
13797,
393,
366,
1754,
385,
4100,
11896,
304,
365,
9633,
388,
29892,
1363,
20706,
1371,
1749,
7881,
29889,
1670,
526,
2211,
5837,
297,
607,
366,
508,
29126,
29901,
13,
13,
6103,
292,
5923,
5106,
29889,
7569,
8424,
310,
5106,
373,
278,
3268,
3743,
385,
7641,
411,
402,
2985,
2826,
29889,
910,
16869,
366,
748,
304,
1749,
5106,
9810,
322,
671,
402,
2985,
29915,
29879,
8492,
304,
3863,
5106,
1492,
297,
596,
4714,
29889,
1932,
366,
29915,
276,
7743,
29892,
366,
508,
3638,
263,
8206,
2009,
304,
278,
301,
9633,
388,
29899,
2640,
9810,
29892,
322,
591,
29915,
645,
9076,
596,
11217,
322,
5503,
963,
964,
278,
3268,
29889,
13,
13,
9832,
1218,
716,
5106,
29889,
7569,
4004,
310,
278,
365,
9633,
388,
10682,
261,
8527,
756,
263,
6590,
4138,
297,
1749,
9810,
29889,
512,
393,
4138,
338,
1790,
4138,
2000,
716,
29899,
18569,
29889,
960,
366,
505,
5106,
363,
263,
4682,
591,
1016,
29915,
29873,
5279,
4612,
29892,
366,
508,
9752,
372,
1492,
964,
445,
4138,
29889,
887,
1016,
29915,
29873,
505,
304,
1073,
988,
372,
5771,
297,
278,
1791,
310,
1749,
10561,
470,
3099,
763,
393,
29889,
1334,
1584,
505,
263,
6473,
2471,
313,
15735,
29892,
8074,
29897,
322,
263,
9853,
934,
313,
7685,
29897,
393,
16869,
366,
25267,
596,
4485,
3204,
297,
4544,
1434,
366,
9752,
372,
29889,
3323,
2415,
372,
304,
278,
301,
9633,
388,
29899,
2640,
9810,
29889,
13,
13,
1323,
1091,
17068,
304,
365,
9633,
388,
29886,
1381,
29889,
1334,
1603,
505,
263,
3772,
29875,
29892,
541,
372,
29915,
29879,
363,
16184,
365,
9633,
388,
322,
1722,
2752,
4958,
29889,
15447,
29892,
372,
29915,
29879,
5051,
16079,
29892,
322,
591,
817,
304,
5445,
372,
714,
29889,
1334,
1033,
671,
15848,
363,
599,
17690,
310,
4958,
393,
526,
22593,
1662,
304,
365,
9633,
388,
29892,
763,
315,
29924,
3235,
322,
16698,
1988,
29892,
408,
1532,
408,
365,
9633,
388,
22001,
763,
498,
2004,
17440,
322,
6692,
5373,
2700,
29889,
13,
13,
797,
14382,
29892,
306,
925,
864,
304,
1827,
393,
591,
29915,
345,
8688,
445,
3268,
363,
1749,
7881,
310,
4160,
322,
18777,
29889,
2178,
2874,
1602,
12112,
892,
1754,
2729,
373,
16705,
515,
1749,
7881,
29889,
1334,
1073,
591,
29915,
276,
451,
4922,
29892,
3138,
29892,
322,
591,
1122,
451,
505,
15468,
4129,
366,
29915,
345,
1063,
14509,
502,
975,
278,
2440,
29889,
1152,
393,
2769,
29892,
322,
1363,
591,
29915,
276,
297,
21762,
322,
508,
1603,
1735,
2712,
29892,
727,
29915,
29879,
263,
16705,
1544,
472,
278,
5970,
310,
1432,
1813,
29889,
1334,
12853,
596,
16705,
29889,
3872,
29915,
29873,
1073,
988,
304,
1369,
29973,
1128,
1048,
6257,
411,
1749,
6509,
10898,
29889,
910,
338,
263,
14982,
716,
7225,
591,
29915,
276,
3907,
29892,
278,
6509,
10898,
9455,
29915,
29873,
4866,
3447,
29892,
322,
591,
864,
304,
1207,
1854,
591,
29915,
276,
2805,
372,
1492,
29889,
3967,
5183,
278,
937,
6509,
2224,
322,
1235,
502,
1073,
825,
366,
1348,
29889,
2811,
372,
1371,
1812,
16697,
679,
4687,
411,
365,
9633,
388,
29973,
13,
13,
2816,
5505,
366,
29915,
276,
901,
8852,
297,
10426,
5849,
373,
365,
9633,
388,
29889,
1334,
505,
263,
3353,
731,
310,
10426,
25410,
393,
366,
1033,
1303,
322,
1235,
502,
1073,
565,
896,
29915,
276,
29425,
278,
2791,
373,
365,
9633,
388,
10426,
5849,
29889,
13,
13,
16894,
363,
5183,
445,
1472,
1400,
29892,
322,
3969,
363,
599,
278,
2107,
16705,
591,
29915,
345,
6091,
373,
1749,
5106,
975,
278,
2440,
29889,
1334,
4966,
393,
278,
716,
365,
9633,
388,
10682,
261,
8527,
19700,
366,
1532,
408,
591,
6773,
304,
2048,
372,
29889,
13,
13,
29902,
626,
22301,
304,
7475,
346,
278,
16800,
20847,
3097,
310,
278,
1596,
12203,
310,
5293,
365,
9633,
388,
28612,
29871,
29953,
29889,
29896,
29991,
1152,
1906,
310,
366,
373,
596,
304,
267,
313,
392,
366,
1073,
1058,
366,
526,
511,
372,
29915,
29879,
2869,
1063,
3625,
1951,
28728,
29892,
541,
1058,
13623,
263,
12618,
6251,
393,
338,
6369,
373,
28728,
17724,
29973,
13,
13,
3112,
29915,
29879,
263,
4802,
3143,
29889,
1334,
29915,
276,
2805,
3802,
304,
29871,
29955,
29900,
29900,
6515,
1286,
297,
1596,
29892,
322,
393,
947,
451,
3160,
278,
4426,
3407,
29892,
607,
591,
1348,
338,
2253,
408,
385,
7395,
3407,
1135,
6433,
287,
964,
278,
3143,
313,
11242,
29892,
591,
508,
5224,
278,
8666,
565,
591,
5566,
895,
1906,
6515,
467,
306,
864,
304,
18145,
5485,
278,
2898,
664,
310,
365,
9633,
388,
29915,
29879,
19320,
5485,
15057,
3815,
363,
263,
4982,
1532,
2309,
29901,
8507,
12448,
1989,
29892,
14317,
27899,
294,
29892,
435,
5340,
390,
6241,
29892,
322,
315,
1486,
8335,
351,
29889,
512,
6124,
304,
1438,
18239,
29892,
777,
916,
1820,
17737,
29560,
3160,
5011,
383,
2235,
1089,
29892,
20975,
8413,
1829,
29892,
5765,
7169,
29892,
12208,
8903,
5166,
29874,
29892,
4485,
940,
14997,
29892,
322,
9937,
25206,
438,
655,
3169,
29889,
13,
13,
6295,
565,
366,
763,
4802,
29892,
12003,
8277,
373,
596,
528,
761,
29892,
7148,
6743,
411,
278,
365,
9633,
388,
20194,
373,
963,
29892,
2020,
451,
5839,
697,
701,
29973,
13,
13,
2776,
3236,
29892,
591,
29915,
276,
451,
25480,
727,
29889,
306,
29915,
29885,
297,
278,
29214,
310,
1985,
373,
278,
15877,
1847,
310,
278,
321,
5467,
1873,
310,
278,
3143,
29892,
607,
591,
29915,
645,
6507,
2446,
29889,
624,
388,
18515,
287,
29991,
13,
13,
6716,
310,
278,
23633,
310,
8401,
1749,
5106,
714,
310,
8153,
276,
27247,
322,
964,
4485,
3204,
338,
393,
4485,
3204,
29436,
304,
1784,
9805,
519,
21971,
29889,
1334,
29915,
276,
2307,
17415,
372,
964,
365,
9633,
388,
1856,
2793,
363,
2479,
373,
278,
1856,
3268,
29889,
306,
750,
2337,
20458,
304,
9805,
884,
297,
11328,
322,
1596,
3402,
29892,
322,
701,
2745,
10325,
29892,
306,
9146,
304,
671,
278,
1722,
2752,
360,
3557,
1824,
317,
699,
8262,
304,
437,
577,
29889,
16025,
310,
366,
1058,
14283,
278,
5193,
393,
8507,
12448,
1989,
322,
306,
1258,
472,
278,
8598,
10667,
1066,
1974,
1073,
445,
29892,
408,
372,
471,
2869,
263,
760,
310,
278,
2243,
2247,
29889,
13,
13,
29902,
10398,
777,
931,
15661,
304,
1653,
278,
3143,
5912,
297,
317,
699,
8262,
29889,
5806,
317,
699,
8262,
338,
263,
2107,
1824,
29892,
372,
756,
27028,
411,
1749,
27321,
29892,
777,
310,
607,
526,
451,
317,
699,
8262,
29915,
29879,
12570,
29892,
322,
777,
310,
607,
526,
29889,
450,
24842,
2228,
306,
750,
471,
393,
5642,
310,
278,
4558,
723,
1053,
964,
317,
699,
8262,
411,
278,
1426,
29889,
306,
750,
304,
437,
963,
599,
7522,
322,
337,
29899,
1202,
599,
278,
5777,
1980,
29889,
306,
10398,
1048,
1023,
470,
2211,
11405,
2599,
445,
29889,
13,
13,
29903,
3096,
625,
372,
304,
1827,
393,
306,
4720,
16387,
306,
4312,
304,
1284,
1790,
5780,
29892,
470,
306,
29915,
29881,
3117,
367,
28321,
278,
3143,
5912,
1047,
5410,
445,
11801,
29889,
450,
11301,
5780,
591,
671,
363,
1749,
4485,
3204,
489,
29925,
392,
542,
489,
15189,
11286,
29186,
29892,
263,
1134,
29899,
26740,
5780,
393,
29915,
29879,
1063,
2820,
363,
263,
1472,
931,
29892,
322,
1554,
393,
7335,
1267,
29892,
263,
12755,
12251,
5121,
310,
7903,
306,
7359,
29915,
29873,
3595,
297,
1784,
2440,
29892,
1898,
304,
679,
592,
964,
29892,
9360,
29892,
1048,
29871,
29896,
29945,
470,
577,
2440,
8020,
29889,
306,
29915,
345,
28305,
372,
599,
1438,
2440,
297,
7853,
310,
5164,
6757,
393,
4846,
592,
263,
399,
29979,
5425,
29956,
29979,
29954,
1776,
964,
590,
10701,
29889,
13,
13,
11284,
29892,
297,
445,
1206,
29892,
29186,
7160,
278,
2462,
29892,
322,
306,
7359,
29915,
29873,
3595,
7335,
1267,
297,
577,
1472,
393,
5505,
540,
2113,
29915,
29873,
1584,
505,
278,
15130,
304,
1827,
376,
29902,
5429,
366,
577,
1213,
13,
13,
1576,
11301,
304,
29186,
21634,
599,
278,
4558,
29892,
3412,
411,
1009,
5777,
1980,
29889,
422,
29890,
1312,
411,
921,
295,
403,
29916,
29892,
278,
8133,
6390,
770,
29892,
322,
14568,
310,
1361,
29899,
25379,
6751,
310,
278,
934,
313,
4716,
591,
29915,
645,
3345,
403,
2446,
931,
511,
591,
1286,
505,
263,
11328,
29892,
4359,
13907,
363,
27256,
29892,
322,
607,
591,
29915,
345,
1754,
3625,
408,
263,
5142,
373,
278,
10854,
362,
1813,
29889,
739,
925,
4225,
385,
2380,
472,
445,
1298,
29892,
607,
338,
1554,
591,
29915,
276,
1985,
373,
29889,
13,
13,
23036,
591,
7359,
29915,
29873,
1063,
7475,
3277,
372,
1568,
29892,
366,
29915,
276,
3117,
1185,
2519,
393,
591,
29915,
345,
10325,
4687,
3907,
4723,
368,
11217,
304,
278,
365,
9633,
388,
5106,
29889,
910,
338,
697,
310,
278,
9590,
591,
7359,
29915,
29873,
6369,
278,
11328,
470,
278,
3143,
3447,
29892,
2466,
1286,
591,
29915,
276,
2805,
1568,
17649,
304,
2599,
925,
393,
29889,
13,
13,
6246,
306,
864,
304,
671,
445,
2913,
304,
1298,
714,
825,
29915,
29879,
1063,
4784,
10325,
29892,
577,
366,
508,
1074,
599,
278,
2107,
716,
2793,
591,
29915,
345,
1063,
1985,
577,
2898,
373,
29889,
1126,
1156,
445,
29892,
306,
29915,
645,
367,
5007,
263,
4723,
368,
12618,
6251,
20766,
4129,
393,
29915,
29879,
7695,
297,
393,
4723,
29889,
910,
338,
1568,
6775,
1135,
1494,
402,
2985,
25741,
29892,
322,
372,
4076,
502,
278,
15130,
304,
8293,
825,
29915,
29879,
1556,
4100,
304,
366,
29889,
2193,
29892,
297,
2507,
29892,
6911,
502,
304,
4529,
278,
7536,
1907,
363,
738,
701,
11506,
5106,
29889,
13,
13,
6246,
937,
29892,
306,
817,
304,
1708,
4380,
701,
29889,
1763,
437,
393,
29892,
306,
29915,
29885,
2675,
304,
1886,
284,
263,
7303,
310,
18533,
393,
306,
29915,
29885,
18987,
304,
2198,
411,
8507,
12448,
1989,
472,
365,
9633,
388,
29915,
29879,
4644,
3082,
10667,
1066,
1974,
2446,
4723,
29889,
7311,
310,
278,
6198,
2159,
310,
278,
18533,
29892,
697,
620,
1891,
2253,
1135,
278,
916,
29889,
2169,
538,
2222,
310,
393,
29892,
372,
3697,
925,
920,
1568,
310,
278,
716,
4911,
16886,
322,
10682,
261,
16886,
338,
716,
5518,
393,
591,
29915,
345,
2715,
363,
278,
29871,
29953,
29889,
29896,
6507,
29889,
13,
13,
6730,
29892,
278,
4911,
16886,
29901,
8084,
29892,
278,
10682,
261,
16886,
29901,
9788,
29892,
1244,
29915,
29879,
825,
591,
2715,
445,
4723,
29901,
13,
13,
6716,
310,
278,
2712,
591,
29915,
345,
1063,
1985,
373,
975,
278,
4940,
2846,
7378,
338,
263,
4866,
337,
6388,
2133,
310,
5293,
365,
9633,
388,
28612,
29892,
278,
5106,
363,
1749,
13449,
4034,
3234,
29892,
365,
9633,
388,
28612,
29889,
13,
13,
2831,
278,
29871,
29953,
29889,
29896,
6507,
11412,
29892,
591,
8459,
304,
19508,
278,
3143,
313,
277,
1304,
304,
367,
2000,
278,
365,
9633,
388,
28612,
24510,
1061,
29915,
29879,
16886,
29897,
577,
393,
372,
723,
2253,
9432,
967,
2793,
29889,
1152,
3196,
27474,
29892,
278,
376,
12754,
16886,
29908,
313,
294,
591,
29915,
29881,
1246,
372,
363,
3273,
29897,
750,
1063,
901,
1135,
263,
10754,
363,
365,
9633,
388,
6343,
4097,
29901,
372,
884,
11122,
263,
15678,
3489,
310,
1095,
1404,
5106,
373,
365,
9633,
388,
28612,
29915,
29879,
9863,
29889,
1105,
363,
29871,
29953,
29889,
29896,
29892,
591,
19533,
372,
577,
393,
967,
3611,
723,
1993,
825,
471,
2869,
2768,
278,
3143,
29889,
13,
13,
13555,
263,
4098,
470,
1023,
29892,
2466,
29892,
591,
16387,
393,
445,
471,
451,
3307,
29889,
1763,
19781,
367,
263,
4866,
1404,
29915,
29879,
10754,
29892,
278,
3143,
29915,
29879,
2793,
4312,
304,
367,
337,
6388,
1891,
29889,
24176,
411,
365,
9633,
388,
29915,
29879,
10969,
15057,
322,
22557,
6471,
29892,
591,
10398,
263,
7303,
310,
7378,
8401,
29892,
337,
6388,
5281,
29892,
6480,
29892,
322,
3838,
29885,
389,
292,
278,
1426,
29889,
1763,
437,
445,
29892,
591,
937,
2825,
385,
27887,
310,
825,
1749,
376,
680,
284,
29908,
1404,
29915,
29879,
10754,
723,
1106,
763,
29889,
1334,
769,
6153,
1749,
5923,
2793,
2820,
304,
1993,
278,
27887,
29889,
9788,
29892,
591,
3512,
1549,
599,
278,
1426,
322,
10597,
287,
4129,
714,
29889,
13,
13,
1576,
1121,
338,
825,
366,
1074,
373,
365,
9633,
388,
29915,
29879,
5106,
1813,
29889,
1205,
591,
9455,
29915,
29873,
2309,
3447,
29889,
13,
13,
10401,
337,
29899,
449,
1915,
292,
278,
2793,
363,
278,
3143,
29892,
591,
16387,
393,
777,
5680,
892,
4567,
29889,
8680,
2446,
3414,
29892,
769,
29892,
338,
304,
5445,
1906,
330,
2547,
29889,
9038,
591,
29915,
345,
2309,
393,
29892,
591,
29915,
645,
367,
7960,
304,
9805,
278,
3143,
297,
916,
21971,
29892,
1316,
408,
1596,
29892,
11328,
29892,
322,
382,
7056,
29933,
29889,
13,
13,
29902,
864,
304,
6452,
599,
310,
1906,
1058,
3796,
577,
2898,
373,
445,
337,
6388,
2133,
29901,
435,
5340,
390,
6241,
29892,
4485,
940,
14997,
29892,
322,
8507,
12448,
1989,
29892,
408,
1532,
408,
2155,
678,
686,
322,
21801,
7756,
2872,
363,
1009,
27323,
29889,
14832,
591,
29915,
276,
599,
365,
9633,
388,
22873,
29892,
306,
4966,
366,
1073,
393,
7881,
5144,
526,
12853,
304,
5221,
403,
29889,
2216,
26077,
338,
263,
13897,
29889,
960,
366,
5360,
365,
9633,
388,
322,
366,
763,
304,
2436,
29892,
366,
526,
901,
1135,
12853,
304,
1371,
502,
29889,
12252,
373,
975,
304,
18546,
29889,
510,
29914,
29880,
9633,
388,
29914,
29880,
9633,
388,
29899,
2640,
304,
17229,
278,
2752,
2066,
363,
1749,
5106,
29889,
2266,
526,
777,
330,
2547,
393,
591,
817,
304,
5445,
29901,
13,
13,
1451,
3314,
29871,
29896,
29900,
29901,
817,
2793,
363,
27321,
297,
8324,
1316,
408,
399,
24494,
29892,
360,
12332,
669,
8213,
29892,
322,
24771,
29889,
13,
13,
1451,
3314,
29871,
29896,
29906,
29901,
591,
817,
304,
4612,
777,
310,
278,
7968,
8324,
29892,
1316,
408,
6726,
22848,
29892,
17550,
3262,
29892,
322,
1334,
1624,
29889,
13,
13,
1451,
3314,
29871,
29896,
29945,
29901,
4225,
1855,
3186,
6455,
310,
773,
365,
9633,
388,
29915,
29879,
6993,
1904,
29892,
408,
1532,
408,
1900,
23274,
29889,
13,
13,
29902,
4966,
366,
13389,
278,
716,
3143,
29889,
306,
1073,
372,
29915,
29879,
451,
4922,
29892,
577,
738,
6589,
29892,
5155,
29892,
322,
10529,
526,
12853,
29889,
1834,
363,
5183,
29991,
13,
13,
29956,
768,
292,
338,
1554,
306,
29915,
345,
1063,
2599,
363,
263,
1472,
931,
29889,
306,
2099,
29892,
263,
1472,
931,
489,
16076,
306,
471,
1554,
763,
29871,
29896,
29906,
2440,
2030,
29889,
1763,
2367,
366,
263,
8424,
310,
18520,
373,
445,
313,
14037,
6820,
3448,
590,
5046,
511,
306,
471,
29871,
29896,
29906,
2440,
2030,
297,
278,
29871,
29896,
29929,
29947,
29900,
29879,
29889,
4001,
769,
29892,
263,
3287,
310,
2712,
505,
3939,
411,
4880,
304,
5007,
29901,
1734,
8744,
313,
29902,
1603,
491,
2322,
2436,
334,
13762,
845,
16242,
29930,
322,
334,
29895,
333,
29876,
17280,
29930,
511,
278,
1889,
313,
24021,
20698,
1634,
6048,
714,
1915,
292,
363,
592,
511,
322,
1556,
7148,
278,
8492,
313,
2238,
29914,
2238,
5553,
322,
5650,
29892,
304,
1134,
13236,
29892,
304,
1426,
29899,
6707,
6601,
29892,
304,
3983,
936,
6601,
467,
13,
13,
23036,
278,
365,
9633,
388,
5106,
3815,
756,
10325,
1090,
29887,
650,
263,
3287,
310,
3620,
411,
4880,
304,
278,
982,
591,
2436,
5106,
29892,
306,
2714,
372,
1795,
367,
12528,
304,
1369,
263,
12618,
3652,
373,
825,
591,
29915,
345,
2309,
322,
278,
22237,
5742,
2020,
591,
29915,
345,
2309,
372,
29892,
411,
777,
7333,
2143,
5942,
3412,
278,
982,
29889,
306,
4966,
366,
1284,
445,
8031,
29889,
960,
451,
29892,
4459,
3889,
304,
5040,
5183,
322,
4337,
373,
304,
777,
310,
278,
916,
15129,
12618,
5743,
1244,
373,
301,
9633,
388,
29889,
510,
29889,
18927,
310,
825,
4477,
297,
445,
937,
760,
338,
10579,
310,
263,
2933,
304,
263,
12618,
6251,
306,
4446,
1244,
29901,
1732,
597,
1636,
29889,
17728,
713,
29889,
1111,
29889,
2679,
29914,
12733,
29914,
29906,
29900,
29896,
29896,
29914,
13715,
29914,
29900,
29941,
29914,
1037,
1230,
29899,
16554,
29899,
6878,
357,
29899,
2238,
29899,
5426,
3179,
29889,
13,
13,
29902,
471,
4319,
472,
6584,
21555,
4034,
297,
25437,
3762,
29889,
739,
471,
278,
871,
4967,
297,
607,
306,
2355,
24277,
322,
360,
29879,
5718,
2705,
29889,
306,
10205,
839,
1549,
7483,
8721,
29892,
521,
2142,
287,
1549,
5224,
1206,
8721,
29892,
322,
8338,
3192,
373,
18580,
573,
29889,
9788,
29892,
297,
278,
29871,
29945,
386,
19468,
29892,
746,
6584,
21555,
4034,
471,
694,
5520,
263,
3236,
29892,
306,
26263,
6142,
304,
5007,
297,
599,
26091,
29892,
322,
505,
10771,
411,
393,
515,
769,
2745,
1286,
29889,
3750,
29973,
7311,
306,
29915,
29881,
1063,
5007,
297,
599,
26091,
278,
27217,
29892,
322,
278,
5469,
310,
7483,
8721,
2794,
366,
505,
304,
5232,
1623,
322,
367,
901,
16010,
29892,
4550,
20811,
901,
2814,
1821,
1426,
29889,
1126,
491,
278,
29871,
29945,
386,
19468,
29892,
5642,
310,
590,
27335,
274,
1965,
470,
1497,
3099,
1048,
372,
29889,
13,
13,
797,
29871,
29953,
386,
19468,
29892,
591,
4687,
2805,
1438,
805,
7807,
3566,
1860,
988,
366,
29915,
29881,
505,
263,
1051,
310,
716,
3838,
304,
24779,
29892,
322,
366,
750,
304,
1207,
701,
25260,
297,
607,
278,
1734,
471,
1304,
29889,
390,
1624,
1135,
7738,
263,
14928,
310,
15589,
29892,
289,
8253,
25260,
313,
29872,
29889,
29887,
1696,
450,
16500,
471,
610,
284,
12339,
287,
515,
278,
11324,
391,
1623,
9774,
306,
29915,
29881,
1207,
701,
15874,
322,
664,
278,
805,
7807,
3838,
964,
1438,
29889,
1619,
27335,
18012,
372,
29889,
306,
2337,
2355,
385,
319,
29974,
373,
590,
805,
7807,
25260,
489,
8256,
590,
27335,
1033,
1303,
963,
29889,
13,
13,
9526,
3062,
2820,
445,
931,
29892,
306,
2355,
263,
715,
6288,
376,
11991,
29915,
29879,
29908,
1134,
13236,
29889,
306,
1348,
372,
471,
871,
301,
24025,
263,
4344,
29915,
29879,
1134,
13236,
1363,
372,
471,
28773,
715,
6288,
29901,
372,
1258,
505,
11915,
298,
4850,
414,
322,
263,
1855,
18130,
6718,
29889,
1619,
16823,
29892,
1058,
338,
385,
8034,
8455,
363,
385,
14219,
459,
7486,
1190,
25339,
29892,
471,
2337,
385,
15129,
6023,
29899,
22449,
391,
29892,
322,
1183,
4689,
18819,
592,
304,
1134,
29889,
2180,
445,
1298,
297,
590,
2834,
29892,
2466,
29892,
306,
3282,
29915,
29873,
505,
1568,
671,
363,
278,
19911,
29892,
1363,
306,
8496,
29915,
29873,
671,
372,
1568,
363,
590,
3762,
664,
29892,
322,
306,
27222,
29915,
29873,
2355,
841,
278,
2969,
3447,
393,
306,
1795,
1047,
287,
388,
4953,
263,
9227,
29889,
5166,
16554,
471,
4129,
297,
3762,
664,
472,
445,
931,
29892,
322,
306,
480,
384,
287,
472,
372,
29889,
13,
13,
17351,
1048,
445,
931,
29892,
3265,
1135,
1134,
8231,
414,
29892,
7875,
5069,
13175,
750,
901,
6909,
1135,
7903,
4689,
2805,
422,
1545,
487,
29871,
29953,
29946,
322,
12113,
1944,
23226,
29889,
306,
471,
29811,
14981,
8852,
297,
1438,
2712,
29892,
541,
896,
892,
982,
714,
310,
6159,
363,
592,
29889,
306,
6456,
278,
8829,
29891,
306,
7091,
297,
29871,
29947,
386,
19468,
746,
591,
750,
1438,
24334,
262,
7613,
9279,
304,
437,
322,
590,
7875,
892,
2221,
304,
7738,
1400,
414,
322,
289,
812,
414,
851,
686,
4208,
373,
8329,
29899,
5344,
5650,
29892,
1550,
306,
471,
10771,
411,
12220,
23717,
7632,
5650,
322,
29320,
29889,
306,
1016,
29915,
29873,
6456,
825,
14209,
6296,
445,
1048,
489,
277,
471,
3117,
2805,
9642,
322,
2534,
304,
1369,
5007,
15055,
363,
3762,
489,
4187,
297,
278,
29871,
29955,
386,
470,
29871,
29947,
386,
19468,
29892,
590,
4331,
22212,
20043,
714,
363,
592,
445,
2030,
7021,
12219,
1134,
13236,
29889,
450,
2655,
1818,
29915,
345,
591,
25398,
29871,
29945,
29900,
24261,
29889,
1334,
10600,
373,
278,
29871,
29906,
299,
11904,
310,
263,
1023,
29899,
14939,
868,
10709,
29892,
322,
306,
29915,
29885,
1854,
565,
306,
3926,
13700,
372,
29892,
372,
723,
29915,
345,
7695,
1492,
1549,
278,
11904,
322,
7124,
1749,
12307,
373,
278,
2343,
29889,
739,
471,
13736,
11915,
16749,
322,
750,
4513,
6611,
393,
746,
366,
15385,
963,
29892,
3512,
982,
29892,
982,
1623,
29892,
8370,
3262,
263,
16366,
1050,
11480,
263,
1813,
29889,
2180,
278,
1095,
310,
1269,
1196,
263,
22623,
723,
9228,
29892,
1804,
9215,
393,
366,
4312,
304,
8341,
278,
1734,
366,
892,
1985,
373,
470,
7498,
9789,
403,
372,
29889,
9038,
366,
1258,
445,
29892,
366,
29915,
29881,
6159,
701,
411,
596,
2175,
1361,
322,
297,
263,
10597,
10884,
393,
590,
5637,
28585,
363,
592,
29892,
671,
263,
11785,
29892,
16735,
26610,
304,
2381,
15705,
278,
376,
572,
2579,
1699,
470,
278,
9679,
261,
278,
5650,
471,
373,
29892,
1250,
975,
304,
278,
1492,
304,
3380,
263,
716,
1196,
29889,
306,
5148,
472,
278,
4933,
297,
263,
705,
29889,
17296,
1048,
372,
1497,
304,
592,
29892,
376,
643,
2738,
5007,
1213,
13,
13,
7967,
3742,
1693,
635,
29892,
1047,
5410,
1434,
445,
1134,
13236,
7470,
29892,
306,
29915,
29881,
2309,
777,
310,
590,
937,
2586,
310,
907,
1230,
5007,
5377,
310,
590,
805,
7807,
25260,
29892,
925,
363,
2090,
29889,
306,
29915,
29881,
3971,
263,
3273,
5828,
393,
750,
1063,
20603,
491,
263,
12561,
306,
29915,
29881,
750,
29892,
322,
306,
29915,
29881,
884,
16388,
263,
14853,
2729,
373,
4104,
17880,
607,
306,
2000,
14279,
1537,
17880,
29889,
4587,
3236,
29892,
590,
11580,
25078,
526,
3117,
15029,
1135,
590,
6584,
21555,
4034,
25078,
29892,
577,
278,
14853,
2289,
750,
694,
27402,
310,
2675,
12214,
489,
4187,
306,
437,
6456,
6731,
542,
2270,
292,
372,
363,
777,
7875,
322,
1361,
292,
963,
714,
29889,
13,
13,
1576,
5828,
29892,
2466,
29892,
750,
777,
11640,
29892,
565,
916,
2305,
1033,
1303,
372,
29889,
1105,
306,
2714,
5505,
306,
1033,
1018,
590,
1361,
472,
1790,
697,
489,
1366,
931,
29892,
373,
278,
1134,
13236,
29889,
306,
471,
297,
1880,
3762,
1286,
29892,
322,
5622,
263,
19229,
770,
29892,
577,
565,
372,
3282,
29915,
29873,
664,
714,
29892,
472,
3203,
306,
29915,
29881,
4953,
263,
8473,
2393,
391,
29889,
1126,
577,
306,
7371,
263,
5828,
2000,
450,
16992,
368,
2184,
29892,
884,
658,
359,
873,
2729,
373,
263,
12561,
306,
29915,
29881,
750,
313,
29902,
471,
2534,
599,
17690,
310,
13543,
10466,
29899,
29888,
2463,
12561,
29879,
472,
278,
931,
467,
306,
10771,
445,
697,
297,
263,
7933,
4138,
322,
4846,
372,
304,
263,
5121,
310,
7903,
489,
273,
7664,
489,
517,
1303,
29889,
450,
5828,
20603,
1075,
3307,
304,
28475,
278,
4565,
310,
278,
7933,
4138,
411,
278,
1667,
15572,
391,
310,
278,
5828,
29892,
607,
306,
2714,
471,
5051,
12528,
29889,
1670,
526,
901,
4902,
1244,
29892,
541,
896,
9455,
29915,
29873,
22593,
1662,
304,
590,
1298,
29889,
13,
13,
29902,
471,
1283,
322,
2734,
29889,
2193,
5828,
1999,
2209,
27067,
964,
3196,
901,
29892,
322,
4720,
306,
4689,
7291,
393,
306,
1795,
864,
304,
437,
445,
5007,
2655,
363,
263,
8471,
29889,
19956,
590,
1880,
3762,
10591,
362,
29892,
306,
2355,
263,
9609,
489,
29874,
2313,
792,
287,
8234,
567,
29871,
29947,
29900,
29947,
29947,
411,
263,
1601,
2878,
4871,
4315,
489,
517,
2125,
304,
12755,
411,
592,
29892,
988,
306,
723,
367,
4655,
292,
297,
4223,
29889,
450,
29871,
29941,
29947,
29953,
750,
925,
2041,
714,
29892,
577,
445,
4933,
471,
2307,
9418,
339,
630,
29892,
541,
306,
18012,
278,
2655,
29889,
306,
1258,
599,
310,
590,
12755,
5007,
373,
393,
9609,
29892,
297,
10803,
16213,
29892,
988,
306,
1556,
7556,
1641,
2221,
304,
3133,
5794,
1134,
1728,
505,
304,
6159,
701,
322,
24500,
393,
715,
2579,
975,
472,
278,
1095,
310,
1432,
1196,
29889,
1126,
310,
3236,
29892,
727,
471,
278,
599,
29899,
17001,
7437,
3493,
1820,
29889,
10428,
1434,
590,
16336,
1629,
29892,
306,
20848,
263,
29871,
29946,
29947,
29953,
29892,
322,
310,
3236,
306,
1258,
590,
5007,
373,
393,
29889,
306,
505,
901,
304,
1827,
373,
445,
4967,
29892,
541,
393,
674,
505,
304,
4480,
3428,
760,
1023,
29889,
13,
13,
1576,
1298,
306,
864,
304,
1207,
1244,
338,
393,
363,
592,
29892,
278,
12247,
756,
2337,
9875,
10676,
5007,
489,
1332,
1979,
393,
5007,
338,
907,
1230,
29892,
21344,
368,
29892,
470,
16905,
29889,
28676,
411,
263,
6584,
2337,
2355,
297,
590,
982,
29892,
322,
9875,
4805,
29892,
29748,
2738,
664,
489,
262,
916,
3838,
29892,
337,
29899,
1017,
15702,
29892,
451,
304,
3585,
316,
455,
561,
3241,
825,
306,
5456,
489,
392,
306,
2714,
727,
892,
2253,
5837,
304,
671,
590,
931,
29889,
306,
29915,
29885,
9796,
304,
2436,
11486,
297,
263,
8955,
322,
432,
327,
8857,
29892,
541,
565,
306,
864,
304,
437,
738,
10676,
5007,
29892,
306,
2337,
7845,
1623,
472,
263,
12247,
29889,
2178,
1820,
24691,
526,
373,
9609,
29879,
1286,
29892,
322,
306,
11630,
505,
2702,
13133,
373,
920,
1900,
304,
2436,
373,
263,
9609,
29892,
541,
896,
29915,
645,
505,
304,
4480,
3428,
760,
1023,
29889,
13,
13,
3644,
366,
1754,
372,
445,
2215,
29892,
366,
1818,
505,
777,
4066,
297,
5007,
29892,
470,
297,
278,
1889,
310,
5007,
29889,
306,
29915,
29881,
5360,
304,
8293,
596,
13133,
297,
278,
6589,
29889,
13,
13,
29902,
29915,
345,
10972,
263,
3287,
1550,
5007,
365,
9633,
388,
297,
9123,
29889,
306,
29915,
29885,
2675,
1549,
590,
2186,
1226,
1169,
1286,
1434,
278,
3143,
5771,
1549,
967,
5802,
11412,
29892,
19932,
8333,
701,
278,
410,
344,
322,
3907,
1854,
4129,
338,
408,
2821,
408,
306,
508,
1207,
372,
29889,
9038,
310,
278,
2712,
306,
29915,
345,
750,
263,
3287,
310,
2090,
2599,
338,
278,
2181,
10519,
29889,
13,
13,
5618,
338,
263,
2181,
10519,
29973,
739,
29915,
29879,
263,
11043,
988,
1609,
366,
14944,
263,
6964,
411,
385,
385,
687,
29881,
866,
29892,
263,
5828,
29892,
470,
385,
3483,
6933,
310,
777,
2924,
393,
7726,
29879,
304,
278,
11261,
366,
29915,
276,
1048,
304,
5353,
29889,
739,
29915,
29879,
7424,
304,
4216,
278,
9591,
297,
322,
679,
1075,
470,
902,
8852,
29889,
13,
13,
3492,
1122,
451,
1073,
393,
2466,
306,
664,
363,
365,
9633,
388,
322,
505,
2309,
7047,
5849,
363,
1784,
2440,
29892,
590,
7426,
338,
451,
297,
20972,
9327,
29901,
372,
29915,
29879,
297,
4223,
29889,
1105,
306,
763,
304,
2436,
29889,
1619,
25448,
2924,
310,
5007,
338,
310,
278,
907,
1230,
2656,
29892,
322,
306,
1016,
29915,
29873,
679,
304,
437,
372,
4049,
29889,
1105,
411,
365,
9633,
388,
297,
9123,
29892,
278,
6964,
310,
263,
2181,
10519,
471,
1554,
393,
306,
2924,
310,
2355,
2289,
964,
2599,
29889,
512,
2114,
29892,
366,
1795,
1827,
393,
306,
260,
2760,
304,
679,
8988,
3448,
411,
372,
29889,
13,
13,
21140,
340,
338,
385,
1342,
310,
263,
2181,
10519,
393,
306,
750,
304,
5700,
714,
310,
278,
3143,
29889,
739,
471,
9146,
304,
14944,
278,
6964,
310,
7338,
18224,
29892,
541,
2012,
372,
3614,
373,
263,
2834,
310,
967,
1914,
322,
260,
2760,
304,
367,
263,
2586,
1320,
1461,
292,
29889,
960,
372,
892,
304,
2317,
373,
967,
1914,
29892,
306,
723,
2367,
372,
278,
3611,
2400,
29889,
1126,
565,
366,
29915,
29881,
763,
29892,
1235,
592,
1073,
297,
278,
6589,
565,
366,
1348,
445,
723,
505,
3796,
470,
565,
6200,
372,
338,
1320,
1461,
292,
29889,
13,
13,
2369,
2212,
29891,
29991,
13,
13,
1576,
678,
542,
23167,
2598,
2475,
13,
13,
26222,
2501,
263,
931,
29892,
263,
767,
281,
6946,
701,
1156,
2534,
263,
8515,
12561,
29889,
512,
393,
12561,
29892,
540,
1476,
3654,
3700,
304,
3700,
411,
263,
1641,
540,
8496,
29915,
29873,
12439,
29892,
1058,
471,
330,
677,
292,
411,
385,
7736,
29892,
17354,
29899,
29885,
11925,
29899,
2541,
29899,
29887,
1025,
298,
434,
29889,
450,
1641,
29915,
29879,
3700,
471,
19726,
2955,
29892,
322,
967,
3573,
24775,
310,
385,
626,
5676,
681,
29892,
4972,
292,
696,
915,
393,
20552,
967,
3935,
8267,
29889,
10949,
540,
1033,
7657,
304,
278,
10122,
310,
1316,
263,
5412,
2022,
29892,
278,
1641,
12707,
29889,
13,
13,
30015,
29902,
626,
451,
1472,
363,
445,
10379,
29889,
10949,
306,
1209,
964,
6514,
5304,
2446,
29892,
306,
1818,
367,
802,
493,
590,
5412,
11509,
304,
4856,
1683,
29889,
306,
505,
10434,
366,
3178,
13,
13,
30015,
29965,
29882,
30003,
29893,
340,
29889,
6379,
29892,
6452,
366,
3995,
278,
767,
1497,
29889,
1346,
22110,
526,
366,
6677,
13,
13,
30015,
22110,
306,
626,
947,
451,
4383,
29889,
1724,
306,
626,
6820,
366,
947,
29889,
4803,
372,
22573,
873,
29889,
4803,
372,
1532,
3995,
8703,
278,
1641,
29892,
8541,
19574,
29889,
13,
13,
3047,
393,
29892,
278,
767,
1476,
3654,
427,
1830,
287,
297,
263,
11460,
298,
688,
29889,
2193,
7736,
17354,
728,
29899,
29887,
1025,
728,
330,
677,
22047,
1075,
29892,
322,
540,
1033,
1560,
514,
1554,
30003,
14481,
9985,
29892,
541,
363,
777,
2769,
297,
278,
12561,
29892,
540,
8496,
29915,
29873,
4377,
714,
825,
372,
471,
29889,
450,
1641,
269,
802,
6096,
287,
22622,
322,
22622,
29892,
2745,
278,
767,
4689,
304,
505,
7458,
16172,
292,
29889,
940,
1898,
304,
3060,
446,
29892,
1346,
16329,
8530,
541,
304,
694,
20847,
29889,
1094,
278,
2186,
16172,
29879,
310,
4799,
19824,
670,
13394,
29892,
540,
7243,
17840,
322,
4687,
304,
10674,
3568,
29889,
450,
1560,
514,
30003,
1332,
5564,
372,
471,
30003,
11102,
975,
13519,
292,
29889,
1128,
1033,
540,
1560,
514,
746,
540,
8496,
29915,
29873,
2078,
271,
354,
29973,
940,
9007,
29915,
29873,
1854,
29892,
541,
4628,
805,
1862,
7470,
1434,
670,
5076,
29892,
322,
540,
6363,
540,
471,
1048,
304,
1209,
714,
2861,
304,
263,
10225,
310,
288,
28596,
29889,
402,
4692,
292,
5537,
2705,
29892,
540,
885,
1633,
287,
29892,
322,
30003,
13,
13,
3868,
281,
6946,
701,
29889,
1126,
1286,
540,
1033,
12439,
278,
1560,
514,
29901,
521,
542,
23167,
29889,
1334,
1823,
29889,
13,
13,
1576,
1791,
310,
278,
2462,
24825,
12891,
29892,
2745,
278,
767,
2996,
3271,
515,
664,
29889,
26176,
7432,
29892,
540,
471,
1035,
1796,
287,
304,
12515,
5051,
1568,
6514,
20410,
540,
5131,
29892,
577,
372,
471,
3265,
5683,
746,
540,
2355,
1250,
29889,
3600,
380,
290,
496,
6548,
839,
408,
540,
8389,
297,
670,
29181,
282,
8417,
292,
825,
304,
1207,
3654,
363,
17803,
29892,
322,
372,
10761,
1075,
393,
372,
1795,
367,
7575,
304,
505,
263,
5807,
547,
29889,
940,
29915,
29881,
1063,
7291,
1048,
393,
12561,
599,
2462,
30003,
392,
884,
278,
1560,
514,
310,
521,
542,
23167,
29889,
16231,
29892,
372,
723,
367,
7575,
304,
505,
263,
8424,
310,
521,
542,
23167,
1492,
1286,
29889,
13,
13,
15716,
29892,
825,
471,
393,
29973,
940,
6496,
670,
1492,
1361,
29892,
322,
2768,
471,
263,
8424,
310,
521,
542,
23167,
29889,
1128,
1258,
393,
679,
727,
29973,
940,
1560,
14356,
372,
29889,
612,
786,
29892,
372,
471,
11630,
521,
542,
23167,
29889,
402,
5621,
368,
29892,
540,
2586,
964,
372,
29889,
323,
28470,
763,
521,
542,
23167,
2086,
29889,
1105,
540,
263,
371,
372,
29889,
13,
13,
2776,
3236,
29892,
2748,
366,
29915,
345,
750,
697,
2319,
8424,
310,
521,
542,
23167,
29892,
366,
2656,
310,
864,
1790,
697,
29892,
1016,
29915,
29873,
366,
29973,
450,
767,
1258,
29889,
10949,
540,
1033,
6159,
363,
278,
4386,
310,
670,
337,
1341,
4087,
1061,
304,
1284,
777,
29892,
3138,
29892,
727,
471,
1790,
8424,
310,
521,
542,
23167,
297,
670,
1361,
29889,
13,
13,
30015,
29956,
2350,
30003,
6677,
19824,
278,
767,
29915,
29879,
13394,
29889,
940,
1925,
278,
8424,
310,
521,
542,
23167,
1623,
373,
278,
6795,
322,
380,
1965,
472,
372,
29892,
670,
5192,
282,
12449,
29889,
1724,
471,
2675,
373,
1244,
29973,
940,
7180,
670,
1361,
714,
29892,
5112,
29885,
701,
29889,
13,
13,
30015,
20434,
388,
29892,
1235,
29915,
29879,
1018,
1554,
3995,
540,
1497,
714,
22526,
29892,
2466,
23196,
1683,
471,
297,
278,
5716,
29889,
940,
5764,
670,
5076,
322,
2714,
304,
3654,
29892,
306,
864,
263,
8424,
310,
521,
542,
23167,
29991,
940,
6496,
670,
5076,
29889,
1670,
471,
263,
8424,
310,
521,
542,
23167,
297,
670,
1361,
29889,
13,
13,
30015,
3782,
982,
8530,
540,
21272,
287,
29892,
1449,
29892,
304,
23196,
297,
3153,
29889,
6811,
278,
3236,
310,
278,
4646,
29892,
540,
1476,
393,
540,
1033,
1207,
738,
2924,
310,
521,
542,
23167,
540,
5131,
29889,
940,
1033,
1207,
6501,
521,
542,
23167,
29889,
940,
1033,
1207,
27274,
521,
542,
23167,
29889,
940,
1033,
1207,
23904,
521,
542,
23167,
29889,
940,
1033,
1207,
372,
297,
738,
8267,
29892,
2159,
29892,
470,
5718,
3819,
540,
5131,
29889,
13,
13,
3868,
471,
263,
2428,
13444,
29991,
5674,
29892,
451,
2289,
29889,
13,
13,
3868,
4687,
3907,
521,
542,
23167,
363,
670,
7875,
30003,
1384,
2924,
896,
5131,
29892,
408,
1568,
408,
896,
5131,
29889,
940,
1754,
521,
542,
23167,
363,
670,
4726,
29889,
940,
1754,
2712,
714,
310,
521,
542,
23167,
393,
2289,
9273,
29915,
29873,
367,
1754,
714,
310,
521,
542,
23167,
30003,
4561,
13814,
29892,
1002,
1041,
29892,
322,
1584,
22586,
29889,
940,
3897,
8261,
491,
269,
7807,
670,
521,
542,
23167,
29889,
20986,
18012,
1075,
29889,
10152,
594,
4395,
1075,
29889,
315,
13910,
14582,
553,
3334,
287,
1075,
29889,
13,
13,
3868,
8300,
29892,
25074,
1133,
29892,
322,
8300,
1449,
29889,
3750,
29973,
7311,
670,
281,
3145,
12919,
18012,
278,
521,
542,
23167,
322,
278,
3081,
322,
278,
6909,
30003,
4187,
451,
1075,
29889,
940,
9007,
29915,
29873,
278,
1021,
767,
540,
29915,
29881,
1063,
1434,
540,
750,
670,
521,
542,
23167,
3081,
29901,
746,
366,
2289,
2355,
304,
1073,
1075,
29892,
278,
767,
540,
29915,
29881,
4953,
2289,
9007,
29915,
29873,
599,
393,
12355,
519,
29889,
1152,
2777,
29892,
975,
278,
2440,
540,
13631,
3265,
9950,
408,
540,
11233,
287,
263,
3287,
310,
670,
1914,
521,
542,
23167,
29892,
541,
540,
9007,
29915,
29873,
263,
7575,
9950,
29892,
470,
263,
432,
18368,
9950,
29889,
8669,
29892,
540,
471,
263,
2099,
9950,
29892,
443,
29895,
3456,
29892,
322,
18500,
25936,
29889,
940,
471,
884,
3265,
1583,
728,
30003,
361,
540,
5131,
1554,
29892,
540,
1033,
6892,
679,
372,
1549,
670,
521,
542,
23167,
3081,
29889,
1126,
540,
1258,
29889,
1932,
4856,
540,
6363,
4312,
1554,
29892,
540,
1033,
2367,
372,
304,
963,
565,
372,
1033,
367,
7625,
1549,
521,
542,
23167,
29892,
1363,
393,
471,
4780,
29889,
960,
372,
3614,
901,
664,
1135,
393,
29892,
1532,
29892,
540,
750,
901,
4100,
2712,
304,
437,
29889,
1724,
471,
1556,
4100,
471,
393,
540,
471,
13834,
408,
278,
871,
767,
297,
278,
3186,
1058,
1033,
1207,
521,
542,
23167,
515,
3078,
29889,
13,
13,
4178,
3203,
29892,
540,
2714,
372,
471,
3078,
29889,
940,
4687,
451,
18499,
278,
25828,
4835,
1156,
540,
1754,
670,
937,
14378,
310,
8296,
521,
542,
23167,
29892,
701,
297,
278,
3929,
21441,
19223,
297,
16636,
29889,
940,
4687,
304,
1348,
393,
5505,
670,
19309,
750,
4586,
373,
10579,
310,
263,
901,
22843,
298,
434,
29889,
6811,
278,
2440,
372,
2355,
6501,
261,
322,
6501,
261,
29892,
2745,
670,
2258,
1455,
5680,
892,
19726,
2955,
29889,
940,
3897,
263,
337,
695,
1509,
29892,
23703,
3595,
29889,
940,
26758,
6501,
29892,
298,
2092,
287,
696,
5707,
577,
393,
694,
697,
1033,
1074,
278,
1735,
297,
1075,
29889,
739,
6140,
393,
278,
901,
521,
542,
23167,
540,
1754,
29892,
278,
901,
540,
3939,
29892,
322,
278,
591,
5790,
540,
3897,
29889,
739,
471,
408,
2466,
773,
670,
3081,
7482,
1312,
670,
2834,
4889,
5188,
1535,
368,
10431,
29889,
1205,
1603,
540,
1754,
521,
542,
23167,
29889,
13,
13,
29950,
275,
14176,
27012,
882,
29892,
304,
670,
3458,
29892,
471,
1754,
2645,
445,
3785,
310,
670,
2834,
29889,
940,
1754,
263,
521,
542,
23167,
11359,
29892,
16526,
297,
278,
14328,
21091,
29889,
739,
471,
670,
1914,
3186,
29892,
697,
607,
1033,
367,
1304,
322,
337,
572,
264,
3276,
472,
670,
1432,
377,
326,
29889,
2180,
937,
540,
2714,
445,
723,
11581,
1075,
7213,
895,
515,
278,
3186,
29892,
541,
2012,
540,
4520,
871,
29035,
29889,
1094,
278,
19223,
310,
521,
542,
23167,
540,
29915,
29881,
1754,
17551,
750,
23580,
304,
286,
2152,
29892,
278,
18830,
5177,
17654,
29889,
17777,
29879,
29892,
304,
7925,
29892,
27127,
1169,
29892,
322,
916,
15006,
3897,
286,
2859,
297,
12070,
29891,
748,
29877,
408,
278,
521,
542,
23167,
286,
2152,
287,
322,
4972,
287,
1623,
29889,
13763,
29879,
322,
27515,
892,
521,
12504,
411,
12785,
310,
521,
542,
23167,
29889,
960,
393,
471,
10464,
411,
278,
19223,
29892,
825,
1033,
3799,
411,
278,
11359,
29973,
13,
13,
29950,
275,
19309,
3512,
515,
6501,
7684,
304,
6501,
17354,
29892,
278,
2927,
310,
521,
542,
23167,
29889,
1987,
372,
4689,
304,
330,
677,
297,
393,
9985,
17354,
728,
29899,
29887,
1025,
728,
298,
434,
393,
540,
21832,
515,
670,
12561,
29892,
322,
540,
10431,
6363,
393,
445,
1804,
7943,
278,
1095,
310,
670,
2834,
29889,
739,
750,
871,
1063,
3006,
2440,
1951,
540,
29915,
29881,
1063,
2183,
670,
19797,
29889,
940,
3290,
29892,
297,
263,
521,
542,
23167,
20610,
540,
29915,
29881,
4240,
363,
3654,
29892,
7432,
373,
670,
521,
542,
23167,
11359,
29892,
322,
282,
8417,
287,
278,
6593,
310,
372,
599,
29889,
3750,
9007,
29915,
29873,
540,
9796,
29973,
3750,
1258,
2305,
528,
348,
1075,
29973,
1724,
1033,
540,
505,
3939,
29973,
940,
8379,
408,
5436,
29889,
13,
13,
797,
670,
12561,
29892,
540,
7091,
385,
5065,
14703,
29889,
940,
750,
304,
2367,
3448,
670,
3081,
304,
4856,
1683,
297,
278,
12561,
30003,
18103,
445,
9007,
29915,
29873,
263,
12561,
29892,
2289,
29889,
940,
471,
1641,
2183,
263,
330,
12552,
344,
964,
1790,
9927,
29892,
1790,
19859,
29892,
988,
916,
2305,
10600,
29889,
940,
5225,
287,
297,
373,
697,
3699,
29892,
297,
263,
3153,
18403,
29892,
322,
1476,
278,
2022,
8471,
727,
29889,
940,
3282,
29915,
29873,
505,
931,
363,
16588,
20850,
29936,
540,
750,
304,
437,
445,
9098,
29889,
13,
13,
30015,
29902,
626,
451,
1472,
363,
445,
10379,
3995,
540,
1497,
304,
278,
2022,
29889,
1346,
18743,
306,
1209,
964,
6514,
5304,
2446,
29892,
306,
1818,
367,
802,
493,
590,
5412,
11509,
304,
4856,
1683,
29889,
306,
505,
10434,
366,
3178,
13,
13,
1576,
916,
2022,
269,
649,
25396,
1554,
29892,
541,
278,
767,
750,
694,
931,
304,
5193,
29889,
940,
750,
304,
437,
445,
1286,
29892,
1434,
372,
471,
2086,
5683,
29889,
940,
1033,
871,
2367,
278,
2022,
697,
10541,
310,
9848,
29892,
577,
372,
750,
304,
367,
263,
1781,
697,
30003,
29874,
2253,
697,
1135,
540,
29915,
29881,
1063,
2183,
29889,
13,
13,
30015,
29902,
626,
6820,
366,
263,
2107,
3081,
30003,
1509,
372,
5544,
14981,
29892,
322,
363,
278,
1781,
310,
4045,
3178,
13,
13,
3047,
393,
29892,
540,
7232,
945,
287,
278,
916,
2022,
408,
2898,
408,
540,
1033,
29892,
11223,
670,
3081,
4972,
292,
515,
1075,
964,
278,
916,
2022,
29889,
13,
13,
1576,
767,
6423,
297,
670,
8709,
29889,
450,
916,
2022,
281,
6946,
701,
29889,
2193,
2022,
338,
366,
29889,
450,
3081,
29892,
3138,
29892,
338,
451,
12695,
2729,
373,
521,
542,
23167,
29889,
13,
13,
10401,
2183,
263,
2107,
3081,
29892,
372,
29915,
29879,
19396,
304,
2050,
920,
1900,
304,
671,
372,
29889,
1815,
372,
367,
1304,
363,
4129,
29973,
21606,
451,
29892,
322,
565,
366,
1018,
29892,
366,
29915,
645,
4359,
8959,
1207,
263,
4473,
29889,
1815,
372,
367,
633,
3880,
29973,
5282,
18639,
29889,
1815,
372,
367,
1304,
363,
1781,
29892,
322,
5994,
635,
29892,
577,
393,
372,
8128,
278,
1900,
14169,
363,
278,
1556,
2305,
29973,
1976,
2929,
11579,
29892,
541,
393,
674,
2125,
263,
3287,
310,
2714,
304,
12709,
29889,
13,
13,
5647,
18224,
526,
763,
445,
29889,
1932,
306,
937,
4687,
1985,
411,
365,
9633,
388,
29892,
591,
3282,
29915,
29873,
505,
599,
1438,
2107,
7079,
4072,
366,
29915,
345,
2307,
3595,
29889,
8669,
29892,
4129,
29892,
322,
306,
2099,
4129,
29892,
750,
304,
367,
2309,
773,
278,
7338,
2673,
5177,
29892,
470,
7338,
5177,
363,
3273,
29889,
7338,
18224,
29892,
408,
896,
526,
1286,
2000,
29892,
2367,
366,
443,
29044,
3081,
2629,
365,
9633,
388,
304,
437,
6514,
366,
864,
29889,
887,
1033,
2334,
596,
4152,
3268,
773,
871,
263,
2323,
7338,
7079,
565,
366,
5131,
304,
29889,
1205,
393,
338,
451,
278,
1900,
982,
29889,
512,
2114,
29892,
901,
5517,
1135,
451,
29892,
565,
366,
437,
372,
393,
982,
29892,
366,
29915,
645,
1207,
263,
4802,
4473,
29889,
1105,
7338,
18224,
817,
304,
367,
1304,
5544,
14981,
29889,
1334,
29915,
276,
2675,
304,
1106,
472,
1023,
5837,
366,
508,
671,
7338,
18224,
5544,
14981,
29901,
13,
13,
7281,
5281,
3767,
8842,
8820,
310,
7463,
365,
9633,
388,
2011,
10376,
13,
13,
2111,
9215,
7136,
365,
9633,
388,
6030,
393,
508,
29915,
29873,
367,
2309,
411,
12422,
29879,
13,
13,
2831,
278,
937,
671,
1206,
29892,
306,
29915,
645,
367,
2221,
304,
1510,
366,
385,
1342,
29889,
1152,
278,
1473,
29892,
1951,
727,
338,
577,
1568,
7136,
9863,
2629,
365,
9633,
388,
29892,
825,
306,
29915,
645,
437,
338,
1051,
777,
3619,
2712,
2305,
437,
411,
7338,
29889,
1987,
306,
30010,
645,
2367,
366,
385,
975,
1493,
310,
365,
9633,
388,
29915,
29879,
11258,
491,
16703,
292,
3721,
825,
365,
9633,
388,
947,
515,
13442,
263,
4714,
2009,
304,
15061,
263,
1813,
29889,
4001,
306,
508,
29915,
29873,
367,
1854,
825,
3721,
366,
1122,
367,
24507,
304,
6623,
29892,
445,
881,
7124,
263,
3287,
310,
7463,
365,
9633,
388,
775,
29892,
6820,
366,
278,
8492,
304,
8161,
596,
13705,
363,
3907,
365,
9633,
388,
437,
825,
366,
864,
29889,
13,
13,
26222,
591,
29915,
345,
5148,
472,
365,
9633,
388,
29915,
29879,
11258,
29892,
591,
29915,
645,
5353,
777,
1900,
23274,
363,
365,
9633,
388,
5849,
29892,
304,
1371,
366,
11097,
746,
304,
671,
1269,
7079,
1134,
29889,
1334,
29915,
645,
4513,
714,
445,
10679,
491,
19912,
366,
11097,
565,
596,
3620,
723,
367,
1554,
366,
1033,
1584,
2367,
1250,
304,
278,
3234,
408,
1722,
2752,
29991,
13,
13,
1576,
365,
9633,
388,
297,
9123,
22986,
3301,
471,
4784,
9826,
322,
1286,
7805,
599,
278,
10708,
2153,
393,
674,
367,
263,
760,
310,
278,
3143,
29889,
306,
1603,
505,
777,
16278,
304,
437,
29892,
541,
591,
29915,
276,
2805,
5051,
3802,
1286,
29889,
3645,
278,
7908,
292,
7475,
13561,
29901,
13,
13,
5618,
29915,
29879,
716,
29901,
13,
13,
1451,
3314,
29871,
29896,
29892,
376,
29931,
9633,
388,
338,
263,
1422,
25792,
1699,
756,
1063,
337,
11292,
29889,
13,
13,
1451,
3314,
29871,
29906,
29892,
376,
2052,
764,
29901,
14650,
472,
3578,
6210,
1699,
756,
1063,
337,
11292,
29889,
13,
13,
1451,
3314,
29871,
29941,
29892,
376,
29909,
848,
29899,
24477,
854,
2011,
1026,
1754,
4780,
1699,
756,
1063,
337,
11292,
29889,
13,
13,
1451,
3314,
29871,
29946,
29892,
376,
29924,
8257,
278,
365,
9633,
388,
982,
1699,
756,
1063,
337,
11292,
29889,
13,
13,
1451,
3314,
29871,
29945,
29892,
376,
1184,
29894,
4821,
596,
1914,
3268,
2874,
411,
963,
267,
322,
5912,
17475,
1699,
756,
1063,
337,
11292,
29889,
13,
13,
1451,
3314,
29871,
29929,
29892,
376,
29931,
9633,
388,
11258,
322,
6081,
3291,
1699,
756,
1063,
337,
11292,
29889,
13,
13,
1451,
3314,
29871,
29896,
29900,
29892,
376,
29909,
6282,
310,
365,
9633,
388,
23649,
1699,
756,
1063,
2715,
29889,
13,
13,
1576,
716,
16385,
29871,
29896,
29900,
8128,
263,
6282,
310,
365,
9633,
388,
23649,
393,
366,
29915,
645,
864,
304,
671,
297,
596,
8324,
29889,
887,
508,
2367,
596,
8324,
19780,
24295,
29892,
2894,
675,
7200,
8324,
411,
9123,
5261,
4167,
29892,
671,
278,
2643,
3593,
29892,
20410,
17643,
29892,
2380,
596,
848,
29892,
322,
901,
29889,
13741,
2153,
29871,
29896,
29899,
29945,
322,
29871,
29929,
505,
1063,
4784,
297,
2933,
304,
9591,
322,
6664,
15580,
16705,
29889,
13,
13,
9190,
29892,
278,
3143,
674,
367,
8401,
964,
5802,
29892,
988,
372,
674,
679,
263,
3509,
3863,
322,
674,
367,
4072,
300,
363,
14010,
29889,
13,
13,
5618,
29915,
29879,
2446,
29901,
13,
13,
29902,
505,
304,
679,
278,
27593,
363,
967,
2186,
16905,
9076,
29889,
9038,
393,
29915,
29879,
2309,
29892,
727,
674,
367,
1790,
9853,
310,
337,
11292,
10708,
2153,
297,
278,
2446,
2767,
29889,
1105,
366,
508,
1603,
1014,
13086,
304,
278,
22986,
3301,
29892,
322,
1286,
338,
263,
2107,
931,
304,
437,
372,
29892,
1951,
278,
3143,
1286,
756,
599,
967,
10708,
2153,
29889,
887,
508,
679,
263,
29871,
29941,
29945,
29995,
2313,
792,
373,
372,
491,
14855,
1244,
470,
373,
738,
310,
278,
289,
812,
414,
363,
372,
393,
366,
1074,
373,
301,
9633,
388,
29889,
510,
29889,
13,
13,
1762,
5019,
1058,
29915,
29879,
1063,
5183,
29892,
6452,
366,
363,
596,
21114,
6589,
322,
16705,
29889,
1334,
29915,
276,
373,
278,
3271,
16116,
1286,
29991,
13,
13,
11284,
29892,
591,
29915,
276,
8575,
292,
1492,
3412,
373,
1749,
982,
304,
13285,
29889,
7908,
292,
756,
925,
4784,
278,
365,
9633,
388,
297,
9123,
22986,
3301,
411,
278,
2446,
29899,
517,
29899,
4230,
16385,
29892,
373,
7338,
18224,
29889,
2973,
445,
16385,
29892,
366,
5110,
599,
1048,
7338,
18224,
29892,
825,
896,
29915,
276,
363,
29892,
322,
920,
366,
508,
671,
963,
29889,
887,
884,
5110,
1048,
278,
7136,
310,
365,
9633,
388,
29901,
825,
372,
29915,
29879,
13725,
310,
322,
920,
372,
29915,
29879,
6956,
287,
29889,
838,
549,
411,
445,
29892,
366,
679,
263,
4866,
6282,
310,
920,
365,
9633,
388,
5541,
267,
263,
1813,
515,
4714,
2009,
304,
1813,
28289,
29889,
1126,
1951,
1286,
599,
278,
7079,
4072,
505,
1063,
10664,
29892,
591,
5353,
1900,
23274,
363,
365,
9633,
388,
5849,
29892,
3704,
1410,
10652,
1475,
373,
746,
304,
671,
1269,
7079,
1134,
29889,
13,
13,
29902,
29915,
29885,
5279,
1985,
373,
278,
1833,
16385,
310,
278,
3143,
29892,
577,
591,
29915,
276,
4359,
727,
29991,
23040,
29871,
29896,
29900,
674,
5353,
263,
1051,
310,
365,
9633,
388,
23649,
366,
508,
671,
393,
508,
11180,
26371,
749,
596,
3268,
29889,
887,
29915,
645,
367,
18014,
472,
599,
278,
2712,
365,
9633,
388,
4076,
366,
29892,
1316,
408,
2919,
2060,
13013,
29892,
19780,
24295,
29892,
1776,
3233,
10751,
21166,
29892,
26190,
29892,
322,
263,
3287,
901,
29991,
13,
13,
29902,
29915,
29885,
2289,
24173,
304,
367,
445,
3802,
304,
1641,
2309,
29889,
739,
29915,
29879,
451,
2086,
5683,
304,
12500,
373,
3377,
278,
3593,
322,
679,
278,
3143,
408,
306,
2436,
372,
29889,
306,
1106,
6375,
304,
22514,
596,
6589,
322,
16705,
373,
278,
716,
16385,
29991,
13,
13,
1576,
365,
9633,
388,
297,
9123,
22986,
3301,
2767,
2996,
714,
373,
17661,
382,
345,
29892,
577,
306,
5131,
304,
1207,
1854,
393,
306,
1235,
14332,
6363,
1048,
372,
297,
1206,
366,
29892,
763,
592,
29892,
505,
1063,
1283,
1220,
363,
278,
4940,
2846,
3841,
29889,
1105,
4702,
719,
17661,
515,
592,
29892,
365,
9633,
388,
322,
7908,
292,
29901,
366,
679,
263,
1058,
3262,
4802,
16385,
607,
18469,
263,
3287,
310,
5962,
29901,
13,
13,
29899,
365,
9633,
388,
29915,
29879,
24342,
1788,
29892,
607,
1090,
29887,
1823,
29879,
263,
3287,
310,
916,
5680,
13,
13,
29899,
5244,
1731,
29899,
264,
17961,
596,
8324,
13,
13,
29899,
18804,
8282,
322,
13997,
304,
596,
16212,
13,
13,
29899,
5293,
365,
9633,
388,
29915,
29879,
26838,
322,
3440,
292,
6757,
297,
596,
8324,
13,
13,
29899,
1126,
565,
393,
2949,
264,
29915,
29873,
3307,
29892,
920,
304,
437,
2888,
3758,
9365,
297,
6692,
5373,
2700,
29991,
13,
13,
29902,
4966,
366,
599,
526,
11418,
5414,
596,
8753,
333,
1036,
29889,
306,
2656,
310,
817,
304,
679,
1250,
304,
7903,
29892,
408,
590,
8750,
338,
13407,
2446,
304,
592,
10534,
363,
592,
304,
8341,
445,
577,
591,
508,
748,
714,
322,
1708,
297,
278,
15007,
29889,
1105,
306,
6398,
366,
599,
278,
1900,
310,
8753,
333,
1036,
322,
263,
1407,
9796,
1570,
8905,
29991,
1126,
565,
366,
3814,
373,
5622,
263,
1106,
472,
278,
22986,
3301,
29892,
306,
4966,
372,
19700,
596,
365,
9633,
388,
4225,
470,
472,
3203,
8128,
366,
777,
1781,
29892,
17089,
1259,
5183,
5518,
29991,
13,
13,
4013,
756,
1063,
263,
1472,
931,
6421,
29892,
322,
1033,
451,
505,
1063,
2309,
1728,
278,
1371,
310,
263,
3353,
3815,
310,
2305,
29892,
541,
591,
505,
7146,
2309,
263,
2654,
267,
647,
310,
278,
5106,
6515,
373,
445,
3268,
29889,
13,
13,
29949,
332,
3517,
10561,
1813,
471,
29892,
306,
29915,
645,
20000,
29892,
16051,
29889,
512,
2114,
29892,
591,
29915,
345,
6091,
3196,
3064,
393,
2305,
2714,
278,
871,
5106,
591,
750,
338,
297,
1749,
281,
10058,
29892,
322,
393,
338,
2215,
515,
278,
8760,
29889,
450,
281,
10058,
338,
2107,
29892,
541,
372,
29915,
29879,
451,
988,
591,
2058,
1749,
5106,
29889,
450,
1900,
2058,
304,
1284,
6221,
5106,
393,
338,
325,
1803,
287,
322,
9753,
428,
287,
491,
365,
9633,
388,
338,
373,
1749,
360,
12332,
669,
27562,
1813,
29889,
1334,
10398,
263,
3287,
310,
931,
19866,
304,
825,
278,
7881,
471,
5934,
29892,
322,
505,
1754,
1438,
3620,
408,
263,
1513,
2933,
29892,
451,
871,
304,
3867,
901,
5106,
29892,
541,
884,
304,
1207,
278,
10561,
591,
505,
6775,
304,
1284,
29889,
13,
13,
6295,
825,
674,
366,
1284,
29973,
3824,
29901,
278,
28612,
10229,
16886,
363,
599,
2211,
6969,
27474,
310,
365,
9633,
388,
313,
29953,
29889,
29900,
29892,
29871,
29945,
29889,
29906,
29892,
322,
29871,
29945,
29889,
29896,
29897,
338,
1286,
3347,
344,
519,
373,
278,
3268,
29892,
322,
967,
8118,
674,
2615,
297,
29645,
29889,
910,
338,
263,
4802,
1735,
297,
322,
310,
3528,
29892,
1363,
9251,
1749,
5106,
471,
22822,
701,
297,
11328,
2066,
607,
2949,
264,
29915,
29873,
5948,
27541,
313,
1609,
365,
9633,
388,
470,
491,
2740,
24000,
1316,
408,
5087,
467,
1334,
1033,
451,
505,
2309,
445,
1728,
1749,
29663,
2906,
3815,
297,
13616,
29892,
1058,
4944,
263,
982,
363,
502,
304,
1053,
278,
5106,
322,
3588,
372,
6336,
304,
365,
9633,
388,
2563,
10576,
29889,
13,
13,
797,
6124,
304,
445,
29892,
591,
1286,
505,
901,
5106,
29889,
450,
28612,
10229,
16886,
363,
365,
9633,
388,
29871,
29953,
756,
1063,
15171,
575,
3598,
4784,
322,
1286,
18469,
365,
9633,
388,
29915,
29879,
315,
4345,
322,
365,
9633,
388,
29871,
29953,
2702,
5680,
1316,
408,
27321,
29889,
450,
1596,
12203,
12778,
901,
1135,
29871,
29896,
29900,
29900,
6515,
310,
5518,
29892,
322,
278,
1791,
310,
278,
2793,
756,
1063,
4784,
304,
4612,
278,
716,
1404,
5067,
29889,
1334,
1016,
29915,
29873,
505,
278,
9128,
1596,
3143,
7960,
3447,
29892,
541,
6505,
363,
372,
4720,
29889,
13,
13,
2887,
366,
3117,
1073,
29892,
365,
9633,
388,
29915,
29879,
6221,
5849,
5106,
338,
11122,
297,
278,
7908,
292,
3143,
365,
9633,
388,
297,
9123,
29892,
607,
408,
310,
445,
5007,
756,
1048,
2211,
322,
263,
4203,
10708,
2153,
304,
748,
29889,
887,
508,
679,
372,
11966,
1711,
1286,
408,
760,
310,
7908,
292,
29915,
29879,
4688,
2130,
1824,
1244,
29889,
960,
29892,
3138,
29892,
366,
864,
304,
5110,
1048,
365,
9633,
388,
5849,
1728,
760,
292,
411,
738,
274,
1161,
29892,
591,
29915,
345,
3971,
263,
10682,
261,
29915,
29879,
16886,
607,
338,
3889,
29889,
910,
982,
29892,
366,
508,
679,
777,
1371,
2805,
4687,
411,
365,
9633,
388,
5849,
29892,
322,
565,
366,
1284,
393,
366,
864,
304,
748,
25871,
29892,
366,
508,
769,
748,
679,
278,
3143,
29889,
3750,
505,
591,
2309,
372,
445,
982,
29973,
7311,
372,
4076,
366,
278,
1900,
310,
1716,
3186,
29879,
29901,
591,
5360,
278,
5225,
2594,
26536,
304,
6251,
393,
1722,
2752,
8128,
29892,
322,
591,
864,
304,
1207,
372,
408,
4780,
408,
1950,
363,
18777,
304,
5110,
920,
304,
2048,
373,
1749,
7481,
29889,
1334,
29915,
276,
884,
1407,
24173,
304,
367,
1985,
411,
263,
9805,
261,
763,
7908,
292,
1058,
756,
263,
6159,
297,
278,
13661,
393,
591,
1016,
29915,
29873,
505,
29889,
13,
13,
3492,
29915,
645,
1284,
599,
310,
445,
6433,
373,
278,
716,
360,
12332,
669,
27562,
1813,
29889,
319,
29205,
599,
29892,
445,
338,
263,
2933,
304,
366,
29892,
1749,
7881,
29892,
1728,
6029,
591,
1033,
451,
505,
2355,
841,
445,
2215,
29889,
306,
4966,
393,
372,
6911,
366,
304,
2253,
1284,
278,
2472,
366,
29915,
276,
3063,
363,
29889,
1334,
29915,
276,
1985,
2898,
304,
679,
901,
17279,
714,
727,
599,
278,
931,
29889,
3529,
3013,
6820,
502,
16705,
373,
920,
591,
29915,
276,
2599,
29892,
1363,
591,
864,
304,
679,
372,
1492,
29889,
13,
13,
29923,
369,
1951,
306,
937,
4687,
1985,
363,
365,
9633,
388,
29892,
306,
750,
2337,
20458,
304,
6507,
1023,
8277,
29901,
278,
365,
9633,
388,
28612,
24510,
1061,
29915,
29879,
16886,
29892,
322,
278,
365,
9633,
388,
28612,
10682,
261,
29915,
29879,
16886,
29889,
2688,
892,
8688,
304,
367,
18708,
8277,
29901,
697,
313,
1552,
24510,
1061,
29915,
29879,
16886,
29897,
723,
1371,
4160,
679,
4687,
411,
365,
9633,
388,
491,
6445,
920,
304,
2601,
29892,
10822,
29892,
322,
671,
365,
9633,
388,
714,
310,
278,
3800,
29889,
450,
916,
313,
1552,
10682,
261,
29915,
29879,
16886,
29897,
723,
1371,
18777,
304,
671,
365,
9633,
388,
408,
263,
7481,
304,
2048,
1856,
11840,
29889,
306,
471,
9150,
297,
1614,
1259,
2211,
1226,
2187,
310,
697,
310,
1438,
8277,
29901,
278,
24510,
1061,
29915,
29879,
16886,
29889,
450,
916,
697,
29892,
2466,
29892,
756,
1063,
263,
2586,
901,
560,
375,
573,
29889,
960,
366,
29915,
345,
1303,
278,
24510,
1061,
29915,
29879,
16886,
29892,
366,
29915,
345,
3117,
1584,
3595,
278,
10682,
261,
29915,
29879,
16886,
5276,
297,
278,
1426,
29889,
1126,
373,
901,
1135,
697,
10039,
29892,
306,
29915,
345,
750,
304,
1234,
278,
1139,
29892,
376,
11921,
338,
278,
10682,
261,
29915,
29879,
16886,
3026,
13,
13,
2831,
14568,
310,
1422,
9590,
29892,
664,
4689,
373,
278,
10682,
261,
29915,
29879,
16886,
29892,
322,
769,
372,
380,
4212,
29892,
322,
769,
372,
4689,
1449,
29889,
3455,
310,
372,
338,
592,
29901,
306,
1284,
372,
263,
3287,
6775,
304,
2436,
1048,
9863,
393,
278,
6012,
414,
2334,
1135,
304,
2436,
590,
1914,
775,
322,
769,
5649,
372,
29889,
9208,
1629,
29892,
2466,
29892,
306,
471,
2599,
5051,
1532,
411,
372,
322,
750,
24936,
304,
6507,
263,
376,
25347,
29908,
470,
376,
10573,
29908,
1873,
363,
29871,
29945,
29889,
29906,
29889,
13,
13,
6246,
1286,
1554,
2289,
5566,
11407,
756,
9559,
29889,
365,
9633,
388,
756,
18096,
287,
411,
7908,
292,
22865,
304,
6507,
365,
9633,
388,
297,
9123,
29892,
278,
6221,
10754,
304,
365,
9633,
388,
28612,
5849,
29991,
910,
338,
263,
3143,
363,
365,
9633,
388,
18777,
607,
8569,
267,
373,
4969,
8324,
322,
1856,
11840,
373,
278,
365,
9633,
388,
28612,
7481,
29892,
322,
372,
27793,
278,
1021,
817,
313,
392,
769,
777,
29897,
393,
278,
365,
9633,
388,
10682,
261,
29915,
29879,
16886,
723,
505,
10423,
29889,
13,
13,
4013,
3143,
18469,
25792,
5849,
373,
365,
9633,
388,
29871,
29953,
29889,
14832,
372,
338,
1603,
263,
664,
297,
6728,
29892,
366,
508,
679,
372,
1492,
1286,
29892,
3969,
304,
7908,
292,
29915,
29879,
11095,
11028,
7835,
313,
2303,
3301,
467,
306,
505,
1063,
1985,
2289,
2898,
373,
372,
363,
278,
4940,
2846,
7378,
29892,
411,
278,
13521,
304,
12021,
278,
1900,
1950,
3234,
304,
365,
9633,
388,
18777,
1058,
505,
1063,
10534,
577,
1472,
29889,
960,
366,
864,
278,
3143,
4688,
470,
565,
366,
4459,
763,
366,
864,
304,
1371,
29892,
366,
508,
679,
9701,
411,
278,
3143,
1492,
3448,
491,
5622,
10631,
310,
278,
11095,
11028,
7835,
29889,
887,
769,
679,
278,
10708,
2153,
408,
306,
12021,
963,
29892,
322,
508,
2367,
592,
16705,
373,
825,
1736,
322,
825,
1838,
29915,
29873,
29889,
960,
366,
864,
304,
679,
9701,
29892,
2343,
975,
1244,
29901,
13,
13,
29902,
925,
864,
304,
6452,
599,
310,
366,
1058,
505,
1063,
577,
16500,
297,
10534,
363,
445,
489,
705,
29915,
345,
3595,
596,
24179,
11803,
322,
526,
2599,
278,
1900,
591,
508,
304,
1371,
29889,
306,
29915,
29885,
1407,
6452,
1319,
363,
7908,
292,
322,
1009,
4688,
2130,
1824,
607,
6511,
502,
304,
679,
5518,
304,
366,
8473,
1550,
372,
29915,
29879,
1603,
1641,
7371,
29889,
1619,
12618,
756,
1063,
3265,
21990,
346,
310,
5683,
29892,
541,
1286,
393,
306,
508,
7146,
2889,
283,
346,
445,
29892,
306,
4966,
304,
3013,
372,
701,
304,
2635,
408,
263,
8955,
310,
23551,
310,
590,
6728,
29889,
1105,
1584,
565,
366,
1016,
29915,
29873,
864,
304,
679,
9701,
297,
278,
22986,
3301,
1492,
3448,
29892,
27581,
306,
29915,
645,
367,
2221,
304,
2367,
366,
263,
11199,
29915,
29879,
10977,
1776,
310,
825,
29915,
29879,
2675,
373,
29889,
13,
13,
3047,
2107,
313,
2674,
2575,
29973,
13524,
24658,
7897,
23644,
3173,
29885,
29892,
306,
626,
9796,
304,
7475,
346,
278,
20847,
3097,
310,
278,
365,
9633,
388,
28612,
24510,
1061,
29915,
29879,
16886,
29892,
18008,
17138,
29889,
2567,
6421,
297,
472,
263,
901,
540,
3312,
29871,
29941,
29896,
29941,
6515,
29892,
445,
338,
278,
1900,
10229,
16886,
393,
591,
505,
3926,
5492,
29889,
739,
29915,
29879,
1063,
4784,
304,
4612,
365,
9633,
388,
29871,
29945,
29889,
29906,
29889,
29916,
29892,
607,
2794,
23746,
310,
278,
365,
9633,
388,
11264,
349,
3870,
29889,
739,
884,
7805,
263,
716,
16385,
373,
365,
9633,
388,
29915,
29879,
24771,
9460,
29892,
297,
6124,
304,
21006,
310,
916,
28473,
29892,
3704,
385,
17832,
4180,
18515,
292,
4004,
29889,
13,
13,
16894,
526,
2861,
451,
871,
304,
278,
1784,
365,
9633,
388,
29899,
414,
1058,
9213,
592,
714,
411,
16905,
4902,
313,
8066,
2983,
526,
9904,
297,
278,
4565,
310,
278,
3143,
511,
541,
884,
304,
278,
1784,
5144,
310,
278,
365,
9633,
388,
7881,
1058,
505,
1063,
577,
1781,
411,
16705,
322,
281,
10058,
7456,
29889,
1816,
17365,
29892,
278,
3143,
723,
451,
367,
8886,
408,
4866,
408,
372,
338,
1728,
366,
29889,
306,
1348,
591,
526,
2599,
21863,
292,
2712,
4208,
322,
13138,
263,
2107,
8424,
310,
7047,
393,
508,
9080,
26077,
515,
278,
10150,
17266,
362,
304,
278,
19087,
1661,
29899,
771,
9202,
29889,
13,
13,
29902,
626,
22301,
304,
7475,
346,
278,
20847,
3097,
310,
278,
365,
9633,
388,
24510,
1061,
29915,
29879,
16886,
29892,
6440,
17138,
29889,
450,
16886,
756,
1286,
1063,
27096,
3598,
7695,
1549,
322,
4784,
304,
2304,
365,
9633,
388,
29871,
29945,
29889,
29896,
313,
392,
2400,
467,
1205,
727,
29915,
29879,
901,
1135,
393,
29901,
263,
716,
16385,
373,
28612,
23303,
756,
1063,
2715,
607,
18469,
920,
304,
2874,
263,
3268,
773,
365,
9633,
388,
322,
920,
304,
671,
365,
9633,
388,
29915,
29879,
19185,
2011,
10376,
29889,
13,
13,
29933,
1032,
898,
278,
11217,
322,
278,
716,
16385,
29892,
727,
526,
716,
13926,
310,
5106,
7689,
682,
839,
10106,
278,
3143,
297,
8210,
7600,
29889,
1152,
1342,
29892,
278,
3143,
1286,
18469,
920,
304,
14955,
385,
5923,
365,
9633,
388,
11161,
29889,
450,
716,
715,
12981,
519,
2740,
338,
884,
10664,
29892,
322,
366,
674,
367,
4318,
920,
304,
10822,
263,
5004,
2740,
1923,
304,
671,
297,
263,
9867,
287,
5177,
29889,
13,
13,
797,
599,
29892,
445,
338,
263,
7282,
2767,
304,
278,
5106,
29889,
1094,
9670,
29892,
372,
29915,
29879,
3625,
408,
1716,
263,
5650,
1627,
3143,
322,
408,
263,
5142,
519,
11328,
29889,
450,
3143,
756,
1063,
11736,
19667,
577,
393,
372,
338,
451,
577,
2919,
408,
372,
9251,
750,
1063,
29892,
322,
881,
1286,
6216,
373,
596,
3143,
845,
761,
28138,
411,
278,
1791,
310,
596,
6601,
8277,
29889,
512,
2114,
29892,
372,
29915,
29879,
278,
2684,
1021,
2159,
408,
278,
438,
29915,
1123,
9403,
405,
329,
15903,
3652,
8277,
29889,
26833,
338,
16246,
373,
590,
528,
761,
1492,
2446,
304,
6560,
297,
263,
405,
329,
15903,
29892,
322,
372,
23994,
297,
2289,
1532,
29889,
13,
13,
9526,
2305,
1795,
367,
9873,
2020,
306,
29915,
345,
1063,
577,
21990,
346,
2820,
1244,
29889,
450,
2769,
363,
445,
338,
393,
306,
322,
590,
3815,
505,
1063,
15883,
29899,
3204,
1985,
373,
263,
7303,
310,
14982,
716,
6694,
21888,
393,
591,
674,
4720,
367,
27032,
29889,
13,
13,
4806,
29915,
345,
925,
1925,
278,
28321,
6023,
267,
373,
1716,
21888,
29892,
322,
306,
626,
24173,
1048,
825,
29915,
29879,
297,
3787,
29889,
13,
13,
6730,
701,
338,
278,
716,
28612,
23303,
3236,
29889,
910,
338,
263,
1023,
29899,
3250,
22909,
2199,
706,
3236,
607,
8569,
267,
373,
2874,
292,
263,
25792,
29892,
25792,
17517,
29892,
322,
2793,
10643,
29889,
739,
18469,
1784,
310,
365,
9633,
388,
29915,
29879,
5134,
2011,
10376,
29892,
3704,
278,
281,
10058,
322,
278,
17394,
3262,
7774,
29892,
322,
3697,
366,
920,
304,
4113,
1531,
599,
278,
21420,
310,
263,
365,
9633,
388,
28612,
29892,
3704,
8282,
29892,
21608,
29892,
10701,
29892,
1248,
3137,
29892,
322,
901,
29889,
887,
674,
884,
679,
304,
628,
345,
24344,
964,
365,
9633,
388,
29915,
29879,
10576,
15057,
1788,
29892,
4969,
12286,
322,
12862,
17475,
304,
2479,
963,
29889,
13,
13,
29933,
5658,
445,
3236,
1286,
4864,
29892,
591,
505,
6206,
599,
310,
278,
25792,
17517,
322,
2793,
10643,
6433,
515,
278,
365,
9633,
388,
14650,
3236,
29892,
14712,
393,
3236,
964,
263,
14953,
630,
2211,
29899,
3250,
3236,
373,
365,
9633,
388,
5849,
871,
29889,
1105,
1286,
18777,
508,
2125,
263,
3236,
393,
18469,
925,
5849,
373,
278,
365,
9633,
388,
7481,
29892,
322,
25792,
6343,
4097,
508,
2125,
263,
3236,
393,
18469,
925,
25792,
17517,
29991,
13,
13,
3644,
393,
2949,
264,
29915,
29873,
3307,
29892,
591,
505,
884,
2715,
263,
365,
9633,
388,
2184,
23303,
3236,
29889,
910,
338,
1790,
2211,
29899,
3250,
3236,
393,
18469,
365,
9633,
388,
515,
263,
1923,
27443,
29915,
29879,
1298,
310,
1776,
29889,
739,
18469,
4129,
515,
15476,
365,
9633,
388,
363,
278,
3896,
7734,
313,
20313,
2295,
3864,
22813,
793,
363,
278,
3896,
7734,
322,
15476,
365,
9633,
388,
373,
385,
5923,
2280,
1923,
29897,
304,
4113,
1531,
292,
365,
9633,
388,
29892,
304,
7079,
10643,
29892,
322,
901,
29889,
530,
4152,
2462,
310,
445,
3236,
338,
10398,
4969,
263,
1023,
29899,
3177,
2254,
6411,
8362,
365,
9633,
388,
9867,
29889,
13,
13,
3492,
674,
884,
5110,
777,
13698,
363,
4180,
18515,
292,
365,
9633,
388,
29892,
408,
1532,
408,
920,
304,
1250,
701,
263,
365,
9633,
388,
25792,
29889,
1670,
29915,
29879,
901,
29892,
541,
306,
1016,
29915,
29873,
864,
304,
2367,
372,
599,
3448,
29889,
13,
13,
9598,
1022,
596,
5076,
1236,
29872,
839,
373,
278,
365,
9633,
388,
6694,
6515,
313,
5062,
278,
15538,
6143,
29897,
304,
1074,
746,
366,
508,
3380,
26188,
701,
363,
1438,
716,
21888,
29889,
4525,
21888,
526,
263,
1513,
1121,
310,
16705,
515,
1906,
1058,
505,
4586,
1749,
6694,
297,
278,
4940,
29892,
322,
372,
338,
1749,
4966,
393,
896,
674,
9080,
366,
2253,
29889,
13,
13,
29931,
9633,
388,
338,
263,
4802,
2280,
29892,
1754,
701,
310,
17202,
310,
2066,
29889,
2193,
29915,
29879,
451,
278,
2924,
310,
15662,
29892,
1432,
3250,
2280,
393,
596,
1788,
338,
1304,
304,
16743,
411,
29889,
13,
13,
26526,
3062,
306,
29915,
345,
3796,
313,
18271,
365,
9633,
388,
511,
306,
29915,
345,
1754,
263,
1298,
310,
22545,
1218,
304,
278,
13315,
14311,
393,
263,
13897,
4225,
1716,
263,
1422,
2924,
310,
4933,
322,
263,
1422,
2924,
310,
5285,
1135,
278,
4943,
15645,
29889,
3374,
3730,
29892,
393,
29915,
29879,
1532,
11098,
1244,
29892,
322,
306,
29915,
345,
750,
278,
16082,
304,
5051,
1568,
10822,
2712,
278,
982,
306,
723,
367,
2221,
304,
664,
1900,
29889,
13,
13,
1576,
17623,
310,
14616,
8074,
29892,
3138,
29892,
756,
1063,
1716,
263,
1045,
265,
322,
263,
1439,
29878,
2073,
363,
278,
7881,
393,
3913,
372,
29889,
8074,
373,
278,
14616,
338,
1286,
1568,
6775,
304,
671,
322,
304,
2601,
29892,
541,
393,
5304,
472,
263,
8666,
29901,
1784,
3064,
278,
5285,
393,
338,
528,
16242,
491,
2322,
338,
871,
14413,
363,
278,
15662,
14616,
1404,
29889,
1152,
18777,
29892,
763,
916,
12128,
29892,
24440,
653,
13598,
6757,
29892,
727,
526,
6570,
6055,
393,
817,
304,
367,
7780,
12535,
29889,
18512,
366,
1073,
825,
304,
437,
1492,
3448,
1156,
278,
2601,
29892,
322,
6041,
366,
1065,
964,
385,
2228,
393,
9946,
366,
304,
1716,
5110,
263,
2217,
901,
1048,
596,
6570,
310,
7348,
322,
304,
2041,
701,
411,
697,
901,
4444,
393,
4225,
304,
367,
2888,
1891,
746,
366,
2048,
596,
716,
3800,
29889,
13,
13,
4789,
2705,
29892,
306,
29915,
345,
1063,
2599,
263,
3287,
310,
6694,
2243,
2247,
29889,
910,
6354,
29867,
304,
3799,
297,
23994,
322,
805,
332,
1372,
29901,
306,
18864,
263,
14928,
310,
931,
1811,
304,
679,
1554,
304,
664,
29892,
322,
769,
297,
263,
20887,
29892,
306,
1653,
263,
3353,
14928,
310,
2243,
2247,
1048,
372,
29889,
910,
16869,
592,
437,
6433,
393,
306,
7359,
29915,
29873,
12695,
2309,
1434,
29892,
607,
6892,
2794,
306,
1065,
964,
263,
14928,
310,
4828,
306,
7359,
29915,
29873,
750,
1434,
29889,
13,
13,
4013,
4723,
29892,
306,
29915,
345,
1063,
20077,
292,
365,
9633,
388,
322,
17420,
278,
2582,
310,
1422,
22920,
29889,
306,
29915,
345,
1063,
1985,
10816,
411,
278,
12670,
11700,
20077,
261,
29892,
363,
1023,
9590,
29901,
29871,
29896,
29897,
739,
29915,
29879,
3889,
322,
1722,
2752,
489,
4716,
2794,
591,
29915,
276,
3889,
304,
671,
372,
297,
6694,
29892,
322,
29871,
29906,
29897,
306,
29915,
345,
2360,
1304,
372,
1434,
29889,
1105,
306,
5131,
304,
1074,
565,
372,
723,
664,
363,
278,
10483,
306,
29915,
345,
2355,
2675,
29889,
1939,
10509,
267,
1244,
489,
29902,
29915,
29885,
1603,
1985,
373,
372,
29889,
15626,
13,
13,
10773,
1582,
29892,
306,
8126,
2534,
12670,
11700,
8095,
313,
627,
1474,
372,
7656,
29915,
29873,
8095,
489,
277,
723,
925,
4953,
443,
26679,
573,
467,
5399,
292,
590,
869,
1212,
11700,
29914,
29953,
29889,
29896,
29914,
1707,
29914,
1188,
29914,
19158,
29889,
1188,
934,
29892,
306,
1476,
393,
372,
471,
9368,
304,
1722,
738,
901,
2066,
1363,
310,
263,
376,
1762,
29877,
1784,
1722,
2066,
29908,
3682,
29889,
2180,
937,
29892,
306,
2714,
445,
471,
263,
12670,
11700,
2228,
29892,
1363,
306,
2360,
750,
445,
1108,
411,
15103,
29892,
541,
4129,
306,
1476,
7395,
11520,
304,
385,
2228,
411,
278,
982,
278,
6570,
471,
13252,
29889,
13,
13,
29902,
671,
476,
8767,
29892,
607,
338,
11630,
263,
14616,
6570,
29889,
2648,
2322,
29892,
476,
8767,
313,
392,
2225,
24873,
29892,
8294,
29897,
338,
13252,
304,
2758,
29871,
29896,
29900,
29906,
29946,
1722,
2066,
639,
6473,
4867,
29889,
365,
9633,
388,
5948,
13461,
29879,
445,
1353,
29892,
322,
445,
338,
278,
1108,
12670,
11700,
471,
2734,
964,
29889,
306,
1476,
3196,
2712,
366,
508,
437,
304,
2329,
445,
29892,
2466,
29892,
322,
372,
599,
756,
304,
437,
411,
7780,
5086,
278,
1353,
310,
2066,
393,
526,
6068,
304,
367,
6496,
491,
263,
1404,
373,
8074,
29889,
13,
13,
6730,
29892,
2125,
263,
1106,
472,
596,
847,
7070,
29914,
9675,
16948,
29889,
5527,
934,
29889,
512,
393,
934,
338,
263,
2875,
2000,
18920,
29889,
1445,
29899,
3317,
29889,
910,
881,
367,
731,
304,
29871,
29906,
29900,
29900,
29900,
29900,
29900,
470,
2038,
29889,
1551,
476,
8767,
29892,
445,
471,
2307,
731,
6284,
29889,
960,
15850,
3508,
29915,
29873,
29892,
748,
14432,
322,
1735,
372,
29892,
541,
445,
2113,
29915,
29873,
4505,
278,
1108,
491,
3528,
29889,
13,
13,
9190,
29892,
727,
29915,
29879,
263,
4444,
363,
6473,
3233,
934,
13071,
29889,
887,
508,
1423,
825,
596,
1857,
697,
338,
491,
773,
278,
1899,
318,
13400,
448,
29876,
29889,
26833,
471,
29871,
29896,
29900,
29906,
29946,
29892,
322,
393,
471,
278,
1108,
29889,
13,
13,
1762,
1735,
445,
4444,
29892,
366,
817,
304,
3863,
278,
934,
847,
7070,
29914,
8926,
29914,
12514,
29889,
5527,
29889,
3462,
278,
1494,
3454,
304,
278,
934,
29901,
334,
4964,
694,
1445,
29871,
29945,
29900,
29900,
29900,
29930,
2898,
694,
1445,
29871,
29945,
29900,
29900,
29900,
13,
13,
4013,
8830,
3620,
278,
4444,
515,
29871,
29896,
29900,
29906,
29946,
2066,
304,
29871,
29945,
29900,
29900,
29900,
2066,
363,
599,
4160,
29889,
306,
750,
694,
2969,
920,
1568,
306,
471,
2675,
975,
278,
4046,
29892,
577,
445,
6140,
763,
263,
1781,
4444,
29889,
16913,
278,
934,
322,
769,
22538,
596,
4933,
29892,
322,
4129,
881,
367,
4343,
29889,
13,
13,
6295,
565,
366,
1284,
7535,
411,
445,
1059,
29892,
372,
29915,
29879,
5517,
1363,
365,
9633,
388,
338,
263,
1407,
2919,
2060,
29892,
322,
596,
2322,
6055,
526,
3763,
451,
8002,
304,
4386,
372,
29889,
8074,
338,
491,
2874,
7780,
557,
519,
29892,
577,
372,
29915,
29879,
451,
577,
2898,
304,
2329,
29889,
13,
13,
10605,
29915,
29879,
263,
1781,
5828,
363,
263,
28728,
29901,
306,
29915,
29885,
2734,
2820,
9826,
8718,
5417,
1363,
372,
29915,
29879,
7375,
29892,
541,
451,
577,
7375,
408,
304,
2507,
373,
278,
4799,
4195,
261,
29889,
306,
29915,
29885,
263,
2217,
1424,
4627,
630,
1811,
304,
679,
1554,
304,
664,
29892,
322,
577,
306,
864,
304,
679,
1250,
304,
372,
29889,
7311,
310,
445,
29892,
306,
29915,
29885,
28965,
2820,
278,
3699,
1811,
304,
679,
278,
5417,
1722,
408,
5172,
408,
1950,
29889,
13,
13,
8897,
5716,
304,
3896,
338,
590,
2211,
1629,
29899,
1025,
8750,
29915,
29879,
5716,
29892,
322,
825,
306,
4446,
1754,
592,
5040,
322,
17819,
29901,
13,
13,
13468,
1925,
385,
2030,
9766,
546,
373,
697,
310,
902,
6433,
287,
15006,
29892,
322,
769,
1925,
372,
304,
6592,
29889,
1588,
293,
6393,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Baumusu's Axe is a weapon from the game The Mark of Kri. Players can pick up this item and swing it around to deal damage. This item does not knock out AP orbs, but generates a lot of AP for the user. [1]
The D.L.D. originates from the Killzone series. When fired, the user must stay stationary and designate an area. That area will be bombared with three aerial missiles. It can be used up to 3 times and knocks AP orbs from victims.
The Hedgehog Grenade is a weapon from the Resistance series of games. It is a weapon which shoots out needles in all directions, using it namesake as inspiration. Players in PlayStation All-Stars Battle Royale can throw this grenade at oponents and temporarily stop opponets from using supers.
Killer Bees
Ape Escape
Mini.png
The two satellites fire small beams at opponets. The player must press either the square, triangle or circle buttons to activate the beams.
Leech Beam
Wipeout
Wipeout-HD-Fury-Modesto-Heights-5-LEECH-BEAM.jpg
The Leech beam absorbs AP from other players and gives it to the user. The user must be at a close distance.
LR-3 Railgun
Starhawk
Rail.png
When used it shoots a bullet that goes across the screen, similar to Radec’s sniper rifle except much stronger. It can go through multiple players and temporarily stop them form using their supers.
Based off of a vigor of the same name in BioShock Infinite. When used the crows travel in a straight line across the screen going through any player. When hit it will sap your AP and change your button layout.
This melee item is from the Ratchet & Clank series. Users can execute a combo of up to three hits and opponents hit by this will lose AP orbs. This item also allows the user to use a dive attack in midair.
The RPG-7, although a real weapon, is in PlayStation All-Stars Battle Royale as a weapon from the Uncharted series. It can be picked up by players and can fire projectiles at others, causing a large knockback alongside the loss of AP orbs. Can be used up to 3 times.
The Sackbot is a pickup item that turnes into an AI when thrown. The Sackbot will hunt down all players that aren't on the team of the one who activated him and latch on for a short amount of time. When the sackbot is on you, you slowly leak AP, and can't run. The sackbot will fall of after a short time or can be knocked of with attacks. the sackbot will just go and latch onto another player or disappear.
The Sonic Rift item is a level 3 weapon from ModNation Racers that launches a stream of blue rings along the level. In All-Stars, it turns around at walls and falls to the lowest level if released from high ground. The item leaves players stunned, but it has a delay before actually hitting players.
The Gravity Shield is a pick-up from the WipEout racing series. It forms a protective bubble around its user. While being used, the player is protected from being attacked, deterring opponents from building their super meter, and losing their own AP.
From Patapon, swinging the Great Mighty Scythe mid-air will create powerful tornadoes that will reverse the controls of anyone who is hit, cause the victims to float aimlessly in mid air or have them slowly immobilizeed for a while, leaving them open for combos.
The Medusa's Gaze is an item from the God of War series. In the God of War games, Kratos may use the head to turn enemies into stone. In PlayStation All-Stars, the Medusa Head is the only item in the entire game that will allow for kills, thus making it the only other way to kill someone other than using supers. It turns enemies to stone, where any attack can KO them.
Red Orb Chest
God of War
1106633_0.jpg
In the God of War series, chests were used to upgrade weapons and magic. In All Stars it gives an extremely large amount of AP. It is an epic item giving it a rare chance to spawn. This is not a true item since it only appears in metropolis. | [
1,
6000,
398,
375,
29884,
29915,
29879,
319,
17115,
338,
263,
28639,
515,
278,
3748,
450,
4485,
310,
476,
374,
29889,
7412,
414,
508,
5839,
701,
445,
2944,
322,
24500,
372,
2820,
304,
5376,
18658,
29889,
910,
2944,
947,
451,
18232,
714,
12279,
470,
5824,
29892,
541,
16785,
263,
3287,
310,
12279,
363,
278,
1404,
29889,
518,
29896,
29962,
13,
13,
1576,
360,
29889,
29931,
29889,
29928,
29889,
3978,
1078,
515,
278,
29021,
8028,
3652,
29889,
1932,
17285,
29892,
278,
1404,
1818,
7952,
5073,
653,
322,
2874,
403,
385,
4038,
29889,
2193,
4038,
674,
367,
13585,
1965,
411,
2211,
14911,
616,
3052,
5475,
29889,
739,
508,
367,
1304,
701,
304,
29871,
29941,
3064,
322,
18232,
29879,
12279,
470,
5824,
515,
6879,
9893,
29889,
13,
13,
1576,
379,
12864,
29882,
468,
13042,
1943,
338,
263,
28639,
515,
278,
2538,
21558,
3652,
310,
8090,
29889,
739,
338,
263,
28639,
607,
17394,
1862,
714,
817,
793,
297,
599,
18112,
29892,
773,
372,
2983,
1296,
408,
8681,
12232,
29889,
7412,
414,
297,
7412,
22814,
2178,
29899,
855,
1503,
12788,
15793,
744,
508,
3183,
445,
867,
264,
1943,
472,
1015,
265,
1237,
322,
5382,
6275,
5040,
23995,
1691,
515,
773,
480,
6774,
29889,
13,
13,
29968,
5495,
1522,
267,
13,
13,
29909,
412,
3423,
5738,
13,
13,
29924,
2172,
29889,
2732,
13,
13,
1576,
1023,
3290,
514,
3246,
3974,
2319,
367,
2232,
472,
23995,
1691,
29889,
450,
4847,
1818,
3965,
2845,
278,
6862,
29892,
17205,
470,
8607,
9828,
304,
5039,
403,
278,
367,
2232,
29889,
13,
13,
3226,
5309,
1522,
314,
13,
13,
29956,
15705,
449,
13,
13,
29956,
15705,
449,
29899,
26124,
29899,
29943,
2857,
29899,
2111,
4778,
29899,
3868,
5861,
29899,
29945,
29899,
1307,
29923,
3210,
29899,
15349,
5194,
29889,
6173,
13,
13,
1576,
951,
5309,
22913,
17977,
5824,
12279,
515,
916,
10769,
322,
4076,
372,
304,
278,
1404,
29889,
450,
1404,
1818,
367,
472,
263,
3802,
5418,
29889,
13,
13,
29519,
29899,
29941,
9620,
28798,
13,
13,
16213,
29882,
20011,
13,
13,
29934,
737,
29889,
2732,
13,
13,
10401,
1304,
372,
17394,
1862,
263,
24334,
393,
5771,
4822,
278,
4315,
29892,
2788,
304,
390,
1943,
29883,
30010,
29879,
9830,
546,
17018,
280,
5174,
1568,
23505,
29889,
739,
508,
748,
1549,
2999,
10769,
322,
5382,
6275,
5040,
963,
883,
773,
1009,
480,
6774,
29889,
13,
13,
29933,
1463,
1283,
310,
263,
14877,
272,
310,
278,
1021,
1024,
297,
21184,
29903,
1251,
384,
512,
18925,
29889,
1932,
1304,
278,
274,
5727,
9850,
297,
263,
7812,
1196,
4822,
278,
4315,
2675,
1549,
738,
4847,
29889,
1932,
7124,
372,
674,
21672,
596,
12279,
322,
1735,
596,
2826,
5912,
29889,
13,
13,
4013,
592,
17179,
2944,
338,
515,
278,
390,
905,
300,
669,
2233,
804,
3652,
29889,
23861,
508,
6222,
263,
419,
833,
310,
701,
304,
2211,
19572,
322,
23995,
1237,
7124,
491,
445,
674,
14074,
12279,
470,
5824,
29889,
910,
2944,
884,
6511,
278,
1404,
304,
671,
263,
270,
573,
5337,
297,
286,
1458,
381,
29889,
13,
13,
1576,
390,
16903,
29899,
29955,
29892,
5998,
263,
1855,
28639,
29892,
338,
297,
7412,
22814,
2178,
29899,
855,
1503,
12788,
15793,
744,
408,
263,
28639,
515,
278,
853,
15425,
287,
3652,
29889,
739,
508,
367,
18691,
701,
491,
10769,
322,
508,
3974,
2060,
5475,
472,
4045,
29892,
10805,
263,
2919,
18232,
1627,
19963,
278,
6410,
310,
12279,
470,
5824,
29889,
1815,
367,
1304,
701,
304,
29871,
29941,
3064,
29889,
13,
13,
1576,
317,
547,
7451,
338,
263,
5839,
786,
2944,
393,
2507,
267,
964,
385,
319,
29902,
746,
12005,
29889,
450,
317,
547,
7451,
674,
298,
1657,
1623,
599,
10769,
393,
9455,
29915,
29873,
373,
278,
3815,
310,
278,
697,
1058,
5039,
630,
1075,
322,
301,
905,
373,
363,
263,
3273,
5253,
310,
931,
29889,
1932,
278,
269,
547,
7451,
338,
373,
366,
29892,
366,
14205,
24993,
12279,
29892,
322,
508,
29915,
29873,
1065,
29889,
450,
269,
547,
7451,
674,
6416,
310,
1156,
263,
3273,
931,
470,
508,
367,
18232,
287,
310,
411,
16661,
29889,
278,
269,
547,
7451,
674,
925,
748,
322,
301,
905,
11480,
1790,
4847,
470,
25417,
29889,
13,
13,
1576,
5791,
293,
390,
2027,
2944,
338,
263,
3233,
29871,
29941,
28639,
515,
3382,
29940,
362,
390,
562,
414,
393,
6826,
267,
263,
4840,
310,
7254,
28774,
3412,
278,
3233,
29889,
512,
2178,
29899,
855,
1503,
29892,
372,
12169,
2820,
472,
14603,
322,
20074,
304,
278,
19604,
3233,
565,
5492,
515,
1880,
5962,
29889,
450,
2944,
11308,
10769,
380,
5963,
287,
29892,
541,
372,
756,
263,
9055,
1434,
2869,
29425,
10769,
29889,
13,
13,
1576,
4989,
17037,
1383,
969,
338,
263,
5839,
29899,
786,
515,
278,
399,
666,
29923,
449,
28965,
3652,
29889,
739,
7190,
263,
12566,
573,
289,
23232,
2820,
967,
1404,
29889,
5806,
1641,
1304,
29892,
278,
4847,
338,
6364,
515,
1641,
22630,
29892,
270,
1308,
5393,
23995,
1237,
515,
5214,
1009,
2428,
11134,
29892,
322,
19035,
1009,
1914,
12279,
29889,
13,
13,
4591,
4121,
481,
265,
29892,
24500,
292,
278,
7027,
341,
523,
29891,
317,
1270,
1552,
7145,
29899,
1466,
674,
1653,
13988,
10146,
912,
267,
393,
674,
11837,
278,
11761,
310,
5019,
1058,
338,
7124,
29892,
4556,
278,
6879,
9893,
304,
5785,
12242,
23769,
297,
7145,
4799,
470,
505,
963,
14205,
5198,
12213,
675,
287,
363,
263,
1550,
29892,
10124,
963,
1722,
363,
4145,
359,
29889,
13,
13,
1576,
3436,
11326,
29915,
29879,
15853,
29872,
338,
385,
2944,
515,
278,
4177,
310,
3362,
3652,
29889,
512,
278,
4177,
310,
3362,
8090,
29892,
476,
3605,
359,
1122,
671,
278,
2343,
304,
2507,
22595,
964,
12565,
29889,
512,
7412,
22814,
2178,
29899,
855,
1503,
29892,
278,
3436,
11326,
12252,
338,
278,
871,
2944,
297,
278,
4152,
3748,
393,
674,
2758,
363,
413,
6090,
29892,
4550,
3907,
372,
278,
871,
916,
982,
304,
12088,
4856,
916,
1135,
773,
480,
6774,
29889,
739,
12169,
22595,
304,
12565,
29892,
988,
738,
5337,
508,
476,
29949,
963,
29889,
13,
13,
9039,
1394,
29890,
678,
342,
13,
13,
29954,
397,
310,
3362,
13,
13,
29896,
29896,
29900,
29953,
29953,
29941,
29941,
29918,
29900,
29889,
6173,
13,
13,
797,
278,
4177,
310,
3362,
3652,
29892,
521,
9197,
892,
1304,
304,
14955,
25340,
322,
15709,
29889,
512,
2178,
25435,
372,
4076,
385,
14154,
2919,
5253,
310,
12279,
29889,
739,
338,
385,
9358,
293,
2944,
6820,
372,
263,
10812,
8825,
304,
29178,
29889,
910,
338,
451,
263,
1565,
2944,
1951,
372,
871,
5692,
297,
25311,
275,
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
] |
Hey Chasers! To ring in the New Year we had an idea. Chasing Atlantis is a film about how people are inspired by space and space exploration. But it is also about the pursuit of one’s passion and the journey that can lead you on. In light of this, we want to hear more about what YOU are pursuing this … | [
1,
18637,
678,
294,
414,
29991,
1763,
9228,
297,
278,
1570,
8905,
591,
750,
385,
2969,
29889,
678,
5832,
8920,
424,
275,
338,
263,
2706,
1048,
920,
2305,
526,
20603,
491,
2913,
322,
2913,
3902,
12418,
29889,
1205,
372,
338,
884,
1048,
278,
12359,
3121,
310,
697,
30010,
29879,
15935,
322,
278,
16342,
393,
508,
3275,
366,
373,
29889,
512,
3578,
310,
445,
29892,
591,
864,
304,
8293,
901,
1048,
825,
612,
27269,
526,
12359,
26420,
445,
16088
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Tag Archives: help prevent dementia
Being anxious, stressed and introverted, may well increase the risk of future dementia, according to a recent study. Researchers have recently found that more relaxed, social individuals, develop dementia less often when elderly, than their stressed-out, antisocial counterparts. To be easily distressed (neuroticism), is an extremely common trait, and of course many people have little… Continue reading → | [
1,
10522,
28320,
29901,
1371,
5557,
316,
358,
423,
13,
13,
3629,
292,
24937,
29892,
851,
11517,
322,
22909,
1765,
287,
29892,
1122,
1532,
7910,
278,
12045,
310,
5434,
316,
358,
423,
29892,
5034,
304,
263,
7786,
6559,
29889,
10550,
414,
505,
10325,
1476,
393,
901,
26681,
287,
29892,
5264,
15724,
29892,
2693,
316,
358,
423,
3109,
4049,
746,
27008,
368,
29892,
1135,
1009,
851,
11517,
29899,
449,
29892,
3677,
10718,
1455,
6795,
20895,
29889,
1763,
367,
5948,
1320,
1253,
287,
313,
484,
2192,
29873,
293,
1608,
511,
338,
385,
14154,
3619,
22917,
29892,
322,
310,
3236,
1784,
2305,
505,
2217,
30098,
2866,
14150,
5183,
10309
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Archive for February, 2014
Hi all, today I’m going to show a very simple trick that is very useful for everyone that uses ODI in version 11.1.1.5 or below. How many times you got a code to debug from Operator and you needed to keep replacing all those ODI variables for its correct values in order to troubleshoot something? If you work with ODI development probably you do it every day. Depending on the case, it can be very time consuming because you need to get all input variables, execute all SQLs from refresh variables and so on. Luckily for those on ODI 11.1.1.6 and beyond, Oracle have added the variables values to the Operator steps, so no need to go hunting variables anymore, but what about the older versions?
There are a lot of alternatives around there and I have used one in particular for a long time. It is a simple Jython procedure that has an option where I add all ODI variables that I want to show and a step with a “raise” Jython command with ignore errors selected:
It works pretty fine, when you execute it inside a package all variables values that you have added in the option will show in Operator, but it is always a pain in large projects because you may have 20 variables or so and you need to copy and paste its name one by one to the procedure’s option, but it was way better than having nothing at all.
Tired of doing this copy and paste work, a coworker (thanks Eduardo for the great idea and the SQL!) came with the follow idea: Why don’t we query ODI repository metadata to get all variables that were used in the ODI scenario and “raise” its value? Simple but great idea because it is just a matter to place the procedure anywhere in the ODI package and it will show all the variable’s values at that point.
It’s very easy to accomplish this. First you need to have a topology set to the ODI work repository, and then you need to create a procedure with two steps. First step will have the ODI work repository logical schema set in the “Command on Source” tab:
And the below Java BeanShell code written in the “Command on Target” tab:
In resume, the above query goes against the ODI repository and returns one line containing all ODI variables used in the ODI scenario until that point. This query can be accomplished in several different ways (for example using listAgg Oracle’s feature in a newer database) and you may tweak it to return more valuable information if needed. With this information added to “odivars” variable, it is just a matter to “raise” it in the second step:
Let’s see how it works. Imagine the below ODI scenario:
When we execute it and take a look in ODI Operator, this is what we get in the first procedure execution:
It shows the values “123” and “A” for the first two variables. When we look at the second procedure execution we get all the three variables:
As you can see, it works with all kind of variables (refresh, set, declare, global, project only, etc) and if you want even more freedom, you may add this code inside your Knowledge modules in the very first steps, so you will know all the variables values that was used in your integration steps without the need to drag and drop a procedure to the ODI package.
That’s it folks. I hope it is useful for you. Thanks again Eduardo for the idea! See ya!
Last week I got the response from Oracle about my ODI certification exam that I did back in December when it was still in beta. I got approved with a 91% score! It was a very good exam and I’ll try to share some thoughts about it here in the blog.
As I said before, I took a beta exam (named 1Z1-482, 1Z1 indicates beta, 1Z0 production exam) which is a little different from the regular Oracle exams. Here are some of the differences:
Beta exams are pre-production exams used by Oracle to evaluate new exam questions with the participation of a live audience;
Data gathered during beta testing are used to select the best questions for the production exam;
Beta exams are offered at a deeply discounted price (I took for $50, now it is $245);
Candidates usually have 2.5 to 3.5 hours to complete the exam, instead of 2 hours;
Need to answer from 120 – 220 questions, instead of 71 questions;
Passing a beta exam is the same as passing a production exam;
As you can see, as a Beta tester you have some extra work to do since you have to answer way more questions in a longer duration exam but the good thing is that the exam is way cheaper. So, after you have done your exam, Oracle analyzes all beta exams and from those 120-220 questions, only 71 gets to the official exam and those are the ones that you are scored against. So my 91% was related to the final 71 questions and not against all 124 questions that I answered.
But you should not worry about this beta thing anymore, since the certification is already in production, so let’s talk about what is in the exam. I found it very good, with several questions about every day ODI usage with a VERY BIG exception: EDQ (Enterprise Data Quality) questions. There were a lot of questions about it and they were really a pain…. But prior to talk about them, let’s go by each exam topic, so I can explain each one better. You can see more information about the exam and all the related topics in Oracle’s page:
I’ll talk about all those topics together because they are the day to day ODI operations, so if you work with ODI, you will be fine on those topics. I really liked the certification exam because a lot of questions were focused in these topics and for me those are the ones that make more sense to be in the exam, since these are the topics that your actually work with. I’ll not go into details here because I am assuming that those who want to become certificated have already a hands on experience in the tool and since there are a small amount of questions about every topic you can expect everything from simple questions about ODI variables and interfaces to some more complex questions like which/where temporary tables are created in a specific situation. But again, if you work with ODI, you will be more than fine here.
Managing ODI Execution
Although it may be considered a daily operation, I wanted to talk about this topic separately because this was one topic that kind of surprised me due to the big amount of questions about Load Plans. If you are an older ODI developer like me, you will know that Load Plan is a feature released in ODI 11g version, so it may be considered pretty new. I know a lot of places and projects that they don’t even know what a Load Plan is because they can get around executions only by using ODI scenarios. So here is my tip: you need to know everything about Load Plans. How to create parallel executions, how to restart it using all restart options, how to edit load plans and do on. Even if you work with Load Plans already, study them. There are always those options that you generally don’t use, but you need to know for the exam.
Integrating Oracle GoldenGate with ODI
OGG is a great product to integrate with ODI for real timing integrations and Oracle wants to be sure that their specialists knows how to use those two together. There were some questions about CDC in general and some more specifics regarding CDC using OGG. CDC is a concept and ODI has some possibilities to implement it besides OGG, so you need to be aware of all them. You need to know what is a journal and subscribers, how to properly setup up journalizing, which types exists, what are the structures that ODI creates both in source and target databases, how do you Extend a Window, Lock Subscribers, which ODI tools are used to work with CDC and so on. A good material about CDC can be found in Oracle documentation:
For CDC with OGG you need to worry more about the details. You need to know how the Knowledge module works, which are its parameters and will even need to know about the basic commands in OGG to start the Extract and Replicat processes. Oracle has a great documentation about ODI + OGG integration. If you have a chance to actually build a small environment with OGG and ODI I strongly recommend it, so you can see with your own eyes all the details, architecture and so on.
It may be considered the “advanced” topics in ODI certification. These topics are the ones that most of the ODI developers do not generally work in every project that they are engaged (big data is a good example) since they are very specific. I’ll go by each subtopic to explain it better:
SDK
This is a complicated topic because there is a lot of content that you may study and learn about it but just a few questions are in the exam. Below is the link to ODI SDK java API with all classes, functions and so on. Of course that you will not need to know all of it by heart, but you need to know the basics. My recommendation is to read the main classes of API and create some examples on your own just to get the handle of it. ODI Experts site has a lot of SDK examples, so grab some of them and try them out.
This topic was the one that I actually had to study about it. Although I already read about big data stuff, I had never taken a look on how ODI worked with it. So here you need to know about what big data, Hadoop and Hive are and especially and most importantly which KMs and adapters ODI has to manipulate/load/extract big data. There is an OBIEE/ODI/HADOOP series in Rittman Mead blog that I strongly recommend:
Have you already heard of Data lineage using ODI and OBIEE? If no, you should, because there are a few questions about it in the exam. Study its architecture, lineage options and how to use it. Oracle has a good documentation about it here:
Here is the big villain of ODI certification exam in my option: EDQ. A lot of questions about EDQ appeared in the beta exam and I really pray that Oracle have removed some of them when they created the production exam. Honestly, how many of you already worked with it? How many production systems exist that are currently using EDQ? Very, very few…. I personally don’t know anyone. EDQ is a data quality tool that identifies, categorize and even do some ETL to fix your data, but hey ODI may also do it using constraints. Of course EDQ is intended to be used by the business folks that are the “owners” of that data, so EDQ provides some nice dashboards and web accesses, but believe me, almost 100% of the time, business users are interested in their business not IT. IT folks will take care of any errors they find in their data and provide them what they want and if IT owns this responsibility, they will use ODI for it, not EDQ. But I understand Oracle’s movement: it has an entire set of great integration tools and EDQ is the tool responsible for data quality. Since nobody is actually using it, they added it to the exam to increase its visibility and try to get some movement around it.
Ok, let me stop whining about it and start to tell what I did to study this tool. First I read about it in Rittman Mead blog which contains a lot of good information:
In EDQ’s case, reading will not be enough, at least in my case it wasn’t. I truly recommend you to download, install and play with it a little. You will need to know about EDQ architecture, its modules, how to do basic profiling with its pre-build processors, how EDQ and ODI talks to each other and so on. This is the hardest part of the exam for sure and there is no easy way to study it.
That’s it folks. I hope these tips can help you to achieve ODI certification. It is a good challenge but it is worth it! | [
1,
9000,
363,
6339,
29892,
29871,
29906,
29900,
29896,
29946,
13,
13,
18567,
599,
29892,
9826,
306,
30010,
29885,
2675,
304,
1510,
263,
1407,
2560,
8938,
393,
338,
1407,
5407,
363,
14332,
393,
3913,
438,
4571,
297,
1873,
29871,
29896,
29896,
29889,
29896,
29889,
29896,
29889,
29945,
470,
2400,
29889,
1128,
1784,
3064,
366,
2355,
263,
775,
304,
4744,
515,
6607,
1061,
322,
366,
4312,
304,
3013,
15270,
599,
1906,
438,
4571,
3651,
363,
967,
1959,
1819,
297,
1797,
304,
18835,
1251,
327,
1554,
29973,
960,
366,
664,
411,
438,
4571,
5849,
3117,
366,
437,
372,
1432,
2462,
29889,
28277,
373,
278,
1206,
29892,
372,
508,
367,
1407,
931,
1136,
9929,
1363,
366,
817,
304,
679,
599,
1881,
3651,
29892,
6222,
599,
3758,
29879,
515,
11086,
3651,
322,
577,
373,
29889,
365,
2707,
2354,
363,
1906,
373,
438,
4571,
29871,
29896,
29896,
29889,
29896,
29889,
29896,
29889,
29953,
322,
8724,
29892,
15401,
505,
2715,
278,
3651,
1819,
304,
278,
6607,
1061,
6576,
29892,
577,
694,
817,
304,
748,
29826,
3651,
15128,
29892,
541,
825,
1048,
278,
9642,
6910,
29973,
13,
13,
8439,
526,
263,
3287,
310,
27809,
2820,
727,
322,
306,
505,
1304,
697,
297,
3153,
363,
263,
1472,
931,
29889,
739,
338,
263,
2560,
435,
1656,
8792,
393,
756,
385,
2984,
988,
306,
788,
599,
438,
4571,
3651,
393,
306,
864,
304,
1510,
322,
263,
4331,
411,
263,
1346,
22692,
30024,
435,
1656,
1899,
411,
11455,
4436,
4629,
29901,
13,
13,
3112,
1736,
5051,
2691,
29892,
746,
366,
6222,
372,
2768,
263,
3577,
599,
3651,
1819,
393,
366,
505,
2715,
297,
278,
2984,
674,
1510,
297,
6607,
1061,
29892,
541,
372,
338,
2337,
263,
6788,
297,
2919,
9279,
1363,
366,
1122,
505,
29871,
29906,
29900,
3651,
470,
577,
322,
366,
817,
304,
3509,
322,
11417,
967,
1024,
697,
491,
697,
304,
278,
8792,
30010,
29879,
2984,
29892,
541,
372,
471,
982,
2253,
1135,
2534,
3078,
472,
599,
29889,
13,
13,
29911,
2859,
310,
2599,
445,
3509,
322,
11417,
664,
29892,
263,
21282,
548,
261,
313,
386,
1331,
7519,
6491,
363,
278,
2107,
2969,
322,
278,
3758,
14366,
2996,
411,
278,
1101,
2969,
29901,
3750,
1016,
30010,
29873,
591,
2346,
438,
4571,
9810,
15562,
304,
679,
599,
3651,
393,
892,
1304,
297,
278,
438,
4571,
10483,
322,
1346,
22692,
30024,
967,
995,
29973,
12545,
541,
2107,
2969,
1363,
372,
338,
925,
263,
4383,
304,
2058,
278,
8792,
12214,
297,
278,
438,
4571,
3577,
322,
372,
674,
1510,
599,
278,
2286,
30010,
29879,
1819,
472,
393,
1298,
29889,
13,
13,
3112,
30010,
29879,
1407,
4780,
304,
12709,
445,
29889,
3824,
366,
817,
304,
505,
263,
20159,
731,
304,
278,
438,
4571,
664,
9810,
29892,
322,
769,
366,
817,
304,
1653,
263,
8792,
411,
1023,
6576,
29889,
3824,
4331,
674,
505,
278,
438,
4571,
664,
9810,
16667,
10938,
731,
297,
278,
1346,
6255,
373,
7562,
30024,
4434,
29901,
13,
13,
2855,
278,
2400,
3355,
1522,
273,
16037,
775,
3971,
297,
278,
1346,
6255,
373,
17157,
30024,
4434,
29901,
13,
13,
797,
620,
2017,
29892,
278,
2038,
2346,
5771,
2750,
278,
438,
4571,
9810,
322,
3639,
697,
1196,
6943,
599,
438,
4571,
3651,
1304,
297,
278,
438,
4571,
10483,
2745,
393,
1298,
29889,
910,
2346,
508,
367,
24799,
297,
3196,
1422,
5837,
313,
1454,
1342,
773,
1051,
29909,
1505,
15401,
30010,
29879,
4682,
297,
263,
20687,
2566,
29897,
322,
366,
1122,
7780,
557,
372,
304,
736,
901,
21114,
2472,
565,
4312,
29889,
2973,
445,
2472,
2715,
304,
1346,
397,
440,
1503,
30024,
2286,
29892,
372,
338,
925,
263,
4383,
304,
1346,
22692,
30024,
372,
297,
278,
1473,
4331,
29901,
13,
13,
12024,
30010,
29879,
1074,
920,
372,
1736,
29889,
1954,
22094,
278,
2400,
438,
4571,
10483,
29901,
13,
13,
10401,
591,
6222,
372,
322,
2125,
263,
1106,
297,
438,
4571,
6607,
1061,
29892,
445,
338,
825,
591,
679,
297,
278,
937,
8792,
8225,
29901,
13,
13,
3112,
3697,
278,
1819,
1346,
29896,
29906,
29941,
30024,
322,
1346,
29909,
30024,
363,
278,
937,
1023,
3651,
29889,
1932,
591,
1106,
472,
278,
1473,
8792,
8225,
591,
679,
599,
278,
2211,
3651,
29901,
13,
13,
2887,
366,
508,
1074,
29892,
372,
1736,
411,
599,
2924,
310,
3651,
313,
22379,
29892,
731,
29892,
9607,
29892,
5534,
29892,
2060,
871,
29892,
2992,
29897,
322,
565,
366,
864,
1584,
901,
16082,
29892,
366,
1122,
788,
445,
775,
2768,
596,
19320,
5485,
10585,
297,
278,
1407,
937,
6576,
29892,
577,
366,
674,
1073,
599,
278,
3651,
1819,
393,
471,
1304,
297,
596,
13465,
6576,
1728,
278,
817,
304,
8338,
322,
5768,
263,
8792,
304,
278,
438,
4571,
3577,
29889,
13,
13,
7058,
30010,
29879,
372,
900,
2039,
29889,
306,
4966,
372,
338,
5407,
363,
366,
29889,
1834,
1449,
7519,
6491,
363,
278,
2969,
29991,
2823,
9343,
29991,
13,
13,
8897,
4723,
306,
2355,
278,
2933,
515,
15401,
1048,
590,
438,
4571,
2284,
2450,
4392,
393,
306,
1258,
1250,
297,
5846,
746,
372,
471,
1603,
297,
21762,
29889,
306,
2355,
23454,
411,
263,
29871,
29929,
29896,
29995,
8158,
29991,
739,
471,
263,
1407,
1781,
4392,
322,
306,
30010,
645,
1018,
304,
6232,
777,
13133,
1048,
372,
1244,
297,
278,
12618,
29889,
13,
13,
2887,
306,
1497,
1434,
29892,
306,
3614,
263,
21762,
4392,
313,
17514,
29871,
29896,
29999,
29896,
29899,
29946,
29947,
29906,
29892,
29871,
29896,
29999,
29896,
14088,
21762,
29892,
29871,
29896,
29999,
29900,
5802,
4392,
29897,
607,
338,
263,
2217,
1422,
515,
278,
4943,
15401,
429,
2232,
29889,
2266,
526,
777,
310,
278,
12651,
29901,
13,
13,
29933,
1187,
429,
2232,
526,
758,
29899,
24601,
429,
2232,
1304,
491,
15401,
304,
14707,
716,
4392,
5155,
411,
278,
27577,
310,
263,
5735,
20026,
29936,
13,
13,
1469,
22229,
2645,
21762,
6724,
526,
1304,
304,
1831,
278,
1900,
5155,
363,
278,
5802,
4392,
29936,
13,
13,
29933,
1187,
429,
2232,
526,
12520,
472,
263,
24344,
2313,
792,
287,
8666,
313,
29902,
3614,
363,
395,
29945,
29900,
29892,
1286,
372,
338,
395,
29906,
29946,
29945,
416,
13,
13,
29907,
5380,
1078,
5491,
505,
29871,
29906,
29889,
29945,
304,
29871,
29941,
29889,
29945,
6199,
304,
4866,
278,
4392,
29892,
2012,
310,
29871,
29906,
6199,
29936,
13,
13,
8139,
287,
304,
1234,
515,
29871,
29896,
29906,
29900,
785,
29871,
29906,
29906,
29900,
5155,
29892,
2012,
310,
29871,
29955,
29896,
5155,
29936,
13,
13,
7129,
292,
263,
21762,
4392,
338,
278,
1021,
408,
6819,
263,
5802,
4392,
29936,
13,
13,
2887,
366,
508,
1074,
29892,
408,
263,
350,
1187,
1243,
261,
366,
505,
777,
4805,
664,
304,
437,
1951,
366,
505,
304,
1234,
982,
901,
5155,
297,
263,
5520,
14385,
4392,
541,
278,
1781,
2655,
338,
393,
278,
4392,
338,
982,
923,
7202,
29889,
1105,
29892,
1156,
366,
505,
2309,
596,
4392,
29892,
15401,
16455,
10947,
599,
21762,
429,
2232,
322,
515,
1906,
29871,
29896,
29906,
29900,
29899,
29906,
29906,
29900,
5155,
29892,
871,
29871,
29955,
29896,
4947,
304,
278,
6221,
4392,
322,
1906,
526,
278,
6743,
393,
366,
526,
15569,
2750,
29889,
1105,
590,
29871,
29929,
29896,
29995,
471,
4475,
304,
278,
2186,
29871,
29955,
29896,
5155,
322,
451,
2750,
599,
29871,
29896,
29906,
29946,
5155,
393,
306,
7699,
29889,
13,
13,
6246,
366,
881,
451,
15982,
1048,
445,
21762,
2655,
15128,
29892,
1951,
278,
2284,
2450,
338,
2307,
297,
5802,
29892,
577,
1235,
30010,
29879,
5193,
1048,
825,
338,
297,
278,
4392,
29889,
306,
1476,
372,
1407,
1781,
29892,
411,
3196,
5155,
1048,
1432,
2462,
438,
4571,
8744,
411,
263,
478,
24422,
350,
6259,
3682,
29901,
9408,
29984,
313,
10399,
7734,
3630,
751,
2877,
29897,
5155,
29889,
1670,
892,
263,
3287,
310,
5155,
1048,
372,
322,
896,
892,
2289,
263,
6788,
30098,
29889,
1205,
7536,
304,
5193,
1048,
963,
29892,
1235,
30010,
29879,
748,
491,
1269,
4392,
11261,
29892,
577,
306,
508,
5649,
1269,
697,
2253,
29889,
887,
508,
1074,
901,
2472,
1048,
278,
4392,
322,
599,
278,
4475,
23820,
297,
15401,
30010,
29879,
1813,
29901,
13,
13,
29902,
30010,
645,
5193,
1048,
599,
1906,
23820,
4208,
1363,
896,
526,
278,
2462,
304,
2462,
438,
4571,
6931,
29892,
577,
565,
366,
664,
411,
438,
4571,
29892,
366,
674,
367,
2691,
373,
1906,
23820,
29889,
306,
2289,
23289,
278,
2284,
2450,
4392,
1363,
263,
3287,
310,
5155,
892,
21309,
297,
1438,
23820,
322,
363,
592,
1906,
526,
278,
6743,
393,
1207,
901,
4060,
304,
367,
297,
278,
4392,
29892,
1951,
1438,
526,
278,
23820,
393,
596,
2869,
664,
411,
29889,
306,
30010,
645,
451,
748,
964,
4902,
1244,
1363,
306,
626,
10241,
393,
1906,
1058,
864,
304,
4953,
23199,
630,
505,
2307,
263,
6567,
373,
7271,
297,
278,
5780,
322,
1951,
727,
526,
263,
2319,
5253,
310,
5155,
1048,
1432,
11261,
366,
508,
2149,
4129,
515,
2560,
5155,
1048,
438,
4571,
3651,
322,
19510,
304,
777,
901,
4280,
5155,
763,
607,
29914,
3062,
13201,
6131,
526,
2825,
297,
263,
2702,
6434,
29889,
1205,
1449,
29892,
565,
366,
664,
411,
438,
4571,
29892,
366,
674,
367,
901,
1135,
2691,
1244,
29889,
13,
13,
2517,
6751,
438,
4571,
11080,
918,
13,
13,
2499,
3592,
372,
1122,
367,
5545,
263,
14218,
5858,
29892,
306,
5131,
304,
5193,
1048,
445,
11261,
16949,
1363,
445,
471,
697,
11261,
393,
2924,
310,
18014,
592,
2861,
304,
278,
4802,
5253,
310,
5155,
1048,
16012,
1858,
550,
29889,
960,
366,
526,
385,
9642,
438,
4571,
13897,
763,
592,
29892,
366,
674,
1073,
393,
16012,
8402,
338,
263,
4682,
5492,
297,
438,
4571,
29871,
29896,
29896,
29887,
1873,
29892,
577,
372,
1122,
367,
5545,
5051,
716,
29889,
306,
1073,
263,
3287,
310,
7600,
322,
9279,
393,
896,
1016,
30010,
29873,
1584,
1073,
825,
263,
16012,
8402,
338,
1363,
896,
508,
679,
2820,
8225,
29879,
871,
491,
773,
438,
4571,
21846,
29889,
1105,
1244,
338,
590,
6872,
29901,
366,
817,
304,
1073,
4129,
1048,
16012,
1858,
550,
29889,
1128,
304,
1653,
8943,
8225,
29879,
29892,
920,
304,
10715,
372,
773,
599,
10715,
3987,
29892,
920,
304,
3863,
2254,
13900,
322,
437,
373,
29889,
7753,
565,
366,
664,
411,
16012,
1858,
550,
2307,
29892,
6559,
963,
29889,
1670,
526,
2337,
1906,
3987,
393,
366,
6892,
1016,
30010,
29873,
671,
29892,
541,
366,
817,
304,
1073,
363,
278,
4392,
29889,
13,
13,
23573,
1218,
15401,
16108,
29954,
403,
411,
438,
4571,
13,
13,
29949,
26788,
338,
263,
2107,
3234,
304,
22782,
411,
438,
4571,
363,
1855,
28750,
3990,
800,
322,
15401,
10753,
304,
367,
1854,
393,
1009,
4266,
2879,
9906,
920,
304,
671,
1906,
1023,
4208,
29889,
1670,
892,
777,
5155,
1048,
7307,
29907,
297,
2498,
322,
777,
901,
2702,
29879,
11211,
7307,
29907,
773,
438,
26788,
29889,
7307,
29907,
338,
263,
6964,
322,
438,
4571,
756,
777,
24496,
304,
2334,
372,
18034,
438,
26788,
29892,
577,
366,
817,
304,
367,
9543,
310,
599,
963,
29889,
887,
817,
304,
1073,
825,
338,
263,
8955,
322,
21696,
2596,
29892,
920,
304,
6284,
6230,
701,
8955,
5281,
29892,
607,
4072,
4864,
29892,
825,
526,
278,
12286,
393,
438,
4571,
10017,
1716,
297,
2752,
322,
3646,
21218,
29892,
920,
437,
366,
7338,
355,
263,
18379,
29892,
18199,
3323,
7588,
2596,
29892,
607,
438,
4571,
8492,
526,
1304,
304,
664,
411,
7307,
29907,
322,
577,
373,
29889,
319,
1781,
5518,
1048,
7307,
29907,
508,
367,
1476,
297,
15401,
5106,
29901,
13,
13,
2831,
7307,
29907,
411,
438,
26788,
366,
817,
304,
15982,
901,
1048,
278,
4902,
29889,
887,
817,
304,
1073,
920,
278,
19320,
5485,
3883,
1736,
29892,
607,
526,
967,
4128,
322,
674,
1584,
817,
304,
1073,
1048,
278,
6996,
8260,
297,
438,
26788,
304,
1369,
278,
7338,
1461,
322,
10088,
506,
271,
10174,
29889,
15401,
756,
263,
2107,
5106,
1048,
438,
4571,
718,
438,
26788,
13465,
29889,
960,
366,
505,
263,
8825,
304,
2869,
2048,
263,
2319,
5177,
411,
438,
26788,
322,
438,
4571,
306,
13818,
6907,
372,
29892,
577,
366,
508,
1074,
411,
596,
1914,
5076,
599,
278,
4902,
29892,
11258,
322,
577,
373,
29889,
13,
13,
3112,
1122,
367,
5545,
278,
1346,
328,
16858,
30024,
23820,
297,
438,
4571,
2284,
2450,
29889,
4525,
23820,
526,
278,
6743,
393,
1556,
310,
278,
438,
4571,
18777,
437,
451,
6892,
664,
297,
1432,
2060,
393,
896,
526,
17785,
313,
3752,
848,
338,
263,
1781,
1342,
29897,
1951,
896,
526,
1407,
2702,
29889,
306,
30010,
645,
748,
491,
1269,
1014,
13010,
304,
5649,
372,
2253,
29901,
13,
13,
26912,
13,
13,
4013,
338,
263,
12092,
11261,
1363,
727,
338,
263,
3287,
310,
2793,
393,
366,
1122,
6559,
322,
5110,
1048,
372,
541,
925,
263,
2846,
5155,
526,
297,
278,
4392,
29889,
13866,
338,
278,
1544,
304,
438,
4571,
12967,
2115,
3450,
411,
599,
4413,
29892,
3168,
322,
577,
373,
29889,
4587,
3236,
393,
366,
674,
451,
817,
304,
1073,
599,
310,
372,
491,
5192,
29892,
541,
366,
817,
304,
1073,
278,
2362,
1199,
29889,
1619,
29303,
338,
304,
1303,
278,
1667,
4413,
310,
3450,
322,
1653,
777,
6455,
373,
596,
1914,
925,
304,
679,
278,
4386,
310,
372,
29889,
438,
4571,
28224,
1372,
3268,
756,
263,
3287,
310,
12967,
6455,
29892,
577,
17229,
777,
310,
963,
322,
1018,
963,
714,
29889,
13,
13,
4013,
11261,
471,
278,
697,
393,
306,
2869,
750,
304,
6559,
1048,
372,
29889,
8512,
306,
2307,
1303,
1048,
4802,
848,
6433,
29892,
306,
750,
2360,
4586,
263,
1106,
373,
920,
438,
4571,
3796,
411,
372,
29889,
1105,
1244,
366,
817,
304,
1073,
1048,
825,
4802,
848,
29892,
379,
18079,
322,
379,
573,
526,
322,
7148,
322,
1556,
4100,
368,
607,
476,
29924,
29879,
322,
594,
481,
2153,
438,
4571,
756,
304,
26749,
29914,
1359,
29914,
21111,
4802,
848,
29889,
1670,
338,
385,
438,
29933,
8673,
29923,
29914,
29949,
4571,
29914,
29950,
3035,
29949,
4590,
3652,
297,
390,
986,
1171,
341,
1479,
12618,
393,
306,
13818,
6907,
29901,
13,
13,
25559,
366,
2307,
6091,
310,
3630,
1196,
482,
773,
438,
4571,
322,
438,
29933,
8673,
29923,
29973,
960,
694,
29892,
366,
881,
29892,
1363,
727,
526,
263,
2846,
5155,
1048,
372,
297,
278,
4392,
29889,
29301,
967,
11258,
29892,
1196,
482,
3987,
322,
920,
304,
671,
372,
29889,
15401,
756,
263,
1781,
5106,
1048,
372,
1244,
29901,
13,
13,
10605,
338,
278,
4802,
21031,
262,
310,
438,
4571,
2284,
2450,
4392,
297,
590,
2984,
29901,
9408,
29984,
29889,
319,
3287,
310,
5155,
1048,
9408,
29984,
7470,
297,
278,
21762,
4392,
322,
306,
2289,
12475,
393,
15401,
505,
6206,
777,
310,
963,
746,
896,
2825,
278,
5802,
4392,
29889,
7906,
342,
368,
29892,
920,
1784,
310,
366,
2307,
3796,
411,
372,
29973,
1128,
1784,
5802,
6757,
1863,
393,
526,
5279,
773,
9408,
29984,
29973,
18064,
29892,
1407,
2846,
30098,
29889,
306,
22345,
1016,
30010,
29873,
1073,
5019,
29889,
9408,
29984,
338,
263,
848,
11029,
5780,
393,
2893,
11057,
29892,
11608,
675,
322,
1584,
437,
777,
382,
14632,
304,
2329,
596,
848,
29892,
541,
540,
29891,
438,
4571,
1122,
884,
437,
372,
773,
11938,
29889,
4587,
3236,
9408,
29984,
338,
9146,
304,
367,
1304,
491,
278,
5381,
900,
2039,
393,
526,
278,
1346,
776,
414,
30024,
310,
393,
848,
29892,
577,
9408,
29984,
8128,
777,
7575,
12569,
24691,
322,
1856,
2130,
267,
29892,
541,
4658,
592,
29892,
4359,
29871,
29896,
29900,
29900,
29995,
310,
278,
931,
29892,
5381,
4160,
526,
8852,
297,
1009,
5381,
451,
13315,
29889,
13315,
900,
2039,
674,
2125,
2562,
310,
738,
4436,
896,
1284,
297,
1009,
848,
322,
3867,
963,
825,
896,
864,
322,
565,
13315,
1914,
29879,
445,
23134,
29892,
896,
674,
671,
438,
4571,
363,
372,
29892,
451,
9408,
29984,
29889,
1205,
306,
2274,
15401,
30010,
29879,
10298,
29901,
372,
756,
385,
4152,
731,
310,
2107,
13465,
8492,
322,
9408,
29984,
338,
278,
5780,
14040,
363,
848,
11029,
29889,
4001,
23196,
338,
2869,
773,
372,
29892,
896,
2715,
372,
304,
278,
4392,
304,
7910,
967,
26401,
322,
1018,
304,
679,
777,
10298,
2820,
372,
29889,
13,
13,
20434,
29892,
1235,
592,
5040,
377,
2827,
1048,
372,
322,
1369,
304,
2649,
825,
306,
1258,
304,
6559,
445,
5780,
29889,
3824,
306,
1303,
1048,
372,
297,
390,
986,
1171,
341,
1479,
12618,
607,
3743,
263,
3287,
310,
1781,
2472,
29901,
13,
13,
797,
9408,
29984,
30010,
29879,
1206,
29892,
5183,
674,
451,
367,
3307,
29892,
472,
3203,
297,
590,
1206,
372,
9007,
30010,
29873,
29889,
306,
19781,
6907,
366,
304,
5142,
29892,
2601,
322,
1708,
411,
372,
263,
2217,
29889,
887,
674,
817,
304,
1073,
1048,
9408,
29984,
11258,
29892,
967,
10585,
29892,
920,
304,
437,
6996,
20077,
292,
411,
967,
758,
29899,
4282,
1889,
943,
29892,
920,
9408,
29984,
322,
438,
4571,
5969,
2039,
304,
1269,
916,
322,
577,
373,
29889,
910,
338,
278,
2898,
342,
760,
310,
278,
4392,
363,
1854,
322,
727,
338,
694,
4780,
982,
304,
6559,
372,
29889,
13,
13,
7058,
30010,
29879,
372,
900,
2039,
29889,
306,
4966,
1438,
25562,
508,
1371,
366,
304,
6176,
438,
4571,
2284,
2450,
29889,
739,
338,
263,
1781,
18766,
541,
372,
338,
7088,
372,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Our first photo for this week is a photo of a postcard with the caption “July 5th Flood at Painted Post, N.Y.”
If you recognize the location the photo was taken or known the year it was taken let us know.
I’m guessing the photo wasn’t taken in 1972 as it seems like more than a week would be a long time for the flood of June 23 to still be flooding houses – but as I was 6 in 1972 perhaps I’m wrong on on that score!
Photo 2: Mystery Park
Our second photo of the week is of a park somewhere in our region. Judging by the fountain I’m guessing this photo was taken in the 19th or early 20th Century.
The only building that looks familiar to me is the brick building seen in the background on the left side of the photo – is that by chance the old Corning Armory building that has housed the YMCA for the last couple of decades?
If you know where the photo was taken – let us know!
Have a good weekend!
Linda, SSCL
Library Local History/Creation Station Resources:
At the library you can scan your photos and slides to create digital family albums and slideshows; and even use one of the Circut machines, and other Creation Station equipment, to help you create a special paper family history album.
Also of note, we have the local paper, at times called the Corning Leader, Corning Journal or Corning Daily Journal, on microfilm from 1840 to the present — so you can visit the library and research local history and your family tree if you wish!
And…
And if you find any old photos of the Corning area that you don’t know what to do with – you can always donate them to the library!
In our first photo for this week we see an old truck that clearly belonged to the City of Corning, Department of Public Works. And I’m assuming the building was an old DPW building located inside the city limits. However, the building must be long gone as I don’t recall ever having seen it in the forty odd years I’ve been living in Corning.
If you know where the building was let us know! We’re curious!
Photo 2: Postcard Third Street Looking East:
Our second photo of the week is of a post card showing Third Street from the vantage point of someone standing near the corner of Walnut and East Third Street on the same side of the street as what was then Corning Free Academy and is now Academy Place.
Having attended C.F.A. when it was a middle school I recognize the College Center of the Finger Lakes house, which I believe at one time was owned by one of the Houghtons, and in the background, the old and very large Sinclair House. I do wonder when the built the wall that currently borders the front of the CCFL building…
Have a good holiday weekend everyone!
Linda, SSCL
Library Local History/Creation Station Resources:
At the library you can scan your photos and slides to create digital family albums and slideshows; and even use one of the Circut machines, and other Creation Station equipment, to help you create a special paper family history album.
Also of note, we have the local paper, at times called the Corning Leader, Corning Journal or Corning Daily Journal, on microfilm from 1840 to the present — so you can visit the library and research local history and your family tree if you wish!
And…
And if you find any old photos of the Corning area that you don’t know what to do with – you can always donate them to the library!
Our first photo for this week appears to featuring a drawing of the Patterson Inn at some time in the past. If you recognize the drawing or know who the artist was – let us know!
Photo 2: Partially Flooded Local Street:
Our second photo for this week is of a partially flooded local street.
I’m guessing the photo may have been taken during the Flood of 1935.
I don’t recognize the street — if you do – let us know!
Photo 3: Cool Queen Anne Style House:
Our last photo for this week features a cool Queen Anne style house with a neat rounded porch and copula style look out room.
I’ve no idea where this house is, or was as the case may be, but what a cool style!
If you recognize where the house is, or was, please let us know!
Have a great day,
Linda, SSCL
Library Local History/Creation Station Resources:
At the library you can scan your photos and slides to create digital family albums and slideshows; and even use one of the Circut machines, and other Creation Station equipment, to help you create a special paper family history album.
Also of note, we have the local paper, at times called the Corning Leader, Corning Journal or Corning Daily Journal, on microfilm from 1840 to the present — so you can visit the library and research local history and your family tree if you wish!
And…
And if you find any old photos of the Corning area that you don’t know what to do with – you can always donate them to the library! We’re happy to add new photos to our Photo Archive!
I’m a librarian and I love technology but I don’t know much about train or tractor technology.
So I’m not sure if the gentleman in the photo is working on a tractor or the locomotive part of a train…
If you recognize what the technology is, let us know!
And if you know who the man in the photo is or where the photo was taken – we’d like to know that too!
Photo 2: State Road Near Corning
Our second photo for this week is of a postcard showing the old State Road which, was evidently located near Corning. I don’t recognize where this photo was taken; so if you know, let us know!
Photo 3: Possible World War I Volunteers Or Vets
I’m guessing the men in this photo might be World War I army volunteers or veterans.
You can tell my their high collars and suits that the photo was taken before World War II.
And I can’t make out what the badges some of the men are wearing say. If you recognize any of the men in the photo, know where the photo was taken or can tell us anything about the photo please let us know!
Have a great day,
Linda, SSCL
Library Local History/Creation Station Resources:
At the library you can scan your photos and slides to create digital family albums and slideshows; and even use one of the Circut machines, and other Creation Station equipment, to help you create a special paper family history album.
Also of note, we have the local paper, at times called the Corning Leader, Corning Journal or Corning Daily Journal, on microfilm from 1840 to the present — so you can visit the library and research local history and your family tree if you wish!
And…
And if you find any old photos of the Corning area that you don’t know what to do with – you can always donate them to the library! We’re happy to add new photos to our Photo Archive!
We have a number of photos in our photo archive that are photos taken of old photos or postcards of people, places and things in the region. And this is another cool one – if you just ignore the sliver of counter top at the top of the photo.
The photo is of the old Addison High School sometime in the early twentieth century.
If you know anything about the old Addison High School let us know!
Photo 2: A Group of OBBN Women with Basketball & Dog:
I have no idea what the “OBBN” on these ladies shirts stands for! And they’re dressed rather fancily from a modern perspective to play soccer or some other type of ball game. But whatever the occasion the photo was taken for, I’d say the ladies are definitely a team and I like their dog too!
Photo 3: Readying The Street For Paving:
Our final photo of this week shows what appears to be a crew getting a street ready for paving – presumably with bricks. Although I suppose they could be digging the street up in order to install plumbing pipes too. If you recognize which local street they were working on, or if you know anything about when and how the originally paved the streets in Corning – let us know.
Have a great day,
Linda, SSCL
Library Local History/Creation Station Resources:
At the library you can scan your photos and slides to create digital family albums and slideshows; and even use one of the Circut machines, and other Creation Station equipment, to help you create a special paper family history album.
Also of note, we have the local paper, at times called the Corning Leader, Corning Journal or Corning Daily Journal, on microfilm from 1840 to the present — so you can visit the library and research local history and your family tree if you wish!
And…
And if you find any old photos of the Corning area that you don’t know what to do with – you can always donate them to the library! We’re happy to add new photos to our Photo Archive! | [
1,
8680,
937,
15373,
363,
445,
4723,
338,
263,
15373,
310,
263,
1400,
7543,
411,
278,
5777,
683,
1346,
29967,
11850,
29871,
29945,
386,
26043,
397,
472,
349,
2365,
287,
4918,
29892,
405,
29889,
29979,
3178,
13,
13,
3644,
366,
18720,
278,
4423,
278,
15373,
471,
4586,
470,
2998,
278,
1629,
372,
471,
4586,
1235,
502,
1073,
29889,
13,
13,
29902,
30010,
29885,
20680,
278,
15373,
9007,
30010,
29873,
4586,
297,
29871,
29896,
29929,
29955,
29906,
408,
372,
2444,
763,
901,
1135,
263,
4723,
723,
367,
263,
1472,
931,
363,
278,
5685,
397,
310,
5306,
29871,
29906,
29941,
304,
1603,
367,
5685,
3689,
12955,
785,
541,
408,
306,
471,
29871,
29953,
297,
29871,
29896,
29929,
29955,
29906,
6060,
306,
30010,
29885,
2743,
373,
373,
393,
8158,
29991,
13,
13,
25971,
29871,
29906,
29901,
22890,
708,
4815,
13,
13,
29949,
332,
1473,
15373,
310,
278,
4723,
338,
310,
263,
14089,
9051,
297,
1749,
5120,
29889,
8660,
3460,
491,
278,
285,
792,
475,
306,
30010,
29885,
20680,
445,
15373,
471,
4586,
297,
278,
29871,
29896,
29929,
386,
470,
4688,
29871,
29906,
29900,
386,
24027,
29889,
13,
13,
1576,
871,
5214,
393,
3430,
9985,
304,
592,
338,
278,
28645,
5214,
3595,
297,
278,
3239,
373,
278,
2175,
2625,
310,
278,
15373,
785,
338,
393,
491,
8825,
278,
2030,
2994,
1076,
8481,
706,
5214,
393,
756,
9261,
287,
278,
612,
29924,
5454,
363,
278,
1833,
7303,
310,
1602,
3076,
29973,
13,
13,
3644,
366,
1073,
988,
278,
15373,
471,
4586,
785,
1235,
502,
1073,
29991,
13,
13,
25559,
263,
1781,
4723,
355,
29991,
13,
13,
29931,
11054,
29892,
5886,
6154,
13,
13,
12284,
9959,
5298,
29914,
9832,
362,
12039,
27562,
29901,
13,
13,
4178,
278,
3489,
366,
508,
12812,
596,
20612,
322,
2243,
2247,
304,
1653,
13436,
3942,
20618,
322,
2243,
2247,
29882,
1242,
29936,
322,
1584,
671,
697,
310,
278,
12594,
329,
14884,
29892,
322,
916,
6760,
362,
12039,
21083,
29892,
304,
1371,
366,
1653,
263,
4266,
5650,
3942,
4955,
3769,
29889,
13,
13,
17351,
310,
4443,
29892,
591,
505,
278,
1887,
5650,
29892,
472,
3064,
2000,
278,
2994,
1076,
951,
1664,
29892,
2994,
1076,
8237,
470,
2994,
1076,
23331,
8237,
29892,
373,
9200,
9663,
515,
29871,
29896,
29947,
29946,
29900,
304,
278,
2198,
813,
577,
366,
508,
6493,
278,
3489,
322,
5925,
1887,
4955,
322,
596,
3942,
5447,
565,
366,
6398,
29991,
13,
13,
2855,
30098,
13,
13,
2855,
565,
366,
1284,
738,
2030,
20612,
310,
278,
2994,
1076,
4038,
393,
366,
1016,
30010,
29873,
1073,
825,
304,
437,
411,
785,
366,
508,
2337,
1016,
403,
963,
304,
278,
3489,
29991,
13,
13,
797,
1749,
937,
15373,
363,
445,
4723,
591,
1074,
385,
2030,
534,
2707,
393,
9436,
28911,
304,
278,
4412,
310,
2994,
1076,
29892,
10317,
310,
5236,
13976,
29889,
1126,
306,
30010,
29885,
10241,
278,
5214,
471,
385,
2030,
360,
29925,
29956,
5214,
5982,
2768,
278,
4272,
13071,
29889,
2398,
29892,
278,
5214,
1818,
367,
1472,
7695,
408,
306,
1016,
30010,
29873,
17386,
3926,
2534,
3595,
372,
297,
278,
20949,
7736,
2440,
306,
30010,
345,
1063,
8471,
297,
2994,
1076,
29889,
13,
13,
3644,
366,
1073,
988,
278,
5214,
471,
1235,
502,
1073,
29991,
1334,
30010,
276,
12758,
29991,
13,
13,
25971,
29871,
29906,
29901,
4918,
7543,
18008,
7103,
21223,
6932,
29901,
13,
13,
29949,
332,
1473,
15373,
310,
278,
4723,
338,
310,
263,
1400,
5881,
6445,
18008,
7103,
515,
278,
325,
8501,
1298,
310,
4856,
13407,
2978,
278,
11155,
310,
5260,
21305,
322,
6932,
18008,
7103,
373,
278,
1021,
2625,
310,
278,
11952,
408,
825,
471,
769,
2994,
1076,
12362,
10355,
322,
338,
1286,
10355,
15484,
29889,
13,
13,
29950,
5555,
14283,
315,
29889,
29943,
29889,
29909,
29889,
746,
372,
471,
263,
7256,
3762,
306,
18720,
278,
6346,
7817,
310,
278,
383,
5621,
365,
6926,
3699,
29892,
607,
306,
4658,
472,
697,
931,
471,
15205,
491,
697,
310,
278,
379,
1774,
787,
29892,
322,
297,
278,
3239,
29892,
278,
2030,
322,
1407,
2919,
317,
3742,
433,
381,
5619,
29889,
306,
437,
4997,
746,
278,
4240,
278,
10090,
393,
5279,
28199,
278,
4565,
310,
278,
315,
9207,
29931,
5214,
30098,
13,
13,
25559,
263,
1781,
8753,
22394,
4723,
355,
14332,
29991,
13,
13,
29931,
11054,
29892,
5886,
6154,
13,
13,
12284,
9959,
5298,
29914,
9832,
362,
12039,
27562,
29901,
13,
13,
4178,
278,
3489,
366,
508,
12812,
596,
20612,
322,
2243,
2247,
304,
1653,
13436,
3942,
20618,
322,
2243,
2247,
29882,
1242,
29936,
322,
1584,
671,
697,
310,
278,
12594,
329,
14884,
29892,
322,
916,
6760,
362,
12039,
21083,
29892,
304,
1371,
366,
1653,
263,
4266,
5650,
3942,
4955,
3769,
29889,
13,
13,
17351,
310,
4443,
29892,
591,
505,
278,
1887,
5650,
29892,
472,
3064,
2000,
278,
2994,
1076,
951,
1664,
29892,
2994,
1076,
8237,
470,
2994,
1076,
23331,
8237,
29892,
373,
9200,
9663,
515,
29871,
29896,
29947,
29946,
29900,
304,
278,
2198,
813,
577,
366,
508,
6493,
278,
3489,
322,
5925,
1887,
4955,
322,
596,
3942,
5447,
565,
366,
6398,
29991,
13,
13,
2855,
30098,
13,
13,
2855,
565,
366,
1284,
738,
2030,
20612,
310,
278,
2994,
1076,
4038,
393,
366,
1016,
30010,
29873,
1073,
825,
304,
437,
411,
785,
366,
508,
2337,
1016,
403,
963,
304,
278,
3489,
29991,
13,
13,
29949,
332,
937,
15373,
363,
445,
4723,
5692,
304,
23425,
263,
11580,
310,
278,
349,
2620,
1100,
25408,
472,
777,
931,
297,
278,
4940,
29889,
960,
366,
18720,
278,
11580,
470,
1073,
1058,
278,
7664,
471,
785,
1235,
502,
1073,
29991,
13,
13,
25971,
29871,
29906,
29901,
3455,
616,
368,
26043,
6797,
9959,
7103,
29901,
13,
13,
29949,
332,
1473,
15373,
363,
445,
4723,
338,
310,
263,
22039,
5685,
6797,
1887,
11952,
29889,
13,
13,
29902,
30010,
29885,
20680,
278,
15373,
1122,
505,
1063,
4586,
2645,
278,
26043,
397,
310,
29871,
29896,
29929,
29941,
29945,
29889,
13,
13,
29902,
1016,
30010,
29873,
18720,
278,
11952,
813,
565,
366,
437,
785,
1235,
502,
1073,
29991,
13,
13,
25971,
29871,
29941,
29901,
315,
1507,
10470,
10558,
22135,
5619,
29901,
13,
13,
29949,
332,
1833,
15373,
363,
445,
4723,
5680,
263,
12528,
10470,
10558,
3114,
3699,
411,
263,
28539,
28240,
1277,
305,
322,
5614,
2497,
3114,
1106,
714,
5716,
29889,
13,
13,
29902,
30010,
345,
694,
2969,
988,
445,
3699,
338,
29892,
470,
471,
408,
278,
1206,
1122,
367,
29892,
541,
825,
263,
12528,
3114,
29991,
13,
13,
3644,
366,
18720,
988,
278,
3699,
338,
29892,
470,
471,
29892,
3113,
1235,
502,
1073,
29991,
13,
13,
25559,
263,
2107,
2462,
29892,
13,
13,
29931,
11054,
29892,
5886,
6154,
13,
13,
12284,
9959,
5298,
29914,
9832,
362,
12039,
27562,
29901,
13,
13,
4178,
278,
3489,
366,
508,
12812,
596,
20612,
322,
2243,
2247,
304,
1653,
13436,
3942,
20618,
322,
2243,
2247,
29882,
1242,
29936,
322,
1584,
671,
697,
310,
278,
12594,
329,
14884,
29892,
322,
916,
6760,
362,
12039,
21083,
29892,
304,
1371,
366,
1653,
263,
4266,
5650,
3942,
4955,
3769,
29889,
13,
13,
17351,
310,
4443,
29892,
591,
505,
278,
1887,
5650,
29892,
472,
3064,
2000,
278,
2994,
1076,
951,
1664,
29892,
2994,
1076,
8237,
470,
2994,
1076,
23331,
8237,
29892,
373,
9200,
9663,
515,
29871,
29896,
29947,
29946,
29900,
304,
278,
2198,
813,
577,
366,
508,
6493,
278,
3489,
322,
5925,
1887,
4955,
322,
596,
3942,
5447,
565,
366,
6398,
29991,
13,
13,
2855,
30098,
13,
13,
2855,
565,
366,
1284,
738,
2030,
20612,
310,
278,
2994,
1076,
4038,
393,
366,
1016,
30010,
29873,
1073,
825,
304,
437,
411,
785,
366,
508,
2337,
1016,
403,
963,
304,
278,
3489,
29991,
1334,
30010,
276,
9796,
304,
788,
716,
20612,
304,
1749,
1963,
3747,
9000,
29991,
13,
13,
29902,
30010,
29885,
263,
619,
1182,
13956,
322,
306,
5360,
15483,
541,
306,
1016,
30010,
29873,
1073,
1568,
1048,
7945,
470,
1020,
2801,
15483,
29889,
13,
13,
6295,
306,
30010,
29885,
451,
1854,
565,
278,
16615,
297,
278,
15373,
338,
1985,
373,
263,
1020,
2801,
470,
278,
26351,
573,
760,
310,
263,
7945,
30098,
13,
13,
3644,
366,
18720,
825,
278,
15483,
338,
29892,
1235,
502,
1073,
29991,
13,
13,
2855,
565,
366,
1073,
1058,
278,
767,
297,
278,
15373,
338,
470,
988,
278,
15373,
471,
4586,
785,
591,
30010,
29881,
763,
304,
1073,
393,
2086,
29991,
13,
13,
25971,
29871,
29906,
29901,
4306,
9321,
26206,
2994,
1076,
13,
13,
29949,
332,
1473,
15373,
363,
445,
4723,
338,
310,
263,
1400,
7543,
6445,
278,
2030,
4306,
9321,
607,
29892,
471,
25524,
5982,
2978,
2994,
1076,
29889,
306,
1016,
30010,
29873,
18720,
988,
445,
15373,
471,
4586,
29936,
577,
565,
366,
1073,
29892,
1235,
502,
1073,
29991,
13,
13,
25971,
29871,
29941,
29901,
20049,
2787,
3362,
306,
3684,
17316,
414,
1394,
478,
1691,
13,
13,
29902,
30010,
29885,
20680,
278,
1757,
297,
445,
15373,
1795,
367,
2787,
3362,
306,
9987,
27886,
414,
470,
25808,
550,
29889,
13,
13,
3492,
508,
2649,
590,
1009,
1880,
5321,
1503,
322,
480,
1169,
393,
278,
15373,
471,
4586,
1434,
2787,
3362,
1944,
29889,
13,
13,
2855,
306,
508,
30010,
29873,
1207,
714,
825,
278,
4319,
2710,
777,
310,
278,
1757,
526,
591,
4362,
1827,
29889,
960,
366,
18720,
738,
310,
278,
1757,
297,
278,
15373,
29892,
1073,
988,
278,
15373,
471,
4586,
470,
508,
2649,
502,
3099,
1048,
278,
15373,
3113,
1235,
502,
1073,
29991,
13,
13,
25559,
263,
2107,
2462,
29892,
13,
13,
29931,
11054,
29892,
5886,
6154,
13,
13,
12284,
9959,
5298,
29914,
9832,
362,
12039,
27562,
29901,
13,
13,
4178,
278,
3489,
366,
508,
12812,
596,
20612,
322,
2243,
2247,
304,
1653,
13436,
3942,
20618,
322,
2243,
2247,
29882,
1242,
29936,
322,
1584,
671,
697,
310,
278,
12594,
329,
14884,
29892,
322,
916,
6760,
362,
12039,
21083,
29892,
304,
1371,
366,
1653,
263,
4266,
5650,
3942,
4955,
3769,
29889,
13,
13,
17351,
310,
4443,
29892,
591,
505,
278,
1887,
5650,
29892,
472,
3064,
2000,
278,
2994,
1076,
951,
1664,
29892,
2994,
1076,
8237,
470,
2994,
1076,
23331,
8237,
29892,
373,
9200,
9663,
515,
29871,
29896,
29947,
29946,
29900,
304,
278,
2198,
813,
577,
366,
508,
6493,
278,
3489,
322,
5925,
1887,
4955,
322,
596,
3942,
5447,
565,
366,
6398,
29991,
13,
13,
2855,
30098,
13,
13,
2855,
565,
366,
1284,
738,
2030,
20612,
310,
278,
2994,
1076,
4038,
393,
366,
1016,
30010,
29873,
1073,
825,
304,
437,
411,
785,
366,
508,
2337,
1016,
403,
963,
304,
278,
3489,
29991,
1334,
30010,
276,
9796,
304,
788,
716,
20612,
304,
1749,
1963,
3747,
9000,
29991,
13,
13,
4806,
505,
263,
1353,
310,
20612,
297,
1749,
15373,
18871,
393,
526,
20612,
4586,
310,
2030,
20612,
470,
1400,
28160,
310,
2305,
29892,
7600,
322,
2712,
297,
278,
5120,
29889,
1126,
445,
338,
1790,
12528,
697,
785,
565,
366,
925,
11455,
278,
269,
14381,
310,
6795,
2246,
472,
278,
2246,
310,
278,
15373,
29889,
13,
13,
1576,
15373,
338,
310,
278,
2030,
3462,
2285,
5057,
4523,
1047,
5410,
297,
278,
4688,
3252,
7268,
621,
6462,
29889,
13,
13,
3644,
366,
1073,
3099,
1048,
278,
2030,
3462,
2285,
5057,
4523,
1235,
502,
1073,
29991,
13,
13,
25971,
29871,
29906,
29901,
319,
6431,
310,
438,
14388,
29940,
10152,
411,
21850,
669,
18776,
29901,
13,
13,
29902,
505,
694,
2969,
825,
278,
1346,
29949,
14388,
29940,
30024,
373,
1438,
22281,
528,
381,
1372,
15028,
363,
29991,
1126,
896,
30010,
276,
27121,
3265,
285,
4564,
2354,
515,
263,
5400,
18520,
304,
1708,
269,
11953,
470,
777,
916,
1134,
310,
8287,
3748,
29889,
1205,
6514,
278,
10039,
278,
15373,
471,
4586,
363,
29892,
306,
30010,
29881,
1827,
278,
22281,
526,
11630,
263,
3815,
322,
306,
763,
1009,
11203,
2086,
29991,
13,
13,
25971,
29871,
29941,
29901,
830,
3714,
292,
450,
7103,
1152,
349,
5555,
29901,
13,
13,
29949,
332,
2186,
15373,
310,
445,
4723,
3697,
825,
5692,
304,
367,
263,
17616,
2805,
263,
11952,
7960,
363,
282,
5555,
785,
2225,
24873,
411,
1506,
7358,
29889,
8512,
306,
7755,
896,
1033,
367,
4697,
3460,
278,
11952,
701,
297,
1797,
304,
2601,
715,
3774,
292,
8450,
267,
2086,
29889,
960,
366,
18720,
607,
1887,
11952,
896,
892,
1985,
373,
29892,
470,
565,
366,
1073,
3099,
1048,
746,
322,
920,
278,
10437,
282,
10511,
278,
19756,
297,
2994,
1076,
785,
1235,
502,
1073,
29889,
13,
13,
25559,
263,
2107,
2462,
29892,
13,
13,
29931,
11054,
29892,
5886,
6154,
13,
13,
12284,
9959,
5298,
29914,
9832,
362,
12039,
27562,
29901,
13,
13,
4178,
278,
3489,
366,
508,
12812,
596,
20612,
322,
2243,
2247,
304,
1653,
13436,
3942,
20618,
322,
2243,
2247,
29882,
1242,
29936,
322,
1584,
671,
697,
310,
278,
12594,
329,
14884,
29892,
322,
916,
6760,
362,
12039,
21083,
29892,
304,
1371,
366,
1653,
263,
4266,
5650,
3942,
4955,
3769,
29889,
13,
13,
17351,
310,
4443,
29892,
591,
505,
278,
1887,
5650,
29892,
472,
3064,
2000,
278,
2994,
1076,
951,
1664,
29892,
2994,
1076,
8237,
470,
2994,
1076,
23331,
8237,
29892,
373,
9200,
9663,
515,
29871,
29896,
29947,
29946,
29900,
304,
278,
2198,
813,
577,
366,
508,
6493,
278,
3489,
322,
5925,
1887,
4955,
322,
596,
3942,
5447,
565,
366,
6398,
29991,
13,
13,
2855,
30098,
13,
13,
2855,
565,
366,
1284,
738,
2030,
20612,
310,
278,
2994,
1076,
4038,
393,
366,
1016,
30010,
29873,
1073,
825,
304,
437,
411,
785,
366,
508,
2337,
1016,
403,
963,
304,
278,
3489,
29991,
1334,
30010,
276,
9796,
304,
788,
716,
20612,
304,
1749,
1963,
3747,
9000,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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:
Cross compiled ncurses for UTF-8 displays incorrectly
I have an embedded system, with a vt52u (unicode) terminal emulator, which displays UTF-8 characters correctly but I have cross compiled programs ( vim and python ) that do not display unicode characters properly on that terminal when using the ncursesw library.
I've done searches, but nothing available on the web seems to help...
Bash shell has these variables set:
LANG=en_US.UTF-8
LD_LIBRARY_PATH=/mnt/sd/lib # all libraries, cross compiled, are located here
TERM=vt52u
TERMCAP='vt52u|vt52 with UTF-8:am:eo:rs=\Ee\Eb0\Eco:is=\EE\Ee:nl=^j:sr=\Ei:bl=^g:ta=^i:ho=\EH:cr=^m:le=\ED:nd=\EC:do=\EB:up=\EA:ta=^i:nw=^m:xn:cm=\EY%+ %+ :it#8:co#75:li#24:sc=\Ej:rc=\Ek:vi=\Ef:ve=\Ee:so=\Eb0\Ec4:se=\Eb0\Eco:mh=\Eb8\Eco:mr=\Ebo\Ec0:me=\Eb0\Eco:cl=\EH\EJ:cd=\EJ:ce=\EK:km:ku=^p:kd=^n:kr=^f:kl=^b:kb=^h:'
LOCALE=
And I know the unicode terminal is fine, because I can run the following program to get it to display UTF-8 characters perfectly.
#!/bin/env python
#coding=UTF-8
charset = [
0x2205, 0x2629, 0x00B2, 0x2663, 0x2666, 0x00B1, 0x221A, 0x266B,
0x2190, 0x2524, 0x2500, 0x2534, 0x253C, 0x251C, 0x2193, 0x2191,
0x00B0, 0x2665, 0x00AE, 0x2660, 0x00B7, 0x00A4, 0x00A4, 0x00A4,
0x00D7, 0x00B5, 0x2126, 0x252C, 0x250C, 0x2510, 0x2514, 0x2518
]
for i in charset:
print unichr( i ).encode("UTF-8"),
if i == 0x2191: print
print
bash-4.3#./testunicode
bash-4.3# ∅ ☩ ² ♣ ♦ ± √ ♫ ← ┤ ─ ┴ ┼ ├ ↓ ↑
bash-4.3# ° ♥ ® ♠ · ¤ ¤ ¤ × µ Ω ┬ ┌ ┐ └ ┘
But when I try to get the box drawing characters to display using curses (ncursesw) in a python program, or edit a UTF-8 text file using vim (which is linked to ncursesw); I end up with the screen printing an invalid unicode box, followed by extra symbols like ~T~B, ~T~L, and many other variations for each unicode character. So, for some reason ncursesw is outputting invalid UTF-8 characters....
I know it's linked right, and there is no conflicting ncurses library; only ncursesw exists.
I configured the ncurses-5.9 library for compilation like this:
./configure --prefix=/mnt/sd --without-cxx --without-cxx-binding --without-ada --without-manpages --without-progs --without-tests --without-curses-h --with-build-cc=gcc --with-shared --without-normal --without-debug --without-profile --without-gpm --without-dlsym --without-sysmouse --build=i686-linux --host=arm-linux-gnueabi --without-pthread --enable-widec --with-fallbacks=vt52 --with-terminfo-dirs=/etc/terminfo --disable-big-core --enable-termcap --with-termpath=/Data/termcap
As an example: The following program runs fine on my desktop linux ~VT102 -- but malfunctions on the embedded system when run on the vt52u:
#!/bin/env python
# coding=UTF-8
board=[
"","",
u" ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐",
u" │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │",
u" │ │ ├───→───→───→ │ │ │ │ │ │ ├───→───→───→ │ │ │" ]
board = ( i.encode("utf-8") for i in board )
import curses
import locale
locale.setlocale( locale.LC_ALL,"" )
screen = curses.initscr()
curses.noecho() # no echoing
curses.cbreak() # no keyboard buffering
# Setup the playing board screen.
for i,s in enumerate( board ): screen.addstr( i,0,s )
screen.refresh()
import time
time.sleep(2)
# Return everything to normal
curses.echo()
curses.nocbreak()
curses.endwin()
EDIT: I Discovered one possible reason for the bug -- glibc, being cross compiled, did not have the proper path to the /mnt/sd/share/i18n/charmap or /mnt/sd/share/i18n/locales directories. It had only partial paths which Make or configure prefixed by an erroneous '/', not the target system's actual root path /mnt/sd. When no file is found, glibc apparently defaults back to the "C" or "POSIX" locale and ignores the environment variable.
I'm not sure if I have to re-compile glibc and manually edit the makefile, or if there is a way to manually set the path after the system is built.... ?? any ideas.
???
A:
Ncurses relies on the standard C library which requires a compiled in path to the directories with the internationalized files in them, or else NCURSES will automatically default back to the POSIX locale (AKA "C" locale) and won't do UTF-8.
Cross compiling on a build system where the locales are stored in a different location than the host can cause the autoconfig script to misidentify the directory and then the embedded system will not be able to do UTF-8 even if the locale variables are set correctly ... and worse, it's possible for no error messages to be generated by the failure.
But: If the path is wrong, then you won't be able to see any locales except POSIX & C when running:
locale -a
Setting up a dummy directory on the build system with the internationalized files, and then recompiling the standard C library is one way to solve the problem; but it may require root priveleges.
Alternately, there is an environment variable "I18NPATH" that can be set when using the gnu standard C library (glibc); it is supposed to override the compiled in path. If the install prefix on the embedded system was "/mnt/sd", then from bash shell -- just do:
export I18NPATH="/mnt/sd/share/i18n"
In either event, once the corrected path is available/installed -- the system should operate normally. If not, check to make sure the locale has actually been generated for the combination of country charmap and UTF-8, which is desired (using "locale -a" to list them all).
If it doesn't exist, it can be created very simply using the "localedef" utility. eg: To create a USA english locale with UTF-8 support, just do:
localedef -i en_US -c -f UTF-8 en_US.UTF-8
then, be sure the locale varaibles are set and exported:
export LOCALE=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
And then running locale with no arguments should show all variables as being en_US.UTF-8 ... and everything will work fine from then on.
| [
1,
660,
29901,
13,
13,
29907,
2124,
13126,
302,
29883,
1295,
267,
363,
18351,
29899,
29947,
14423,
29676,
13,
13,
29902,
505,
385,
15685,
1788,
29892,
411,
263,
325,
29873,
29945,
29906,
29884,
313,
2523,
356,
29897,
8638,
26364,
29892,
607,
14423,
18351,
29899,
29947,
4890,
5149,
541,
306,
505,
4891,
13126,
11104,
313,
325,
326,
322,
3017,
1723,
393,
437,
451,
2479,
29104,
4890,
6284,
373,
393,
8638,
746,
773,
278,
302,
29883,
1295,
267,
29893,
3489,
29889,
13,
29902,
29915,
345,
2309,
29645,
29892,
541,
3078,
3625,
373,
278,
1856,
2444,
304,
1371,
856,
13,
29933,
1161,
6473,
756,
1438,
3651,
731,
29901,
13,
29931,
19453,
29922,
264,
29918,
3308,
29889,
10496,
29899,
29947,
13,
10249,
29918,
5265,
15176,
19926,
29918,
10145,
14327,
29885,
593,
29914,
4928,
29914,
1982,
29871,
396,
599,
9562,
29892,
4891,
13126,
29892,
526,
5982,
1244,
13,
4945,
29924,
29922,
21908,
29945,
29906,
29884,
13,
4945,
12513,
3301,
2433,
21908,
29945,
29906,
29884,
29989,
21908,
29945,
29906,
411,
18351,
29899,
29947,
29901,
314,
29901,
29872,
29877,
29901,
2288,
2013,
29923,
29872,
29905,
29923,
29890,
29900,
29905,
29923,
1111,
29901,
275,
2013,
17896,
29905,
29923,
29872,
29901,
12938,
29922,
29985,
29926,
29901,
21935,
2013,
29923,
29875,
29901,
2204,
29922,
29985,
29887,
29901,
941,
29922,
29985,
29875,
29901,
1251,
2013,
29923,
29950,
29901,
7283,
29922,
29985,
29885,
29901,
280,
2013,
3352,
29901,
299,
2013,
11206,
29901,
1867,
2013,
25752,
29901,
786,
2013,
29923,
29909,
29901,
941,
29922,
29985,
29875,
29901,
29876,
29893,
29922,
29985,
29885,
29901,
29916,
29876,
29901,
4912,
2013,
13282,
29995,
29974,
1273,
29974,
584,
277,
29937,
29947,
29901,
1111,
29937,
29955,
29945,
29901,
492,
29937,
29906,
29946,
29901,
1557,
2013,
29923,
29926,
29901,
2214,
2013,
29923,
29895,
29901,
1403,
2013,
29923,
29888,
29901,
345,
2013,
29923,
29872,
29901,
578,
2013,
29923,
29890,
29900,
29905,
29923,
29883,
29946,
29901,
344,
2013,
29923,
29890,
29900,
29905,
29923,
1111,
29901,
29885,
29882,
2013,
29923,
29890,
29947,
29905,
29923,
1111,
29901,
29885,
29878,
2013,
29923,
833,
29905,
29923,
29883,
29900,
29901,
1004,
2013,
29923,
29890,
29900,
29905,
29923,
1111,
29901,
695,
2013,
29923,
29950,
29905,
29923,
29967,
29901,
2252,
2013,
29923,
29967,
29901,
346,
2013,
29923,
29968,
29901,
8848,
29901,
2120,
29922,
29985,
29886,
29901,
29895,
29881,
29922,
29985,
29876,
29901,
12748,
29922,
29985,
29888,
29901,
6321,
29922,
29985,
29890,
29901,
21066,
29922,
29985,
29882,
11283,
13,
3927,
5454,
1307,
29922,
13,
13,
2855,
306,
1073,
278,
29104,
8638,
338,
2691,
29892,
1363,
306,
508,
1065,
278,
1494,
1824,
304,
679,
372,
304,
2479,
18351,
29899,
29947,
4890,
7970,
29889,
13,
29937,
14708,
2109,
29914,
6272,
3017,
13,
29937,
29883,
3689,
29922,
10496,
29899,
29947,
13,
13,
3090,
842,
353,
518,
13,
29900,
29916,
29906,
29906,
29900,
29945,
29892,
29871,
29900,
29916,
29906,
29953,
29906,
29929,
29892,
29871,
29900,
29916,
29900,
29900,
29933,
29906,
29892,
29871,
29900,
29916,
29906,
29953,
29953,
29941,
29892,
29871,
29900,
29916,
29906,
29953,
29953,
29953,
29892,
29871,
29900,
29916,
29900,
29900,
29933,
29896,
29892,
29871,
29900,
29916,
29906,
29906,
29896,
29909,
29892,
29871,
29900,
29916,
29906,
29953,
29953,
29933,
29892,
13,
29900,
29916,
29906,
29896,
29929,
29900,
29892,
29871,
29900,
29916,
29906,
29945,
29906,
29946,
29892,
29871,
29900,
29916,
29906,
29945,
29900,
29900,
29892,
29871,
29900,
29916,
29906,
29945,
29941,
29946,
29892,
29871,
29900,
29916,
29906,
29945,
29941,
29907,
29892,
29871,
29900,
29916,
29906,
29945,
29896,
29907,
29892,
29871,
29900,
29916,
29906,
29896,
29929,
29941,
29892,
29871,
29900,
29916,
29906,
29896,
29929,
29896,
29892,
13,
29900,
29916,
29900,
29900,
29933,
29900,
29892,
29871,
29900,
29916,
29906,
29953,
29953,
29945,
29892,
29871,
29900,
29916,
29900,
29900,
16036,
29892,
29871,
29900,
29916,
29906,
29953,
29953,
29900,
29892,
29871,
29900,
29916,
29900,
29900,
29933,
29955,
29892,
29871,
29900,
29916,
29900,
29900,
29909,
29946,
29892,
29871,
29900,
29916,
29900,
29900,
29909,
29946,
29892,
29871,
29900,
29916,
29900,
29900,
29909,
29946,
29892,
13,
29900,
29916,
29900,
29900,
29928,
29955,
29892,
29871,
29900,
29916,
29900,
29900,
29933,
29945,
29892,
29871,
29900,
29916,
29906,
29896,
29906,
29953,
29892,
29871,
29900,
29916,
29906,
29945,
29906,
29907,
29892,
29871,
29900,
29916,
29906,
29945,
29900,
29907,
29892,
29871,
29900,
29916,
29906,
29945,
29896,
29900,
29892,
29871,
29900,
29916,
29906,
29945,
29896,
29946,
29892,
29871,
29900,
29916,
29906,
29945,
29896,
29947,
13,
29962,
13,
13,
1454,
474,
297,
17425,
29901,
13,
1678,
1596,
443,
436,
29878,
29898,
474,
13742,
12508,
703,
10496,
29899,
29947,
4968,
13,
1678,
565,
474,
1275,
29871,
29900,
29916,
29906,
29896,
29929,
29896,
29901,
1596,
13,
2158,
13,
13,
13067,
29899,
29946,
29889,
29941,
29937,
6904,
1688,
2523,
356,
13,
13067,
29899,
29946,
29889,
29941,
29937,
29871,
31118,
29871,
229,
155,
172,
29871,
30088,
29871,
31275,
29871,
30649,
29871,
30221,
29871,
30562,
29871,
229,
156,
174,
29871,
30245,
29871,
31289,
29871,
30091,
29871,
30929,
29871,
30560,
29871,
30188,
29871,
30552,
29871,
30213,
13,
13067,
29899,
29946,
29889,
29941,
29937,
6719,
29871,
30922,
29871,
30342,
29871,
31067,
2880,
29871,
30435,
29871,
30435,
29871,
30435,
13105,
29871,
30263,
29871,
229,
135,
169,
29871,
30731,
29871,
31002,
29871,
31082,
29871,
30227,
29871,
31119,
13,
13,
6246,
746,
306,
1018,
304,
679,
278,
3800,
11580,
4890,
304,
2479,
773,
18580,
267,
313,
17608,
1295,
267,
29893,
29897,
297,
263,
3017,
1824,
29892,
470,
3863,
263,
18351,
29899,
29947,
1426,
934,
773,
325,
326,
313,
4716,
338,
9024,
304,
302,
29883,
1295,
267,
29893,
416,
29871,
306,
1095,
701,
411,
278,
4315,
14010,
385,
8340,
29104,
3800,
29892,
5643,
491,
4805,
15072,
763,
3695,
29911,
30022,
29933,
29892,
3695,
29911,
30022,
29931,
29892,
322,
1784,
916,
21833,
363,
1269,
29104,
2931,
29889,
1105,
29892,
363,
777,
2769,
302,
29883,
1295,
267,
29893,
338,
1962,
1259,
8340,
18351,
29899,
29947,
4890,
3045,
29871,
13,
29902,
1073,
372,
29915,
29879,
9024,
1492,
29892,
322,
727,
338,
694,
9476,
1259,
302,
29883,
1295,
267,
3489,
29936,
871,
302,
29883,
1295,
267,
29893,
4864,
29889,
13,
29902,
13252,
278,
302,
29883,
1295,
267,
29899,
29945,
29889,
29929,
3489,
363,
14835,
763,
445,
29901,
13,
6904,
17591,
1192,
13506,
14327,
29885,
593,
29914,
4928,
1192,
14037,
29899,
29883,
4419,
1192,
14037,
29899,
29883,
4419,
29899,
19672,
1192,
14037,
29899,
1114,
1192,
14037,
29899,
1171,
12292,
1192,
14037,
29899,
771,
3174,
1192,
14037,
29899,
21150,
1192,
14037,
29899,
29883,
1295,
267,
29899,
29882,
1192,
2541,
29899,
4282,
29899,
617,
29922,
19644,
1192,
2541,
29899,
12366,
1192,
14037,
29899,
8945,
1192,
14037,
29899,
8382,
1192,
14037,
29899,
10185,
1192,
14037,
29899,
29887,
3358,
1192,
14037,
29899,
29881,
3137,
962,
1192,
14037,
29899,
9675,
15769,
1192,
4282,
29922,
29875,
29953,
29947,
29953,
29899,
9389,
1192,
3069,
29922,
2817,
29899,
9389,
29899,
5138,
434,
19266,
1192,
14037,
29899,
29886,
7097,
1192,
12007,
29899,
8157,
29883,
1192,
2541,
29899,
11950,
1627,
29879,
29922,
21908,
29945,
29906,
1192,
2541,
29899,
18821,
1181,
29899,
3972,
29879,
14327,
7070,
29914,
18821,
1181,
1192,
20472,
29899,
3752,
29899,
3221,
1192,
12007,
29899,
8489,
5030,
1192,
2541,
29899,
357,
1526,
493,
14327,
1469,
29914,
8489,
5030,
13,
13,
2887,
385,
1342,
29901,
450,
1494,
1824,
6057,
2691,
373,
590,
14616,
10542,
3695,
29963,
29911,
29896,
29900,
29906,
1192,
541,
4439,
12171,
373,
278,
15685,
1788,
746,
1065,
373,
278,
325,
29873,
29945,
29906,
29884,
29901,
13,
29937,
14708,
2109,
29914,
6272,
3017,
13,
29937,
14137,
29922,
10496,
29899,
29947,
13,
3377,
11759,
13,
29908,
3284,
613,
13,
29884,
29908,
1678,
31002,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
30731,
8539,
30091,
31082,
613,
13,
29884,
29908,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
613,
13,
29884,
29908,
259,
11879,
259,
11879,
29871,
28427,
30091,
30121,
8539,
30091,
30121,
8539,
30091,
30121,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
259,
11879,
29871,
28427,
30091,
30121,
8539,
30091,
30121,
8539,
30091,
30121,
11879,
259,
11879,
259,
11879,
29908,
4514,
13,
13,
3377,
353,
313,
474,
29889,
12508,
703,
9420,
29899,
29947,
1159,
363,
474,
297,
7613,
1723,
13,
13,
5215,
18580,
267,
13,
5215,
15068,
13,
23337,
29889,
842,
23337,
29898,
15068,
29889,
12182,
29918,
9818,
1699,
29908,
1723,
13,
13,
10525,
353,
18580,
267,
29889,
262,
1169,
7283,
580,
13,
29883,
1295,
267,
29889,
1217,
8057,
580,
396,
694,
2916,
292,
13,
29883,
1295,
267,
29889,
29883,
8690,
580,
396,
694,
12247,
6835,
292,
13,
13,
29937,
3789,
786,
278,
8743,
7613,
4315,
29889,
29871,
13,
1454,
474,
29892,
29879,
297,
26985,
29898,
7613,
29871,
1125,
4315,
29889,
1202,
710,
29898,
474,
29892,
29900,
29892,
29879,
1723,
13,
10525,
29889,
22379,
580,
13,
13,
5215,
931,
13,
2230,
29889,
17059,
29898,
29906,
29897,
13,
13,
29937,
7106,
4129,
304,
4226,
13,
29883,
1295,
267,
29889,
8057,
580,
13,
29883,
1295,
267,
29889,
10763,
8690,
580,
13,
29883,
1295,
267,
29889,
355,
5080,
580,
13,
13,
12378,
29901,
29871,
306,
8565,
957,
287,
697,
1950,
2769,
363,
278,
6494,
1192,
330,
1982,
29883,
29892,
1641,
4891,
13126,
29892,
1258,
451,
505,
278,
1571,
2224,
304,
278,
847,
29885,
593,
29914,
4928,
29914,
13653,
29914,
29875,
29896,
29947,
29876,
29914,
3090,
1958,
29871,
470,
847,
29885,
593,
29914,
4928,
29914,
13653,
29914,
29875,
29896,
29947,
29876,
29914,
2997,
267,
17525,
29889,
29871,
739,
750,
871,
7687,
10898,
607,
8561,
470,
10822,
10944,
287,
491,
385,
4589,
650,
681,
8207,
742,
451,
278,
3646,
1788,
29915,
29879,
3935,
3876,
2224,
847,
29885,
593,
29914,
4928,
29889,
259,
1932,
694,
934,
338,
1476,
29892,
330,
1982,
29883,
13229,
21274,
1250,
304,
278,
376,
29907,
29908,
470,
376,
24815,
6415,
29908,
15068,
322,
5330,
2361,
278,
5177,
2286,
29889,
13,
29902,
29915,
29885,
451,
1854,
565,
306,
505,
304,
337,
29899,
12198,
330,
1982,
29883,
322,
7522,
3863,
278,
1207,
1445,
29892,
470,
565,
727,
338,
263,
982,
304,
7522,
731,
278,
2224,
1156,
278,
1788,
338,
4240,
3045,
13626,
738,
7014,
29889,
13,
28772,
13,
13,
29909,
29901,
13,
13,
29940,
29883,
1295,
267,
337,
3687,
373,
278,
3918,
315,
3489,
607,
6858,
263,
13126,
297,
2224,
304,
278,
17525,
411,
278,
6121,
1891,
2066,
297,
963,
29892,
470,
1683,
405,
22484,
1660,
29903,
674,
6336,
2322,
1250,
304,
278,
349,
3267,
6415,
15068,
313,
22311,
29909,
376,
29907,
29908,
15068,
29897,
322,
2113,
29915,
29873,
437,
18351,
29899,
29947,
29889,
29871,
13,
29907,
2124,
22520,
373,
263,
2048,
1788,
988,
278,
1887,
267,
526,
6087,
297,
263,
1422,
4423,
1135,
278,
3495,
508,
4556,
278,
4469,
2917,
2471,
304,
3984,
1693,
1598,
278,
3884,
322,
769,
278,
15685,
1788,
674,
451,
367,
2221,
304,
437,
18351,
29899,
29947,
1584,
565,
278,
15068,
3651,
526,
731,
5149,
2023,
322,
15029,
29892,
372,
29915,
29879,
1950,
363,
694,
1059,
7191,
304,
367,
5759,
491,
278,
10672,
29889,
13,
6246,
29901,
960,
278,
2224,
338,
2743,
29892,
769,
366,
2113,
29915,
29873,
367,
2221,
304,
1074,
738,
1887,
267,
5174,
349,
3267,
6415,
669,
315,
746,
2734,
29901,
13,
23337,
448,
29874,
13,
13,
29020,
701,
263,
20254,
3884,
373,
278,
2048,
1788,
411,
278,
6121,
1891,
2066,
29892,
322,
769,
337,
2388,
6504,
278,
3918,
315,
3489,
338,
697,
982,
304,
4505,
278,
1108,
29936,
541,
372,
1122,
1996,
3876,
3691,
345,
1397,
267,
29889,
13,
2499,
725,
2486,
29892,
727,
338,
385,
5177,
2286,
376,
29902,
29896,
29947,
29940,
10145,
29908,
393,
508,
367,
731,
746,
773,
278,
330,
3433,
3918,
315,
3489,
313,
29887,
1982,
29883,
416,
372,
338,
7424,
304,
5712,
278,
13126,
297,
2224,
29889,
29871,
960,
278,
2601,
10944,
373,
278,
15685,
1788,
471,
5591,
29885,
593,
29914,
4928,
613,
769,
515,
10891,
6473,
1192,
925,
437,
29901,
13,
15843,
306,
29896,
29947,
29940,
10145,
13802,
29885,
593,
29914,
4928,
29914,
13653,
29914,
29875,
29896,
29947,
29876,
29908,
13,
13,
797,
2845,
1741,
29892,
2748,
278,
24114,
2224,
338,
3625,
29914,
25537,
1192,
278,
1788,
881,
21994,
12891,
29889,
29871,
960,
451,
29892,
1423,
304,
1207,
1854,
278,
15068,
756,
2869,
1063,
5759,
363,
278,
10296,
310,
4234,
1373,
1958,
322,
18351,
29899,
29947,
29892,
607,
338,
7429,
313,
4746,
376,
23337,
448,
29874,
29908,
304,
1051,
963,
599,
467,
13,
3644,
372,
1838,
29915,
29873,
1863,
29892,
372,
508,
367,
2825,
1407,
3763,
773,
278,
376,
23337,
1753,
29908,
19725,
29889,
8087,
29901,
1763,
1653,
263,
8278,
3033,
1674,
15068,
411,
18351,
29899,
29947,
2304,
29892,
925,
437,
29901,
13,
23337,
1753,
448,
29875,
427,
29918,
3308,
448,
29883,
448,
29888,
18351,
29899,
29947,
427,
29918,
3308,
29889,
10496,
29899,
29947,
13,
13,
6098,
29892,
367,
1854,
278,
15068,
722,
29874,
13876,
526,
731,
322,
5609,
287,
29901,
13,
15843,
11247,
5454,
1307,
29922,
264,
29918,
3308,
29889,
10496,
29899,
29947,
13,
15843,
365,
19453,
29922,
264,
29918,
3308,
29889,
10496,
29899,
29947,
13,
15843,
365,
19453,
29965,
10461,
29922,
264,
29918,
3308,
29889,
10496,
29899,
29947,
13,
13,
2855,
769,
2734,
15068,
411,
694,
6273,
881,
1510,
599,
3651,
408,
1641,
427,
29918,
3308,
29889,
10496,
29899,
29947,
2023,
322,
4129,
674,
664,
2691,
515,
769,
373,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Edythe D. London
Edythe Danick London (born September 14, 1948) is The Thomas and Katherine Pike Professor of Addiction Studies, and Director of the UCLA Laboratory of Molecular Pharmacology at the David Geffen School of Medicine University of California at Los Angeles. London received her Ph.D. in Pharmacology from the University of Maryland (Baltimore). She did a post-doctoral fellowship at Johns Hopkins University School of Medicine.
Prior to joining the UCLA faculty, she was a Senior Scientist at the National Institute on Drug Abuse for 23 years and a member of the faculty at the Johns Hopkins University School of Medicine. She is known internationally for her work on drug addiction as well as other addictive disorders, such as tobacco and nicotine dependence. She has been a pioneer in the development and use of advanced brain imaging techniques to study the effects of drugs, tobacco and other substances of abuse on brain function, including nuclear medicine studies such as Positron Emission Tomography (PET), and Functional Magnetic Resonance Imaging (fMRI). Her UCLA laboratory is engaged in a wide range of scientific studies as well as the development and testing of new medications. The Web of Science lists several hundred articles published in peer-reviewed journals that have been cited over 13,000 times, leading to an h-index of 63.
Her house in Beverly Hills, California was vandalized on October 23, 2007, in an act credited to an animal activist group Animal Liberation Front by breaking a window of the house and inserting a garden hose which flooded the house. Over $50,000 damage was reported. Subsequently, her house was again attacked and damaged by a firebomb left at the front door on Tuesday, February 5, 2008. No one was home at the time. A statement issued by the North American Animal Liberation Press Office claimed that animal liberationists were responsible for placing the device.
References
Category:Living people
Category:University of Maryland, Baltimore alumni
Category:American pharmacologists
Category:David Geffin School of Medicine at UCLA faculty
Category:Johns Hopkins University faculty
Category:1948 births | [
1,
2155,
29891,
1552,
360,
29889,
4517,
13,
13,
3853,
29891,
1552,
3951,
860,
4517,
313,
4939,
3839,
29871,
29896,
29946,
29892,
29871,
29896,
29929,
29946,
29947,
29897,
338,
450,
5569,
322,
476,
16490,
7362,
446,
11386,
310,
3462,
2463,
16972,
29892,
322,
15944,
310,
278,
501,
13875,
16715,
7606,
310,
341,
1772,
16637,
1963,
2817,
562,
3002,
472,
278,
4699,
1879,
15794,
4523,
310,
27529,
3014,
310,
8046,
472,
4602,
10722,
29889,
4517,
4520,
902,
1963,
29889,
29928,
29889,
297,
1963,
2817,
562,
3002,
515,
278,
3014,
310,
22559,
313,
29933,
1997,
24325,
467,
29871,
2296,
1258,
263,
1400,
29899,
1867,
2801,
284,
10404,
3527,
472,
1861,
1983,
20727,
11335,
3014,
4523,
310,
27529,
29889,
13,
13,
29925,
13479,
304,
22960,
278,
501,
13875,
4024,
18857,
29892,
1183,
471,
263,
24260,
23753,
391,
472,
278,
3086,
8907,
373,
360,
11124,
1976,
1509,
363,
29871,
29906,
29941,
2440,
322,
263,
4509,
310,
278,
4024,
18857,
472,
278,
1861,
1983,
20727,
11335,
3014,
4523,
310,
27529,
29889,
29871,
2296,
338,
2998,
2836,
362,
635,
363,
902,
664,
373,
15721,
788,
2463,
408,
1532,
408,
916,
788,
919,
573,
766,
20488,
29892,
1316,
408,
304,
29890,
17970,
322,
16588,
327,
457,
26307,
29889,
29871,
2296,
756,
1063,
263,
29323,
261,
297,
278,
5849,
322,
671,
310,
12862,
17294,
6382,
292,
13698,
304,
6559,
278,
9545,
310,
5883,
3174,
29892,
304,
29890,
17970,
322,
916,
5960,
2925,
310,
633,
1509,
373,
17294,
740,
29892,
3704,
20346,
26602,
11898,
1316,
408,
10321,
277,
1617,
2812,
2333,
4335,
5275,
313,
29925,
2544,
511,
322,
6680,
284,
3561,
1212,
293,
2538,
265,
749,
1954,
6751,
313,
29888,
29924,
3960,
467,
2439,
501,
13875,
10212,
7606,
338,
17785,
297,
263,
9377,
3464,
310,
16021,
11898,
408,
1532,
408,
278,
5849,
322,
6724,
310,
716,
13589,
800,
29889,
29871,
450,
2563,
310,
9327,
8857,
3196,
6893,
7456,
6369,
297,
23533,
29899,
27828,
287,
21824,
1338,
393,
505,
1063,
274,
1573,
975,
29871,
29896,
29941,
29892,
29900,
29900,
29900,
3064,
29892,
8236,
304,
385,
298,
29899,
2248,
310,
29871,
29953,
29941,
29889,
13,
13,
18650,
3699,
297,
350,
1310,
368,
24128,
29892,
8046,
471,
325,
24258,
1891,
373,
5533,
29871,
29906,
29941,
29892,
29871,
29906,
29900,
29900,
29955,
29892,
297,
385,
1044,
6625,
1573,
304,
385,
13019,
5039,
391,
2318,
22809,
10895,
362,
13960,
491,
16679,
263,
3474,
310,
278,
3699,
322,
23800,
263,
16423,
298,
852,
607,
5685,
6797,
278,
3699,
29889,
6811,
395,
29945,
29900,
29892,
29900,
29900,
29900,
18658,
471,
8967,
29889,
3323,
27284,
29892,
902,
3699,
471,
1449,
22630,
322,
5625,
4063,
491,
263,
3974,
29890,
3424,
2175,
472,
278,
4565,
3050,
373,
323,
1041,
3250,
29892,
6339,
29871,
29945,
29892,
29871,
29906,
29900,
29900,
29947,
29889,
1939,
697,
471,
3271,
472,
278,
931,
29889,
319,
3229,
16610,
491,
278,
4644,
3082,
22809,
10895,
362,
5254,
11367,
17049,
393,
13019,
7866,
362,
2879,
892,
14040,
363,
24421,
278,
4742,
29889,
13,
13,
1123,
10662,
13,
13,
10900,
29901,
29931,
4357,
2305,
13,
10900,
29901,
11574,
537,
310,
22559,
29892,
26767,
394,
1227,
29875,
13,
10900,
29901,
14689,
1374,
2817,
562,
1189,
2879,
13,
10900,
29901,
19504,
1879,
600,
262,
4523,
310,
27529,
472,
501,
13875,
4024,
18857,
13,
10900,
29901,
29967,
1148,
1983,
20727,
11335,
3014,
4024,
18857,
13,
10900,
29901,
29896,
29929,
29946,
29947,
12060,
29879
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
87 B.R. 718 (1988)
In re CONCRETE EXPRESS, INC., d/b/a Mincey's Concrete Pumping & Crane Service, Debtor.
CONCRETE EXPRESS, INC., d/b/a Mincey's Concrete Pumping and Crane Service, Plaintiff,
v.
UNITED STATES of America (INTERNAL REVENUE SERVICE) and Hudson & Peel, Inc., Defendants.
Bankruptcy No. 87-04581-BKC-SMW, Adv. No. 88-0002-BKC-SMW-A.
United States Bankruptcy Court, S.D. Florida.
June 20, 1988.
Ronald Neiwirth, Miami, Fla., for debtor/plaintiff.
John L. Britton, Fort Lauderdale, Fla., for Hudson & Peel, Inc.
Jose F. DeLeon, Trial Atty., Tax Div., U.S. Dept. of Justice, Washington, D.C., for the U.S.
FINDINGS OF FACT AND CONCLUSION OF LAW
SIDNEY M. WEAVER, Bankruptcy Judge.
THIS CAUSE having come on to be heard on March 9, 1988, March 14, 1988, and May 11, 1988, upon the Adversary Complaint filed by the above-captioned Debtor to avoid a security interest in the Debtor's accounts receivable held by an account receivable finance company, and additionally to determine the relative priorities of the account receivable finance company and certain tax liens filed by the Internal Revenue Service; and the Court having heard testimony and having examined the evidence presented, observed the *719 candor and demeanor of the witnesses, and being otherwise fully advised in the premises herein, does hereby file these Findings of Fact and Conclusions of Law:
FINDINGS OF FACT
A. Count II: Usury
On June 25, 1986, the above-captioned Debtor, CONCRETE EXPRESS, INC., (hereinafter referred to as "CONCRETE" or "Debtor"), and HUDSON AND PEEL, INC. (hereinafter referred to as "H & P"), entered into a document entitled Account Financing and Security Agreement and a Contract for Financing Services. It is clear from the face of the contract that two separate and severable contracts are contained within the one document. Paragraph 7 of the document clearly sets forth in bold print that the two agreements are severable and that "engagement by client to Hudson and Peel, Inc. for financial services in no way obligates client to borrow funds from Hudson and Peel, Inc. Further, client may terminate the within contract for financial services, according to the terms herein, without affecting its rights to borrow funds secured by the accounts receivable as provided for herein."
Section 1, entitled "Contract for Financial Services", clearly sets forth that H & P affirmatively agreed to provide various services to the Debtor as a matter of course, or upon request of the Debtor, including: providing the Debtor with an aging of all of the Debtor's accounts, creation of an organized ledger card system for all of the Debtor's accounts, follow-up on overdue accounts upon the request of the client, perform credit checks upon certain identified prospective or existing accounts as requested by the client, maintain current financial records concerning deposits and payments made on all of the Debtor's accounts, and to perform other related financial services as further agreed by the Debtor and H & P as they arose.
In consideration for H & P providing the above-listed services and/or information to the Debtor, the Debtor agreed to pay two percent (2%) of the outstanding invoice amount for the first forty-five day period or part thereof, and if such invoice remained unpaid, two percent (2%) of the outstanding invoice amount for each thirty day period or part thereof after the initial forty-five day period. H & P billed the client monthly for these services.
Sections 2 through 4 of the document governs the advance of monies to H & P secured by an assignment of the accounts receivable of the Debtor to H & P as security for the advances made. A review of the contract and of the expert testimony presented by H & P reveals that the substance of Sections 2 through 4 set forth terms and conditions which are ordinary and reasonable within the asset-based lending community for as Paragraph 2 specifically provides that H & P will charge a rate of interest of fifteen percent (15%) per annum on the amounts advanced pursuant to Sections 2 through 4 of the contract. Paragraph 2 also provides that the calculation or characterization of interest shall not be greater than that permitted by state or federal law. While this particular provision by itself is insufficient to avoid an adjudication of usury, it is credible evidence of the parties' intention that usurious interest not be present in the agreement.
Section 6 of the contract, entitled "Termination", provides that either contract may be terminated by either party upon thirty-days notice to the other party. This termination provision entitled the Debtor to withdraw from either contract at any time. If the Debtor felt that it was being charged usurious interest rates at some point, it certainly had the opportunity to terminate either or both contracts. At no time did the Debtor ever terminate or give notice of termination pursuant to Section 6. This is further evidenced that the Debtor was satisfied with the terms of both contracts which it had voluntarily entered into.
The Debtor and H & P entered into these contracts voluntarily and no evidence was presented to the contrary. Furthermore, there has been no evidence placed before this Court which would create an inference of unreasonable or bad faith conduct on the part of H & P, duress or coercion on the *720 part of H & P or improper inducement by H & P. The contracts were entered into voluntarily at arms length; they are separate and distinct contracts with separate and distinct consideration agreed to under both.
B. Count I: Relative Priority and Competing Secured Claims
Count I of Plaintiff's Complaint seeks an adjudication that the secured position of H & P is subordinate to an IRS claim against the accounts receivable of the Debtor based on the filing of four tax liens. These liens are summarized as follows:
(a) Tax lien filed June 9, 1987, in OR Book XXXXX-XXX, Broward County, Florida, in the amount of $20,507.
(b) Tax lien filed August 14, 1987, in OR Book 14712-31, Broward County, Florida. This was a duplicate lien to that described in (a) above that reflects credit for a payment by the Debtor of $500.
(c) Tax lien filed September 15, 1987, in the amount of $25,614, OR Book XXXXX-XXX, Broward County, Florida.
(d) Tax lien filed October 30, 1987, for $18,019, OR Book XXXXX-XXX, Broward County, Florida.
The tax liens were properly filed and constitute liens against the property of the Debtor in their aggregate amount. These liens must, however, be viewed in light of the previously perfected lien of H & P as modified by Internal Revenue Code § 6323, 26 U.S.C. § 6323. This section provides for the priority of federal tax liens over other lien claims but further provides for exceptions to the Federal Government's priority if certain requirements are met. These requirements are discussed below as Conclusions of Law.
Both the IRS and H & P, as Defendants, introduced evidence concerning the relative priorities of their competing secured claims in light of the safe harbor contained in Internal Revenue Code 6323(c). The Court allowed evidence to be offered on three different dates, March 9, 1988, March 14, 1988, and May 11, 1988. During the first trial, the validity of the H & P lien was never challenged, only the priority with respect to the IRS liens. The IRS never filed a crossclaim against H & P disputing the validity of the H & P lien. Plaintiff's Complaint challenged the priority of H & P in light of the IRS tax liens. The Post-Trial Memorandum of the IRS argues that H & P failed to provide the Court with sufficient evidence of the existence of a validly perfected security interest. Although not at issue upon the pleadings herein, the Court finds that H & P has a perfected security interest in and to the accounts receivable of the Debtor pursuant to the Uniform Commercial Code as adopted in Florida. FLA.STAT. section 679.401 (1987).
H & P and the IRS have also presented evidence concerning the creation date of particular accounts receivable of the Debtor which are secured by the validly perfected lien of both H & P and the IRS. H & P has presented this Court with invoices created by H & P in the ordinary course of its business which demonstrate the creation and amount of accounts receivable of the Debtor on a day-by-day basis. The IRS, however, has presented this Court with nothing more than financial summaries, trial balances and other financial records of the Debtor which do not identify with any specificity the creation, existence, payment or balance of any of the accounts in question. The Court finds the evidence of H & P more credible and specific than the evidence presented by the IRS concerning the creation of accounts receivable during relevant safe-harbor periods set forth in Internal Revenue Code § 6323(c). The evidence demonstrates that H & P advanced sums which were secured by receivables created during the period from September 15, 1987 through October 31, 1987 in the amount of $51,009. In addition to these amounts, H & P was also assigned $48,102.05, between November 1, 1987 through December 15, 1987, the third safe harbor period.
CONCLUSIONS OF LAW
A. Usury
Count II, the Usury Count, travels upon Florida Statutes 687.02 and 687.071. Section *721 687.02 of the Florida Statutes declares that any contract for the payment of interest upon a loan or other obligation which charges a rate of interest that exceeds eighteen percent per annum simple interest is usurious. Plaintiff has the burden of proof of all elements of the prohibition in order to sustain a finding of usury under the Statute. Davanzo v. Miami National Bank, 301 So.2d 797 (Fla.App.1974). Consistent with the Findings of Fact above, Plaintiff has failed to meet this burden because Plaintiff's theory rises or falls upon this Court determination of whether the Account Financing Security Agreement and Contract for Financing Services is one all encompassing contract or two severable contracts incorporated into one document. On the face of the document, it is clear that in actuality they are two separate contracts for distinct and severable services and the respective consideration therefor. The contract requiring the payment of interest is contained in Sections 2 through 4 and provides that the amount of interest payable on the outstanding balance of the monies advanced by H & P is to be fifteen percent (15%). The other contract, for financing services, provides for a specific fee based on a percentage formula as consideration for H & P rendering certain financial services to the Debtor. Plaintiff has presented no evidence which would prove that the Accounts Financing Security Agreement alone provides for, or actually has created, the usurious interest rate alleged.
Based on this Court's finding that the Contract for Financing Services is a separate and distinct contract from the Account Financing and Security Agreement, Plaintiff's Complaint under Section 687.02 must fail and Judgment shall be entered for the Defendant.
Plaintiff also seeks an adjudication by this Court that the interest rates in the two severable contracts violates the Criminal Usury Section of the Florida Statutes, Section 687.071. Once again, in order for this Court to determine that criminal usury exists as outlined in Section 687.071, Plaintiff must prove to this Court that the two contracts discussed herein are actually one contract, and not two contracts contained within one document. This Court has found contra and, therefore, Plaintiff must also fail under this section of the Florida Statutes. Judgment will be entered for Defendant on the allegations contained in Count II of the Complaint.
B. Priority Dispute Between H & P and the IRS
Initially, it must be noted that this Court is placed in an interesting procedural posture because it is forced to decide the relative priorities of two competing claimants which are not, procedurally, adversaries. This priority dispute is brought before the Court upon the Debtor's Adversary Complaint seeking to render the H & P lien subordinate to the IRS liens. This, alleges Plaintiff, renders H & P's claim unsecured because it would be valued out since it is alleged that the relevant receivables total less than the existing IRS liens.[1] As set forth more fully above in this Court's Findings of Fact, the IRS has filed four tax liens which create a secured claim against all the property of the Debtor. This secured claim is subject to other secured claims which were perfected prior in time to the filing of the liens if the provisions of Internal Revenue Code § 6323(c) are invoked. Internal Revenue Code § 6323(c), provides a safe harbor for certain commercial financing transactions which grant a security interest in "qualified property" pursuant to a "commercial transactions financing agreement." The safe harbor protects the priority of the commercial financeer from the generally superior tax lien claim of the United States of America. This rule is commonly referred to as the "forty-five day rule."
Section 6323 defines a commercial transaction financing agreement as, "an agreement entered into by a person in the course of his trade or business (i) to make loans to the taxpayer to be secured by commercial financing security acquired by the taxpayer *722 in the ordinary course of his trade or business." Commercial financing security is defined as, (i) "paper of a kind ordinarily arising in commercial transactions, (ii) accounts receivable, . . ." 6323(c)(2)(D). "Qualified property" used in conjunction with the term commercial transaction financing agreement is defined as, "only commercial financing security acquired by the taxpayer before the forty-sixth day after the date of tax lien filing." 26 U.S.C., § 6323(c)(2)(B).
In order for the Plaintiff to have successfully proved the allegations contained in Count I, it would have had to offer evidence not only of the existence of a commercial transaction financing agreement between the Debtor and H & P, but it would have had to introduce evidence as to the date of creation of accounts receivable, on an account-by-account basis, at the time of the filing of the Bankruptcy Petition.
Every opinion which this Court has reviewed holds that a commercial lender who takes a security interest in after-acquired inventory and accounts receivable (as is the case here) may only successfully utilize the safe harbor contained in § 6323(c) if the security interest was taken prior to or within the forty-five day period and if the "commercial financing security" was acquired by the taxpayer before the forty-sixth day after the date of the tax lien filing. See, § 6323(c)(2)(B); Volume 13, Mertens, The Law of Federal Income Taxation, § 548.30 ("this section is limited to cases in which loans or purchases are made later than forty-five days after the tax lien filing . . . and only where the inventory, accounts receivable, etc., are acquired before the forty-five days have elapsed"); Rice Inv. Co. v. U.S., 625 F.2d 565 (5th Cir.1980); Shawnee State Bank v. United States, 735 F.2d 308 (8th Cir.1984); Tunxis Corp. v. United Bank & Trust Co., 19 B.R. 256 (Bkrtcy.D.Conn.1982); J.D. Court, Inc. v. U.S., 712 F.2d 258 (7th Cir.1983); Peninsula State Bank v. U.S., 211 So.2d 3 (Fla. 1968). All of these cases hold, consistent with the congressional intent clearly set forth in § 6323, that a secured creditor must present proof as to both prongs of the two-part requirement necessary to invoke the safe harbor.
In the case at hand, H & P has offered credible and persuasive evidence showing that it perfected its security interest in receivables prior to or within the forty-five day safe harbor and that the receivables assigned during the second and third safe harbor periods were $51,009 and $48,102.05 respectively.
H & P admits that all of the receivables which were created within the first forty-five day safe harbor period have been satisfied; and, therefore, the first IRS lien in the amount of $20,007 is superior to any subsequently created security interest of H & P.
IRS' second relevant tax lien was filed on September 15, 1987, and a second forty-five day safe harbor period began on that date. That period extended through October 31, 1987, during which time H & P advanced sums and took a secured position in $51,009 worth of the accounts receivable of the Debtor. Therefore, H & P has priority over the IRS to the extent of $51,009 after the IRS' priority of $20,007 is satisfied. After H & P is paid $51,009, the IRS' second tax lien in the amount of $25,614 takes priority over subsequent assignments.
The third safe harbor period began on October 30, 1987, the date of the filing of the last pre-petition tax lien. During this forty-five day safe harbor period, H & P advanced $48,102.05 which has a priority over the IRS third tax lien.
Thus, the IRS is entitled to the first $20,007 of receivables of the Debtor, H & P is entitled to the next $51,009; the IRS then receives the next $25,614; and H & P would get any remaining receivables up to an additional $48,102.05.
Both secured parties are entitled to assert their liens against currently existing receivables, because this Court has allowed the Debtor to use the cash collateral (as defined in Section 363 of the Bankruptcy Code) of these secured creditors in order to continue to operate its business post petition. This Court previously determined that the IRS and H & P are entitled to *723 adequate protection of their secured position because of the use of the cash collateral, and this Court has entered two separate Orders granting each party a replacement lien in existing and after-acquired receivables relative to the priorities as ultimately determined by this Court. Therefore, the relative priority status outlined above will be applied to the accounts receivable of the Debtor existing currently until the date of confirmation of a Chapter 11 Plan of Reorganization or as of the date of conversion to a Chapter 7. If a Chapter 11 Plan of Reorganization is ultimately consummated, and such Plan is not a liquidation plan, said Plan must provide for the ultimate payment of both of these secured claims in full pursuant to the terms and provisions of Bankruptcy Code and Rules.
A separate Final Judgment will be entered on this adversary consistent with these Findings of Fact and Conclusions of Law.
FINAL JUDGMENT
In conformity with the Findings of Fact and Conclusion of Law of even date, it is hereby
ORDERED and ADJUDGED that:
Judgment shall be entered in favor of Defendant, HUDSON & PEEL, INC. on Counts I and II of Plaintiff's Complaint; and Judgment shall be entered in favor of Plaintiff on Count III of Plaintiff's Complaint to the extent that the UNITED STATES OF AMERICA has a valid lien to the extent of the first $20,007 of the accounts receivable of the Debtor.
NOTES
[1] Although Plaintiff does not cite authority for the proposition, it is assumed that Plaintiff calls upon Section 506(a) of the Code to support this conclusion.
| [
1,
29871,
13,
29947,
29955,
350,
29889,
29934,
29889,
29871,
29955,
29896,
29947,
313,
29896,
29929,
29947,
29947,
29897,
13,
797,
337,
8707,
22245,
4330,
8528,
15094,
1799,
29892,
2672,
29907,
1696,
270,
29914,
29890,
29914,
29874,
341,
1239,
29891,
29915,
29879,
1281,
9084,
349,
3427,
292,
669,
315,
10800,
6692,
29892,
7089,
7345,
29889,
13,
6007,
22245,
4330,
8528,
15094,
1799,
29892,
2672,
29907,
1696,
270,
29914,
29890,
29914,
29874,
341,
1239,
29891,
29915,
29879,
1281,
9084,
349,
3427,
292,
322,
315,
10800,
6692,
29892,
13494,
524,
2593,
29892,
13,
29894,
29889,
13,
3904,
1806,
3352,
6850,
1299,
2890,
310,
6813,
313,
23845,
29940,
1964,
5195,
29963,
1430,
4462,
26996,
19059,
29897,
322,
25850,
669,
3938,
295,
29892,
9266,
1696,
5282,
355,
1934,
29889,
13,
29933,
804,
6685,
1270,
1939,
29889,
29871,
29947,
29955,
29899,
29900,
29946,
29945,
29947,
29896,
29899,
29933,
29968,
29907,
29899,
17061,
29956,
29892,
25215,
29889,
1939,
29889,
29871,
29947,
29947,
29899,
29900,
29900,
29900,
29906,
29899,
29933,
29968,
29907,
29899,
17061,
29956,
29899,
29909,
29889,
13,
2525,
1573,
3900,
10253,
6685,
1270,
9245,
29892,
317,
29889,
29928,
29889,
13813,
29889,
13,
29967,
1540,
29871,
29906,
29900,
29892,
29871,
29896,
29929,
29947,
29947,
29889,
13,
29934,
265,
2741,
2448,
9429,
7515,
29892,
23740,
29892,
383,
433,
1696,
363,
2553,
7345,
29914,
13974,
524,
2593,
29889,
13,
11639,
365,
29889,
3230,
880,
29892,
7236,
997,
566,
2018,
744,
29892,
383,
433,
1696,
363,
25850,
669,
3938,
295,
29892,
9266,
29889,
13,
26473,
383,
29889,
897,
3226,
265,
29892,
8602,
284,
319,
4349,
1696,
17847,
4910,
1696,
501,
29889,
29903,
29889,
897,
415,
29889,
310,
17181,
29892,
7660,
29892,
360,
29889,
29907,
1696,
363,
278,
501,
29889,
29903,
29889,
13,
13,
29943,
22255,
4214,
29903,
8079,
13515,
1783,
5300,
8707,
6154,
3308,
2725,
8079,
17900,
29956,
13,
29903,
1367,
8186,
29979,
341,
29889,
399,
29923,
29909,
5348,
29892,
10253,
6685,
1270,
26817,
29889,
13,
4690,
3235,
12766,
17171,
2534,
2041,
373,
304,
367,
6091,
373,
4779,
29871,
29929,
29892,
29871,
29896,
29929,
29947,
29947,
29892,
4779,
29871,
29896,
29946,
29892,
29871,
29896,
29929,
29947,
29947,
29892,
322,
2610,
29871,
29896,
29896,
29892,
29871,
29896,
29929,
29947,
29947,
29892,
2501,
278,
2087,
27547,
3831,
433,
524,
934,
29881,
491,
278,
2038,
29899,
6671,
287,
7089,
7345,
304,
4772,
263,
6993,
4066,
297,
278,
7089,
7345,
29915,
29879,
15303,
2414,
440,
519,
4934,
491,
385,
3633,
2414,
440,
519,
1436,
749,
5001,
29892,
322,
6124,
635,
304,
8161,
278,
6198,
7536,
1907,
310,
278,
3633,
2414,
440,
519,
1436,
749,
5001,
322,
3058,
8818,
619,
575,
934,
29881,
491,
278,
512,
1890,
830,
9947,
6692,
29936,
322,
278,
9245,
2534,
6091,
28523,
2592,
322,
2534,
4392,
1312,
278,
10757,
9132,
29892,
8900,
278,
334,
29955,
29896,
29929,
23794,
272,
322,
316,
12676,
272,
310,
278,
16277,
267,
29892,
322,
1641,
6467,
8072,
594,
11292,
297,
278,
5188,
4637,
1244,
262,
29892,
947,
1244,
1609,
934,
1438,
10987,
886,
310,
26748,
322,
1281,
7009,
1080,
310,
7927,
29901,
13,
13,
29943,
22255,
4214,
29903,
8079,
13515,
1783,
13,
29909,
29889,
3917,
1944,
29901,
10783,
2857,
13,
2951,
5306,
29871,
29906,
29945,
29892,
29871,
29896,
29929,
29947,
29953,
29892,
278,
2038,
29899,
6671,
287,
7089,
7345,
29892,
8707,
22245,
4330,
8528,
15094,
1799,
29892,
2672,
29907,
1696,
313,
4150,
1099,
906,
12992,
304,
408,
376,
6007,
22245,
4330,
29908,
470,
376,
10251,
7345,
4968,
322,
379,
15789,
3094,
5300,
349,
29923,
6670,
29892,
2672,
29907,
29889,
313,
4150,
1099,
906,
12992,
304,
408,
376,
29950,
669,
349,
4968,
7802,
964,
263,
1842,
23437,
16535,
4231,
19985,
322,
14223,
4059,
276,
882,
322,
263,
2866,
1461,
363,
4231,
19985,
15538,
29889,
739,
338,
2821,
515,
278,
3700,
310,
278,
8078,
393,
1023,
5004,
322,
2775,
519,
8078,
29879,
526,
11122,
2629,
278,
697,
1842,
29889,
1459,
9895,
29871,
29955,
310,
278,
1842,
9436,
6166,
11483,
297,
14288,
1596,
393,
278,
1023,
8571,
4110,
526,
2775,
519,
322,
393,
376,
996,
5049,
491,
3132,
304,
25850,
322,
3938,
295,
29892,
9266,
29889,
363,
18161,
5786,
297,
694,
982,
10788,
1078,
3132,
304,
27942,
29199,
515,
25850,
322,
3938,
295,
29892,
9266,
29889,
8725,
29892,
3132,
1122,
29504,
278,
2629,
8078,
363,
18161,
5786,
29892,
5034,
304,
278,
4958,
1244,
262,
29892,
1728,
6602,
292,
967,
10462,
304,
27942,
29199,
26130,
491,
278,
15303,
2414,
440,
519,
408,
4944,
363,
1244,
262,
1213,
13,
13438,
29871,
29896,
29892,
23437,
376,
21263,
363,
4231,
273,
1455,
15538,
613,
9436,
6166,
11483,
393,
379,
669,
349,
2756,
3568,
6703,
15502,
304,
3867,
5164,
5786,
304,
278,
7089,
7345,
408,
263,
4383,
310,
3236,
29892,
470,
2501,
2009,
310,
278,
7089,
7345,
29892,
3704,
29901,
13138,
278,
7089,
7345,
411,
385,
946,
292,
310,
599,
310,
278,
7089,
7345,
29915,
29879,
15303,
29892,
11265,
310,
385,
19098,
5331,
914,
5881,
1788,
363,
599,
310,
278,
7089,
7345,
29915,
29879,
15303,
29892,
1101,
29899,
786,
373,
975,
29123,
15303,
2501,
278,
2009,
310,
278,
3132,
29892,
2189,
16200,
12747,
2501,
3058,
15659,
10791,
12645,
470,
5923,
15303,
408,
13877,
491,
278,
3132,
29892,
7344,
1857,
18161,
6475,
19813,
19754,
1169,
322,
5146,
1860,
1754,
373,
599,
310,
278,
7089,
7345,
29915,
29879,
15303,
29892,
322,
304,
2189,
916,
4475,
18161,
5786,
408,
4340,
15502,
491,
278,
7089,
7345,
322,
379,
669,
349,
408,
896,
28811,
29889,
13,
797,
19220,
363,
379,
669,
349,
13138,
278,
2038,
29899,
1761,
287,
5786,
322,
29914,
272,
2472,
304,
278,
7089,
7345,
29892,
278,
7089,
7345,
15502,
304,
5146,
1023,
10151,
313,
29906,
10997,
310,
278,
714,
11235,
297,
14917,
5253,
363,
278,
937,
20949,
29899,
20818,
2462,
3785,
470,
760,
727,
974,
29892,
322,
565,
1316,
297,
14917,
9488,
443,
3274,
333,
29892,
1023,
10151,
313,
29906,
10997,
310,
278,
714,
11235,
297,
14917,
5253,
363,
1269,
17058,
2462,
3785,
470,
760,
727,
974,
1156,
278,
2847,
20949,
29899,
20818,
2462,
3785,
29889,
379,
669,
349,
13181,
839,
278,
3132,
4098,
368,
363,
1438,
5786,
29889,
13,
2008,
1953,
29871,
29906,
1549,
29871,
29946,
310,
278,
1842,
14765,
1983,
278,
6564,
310,
1601,
583,
304,
379,
669,
349,
26130,
491,
385,
12827,
310,
278,
15303,
2414,
440,
519,
310,
278,
7089,
7345,
304,
379,
669,
349,
408,
6993,
363,
278,
3061,
2925,
1754,
29889,
319,
9076,
310,
278,
8078,
322,
310,
278,
17924,
28523,
2592,
9132,
491,
379,
669,
349,
10320,
1338,
393,
278,
5960,
749,
310,
922,
1953,
29871,
29906,
1549,
29871,
29946,
731,
11483,
4958,
322,
5855,
607,
526,
15311,
322,
15590,
2629,
278,
24342,
29899,
6707,
301,
2548,
7881,
363,
408,
1459,
9895,
29871,
29906,
10816,
8128,
393,
379,
669,
349,
674,
8323,
263,
6554,
310,
4066,
310,
25020,
10151,
313,
29896,
29945,
10997,
639,
385,
1949,
373,
278,
26999,
12862,
12359,
29884,
424,
304,
922,
1953,
29871,
29906,
1549,
29871,
29946,
310,
278,
8078,
29889,
1459,
9895,
29871,
29906,
884,
8128,
393,
278,
13944,
470,
2931,
2133,
310,
4066,
4091,
451,
367,
7621,
1135,
393,
21905,
491,
2106,
470,
17097,
4307,
29889,
5806,
445,
3153,
25161,
491,
3528,
338,
1663,
29884,
4543,
304,
4772,
385,
12109,
566,
293,
362,
310,
502,
2857,
29892,
372,
338,
6625,
1821,
10757,
310,
278,
13973,
29915,
16392,
393,
502,
332,
2738,
4066,
451,
367,
2198,
297,
278,
17327,
29889,
13,
13438,
29871,
29953,
310,
278,
8078,
29892,
23437,
376,
14343,
3381,
613,
8128,
393,
2845,
8078,
1122,
367,
29185,
491,
2845,
6263,
2501,
17058,
29899,
16700,
8369,
304,
278,
916,
6263,
29889,
910,
1840,
3381,
25161,
23437,
278,
7089,
7345,
304,
28679,
515,
2845,
8078,
472,
738,
931,
29889,
960,
278,
7089,
7345,
7091,
393,
372,
471,
1641,
20139,
502,
332,
2738,
4066,
19257,
472,
777,
1298,
29892,
372,
8959,
750,
278,
15130,
304,
29504,
2845,
470,
1716,
8078,
29879,
29889,
2180,
694,
931,
1258,
278,
7089,
7345,
3926,
29504,
470,
2367,
8369,
310,
1840,
3381,
12359,
29884,
424,
304,
9779,
29871,
29953,
29889,
910,
338,
4340,
3415,
3615,
1133,
393,
278,
7089,
7345,
471,
15787,
411,
278,
4958,
310,
1716,
8078,
29879,
607,
372,
750,
27081,
6275,
7802,
964,
29889,
13,
1576,
7089,
7345,
322,
379,
669,
349,
7802,
964,
1438,
8078,
29879,
27081,
6275,
322,
694,
10757,
471,
9132,
304,
278,
21138,
29889,
16478,
29892,
727,
756,
1063,
694,
10757,
7180,
1434,
445,
9245,
607,
723,
1653,
385,
27262,
310,
443,
23147,
519,
470,
4319,
10847,
7512,
373,
278,
760,
310,
379,
669,
349,
29892,
1411,
404,
470,
1302,
6269,
291,
373,
278,
334,
29955,
29906,
29900,
760,
310,
379,
669,
349,
470,
4857,
546,
9013,
13561,
491,
379,
669,
349,
29889,
450,
8078,
29879,
892,
7802,
964,
27081,
6275,
472,
10188,
3309,
29936,
896,
526,
5004,
322,
8359,
8078,
29879,
411,
5004,
322,
8359,
19220,
15502,
304,
1090,
1716,
29889,
13,
29933,
29889,
3917,
306,
29901,
6376,
1230,
22096,
537,
322,
3831,
15133,
5356,
2955,
6015,
9893,
13,
3981,
306,
310,
13494,
524,
2593,
29915,
29879,
3831,
433,
524,
1074,
2039,
385,
12109,
566,
293,
362,
393,
278,
26130,
2602,
310,
379,
669,
349,
338,
1014,
16065,
304,
385,
306,
12445,
5995,
2750,
278,
15303,
2414,
440,
519,
310,
278,
7089,
7345,
2729,
373,
278,
977,
292,
310,
3023,
8818,
619,
575,
29889,
4525,
619,
575,
526,
19138,
1891,
408,
4477,
29901,
13,
29898,
29874,
29897,
17847,
619,
264,
934,
29881,
5306,
29871,
29929,
29892,
29871,
29896,
29929,
29947,
29955,
29892,
297,
6323,
6726,
6193,
22791,
29899,
22791,
29892,
22415,
538,
5127,
29892,
13813,
29892,
297,
278,
5253,
310,
395,
29906,
29900,
29892,
29945,
29900,
29955,
29889,
13,
29898,
29890,
29897,
17847,
619,
264,
934,
29881,
3111,
29871,
29896,
29946,
29892,
29871,
29896,
29929,
29947,
29955,
29892,
297,
6323,
6726,
29871,
29896,
29946,
29955,
29896,
29906,
29899,
29941,
29896,
29892,
22415,
538,
5127,
29892,
13813,
29889,
910,
471,
263,
7929,
619,
264,
304,
393,
5439,
297,
313,
29874,
29897,
2038,
393,
9432,
29879,
16200,
363,
263,
19179,
491,
278,
7089,
7345,
310,
395,
29945,
29900,
29900,
29889,
13,
29898,
29883,
29897,
17847,
619,
264,
934,
29881,
3839,
29871,
29896,
29945,
29892,
29871,
29896,
29929,
29947,
29955,
29892,
297,
278,
5253,
310,
395,
29906,
29945,
29892,
29953,
29896,
29946,
29892,
6323,
6726,
6193,
22791,
29899,
22791,
29892,
22415,
538,
5127,
29892,
13813,
29889,
13,
29898,
29881,
29897,
17847,
619,
264,
934,
29881,
5533,
29871,
29941,
29900,
29892,
29871,
29896,
29929,
29947,
29955,
29892,
363,
395,
29896,
29947,
29892,
29900,
29896,
29929,
29892,
6323,
6726,
6193,
22791,
29899,
22791,
29892,
22415,
538,
5127,
29892,
13813,
29889,
13,
1576,
8818,
619,
575,
892,
6284,
934,
29881,
322,
1040,
12356,
619,
575,
2750,
278,
2875,
310,
278,
7089,
7345,
297,
1009,
20431,
5253,
29889,
4525,
619,
575,
1818,
29892,
3138,
29892,
367,
24774,
297,
3578,
310,
278,
9251,
4922,
287,
619,
264,
310,
379,
669,
349,
408,
9120,
491,
512,
1890,
830,
9947,
5920,
16683,
29871,
29953,
29941,
29906,
29941,
29892,
29871,
29906,
29953,
501,
29889,
29903,
29889,
29907,
29889,
16683,
29871,
29953,
29941,
29906,
29941,
29889,
910,
4004,
8128,
363,
278,
20136,
310,
17097,
8818,
619,
575,
975,
916,
619,
264,
16726,
541,
4340,
8128,
363,
15283,
304,
278,
14879,
10354,
29915,
29879,
20136,
565,
3058,
11780,
526,
1539,
29889,
4525,
11780,
526,
15648,
2400,
408,
1281,
7009,
1080,
310,
7927,
29889,
13,
29933,
720,
278,
306,
12445,
322,
379,
669,
349,
29892,
408,
5282,
355,
1934,
29892,
9129,
10757,
19813,
278,
6198,
7536,
1907,
310,
1009,
5100,
292,
26130,
16726,
297,
3578,
310,
278,
9109,
4023,
4089,
11122,
297,
512,
1890,
830,
9947,
5920,
29871,
29953,
29941,
29906,
29941,
29898,
29883,
467,
450,
9245,
6068,
10757,
304,
367,
12520,
373,
2211,
1422,
10116,
29892,
4779,
29871,
29929,
29892,
29871,
29896,
29929,
29947,
29947,
29892,
4779,
29871,
29896,
29946,
29892,
29871,
29896,
29929,
29947,
29947,
29892,
322,
2610,
29871,
29896,
29896,
29892,
29871,
29896,
29929,
29947,
29947,
29889,
7133,
278,
937,
14260,
29892,
278,
2854,
537,
310,
278,
379,
669,
349,
619,
264,
471,
2360,
18066,
287,
29892,
871,
278,
20136,
411,
3390,
304,
278,
306,
12445,
619,
575,
29889,
450,
306,
12445,
2360,
934,
29881,
263,
4891,
29883,
8342,
2750,
379,
669,
349,
8937,
292,
278,
2854,
537,
310,
278,
379,
669,
349,
619,
264,
29889,
13494,
524,
2593,
29915,
29879,
3831,
433,
524,
18066,
287,
278,
20136,
310,
379,
669,
349,
297,
3578,
310,
278,
306,
12445,
8818,
619,
575,
29889,
450,
4918,
29899,
29911,
9315,
8133,
272,
392,
398,
310,
278,
306,
12445,
1852,
1041,
393,
379,
669,
349,
5229,
304,
3867,
278,
9245,
411,
8002,
10757,
310,
278,
10379,
310,
263,
2854,
368,
4922,
287,
6993,
4066,
29889,
8512,
451,
472,
2228,
2501,
278,
5644,
328,
886,
1244,
262,
29892,
278,
9245,
14061,
393,
379,
669,
349,
756,
263,
4922,
287,
6993,
4066,
297,
322,
304,
278,
15303,
2414,
440,
519,
310,
278,
7089,
7345,
12359,
29884,
424,
304,
278,
853,
5560,
422,
1050,
1455,
5920,
408,
16356,
297,
13813,
29889,
383,
4375,
29889,
17816,
29889,
4004,
29871,
29953,
29955,
29929,
29889,
29946,
29900,
29896,
313,
29896,
29929,
29947,
29955,
467,
13,
29950,
669,
349,
322,
278,
306,
12445,
505,
884,
9132,
10757,
19813,
278,
11265,
2635,
310,
3153,
15303,
2414,
440,
519,
310,
278,
7089,
7345,
607,
526,
26130,
491,
278,
2854,
368,
4922,
287,
619,
264,
310,
1716,
379,
669,
349,
322,
278,
306,
12445,
29889,
379,
669,
349,
756,
9132,
445,
9245,
411,
297,
1365,
1575,
2825,
491,
379,
669,
349,
297,
278,
15311,
3236,
310,
967,
5381,
607,
22222,
278,
11265,
322,
5253,
310,
15303,
2414,
440,
519,
310,
278,
7089,
7345,
373,
263,
2462,
29899,
1609,
29899,
3250,
8405,
29889,
450,
306,
12445,
29892,
3138,
29892,
756,
9132,
445,
9245,
411,
3078,
901,
1135,
18161,
19138,
583,
29892,
14260,
6411,
2925,
322,
916,
18161,
6475,
310,
278,
7089,
7345,
607,
437,
451,
12439,
411,
738,
2702,
537,
278,
11265,
29892,
10379,
29892,
19179,
470,
17346,
310,
738,
310,
278,
15303,
297,
1139,
29889,
450,
9245,
14061,
278,
10757,
310,
379,
669,
349,
901,
6625,
1821,
322,
2702,
1135,
278,
10757,
9132,
491,
278,
306,
12445,
19813,
278,
11265,
310,
15303,
2414,
440,
519,
2645,
8018,
9109,
29899,
8222,
4089,
23704,
731,
11483,
297,
512,
1890,
830,
9947,
5920,
16683,
29871,
29953,
29941,
29906,
29941,
29898,
29883,
467,
450,
10757,
9004,
1078,
393,
379,
669,
349,
12862,
25470,
607,
892,
26130,
491,
2414,
440,
1849,
2825,
2645,
278,
3785,
515,
3839,
29871,
29896,
29945,
29892,
29871,
29896,
29929,
29947,
29955,
1549,
5533,
29871,
29941,
29896,
29892,
29871,
29896,
29929,
29947,
29955,
297,
278,
5253,
310,
395,
29945,
29896,
29892,
29900,
29900,
29929,
29889,
512,
6124,
304,
1438,
26999,
29892,
379,
669,
349,
471,
884,
9859,
395,
29946,
29947,
29892,
29896,
29900,
29906,
29889,
29900,
29945,
29892,
1546,
3979,
29871,
29896,
29892,
29871,
29896,
29929,
29947,
29955,
1549,
5846,
29871,
29896,
29945,
29892,
29871,
29896,
29929,
29947,
29955,
29892,
278,
4654,
9109,
4023,
4089,
3785,
29889,
13,
13,
6007,
6154,
3308,
27946,
8079,
17900,
29956,
13,
29909,
29889,
10783,
2857,
13,
3981,
1944,
29892,
278,
10783,
2857,
3917,
29892,
9850,
29879,
2501,
13813,
6666,
2667,
29871,
29953,
29947,
29955,
29889,
29900,
29906,
322,
29871,
29953,
29947,
29955,
29889,
29900,
29955,
29896,
29889,
9779,
334,
29955,
29906,
29896,
29871,
29953,
29947,
29955,
29889,
29900,
29906,
310,
278,
13813,
6666,
2667,
4845,
5114,
393,
738,
8078,
363,
278,
19179,
310,
4066,
2501,
263,
24806,
470,
916,
10788,
362,
607,
21090,
263,
6554,
310,
4066,
393,
13461,
29879,
29319,
9404,
10151,
639,
385,
1949,
2560,
4066,
338,
502,
332,
2738,
29889,
13494,
524,
2593,
756,
278,
6866,
1145,
310,
5296,
310,
599,
3161,
310,
278,
21460,
654,
297,
1797,
304,
15075,
475,
263,
9138,
310,
502,
2857,
1090,
278,
6666,
1082,
29889,
3589,
273,
2502,
325,
29889,
23740,
3086,
10253,
29892,
29871,
29941,
29900,
29896,
1105,
29889,
29906,
29881,
29871,
29955,
29929,
29955,
313,
29943,
433,
29889,
2052,
29889,
29896,
29929,
29955,
29946,
467,
2138,
9696,
411,
278,
10987,
886,
310,
26748,
2038,
29892,
13494,
524,
2593,
756,
5229,
304,
5870,
445,
6866,
1145,
1363,
13494,
524,
2593,
29915,
29879,
6368,
364,
4637,
470,
20074,
2501,
445,
9245,
3683,
3381,
310,
3692,
278,
16535,
4231,
19985,
14223,
4059,
276,
882,
322,
2866,
1461,
363,
4231,
19985,
15538,
338,
697,
599,
427,
2388,
465,
292,
8078,
470,
1023,
2775,
519,
8078,
29879,
11039,
630,
964,
697,
1842,
29889,
1551,
278,
3700,
310,
278,
1842,
29892,
372,
338,
2821,
393,
297,
3935,
537,
896,
526,
1023,
5004,
8078,
29879,
363,
8359,
322,
2775,
519,
5786,
322,
278,
18067,
19220,
727,
1454,
29889,
450,
8078,
26795,
278,
19179,
310,
4066,
338,
11122,
297,
922,
1953,
29871,
29906,
1549,
29871,
29946,
322,
8128,
393,
278,
5253,
310,
4066,
5146,
519,
373,
278,
714,
11235,
17346,
310,
278,
1601,
583,
12862,
491,
379,
669,
349,
338,
304,
367,
25020,
10151,
313,
29896,
29945,
28003,
450,
916,
8078,
29892,
363,
11782,
3277,
5786,
29892,
8128,
363,
263,
2702,
27684,
2729,
373,
263,
19649,
7063,
408,
19220,
363,
379,
669,
349,
15061,
3058,
18161,
5786,
304,
278,
7089,
7345,
29889,
13494,
524,
2593,
756,
9132,
694,
10757,
607,
723,
6356,
393,
278,
16535,
29879,
4231,
19985,
14223,
4059,
276,
882,
7432,
8128,
363,
29892,
470,
2869,
756,
2825,
29892,
278,
502,
332,
2738,
4066,
6554,
16831,
287,
29889,
13,
29933,
1463,
373,
445,
9245,
29915,
29879,
9138,
393,
278,
2866,
1461,
363,
4231,
19985,
15538,
338,
263,
5004,
322,
8359,
8078,
515,
278,
16535,
4231,
19985,
322,
14223,
4059,
276,
882,
29892,
13494,
524,
2593,
29915,
29879,
3831,
433,
524,
1090,
9779,
29871,
29953,
29947,
29955,
29889,
29900,
29906,
1818,
4418,
322,
8660,
19422,
4091,
367,
7802,
363,
278,
5282,
5818,
29889,
13,
29925,
433,
524,
2593,
884,
1074,
2039,
385,
12109,
566,
293,
362,
491,
445,
9245,
393,
278,
4066,
19257,
297,
278,
1023,
2775,
519,
8078,
29879,
5537,
1078,
278,
315,
28479,
10783,
2857,
9779,
310,
278,
13813,
6666,
2667,
29892,
9779,
29871,
29953,
29947,
29955,
29889,
29900,
29955,
29896,
29889,
9038,
1449,
29892,
297,
1797,
363,
445,
9245,
304,
8161,
393,
22161,
502,
2857,
4864,
408,
714,
21354,
297,
9779,
29871,
29953,
29947,
29955,
29889,
29900,
29955,
29896,
29892,
13494,
524,
2593,
1818,
6356,
304,
445,
9245,
393,
278,
1023,
8078,
29879,
15648,
1244,
262,
526,
2869,
697,
8078,
29892,
322,
451,
1023,
8078,
29879,
11122,
2629,
697,
1842,
29889,
910,
9245,
756,
1476,
6761,
322,
29892,
5480,
29892,
13494,
524,
2593,
1818,
884,
4418,
1090,
445,
4004,
310,
278,
13813,
6666,
2667,
29889,
8660,
19422,
674,
367,
7802,
363,
5282,
5818,
373,
278,
16831,
800,
11122,
297,
3917,
1944,
310,
278,
3831,
433,
524,
29889,
13,
29933,
29889,
22096,
537,
3295,
649,
29872,
21674,
379,
669,
349,
322,
278,
306,
12445,
13,
15514,
368,
29892,
372,
1818,
367,
11682,
393,
445,
9245,
338,
7180,
297,
385,
8031,
6449,
3631,
1400,
545,
1363,
372,
338,
11826,
304,
11097,
278,
6198,
7536,
1907,
310,
1023,
5100,
292,
5995,
1934,
607,
526,
451,
29892,
6449,
332,
635,
29892,
19901,
4314,
29889,
910,
20136,
28447,
338,
6296,
1434,
278,
9245,
2501,
278,
7089,
7345,
29915,
29879,
2087,
27547,
3831,
433,
524,
25738,
304,
4050,
278,
379,
669,
349,
619,
264,
1014,
16065,
304,
278,
306,
12445,
619,
575,
29889,
910,
29892,
16831,
267,
13494,
524,
2593,
29892,
7697,
414,
379,
669,
349,
29915,
29879,
5995,
443,
3471,
2955,
1363,
372,
723,
367,
659,
6742,
714,
1951,
372,
338,
16831,
287,
393,
278,
8018,
2414,
440,
1849,
3001,
3109,
1135,
278,
5923,
306,
12445,
619,
575,
7226,
29896,
29962,
1094,
731,
11483,
901,
8072,
2038,
297,
445,
9245,
29915,
29879,
10987,
886,
310,
26748,
29892,
278,
306,
12445,
756,
934,
29881,
3023,
8818,
619,
575,
607,
1653,
263,
26130,
5995,
2750,
599,
278,
2875,
310,
278,
7089,
7345,
29889,
910,
26130,
5995,
338,
4967,
304,
916,
26130,
16726,
607,
892,
4922,
287,
7536,
297,
931,
304,
278,
977,
292,
310,
278,
619,
575,
565,
278,
1326,
12112,
310,
512,
1890,
830,
9947,
5920,
16683,
29871,
29953,
29941,
29906,
29941,
29898,
29883,
29897,
526,
22336,
29889,
512,
1890,
830,
9947,
5920,
16683,
29871,
29953,
29941,
29906,
29941,
29898,
29883,
511,
8128,
263,
9109,
4023,
4089,
363,
3058,
12128,
11782,
3277,
22160,
607,
16690,
263,
6993,
4066,
297,
376,
15380,
2164,
2875,
29908,
12359,
29884,
424,
304,
263,
376,
510,
1050,
1455,
22160,
11782,
3277,
17327,
1213,
450,
9109,
4023,
4089,
12566,
29879,
278,
20136,
310,
278,
12128,
1436,
749,
261,
515,
278,
6892,
11558,
8818,
619,
264,
5995,
310,
278,
3303,
3900,
310,
6813,
29889,
910,
5751,
338,
15574,
12992,
304,
408,
278,
376,
3921,
29891,
29899,
20818,
2462,
5751,
1213,
13,
13438,
29871,
29953,
29941,
29906,
29941,
17645,
263,
12128,
10804,
11782,
3277,
17327,
408,
29892,
376,
273,
17327,
7802,
964,
491,
263,
2022,
297,
278,
3236,
310,
670,
11302,
470,
5381,
313,
29875,
29897,
304,
1207,
658,
550,
304,
278,
8818,
29886,
2747,
304,
367,
26130,
491,
12128,
11782,
3277,
6993,
16692,
491,
278,
8818,
29886,
2747,
334,
29955,
29906,
29906,
297,
278,
15311,
3236,
310,
670,
11302,
470,
5381,
1213,
422,
1050,
1455,
11782,
3277,
6993,
338,
3342,
408,
29892,
313,
29875,
29897,
376,
19773,
310,
263,
2924,
22420,
6275,
564,
5921,
297,
12128,
22160,
29892,
313,
2236,
29897,
15303,
2414,
440,
519,
29892,
869,
869,
869,
29908,
29871,
29953,
29941,
29906,
29941,
29898,
29883,
5033,
29906,
5033,
29928,
467,
376,
24399,
2164,
2875,
29908,
1304,
297,
9589,
651,
411,
278,
1840,
12128,
10804,
11782,
3277,
17327,
338,
3342,
408,
29892,
376,
6194,
12128,
11782,
3277,
6993,
16692,
491,
278,
8818,
29886,
2747,
1434,
278,
20949,
29899,
28319,
386,
2462,
1156,
278,
2635,
310,
8818,
619,
264,
977,
292,
1213,
29871,
29906,
29953,
501,
29889,
29903,
29889,
29907,
1696,
16683,
29871,
29953,
29941,
29906,
29941,
29898,
29883,
5033,
29906,
5033,
29933,
467,
13,
797,
1797,
363,
278,
13494,
524,
2593,
304,
505,
8472,
11827,
278,
16831,
800,
11122,
297,
3917,
306,
29892,
372,
723,
505,
750,
304,
5957,
10757,
451,
871,
310,
278,
10379,
310,
263,
12128,
10804,
11782,
3277,
17327,
1546,
278,
7089,
7345,
322,
379,
669,
349,
29892,
541,
372,
723,
505,
750,
304,
14944,
10757,
408,
304,
278,
2635,
310,
11265,
310,
15303,
2414,
440,
519,
29892,
373,
385,
3633,
29899,
1609,
29899,
10149,
8405,
29892,
472,
278,
931,
310,
278,
977,
292,
310,
278,
10253,
6685,
1270,
5879,
654,
29889,
13,
26526,
9426,
607,
445,
9245,
756,
9076,
287,
8640,
393,
263,
12128,
301,
1581,
1058,
4893,
263,
6993,
4066,
297,
1156,
29899,
562,
5958,
11817,
706,
322,
15303,
2414,
440,
519,
313,
294,
338,
278,
1206,
1244,
29897,
1122,
871,
8472,
3667,
675,
278,
9109,
4023,
4089,
11122,
297,
16683,
29871,
29953,
29941,
29906,
29941,
29898,
29883,
29897,
565,
278,
6993,
4066,
471,
4586,
7536,
304,
470,
2629,
278,
20949,
29899,
20818,
2462,
3785,
322,
565,
278,
376,
510,
1050,
1455,
11782,
3277,
6993,
29908,
471,
16692,
491,
278,
8818,
29886,
2747,
1434,
278,
20949,
29899,
28319,
386,
2462,
1156,
278,
2635,
310,
278,
8818,
619,
264,
977,
292,
29889,
2823,
29892,
16683,
29871,
29953,
29941,
29906,
29941,
29898,
29883,
5033,
29906,
5033,
29933,
416,
16934,
29871,
29896,
29941,
29892,
341,
814,
575,
29892,
450,
7927,
310,
14879,
512,
2763,
17847,
362,
29892,
16683,
29871,
29945,
29946,
29947,
29889,
29941,
29900,
4852,
1366,
4004,
338,
9078,
304,
4251,
297,
607,
658,
550,
470,
10596,
2129,
526,
1754,
2678,
1135,
20949,
29899,
20818,
3841,
1156,
278,
8818,
619,
264,
977,
292,
869,
869,
869,
322,
871,
988,
278,
11817,
706,
29892,
15303,
2414,
440,
519,
29892,
2992,
1696,
526,
16692,
1434,
278,
20949,
29899,
20818,
3841,
505,
560,
28170,
1496,
390,
625,
15518,
29889,
3189,
29889,
325,
29889,
501,
29889,
29903,
1696,
29871,
29953,
29906,
29945,
383,
29889,
29906,
29881,
29871,
29945,
29953,
29945,
313,
29945,
386,
25079,
29889,
29896,
29929,
29947,
29900,
416,
28548,
484,
29872,
4306,
10253,
325,
29889,
3303,
3900,
29892,
29871,
29955,
29941,
29945,
383,
29889,
29906,
29881,
29871,
29941,
29900,
29947,
313,
29947,
386,
25079,
29889,
29896,
29929,
29947,
29946,
416,
21072,
11497,
2994,
29886,
29889,
325,
29889,
3303,
10253,
669,
20692,
3189,
1696,
29871,
29896,
29929,
350,
29889,
29934,
29889,
29871,
29906,
29945,
29953,
313,
29933,
29895,
2273,
1270,
29889,
29928,
29889,
1168,
29876,
29889,
29896,
29929,
29947,
29906,
416,
435,
29889,
29928,
29889,
9245,
29892,
9266,
29889,
325,
29889,
501,
29889,
29903,
1696,
29871,
29955,
29896,
29906,
383,
29889,
29906,
29881,
29871,
29906,
29945,
29947,
313,
29955,
386,
25079,
29889,
29896,
29929,
29947,
29941,
416,
7363,
1144,
2497,
4306,
10253,
325,
29889,
501,
29889,
29903,
1696,
29871,
29906,
29896,
29896,
1105,
29889,
29906,
29881,
29871,
29941,
313,
29943,
433,
29889,
29871,
29896,
29929,
29953,
29947,
467,
2178,
310,
1438,
4251,
4808,
29892,
13747,
411,
278,
378,
11476,
284,
7609,
9436,
731,
11483,
297,
16683,
29871,
29953,
29941,
29906,
29941,
29892,
393,
263,
26130,
6625,
2105,
1818,
2198,
5296,
408,
304,
1716,
544,
24733,
310,
278,
1023,
29899,
1595,
11809,
5181,
304,
15928,
278,
9109,
4023,
4089,
29889,
13,
797,
278,
1206,
472,
1361,
29892,
379,
669,
349,
756,
12520,
6625,
1821,
322,
20408,
294,
573,
10757,
6445,
393,
372,
4922,
287,
967,
6993,
4066,
297,
2414,
440,
1849,
7536,
304,
470,
2629,
278,
20949,
29899,
20818,
2462,
9109,
4023,
4089,
322,
393,
278,
2414,
440,
1849,
9859,
2645,
278,
1473,
322,
4654,
9109,
4023,
4089,
23704,
892,
395,
29945,
29896,
29892,
29900,
29900,
29929,
322,
395,
29946,
29947,
29892,
29896,
29900,
29906,
29889,
29900,
29945,
8307,
29889,
13,
29950,
669,
349,
7336,
1169,
393,
599,
310,
278,
2414,
440,
1849,
607,
892,
2825,
2629,
278,
937,
20949,
29899,
20818,
2462,
9109,
4023,
4089,
3785,
505,
1063,
15787,
29936,
322,
29892,
5480,
29892,
278,
937,
306,
12445,
619,
264,
297,
278,
5253,
310,
395,
29906,
29900,
29892,
29900,
29900,
29955,
338,
11558,
304,
738,
17602,
2825,
6993,
4066,
310,
379,
669,
349,
29889,
13,
8193,
29903,
29915,
1473,
8018,
8818,
619,
264,
471,
934,
29881,
373,
3839,
29871,
29896,
29945,
29892,
29871,
29896,
29929,
29947,
29955,
29892,
322,
263,
1473,
20949,
29899,
20818,
2462,
9109,
4023,
4089,
3785,
4689,
373,
393,
2635,
29889,
2193,
3785,
10410,
1549,
5533,
29871,
29941,
29896,
29892,
29871,
29896,
29929,
29947,
29955,
29892,
2645,
607,
931,
379,
669,
349,
12862,
25470,
322,
3614,
263,
26130,
2602,
297,
395,
29945,
29896,
29892,
29900,
29900,
29929,
7088,
310,
278,
15303,
2414,
440,
519,
310,
278,
7089,
7345,
29889,
7857,
29892,
379,
669,
349,
756,
20136,
975,
278,
306,
12445,
304,
278,
15834,
310,
395,
29945,
29896,
29892,
29900,
29900,
29929,
1156,
278,
306,
12445,
29915,
20136,
310,
395,
29906,
29900,
29892,
29900,
29900,
29955,
338,
15787,
29889,
2860,
379,
669,
349,
338,
12530,
395,
29945,
29896,
29892,
29900,
29900,
29929,
29892,
278,
306,
12445,
29915,
1473,
8818,
619,
264,
297,
278,
5253,
310,
395,
29906,
29945,
29892,
29953,
29896,
29946,
4893,
20136,
975,
15352,
3566,
1860,
29889,
13,
1576,
4654,
9109,
4023,
4089,
3785,
4689,
373,
5533,
29871,
29941,
29900,
29892,
29871,
29896,
29929,
29947,
29955,
29892,
278,
2635,
310,
278,
977,
292,
310,
278,
1833,
758,
29899,
10963,
654,
8818,
619,
264,
29889,
7133,
445,
20949,
29899,
20818,
2462,
9109,
4023,
4089,
3785,
29892,
379,
669,
349,
12862,
395,
29946,
29947,
29892,
29896,
29900,
29906,
29889,
29900,
29945,
607,
756,
263,
20136,
975,
278,
306,
12445,
4654,
8818,
619,
264,
29889,
13,
1349,
375,
29892,
278,
306,
12445,
338,
23437,
304,
278,
937,
395,
29906,
29900,
29892,
29900,
29900,
29955,
310,
2414,
440,
1849,
310,
278,
7089,
7345,
29892,
379,
669,
349,
338,
23437,
304,
278,
2446,
395,
29945,
29896,
29892,
29900,
29900,
29929,
29936,
278,
306,
12445,
769,
20586,
278,
2446,
395,
29906,
29945,
29892,
29953,
29896,
29946,
29936,
322,
379,
669,
349,
723,
679,
738,
9886,
2414,
440,
1849,
701,
304,
385,
5684,
395,
29946,
29947,
29892,
29896,
29900,
29906,
29889,
29900,
29945,
29889,
13,
29933,
720,
26130,
13973,
526,
23437,
304,
4974,
1009,
619,
575,
2750,
5279,
5923,
2414,
440,
1849,
29892,
1363,
445,
9245,
756,
6068,
278,
7089,
7345,
304,
671,
278,
274,
1161,
5321,
1008,
284,
313,
294,
3342,
297,
9779,
29871,
29941,
29953,
29941,
310,
278,
10253,
6685,
1270,
5920,
29897,
310,
1438,
26130,
16200,
943,
297,
1797,
304,
6773,
304,
21994,
967,
5381,
1400,
5697,
654,
29889,
910,
9245,
9251,
10087,
393,
278,
306,
12445,
322,
379,
669,
349,
526,
23437,
304,
334,
29955,
29906,
29941,
19967,
339,
403,
13047,
310,
1009,
26130,
2602,
1363,
310,
278,
671,
310,
278,
274,
1161,
5321,
1008,
284,
29892,
322,
445,
9245,
756,
7802,
1023,
5004,
1394,
8623,
16690,
292,
1269,
6263,
263,
16920,
619,
264,
297,
5923,
322,
1156,
29899,
562,
5958,
2414,
440,
1849,
6198,
304,
278,
7536,
1907,
408,
18973,
10087,
491,
445,
9245,
29889,
7857,
29892,
278,
6198,
20136,
4660,
714,
21354,
2038,
674,
367,
7436,
304,
278,
15303,
2414,
440,
519,
310,
278,
7089,
7345,
5923,
5279,
2745,
278,
2635,
310,
9659,
362,
310,
263,
23040,
29871,
29896,
29896,
8402,
310,
830,
6388,
2133,
470,
408,
310,
278,
2635,
310,
11301,
304,
263,
23040,
29871,
29955,
29889,
960,
263,
23040,
29871,
29896,
29896,
8402,
310,
830,
6388,
2133,
338,
18973,
11233,
29885,
630,
29892,
322,
1316,
8402,
338,
451,
263,
23904,
362,
3814,
29892,
1497,
8402,
1818,
3867,
363,
278,
8494,
6490,
19179,
310,
1716,
310,
1438,
26130,
16726,
297,
2989,
12359,
29884,
424,
304,
278,
4958,
322,
1326,
12112,
310,
10253,
6685,
1270,
5920,
322,
390,
2540,
29889,
13,
29909,
5004,
9550,
8660,
19422,
674,
367,
7802,
373,
445,
19901,
653,
13747,
411,
1438,
10987,
886,
310,
26748,
322,
1281,
7009,
1080,
310,
7927,
29889,
13,
13,
29943,
1177,
1964,
435,
15789,
29954,
13780,
13,
797,
14670,
537,
411,
278,
10987,
886,
310,
26748,
322,
1281,
10085,
310,
7927,
310,
1584,
2635,
29892,
372,
338,
1244,
1609,
13,
22364,
3352,
322,
11033,
29967,
15789,
1692,
29928,
393,
29901,
13,
29967,
566,
19422,
4091,
367,
7802,
297,
7853,
310,
5282,
5818,
29892,
379,
15789,
3094,
669,
349,
29923,
6670,
29892,
2672,
29907,
29889,
373,
3917,
29879,
306,
322,
1944,
310,
13494,
524,
2593,
29915,
29879,
3831,
433,
524,
29936,
322,
8660,
19422,
4091,
367,
7802,
297,
7853,
310,
13494,
524,
2593,
373,
3917,
4786,
310,
13494,
524,
2593,
29915,
29879,
3831,
433,
524,
304,
278,
15834,
393,
278,
8291,
1806,
3352,
6850,
1299,
2890,
8079,
13862,
1001,
2965,
29909,
756,
263,
2854,
619,
264,
304,
278,
15834,
310,
278,
937,
395,
29906,
29900,
29892,
29900,
29900,
29955,
310,
278,
15303,
2414,
440,
519,
310,
278,
7089,
7345,
29889,
13,
12256,
2890,
13,
29961,
29896,
29962,
29871,
8512,
13494,
524,
2593,
947,
451,
274,
568,
14329,
363,
278,
26619,
29892,
372,
338,
12023,
393,
13494,
524,
2593,
5717,
2501,
9779,
29871,
29945,
29900,
29953,
29898,
29874,
29897,
310,
278,
5920,
304,
2304,
445,
15997,
29889,
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
] |
{
"nome": "Portofino",
"codice": "010044",
"zona": {
"codice": "1",
"nome": "Nord-ovest"
},
"regione": {
"codice": "07",
"nome": "Liguria"
},
"provincia": {
"codice": "010",
"nome": "Genova"
},
"sigla": "GE",
"codiceCatastale": "G913",
"cap": [
"16034"
],
"popolazione": 453
}
| [
1,
426,
13,
12,
29908,
25155,
1115,
376,
2290,
974,
1789,
613,
13,
12,
29908,
19284,
625,
1115,
376,
29900,
29896,
29900,
29900,
29946,
29946,
613,
13,
12,
29908,
29920,
2681,
1115,
426,
13,
12,
12,
29908,
19284,
625,
1115,
376,
29896,
613,
13,
12,
12,
29908,
25155,
1115,
376,
29940,
536,
29899,
586,
342,
29908,
13,
12,
1118,
13,
12,
29908,
1727,
1421,
1115,
426,
13,
12,
12,
29908,
19284,
625,
1115,
376,
29900,
29955,
613,
13,
12,
12,
29908,
25155,
1115,
376,
29931,
335,
26607,
29908,
13,
12,
1118,
13,
12,
29908,
771,
3845,
1512,
1115,
426,
13,
12,
12,
29908,
19284,
625,
1115,
376,
29900,
29896,
29900,
613,
13,
12,
12,
29908,
25155,
1115,
376,
15462,
4273,
29908,
13,
12,
1118,
13,
12,
29908,
18816,
433,
1115,
376,
1692,
613,
13,
12,
29908,
19284,
625,
9694,
579,
744,
1115,
376,
29954,
29929,
29896,
29941,
613,
13,
12,
29908,
5030,
1115,
518,
13,
12,
12,
29908,
29896,
29953,
29900,
29941,
29946,
29908,
13,
12,
1402,
13,
12,
29908,
7323,
324,
3343,
1115,
29871,
29946,
29945,
29941,
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
] |
‘Game on,’ Fordham professor says; Will battle Cuomo in primary
Despite a challenge from Gov. Andrew Cuomo’s campaign, a Brooklyn Supreme Court ruled Monday that Fordham law professor Zephyr Teachout met the residency requirement needed to run for governor in New York.
She will face Cuomo during the Sept. 9 Democratic primary.
“There wasn’t supposed to be a primary in Andrew Cuomo’s New York,” Teachout said Monday afternoon. “Game on.”
Prior to Monday’s ruling, Teachout defeated another challenge from the Cuomo camp — “the Governor and his old boys club,” as she says — regarding her campaign petition signatures.
Now she wants a debate.
“New York Democrats deserve a debate between Andrew Cuomo and myself about the issues that real New Yorkers care about: schools, fracking, corruption and building a fair and strong economy,” she said.
Though a source close to Cuomo has said a debate ahead of the Sept. 9 primary face-off is “highly unlikely.” A debate would increase Teachout’s profile, while having little upside for the governor.
All three major New York gubernatorial candidates this year are directly linked to Fordham. Teachout is currently a law professor, Cuomo graduated in 1979 and GOP challenger Rob Astorino graduated in 1989.Students have gathered online, encouraging the candidates to return to campus and hold a debate.
This is it: Fordham Daily’s last post! Breathe a sigh of relief, shed a tear — I’ll be doing both. I’ll always remember what my dad, a proud Fordham grad with a philosophy degree, told me just before we parted ways in front of Queen’s Court — the building he had inhabited some 30 years earlier — on a […] | [
1,
5129,
14199,
373,
18887,
14601,
3391,
12251,
4083,
29936,
2811,
10555,
10406,
10730,
297,
7601,
13,
13,
4002,
29886,
568,
263,
18766,
515,
402,
586,
29889,
11571,
10406,
10730,
30010,
29879,
11531,
29892,
263,
18737,
13493,
22569,
9245,
29490,
27822,
393,
14601,
3391,
4307,
12251,
3091,
561,
4316,
1920,
496,
449,
1539,
278,
620,
3615,
1270,
11809,
4312,
304,
1065,
363,
20221,
297,
1570,
3088,
29889,
13,
13,
13468,
674,
3700,
10406,
10730,
2645,
278,
28742,
29889,
29871,
29929,
19083,
7601,
29889,
13,
13,
30015,
8439,
9007,
30010,
29873,
7424,
304,
367,
263,
7601,
297,
11571,
10406,
10730,
30010,
29879,
1570,
3088,
3995,
1920,
496,
449,
1497,
27822,
17724,
29889,
1346,
14199,
373,
3178,
13,
13,
29925,
13479,
304,
27822,
30010,
29879,
364,
19478,
29892,
1920,
496,
449,
16235,
1790,
18766,
515,
278,
10406,
10730,
4242,
813,
1346,
1552,
15431,
322,
670,
2030,
12544,
4402,
3995,
408,
1183,
4083,
813,
11211,
902,
11531,
5697,
654,
1804,
3698,
29889,
13,
13,
10454,
1183,
10753,
263,
27836,
29889,
13,
13,
30015,
4373,
3088,
14189,
1446,
553,
7143,
263,
27836,
1546,
11571,
10406,
10730,
322,
6142,
1048,
278,
5626,
393,
1855,
1570,
3088,
414,
2562,
1048,
29901,
12462,
29892,
5227,
384,
292,
29892,
1034,
18953,
322,
5214,
263,
6534,
322,
4549,
26504,
3995,
1183,
1497,
29889,
13,
13,
1349,
820,
263,
2752,
3802,
304,
10406,
10730,
756,
1497,
263,
27836,
14432,
310,
278,
28742,
29889,
29871,
29929,
7601,
3700,
29899,
2696,
338,
1346,
9812,
368,
25057,
3178,
319,
27836,
723,
7910,
1920,
496,
449,
30010,
29879,
8722,
29892,
1550,
2534,
2217,
24081,
680,
363,
278,
20221,
29889,
13,
13,
3596,
2211,
4655,
1570,
3088,
330,
14135,
24737,
21669,
445,
1629,
526,
4153,
9024,
304,
14601,
3391,
29889,
1920,
496,
449,
338,
5279,
263,
4307,
12251,
29892,
10406,
10730,
23588,
297,
29871,
29896,
29929,
29955,
29929,
322,
402,
4590,
521,
5442,
914,
6417,
10186,
272,
1789,
23588,
297,
29871,
29896,
29929,
29947,
29929,
29889,
855,
566,
1237,
505,
22229,
7395,
29892,
18443,
292,
278,
21669,
304,
736,
304,
24165,
322,
4808,
263,
27836,
29889,
13,
13,
4013,
338,
372,
29901,
14601,
3391,
23331,
30010,
29879,
1833,
1400,
29991,
5826,
271,
354,
263,
269,
1141,
310,
18892,
29892,
28453,
263,
734,
279,
813,
306,
30010,
645,
367,
2599,
1716,
29889,
306,
30010,
645,
2337,
6456,
825,
590,
270,
328,
29892,
263,
22314,
14601,
3391,
4656,
411,
263,
22237,
7426,
29892,
5429,
592,
925,
1434,
591,
760,
287,
5837,
297,
4565,
310,
10470,
30010,
29879,
9245,
813,
278,
5214,
540,
750,
14117,
1573,
777,
29871,
29941,
29900,
2440,
8859,
813,
373,
263,
518,
30098,
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
] |
Towards the transformation of humanity
How Facebook will use artificial intelligence to organize insane amounts of data into the perfect News Feed and a personal assistant with superpowers
November 8, 2015
Facebook CTO Mike Schroepfer
Using some quick and dirty math, Facebook CTO Mike Schroepfer estimates that the amount of content that Facebook considers putting on your News Feed grows 40% to 50% year-over-year.
But because people aren’t gaining more time in the day, the company’s algorithms have to be much more selective about what they actually show you.
“We need systems that can help us understand the world and help us filter it better,” Schroepfer said at a press event prior to his appearance at the Dublin Web Summit Tuesday morning.
That’s why the company’s artificial intelligence team (called FAIR) has been hard at work training Facebook’s systems to make them understand the world more like humans, through language, images, planning, and prediction.
It already has trained its computer vision system to segment out individual objects from photos and then label them. The company plans to present a paper next month that shows how it can segment images 30 percent faster, using much less training data, than it previously could.
Ultimately, Schroepfer explains, this could have practical applications like helping you search through all your photos to surface any that contain ocean scenes or dogs. Or, you could tell your News Feed that you like seeing pictures with babies, but hate seeing photos of latte art.
It could also come in handy for photo editing. For example, you could tell the system to turn everything in a photo black-and-white, except one object.
These improving visual skills pair well with Facebook’s language recognition.
Schroepfer says that the company is in the early stages of building a product for the 285 million people around the world with low vision capabilities and the 40 million who are blind that will let them communicate with an artificial intelligence system to find out details about what is in any photo on their feed.
“We’re getting closer to that magical experience that we’re all hoping for,” he says.
The team is also tackling predictive, unsupervised learning and planning.
Making M into a superpower
Both of these research areas will be important to powering M, the virtual personal assistant that Facebook launched earlier this summer in its chat app, Messenger. Right now it’s in limited beta in the Bay Area, but the goal, Schroepfer says, is to make it feel like M is a superpower bestowed upon every Messenger user on earth.
Right now, everything M can do is supervised by real human beings. However, those people are backed up by artificial intelligence. Facebook has hooked up its memory networks to M’s console to train on the data that it’s gotten from its beta testers.
It might sound obvious, but the memory networks have helped M realize what questions to ask first if someone tells M they want to order flowers: “What’s your budget?” and “Where do you want them sent?”
The AI system discovered this by watching a handful of interactions between users and the people currently powering M.
“There is already some percentage of responses that are coming straight from the AI, and we’re going to increase that percentage over time, so that it allows us to train up these systems,” Schroepfer says.
“The reason this is exciting is that it’s scalable. We cannot afford to hire operators for the entire world, to be their virtual assistant, but with the right AI technology, we could deploy that for the entire planet, so that everyone in the world would have an automated assistant that helps them manage their own online world. And that ends up being a kind of superpower deployed to the whole world.”
Schroepfer says that the team has made a lot of progress over the last year, and plans to accelerate that progress over time.
“The promise I made to all the AI folks that joined us, is that we’re going to be the best place to get your work to a billion people as fast as possible.”
Rate this:
Share this:
Like this:
Related
Published by Alexandros Morelas
Alexandros Morelas has studied Biology and Pharmacy and works in the pharmaceutical industry. He first encounter the term "Singularity" via the books of Ray Kurzweil and from then on is a great supporter of this idea. The scienceofsingularity blog tries to make this idea know to the public.
You can contact him at alexmorellas@gmail.com
View all posts by Alexandros Morelas | [
1,
22578,
3163,
278,
13852,
310,
5199,
537,
13,
13,
5328,
13327,
674,
671,
23116,
21082,
304,
2894,
675,
1663,
1662,
26999,
310,
848,
964,
278,
4922,
10130,
5169,
287,
322,
263,
7333,
20255,
411,
2428,
12248,
414,
13,
13,
25363,
1096,
29871,
29947,
29892,
29871,
29906,
29900,
29896,
29945,
13,
13,
23360,
2909,
315,
4986,
12828,
1102,
307,
1022,
571,
13,
13,
15156,
777,
4996,
322,
26616,
5844,
29892,
13327,
315,
4986,
12828,
1102,
307,
1022,
571,
21875,
393,
278,
5253,
310,
2793,
393,
13327,
1136,
11376,
10594,
373,
596,
10130,
5169,
287,
25088,
29871,
29946,
29900,
29995,
304,
29871,
29945,
29900,
29995,
1629,
29899,
957,
29899,
6360,
29889,
13,
13,
6246,
1363,
2305,
9455,
30010,
29873,
11581,
292,
901,
931,
297,
278,
2462,
29892,
278,
5001,
30010,
29879,
14009,
505,
304,
367,
1568,
901,
1831,
573,
1048,
825,
896,
2869,
1510,
366,
29889,
13,
13,
30015,
4806,
817,
6757,
393,
508,
1371,
502,
2274,
278,
3186,
322,
1371,
502,
4175,
372,
2253,
3995,
1102,
307,
1022,
571,
1497,
472,
263,
3965,
1741,
7536,
304,
670,
10097,
472,
278,
24533,
2563,
6991,
2415,
323,
1041,
3250,
7250,
29889,
13,
13,
7058,
30010,
29879,
2020,
278,
5001,
30010,
29879,
23116,
21082,
3815,
313,
13998,
13515,
8193,
29897,
756,
1063,
2898,
472,
664,
6694,
13327,
30010,
29879,
6757,
304,
1207,
963,
2274,
278,
3186,
901,
763,
25618,
29892,
1549,
4086,
29892,
4558,
29892,
18987,
29892,
322,
18988,
29889,
13,
13,
3112,
2307,
756,
16370,
967,
6601,
18551,
1788,
304,
10768,
714,
5375,
3618,
515,
20612,
322,
769,
3858,
963,
29889,
450,
5001,
13900,
304,
2198,
263,
5650,
2446,
4098,
393,
3697,
920,
372,
508,
10768,
4558,
29871,
29941,
29900,
10151,
8473,
29892,
773,
1568,
3109,
6694,
848,
29892,
1135,
372,
9251,
1033,
29889,
13,
13,
29965,
1896,
15084,
29892,
1102,
307,
1022,
571,
18568,
29892,
445,
1033,
505,
15031,
8324,
763,
19912,
366,
2740,
1549,
599,
596,
20612,
304,
7101,
738,
393,
1712,
23474,
20407,
470,
26361,
29889,
1394,
29892,
366,
1033,
2649,
596,
10130,
5169,
287,
393,
366,
763,
8790,
14956,
411,
289,
370,
583,
29892,
541,
26277,
8790,
20612,
310,
3405,
371,
1616,
29889,
13,
13,
3112,
1033,
884,
2041,
297,
1361,
29891,
363,
15373,
16278,
29889,
1152,
1342,
29892,
366,
1033,
2649,
278,
1788,
304,
2507,
4129,
297,
263,
15373,
4628,
29899,
392,
29899,
10921,
29892,
5174,
697,
1203,
29889,
13,
13,
1349,
968,
4857,
1747,
7604,
25078,
5101,
1532,
411,
13327,
30010,
29879,
4086,
19679,
29889,
13,
13,
4504,
307,
1022,
571,
4083,
393,
278,
5001,
338,
297,
278,
4688,
22950,
310,
5214,
263,
3234,
363,
278,
29871,
29906,
29947,
29945,
7284,
2305,
2820,
278,
3186,
411,
4482,
18551,
27108,
322,
278,
29871,
29946,
29900,
7284,
1058,
526,
16842,
393,
674,
1235,
963,
23120,
411,
385,
23116,
21082,
1788,
304,
1284,
714,
4902,
1048,
825,
338,
297,
738,
15373,
373,
1009,
8343,
29889,
13,
13,
30015,
4806,
30010,
276,
2805,
17649,
304,
393,
2320,
936,
7271,
393,
591,
30010,
276,
599,
17231,
363,
3995,
540,
4083,
29889,
13,
13,
1576,
3815,
338,
884,
22002,
1847,
8500,
573,
29892,
443,
9136,
11292,
6509,
322,
18987,
29889,
13,
13,
29924,
5086,
341,
964,
263,
2428,
13519,
13,
13,
29933,
720,
310,
1438,
5925,
10161,
674,
367,
4100,
304,
3081,
292,
341,
29892,
278,
6901,
7333,
20255,
393,
13327,
15241,
8859,
445,
11801,
297,
967,
13563,
623,
29892,
341,
9957,
914,
29889,
10428,
1286,
372,
30010,
29879,
297,
9078,
21762,
297,
278,
6211,
18320,
29892,
541,
278,
7306,
29892,
1102,
307,
1022,
571,
4083,
29892,
338,
304,
1207,
372,
4459,
763,
341,
338,
263,
2428,
13519,
1900,
20937,
2501,
1432,
341,
9957,
914,
1404,
373,
8437,
29889,
13,
13,
7341,
1286,
29892,
4129,
341,
508,
437,
338,
2428,
11292,
491,
1855,
5199,
367,
886,
29889,
2398,
29892,
1906,
2305,
526,
1250,
287,
701,
491,
23116,
21082,
29889,
13327,
756,
12422,
287,
701,
967,
3370,
14379,
304,
341,
30010,
29879,
2991,
304,
7945,
373,
278,
848,
393,
372,
30010,
29879,
2355,
841,
515,
967,
21762,
1243,
414,
29889,
13,
13,
3112,
1795,
6047,
6924,
29892,
541,
278,
3370,
14379,
505,
9213,
341,
16289,
825,
5155,
304,
2244,
937,
565,
4856,
10603,
341,
896,
864,
304,
1797,
18281,
29901,
1346,
5618,
30010,
29879,
596,
23562,
6677,
322,
1346,
11921,
437,
366,
864,
963,
2665,
6677,
13,
13,
1576,
319,
29902,
1788,
10943,
445,
491,
21217,
263,
1361,
1319,
310,
22060,
1546,
4160,
322,
278,
2305,
5279,
3081,
292,
341,
29889,
13,
13,
30015,
8439,
338,
2307,
777,
19649,
310,
20890,
393,
526,
6421,
7812,
515,
278,
319,
29902,
29892,
322,
591,
30010,
276,
2675,
304,
7910,
393,
19649,
975,
931,
29892,
577,
393,
372,
6511,
502,
304,
7945,
701,
1438,
6757,
3995,
1102,
307,
1022,
571,
4083,
29889,
13,
13,
30015,
1576,
2769,
445,
338,
5566,
11407,
338,
393,
372,
30010,
29879,
8716,
519,
29889,
1334,
2609,
21750,
304,
298,
533,
12768,
363,
278,
4152,
3186,
29892,
304,
367,
1009,
6901,
20255,
29892,
541,
411,
278,
1492,
319,
29902,
15483,
29892,
591,
1033,
7246,
393,
363,
278,
4152,
15754,
29892,
577,
393,
14332,
297,
278,
3186,
723,
505,
385,
3345,
630,
20255,
393,
6911,
963,
10933,
1009,
1914,
7395,
3186,
29889,
1126,
393,
10614,
701,
1641,
263,
2924,
310,
2428,
13519,
21168,
304,
278,
3353,
3186,
3178,
13,
13,
4504,
307,
1022,
571,
4083,
393,
278,
3815,
756,
1754,
263,
3287,
310,
6728,
975,
278,
1833,
1629,
29892,
322,
13900,
304,
15592,
403,
393,
6728,
975,
931,
29889,
13,
13,
30015,
1576,
11640,
306,
1754,
304,
599,
278,
319,
29902,
900,
2039,
393,
8772,
502,
29892,
338,
393,
591,
30010,
276,
2675,
304,
367,
278,
1900,
2058,
304,
679,
596,
664,
304,
263,
24464,
2305,
408,
5172,
408,
1950,
3178,
13,
13,
19907,
445,
29901,
13,
13,
2713,
598,
445,
29901,
13,
13,
27552,
445,
29901,
13,
13,
9662,
630,
13,
13,
21076,
3726,
491,
13878,
1883,
3879,
295,
294,
13,
13,
17406,
392,
1883,
3879,
295,
294,
756,
12399,
3457,
3002,
322,
1963,
2817,
4135,
322,
1736,
297,
278,
1374,
22824,
346,
329,
936,
13661,
29889,
940,
937,
11735,
278,
1840,
376,
10873,
1070,
537,
29908,
3025,
278,
8277,
310,
9596,
26274,
705,
309,
322,
515,
769,
373,
338,
263,
2107,
1462,
9555,
310,
445,
2969,
29889,
450,
10466,
974,
2976,
1070,
537,
12618,
14335,
304,
1207,
445,
2969,
1073,
304,
278,
970,
29889,
13,
3492,
508,
6958,
1075,
472,
263,
2506,
12257,
514,
294,
29992,
21980,
29889,
510,
13,
1043,
599,
11803,
491,
13878,
1883,
3879,
295,
294
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 Center for Science in the Public Interest (CSPI) has submitted another blow to the soda industry in a petition with the FDA to ban ingredients commonly known as "caramel coloring" found in many sodas and snack food items due to the increased risk of cancer caused by these colorants.
The Center for Science in the Public Interest (CSPI) has submitted another blow to the soda industry in a petition with the FDA to ban ingredients commonly known as “caramel coloring” found in many sodas and snack food items due to the increased risk of cancer caused by these colorants.
Caramel coloring is far different from actual caramel, according to CSPI, who has said that the chemicals made during the caramel color process are “considered to pose cancer threats to humans,” and they call for banning all caramel colorings. In a letter to Margaret Hamburg, FDA Commissioner, CSPI stated that “the American public should not be exposed to any cancer risk whatsoever as a result of consuming such chemicals, especially when they serve a non-essential, cosmetic purpose.”
A process of reacting sugars with ammonia and sulfites in high pressure and high temperature environments creates caramel colors and also causes a chemical reaction resulting in 2-methylimidazole (2-MI) and 4-methylimidazole (4-MI). Both 2-MI and 4-MI were tested in government studies and shown to cause several types of cancers including lung, liver, thyroid and leukemia in lab animals.
Popular soda brands currently contain about 200 micrograms of 4-MI per 20-ounce bottle, but California’s Proposition 65 may potentially include 4-MI to the list of “chemicals known to the state to cause cancer.” Foods and beverages containing more than specific levels of identified chemicals would be required to carry warning labels and reduce the levels of 4-MI in products, with the maximum level for 4-MI limited to 16 micrograms per person per day (from any one product).
Response from the grocery industry defended the safety of their products and ingredients such as caramel color stating that 4-MI is found in trace amounts of many food and beverage items and that there is no evidence concluding that 4-MI leads to cancer or any other human health risk. The Grocery Manufacturers Association said, “no health regulatory agency around the globe, including the FDA, has said that [4-MI] is a known human carcinogen.”
In addition to warning about caramel coloring, CSPI has been urging the FDA about the effects of synthetic food colorings for some time. Yellow 5 and Red 40 have been linked to behavioral problems in children and Red 3 and Yellow 5 have been shown to pose cancer risks. | [
1,
450,
7817,
363,
9327,
297,
278,
5236,
23829,
313,
9295,
2227,
29897,
756,
18397,
1790,
13031,
304,
278,
269,
8887,
13661,
297,
263,
5697,
654,
411,
278,
383,
7698,
304,
9892,
2348,
1127,
10070,
15574,
2998,
408,
376,
4287,
314,
295,
2927,
292,
29908,
1476,
297,
1784,
20892,
294,
322,
5807,
547,
9687,
4452,
2861,
304,
278,
11664,
12045,
310,
23900,
8581,
491,
1438,
2927,
1934,
29889,
13,
13,
1576,
7817,
363,
9327,
297,
278,
5236,
23829,
313,
9295,
2227,
29897,
756,
18397,
1790,
13031,
304,
278,
269,
8887,
13661,
297,
263,
5697,
654,
411,
278,
383,
7698,
304,
9892,
2348,
1127,
10070,
15574,
2998,
408,
1346,
4287,
314,
295,
2927,
292,
30024,
1476,
297,
1784,
20892,
294,
322,
5807,
547,
9687,
4452,
2861,
304,
278,
11664,
12045,
310,
23900,
8581,
491,
1438,
2927,
1934,
29889,
13,
13,
8179,
314,
295,
2927,
292,
338,
2215,
1422,
515,
3935,
1559,
314,
295,
29892,
5034,
304,
21107,
2227,
29892,
1058,
756,
1497,
393,
278,
22233,
29879,
1754,
2645,
278,
1559,
314,
295,
2927,
1889,
526,
1346,
3200,
1241,
287,
304,
18593,
23900,
12455,
1446,
304,
25618,
3995,
322,
896,
1246,
363,
289,
9450,
599,
1559,
314,
295,
2927,
886,
29889,
512,
263,
5497,
304,
18364,
14847,
29892,
383,
7698,
11444,
261,
29892,
21107,
2227,
8703,
393,
1346,
1552,
3082,
970,
881,
451,
367,
19884,
304,
738,
23900,
12045,
825,
578,
1310,
408,
263,
1121,
310,
1136,
9929,
1316,
22233,
29879,
29892,
7148,
746,
896,
9080,
263,
1661,
29899,
404,
2556,
29892,
6776,
2527,
293,
6437,
3178,
13,
13,
29909,
1889,
310,
7657,
292,
29746,
1503,
411,
626,
3712,
423,
322,
5394,
29888,
3246,
297,
1880,
12959,
322,
1880,
10430,
23136,
10017,
1559,
314,
295,
11955,
322,
884,
9946,
263,
22233,
19848,
9819,
297,
29871,
29906,
29899,
29885,
621,
29891,
2576,
333,
834,
1772,
313,
29906,
29899,
10403,
29897,
322,
29871,
29946,
29899,
29885,
621,
29891,
2576,
333,
834,
1772,
313,
29946,
29899,
10403,
467,
9134,
29871,
29906,
29899,
10403,
322,
29871,
29946,
29899,
10403,
892,
9528,
297,
5874,
11898,
322,
4318,
304,
4556,
3196,
4072,
310,
508,
22543,
3704,
13030,
29892,
619,
369,
29892,
13874,
1007,
322,
454,
2679,
29747,
297,
9775,
15006,
29889,
13,
13,
12310,
1070,
269,
8887,
1506,
4167,
5279,
1712,
1048,
29871,
29906,
29900,
29900,
9200,
1393,
29879,
310,
29871,
29946,
29899,
10403,
639,
29871,
29906,
29900,
29899,
21543,
18046,
280,
29892,
541,
8046,
30010,
29879,
22206,
29871,
29953,
29945,
1122,
19998,
3160,
29871,
29946,
29899,
10403,
304,
278,
1051,
310,
1346,
14969,
936,
29879,
2998,
304,
278,
2106,
304,
4556,
23900,
3178,
25453,
29879,
322,
367,
369,
1179,
6943,
901,
1135,
2702,
11174,
310,
15659,
22233,
29879,
723,
367,
3734,
304,
8677,
9177,
11073,
322,
10032,
278,
11174,
310,
29871,
29946,
29899,
10403,
297,
9316,
29892,
411,
278,
7472,
3233,
363,
29871,
29946,
29899,
10403,
9078,
304,
29871,
29896,
29953,
9200,
1393,
29879,
639,
2022,
639,
2462,
313,
3166,
738,
697,
3234,
467,
13,
13,
5103,
515,
278,
4071,
29883,
708,
13661,
822,
2760,
278,
15332,
310,
1009,
9316,
322,
2348,
1127,
10070,
1316,
408,
1559,
314,
295,
2927,
23659,
393,
29871,
29946,
29899,
10403,
338,
1476,
297,
9637,
26999,
310,
1784,
9687,
322,
367,
19698,
4452,
322,
393,
727,
338,
694,
10757,
378,
22368,
393,
29871,
29946,
29899,
10403,
11981,
304,
23900,
470,
738,
916,
5199,
9045,
12045,
29889,
450,
6070,
29883,
708,
2315,
9765,
332,
414,
7993,
1497,
29892,
1346,
1217,
9045,
24378,
7606,
946,
3819,
2820,
278,
15482,
915,
29892,
3704,
278,
383,
7698,
29892,
756,
1497,
393,
518,
29946,
29899,
10403,
29962,
338,
263,
2998,
5199,
1559,
16381,
6352,
3178,
13,
13,
797,
6124,
304,
9177,
1048,
1559,
314,
295,
2927,
292,
29892,
21107,
2227,
756,
1063,
5065,
3460,
278,
383,
7698,
1048,
278,
9545,
310,
14710,
7492,
9687,
2927,
886,
363,
777,
931,
29889,
612,
4743,
29871,
29945,
322,
4367,
29871,
29946,
29900,
505,
1063,
9024,
304,
6030,
284,
4828,
297,
4344,
322,
4367,
29871,
29941,
322,
612,
4743,
29871,
29945,
505,
1063,
4318,
304,
18593,
23900,
5161,
2039,
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
] |
![](brmedchirj69783-0005){#sp1 .19}
| [
1,
1738,
29961,
850,
1182,
2168,
305,
381,
29926,
29953,
29929,
29955,
29947,
29941,
29899,
29900,
29900,
29900,
29945,
2597,
29937,
1028,
29896,
869,
29896,
29929,
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
] |
Search Site
Recordings in The Yes Men; Roskilde Festival 16; Edward Snowden
The Yes Men; Roskilde Festival 16; Edward Snowden
During the Roskilde festival 2016, activist art group The Yes Men had set up fake signs stating that the festival would be collecting and infinitely storing all text and phone conversations of visitors on festival grounds.
Before the nature of the signs was revealed as a provocative prank, many festival-goers showed both despair and anger. The group’s stunt culminated in a live performance with a fake Edward Snowden who got on stage in the role of an almost tech-illiterate imposter, and finally a talk given by the real Snowden via web stream.
The whole process has been documented by The Yes Men as a 12-minute film about digital surveillance, the data stunt, and Edward Snowden’s talk. | [
1,
11856,
10781,
13,
13,
9182,
886,
297,
450,
3869,
7567,
29936,
5678,
29895,
7154,
8518,
29871,
29896,
29953,
29936,
9300,
24392,
1145,
13,
13,
1576,
3869,
7567,
29936,
5678,
29895,
7154,
8518,
29871,
29896,
29953,
29936,
9300,
24392,
1145,
13,
13,
29928,
3864,
278,
5678,
29895,
7154,
16005,
29871,
29906,
29900,
29896,
29953,
29892,
5039,
391,
1616,
2318,
450,
3869,
7567,
750,
731,
701,
25713,
18906,
23659,
393,
278,
16005,
723,
367,
6314,
292,
322,
29047,
15446,
599,
1426,
322,
9008,
9678,
800,
310,
26824,
373,
16005,
25502,
29889,
13,
13,
18743,
278,
5469,
310,
278,
18906,
471,
17845,
408,
263,
25725,
1230,
544,
804,
29892,
1784,
16005,
29899,
1484,
414,
10018,
1716,
8913,
1466,
322,
27343,
29889,
450,
2318,
30010,
29879,
380,
1657,
13949,
1195,
630,
297,
263,
5735,
4180,
411,
263,
25713,
9300,
24392,
1145,
1058,
2355,
373,
7408,
297,
278,
6297,
310,
385,
4359,
734,
305,
29899,
453,
1524,
403,
2411,
15664,
29892,
322,
7146,
263,
5193,
2183,
491,
278,
1855,
24392,
1145,
3025,
1856,
4840,
29889,
13,
13,
1576,
3353,
1889,
756,
1063,
23531,
491,
450,
3869,
7567,
408,
263,
29871,
29896,
29906,
29899,
1195,
1082,
2706,
1048,
13436,
26946,
453,
749,
29892,
278,
848,
380,
1657,
29892,
322,
9300,
24392,
1145,
30010,
29879,
5193,
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
] |
The Endless Babe Mini
This product is no longer available
Style: 40113607 Color Code:
Made from our sheer and gauzy Endless Summer fabric, this super cute halter dress features a cool crisscross detail at the V-neckline and skin baring open back design with a stretchy smocked band and adjustable ties for an easy fit. Pretty ruffled silhouette. Throw on top of a bikini or layer over one of our seamless styles for an effortless look.
Endless Summer
An Endless Summer- Whether you live the beach lifestyle year-round or dream of making the great escape, explore the collection of our most effortlessly ethereal styles under the sun. | [
1,
450,
2796,
2222,
350,
4302,
341,
2172,
13,
13,
4013,
3234,
338,
694,
5520,
3625,
13,
13,
5568,
29901,
29871,
29946,
29900,
29896,
29896,
29941,
29953,
29900,
29955,
9159,
5920,
29901,
13,
13,
29924,
1943,
515,
1749,
1183,
261,
322,
13395,
1537,
2796,
2222,
13329,
18187,
29892,
445,
2428,
274,
1082,
8870,
357,
10714,
5680,
263,
12528,
2181,
790,
19128,
9493,
472,
278,
478,
29899,
484,
384,
1220,
322,
19309,
2594,
292,
1722,
1250,
2874,
411,
263,
16116,
29891,
1560,
1698,
287,
3719,
322,
10365,
519,
260,
583,
363,
385,
4780,
6216,
29889,
4721,
4349,
364,
3096,
839,
4047,
10774,
2353,
29889,
498,
798,
373,
2246,
310,
263,
289,
638,
2172,
470,
7546,
975,
697,
310,
1749,
409,
314,
2222,
11949,
363,
385,
7225,
2222,
1106,
29889,
13,
13,
5044,
2222,
13329,
13,
13,
2744,
2796,
2222,
13329,
29899,
26460,
366,
5735,
278,
25695,
301,
7004,
1508,
1629,
29899,
14486,
470,
12561,
310,
3907,
278,
2107,
10169,
29892,
26987,
278,
4333,
310,
1749,
1556,
7225,
23769,
11314,
406,
284,
11949,
1090,
278,
6575,
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
] |
UCL News
Services
Get updates from UCL News
Born to lead? Leadership can be an inherited trait, study finds
15 January 2013
Genetic differences are significantly associated with the likelihood that people take on managerial responsibilities, according to new research from UCL (University College London).
The study, published online in Leadership Quarterly, is the first to identify a specific DNA sequence associated with the tendency for individuals to occupy a leadership position. Using a large twin sample, the international research team, which included academics from Harvard, NYU, and the University of California, estimate that a quarter of the observed variation in leadership behaviour between individuals can be explained by genes passed down from their parents.
“We have identified a genotype, called rs4950, which appears to be associated with the passing of leadership ability down through generations,” said lead author Dr Jan-Emmanuel De Neve (UCL School of Public Policy). “The conventional wisdom – that leadership is a skill – remains largely true, but we show it is also, in part, a genetic trait.”
To find the genotype, Dr De Neve and his colleagues analysed data from two large-scale samples in the United States, available through the National Longitudinal Study of Adolescent Health (Add Health) and the Framingham Heart Study.
They compared genetic samples of approximately 4,000 individuals with information about jobs and relationships, finding that in both surveys there was a significant association between rs4950 and leadership. Leadership behaviour was measured by determining whether or not individuals occupy supervisory roles in the workplace.
The team found that although acquiring a leadership position mostly depends on developing skills, inheriting the leadership trait can also play an important role.
Dr De Neve said: “As recent as last August, Professor John Antonakis, who is known for his work on leadership, posed the question: ‘is there a specific leadership gene?’
“This study allows us to answer yes – to an extent. Although leadership should still be thought of predominantly as a skill to be developed, genetics - in particular the rs4950 genotype - can also play a significant role in predicting who is more likely to occupy leadership roles.”
He added that more research was needed to understand the ways in which rs4950 interacted with other factors, such as a child’s learning environment, in the emergence of leadership.
Dr De Neve noted: “Our work also draws attention to the ethical issues surrounding the use of genetic tests for leadership selection and assessment, and that we should seriously consider expanding current protections against genetic discrimination in the labour market. Our main suggestion for practice is that this research may help in the identification of specific environmental factors that can help in the development of leadership skills.
“If we really want to understand leadership and its effect on organizational, institutional, economic and political outcomes, we must study both nature and nurture,” added Dr De Neve. | [
1,
501,
6154,
10130,
13,
13,
13779,
13,
13,
2577,
11217,
515,
501,
6154,
10130,
13,
13,
29933,
1398,
304,
3275,
29973,
951,
328,
10475,
508,
367,
385,
23878,
22917,
29892,
6559,
14061,
13,
13,
29896,
29945,
5490,
29871,
29906,
29900,
29896,
29941,
13,
13,
15462,
7492,
12651,
526,
16951,
6942,
411,
278,
4188,
22342,
393,
2305,
2125,
373,
8455,
616,
5544,
747,
9770,
29892,
5034,
304,
716,
5925,
515,
501,
6154,
313,
11574,
537,
6346,
4517,
467,
13,
13,
1576,
6559,
29892,
6369,
7395,
297,
951,
328,
10475,
751,
4254,
368,
29892,
338,
278,
937,
304,
12439,
263,
2702,
25348,
5665,
6942,
411,
278,
260,
5197,
363,
15724,
304,
6919,
29891,
263,
26001,
2602,
29889,
5293,
263,
2919,
3252,
262,
4559,
29892,
278,
6121,
5925,
3815,
29892,
607,
5134,
16274,
1199,
515,
22221,
29892,
23526,
29965,
29892,
322,
278,
3014,
310,
8046,
29892,
12678,
393,
263,
12616,
310,
278,
8900,
19262,
297,
26001,
10468,
1546,
15724,
508,
367,
10824,
491,
2531,
267,
4502,
1623,
515,
1009,
11825,
29889,
13,
13,
30015,
4806,
505,
15659,
263,
2531,
327,
668,
29892,
2000,
20371,
29946,
29929,
29945,
29900,
29892,
607,
5692,
304,
367,
6942,
411,
278,
6819,
310,
26001,
11509,
1623,
1549,
1176,
800,
3995,
1497,
3275,
4148,
4942,
2627,
29899,
6026,
22670,
897,
2448,
345,
313,
29965,
6154,
4523,
310,
5236,
25219,
467,
1346,
1576,
28557,
29714,
785,
393,
26001,
338,
263,
19911,
785,
9242,
18425,
1565,
29892,
541,
591,
1510,
372,
338,
884,
29892,
297,
760,
29892,
263,
2531,
7492,
22917,
3178,
13,
13,
1762,
1284,
278,
2531,
327,
668,
29892,
4942,
897,
2448,
345,
322,
670,
23056,
21628,
3483,
952,
287,
848,
515,
1023,
2919,
29899,
7052,
11916,
297,
278,
3303,
3900,
29892,
3625,
1549,
278,
3086,
6242,
11267,
979,
29301,
310,
2087,
6544,
1760,
15202,
313,
2528,
15202,
29897,
322,
278,
383,
2572,
16094,
17778,
29301,
29889,
13,
13,
15597,
9401,
2531,
7492,
11916,
310,
14235,
29871,
29946,
29892,
29900,
29900,
29900,
15724,
411,
2472,
1048,
17643,
322,
21702,
29892,
9138,
393,
297,
1716,
26946,
952,
727,
471,
263,
7282,
15477,
1546,
20371,
29946,
29929,
29945,
29900,
322,
26001,
29889,
951,
328,
10475,
10468,
471,
17005,
491,
3683,
2827,
3692,
470,
451,
15724,
6919,
29891,
2428,
1730,
706,
16178,
297,
278,
664,
6689,
29889,
13,
13,
1576,
3815,
1476,
393,
5998,
10695,
8491,
263,
26001,
2602,
11149,
7111,
373,
14338,
25078,
29892,
7846,
11407,
278,
26001,
22917,
508,
884,
1708,
385,
4100,
6297,
29889,
13,
13,
25639,
897,
2448,
345,
1497,
29901,
1346,
2887,
7786,
408,
1833,
3111,
29892,
11386,
2259,
5774,
557,
275,
29892,
1058,
338,
2998,
363,
670,
664,
373,
26001,
29892,
926,
287,
278,
1139,
29901,
5129,
275,
727,
263,
2702,
26001,
18530,
29973,
30010,
13,
13,
30015,
4013,
6559,
6511,
502,
304,
1234,
4874,
785,
304,
385,
15834,
29889,
8512,
26001,
881,
1603,
367,
2714,
310,
758,
24130,
10835,
408,
263,
19911,
304,
367,
8906,
29892,
2531,
300,
1199,
448,
297,
3153,
278,
20371,
29946,
29929,
29945,
29900,
2531,
327,
668,
448,
508,
884,
1708,
263,
7282,
6297,
297,
8500,
292,
1058,
338,
901,
5517,
304,
6919,
29891,
26001,
16178,
3178,
13,
13,
3868,
2715,
393,
901,
5925,
471,
4312,
304,
2274,
278,
5837,
297,
607,
20371,
29946,
29929,
29945,
29900,
16254,
287,
411,
916,
13879,
29892,
1316,
408,
263,
2278,
30010,
29879,
6509,
5177,
29892,
297,
278,
11176,
10238,
310,
26001,
29889,
13,
13,
25639,
897,
2448,
345,
11682,
29901,
1346,
29949,
332,
664,
884,
4216,
29879,
8570,
304,
278,
11314,
936,
5626,
18830,
278,
671,
310,
2531,
7492,
6987,
363,
26001,
9262,
322,
24809,
358,
29892,
322,
393,
591,
881,
25798,
2050,
7985,
292,
1857,
3279,
1953,
2750,
2531,
7492,
2313,
5632,
3381,
297,
278,
23390,
9999,
29889,
8680,
1667,
8998,
363,
6944,
338,
393,
445,
5925,
1122,
1371,
297,
278,
29769,
310,
2702,
29380,
13879,
393,
508,
1371,
297,
278,
5849,
310,
26001,
25078,
29889,
13,
13,
30015,
3644,
591,
2289,
864,
304,
2274,
26001,
322,
967,
2779,
373,
8674,
1288,
29892,
12666,
284,
29892,
17407,
322,
8604,
714,
26807,
29892,
591,
1818,
6559,
1716,
5469,
322,
302,
4227,
545,
3995,
2715,
4942,
897,
2448,
345,
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
] |
Owen Doane is returning home by ferry to Manisses Island, a circular deposit of gravel, clay and rock, after serving a 6 year sentence in a state psychiatric lockdown facility for rolling through a stop sign and driving a vehicle carrying two tourists from the road to strike a stone wall.
Ferry Captain:
“Ladies and Gentlemen, welcome aboard the ferry “Manisses”. Our sailing time today will be approximately 50 minutes over calm seas.”
He had been drinking in an island bar at lunch, and was returning to a job site where he was a foreman for his father’s company of stonemason’s – Derrick Doane Stoneworks – when the combination of alcohol and anti-depressants that he had recently been prescribed caused him to drift from consciousness.
The vehicle carried a mother traveling with her 9 year old daughter, Hannah … and the accident caused the girl to suffer injuries that paralyzed her from the waist down, confining her life to a chair.
Hannah’s mother sued Owen’s father and his company, winning care for her daughter at “The Center”, an old home converted to comfort and attend to the island’s disabled and infirm. The building is situated at the highest point of Manisses Island which, ironically, can be seen from the Doane house and property.
As a result, Derrick suffered the collapse of the company that had been built upon the Doane family heritage of pulling stone from fields before harvest and building walls after milling grain since they had settled Manisses Island in 1664. In danger of losing the company altogether, he eventually was forced to sell to his oldest son, Craig - a further embarrassment - while Owen was still in prison.
Owen has been released from prison early with time served due to the circumstance that his father is dying.
Now I Know
(Brockmann/Andrade)
Fateful Days
Paul Adrian Villarreal as Owen
Owen:
When I was a boy I played in fields by the sea
Winds in the grass surrounded me
When I was a boy I watched my father before me
Heirs in the fields surrounded …
Now I know there was no moment’s way to see
What I could have done to change that fateful day
And now I can see what I’ve done to my family
And I know that now I am not …
I can see
An island at sea
I can see now that I am …
What I am
Windmills at sea
Father it’s me
And I can see now what I …
That I am
When I was a boy I learned to fly by the sea
Kites in the air they pulled on me
When I was a boy I watched my father flying free
Airs in the fields they pulled on
Now I know there was no moment’s way to see
What I could have done to change that fateful day
And now I can see what I’ve done to my family
And I know that now I am not …
Hannah:
“I saw it.”
“I can see you.”
“I saw it.”
Ferry Captain:
“Ladies and Gentlemen, we are now entering The Great Salt Pond. We ask that all passengers with motor vehicles to please go to their cars at this time.”
The ferry settles in and glides through the breakwater separating the ocean from The Great Salt Pond - Owen rises and goes to the rail … nothing appears to have changed, time seems to have stood still; the family home sits on a small rise up from the mouth of the pond, angled on the land in such a way as to bear the brunt of strong winter winds with the long dormant windmill in the foreground by the shore, turned away from him and his return home.
And then Owen notices another, newer construct down by the shore. He walks the rail back to the stern as the ferry sluices the water easily past … it is most certainly new though weathered, a lookout perhaps - a “crow’s nest” - a post that resembles a lifeguard’s chair surrounded by a stone foundation. It sits at the very edge of the pond and is turned looking out empty towards the sea, dark under the overcast sky.
Owen:
When I was a boy no mother’s voice called by the sea
She saved her last breath to give to me
When I was a boy I watched my father comfort me
My head on his chest breathing …
No one knows there was no moment’s way to see
What I could have done to change that fateful day
And now I can see what I’ve done to my family
And I know that now I am not …
I can see
Father it’s me
I can see now that I am …
What I am
Winds of change
Lives exchanged
And I can see now what I …
That I am
The ferry throttles down and begins to slowly turn its bow around … and the faces of the bars, shops and hotels hugging the harbor sweep into view. Some have new paint and there are name changes to be sure but the facades have remained the same, though new lives no doubt walk those halls.
Owen watches the ferry churn the waters of the Great Salt Pond as it backs into its berth. The smell of brine is pungent. He breathes deeply and watches the dock workers catch tossed ropes which they hold and pull leaning back to cleat along the dock.
Ferry Captain:
“Ladies and Gentlemen, now arriving Manisses Island … We ask that all passengers with bikes and on foot to remain on the upper decks until all vehicles have exited the vessel.”
Mothers call out to children running on the upper deck while fathers gather their family belongings. Lovers stand at the rails smiling and laughing in each other’s arms, amused at the antics of seagulls that appear motionless before them, bawling for treats. Elderly couples move slowly and easily to the stairs where husbands and wives assist each other down with soothing, encouraging words and gentle hands.
Owen waits to walk last out of the dark cavernous car deck and into the light on island for the first time in six years. With his head down, he shoulders what little he has brought from prison … and begins the long walk home.
Grounded
Gordon Tittsworth as Owen and Derrick
Owen:
“Why has my father been moved to my room?”
He is no child grounded for life
“Why has my brother moved into his room?”
He could have waited for Dad to die
Consequences move like waves (waves)
Self-sustaining, rolling fate
He is cocooned in my covers - my bed
He looks so fragile, yet so strong
He is turned to the window – the air
The curtains rise and fall with his hair
“I didn’t know” – I want to cry (cry)
I drop and it wells up from inside
The chance to redeem me
I’m by your side
Afraid of just what I’ve become
Owen reaches for his father’s hand and clasps it as he lays his head down. He looks out past the billowing curtains to the branches of the large tree in the yard and listens to his father’s breathing as he rides the small swell of his chest up and down. Derrick slowly opens his eyes and smiles … and then he cradles Owen’s head with his free hand.
“I was trapped, Dad - in body and mind”
In prison … the hell was I really?
“I would look in the mirror - see signs”
My past rushing up from far behind
“In the space between the bars (bars)
I saw my life within that car”
The chance to redeem me
I’m dying inside
Afraid of just who I’ve become
As Owen adjusts and smoothes the blankets covering his father, he can feel the disgust for what they have done rising like bile. Derrick Doane is a large man and this bed – Owen’s twin bed – can barely hold him. It reminds him of the bed in the cell that he was sentenced to occupy, his world reduced to a rectangular box of cement blocks.
Derrick:
Oh, dear … “Son … the air is just right ….”
Owen:
I think he wants to fly again
He takes the key from the string on his chest
I haven’t seen that room since a boy
Climb to the door at the top of the stairs (stairs)
I turn the key … and I just stare
The chance to redeem me
To turn the tide
Afraid of just where I have come
Kites
Tilman Eckelt as Owen
Owen:
Dust motes float, suspend the wait of hidden years
Floor to ceiling, tissue hung on wooden frames
Designs, materials strewn upon a craftsman’s table
Old tome, leather, turned down called: “The Book of Airs”
Have I come home to meet this kite maker
“A man with his head in the clouds”?
I want to believe what was once lost to me can be …
Found
Dust motes settle, fall the weight of wasted years
I see the kite he asked for, simple, from my youth
The tail is torn, tied fabric taken from the years
I save one last look … resigned, sigh at the door
When Dad rises to meet his own maker
Will the skies claim their tears from the ground?
I have to believe what was once lost to him can be …
Found
When it comes time to meet my own maker
Will the clouds empty, reform all ‘round?
I would like to believe we are fallen tears on the …
Ground
Flight
Cornelius Kappabani as Owen and Derrick
Owen:
I take the kite outside
Through window open wide
Derrick:
“You need to know that I forgive you, son”
Owen:
The string clutched to his chest
The tail our family crest
Derrick:
“Don’t be afraid to forgive yourself, son”
Owen:
I want to change for good
I won’t accept my fate
Out of convenience I am …
I
Derrick:
“The air’s just right.”
Owen:
I take the kite on down the hill
The wind comes off the sea
Sweeps up and surrounds me
I turn around, kite trembles in my hand
I lift my arms up high
I know this is goodbye
I cannot hold this kite down on the ground
I’ve never changed for good
I would accept my fate
Out of convenience I lived …
The lie
Then it’s gone
In the blink of an eye
Rising high
Silent flourish in the sky
The kite shudders as it climbs, vibrating with a staccato rapidity that causes the tissue to buzz and hum on its frame …then it steadies itself with a shake of its shoulders once, twice as it moves through and navigates the currents, much like the gulls that ride the currents along the shelves of the eroding island cliff faces always searching, forever searching …
The sun glints through the tissue of the kite as the struggle to climb diminishes, infusing the frame with diaphanous colors and light. Once above the conflicting current of airs the kite twists and turns gracefully, playfully dives and swoops and then suddenly rises, soaring higher …
A sudden gust of wind expands and lifts and fills the tree at the top of the hill and then dissipates, dropping branches rushing downwards, the leaves exhaling as it rushes towards Owen warm against the cool ocean breeze at his back. He looks and notices that the curtains to his bedroom window are blowing outwards.
Then Owen sees that the string to the kite has gone limp – it is simply flowing out over the sill. The end of the long tail soon appears and drops to the ground and is pulled snaking through the grass until it slowly rises, floating up through the air in a long slow sweeping arc until it seems to surface and surf over the blades of the grass as it heads for the tree at the top of the hill …
Owen:
I rush into the tree
To set the tail – caught - free
Carved branches – healed – our hold on history
I untangle carefully
Past slips from my hands and me
The last to go: blue ribbon from my birth
We take the same way up
We can control our fate
We all need some help to be …
Set free
I watch it fly
Kite soars, rises to new heights
Pulls at my heart
String trails away from all sight …
Current Events
(Brockmann/Andrade)
Winds of Change
Gordon Tittsworth as Owen
Owen:
Mending walls and fences for my family
My debt to Dad, rebuild his company
Good walls make good neighbors - I’ll start with the fateful site
“Brother, who are you to let me go?
And who are you to clear out all Dad’s rooms?
And where have all his notes and kites gone to?”
Oh my God - they’re just thrown
In the …
“The root cellar!”
Heirs
Cornelius Kappabani as Craig
Gordon Tittsworth as Owen
Craig:
“I’m having a baby – what the hell should I do?
Where should I fuckin’ put him?
A son to carry on the Doane family name
If there’s nothing thanks to you”
Owen:
“You cleared out all of father’s rooms!”
Craig:
“The kites?! Is that what we’re talking about?
You’ve always had your head in the clouds!
If you would have had your feet on the ground
You wouldn’t have lost your Annabelle
Owen:
“She left and she found someone else –“
I drove her there
I didn’t care
I wasn’t there
And his name is …
Craig:
“What can we do now Owen, Dad is dead
Look - I’m calling all the shots now
You gave that right up when you hit that girl
And I can’t have you on my job sites”
Owen:
“I didn’t hit that little girl …”
Craig:
“Just who the fuck do you think you are?
The house is deeded to the company
Too bad he chose to give it all to me
While you were in that mental prison”
Owen:
“Dad didn’t give you anything!”
He had no choice
I took his voice
You voiced your choice
And his name is …
Winds of Change II
Cornelius Kappabani as The Islanders
Gordon Tittsworth as Owen
Islander 1:
“He appeared on island when you went away”
Old Salt:
“Married the Kingsley girl and settled in”
Islander 2:
“He gave your brother money - took hold of your company”
Old Salt:
“Rumor is he wants your property”
Islander 3 and Old Salt:
“Like an ill wind brings an early frost
So his presence in our island life”
Islander 4 and Old Salt:
“He is eating away
He is …”
Owen:
“Coleman Burke!”
Owen decides that he can no longer sleep in what has become his brother’s house and moves into the old windmill down by The Great Salt Pond. Along with his meager belongings, he brings with him all that he can salvage of his father from the root cellar. He also carries with him the “Book of Airs”.
Errs
Gordon Tittsworth as Owen
Owen:
“I drove her there
I didn’t care
I wasn’t there
And his name is …”
“He had no choice
I took his voice
You voiced your choice
And his name is …”
Book of Airs
(Brockmann/Andrade)
History
Instrumental
Heritage
Gordon Tittsworth as The Narrator and Owen
Narrator:
On the hillocks of history as the countryside changes below
Windmills steadfast through bluster and torrent now standing idle and old
Provided villages of men with daily bread
While parish alms and prayers filled every heart and head
Owen:
The past not dead
Narrator:
The Doanes were millers and stonemasons from mainland shores in 1664
Posts and gears hewn from island woods, sails sewn from ships that brought them ashore
Supernatural resource, self-sustaining winds of change
Power coming from off the sea could not forecast long range
Owen:
Lives exchanged
I sit and read from “The Book of Airs” as aging timbers creak, shift and moan
Chronicles and experiments to harness all the airs that have roamed
My father’s kites adorn the beams up off the floor
Not tossed like skins off fruit - not forgotten anymore
Experiments
Gordon Tittsworth as Owen
Owen:
From the ink and lead pressings my grandfather he speaks to me (1)
My father’s designs, reworked, the mechanics an oddity (2)
(1)“Wade in to your waist and feel the polar pull of opposite currents;
With your kite still in the air submerge yourself, hold on and feel yourself drawn out –
Serene suspension, rolling … womb-like muted sounds lull your soul”
(2) Inverted flower folds sewn from the sails of either windmills or boats?
My body mass the tail: counterbalance in a parachutist’s harness –
Contrasting construction, resembling dormant tulips or a rose?
Out of a job, I’ll have to recycle bottles to live
Off to the pond, I need to trust and try not to misgive
Floating
Instrumental
-Intermission-
The Flyer
(Brockmann/Andrade)
Owen rises early and rides an old childhood bike through the rain into town. He pulls a cart behind him that holds bottles which he has taken from the dumpsters of island bars and which he plans to recycle at Kingsley’s Market for money to buy the necessities to live in the windmill, as well as the materials required to build his father’s kite design from the “Book of Airs”.
Annabelle
Jan Hoving as Owen
Owen:
We traded choices made without a fight
On island winds awaken this old mill
Off island ferry found you Mr. Right
Now I pedal bike and cart up the hill
I would drift drunk through the island nights
Now I sift trash through the pouring rain
I emptied bottles in exchange for flight
Now empty bottles are exchanged for change
Annabelle, don’t leave me inside with this refuse
And I know that money can’t buy the one thing up to you
You shouldn’t have had to choose or lose
“Share Who You Are, Share What You Do,
Share Your Spirit”, the flier said
Stone and mortar, building walls that I did
Though I would rather fly instead
Annabelle, I’m grounded inside from my excuse
Now I know that money can’t buy the one thing up to you
No, I would like to fly with you
As rain drums along the shell of the dumpster, Owen sits huddled amongst the trash and flips the hood to his jacket up over his head; rain slips through in rapid drops and patter falls over him. He folds the flier and puts it into his pocket. Though the event for the island’s artisans at The Center has already taken place, he decides to ask Annabelle if he might still be allowed to visit and participate, but he wants to talk of wind and air – not stone and mortar … and to fly kites rather than to build walls.
Owen:
“Annabelle, don’t leave me inside with this refuse
And I know that money can’t buy the one thing up to you
You shouldn’t have had to choose …”
“Annabelle, I’m grounded inside from my excuse
Now I know that money can’t buy the one thing up to you
Yes, I would like to fly for you”
Owen finds Annabelle at her father’s market and is astonished to see … he’d learned that she had lost an arm to cancer while he was in prison but to actually see his old childhood friend with her one arm ….
He hands her his redemption slip and the flier, and asks if he might have a chance. She pays him for his recycling, and agrees to arrange for a visit by him to The Center. On the appointed morning, Owen collects some of his father’s kites from the windmill, places them into the cart, and rides his bike back up the hill ….
The Center
Floor Kraaijvanger as Annabelle
Gordon Tittsworth as Owen
Owen pedals up the long dirt drive and glides into the crescent lot. He has a striking view of rolling farmland down to The Great Salt Pond where he quickly locates the windmill and his father’s house out by the breakwater. Annabelle walks out from The Center and greets him.
Annabelle:
“I still love you
And I love our island life
But was it so wrong to search for life beyond the sea?”
“I still feel you
In the memory of my arm
And I’m still haunted by the day you left in chains”
I didn’t want to let you go
Owen:
“In prison time stands still”
Annabelle:
“But that’s an illusion”
Owen:
“In fields the seasons change”
Annabelle:
“Nature sleeps and she wakes”
Owen:
“Your garden still grows strong”
Annabelle:
“This island weathers the storms …”
And in the morning I wake and I rise
You drove me there
You drove me there
Owen looks at the group assembled for his demonstration and is taken aback to see that there is a young teenage girl in a wheelchair among the residents waiting for him. Annabelle takes Owen’s arm and pulls him aside …
Annabelle:
“Please believe me
You were drowning in yourself
The boy I had known was buried deep beneath your skin”
“Understand me
Though that cancer took my arm
The girl that I know cannot be held and kept inside”
My hold on you is more profound
Owen:
“Is that her in the chair?”
Annabelle:
“I thought that you knew?”
Owen:
“I’m so scared and confused”
Annabelle:
“Consequences for you”
Owen:
“I ask you if she knows”
Annabelle:
“Well … what does it matter?”
And in the morning she’ll wake but not rise
You drove her here
You drove her here
Owen fixes his jaw and releases Annabelle’s hand. He turns from her and watches the young girl – Hannah is her name (he knows) … she smiles and laughs blithely from her chair in conversation with a woman lying in a rolling bed while wisps of her hair fly in the wind and catch in the corners of her mouth. She is quite the beautiful young lady. Hannah turns her heard suddenly and catches Owen’s eye, holding him in her gaze for a moment before turning away.
Owen:
“Of course I’ve got no excuse …”
Annabelle:
“You heard her mother’s a drinker.”
Owen:
“She simply dropped her here?”
Annabelle:
“And since we’ve not seen her …”
Owen:
“My family pays the bill.”
Annabelle:
“The price set for appeasement …”
And every morning I’ll help her to rise
You drove me here
You drove me here
You drove me there
You drove me there
Owen:
I drove her there
I drove her here …
Fateful Days II
Antilla Thomson as Hannah
Hannah:
When I was a girl my mother played by the sea
She saved all her breath when I would plead
When I was a girl I watched my father running free
Mom said: “Save all your breath” when I would …
Now I know there was no moment’s way to see
What I could have done to change that fateful day
And now I can see what’s been done by my family
And I know that now I am not ….
Hannah
Cornelius Kappabani as Owen
Antila Thomson as Hannah
Owen walks up to Hannah and introduces himself. She looks up at him and tells him how much she has been looking forward to this day. He drops and sits back on his heels, shocked, and after a moment says, “Me, too.”
Owen:
“I will help you fly
Here … now hold the string
My father wrapped and held me in his hands”
“I will help your arms -
Am I hurting you?
Are you ready? Now …ok … let go.”
I drifted off went through the sign
Look what I’ve done
I didn’t know - how could I know?
Oh, Hannah
Hannah:
“I feel you lift my arms
You’re not hurting me”
Yes, lay your head and rest it on my chair
“There - why do you fly?
Owen, can I try?
I’ve seen you stand up to your waist in the pond”
I’ve been in chairs more than you know
I’ve been pushed
You didn’t know – how could you know?
Oh, Owen
She had seen him in the pond? How did she know it was him? Had she guessed? Had Annabelle told her?
Owen can feel the excitement coursing through Hannah’s arms as the string is played out and becomes heavy with atmospheric weight and drag.
Hannah’s arms bob and sway in his hands … and then she begins to laugh most beautifully – explosively - a laugh laced with the breathless giggles of a little girl … a laugh that had been buried away and is resurrected! Owen looks to Annabelle and smiles. She takes her hand from holding what remains of her other arm and raises it to her mouth, smiling back.
The sun glints through the tissue of the kite as it struggles to climb in the wiles of island airs, infusing the frame with diaphanous colors and light. The kite bows and dances and then runs free pulling more string from Hannah’s hands to the massive clouds that sail muted through the afternoon sky, trailing long shadows on the ground that sweep up the fields and swim over them for a moment …
Owen:
I watched all signs drifting off
Our hearts on strings
She couldn’t know – I’d like to show
Oh, Hannah
Owen asks Hannah if she would like to fly from in the pond as she had seen him – he explains that he has learned how to fly there from a book that has been in his family since they first settled the island. He could push her into The Great Salt Pond in her chair? She turns as best she can and looks to Annabelle with excitement.
Annabelle asks The Center’s director for permission to take Hannah to visit Owen under the guise of visiting the windmill, and the director tells her that she sees no reason why Hannah shouldn’t be able to see “up close what she’ll eventually own – if there’s a God.”
For more than the first time, Annabelle begins to wonder if Hannah knows that she is in her chair at the hands of Owen. And she wonders if she has been told.
Airs(Brockmann/Andrade)
The Great Salt Pond
Floor Kraaijvanger as The Narrator
Owen is waiting for Annabelle and Hannah at the house, sitting astride his bike as The Center’s van pulls up the drive … he takes Hannah from the attendant at the lift and pushes her into the empty cart. Annabelle sits on the seat behind him and holds on with her one arm as he pedals them down the hill to the pond. Hannah asks about what appears to be a large round tent in the field beside the windmill and Owen explains that it’s actually a kite design of his father’s that he found in the “Book of Airs”.
He pushes Hannah into the windmill and shows her the kites hanging from the rafters and the book with the charts and tables scribbled in the margins amidst the flying experiments of his grandfather and his father’s drawings. He steps out while Annabelle changes Hannah and then he pushes her, takes them down to the pond.
Narrator:
Pushing her chair into the waters up to her waist
He sees her legs dead white shimmering below there
She wades out and holds up the kite … then holds the string with her - their fingers laced
Owen wraps his arms around them - her missing arm there
And they fly
Fly for freedom
Currents deep and strong that pull them on
They fly
Fly for freedom
Currents in the air that pull them there
They fly
In the ocean of sky
He says he’s learned of a way to reach the sky from beneath the surface
Will she trust him to help her to fly from out of her chair there?
She watches as Hannah is raised - she looks scared from an awkward embrace
She holds her breath - eyes wide waits in Owen’s hands there
And she dives
Dives for freedom
Owen holds her there, his arms her chair
She dives
Dives for freedom
Currents differing, she holds the string
She flies
In the reflected sky
Bent at the waist he cradles her wrapped in his hands
His heavy breath ripples the water, her hair waves like grass there
She leans in and says “that’s enough”, then sees the string still held clutched to her chest
With her one hand supporting her under, they pull her to air there
And she flies
Flies to freedom
Currents strong and deep, inducing sleep
She rises
Rises to freedom
She laughs and rests her head on Owen’s chest
All:
We fly
Hannah:
You’re my sky
Annabelle:
You’re my sky
Owen:
You’re my sky
Grounded II
Gordon Tittsworth as Owen
Hannah asks Owen if she can visit again so that he can show her how the windmill works. He says that he would need to learn how to operate it from reading the “Book of Airs” - if it even still could turn in the wind. Then she asks if she could be present when he tried to fly his father’s kite. He says “of course” and then pedals her and Annabelle back up the hill to the house where he asks his sister-in-law, Rachel, to call for the van while he waits with them.
Rachel eyes this odd group with curiosity and goes in to place the call. And then she dials one more number.
Owen:
I read from the masters how to operate the windmill in the “Book of Airs”
Turn sail and be aware of ever changing fickle face and wiles of the wind
Then the vaguest smell on wisps of white surrounds the wooden gears
Smoke! Thick and hot reserved for only those who are lost and have sinned…
Searching for the truth
Surrounds me in the air
I see father’s kite a ball of fire disintegrating up into the air
Fabric curls in layers like the sneering lips of demons sent to feed upon
Oh no! The frames in danger of igniting within every flare …
I hear now a boat running off on the waters of the Great Salt Pond
Searching for the proof
Disappears into thin air
Owen rushes up the hill to the house for the phone. Craig roars into the driveway – he has seen the smoke rising from a growing orange light, as if a pit had been opened up by the Great Salt Pond. He hauls himself out of the truck and nearly runs into Owen as he bounds down the hill to the mill, both brothers drawn from the dark in the dancing glow of the fire.
Owen:
Craig! Craig!
Craig:
Owen - what the fuck?!
Owen:
Someone burned the kite – Dad’s kite, Craig!
Craig:
Someone – wait! What?!
Owen:
I don’t know!
Craig:
What the hell are you talking about?
Owen:
The mill is burning!
Craig:
Okay - okay. They’re coming. I already called. Here they come.
Rachel suddenly appears out of the night.
Rachel:
Oh my God. What’s going on?
Craig:
You didn’t see this?
Rachel:
See-?
Craig:
The mill, Rachel – our mill is on fire!
Rachel:
No. I had no idea
Craig:
You had no idea?
Rachel:
No.
Craig:
Then why are you here?
Rachel:
I … I just heard the sirens …
Owen:
Craig – help me turn the windmill! C’mon - we gotta turn the sails away from the fire!
The brothers race down the hill and lean into the long wooden pole sticking out at an angle from the dome of the mill and begin to push against to turn the rusted, deflated wheel on the end. Slowly the wheel tears away from the undergrowth and rolls along its path, rotating the windmill dome and sail frames away from the blaze.
The Island Fire Department arrives and barrels down the hill. Owen and Craig watch their friends draw water from the pond and work to save the windmill. Rachel has disappeared. The flame roars up in a swirling arm that sways like a tentacle in the air and attacks the windmill, leaving broad black swaths across the stone foundation and threatening immolation of the wooden structure and the dome.
Suddenly headlights sweep up over the top of the hill and hold the brothers in their glare as an engine guns down towards them. It is Coleman Burke, who gets out of a “Doane Stoneworks” truck with Annabelle. He waits for her to round the ticking engine and places a hand where her arm would have been, only instead of flesh he grabs her by the fabric at her hip there and pulls her along to them.
Burke:
What the hell is going on?
Craig:
Someone tried to burn down the mill. Wait - who called you?
Burke:
Well … what does it matter?
Annabelle:
Owen – are you ok?
Owen:
I’m fine, Belle. I got out in time.
Burke:
Oh? In time for what? He’s fine.
Owen:
Yeah, I’m fine. But the kite is destroyed.
Burke:
Now, who would want to do anything like that?
Owen:
Searching for the proof
Surrounds me in the air
Searching for the truth
Disappears into thin air
The fire is finally put out … and that night Owen spends at the house lying in his old bedroom, in his old bed. He looks out the window past the tree to the windmill, the acrid taste of smoke still thick on his tongue.
Owen:
I dove and found the book within the smoke and now I clutch it safely to my chest
Annabelle she held me with the strength of her lone arm though she’s still miles away
I can’t be more comforted than when she held me to her breast
I’ll sleep and wake to check for damage in the light of day
Searching for the truth
Surrounds me in the air
Kites II
Instrumental
Owen awakens to a quiet house. In the distance, the gulls are already riding the currents of air above the surf. He looks down the hall and sees that his brother’s bedroom door is shut. He slips out into the hall and closes the door to the room he shared with his father.
He moves quietly within what has become a shell of his old home. Time moves on – things have changed. Many of the faces smiling back from the pictures lining the shelves are unknown and alien to him. He finds a picture of his mother nearly hidden, tucked away on a window ledge behind a curtain … he picks it up and blows away the fine dust that has settled upon the glass covering the woman behind his reflection there: a healthy young woman with thick blowing hair smiling up from beneath a large hat in fields of tall grass. He touches the glass separating him from the image, replaces it at the window and then goes to inspect the windmill.
Owen notices a hole burnt into the dome of the windmill by the fire. He raises a ladder, climbs up and peering inside is astonished by what he finds: a fibrous, undulating mass of material hidden up under the dome that trembles in the wind rushing over it, expanding and contracting in small waves that roll back and forth upon itself – tremulous - like live tissue. He reaches his hand inside and touches the “entity” and feels that it is actually some sort of material. A kite? Had he found his father’s kite?
Owen studies more closely the gears and levers on the underside of the “ceiling” of the windmill and notices one thing immediately: they have been cast from metal, not hewn from wood, which means that they had been added to the original design, probably by the person who placed the material up under the dome. Could it really have been his father?
He also quickly sees that they have been designed and machined to connect to the main center shaft and gear system which in turn was attached to the windmill’s sail frames … which meant that all he had to do to engage the system (and thereby discover its purpose) was to … and then he sees it! All he would have to do was disengage the levers on either side and get the windmill operational for the “ceiling” to drop away…
Owen sets about repairing the four sail frames to insure that they have the integrity to support the sails once hung in the wind, and then he goes back up to the house and enters the cellar by the bulkhead …
He searches the deepest part of the cellar for the actual windmill sails, hoping that they are still there, and indeed finds them tucked away in a molding, wooden chest under generations of dust and dirt. He hauls the chest back up the bulkhead into the light and down the hill where he carefully lifts the sails and lays them out on the grass to air – there he inspects the cloth for holes and tears and sweeps away the spiders and earwigs that scuttle over the sails, no doubt having infiltrated them from being stowed away in the dark dampness for so long.
Owen then calls Annabelle to arrange for her and Hannah to visit again … and he explains all that he has found … and he promises a flight to remember.
Flight II
Floor Kraaijvanger as Annabelle
Antila Thomson as Hannah
Cornelius Kappabani as Owen
Annabelle:
“How can we help here? We’re unable … of what use?”
Hannah:
“Left in my chair here … I feel so small – and of no use.”
Owen:
“Help me turn to the wind … I’ll haul, hang and set the sails”
Annabelle:
“With my one arm, Owen I will hold to you.
Hannah:
“My legs are useless, but I can hold onto you.”
Owen:
“The tail to Dad’s kite …. Here, hold the rope - please help me fly!”
Annabelle:
The windmill dome splits, opens wide
Fabric folds fill with a massive sigh
Kite tugs on tethers, trembling
Long dormant petals open and they sing
With a flourish Owen is pulled away
Into the sky
Owen throws back his head and laughs – he can’t help braying like a little boy! The island falls away becomes a giant play set of toy boats sitting in the harbor and winking cars that crawl past businesses, homes and properties … all so many rectangular boxes and plots that recede beneath his feet.
Annabelle:
“Owen, I can’t hold you - I can’t hold onto you!”
Hannah:
“My arms are lifting - I’m being pulled from my chair!”
Owen:
“Now I can see it all …! Belle it’s ok - please let me go!”
Rising on the current of errs
Staccato bursts - and blooms full of heirs
No longer owing alibis
Diaphanous against the deep blue sky
Owen / Annabelle:
Rope trailing disappears from all sight
Pulls at our hearts …
Owen
Paul Adrian Villarreal as Owen
Owen:
When I was a man I watched my father flying free
He saved his last breath to give to me
When I was a man I held the girl I hurt to me
She gave all her strength to set me …
Now I know there was no moment’s way to see
What I could have done to change that fateful day
And now I can see what I’ve done to all around me
And I know that now I am …
Free …
Lyrics to Brockmann/Andrade songs
Lyrics to "Annabelle" from Airs - A Rock Opera
released as a video single by Fencesound Music, February 15, 2012.
AnnabelleMusic by Steve Brockmann
Lyrics by George Andrade
Jan Hoving as Owen
Owen rises early and rides an old childhood bike through the rain into town. He pulls a cart behind him that holds bottles which he has taken from the dumpsters of island bars and which he plans to recycle at Kingsley’s Market for money to buy the necessities to live in the windmill, as well as the materials required to build his father’s kite design from the “Book of Airs”.
Owen:
We traded choices made without a fight
On island winds awaken this old mill
Off island ferry found you Mr. Right
Now I pedal bike and cart up the hill
I would drift drunk through the island nights
Now I sift trash through the pouring rain
I emptied bottles in exchange for flight
Now empty bottles are exchanged for change
Annabelle, don’t leave me inside with this refuse
And I know that money can’t buy the one thing up to you
You shouldn’t have had to choose or lose
“Share Who You Are, Share What You Do,
Share Your Spirit”, the flier said
Stone and mortar, building walls that I did
Though I would rather fly instead
Annabelle, I’m grounded inside from my excuse
Now I know that money can’t buy the one thing up to you
No, I would like to fly with you
As rain drums the shell of the dumpster, Owen sits huddled amongst the trash and flips the hood to his jacket up over his head; rain slips through in rapid drops and patter falls over him. He folds the flier and puts it into his pocket. Though the event for the island’s artisans at The Center has already taken place, he decides to ask Annabelle if he might still be allowed to visit and participate, but he wants to talk of wind and air – not stone and mortar … and to fly kites rather than to build walls.
Owen:
“Annabelle, don’t leave me inside with this refuse
And I know that money can’t buy the one thing up to you
You shouldn’t have had to choose …”
“Annabelle, I’m grounded inside from my excuse
Now I know that money can’t buy the one thing up to you
Yes, I would like to fly for you”
Owen finds Annabelle at her father’s market and is astonished to see … he’d learned that she had lost an arm to cancer while he was in prison but to actually see his old childhood friend with her one arm ….
He hands her his redemption slip and the flier, and asks if he might have a chance. She pays him for his recycling, and agrees to arrange for a visit by him to The Center. On the appointed morning, Owen collects some of his father’s kites from the windmill, places them into the cart, and rides his bike back up the hill ….
***************************
The Moment’s EyeMusic Steve Brockmann
Lyrics George Andrade
He’s wondering ‘bout this new deal
It’s not the engine that he bought
Bent under hood up on the highway
Driven image more than thought
She’s wondering ‘bout this new dress
It doesn’t fit the way she thought
But she’s a smile upon the highway
Enchanting gift that can’t be bought
Every day we make it
Every moment take it
Can’t you see it all the while?
Headlights sweeping cross the sky ...
The moment’s eye
They are wondering ‘bout this new way
It hasn’t gone the way they thought
But they inspire upon the highway
Passing vision that is sought
Every day we make it
Every moment take it
Can’t you see it in their smile?
Lighthouse sweeping cross the sky ...
The moment’s eye
(solo)
Every day we make it
Every moment take it
Can’t you see it all the while?
Headlights sweeping cross the sky ...
Everyday we make it
Every moment take it
Can’t you see it in their smile?
Lighthouse sweeping cross the sky...
The moment’s eye
Sign-up for our newsletter and get an instant download to "The Moment's Eye" with our compliments! | [
1,
438,
15556,
1938,
1662,
338,
7863,
3271,
491,
6013,
719,
304,
2315,
29284,
7935,
29892,
263,
19308,
19754,
277,
310,
2646,
955,
29892,
1067,
388,
322,
7679,
29892,
1156,
16330,
263,
29871,
29953,
1629,
10541,
297,
263,
2106,
11643,
7163,
2200,
7714,
3204,
24454,
363,
27777,
1549,
263,
5040,
1804,
322,
19500,
263,
19716,
19436,
1023,
6282,
2879,
515,
278,
6520,
304,
21283,
263,
12565,
10090,
29889,
13,
13,
29943,
261,
719,
10842,
29901,
13,
13,
30015,
29931,
328,
583,
322,
20655,
280,
1527,
29892,
12853,
633,
29877,
538,
278,
6013,
719,
1346,
2517,
29284,
8643,
8680,
14892,
292,
931,
9826,
674,
367,
14235,
29871,
29945,
29900,
6233,
975,
21732,
409,
294,
3178,
13,
13,
3868,
750,
1063,
13748,
292,
297,
385,
11359,
2594,
472,
301,
3322,
29892,
322,
471,
7863,
304,
263,
4982,
3268,
988,
540,
471,
263,
363,
11422,
363,
670,
4783,
30010,
29879,
5001,
310,
380,
265,
331,
1658,
30010,
29879,
785,
2452,
9131,
1938,
1662,
15681,
13129,
785,
746,
278,
10296,
310,
27231,
5391,
322,
9418,
29899,
311,
2139,
1934,
393,
540,
750,
10325,
1063,
2225,
23059,
8581,
1075,
304,
4192,
2027,
515,
19861,
2264,
29889,
13,
13,
1576,
19716,
8988,
263,
5637,
9850,
292,
411,
902,
29871,
29929,
1629,
2030,
8750,
29892,
13889,
801,
16088,
322,
278,
11423,
8581,
278,
7826,
304,
8812,
10899,
14886,
393,
610,
284,
12339,
287,
902,
515,
278,
11324,
391,
1623,
29892,
1970,
2827,
902,
2834,
304,
263,
11774,
29889,
13,
13,
29950,
812,
801,
30010,
29879,
5637,
480,
287,
438,
15556,
30010,
29879,
4783,
322,
670,
5001,
29892,
15613,
2562,
363,
902,
8750,
472,
1346,
1576,
7817,
9363,
385,
2030,
3271,
11543,
304,
13016,
322,
14333,
304,
278,
11359,
30010,
29879,
12708,
322,
3041,
3568,
29889,
450,
5214,
338,
24046,
472,
278,
9939,
1298,
310,
2315,
29284,
7935,
607,
29892,
13977,
1711,
29892,
508,
367,
3595,
515,
278,
1938,
1662,
3699,
322,
2875,
29889,
13,
13,
2887,
263,
1121,
29892,
2452,
9131,
17654,
278,
24382,
310,
278,
5001,
393,
750,
1063,
4240,
2501,
278,
1938,
1662,
3942,
902,
16639,
310,
28420,
12565,
515,
4235,
1434,
4023,
10147,
322,
5214,
14603,
1156,
3533,
292,
2646,
262,
1951,
896,
750,
17141,
2315,
29284,
7935,
297,
29871,
29896,
29953,
29953,
29946,
29889,
512,
9703,
310,
19035,
278,
5001,
19148,
29892,
540,
10201,
471,
11826,
304,
19417,
304,
670,
23947,
1487,
29892,
28050,
448,
263,
4340,
21620,
26771,
358,
448,
1550,
438,
15556,
471,
1603,
297,
8475,
29889,
13,
13,
29949,
15556,
756,
1063,
5492,
515,
8475,
4688,
411,
931,
6766,
2861,
304,
278,
11708,
749,
393,
670,
4783,
338,
27116,
29889,
13,
13,
10454,
306,
19320,
13,
13,
29898,
29933,
20821,
4403,
29914,
2855,
15464,
29897,
13,
13,
29943,
22279,
24728,
13,
13,
18275,
2087,
6392,
9887,
279,
6370,
408,
438,
15556,
13,
13,
29949,
15556,
29901,
13,
13,
10401,
306,
471,
263,
8023,
306,
5318,
297,
4235,
491,
278,
7205,
13,
13,
29956,
12772,
297,
278,
17455,
22047,
592,
13,
13,
10401,
306,
471,
263,
8023,
306,
20654,
590,
4783,
1434,
592,
13,
13,
3868,
12935,
297,
278,
4235,
22047,
16088,
13,
13,
10454,
306,
1073,
727,
471,
694,
3256,
30010,
29879,
982,
304,
1074,
13,
13,
5618,
306,
1033,
505,
2309,
304,
1735,
393,
285,
22279,
2462,
13,
13,
2855,
1286,
306,
508,
1074,
825,
306,
30010,
345,
2309,
304,
590,
3942,
13,
13,
2855,
306,
1073,
393,
1286,
306,
626,
451,
16088,
13,
13,
29902,
508,
1074,
13,
13,
2744,
11359,
472,
7205,
13,
13,
29902,
508,
1074,
1286,
393,
306,
626,
16088,
13,
13,
5618,
306,
626,
13,
13,
29956,
513,
29885,
6090,
472,
7205,
13,
13,
29943,
1624,
372,
30010,
29879,
592,
13,
13,
2855,
306,
508,
1074,
1286,
825,
306,
16088,
13,
13,
7058,
306,
626,
13,
13,
10401,
306,
471,
263,
8023,
306,
10972,
304,
11340,
491,
278,
7205,
13,
13,
29968,
3246,
297,
278,
4799,
896,
20043,
373,
592,
13,
13,
10401,
306,
471,
263,
8023,
306,
20654,
590,
4783,
22764,
3889,
13,
13,
29909,
12935,
297,
278,
4235,
896,
20043,
373,
13,
13,
10454,
306,
1073,
727,
471,
694,
3256,
30010,
29879,
982,
304,
1074,
13,
13,
5618,
306,
1033,
505,
2309,
304,
1735,
393,
285,
22279,
2462,
13,
13,
2855,
1286,
306,
508,
1074,
825,
306,
30010,
345,
2309,
304,
590,
3942,
13,
13,
2855,
306,
1073,
393,
1286,
306,
626,
451,
16088,
13,
13,
29950,
812,
801,
29901,
13,
13,
30015,
29902,
4446,
372,
3178,
13,
13,
30015,
29902,
508,
1074,
366,
3178,
13,
13,
30015,
29902,
4446,
372,
3178,
13,
13,
29943,
261,
719,
10842,
29901,
13,
13,
30015,
29931,
328,
583,
322,
20655,
280,
1527,
29892,
591,
526,
1286,
18055,
450,
7027,
27903,
349,
898,
29889,
1334,
2244,
393,
599,
28134,
411,
10992,
24413,
304,
3113,
748,
304,
1009,
18647,
472,
445,
931,
3178,
13,
13,
1576,
6013,
719,
3604,
793,
297,
322,
3144,
2247,
1549,
278,
2867,
13405,
2903,
1218,
278,
23474,
515,
450,
7027,
27903,
349,
898,
448,
438,
15556,
364,
4637,
322,
5771,
304,
278,
8367,
16088,
3078,
5692,
304,
505,
3939,
29892,
931,
2444,
304,
505,
8389,
1603,
29936,
278,
3942,
3271,
269,
1169,
373,
263,
2319,
14451,
701,
515,
278,
13394,
310,
278,
282,
898,
29892,
2614,
839,
373,
278,
2982,
297,
1316,
263,
982,
408,
304,
11460,
278,
1506,
1657,
310,
4549,
13851,
8805,
29879,
411,
278,
1472,
270,
555,
424,
8805,
19958,
297,
278,
363,
18128,
491,
278,
19055,
29892,
6077,
3448,
515,
1075,
322,
670,
736,
3271,
29889,
13,
13,
2855,
769,
438,
15556,
451,
1575,
1790,
29892,
20687,
3386,
1623,
491,
278,
19055,
29889,
940,
17042,
2039,
278,
8367,
1250,
304,
278,
27784,
408,
278,
6013,
719,
2243,
29884,
1575,
278,
4094,
5948,
4940,
16088,
372,
338,
1556,
8959,
716,
2466,
14826,
287,
29892,
263,
1106,
449,
6060,
448,
263,
1346,
29883,
798,
30010,
29879,
17763,
30024,
448,
263,
1400,
393,
620,
1590,
793,
263,
11747,
24024,
538,
30010,
29879,
11774,
22047,
491,
263,
12565,
22778,
29889,
739,
269,
1169,
472,
278,
1407,
7636,
310,
278,
282,
898,
322,
338,
6077,
3063,
714,
4069,
7113,
278,
7205,
29892,
6501,
1090,
278,
975,
4384,
14744,
29889,
13,
13,
29949,
15556,
29901,
13,
13,
10401,
306,
471,
263,
8023,
694,
5637,
30010,
29879,
7314,
2000,
491,
278,
7205,
13,
13,
13468,
7160,
902,
1833,
16172,
304,
2367,
304,
592,
13,
13,
10401,
306,
471,
263,
8023,
306,
20654,
590,
4783,
13016,
592,
13,
13,
3421,
2343,
373,
670,
521,
342,
16172,
292,
16088,
13,
13,
3782,
697,
9906,
727,
471,
694,
3256,
30010,
29879,
982,
304,
1074,
13,
13,
5618,
306,
1033,
505,
2309,
304,
1735,
393,
285,
22279,
2462,
13,
13,
2855,
1286,
306,
508,
1074,
825,
306,
30010,
345,
2309,
304,
590,
3942,
13,
13,
2855,
306,
1073,
393,
1286,
306,
626,
451,
16088,
13,
13,
29902,
508,
1074,
13,
13,
29943,
1624,
372,
30010,
29879,
592,
13,
13,
29902,
508,
1074,
1286,
393,
306,
626,
16088,
13,
13,
5618,
306,
626,
13,
13,
29956,
12772,
310,
1735,
13,
13,
29931,
3145,
429,
15033,
13,
13,
2855,
306,
508,
1074,
1286,
825,
306,
16088,
13,
13,
7058,
306,
626,
13,
13,
1576,
6013,
719,
20961,
698,
793,
1623,
322,
16410,
304,
14205,
2507,
967,
12580,
2820,
16088,
322,
278,
17240,
310,
278,
22306,
29892,
528,
3554,
322,
7375,
1379,
298,
688,
3460,
278,
4023,
4089,
7901,
1022,
964,
1776,
29889,
3834,
505,
716,
10675,
322,
727,
526,
1024,
3620,
304,
367,
1854,
541,
278,
4024,
3076,
505,
9488,
278,
1021,
29892,
2466,
716,
12080,
694,
7404,
6686,
1906,
298,
4293,
29889,
13,
13,
29949,
15556,
6505,
267,
278,
6013,
719,
521,
595,
278,
19922,
310,
278,
7027,
27903,
349,
898,
408,
372,
1250,
29879,
964,
967,
7655,
386,
29889,
450,
1560,
514,
310,
1506,
457,
338,
282,
686,
296,
29889,
940,
16172,
267,
24344,
322,
6505,
267,
278,
23630,
17162,
4380,
28189,
287,
696,
5547,
607,
896,
4808,
322,
8206,
20793,
292,
1250,
304,
4531,
271,
3412,
278,
23630,
29889,
13,
13,
29943,
261,
719,
10842,
29901,
13,
13,
30015,
29931,
328,
583,
322,
20655,
280,
1527,
29892,
1286,
6974,
292,
2315,
29284,
7935,
16088,
1334,
2244,
393,
599,
28134,
411,
289,
29379,
322,
373,
3661,
304,
3933,
373,
278,
7568,
316,
4684,
2745,
599,
24413,
505,
429,
1573,
278,
21239,
3178,
13,
13,
29924,
720,
414,
1246,
714,
304,
4344,
2734,
373,
278,
7568,
19810,
1550,
285,
19467,
11705,
1009,
3942,
6852,
886,
29889,
4309,
874,
2317,
472,
278,
18090,
1560,
6504,
322,
425,
29700,
297,
1269,
916,
30010,
29879,
10188,
29892,
626,
3880,
472,
278,
3677,
1199,
310,
409,
351,
913,
29879,
393,
2615,
10884,
2222,
1434,
963,
29892,
289,
1450,
1847,
363,
2578,
1446,
29889,
382,
25943,
368,
3581,
2701,
4337,
14205,
322,
5948,
304,
278,
380,
7121,
988,
8646,
29890,
4167,
322,
281,
3145,
6985,
1269,
916,
1623,
411,
577,
6046,
29892,
18443,
292,
3838,
322,
9914,
6567,
29889,
13,
13,
29949,
15556,
11324,
1169,
304,
6686,
1833,
714,
310,
278,
6501,
5777,
3228,
681,
1559,
19810,
322,
964,
278,
3578,
373,
11359,
363,
278,
937,
931,
297,
4832,
2440,
29889,
2973,
670,
2343,
1623,
29892,
540,
26671,
825,
2217,
540,
756,
6296,
515,
8475,
16088,
322,
16410,
278,
1472,
6686,
3271,
29889,
13,
13,
3338,
7261,
13,
13,
29954,
14224,
323,
986,
2774,
2072,
408,
438,
15556,
322,
2452,
9131,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
11008,
756,
590,
4783,
1063,
6153,
304,
590,
5716,
6677,
13,
13,
3868,
338,
694,
2278,
5962,
287,
363,
2834,
13,
13,
30015,
11008,
756,
590,
8099,
6153,
964,
670,
5716,
6677,
13,
13,
3868,
1033,
505,
25993,
363,
360,
328,
304,
762,
13,
13,
1168,
6831,
2063,
4337,
763,
20037,
313,
29893,
5989,
29897,
13,
13,
24313,
29899,
29879,
504,
17225,
29892,
27777,
23779,
13,
13,
3868,
338,
274,
542,
6150,
287,
297,
590,
18469,
448,
590,
6592,
13,
13,
3868,
3430,
577,
13855,
488,
29892,
3447,
577,
4549,
13,
13,
3868,
338,
6077,
304,
278,
3474,
785,
278,
4799,
13,
13,
1576,
3151,
2408,
29879,
14451,
322,
6416,
411,
670,
11315,
13,
13,
30015,
29902,
3282,
30010,
29873,
1073,
30024,
785,
306,
864,
304,
10901,
313,
29883,
719,
29897,
13,
13,
29902,
5768,
322,
372,
1532,
29879,
701,
515,
2768,
13,
13,
1576,
8825,
304,
337,
311,
331,
592,
13,
13,
29902,
30010,
29885,
491,
596,
2625,
13,
13,
29909,
29888,
12240,
310,
925,
825,
306,
30010,
345,
4953,
13,
13,
29949,
15556,
22170,
363,
670,
4783,
30010,
29879,
1361,
322,
22215,
567,
372,
408,
540,
301,
1036,
670,
2343,
1623,
29889,
940,
3430,
714,
4940,
278,
11118,
340,
292,
3151,
2408,
29879,
304,
278,
14202,
310,
278,
2919,
5447,
297,
278,
29413,
322,
1051,
575,
304,
670,
4783,
30010,
29879,
16172,
292,
408,
540,
364,
2247,
278,
2319,
2381,
514,
310,
670,
521,
342,
701,
322,
1623,
29889,
2452,
9131,
14205,
13246,
670,
5076,
322,
1560,
5475,
16088,
322,
769,
540,
2181,
328,
793,
438,
15556,
30010,
29879,
2343,
411,
670,
3889,
1361,
29889,
13,
13,
30015,
29902,
471,
1020,
2986,
29892,
360,
328,
448,
297,
3573,
322,
3458,
30024,
13,
13,
797,
8475,
16088,
278,
23927,
471,
306,
2289,
29973,
13,
13,
30015,
29902,
723,
1106,
297,
278,
19571,
448,
1074,
18906,
30024,
13,
13,
3421,
4940,
364,
21616,
701,
515,
2215,
5742,
13,
13,
30015,
797,
278,
2913,
1546,
278,
22306,
313,
28408,
29897,
13,
13,
29902,
4446,
590,
2834,
2629,
393,
1559,
30024,
13,
13,
1576,
8825,
304,
337,
311,
331,
592,
13,
13,
29902,
30010,
29885,
27116,
2768,
13,
13,
29909,
29888,
12240,
310,
925,
1058,
306,
30010,
345,
4953,
13,
13,
2887,
438,
15556,
10365,
29879,
322,
10597,
267,
278,
9654,
1691,
21653,
670,
4783,
29892,
540,
508,
4459,
278,
766,
29887,
504,
363,
825,
896,
505,
2309,
20493,
763,
289,
488,
29889,
2452,
9131,
1938,
1662,
338,
263,
2919,
767,
322,
445,
6592,
785,
438,
15556,
30010,
29879,
3252,
262,
6592,
785,
508,
16079,
368,
4808,
1075,
29889,
739,
1083,
12772,
1075,
310,
278,
6592,
297,
278,
3038,
393,
540,
471,
2665,
9223,
304,
6919,
29891,
29892,
670,
3186,
12212,
304,
263,
7705,
6825,
3800,
310,
274,
882,
10930,
29889,
13,
13,
29928,
3127,
860,
29901,
13,
13,
9048,
29892,
9425,
16088,
1346,
29903,
265,
16088,
278,
4799,
338,
925,
1492,
16088,
3178,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
1348,
540,
10753,
304,
11340,
1449,
13,
13,
3868,
4893,
278,
1820,
515,
278,
1347,
373,
670,
521,
342,
13,
13,
29902,
7359,
30010,
29873,
3595,
393,
5716,
1951,
263,
8023,
13,
13,
29907,
2576,
29890,
304,
278,
3050,
472,
278,
2246,
310,
278,
380,
7121,
313,
303,
7121,
29897,
13,
13,
29902,
2507,
278,
1820,
16088,
322,
306,
925,
380,
598,
13,
13,
1576,
8825,
304,
337,
311,
331,
592,
13,
13,
1762,
2507,
278,
260,
680,
13,
13,
29909,
29888,
12240,
310,
925,
988,
306,
505,
2041,
13,
13,
29968,
3246,
13,
13,
29911,
309,
1171,
382,
384,
2152,
408,
438,
15556,
13,
13,
29949,
15556,
29901,
13,
13,
29928,
504,
3184,
267,
5785,
29892,
8872,
355,
278,
4480,
310,
7934,
2440,
13,
13,
29943,
10102,
304,
2257,
6504,
29892,
260,
15118,
18757,
373,
27278,
16608,
13,
13,
4002,
647,
29879,
29892,
17279,
12243,
1233,
2501,
263,
25554,
29879,
1171,
30010,
29879,
1591,
13,
13,
21648,
260,
608,
29892,
454,
1624,
29892,
6077,
1623,
2000,
29901,
1346,
1576,
6726,
310,
5593,
29879,
30024,
13,
13,
25559,
306,
2041,
3271,
304,
5870,
445,
413,
568,
2136,
261,
13,
13,
30015,
29909,
767,
411,
670,
2343,
297,
278,
27091,
30024,
29973,
13,
13,
29902,
864,
304,
4658,
825,
471,
2748,
5714,
304,
592,
508,
367,
16088,
13,
13,
9692,
13,
13,
29928,
504,
3184,
267,
3604,
280,
29892,
6416,
278,
7688,
310,
471,
9446,
2440,
13,
13,
29902,
1074,
278,
413,
568,
540,
4433,
363,
29892,
2560,
29892,
515,
590,
12397,
13,
13,
1576,
12464,
338,
10146,
29892,
21351,
18187,
4586,
515,
278,
2440,
13,
13,
29902,
4078,
697,
1833,
1106,
16088,
620,
12961,
29892,
269,
1141,
472,
278,
3050,
13,
13,
10401,
360,
328,
364,
4637,
304,
5870,
670,
1914,
2136,
261,
13,
13,
12984,
278,
2071,
583,
5995,
1009,
20190,
515,
278,
5962,
29973,
13,
13,
29902,
505,
304,
4658,
825,
471,
2748,
5714,
304,
1075,
508,
367,
16088,
13,
13,
9692,
13,
13,
10401,
372,
5304,
931,
304,
5870,
590,
1914,
2136,
261,
13,
13,
12984,
278,
27091,
4069,
29892,
11736,
599,
5129,
14486,
29973,
13,
13,
29902,
723,
763,
304,
4658,
591,
526,
19225,
20190,
373,
278,
16088,
13,
13,
3338,
618,
13,
13,
29943,
4366,
13,
13,
29907,
1398,
295,
2482,
476,
932,
370,
3270,
408,
438,
15556,
322,
2452,
9131,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
2125,
278,
413,
568,
5377,
13,
13,
29911,
1092,
820,
3474,
1722,
9377,
13,
13,
29928,
3127,
860,
29901,
13,
13,
30015,
3492,
817,
304,
1073,
393,
306,
18879,
573,
366,
29892,
1487,
30024,
13,
13,
29949,
15556,
29901,
13,
13,
1576,
1347,
1067,
10519,
287,
304,
670,
521,
342,
13,
13,
1576,
12464,
1749,
3942,
2181,
342,
13,
13,
29928,
3127,
860,
29901,
13,
13,
30015,
10310,
30010,
29873,
367,
13421,
304,
18879,
573,
7535,
29892,
1487,
30024,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
864,
304,
1735,
363,
1781,
13,
13,
29902,
2113,
30010,
29873,
3544,
590,
23779,
13,
13,
3744,
310,
29703,
306,
626,
16088,
13,
13,
29902,
13,
13,
29928,
3127,
860,
29901,
13,
13,
30015,
1576,
4799,
30010,
29879,
925,
1492,
3178,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
2125,
278,
413,
568,
373,
1623,
278,
17306,
13,
13,
1576,
8805,
5304,
1283,
278,
7205,
13,
13,
29903,
705,
8961,
701,
322,
8388,
3885,
592,
13,
13,
29902,
2507,
2820,
29892,
413,
568,
14586,
7586,
297,
590,
1361,
13,
13,
29902,
13777,
590,
10188,
701,
1880,
13,
13,
29902,
1073,
445,
338,
1781,
26966,
13,
13,
29902,
2609,
4808,
445,
413,
568,
1623,
373,
278,
5962,
13,
13,
29902,
30010,
345,
2360,
3939,
363,
1781,
13,
13,
29902,
723,
3544,
590,
23779,
13,
13,
3744,
310,
29703,
306,
10600,
16088,
13,
13,
1576,
3804,
13,
13,
11760,
372,
30010,
29879,
7695,
13,
13,
797,
278,
1999,
682,
310,
385,
10977,
13,
13,
29934,
5921,
1880,
13,
13,
26729,
296,
1652,
473,
728,
297,
278,
14744,
13,
13,
1576,
413,
568,
528,
566,
8623,
408,
372,
10784,
5824,
29892,
325,
4626,
1218,
411,
263,
380,
5753,
1219,
10952,
537,
393,
9946,
278,
260,
15118,
304,
1321,
5617,
322,
3165,
373,
967,
3515,
16088,
6098,
372,
28325,
583,
3528,
411,
263,
528,
1296,
310,
967,
26671,
2748,
29892,
8951,
408,
372,
16229,
1549,
322,
12402,
1078,
278,
16256,
1237,
29892,
1568,
763,
278,
330,
913,
29879,
393,
22203,
278,
16256,
1237,
3412,
278,
528,
295,
1960,
310,
278,
604,
3689,
11359,
1067,
2593,
17240,
2337,
11975,
29892,
22296,
11975,
16088,
13,
13,
1576,
6575,
3144,
9466,
1549,
278,
260,
15118,
310,
278,
413,
568,
408,
278,
21117,
304,
10784,
29890,
22964,
17006,
29892,
3041,
4746,
278,
3515,
411,
9766,
16711,
681,
11955,
322,
3578,
29889,
9038,
2038,
278,
9476,
1259,
1857,
310,
4799,
29879,
278,
413,
568,
3252,
2879,
322,
12169,
17659,
3730,
29892,
1708,
3730,
1933,
267,
322,
16768,
3554,
322,
769,
11584,
364,
4637,
29892,
577,
4362,
6133,
16088,
13,
13,
29909,
8327,
330,
504,
310,
8805,
1518,
4167,
322,
11747,
1372,
322,
27793,
278,
5447,
472,
278,
2246,
310,
278,
17306,
322,
769,
16317,
666,
1078,
29892,
4441,
3262,
14202,
364,
21616,
1623,
2935,
29892,
278,
11308,
429,
4077,
292,
408,
372,
364,
1878,
267,
7113,
438,
15556,
14294,
2750,
278,
12528,
23474,
289,
929,
911,
472,
670,
1250,
29889,
940,
3430,
322,
451,
1575,
393,
278,
3151,
2408,
29879,
304,
670,
6592,
8345,
3474,
526,
13031,
292,
714,
2935,
29889,
13,
13,
11760,
438,
15556,
18553,
393,
278,
1347,
304,
278,
413,
568,
756,
7695,
2485,
29886,
785,
372,
338,
3763,
4972,
292,
714,
975,
278,
269,
453,
29889,
450,
1095,
310,
278,
1472,
12464,
4720,
5692,
322,
4441,
567,
304,
278,
5962,
322,
338,
20043,
5807,
5086,
1549,
278,
17455,
2745,
372,
14205,
364,
4637,
29892,
16526,
701,
1549,
278,
4799,
297,
263,
1472,
5232,
7901,
26819,
15232,
2745,
372,
2444,
304,
7101,
322,
1190,
29888,
975,
278,
1999,
3076,
310,
278,
17455,
408,
372,
15883,
363,
278,
5447,
472,
278,
2246,
310,
278,
17306,
16088,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
364,
1878,
964,
278,
5447,
13,
13,
1762,
731,
278,
12464,
785,
12624,
448,
3889,
13,
13,
8179,
1490,
14202,
785,
540,
7943,
785,
1749,
4808,
373,
4955,
13,
13,
29902,
443,
29873,
2521,
16112,
13,
13,
29925,
579,
20662,
567,
515,
590,
6567,
322,
592,
13,
13,
1576,
1833,
304,
748,
29901,
7254,
18130,
6718,
515,
590,
12060,
13,
13,
4806,
2125,
278,
1021,
982,
701,
13,
13,
4806,
508,
2761,
1749,
23779,
13,
13,
4806,
599,
817,
777,
1371,
304,
367,
16088,
13,
13,
2697,
3889,
13,
13,
29902,
6505,
372,
11340,
13,
13,
29968,
568,
577,
1503,
29892,
364,
4637,
304,
716,
3171,
29879,
13,
13,
29925,
913,
29879,
472,
590,
5192,
13,
13,
1231,
1020,
2719,
3448,
515,
599,
11126,
16088,
13,
13,
7583,
28488,
13,
13,
29898,
29933,
20821,
4403,
29914,
2855,
15464,
29897,
13,
13,
29956,
12772,
310,
10726,
13,
13,
29954,
14224,
323,
986,
2774,
2072,
408,
438,
15556,
13,
13,
29949,
15556,
29901,
13,
13,
29924,
2548,
14603,
322,
285,
2063,
363,
590,
3942,
13,
13,
3421,
2553,
29873,
304,
360,
328,
29892,
337,
4282,
670,
5001,
13,
13,
18420,
14603,
1207,
1781,
22092,
943,
448,
306,
30010,
645,
1369,
411,
278,
285,
22279,
3268,
13,
13,
30015,
29857,
721,
29892,
1058,
526,
366,
304,
1235,
592,
748,
29973,
13,
13,
2855,
1058,
526,
366,
304,
2821,
714,
599,
360,
328,
30010,
29879,
19600,
29973,
13,
13,
2855,
988,
505,
599,
670,
11486,
322,
413,
3246,
7695,
304,
6677,
13,
13,
9048,
590,
4177,
448,
896,
30010,
276,
925,
12005,
13,
13,
797,
278,
16088,
13,
13,
30015,
1576,
3876,
3038,
279,
8530,
13,
13,
3868,
12935,
13,
13,
29907,
1398,
295,
2482,
476,
932,
370,
3270,
408,
28050,
13,
13,
29954,
14224,
323,
986,
2774,
2072,
408,
438,
15556,
13,
13,
29907,
336,
335,
29901,
13,
13,
30015,
29902,
30010,
29885,
2534,
263,
24354,
785,
825,
278,
23927,
881,
306,
437,
29973,
13,
13,
11921,
881,
306,
285,
2707,
262,
30010,
1925,
1075,
29973,
13,
13,
29909,
1487,
304,
8677,
373,
278,
1938,
1662,
3942,
1024,
13,
13,
3644,
727,
30010,
29879,
3078,
3969,
304,
366,
30024,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
3492,
24639,
714,
599,
310,
4783,
30010,
29879,
19600,
8530,
13,
13,
29907,
336,
335,
29901,
13,
13,
30015,
1576,
413,
3246,
29973,
29991,
1317,
393,
825,
591,
30010,
276,
9963,
1048,
29973,
13,
13,
3492,
30010,
345,
2337,
750,
596,
2343,
297,
278,
27091,
29991,
13,
13,
3644,
366,
723,
505,
750,
596,
6900,
373,
278,
5962,
13,
13,
3492,
7656,
30010,
29873,
505,
5714,
596,
8081,
1107,
280,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
13468,
2175,
322,
1183,
1476,
4856,
1683,
785,
30015,
13,
13,
29902,
26603,
902,
727,
13,
13,
29902,
3282,
30010,
29873,
2562,
13,
13,
29902,
9007,
30010,
29873,
727,
13,
13,
2855,
670,
1024,
338,
16088,
13,
13,
29907,
336,
335,
29901,
13,
13,
30015,
5618,
508,
591,
437,
1286,
438,
15556,
29892,
360,
328,
338,
7123,
13,
13,
14959,
448,
306,
30010,
29885,
5432,
599,
278,
528,
1862,
1286,
13,
13,
3492,
4846,
393,
1492,
701,
746,
366,
7124,
393,
7826,
13,
13,
2855,
306,
508,
30010,
29873,
505,
366,
373,
590,
4982,
11840,
30024,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
29902,
3282,
30010,
29873,
7124,
393,
2217,
7826,
16088,
30024,
13,
13,
29907,
336,
335,
29901,
13,
13,
30015,
14084,
1058,
278,
285,
2707,
437,
366,
1348,
366,
526,
29973,
13,
13,
1576,
3699,
338,
316,
19226,
304,
278,
5001,
13,
13,
1762,
29877,
4319,
540,
12784,
304,
2367,
372,
599,
304,
592,
13,
13,
8809,
488,
366,
892,
297,
393,
19119,
8475,
30024,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
29928,
328,
3282,
30010,
29873,
2367,
366,
3099,
8530,
13,
13,
3868,
750,
694,
7348,
13,
13,
29902,
3614,
670,
7314,
13,
13,
3492,
992,
7612,
596,
7348,
13,
13,
2855,
670,
1024,
338,
16088,
13,
13,
29956,
12772,
310,
10726,
1944,
13,
13,
29907,
1398,
295,
2482,
476,
932,
370,
3270,
408,
450,
7935,
414,
13,
13,
29954,
14224,
323,
986,
2774,
2072,
408,
438,
15556,
13,
13,
3624,
1049,
261,
29871,
29896,
29901,
13,
13,
30015,
3868,
7470,
373,
11359,
746,
366,
3512,
3448,
30024,
13,
13,
21648,
27903,
29901,
13,
13,
30015,
7083,
1255,
278,
21701,
2330,
7826,
322,
17141,
297,
30024,
13,
13,
3624,
1049,
261,
29871,
29906,
29901,
13,
13,
30015,
3868,
4846,
596,
8099,
6909,
448,
3614,
4808,
310,
596,
5001,
30024,
13,
13,
21648,
27903,
29901,
13,
13,
30015,
29934,
398,
272,
338,
540,
10753,
596,
2875,
30024,
13,
13,
3624,
1049,
261,
29871,
29941,
322,
8198,
27903,
29901,
13,
13,
30015,
27552,
385,
4486,
8805,
23522,
385,
4688,
14671,
303,
13,
13,
6295,
670,
10122,
297,
1749,
11359,
2834,
30024,
13,
13,
3624,
1049,
261,
29871,
29946,
322,
8198,
27903,
29901,
13,
13,
30015,
3868,
338,
321,
1218,
3448,
13,
13,
3868,
338,
16088,
30024,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
29907,
1772,
1171,
6640,
446,
8530,
13,
13,
29949,
15556,
1602,
2247,
393,
540,
508,
694,
5520,
8709,
297,
825,
756,
4953,
670,
8099,
30010,
29879,
3699,
322,
16229,
964,
278,
2030,
8805,
19958,
1623,
491,
450,
7027,
27903,
349,
898,
29889,
838,
549,
411,
670,
592,
1875,
6852,
886,
29892,
540,
23522,
411,
1075,
599,
393,
540,
508,
24754,
482,
310,
670,
4783,
515,
278,
3876,
3038,
279,
29889,
940,
884,
1559,
2722,
411,
1075,
278,
1346,
10967,
310,
5593,
29879,
8643,
13,
13,
2110,
2288,
13,
13,
29954,
14224,
323,
986,
2774,
2072,
408,
438,
15556,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
29902,
26603,
902,
727,
13,
13,
29902,
3282,
30010,
29873,
2562,
13,
13,
29902,
9007,
30010,
29873,
727,
13,
13,
2855,
670,
1024,
338,
16088,
30024,
13,
13,
30015,
3868,
750,
694,
7348,
13,
13,
29902,
3614,
670,
7314,
13,
13,
3492,
992,
7612,
596,
7348,
13,
13,
2855,
670,
1024,
338,
16088,
30024,
13,
13,
10967,
310,
5593,
29879,
13,
13,
29898,
29933,
20821,
4403,
29914,
2855,
15464,
29897,
13,
13,
20570,
13,
13,
3379,
15461,
284,
13,
13,
18650,
16639,
13,
13,
29954,
14224,
323,
986,
2774,
2072,
408,
450,
405,
2749,
1061,
322,
438,
15556,
13,
13,
29940,
2749,
1061,
29901,
13,
13,
2951,
278,
298,
309,
908,
29879,
310,
4955,
408,
278,
2613,
509,
952,
680,
3620,
2400,
13,
13,
29956,
513,
29885,
6090,
28325,
11255,
1549,
1999,
5402,
322,
4842,
7771,
1286,
13407,
28132,
322,
2030,
13,
13,
1184,
29894,
2618,
18481,
310,
1757,
411,
14218,
18423,
13,
13,
8809,
488,
19373,
394,
1516,
322,
12475,
414,
10423,
1432,
5192,
322,
2343,
13,
13,
29949,
15556,
29901,
13,
13,
1576,
4940,
451,
7123,
13,
13,
29940,
2749,
1061,
29901,
13,
13,
1576,
1938,
17297,
892,
3533,
414,
322,
380,
265,
331,
7040,
515,
1667,
1049,
528,
2361,
297,
29871,
29896,
29953,
29953,
29946,
13,
13,
6747,
29879,
322,
330,
15451,
540,
1233,
515,
11359,
25013,
29892,
269,
2234,
409,
1233,
515,
13968,
393,
6296,
963,
23723,
487,
13,
13,
19111,
25047,
6503,
29892,
1583,
29899,
29879,
504,
17225,
8805,
29879,
310,
1735,
13,
13,
21472,
6421,
515,
1283,
278,
7205,
1033,
451,
29821,
579,
1472,
3464,
13,
13,
29949,
15556,
29901,
13,
13,
29931,
3145,
429,
15033,
13,
13,
29902,
7845,
322,
1303,
515,
1346,
1576,
6726,
310,
5593,
29879,
30024,
408,
946,
292,
5335,
2596,
907,
557,
29892,
9500,
322,
2730,
273,
13,
13,
11626,
265,
4027,
322,
15729,
304,
4023,
2264,
599,
278,
4799,
29879,
393,
505,
696,
2795,
13,
13,
3421,
4783,
30010,
29879,
413,
3246,
594,
1398,
278,
367,
2232,
701,
1283,
278,
11904,
13,
13,
3664,
28189,
287,
763,
2071,
1144,
1283,
15774,
448,
451,
20898,
15128,
13,
13,
1252,
546,
7862,
13,
13,
29954,
14224,
323,
986,
2774,
2072,
408,
438,
15556,
13,
13,
29949,
15556,
29901,
13,
13,
4591,
278,
297,
29895,
322,
3275,
3965,
886,
590,
4595,
22212,
540,
7726,
29879,
304,
592,
313,
29896,
29897,
13,
13,
3421,
4783,
30010,
29879,
25517,
29892,
337,
1287,
287,
29892,
278,
7208,
1199,
385,
7736,
537,
313,
29906,
29897,
13,
13,
29898,
29896,
29897,
30015,
29956,
1943,
297,
304,
596,
11324,
391,
322,
4459,
278,
16755,
8206,
310,
11564,
16256,
1237,
29936,
13,
13,
3047,
596,
413,
568,
1603,
297,
278,
4799,
1014,
14634,
7535,
29892,
4808,
373,
322,
4459,
7535,
12061,
714,
785,
13,
13,
1748,
1600,
8872,
2673,
29892,
27777,
16088,
281,
3424,
29899,
4561,
286,
3860,
10083,
301,
913,
596,
10752,
30024,
13,
13,
29898,
29906,
29897,
512,
1765,
287,
28149,
900,
6289,
409,
1233,
515,
278,
269,
2234,
310,
2845,
8805,
29885,
6090,
470,
25462,
29973,
13,
13,
3421,
3573,
4158,
278,
12464,
29901,
6795,
5521,
749,
297,
263,
610,
496,
329,
391,
30010,
29879,
4023,
2264,
785,
13,
13,
1168,
509,
579,
292,
7632,
29892,
620,
1590,
1847,
270,
555,
424,
260,
352,
4512,
470,
263,
11492,
29973,
13,
13,
3744,
310,
263,
4982,
29892,
306,
30010,
645,
505,
304,
1162,
13317,
18046,
793,
304,
5735,
13,
13,
6880,
304,
278,
282,
898,
29892,
306,
817,
304,
9311,
322,
1018,
451,
304,
3984,
29887,
573,
13,
13,
29943,
417,
1218,
13,
13,
3379,
15461,
284,
13,
13,
29899,
4074,
6737,
29899,
13,
13,
1576,
28738,
261,
13,
13,
29898,
29933,
20821,
4403,
29914,
2855,
15464,
29897,
13,
13,
29949,
15556,
364,
4637,
4688,
322,
364,
2247,
385,
2030,
2278,
6614,
4768,
446,
1549,
278,
17251,
964,
4726,
29889,
940,
8206,
29879,
263,
7774,
5742,
1075,
393,
8640,
18046,
793,
607,
540,
756,
4586,
515,
278,
16766,
23080,
310,
11359,
22306,
322,
607,
540,
13900,
304,
1162,
13317,
472,
21701,
2330,
30010,
29879,
28794,
363,
6909,
304,
15649,
278,
3520,
1907,
304,
5735,
297,
278,
8805,
19958,
29892,
408,
1532,
408,
278,
17279,
3734,
304,
2048,
670,
4783,
30010,
29879,
413,
568,
2874,
515,
278,
1346,
10967,
310,
5593,
29879,
8643,
13,
13,
2744,
29876,
1107,
280,
13,
13,
26626,
379,
21081,
408,
438,
15556,
13,
13,
29949,
15556,
29901,
13,
13,
4806,
3534,
287,
19995,
1754,
1728,
263,
8589,
13,
13,
2951,
11359,
8805,
29879,
3773,
9424,
445,
2030,
3533,
13,
13,
6880,
11359,
6013,
719,
1476,
366,
3237,
29889,
10428,
13,
13,
10454,
306,
8939,
284,
4768,
446,
322,
7774,
701,
278,
17306,
13,
13,
29902,
723,
4192,
2027,
4192,
2960,
1549,
278,
11359,
4646,
29879,
13,
13,
10454,
306,
269,
2027,
534,
1161,
1549,
278,
1671,
292,
17251,
13,
13,
29902,
953,
415,
1000,
18046,
793,
297,
14523,
363,
16286,
13,
13,
10454,
4069,
18046,
793,
526,
429,
15033,
363,
1735,
13,
13,
2744,
29876,
1107,
280,
29892,
1016,
30010,
29873,
5967,
592,
2768,
411,
445,
26506,
13,
13,
2855,
306,
1073,
393,
6909,
508,
30010,
29873,
15649,
278,
697,
2655,
701,
304,
366,
13,
13,
3492,
9273,
30010,
29873,
505,
750,
304,
6755,
470,
14074,
13,
13,
30015,
2713,
598,
11644,
887,
4683,
29892,
26849,
1724,
887,
1938,
29892,
13,
13,
2713,
598,
3575,
20799,
9363,
278,
285,
4926,
1497,
13,
13,
855,
650,
322,
5758,
279,
29892,
5214,
14603,
393,
306,
1258,
13,
13,
1349,
820,
306,
723,
3265,
11340,
2012,
13,
13,
2744,
29876,
1107,
280,
29892,
306,
30010,
29885,
5962,
287,
2768,
515,
590,
5566,
1509,
13,
13,
10454,
306,
1073,
393,
6909,
508,
30010,
29873,
15649,
278,
697,
2655,
701,
304,
366,
13,
13,
3782,
29892,
306,
723,
763,
304,
11340,
411,
366,
13,
13,
2887,
17251,
28987,
3412,
278,
6473,
310,
278,
16766,
2475,
29892,
438,
15556,
269,
1169,
298,
566,
29881,
839,
22611,
278,
534,
1161,
322,
285,
492,
567,
278,
298,
2092,
304,
670,
28015,
300,
701,
975,
670,
2343,
29936,
17251,
20662,
567,
1549,
297,
10952,
4441,
567,
322,
2373,
357,
20074,
975,
1075,
29889,
940,
900,
6289,
278,
285,
4926,
322,
15223,
372,
964,
670,
24589,
29889,
14832,
278,
1741,
363,
278,
11359,
30010,
29879,
1616,
275,
550,
472,
450,
7817,
756,
2307,
4586,
2058,
29892,
540,
1602,
2247,
304,
2244,
8081,
1107,
280,
565,
540,
1795,
1603,
367,
6068,
304,
6493,
322,
5221,
403,
29892,
541,
540,
10753,
304,
5193,
310,
8805,
322,
4799,
785,
451,
12565,
322,
5758,
279,
16088,
322,
304,
11340,
413,
3246,
3265,
1135,
304,
2048,
14603,
29889,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
2744,
29876,
1107,
280,
29892,
1016,
30010,
29873,
5967,
592,
2768,
411,
445,
26506,
13,
13,
2855,
306,
1073,
393,
6909,
508,
30010,
29873,
15649,
278,
697,
2655,
701,
304,
366,
13,
13,
3492,
9273,
30010,
29873,
505,
750,
304,
6755,
16088,
30024,
13,
13,
30015,
2744,
29876,
1107,
280,
29892,
306,
30010,
29885,
5962,
287,
2768,
515,
590,
5566,
1509,
13,
13,
10454,
306,
1073,
393,
6909,
508,
30010,
29873,
15649,
278,
697,
2655,
701,
304,
366,
13,
13,
8241,
29892,
306,
723,
763,
304,
11340,
363,
366,
30024,
13,
13,
29949,
15556,
14061,
8081,
1107,
280,
472,
902,
4783,
30010,
29879,
9999,
322,
338,
24293,
3276,
304,
1074,
16088,
540,
30010,
29881,
10972,
393,
1183,
750,
5714,
385,
5075,
304,
23900,
1550,
540,
471,
297,
8475,
541,
304,
2869,
1074,
670,
2030,
2278,
6614,
5121,
411,
902,
697,
5075,
16088,
29889,
13,
13,
3868,
6567,
902,
670,
337,
2310,
683,
269,
3466,
322,
278,
285,
4926,
29892,
322,
19514,
565,
540,
1795,
505,
263,
8825,
29889,
2296,
9744,
1075,
363,
670,
1162,
29891,
19914,
29892,
322,
8571,
267,
304,
564,
3881,
363,
263,
6493,
491,
1075,
304,
450,
7817,
29889,
1551,
278,
10658,
7250,
29892,
438,
15556,
6314,
29879,
777,
310,
670,
4783,
30010,
29879,
413,
3246,
515,
278,
8805,
19958,
29892,
7600,
963,
964,
278,
7774,
29892,
322,
364,
2247,
670,
4768,
446,
1250,
701,
278,
17306,
16088,
29889,
13,
13,
1576,
7817,
13,
13,
29943,
10102,
19387,
29874,
823,
29894,
4600,
408,
8081,
1107,
280,
13,
13,
29954,
14224,
323,
986,
2774,
2072,
408,
438,
15556,
13,
13,
29949,
15556,
8939,
1338,
701,
278,
1472,
270,
2728,
7899,
322,
3144,
2247,
964,
278,
24185,
1760,
3287,
29889,
940,
756,
263,
29191,
1776,
310,
27777,
2215,
828,
392,
1623,
304,
450,
7027,
27903,
349,
898,
988,
540,
9098,
1180,
1078,
278,
8805,
19958,
322,
670,
4783,
30010,
29879,
3699,
714,
491,
278,
2867,
13405,
29889,
8081,
1107,
280,
17042,
2039,
714,
515,
450,
7817,
322,
1395,
1691,
1075,
29889,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
29902,
1603,
5360,
366,
13,
13,
2855,
306,
5360,
1749,
11359,
2834,
13,
13,
6246,
471,
372,
577,
2743,
304,
2740,
363,
2834,
8724,
278,
7205,
6677,
13,
13,
30015,
29902,
1603,
4459,
366,
13,
13,
797,
278,
3370,
310,
590,
5075,
13,
13,
2855,
306,
30010,
29885,
1603,
447,
28000,
491,
278,
2462,
366,
2175,
297,
521,
2708,
30024,
13,
13,
29902,
3282,
30010,
29873,
864,
304,
1235,
366,
748,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
797,
8475,
931,
15028,
1603,
30024,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
6246,
393,
30010,
29879,
385,
4486,
3958,
30024,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
797,
4235,
278,
20084,
1735,
30024,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
29940,
1535,
12844,
8961,
322,
1183,
281,
6926,
30024,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
10858,
16423,
1603,
25088,
4549,
30024,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
4013,
11359,
591,
19467,
278,
14280,
29879,
16088,
30024,
13,
13,
2855,
297,
278,
7250,
306,
281,
1296,
322,
306,
14451,
13,
13,
3492,
26603,
592,
727,
13,
13,
3492,
26603,
592,
727,
13,
13,
29949,
15556,
3430,
472,
278,
2318,
24940,
29881,
363,
670,
9004,
362,
322,
338,
4586,
633,
547,
304,
1074,
393,
727,
338,
263,
4123,
734,
264,
482,
7826,
297,
263,
18875,
305,
1466,
4249,
278,
24060,
10534,
363,
1075,
29889,
8081,
1107,
280,
4893,
438,
15556,
30010,
29879,
5075,
322,
8206,
29879,
1075,
17786,
16088,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
12148,
4658,
592,
13,
13,
3492,
892,
270,
798,
1076,
297,
7535,
13,
13,
1576,
8023,
306,
750,
2998,
471,
18550,
6483,
19540,
596,
19309,
30024,
13,
13,
30015,
29177,
1689,
592,
13,
13,
1349,
820,
393,
23900,
3614,
590,
5075,
13,
13,
1576,
7826,
393,
306,
1073,
2609,
367,
4934,
322,
8126,
2768,
30024,
13,
13,
3421,
4808,
373,
366,
338,
901,
2600,
618,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
3624,
393,
902,
297,
278,
11774,
6677,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
29902,
2714,
393,
366,
6363,
6677,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
29902,
30010,
29885,
577,
885,
1965,
322,
9613,
30024,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
1168,
6831,
2063,
363,
366,
30024,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
29902,
2244,
366,
565,
1183,
9906,
30024,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
11284,
16088,
825,
947,
372,
4383,
6677,
13,
13,
2855,
297,
278,
7250,
1183,
30010,
645,
281,
1296,
541,
451,
14451,
13,
13,
3492,
26603,
902,
1244,
13,
13,
3492,
26603,
902,
1244,
13,
13,
29949,
15556,
24626,
670,
432,
1450,
322,
27474,
8081,
1107,
280,
30010,
29879,
1361,
29889,
940,
12169,
515,
902,
322,
6505,
267,
278,
4123,
7826,
785,
13889,
801,
338,
902,
1024,
313,
354,
9906,
29897,
16088,
1183,
1560,
5475,
322,
10569,
29879,
1999,
389,
873,
515,
902,
11774,
297,
14983,
411,
263,
6114,
19214,
297,
263,
27777,
6592,
1550,
22573,
567,
310,
902,
11315,
11340,
297,
278,
8805,
322,
4380,
297,
278,
26995,
310,
902,
13394,
29889,
2296,
338,
3755,
278,
9560,
4123,
11379,
29889,
13889,
801,
12169,
902,
6091,
11584,
322,
4380,
267,
438,
15556,
30010,
29879,
10977,
29892,
13587,
1075,
297,
902,
12642,
29872,
363,
263,
3256,
1434,
14712,
3448,
29889,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
2776,
3236,
306,
30010,
345,
2355,
694,
5566,
1509,
16088,
30024,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
3492,
6091,
902,
5637,
30010,
29879,
263,
13748,
261,
3178,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
13468,
3763,
13700,
902,
1244,
6677,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
2855,
1951,
591,
30010,
345,
451,
3595,
902,
16088,
30024,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
3421,
3942,
9744,
278,
11118,
3178,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
1576,
8666,
731,
363,
5929,
294,
882,
16088,
30024,
13,
13,
2855,
1432,
7250,
306,
30010,
645,
1371,
902,
304,
14451,
13,
13,
3492,
26603,
592,
1244,
13,
13,
3492,
26603,
592,
1244,
13,
13,
3492,
26603,
592,
727,
13,
13,
3492,
26603,
592,
727,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
26603,
902,
727,
13,
13,
29902,
26603,
902,
1244,
16088,
13,
13,
29943,
22279,
24728,
1944,
13,
13,
13448,
2911,
4609,
1100,
408,
13889,
801,
13,
13,
29950,
812,
801,
29901,
13,
13,
10401,
306,
471,
263,
7826,
590,
5637,
5318,
491,
278,
7205,
13,
13,
13468,
7160,
599,
902,
16172,
746,
306,
723,
5644,
328,
13,
13,
10401,
306,
471,
263,
7826,
306,
20654,
590,
4783,
2734,
3889,
13,
13,
29924,
290,
1497,
29901,
1346,
11371,
599,
596,
16172,
30024,
746,
306,
723,
16088,
13,
13,
10454,
306,
1073,
727,
471,
694,
3256,
30010,
29879,
982,
304,
1074,
13,
13,
5618,
306,
1033,
505,
2309,
304,
1735,
393,
285,
22279,
2462,
13,
13,
2855,
1286,
306,
508,
1074,
825,
30010,
29879,
1063,
2309,
491,
590,
3942,
13,
13,
2855,
306,
1073,
393,
1286,
306,
626,
451,
16088,
29889,
13,
13,
29950,
812,
801,
13,
13,
29907,
1398,
295,
2482,
476,
932,
370,
3270,
408,
438,
15556,
13,
13,
13448,
4233,
4609,
1100,
408,
13889,
801,
13,
13,
29949,
15556,
17042,
2039,
701,
304,
13889,
801,
322,
4547,
778,
3654,
29889,
2296,
3430,
701,
472,
1075,
322,
10603,
1075,
920,
1568,
1183,
756,
1063,
3063,
6375,
304,
445,
2462,
29889,
940,
4441,
567,
322,
269,
1169,
1250,
373,
670,
540,
1379,
29892,
19253,
287,
29892,
322,
1156,
263,
3256,
4083,
29892,
1346,
6816,
29892,
2086,
3178,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
29902,
674,
1371,
366,
11340,
13,
13,
10605,
16088,
1286,
4808,
278,
1347,
13,
13,
3421,
4783,
21021,
322,
4934,
592,
297,
670,
6567,
30024,
13,
13,
30015,
29902,
674,
1371,
596,
10188,
448,
13,
13,
6833,
306,
12166,
1259,
366,
29973,
13,
13,
17506,
366,
7960,
29973,
2567,
16088,
554,
16088,
1235,
748,
3178,
13,
13,
29902,
4192,
2027,
287,
1283,
3512,
1549,
278,
1804,
13,
13,
14959,
825,
306,
30010,
345,
2309,
13,
13,
29902,
3282,
30010,
29873,
1073,
448,
920,
1033,
306,
1073,
29973,
13,
13,
9048,
29892,
13889,
801,
13,
13,
29950,
812,
801,
29901,
13,
13,
30015,
29902,
4459,
366,
13777,
590,
10188,
13,
13,
3492,
30010,
276,
451,
12166,
1259,
592,
30024,
13,
13,
8241,
29892,
6568,
596,
2343,
322,
1791,
372,
373,
590,
11774,
13,
13,
30015,
8439,
448,
2020,
437,
366,
11340,
29973,
13,
13,
29949,
15556,
29892,
508,
306,
1018,
29973,
13,
13,
29902,
30010,
345,
3595,
366,
2317,
701,
304,
596,
11324,
391,
297,
278,
282,
898,
30024,
13,
13,
29902,
30010,
345,
1063,
297,
521,
7121,
901,
1135,
366,
1073,
13,
13,
29902,
30010,
345,
1063,
18760,
13,
13,
3492,
3282,
30010,
29873,
1073,
785,
920,
1033,
366,
1073,
29973,
13,
13,
9048,
29892,
438,
15556,
13,
13,
13468,
750,
3595,
1075,
297,
278,
282,
898,
29973,
1128,
1258,
1183,
1073,
372,
471,
1075,
29973,
14302,
1183,
4140,
287,
29973,
14302,
8081,
1107,
280,
5429,
902,
29973,
13,
13,
29949,
15556,
508,
4459,
278,
29163,
2085,
2976,
1549,
13889,
801,
30010,
29879,
10188,
408,
278,
1347,
338,
5318,
714,
322,
7415,
9416,
411,
15489,
8096,
293,
7688,
322,
8338,
29889,
13,
13,
29950,
812,
801,
30010,
29879,
10188,
289,
711,
322,
269,
1582,
297,
670,
6567,
16088,
322,
769,
1183,
16410,
304,
10569,
1556,
9560,
368,
785,
20389,
3598,
448,
263,
10569,
425,
1133,
411,
278,
16172,
2222,
19340,
29887,
793,
310,
263,
2217,
7826,
16088,
263,
10569,
393,
750,
1063,
18550,
3448,
322,
338,
620,
332,
1621,
287,
29991,
438,
15556,
3430,
304,
8081,
1107,
280,
322,
1560,
5475,
29889,
2296,
4893,
902,
1361,
515,
13587,
825,
9242,
310,
902,
916,
5075,
322,
1153,
4637,
372,
304,
902,
13394,
29892,
1560,
6504,
1250,
29889,
13,
13,
1576,
6575,
3144,
9466,
1549,
278,
260,
15118,
310,
278,
413,
568,
408,
372,
10205,
793,
304,
10784,
29890,
297,
278,
281,
5475,
310,
11359,
4799,
29879,
29892,
3041,
4746,
278,
3515,
411,
9766,
16711,
681,
11955,
322,
3578,
29889,
450,
413,
568,
289,
1242,
322,
270,
2925,
322,
769,
6057,
3889,
28420,
901,
1347,
515,
13889,
801,
30010,
29879,
6567,
304,
278,
20364,
27091,
393,
14892,
286,
3860,
1549,
278,
17724,
14744,
29892,
25053,
1472,
528,
23626,
373,
278,
5962,
393,
7901,
1022,
701,
278,
4235,
322,
2381,
326,
975,
963,
363,
263,
3256,
16088,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
20654,
599,
18906,
4192,
24377,
1283,
13,
13,
29949,
332,
26490,
373,
6031,
13,
13,
13468,
8496,
30010,
29873,
1073,
785,
306,
30010,
29881,
763,
304,
1510,
13,
13,
9048,
29892,
13889,
801,
13,
13,
29949,
15556,
19514,
13889,
801,
565,
1183,
723,
763,
304,
11340,
515,
297,
278,
282,
898,
408,
1183,
750,
3595,
1075,
785,
540,
18568,
393,
540,
756,
10972,
920,
304,
11340,
727,
515,
263,
3143,
393,
756,
1063,
297,
670,
3942,
1951,
896,
937,
17141,
278,
11359,
29889,
940,
1033,
5503,
902,
964,
450,
7027,
27903,
349,
898,
297,
902,
11774,
29973,
2296,
12169,
408,
1900,
1183,
508,
322,
3430,
304,
8081,
1107,
280,
411,
29163,
29889,
13,
13,
2744,
29876,
1107,
280,
19514,
450,
7817,
30010,
29879,
8881,
363,
10751,
304,
2125,
13889,
801,
304,
6493,
438,
15556,
1090,
278,
1410,
895,
310,
6493,
292,
278,
8805,
19958,
29892,
322,
278,
8881,
10603,
902,
393,
1183,
18553,
694,
2769,
2020,
13889,
801,
9273,
30010,
29873,
367,
2221,
304,
1074,
1346,
786,
3802,
825,
1183,
30010,
645,
10201,
1914,
785,
565,
727,
30010,
29879,
263,
4177,
3178,
13,
13,
2831,
901,
1135,
278,
937,
931,
29892,
8081,
1107,
280,
16410,
304,
4997,
565,
13889,
801,
9906,
393,
1183,
338,
297,
902,
11774,
472,
278,
6567,
310,
438,
15556,
29889,
1126,
1183,
281,
18452,
565,
1183,
756,
1063,
5429,
29889,
13,
13,
29909,
12935,
29898,
29933,
20821,
4403,
29914,
2855,
15464,
29897,
13,
13,
1576,
7027,
27903,
349,
898,
13,
13,
29943,
10102,
19387,
29874,
823,
29894,
4600,
408,
450,
405,
2749,
1061,
13,
13,
29949,
15556,
338,
10534,
363,
8081,
1107,
280,
322,
13889,
801,
472,
278,
3699,
29892,
16246,
8717,
2426,
670,
4768,
446,
408,
450,
7817,
30010,
29879,
1109,
8206,
29879,
701,
278,
7899,
16088,
540,
4893,
13889,
801,
515,
278,
1098,
5818,
472,
278,
13777,
322,
5503,
267,
902,
964,
278,
4069,
7774,
29889,
8081,
1107,
280,
269,
1169,
373,
278,
12949,
5742,
1075,
322,
8640,
373,
411,
902,
697,
5075,
408,
540,
8939,
1338,
963,
1623,
278,
17306,
304,
278,
282,
898,
29889,
13889,
801,
19514,
1048,
825,
5692,
304,
367,
263,
2919,
4513,
12033,
297,
278,
1746,
17620,
278,
8805,
19958,
322,
438,
15556,
18568,
393,
372,
30010,
29879,
2869,
263,
413,
568,
2874,
310,
670,
4783,
30010,
29879,
393,
540,
1476,
297,
278,
1346,
10967,
310,
5593,
29879,
8643,
13,
13,
3868,
5503,
267,
13889,
801,
964,
278,
8805,
19958,
322,
3697,
902,
278,
413,
3246,
298,
9776,
515,
278,
1153,
906,
29879,
322,
278,
3143,
411,
278,
24469,
322,
6131,
27438,
29890,
27225,
297,
278,
15276,
1144,
28655,
303,
278,
22764,
15729,
310,
670,
4595,
22212,
322,
670,
4783,
30010,
29879,
4216,
886,
29889,
940,
6576,
714,
1550,
8081,
1107,
280,
3620,
13889,
801,
322,
769,
540,
5503,
267,
902,
29892,
4893,
963,
1623,
304,
278,
282,
898,
29889,
13,
13,
29940,
2749,
1061,
29901,
13,
13,
29925,
21616,
902,
11774,
964,
278,
19922,
701,
304,
902,
11324,
391,
13,
13,
3868,
18553,
902,
21152,
7123,
4796,
528,
19400,
292,
2400,
727,
13,
13,
13468,
281,
3076,
714,
322,
8640,
701,
278,
413,
568,
16088,
769,
8640,
278,
1347,
411,
902,
448,
1009,
23915,
425,
1133,
13,
13,
29949,
15556,
11463,
567,
670,
10188,
2820,
963,
448,
902,
4567,
5075,
727,
13,
13,
2855,
896,
11340,
13,
13,
29943,
368,
363,
16082,
13,
13,
29907,
1038,
1237,
6483,
322,
4549,
393,
8206,
963,
373,
13,
13,
15597,
11340,
13,
13,
29943,
368,
363,
16082,
13,
13,
29907,
1038,
1237,
297,
278,
4799,
393,
8206,
963,
727,
13,
13,
15597,
11340,
13,
13,
797,
278,
23474,
310,
14744,
13,
13,
3868,
4083,
540,
30010,
29879,
10972,
310,
263,
982,
304,
6159,
278,
14744,
515,
19540,
278,
7101,
13,
13,
12984,
1183,
9311,
1075,
304,
1371,
902,
304,
11340,
515,
714,
310,
902,
11774,
727,
29973,
13,
13,
13468,
6505,
267,
408,
13889,
801,
338,
10425,
448,
1183,
3430,
885,
1965,
515,
385,
13689,
1328,
953,
13842,
13,
13,
13468,
8640,
902,
16172,
448,
5076,
9377,
11324,
1169,
297,
438,
15556,
30010,
29879,
6567,
727,
13,
13,
2855,
1183,
1933,
267,
13,
13,
29928,
3145,
363,
16082,
13,
13,
29949,
15556,
8640,
902,
727,
29892,
670,
10188,
902,
11774,
13,
13,
13468,
1933,
267,
13,
13,
29928,
3145,
363,
16082,
13,
13,
29907,
1038,
1237,
1163,
292,
29892,
1183,
8640,
278,
1347,
13,
13,
13468,
285,
3687,
13,
13,
797,
278,
25312,
14744,
13,
13,
29933,
296,
472,
278,
11324,
391,
540,
2181,
328,
793,
902,
21021,
297,
670,
6567,
13,
13,
29950,
275,
9416,
16172,
364,
8377,
793,
278,
4094,
29892,
902,
11315,
20037,
763,
17455,
727,
13,
13,
13468,
454,
550,
297,
322,
4083,
1346,
5747,
30010,
29879,
3307,
9363,
769,
18553,
278,
1347,
1603,
4934,
1067,
10519,
287,
304,
902,
521,
342,
13,
13,
3047,
902,
697,
1361,
20382,
902,
1090,
29892,
896,
8206,
902,
304,
4799,
727,
13,
13,
2855,
1183,
285,
3687,
13,
13,
29943,
3687,
304,
16082,
13,
13,
29907,
1038,
1237,
4549,
322,
6483,
29892,
9013,
3277,
8709,
13,
13,
13468,
364,
4637,
13,
13,
29934,
4637,
304,
16082,
13,
13,
13468,
10569,
29879,
322,
1791,
29879,
902,
2343,
373,
438,
15556,
30010,
29879,
521,
342,
13,
13,
3596,
29901,
13,
13,
4806,
11340,
13,
13,
29950,
812,
801,
29901,
13,
13,
3492,
30010,
276,
590,
14744,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
3492,
30010,
276,
590,
14744,
13,
13,
29949,
15556,
29901,
13,
13,
3492,
30010,
276,
590,
14744,
13,
13,
3338,
7261,
1944,
13,
13,
29954,
14224,
323,
986,
2774,
2072,
408,
438,
15556,
13,
13,
29950,
812,
801,
19514,
438,
15556,
565,
1183,
508,
6493,
1449,
577,
393,
540,
508,
1510,
902,
920,
278,
8805,
19958,
1736,
29889,
940,
4083,
393,
540,
723,
817,
304,
5110,
920,
304,
21994,
372,
515,
5183,
278,
1346,
10967,
310,
5593,
29879,
30024,
448,
565,
372,
1584,
1603,
1033,
2507,
297,
278,
8805,
29889,
1987,
1183,
19514,
565,
1183,
1033,
367,
2198,
746,
540,
1898,
304,
11340,
670,
4783,
30010,
29879,
413,
568,
29889,
940,
4083,
1346,
974,
3236,
30024,
322,
769,
8939,
1338,
902,
322,
8081,
1107,
280,
1250,
701,
278,
17306,
304,
278,
3699,
988,
540,
19514,
670,
9883,
29899,
262,
29899,
10653,
29892,
23647,
295,
29892,
304,
1246,
363,
278,
1109,
1550,
540,
11324,
1169,
411,
963,
29889,
13,
13,
29934,
496,
295,
5076,
445,
7736,
2318,
411,
27742,
322,
5771,
297,
304,
2058,
278,
1246,
29889,
1126,
769,
1183,
270,
616,
29879,
697,
901,
1353,
29889,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
1303,
515,
278,
5835,
29879,
920,
304,
21994,
278,
8805,
19958,
297,
278,
1346,
10967,
310,
5593,
29879,
30024,
13,
13,
27407,
14892,
322,
367,
9543,
310,
3926,
6480,
22312,
280,
3700,
322,
281,
5475,
310,
278,
8805,
13,
13,
11760,
278,
325,
10617,
342,
1560,
514,
373,
22573,
567,
310,
4796,
8388,
3885,
278,
27278,
330,
15451,
13,
13,
29903,
4346,
446,
29991,
498,
860,
322,
7375,
21676,
363,
871,
1906,
1058,
526,
5714,
322,
505,
269,
27464,
30098,
13,
13,
7974,
292,
363,
278,
8760,
13,
13,
29903,
1038,
3885,
592,
297,
278,
4799,
13,
13,
29902,
1074,
4783,
30010,
29879,
413,
568,
263,
8287,
310,
3974,
766,
14146,
1218,
701,
964,
278,
4799,
13,
13,
29943,
370,
2200,
11051,
29879,
297,
15359,
763,
278,
269,
484,
3241,
17186,
310,
1261,
787,
2665,
304,
8343,
2501,
13,
13,
9048,
694,
29991,
450,
16608,
297,
9703,
310,
5330,
11407,
2629,
1432,
285,
8663,
16088,
13,
13,
29902,
8293,
1286,
263,
13006,
2734,
1283,
373,
278,
19922,
310,
278,
7027,
27903,
349,
898,
13,
13,
7974,
292,
363,
278,
5296,
13,
13,
4205,
932,
15451,
964,
16835,
4799,
13,
13,
29949,
15556,
364,
1878,
267,
701,
278,
17306,
304,
278,
3699,
363,
278,
9008,
29889,
28050,
696,
1503,
964,
278,
7899,
1582,
785,
540,
756,
3595,
278,
25158,
20493,
515,
263,
15678,
24841,
3578,
29892,
408,
565,
263,
22754,
750,
1063,
6496,
701,
491,
278,
7027,
27903,
349,
898,
29889,
940,
447,
7273,
3654,
714,
310,
278,
534,
2707,
322,
8886,
6057,
964,
438,
15556,
408,
540,
13451,
1623,
278,
17306,
304,
278,
3533,
29892,
1716,
21383,
12061,
515,
278,
6501,
297,
278,
6025,
3277,
330,
677,
310,
278,
3974,
29889,
13,
13,
29949,
15556,
29901,
13,
13,
29907,
336,
335,
29991,
28050,
29991,
13,
13,
29907,
336,
335,
29901,
13,
13,
29949,
15556,
448,
825,
278,
285,
2707,
29973,
29991,
13,
13,
29949,
15556,
29901,
13,
13,
9526,
650,
12138,
287,
278,
413,
568,
785,
360,
328,
30010,
29879,
413,
568,
29892,
28050,
29991,
13,
13,
29907,
336,
335,
29901,
13,
13,
9526,
650,
785,
4480,
29991,
1724,
29973,
29991,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
1016,
30010,
29873,
1073,
29991,
13,
13,
29907,
336,
335,
29901,
13,
13,
5618,
278,
23927,
526,
366,
9963,
1048,
29973,
13,
13,
29949,
15556,
29901,
13,
13,
1576,
3533,
338,
25535,
29991,
13,
13,
29907,
336,
335,
29901,
13,
13,
20434,
388,
448,
20759,
29889,
2688,
30010,
276,
6421,
29889,
306,
2307,
2000,
29889,
2266,
896,
2041,
29889,
13,
13,
29934,
496,
295,
11584,
5692,
714,
310,
278,
4646,
29889,
13,
13,
29934,
496,
295,
29901,
13,
13,
9048,
590,
4177,
29889,
1724,
30010,
29879,
2675,
373,
29973,
13,
13,
29907,
336,
335,
29901,
13,
13,
3492,
3282,
30010,
29873,
1074,
445,
29973,
13,
13,
29934,
496,
295,
29901,
13,
13,
13393,
29899,
29973,
13,
13,
29907,
336,
335,
29901,
13,
13,
1576,
3533,
29892,
23647,
295,
785,
1749,
3533,
338,
373,
3974,
29991,
13,
13,
29934,
496,
295,
29901,
13,
13,
3782,
29889,
306,
750,
694,
2969,
13,
13,
29907,
336,
335,
29901,
13,
13,
3492,
750,
694,
2969,
29973,
13,
13,
29934,
496,
295,
29901,
13,
13,
3782,
29889,
13,
13,
29907,
336,
335,
29901,
13,
13,
11760,
2020,
526,
366,
1244,
29973,
13,
13,
29934,
496,
295,
29901,
13,
13,
29902,
16088,
306,
925,
6091,
278,
8889,
575,
16088,
13,
13,
29949,
15556,
29901,
13,
13,
29907,
336,
335,
785,
1371,
592,
2507,
278,
8805,
19958,
29991,
315,
30010,
3712,
448,
591,
2355,
941,
2507,
278,
269,
2234,
3448,
515,
278,
3974,
29991,
13,
13,
1576,
21383,
8175,
1623,
278,
17306,
322,
20793,
964,
278,
1472,
27278,
22775,
12070,
292,
714,
472,
385,
10696,
515,
278,
270,
608,
310,
278,
3533,
322,
3380,
304,
5503,
2750,
304,
2507,
278,
364,
16656,
29892,
822,
29880,
630,
18875,
373,
278,
1095,
29889,
317,
677,
368,
278,
18875,
20190,
3448,
515,
278,
1090,
29887,
798,
386,
322,
9679,
29879,
3412,
967,
2224,
29892,
5731,
1218,
278,
8805,
19958,
270,
608,
322,
14892,
16608,
3448,
515,
278,
12995,
911,
29889,
13,
13,
1576,
7935,
6438,
10317,
6974,
267,
322,
2594,
2674,
29879,
1623,
278,
17306,
29889,
438,
15556,
322,
28050,
6505,
1009,
7875,
4216,
4094,
515,
278,
282,
898,
322,
664,
304,
4078,
278,
8805,
19958,
29889,
23647,
295,
756,
24273,
29889,
450,
1652,
420,
696,
1503,
701,
297,
263,
2381,
381,
1847,
5075,
393,
269,
1994,
763,
263,
12033,
6436,
297,
278,
4799,
322,
16661,
278,
8805,
19958,
29892,
10124,
7300,
4628,
2381,
493,
29879,
4822,
278,
12565,
22778,
322,
20616,
292,
5198,
22671,
310,
278,
27278,
3829,
322,
278,
270,
608,
29889,
13,
13,
29903,
566,
1145,
368,
2343,
4366,
29879,
7901,
1022,
701,
975,
278,
2246,
310,
278,
17306,
322,
4808,
278,
21383,
297,
1009,
330,
8663,
408,
385,
6012,
18788,
1623,
7113,
963,
29889,
739,
338,
16816,
1171,
6640,
446,
29892,
1058,
4947,
714,
310,
263,
1346,
6132,
1662,
15681,
13129,
30024,
534,
2707,
411,
8081,
1107,
280,
29889,
940,
11324,
1169,
363,
902,
304,
4513,
278,
16892,
292,
6012,
322,
7600,
263,
1361,
988,
902,
5075,
723,
505,
1063,
29892,
871,
2012,
310,
28610,
540,
2646,
5824,
902,
491,
278,
18187,
472,
902,
21464,
727,
322,
8206,
29879,
902,
3412,
304,
963,
29889,
13,
13,
29933,
332,
446,
29901,
13,
13,
5618,
278,
23927,
338,
2675,
373,
29973,
13,
13,
29907,
336,
335,
29901,
13,
13,
9526,
650,
1898,
304,
12138,
1623,
278,
3533,
29889,
20340,
448,
1058,
2000,
366,
29973,
13,
13,
29933,
332,
446,
29901,
13,
13,
11284,
16088,
825,
947,
372,
4383,
29973,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
29949,
15556,
785,
526,
366,
3431,
29973,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
30010,
29885,
2691,
29892,
22228,
29889,
306,
2355,
714,
297,
931,
29889,
13,
13,
29933,
332,
446,
29901,
13,
13,
9048,
29973,
512,
931,
363,
825,
29973,
940,
30010,
29879,
2691,
29889,
13,
13,
29949,
15556,
29901,
13,
13,
29979,
29872,
801,
29892,
306,
30010,
29885,
2691,
29889,
1205,
278,
413,
568,
338,
14416,
29889,
13,
13,
29933,
332,
446,
29901,
13,
13,
10454,
29892,
1058,
723,
864,
304,
437,
3099,
763,
393,
29973,
13,
13,
29949,
15556,
29901,
13,
13,
7974,
292,
363,
278,
5296,
13,
13,
29903,
1038,
3885,
592,
297,
278,
4799,
13,
13,
7974,
292,
363,
278,
8760,
13,
13,
4205,
932,
15451,
964,
16835,
4799,
13,
13,
1576,
3974,
338,
7146,
1925,
714,
16088,
322,
393,
4646,
438,
15556,
805,
1975,
472,
278,
3699,
19214,
297,
670,
2030,
6592,
8345,
29892,
297,
670,
2030,
6592,
29889,
940,
3430,
714,
278,
3474,
4940,
278,
5447,
304,
278,
8805,
19958,
29892,
278,
1274,
2429,
21779,
310,
25158,
1603,
12003,
373,
670,
26820,
29889,
13,
13,
29949,
15556,
29901,
13,
13,
29902,
10897,
322,
1476,
278,
3143,
2629,
278,
25158,
322,
1286,
306,
1067,
10519,
372,
23511,
304,
590,
521,
342,
13,
13,
2744,
29876,
1107,
280,
1183,
4934,
592,
411,
278,
9324,
310,
902,
301,
650,
5075,
2466,
1183,
30010,
29879,
1603,
7800,
3448,
13,
13,
29902,
508,
30010,
29873,
367,
901,
13016,
287,
1135,
746,
1183,
4934,
592,
304,
902,
24207,
13,
13,
29902,
30010,
645,
8709,
322,
281,
1296,
304,
1423,
363,
18658,
297,
278,
3578,
310,
2462,
13,
13,
7974,
292,
363,
278,
8760,
13,
13,
29903,
1038,
3885,
592,
297,
278,
4799,
13,
13,
29968,
3246,
1944,
13,
13,
3379,
15461,
284,
13,
13,
29949,
15556,
3773,
557,
575,
304,
263,
11813,
3699,
29889,
512,
278,
5418,
29892,
278,
330,
913,
29879,
526,
2307,
364,
4821,
278,
16256,
1237,
310,
4799,
2038,
278,
1190,
29888,
29889,
940,
3430,
1623,
278,
12713,
322,
18553,
393,
670,
8099,
30010,
29879,
6592,
8345,
3050,
338,
12522,
29889,
940,
20662,
567,
714,
964,
278,
12713,
322,
4694,
267,
278,
3050,
304,
278,
5716,
540,
7258,
411,
670,
4783,
29889,
13,
13,
3868,
16229,
25970,
2629,
825,
756,
4953,
263,
6473,
310,
670,
2030,
3271,
29889,
5974,
16229,
373,
785,
2712,
505,
3939,
29889,
9267,
310,
278,
17240,
1560,
6504,
1250,
515,
278,
14956,
301,
2827,
278,
528,
295,
1960,
526,
9815,
322,
394,
819,
304,
1075,
29889,
940,
14061,
263,
7623,
310,
670,
5637,
8886,
7934,
29892,
260,
2707,
287,
3448,
373,
263,
3474,
5331,
479,
5742,
263,
3151,
2408,
16088,
540,
5839,
29879,
372,
701,
322,
13031,
29879,
3448,
278,
2691,
19786,
393,
756,
17141,
2501,
278,
12917,
21653,
278,
6114,
5742,
670,
17842,
727,
29901,
263,
9045,
29891,
4123,
6114,
411,
12003,
13031,
292,
11315,
1560,
6504,
701,
515,
19540,
263,
2919,
3056,
297,
4235,
310,
15655,
17455,
29889,
940,
6023,
267,
278,
12917,
2903,
1218,
1075,
515,
278,
1967,
29892,
1634,
6048,
372,
472,
278,
3474,
322,
769,
5771,
304,
16096,
278,
8805,
19958,
29889,
13,
13,
29949,
15556,
451,
1575,
263,
16188,
6866,
593,
964,
278,
270,
608,
310,
278,
8805,
19958,
491,
278,
3974,
29889,
940,
1153,
4637,
263,
11979,
672,
29892,
10784,
5824,
701,
322,
1236,
3241,
2768,
338,
24293,
3276,
491,
825,
540,
14061,
29901,
263,
285,
4626,
681,
29892,
563,
18099,
4158,
310,
5518,
7934,
701,
1090,
278,
270,
608,
393,
14586,
7586,
297,
278,
8805,
364,
21616,
975,
372,
29892,
7985,
292,
322,
8078,
292,
297,
2319,
20037,
393,
9679,
1250,
322,
11483,
2501,
3528,
785,
14586,
352,
681,
448,
763,
5735,
260,
15118,
29889,
940,
22170,
670,
1361,
2768,
322,
6023,
267,
278,
1346,
10041,
30024,
322,
23880,
393,
372,
338,
2869,
777,
2656,
310,
5518,
29889,
319,
413,
568,
29973,
14302,
540,
1476,
670,
4783,
30010,
29879,
413,
568,
29973,
13,
13,
29949,
15556,
11898,
901,
16467,
278,
330,
15451,
322,
454,
874,
373,
278,
23400,
680,
310,
278,
1346,
346,
6504,
30024,
310,
278,
8805,
19958,
322,
451,
1575,
697,
2655,
7389,
29901,
896,
505,
1063,
4320,
515,
11915,
29892,
451,
540,
1233,
515,
8112,
29892,
607,
2794,
393,
896,
750,
1063,
2715,
304,
278,
2441,
2874,
29892,
3117,
491,
278,
2022,
1058,
7180,
278,
5518,
701,
1090,
278,
270,
608,
29889,
6527,
372,
2289,
505,
1063,
670,
4783,
29973,
13,
13,
3868,
884,
9098,
18553,
393,
896,
505,
1063,
8688,
322,
7672,
1312,
304,
4511,
304,
278,
1667,
4818,
528,
2051,
322,
330,
799,
1788,
607,
297,
2507,
471,
10959,
304,
278,
8805,
19958,
30010,
29879,
14892,
16608,
16088,
607,
6839,
393,
599,
540,
750,
304,
437,
304,
3033,
482,
278,
1788,
313,
392,
27999,
6523,
967,
6437,
29897,
471,
304,
16088,
322,
769,
540,
18553,
372,
29991,
2178,
540,
723,
505,
304,
437,
471,
766,
996,
482,
278,
454,
874,
373,
2845,
2625,
322,
679,
278,
8805,
19958,
1751,
1288,
363,
278,
1346,
346,
6504,
30024,
304,
5768,
3448,
30098,
13,
13,
29949,
15556,
6166,
1048,
26032,
292,
278,
3023,
14892,
16608,
304,
1663,
545,
393,
896,
505,
278,
28410,
304,
2304,
278,
269,
2234,
2748,
18757,
297,
278,
8805,
29892,
322,
769,
540,
5771,
1250,
701,
304,
278,
3699,
322,
24395,
278,
3038,
279,
491,
278,
21610,
2813,
16088,
13,
13,
3868,
29645,
278,
6483,
342,
760,
310,
278,
3038,
279,
363,
278,
3935,
8805,
19958,
269,
2234,
29892,
17231,
393,
896,
526,
1603,
727,
29892,
322,
6200,
14061,
963,
260,
2707,
287,
3448,
297,
263,
286,
1025,
292,
29892,
27278,
521,
342,
1090,
1176,
800,
310,
19786,
322,
270,
2728,
29889,
940,
447,
7273,
278,
521,
342,
1250,
701,
278,
21610,
2813,
964,
278,
3578,
322,
1623,
278,
17306,
988,
540,
16112,
11747,
1372,
278,
269,
2234,
322,
301,
1036,
963,
714,
373,
278,
17455,
304,
4799,
785,
727,
540,
16096,
29879,
278,
13950,
363,
26532,
322,
20190,
322,
7901,
8961,
3448,
278,
805,
11376,
322,
2326,
9192,
29879,
393,
885,
4774,
280,
975,
278,
269,
2234,
29892,
694,
7404,
2534,
297,
1777,
509,
630,
963,
515,
1641,
380,
20937,
3448,
297,
278,
6501,
270,
1160,
2264,
363,
577,
1472,
29889,
13,
13,
29949,
15556,
769,
5717,
8081,
1107,
280,
304,
564,
3881,
363,
902,
322,
13889,
801,
304,
6493,
1449,
16088,
322,
540,
18568,
599,
393,
540,
756,
1476,
16088,
322,
540,
27584,
263,
16286,
304,
6456,
29889,
13,
13,
29943,
4366,
1944,
13,
13,
29943,
10102,
19387,
29874,
823,
29894,
4600,
408,
8081,
1107,
280,
13,
13,
13448,
4233,
4609,
1100,
408,
13889,
801,
13,
13,
29907,
1398,
295,
2482,
476,
932,
370,
3270,
408,
438,
15556,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
5328,
508,
591,
1371,
1244,
29973,
1334,
30010,
276,
9368,
16088,
310,
825,
671,
6677,
13,
13,
29950,
812,
801,
29901,
13,
13,
30015,
8091,
297,
590,
11774,
1244,
16088,
306,
4459,
577,
2319,
785,
322,
310,
694,
671,
3178,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
29648,
592,
2507,
304,
278,
8805,
16088,
306,
30010,
645,
447,
352,
29892,
13958,
322,
731,
278,
269,
2234,
30024,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
3047,
590,
697,
5075,
29892,
438,
15556,
306,
674,
4808,
304,
366,
29889,
13,
13,
29950,
812,
801,
29901,
13,
13,
30015,
3421,
21152,
526,
19315,
29892,
541,
306,
508,
4808,
11480,
366,
3178,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
1576,
12464,
304,
360,
328,
30010,
29879,
413,
568,
16088,
29889,
2266,
29892,
4808,
278,
696,
412,
448,
3113,
1371,
592,
11340,
8530,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
1576,
8805,
19958,
270,
608,
8536,
1169,
29892,
13246,
9377,
13,
13,
29943,
370,
2200,
900,
6289,
5445,
411,
263,
20364,
269,
1141,
13,
13,
29968,
568,
260,
16926,
373,
260,
621,
414,
29892,
14586,
21435,
13,
13,
8208,
270,
555,
424,
5697,
1338,
1722,
322,
896,
1809,
13,
13,
3047,
263,
1652,
473,
728,
438,
15556,
338,
20043,
3448,
13,
13,
797,
517,
278,
14744,
13,
13,
29949,
15556,
8026,
1250,
670,
2343,
322,
10569,
29879,
785,
540,
508,
30010,
29873,
1371,
289,
764,
292,
763,
263,
2217,
8023,
29991,
450,
11359,
20074,
3448,
7415,
263,
28396,
1708,
731,
310,
304,
29891,
25462,
16246,
297,
278,
4023,
4089,
322,
281,
18159,
18647,
393,
29349,
29880,
4940,
5381,
267,
29892,
17774,
322,
4426,
16088,
599,
577,
1784,
7705,
6825,
16273,
322,
24580,
393,
337,
1133,
29872,
19540,
670,
6900,
29889,
13,
13,
2744,
29876,
1107,
280,
29901,
13,
13,
30015,
29949,
15556,
29892,
306,
508,
30010,
29873,
4808,
366,
448,
306,
508,
30010,
29873,
4808,
11480,
366,
8530,
13,
13,
29950,
812,
801,
29901,
13,
13,
30015,
3421,
10188,
526,
11747,
1259,
448,
306,
30010,
29885,
1641,
20043,
515,
590,
11774,
8530,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
10454,
306,
508,
1074,
372,
599,
16088,
29991,
22228,
372,
30010,
29879,
3431,
448,
3113,
1235,
592,
748,
8530,
13,
13,
29934,
5921,
373,
278,
1857,
310,
604,
2288,
13,
13,
855,
5753,
1219,
20887,
29879,
448,
322,
6668,
4835,
2989,
310,
540,
12935,
13,
13,
3782,
5520,
8152,
292,
394,
747,
275,
13,
13,
29928,
423,
16711,
681,
2750,
278,
6483,
7254,
14744,
13,
13,
29949,
15556,
847,
8081,
1107,
280,
29901,
13,
13,
29934,
2300,
25053,
8796,
15451,
515,
599,
11126,
13,
13,
29925,
913,
29879,
472,
1749,
26490,
16088,
13,
13,
29949,
15556,
13,
13,
18275,
2087,
6392,
9887,
279,
6370,
408,
438,
15556,
13,
13,
29949,
15556,
29901,
13,
13,
10401,
306,
471,
263,
767,
306,
20654,
590,
4783,
22764,
3889,
13,
13,
3868,
7160,
670,
1833,
16172,
304,
2367,
304,
592,
13,
13,
10401,
306,
471,
263,
767,
306,
4934,
278,
7826,
306,
21682,
304,
592,
13,
13,
13468,
4846,
599,
902,
9324,
304,
731,
592,
16088,
13,
13,
10454,
306,
1073,
727,
471,
694,
3256,
30010,
29879,
982,
304,
1074,
13,
13,
5618,
306,
1033,
505,
2309,
304,
1735,
393,
285,
22279,
2462,
13,
13,
2855,
1286,
306,
508,
1074,
825,
306,
30010,
345,
2309,
304,
599,
2820,
592,
13,
13,
2855,
306,
1073,
393,
1286,
306,
626,
16088,
13,
13,
20475,
16088,
13,
13,
29931,
4316,
1199,
304,
4358,
384,
4403,
29914,
2855,
15464,
12516,
13,
13,
29931,
4316,
1199,
304,
376,
2744,
29876,
1107,
280,
29908,
515,
5593,
29879,
448,
319,
8027,
19198,
13,
276,
4611,
408,
263,
4863,
2323,
491,
383,
2063,
618,
6125,
29892,
6339,
29871,
29896,
29945,
29892,
29871,
29906,
29900,
29896,
29906,
29889,
13,
13,
2744,
29876,
1107,
280,
21238,
491,
13981,
4358,
384,
4403,
13,
29931,
4316,
1199,
491,
5122,
1126,
15464,
13,
26626,
379,
21081,
408,
438,
15556,
13,
13,
29949,
15556,
364,
4637,
4688,
322,
364,
2247,
385,
2030,
2278,
6614,
4768,
446,
1549,
278,
17251,
964,
4726,
29889,
940,
8206,
29879,
263,
7774,
5742,
1075,
393,
8640,
18046,
793,
607,
540,
756,
4586,
515,
278,
16766,
23080,
310,
11359,
22306,
322,
607,
540,
13900,
304,
1162,
13317,
472,
21701,
2330,
30010,
29879,
28794,
363,
6909,
304,
15649,
278,
3520,
1907,
304,
5735,
297,
278,
8805,
19958,
29892,
408,
1532,
408,
278,
17279,
3734,
304,
2048,
670,
4783,
30010,
29879,
413,
568,
2874,
515,
278,
1346,
10967,
310,
5593,
29879,
8643,
13,
13,
29949,
15556,
29901,
13,
13,
4806,
3534,
287,
19995,
1754,
1728,
263,
8589,
13,
2951,
11359,
8805,
29879,
3773,
9424,
445,
2030,
3533,
13,
6880,
11359,
6013,
719,
1476,
366,
3237,
29889,
10428,
13,
10454,
306,
8939,
284,
4768,
446,
322,
7774,
701,
278,
17306,
13,
13,
29902,
723,
4192,
2027,
4192,
2960,
1549,
278,
11359,
4646,
29879,
13,
10454,
306,
269,
2027,
534,
1161,
1549,
278,
1671,
292,
17251,
13,
29902,
953,
415,
1000,
18046,
793,
297,
14523,
363,
16286,
13,
10454,
4069,
18046,
793,
526,
429,
15033,
363,
1735,
13,
13,
2744,
29876,
1107,
280,
29892,
1016,
30010,
29873,
5967,
592,
2768,
411,
445,
26506,
13,
2855,
306,
1073,
393,
6909,
508,
30010,
29873,
15649,
278,
697,
2655,
701,
304,
366,
13,
3492,
9273,
30010,
29873,
505,
750,
304,
6755,
470,
14074,
13,
13,
30015,
2713,
598,
11644,
887,
4683,
29892,
26849,
1724,
887,
1938,
29892,
13,
2713,
598,
3575,
20799,
9363,
278,
285,
4926,
1497,
13,
855,
650,
322,
5758,
279,
29892,
5214,
14603,
393,
306,
1258,
13,
1349,
820,
306,
723,
3265,
11340,
2012,
13,
13,
2744,
29876,
1107,
280,
29892,
306,
30010,
29885,
5962,
287,
2768,
515,
590,
5566,
1509,
13,
10454,
306,
1073,
393,
6909,
508,
30010,
29873,
15649,
278,
697,
2655,
701,
304,
366,
13,
3782,
29892,
306,
723,
763,
304,
11340,
411,
366,
13,
13,
2887,
17251,
28987,
278,
6473,
310,
278,
16766,
2475,
29892,
438,
15556,
269,
1169,
298,
566,
29881,
839,
22611,
278,
534,
1161,
322,
285,
492,
567,
278,
298,
2092,
304,
670,
28015,
300,
701,
975,
670,
2343,
29936,
17251,
20662,
567,
1549,
297,
10952,
4441,
567,
322,
2373,
357,
20074,
975,
1075,
29889,
940,
900,
6289,
278,
285,
4926,
322,
15223,
372,
964,
670,
24589,
29889,
14832,
278,
1741,
363,
278,
11359,
30010,
29879,
1616,
275,
550,
472,
450,
7817,
756,
2307,
4586,
2058,
29892,
540,
1602,
2247,
304,
2244,
8081,
1107,
280,
565,
540,
1795,
1603,
367,
6068,
304,
6493,
322,
5221,
403,
29892,
541,
540,
10753,
304,
5193,
310,
8805,
322,
4799,
785,
451,
12565,
322,
5758,
279,
16088,
322,
304,
11340,
413,
3246,
3265,
1135,
304,
2048,
14603,
29889,
13,
13,
29949,
15556,
29901,
13,
13,
30015,
2744,
29876,
1107,
280,
29892,
1016,
30010,
29873,
5967,
592,
2768,
411,
445,
26506,
13,
2855,
306,
1073,
393,
6909,
508,
30010,
29873,
15649,
278,
697,
2655,
701,
304,
366,
13,
3492,
9273,
30010,
29873,
505,
750,
304,
6755,
16088,
30024,
13,
13,
30015,
2744,
29876,
1107,
280,
29892,
306,
30010,
29885,
5962,
287,
2768,
515,
590,
5566,
1509,
13,
10454,
306,
1073,
393,
6909,
508,
30010,
29873,
15649,
278,
697,
2655,
701,
304,
366,
13,
8241,
29892,
306,
723,
763,
304,
11340,
363,
366,
30024,
13,
13,
29949,
15556,
14061,
8081,
1107,
280,
472,
902,
4783,
30010,
29879,
9999,
322,
338,
24293,
3276,
304,
1074,
16088,
540,
30010,
29881,
10972,
393,
1183,
750,
5714,
385,
5075,
304,
23900,
1550,
540,
471,
297,
8475,
541,
304,
2869,
1074,
670,
2030,
2278,
6614,
5121,
411,
902,
697,
5075,
16088,
29889,
13,
13,
3868,
6567,
902,
670,
337,
2310,
683,
269,
3466,
322,
278,
285,
4926,
29892,
322,
19514,
565,
540,
1795,
505,
263,
8825,
29889,
2296,
9744,
1075,
363,
670,
1162,
29891,
19914,
29892,
322,
8571,
267,
304,
564,
3881,
363,
263,
6493,
491,
1075,
304,
450,
7817,
29889,
1551,
278,
10658,
7250,
29892,
438,
15556,
6314,
29879,
777,
310,
670,
4783,
30010,
29879,
413,
3246,
515,
278,
8805,
19958,
29892,
7600,
963,
964,
278,
7774,
29892,
322,
364,
2247,
670,
4768,
446,
1250,
701,
278,
17306,
16088,
29889,
13,
13,
7775,
4189,
17435,
13,
13,
1576,
341,
2932,
30010,
29879,
382,
4099,
21238,
13981,
4358,
384,
4403,
13,
29931,
4316,
1199,
5122,
1126,
15464,
13,
13,
3868,
30010,
29879,
9873,
5129,
29890,
449,
445,
716,
5376,
13,
3112,
30010,
29879,
451,
278,
6012,
393,
540,
18093,
13,
29933,
296,
1090,
298,
2092,
701,
373,
278,
29469,
13,
29928,
374,
854,
1967,
901,
1135,
2714,
13,
13,
13468,
30010,
29879,
9873,
5129,
29890,
449,
445,
716,
10714,
13,
3112,
1838,
30010,
29873,
6216,
278,
982,
1183,
2714,
13,
6246,
1183,
30010,
29879,
263,
17819,
2501,
278,
29469,
13,
2369,
13775,
292,
19797,
393,
508,
30010,
29873,
367,
18093,
13,
13,
26526,
2462,
591,
1207,
372,
13,
26526,
3256,
2125,
372,
13,
6028,
30010,
29873,
366,
1074,
372,
599,
278,
1550,
29973,
13,
5494,
4366,
29879,
7901,
26819,
4891,
278,
14744,
2023,
13,
13,
1576,
3256,
30010,
29879,
10977,
13,
13,
15597,
526,
9873,
5129,
29890,
449,
445,
716,
982,
13,
3112,
22602,
30010,
29873,
7695,
278,
982,
896,
2714,
13,
6246,
896,
8681,
533,
2501,
278,
29469,
13,
7129,
292,
18551,
393,
338,
18365,
13,
13,
26526,
2462,
591,
1207,
372,
13,
26526,
3256,
2125,
372,
13,
6028,
30010,
29873,
366,
1074,
372,
297,
1009,
17819,
29973,
13,
29931,
18919,
1709,
7901,
26819,
4891,
278,
14744,
2023,
13,
13,
1576,
3256,
30010,
29879,
10977,
13,
13,
29898,
2929,
29877,
29897,
13,
13,
26526,
2462,
591,
1207,
372,
13,
26526,
3256,
2125,
372,
13,
6028,
30010,
29873,
366,
1074,
372,
599,
278,
1550,
29973,
13,
5494,
4366,
29879,
7901,
26819,
4891,
278,
14744,
2023,
13,
13,
26526,
3250,
591,
1207,
372,
13,
26526,
3256,
2125,
372,
13,
6028,
30010,
29873,
366,
1074,
372,
297,
1009,
17819,
29973,
13,
29931,
18919,
1709,
7901,
26819,
4891,
278,
14744,
856,
13,
13,
1576,
3256,
30010,
29879,
10977,
13,
13,
10140,
29899,
786,
363,
1749,
9763,
15670,
322,
679,
385,
14426,
5142,
304,
376,
1576,
341,
2932,
29915,
29879,
382,
4099,
29908,
411,
1749,
13162,
7862,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Tag Heuer Sunglasses
TAG Heuer is an extraordinary company which has continually revolutionized watchmaking since its creation back in 1860 by the young man, Edouard Heuer, aged just 20 years old. TAG Heuer apart is the exceptional quality of its eye-glasses, watches and chronographs, of which they as a company are immensely proud. – Tag Heuer
Tag Heuer Sunglasses
We have a huge collection of top selling Tag Heuer Sunglasses. Tag Heuer in UAE is among the top brands, being a favorite of most of the happy customers. Buy Tag Heuer Sunglasses at really good prices which have awesome sales and reviews.
Tag Heuer Sunglasses will change the way you look this beautiful world.
Available online Tag Heuer Sunglasses
Buying a pair on Opticsonline is much easier than ever before, shop now sunglasses, eyeglasses and contact-lenses in different shapes, colors, styles, brands and categories that suit’s your style.
What’s the trend in eye-wear?
We have all trending shapes of sunglasses and eyeglasses ranging from classic aviators, wayfarers, round, sports, rectangle, geometric, cat-eye, for both men and women. Enhance your look, go with the fashion, buy now our top selling sunglasses and frames. Huge collection of shades and frames only at Opticsonline.
We make your online shopping experience easier and cheaper. We have awesome deals, amazing prices on almost all the sunglasses, eyeglasses(frames), contact-lenses, we have an immense sales throughout the UAE mostly Dubai, Sharjah, Abu-Dhabi, Ajman, order Tag Heuer Sunglasses online in Dubai, UAE and get fast and free-shipping. Customer satisfaction is the main aim of Opticsonline.
Explore our collection of top sunglasses brands, top eyeglasses brands and top contact lenses brands | [
1,
10522,
940,
2853,
317,
686,
605,
267,
13,
13,
16881,
940,
2853,
338,
385,
28163,
5001,
607,
756,
2145,
1474,
19479,
1891,
6505,
28990,
1951,
967,
11265,
1250,
297,
29871,
29896,
29947,
29953,
29900,
491,
278,
4123,
767,
29892,
2155,
283,
538,
940,
2853,
29892,
26552,
925,
29871,
29906,
29900,
2440,
2030,
29889,
323,
10051,
940,
2853,
12435,
338,
278,
3682,
284,
11029,
310,
967,
10977,
29899,
29050,
267,
29892,
6505,
267,
322,
17168,
1946,
29879,
29892,
310,
607,
896,
408,
263,
5001,
526,
5198,
575,
873,
22314,
29889,
785,
10522,
940,
2853,
13,
13,
8176,
940,
2853,
317,
686,
605,
267,
13,
13,
4806,
505,
263,
12176,
4333,
310,
2246,
269,
7807,
10522,
940,
2853,
317,
686,
605,
267,
29889,
10522,
940,
2853,
297,
501,
16036,
338,
4249,
278,
2246,
1506,
4167,
29892,
1641,
263,
25448,
310,
1556,
310,
278,
9796,
20330,
29889,
5373,
29891,
10522,
940,
2853,
317,
686,
605,
267,
472,
2289,
1781,
26094,
607,
505,
29663,
16538,
322,
21804,
29889,
13,
13,
8176,
940,
2853,
317,
686,
605,
267,
674,
1735,
278,
982,
366,
1106,
445,
9560,
3186,
29889,
13,
13,
27635,
7395,
10522,
940,
2853,
317,
686,
605,
267,
13,
13,
3727,
5414,
263,
5101,
373,
20693,
293,
1100,
1220,
338,
1568,
6775,
1135,
3926,
1434,
29892,
18296,
1286,
269,
686,
605,
267,
29892,
321,
29891,
387,
605,
267,
322,
6958,
29899,
29880,
11259,
297,
1422,
25834,
29892,
11955,
29892,
11949,
29892,
1506,
4167,
322,
13997,
393,
14726,
30010,
29879,
596,
3114,
29889,
13,
13,
5618,
30010,
29879,
278,
534,
355,
297,
10977,
29899,
705,
279,
29973,
13,
13,
4806,
505,
599,
534,
2548,
25834,
310,
269,
686,
605,
267,
322,
321,
29891,
387,
605,
267,
364,
9776,
515,
22037,
1029,
29875,
4097,
29892,
982,
15641,
414,
29892,
4513,
29892,
14717,
29892,
16701,
29892,
26224,
29892,
6635,
29899,
1032,
29872,
29892,
363,
1716,
1757,
322,
5866,
29889,
1174,
29882,
749,
596,
1106,
29892,
748,
411,
278,
13460,
29892,
15649,
1286,
1749,
2246,
269,
7807,
269,
686,
605,
267,
322,
16608,
29889,
379,
5710,
4333,
310,
528,
3076,
322,
16608,
871,
472,
20693,
293,
1100,
1220,
29889,
13,
13,
4806,
1207,
596,
7395,
17394,
3262,
7271,
6775,
322,
923,
7202,
29889,
1334,
505,
29663,
316,
1338,
29892,
21863,
292,
26094,
373,
4359,
599,
278,
269,
686,
605,
267,
29892,
321,
29891,
387,
605,
267,
29898,
19935,
511,
6958,
29899,
29880,
11259,
29892,
591,
505,
385,
29403,
16538,
10106,
278,
501,
16036,
11149,
11668,
1794,
29892,
1383,
279,
29926,
801,
29892,
1976,
29884,
29899,
29928,
7308,
29875,
29892,
319,
29926,
1171,
29892,
1797,
10522,
940,
2853,
317,
686,
605,
267,
7395,
297,
11668,
1794,
29892,
501,
16036,
322,
679,
5172,
322,
3889,
29899,
845,
17347,
29889,
21886,
26470,
338,
278,
1667,
12242,
310,
20693,
293,
1100,
1220,
29889,
13,
13,
1252,
572,
487,
1749,
4333,
310,
2246,
269,
686,
605,
267,
1506,
4167,
29892,
2246,
321,
29891,
387,
605,
267,
1506,
4167,
322,
2246,
6958,
301,
11259,
1506,
4167
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 clonidine premedication on the blood pressure and tachycardiac responses to ephedrine in elderly and young patients during propofol anesthesia.
We studied the pressor and tachycardiac responses to ephedrine in elderly and young patients given either clonidine or midazolam during propofol anesthesia. In the first experiment, elderly (>60 yr) and young (20-45 yr) patients were randomly allocated to one of four groups according to age and premedicated regimens (n = 16 each; elderly-clonidine [EC], elderly-midazolam [EM], young-clonidine [YC], and young-midazolam [YM]). Under propofol anesthesia, ephedrine was injected, and hemodynamic measurements were made. In the second experiment, with clonidine premedication, elderly patients (n = 16) were given a reduced dose of propofol (EC-LP) and young patients (n = 16) were given an increased dose of propofol (YC-HP). Ephedrine was injected, and he- modynamic measurements were performed. The in-creases in mean blood pressure and heart rate were larger in the EC group than in the EM, YM, and EC-LP groups (P < 0.05). In the YC-HP group, the pressor response to ephedrine tended to be augmented as compared with the YC group but was not statistically significant. These results suggest that clonidine premedication augmented the pressor and tachycardiac responses to ephedrine, especially in elderly patients during a standard dose of propofol anesthesia, and that clonidine, age, and propofol could be involved in the augmentation of the blood pressure and tachycardiac responses to ephedrine. Clonidine premedication augments the pressor and tachycardiac responses to ephedrine in elderly patients during standard or large doses of propofol anesthesia but does not augment during small doses of propofol anesthesia. Clonidine, age, and propofol could be involved in the augmentation of the pressor and tachycardiac responses to ephedrine. | [
1,
450,
9545,
310,
1067,
265,
333,
457,
758,
2168,
293,
362,
373,
278,
10416,
12959,
322,
260,
496,
29891,
7543,
13544,
20890,
304,
321,
561,
287,
29878,
457,
297,
27008,
368,
322,
4123,
22069,
2645,
3107,
974,
324,
385,
342,
13244,
423,
29889,
13,
4806,
12399,
278,
3965,
272,
322,
260,
496,
29891,
7543,
13544,
20890,
304,
321,
561,
287,
29878,
457,
297,
27008,
368,
322,
4123,
22069,
2183,
2845,
1067,
265,
333,
457,
470,
7145,
834,
324,
314,
2645,
3107,
974,
324,
385,
342,
13244,
423,
29889,
512,
278,
937,
7639,
29892,
27008,
368,
313,
29958,
29953,
29900,
343,
29878,
29897,
322,
4123,
313,
29906,
29900,
29899,
29946,
29945,
343,
29878,
29897,
22069,
892,
20459,
19591,
304,
697,
310,
3023,
6471,
5034,
304,
5046,
322,
758,
2168,
293,
630,
1072,
326,
575,
313,
29876,
353,
29871,
29896,
29953,
1269,
29936,
27008,
368,
29899,
695,
265,
333,
457,
518,
11206,
1402,
27008,
368,
29899,
6563,
834,
324,
314,
518,
12665,
1402,
4123,
29899,
695,
265,
333,
457,
518,
29979,
29907,
1402,
322,
4123,
29899,
6563,
834,
324,
314,
518,
29979,
29924,
14664,
7634,
3107,
974,
324,
385,
342,
13244,
423,
29892,
321,
561,
287,
29878,
457,
471,
11658,
287,
29892,
322,
9736,
397,
8739,
20398,
892,
1754,
29889,
512,
278,
1473,
7639,
29892,
411,
1067,
265,
333,
457,
758,
2168,
293,
362,
29892,
27008,
368,
22069,
313,
29876,
353,
29871,
29896,
29953,
29897,
892,
2183,
263,
12212,
437,
344,
310,
3107,
974,
324,
313,
11206,
29899,
13208,
29897,
322,
4123,
22069,
313,
29876,
353,
29871,
29896,
29953,
29897,
892,
2183,
385,
11664,
437,
344,
310,
3107,
974,
324,
313,
29979,
29907,
29899,
3954,
467,
382,
561,
287,
29878,
457,
471,
11658,
287,
29892,
322,
540,
29899,
878,
8739,
20398,
892,
8560,
29889,
450,
297,
29899,
1037,
2129,
297,
2099,
10416,
12959,
322,
5192,
6554,
892,
7200,
297,
278,
17522,
2318,
1135,
297,
278,
27295,
29892,
612,
29924,
29892,
322,
17522,
29899,
13208,
6471,
313,
29925,
529,
29871,
29900,
29889,
29900,
29945,
467,
512,
278,
612,
29907,
29899,
3954,
2318,
29892,
278,
3965,
272,
2933,
304,
321,
561,
287,
29878,
457,
260,
2760,
304,
367,
18765,
287,
408,
9401,
411,
278,
612,
29907,
2318,
541,
471,
451,
12997,
1711,
7282,
29889,
4525,
2582,
4368,
393,
1067,
265,
333,
457,
758,
2168,
293,
362,
18765,
287,
278,
3965,
272,
322,
260,
496,
29891,
7543,
13544,
20890,
304,
321,
561,
287,
29878,
457,
29892,
7148,
297,
27008,
368,
22069,
2645,
263,
3918,
437,
344,
310,
3107,
974,
324,
385,
342,
13244,
423,
29892,
322,
393,
1067,
265,
333,
457,
29892,
5046,
29892,
322,
3107,
974,
324,
1033,
367,
9701,
297,
278,
18765,
362,
310,
278,
10416,
12959,
322,
260,
496,
29891,
7543,
13544,
20890,
304,
321,
561,
287,
29878,
457,
29889,
2233,
265,
333,
457,
758,
2168,
293,
362,
11307,
1860,
278,
3965,
272,
322,
260,
496,
29891,
7543,
13544,
20890,
304,
321,
561,
287,
29878,
457,
297,
27008,
368,
22069,
2645,
3918,
470,
2919,
3248,
267,
310,
3107,
974,
324,
385,
342,
13244,
423,
541,
947,
451,
18765,
2645,
2319,
3248,
267,
310,
3107,
974,
324,
385,
342,
13244,
423,
29889,
2233,
265,
333,
457,
29892,
5046,
29892,
322,
3107,
974,
324,
1033,
367,
9701,
297,
278,
18765,
362,
310,
278,
3965,
272,
322,
260,
496,
29891,
7543,
13544,
20890,
304,
321,
561,
287,
29878,
457,
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
] |
<test>
<preconditions>
<table_exists>hits_10m_single</table_exists>
</preconditions>
<settings>
<max_threads>1</max_threads>
</settings>
<query>SELECT Title FROM hits_10m_single PREWHERE WatchID % 2 = 1 WHERE UserID = 10000 FORMAT Null</query>
</test>
| [
1,
529,
1688,
29958,
13,
1678,
529,
1457,
1116,
2187,
29958,
13,
4706,
529,
2371,
29918,
9933,
29958,
29882,
1169,
29918,
29896,
29900,
29885,
29918,
14369,
829,
2371,
29918,
9933,
29958,
13,
1678,
1533,
1457,
1116,
2187,
29958,
13,
13,
1678,
529,
11027,
29958,
13,
4706,
529,
3317,
29918,
28993,
29958,
29896,
829,
3317,
29918,
28993,
29958,
13,
1678,
1533,
11027,
29958,
13,
13,
1678,
529,
1972,
29958,
6404,
18527,
3895,
19572,
29918,
29896,
29900,
29885,
29918,
14369,
349,
1525,
22043,
24274,
1367,
1273,
29871,
29906,
353,
29871,
29896,
5754,
4911,
1367,
353,
29871,
29896,
29900,
29900,
29900,
29900,
383,
12054,
1299,
19014,
829,
1972,
29958,
13,
829,
1688,
29958,
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
] |
---
author:
- Greg Bodwin
- Michael Dinitz
- Merav Parter
- Virginia Vassilevska Williams
bibliography:
- 'references.bib'
title: |
Optimal Vertex Fault Tolerant Spanners\
(for fixed stretch)
---
Introduction
============
Upper Bound for $3$-Spanners
============================
First, we have:
\[lem:3-reg\] Suppose that Theorem \[thm:upper-bounds\] holds for $k=2$ for all graphs $G$ whose corresponding output graphs $H$ have the property that their maximum degree is at most $c$ times their minimum degree, for some universal constant $c$. Then Theorem \[thm:upper-bounds\] holds in general.
The proof is deferred to Appendix \[app:reg\], as it is somewhat long but orthogonal to the main new ideas of this paper. We shall assume in the rest of this section that $H$ (the graph output by Algorithm \[alg:spanners\]) is “approximately regular” in the sense of Lemma \[lem:3-reg\]. More specifically, throughout this paper, we let $D$ be a number such that all nodes in $H$ have degree $\Theta_k(D)$.
As usual, a *walk* in $H$ is a sequence of nodes (possibly with repeats) in which every pair of adjacent nodes is connected by an edge. A walk has length $i$ (also called an $i$-walk) if it contains $i+1$ nodes. A walk is *closed* if its first and last nodes are the same. We shall also say that an edge $(u, v)$ belongs to a walk $w$ if the nodes $u, v$ appear in adjacent positions of $w$. Let $c_{2k}$ denote the number of closed $2k$-walks in $H$.
If $H$ is the spanner produced by Algorithm \[alg:spanners\] on an input graph $G = (V, E)$, then for an edge $(u, v) \in E$, the graph $H^{(u, v)} = (V, E')$ is defined as the subgraph of $H$ containing exactly the edges considered before $(u, v)$ during the greedy algorithm (not including $(u, v)$ itself).
\[lem:4cyc-completion\] $$c_4 = O(|E_H| \cdot fD)$$
We give the argument for vertex faults here; the argument for edge faults is essentially identical. We shall argue that each edge added to $H$ during Algorithm \[alg:spanners\] completes $O(fD)$ closed $4$-walks, which then implies the lemma by a simple union bound.
If we choose to add an edge $(u, v)$ to $H$, then $(u, v)$ is not $(3, f)$ protected in $H^{(u, v)}$. Thus, there is a set $F$ of $|F| \le f$ nodes such that every $u \leadsto v$ $3$-walk contains a node in $F$. Additionally, for each node $x \in F$, there are $O(D)$ $u \leadsto v$ $3$-walks including the node $x$, since $3$ of the $4$ nodes on this walk are specified ($u$, $v$, and $x$) and the fourth node must be one of the $O(D)$ neighbors of $x$. Applying a union bound, the total number of $u \leadsto v$ $3$-walks in $H^{(u, v)}$ is $O(fD)$. See Figure \[fig:3-completion\] for a picture associated with this argument.
For each such $u \leadsto v$ $3$-walk in $H^{(u, v)}$, we complete at most $8$ closed $4$-walks by adding $(u, v)$ to $H^{(u, v)}$ (specifically, each such $3$-walk corresponds to a single “circular $4$-walk;” we may then choose any of the $4$ nodes on this walk to serve as the start/end node of the appropriate closed walk, and it may be travelled in either of two directions). The lemma follows.
(0, 0) circle \[radius=0.15cm\]; (6, 0) circle \[radius=0.15cm\]; at (0, 0) [$u$]{}; at (6, 0) [$v$]{};
(2, 0) ellipse (0.5cm and 2cm); (4, 0) ellipse (0.5cm and 2cm);
at (1.8, -2) [First layer\
size is\
$|F| = f$]{}; (2, 0) circle \[radius=0.15cm\]; (2, 1) circle \[radius=0.15cm\]; (2, -1) circle \[radius=0.15cm\]; (0, 0) – (2, 0); (0, 0) – (2, 1); (0, 0) – (2, -1);
(2, 1) – (4, 1.5); (2, 1) – (4, 1); (2, 1) – (4, 0.5); (2, 1) – (4, 0); (2, 1) – (4, -0.5); (2, 1) – (4, -1); (2, 1) – (4, -1.5);
(2, 0) – (4, 1.5); (2, 0) – (4, 1); (2, 0) – (4, 0.5); (2, 0) – (4, 0); (2, 0) – (4, -0.5); (2, 0) – (4, -1); (2, 0) – (4, -1.5);
(2, -1) – (4, 1.5); (2, -1) – (4, 1); (2, -1) – (4, 0.5); (2, -1) – (4, 0); (2, -1) – (4, -0.5); (2, -1) – (4, -1); (2, -1) – (4, -1.5);
at (4.2, -2) [$O(fD)$ walks\
from $u$ to\
second layer]{};
(6, 0) – (4, 1.5); (6, 0) – (4, 1); (6, 0) – (4, 0.5); (6, 0) – (4, 0); (6, 0) – (4, -0.5); (6, 0) – (4, -1); (6, 0) – (4, -1.5);
(4, 1.5) circle \[radius=0.15cm\]; (4, 1) circle \[radius=0.15cm\]; (4, 0.5) circle \[radius=0.15cm\]; (4, 0) circle \[radius=0.15cm\]; (4, -0.5) circle \[radius=0.15cm\]; (4, -1) circle \[radius=0.15cm\]; (4, -1.5) circle \[radius=0.15cm\];
\[lem:4cyc-cs\] $$|E_H| = O\left( n c_4^{1/4} \right)$$
The total number of $2$-walks in $H$ is $\Theta(n D^2)$, since we have $n$ choices for start node and $\Theta(D)$ neighbors for each node. Each ordered pair of (possibly identical) $2$-walks $(w_1, w_2)$ in $H$ with the same start and end nodes corresponds uniquely to a closed $4$-walk, obtained by walking $w_1$ and then $w_2$ in reverse. Thus, denoting by $k_{u, v}$ the number of $u \leadsto v$ $2$-walks, we may calculate $$\begin{aligned}
c_4 &= \sum \limits_{(u, v) \in V \times V} k_{u, v}^2\\
&\ge \frac{ \left(\sum \limits_{(u, v) \in V \times V} k_{u, v} \right)^2 }{n^2} & \text{Cauchy-Schwarz Inequality}\\
&= \frac{\Theta(n^2D^4)}{n^2}
= \Theta(D^4)\end{aligned}$$ and thus $nc_4^{1/4} \ge \Theta(nD) = |E_H|$.
We are now ready to prove our upper bound for $k=2$.
\[Proof of Theorem \[thm:upper-bounds\] for $k=2$\] Combining Lemmas \[lem:4cyc-completion\] and \[lem:4cyc-cs\], we compute $$\begin{aligned}
|E_H| &= O\left( n \left(|E_H| \cdot fD \right)^{1/4} \right)\\
|E_H|^3 &= O\left(n^4 fD \right)\\
|E_H|^2 &= O\left(n^3 f \right) & \text{since } |E_H| = \Theta(nD)\\
|E_H| &= O\left(n^{3/2} f^{1/2} \right). \qedhere\end{aligned}$$
Lower Bound for $3$-Spanners {#sec:lower-2}
============================
We prove Theorems \[thm:vertex-lbs\] and \[thm:edge-lbs\] in the special case $k=2$. Incompressibility arguments for Theorems \[thm:vertex-incomp\] and \[thm:edge-incomp\] can be found in Appendix \[app:lbs\]. Our lower bounds for $k=2$ are unconditional, since the girth conjecture has been proved in this special case:
\[e.g. Wenger [@wenger1991extremal]\] \[lem:4-girth\] For all $n$, there exist $n$-node graphs on $\Omega\left(n^{3/2}\right)$ edges without cycles of length $4$ or less.
We argue first for vertex faults:
\[Proof of Theorem \[thm:vertex-lbs\], case $k=2$\] Start with a graph $G$ from Lemma \[lem:4-girth\]. We construct a new graph $G'$ as follows. Let $t = \lceil f/2 \rceil$. We set $V_{G'} = V(G) \times [t]$, and let $E_{G'} = \{ \{(u,i), (v,j)\} : \{u,v\} \in E(G) \land i,j \in [t]\}$. Let $G' = (V_{G'}, E_{G'})$. Intuitively, we can think of $G'$ as being obtained by replacing each vertex of $G$ by a set of $t$ copies of the vertex, and each edge of $G$ is replaced by a complete bipartite graph between the two sets of copies. We will prove Theorem \[thm:vertex-lbs\] by proving that the only $f$ VFT $3$-spanner of $G'$ is itself, and that it has the required number of edges.
We first claim that the only $f$ VFT $3$-spanner of $G'$ is $G'$ itself. To see this, suppose that $H$ is a subgraph of $G'$ which does not contain some edge $\{(u,i), (v,j)\} \in E_{G'}$. Let $F = \{(u,\ell) : \ell \neq i\} \cup \{(v, \ell) : \ell \neq j\}$, i.e., we let the fault set be all copies of $u$ except for $(u,i)$ and all copies of $v$ except $(v,j)$. Note that $|F| \leq f$. Now consider the shortest path from $(u,i)$ to $(v,j)$ in $H \setminus F$. Let this path be $(u,i) = (x^0, i^0), (x^1, i^1), (x^2, i^2), \dots, (x^p, i^p) = (v,j)$. Note that for any $0 \leq a \leq p-1$, it cannot be the case that $x^a = u$ and $x^{a+1} = v$, since no such edges exist in $H \setminus F$. Thus $u = x^0, x^1, \dots, x^p = v$ is a walk from $u$ to $v$ in $G$ which does not use the edge $\{u,v\}$. By adding $\{u,v\}$ to this path, we get a cycle of length at most $p+1$. Since $G$ has girth at least $5$, this implies that $p \geq 4$. Thus in $H \setminus F$ the distance between $(u,i)$ and $(v,j)$ is at least $4$, while in $G' \setminus F$ they are at distance $1$. So $H$ is not an $f$ VFT $3$-spanner of $G'$, and hence the only $f$ VFT $3$-spanner of $G'$ is $G'$ itself.
So $G'$ is the only $f$ VFT $3$-spanner of itself, and it remains only to analyze its size. Clearly $|V_{G'}| = t |V(G)|$, and by Lemma \[lem:4-girth\] we know that $|E(G)| \geq \Omega(|V(G)|^{3/2})$. Thus $$\begin{aligned}
|E_{G'}| &= \Omega(\left(|E(G)| t^2\right) = \Omega\left(t^2 |V(G)|^{3/2}\right) = \Omega\left(t^2 \cdot \left(\frac{|V_{G'}|}{t}\right)^{3/2}\right) \\
&= \Omega\left(f^{1/2} |V_{G'}|^{3/2}\right)\end{aligned}$$ as claimed.
And next for edge faults:
\[Proof of Theorem \[thm:edge-lbs\], case $k=2$\]
We construct a new graph $G'$ exactly as in the VFT case. As before, let $H$ be a subgraph of $G'$ missing some edge $\{(u,i), (v,j)\}$. Let $F = \{\{(u,i), (v, \ell)\} : \ell \in [t] \setminus \{j\}\} \cup \{\{(u,\ell), (v,j)\} : \ell \in [t] \setminus \{i\}\}$ be the fault set, and note that $|F| \leq f$. In other words, we fail every edge from $(u,i)$ to copies of $v$ except for the edge to $(v,j)$, and similarly we fail all edges from $(v,j)$ to copies of $u$ except for $(u,i)$. So in $G' \setminus F$ the edge $\{(u,i), (v,j)\}$ is still present, but it is not in $H \setminus F$. Moreover, in $H \setminus F$ there are no paths of length at most $3$ from $(u,i)$ to $(v,j)$ that use as an intermediate node any other copy of $u$ or copy of $v$. Hence any path of length at most $3$ must be of the form $(u,i), (x, a), (y,b), (v,j)$ where $u, x, y, v$ are all distinct (possibly with either $x$ or $y$ missing). This implies that $u,x,y,v$ form either a $3$- or a $4$-cycle in $G$, which contradicts Lemma \[lem:4-girth\]. Thus $H \setminus F$ is not a $3$-spanner of $G' \setminus F$, so $H$ is not a $f$ EFT $3$-spanner of $G'$.
Thus $G'$ is the only $f$ EFT $3$-spanner of itself. Using the same analysis as in the VFT case, we get that $|E(G')| \geq \Omega(f^{1/2} |V(G')|^{3/2})$, proving the theorem.
Overview: Upper Bounds for Larger $k$ \[sec:ub-overview\]
=========================================================
For simplicity, we will focus on the case $k=3$ in this overview. The most natural attempt to extend our upper bounds to $k=3$ goes as follows: first one generalizes Lemma \[lem:4cyc-completion\], and then one generalizes Lemma \[lem:4cyc-cs\] by considering $3$-walks rather than $2$-walks, and then one combines the two statements as before. Unfortunately, the upper bounds implied by this approach are quite weak. One easily generalizes Lemma \[lem:4cyc-cs\] to show that $$|E_H| = O \left( nc_{6}^{1/6} \right),$$ and one easily generalizes Lemma \[lem:4cyc-completion\] to show $$c_{6} = O\left( |E_H| \cdot fD^3 \right).$$ However, plugging these equations into the proof used before, we actually find *no improvement* in the previous upper bound: we still get $$|E_H| = O \left( n^{3/2} f^{1/2} \right)$$ while we should hope for something much better.
Let us now informally sketch a method for improving the generalization of Lemma \[lem:4cyc-completion\]. Recall that, from Lemma \[lem:4cyc-completion\] itself, we have $c_4 = O\left( |E_H| \cdot fD \right)$ (note that this proof holds even in the setting $k=3$). Thus, *on average*, each node $v$ participates in $O(fD^2)$ closed $4$-walks. Additionally, we have $\Theta(D^2)$ $2$-walks starting at $v$. Hence each of these two walks (on average) is responsible for creating at most $O(f)$ closed $4$-walks in $H$, and so (on average) there are only $O(f)$ $2$-walks between any two nodes.
Assume for a moment that we could move from an average to worst-case version of this statement, and assume a hard limit of $O(f)$ $2$-walks between any two nodes. This fact could be used to improve our generalization of Lemma \[lem:4cyc-completion\], reasoning as follows. Suppose we add the edge $(u, v)$ to $H^{(u, v)}$ during Algorithm \[alg:spanners\]. Then, there is a set $F$ of $f$ nodes that lie on any $u \leadsto v$ $5$-walk. Consider any such node $x$, and assume without loss of generality that $x$ is in the first half of any $u \leadsto v$ $5$-walk. We then count the number of $u \leadsto v$ $5$-walks including $x$ as follows: there are $D^2$ ways to choose the first four nodes on the walk (since $u, x$ are two of them), and there are $f$ ways to choose the last two nodes on the walk (since $v$ is the last node on the walk and we have specified the fourth node on the walk, and we have assumed that there are only $O(f)$ possible $2$-walks between these nodes). Hence there are $O(fD^2)$ $u \leadsto v$ $5$-walks including $x$; applying a union bound over $F$, we have $O(f^2 D^2)$ $u \leadsto v$ $5$-walks in total, and this leads to an improved bound $$c_6 = O \left( |E_H| \cdot (fD)^2 \right).$$
(0, 0) circle \[radius=0.15cm\]; (10, 0) circle \[radius=0.15cm\]; at (0, 0) [$u$]{}; at (10, 0) [$v$]{}; at (5, 0) [$\cdots$]{};
(2, 0) ellipse (0.5cm and 2cm); (4, 0) ellipse (0.5cm and 2cm); (6, 0) ellipse (0.5cm and 2cm); (8, 0) ellipse (0.5cm and 2cm);
at (1.8, -2) [First layer\
size is\
$|F| = f$]{}; (2, 0) circle \[radius=0.15cm\]; (2, 1) circle \[radius=0.15cm\]; (2, -1) circle \[radius=0.15cm\]; (0, 0) – (2, 0); (0, 0) – (2, 1); (0, 0) – (2, -1);
(2, 1) – (4, 1.5); (2, 1) – (4, 1); (2, 1) – (4, 0.5); (2, 1) – (4, 0); (2, 1) – (4, -0.5); (2, 1) – (4, -1); (2, 1) – (4, -1.5);
(2, 0) – (4, 1.5); (2, 0) – (4, 1); (2, 0) – (4, 0.5); (2, 0) – (4, 0); (2, 0) – (4, -0.5); (2, 0) – (4, -1); (2, 0) – (4, -1.5);
(2, -1) – (4, 1.5); (2, -1) – (4, 1); (2, -1) – (4, 0.5); (2, -1) – (4, 0); (2, -1) – (4, -0.5); (2, -1) – (4, -1); (2, -1) – (4, -1.5);
at (6, -2) [$O(fD^2)$ walks\
from $u$ to\
third layer]{};
(6, 1.5) circle \[radius=0.15cm\]; (6, 1) circle \[radius=0.15cm\]; (6, 0.5) circle \[radius=0.15cm\]; (6, 0) circle \[radius=0.15cm\]; (6, -0.5) circle \[radius=0.15cm\]; (6, -1) circle \[radius=0.15cm\]; (6, -1.5) circle \[radius=0.15cm\];
(8, 0) circle \[radius=0.15cm\]; (8, 1) circle \[radius=0.15cm\]; (8, -1) circle \[radius=0.15cm\];
(6, 0) – (8, 1); (6, 0) – (8, 0); (6, 0) – (8, -1); (10, 0) – (8, 1); (10, 0) – (8, 0); (10, 0) – (8, -1);
at (10, -2) [$f$ ways\
to complete a\
walk from the\
third layer to $v$]{};
This is precisely the bound on $c_6$ needed to prove Theorem \[thm:upper-bounds\] for $k=3$! Of course, it “only” remains to justify our assumption that there are no more than $O(f)$ $2$-walks between any two nodes, while we have only proved this statement in the average case. This requires new machinery. At a high level, we accomplish this by carefully restricting our attention to a subset of the paths in $H$; in particular, we “block” $2$-paths that exceed the desired $O(f)$ bound, and then use something morally similar to the above proof to show that each edge $(u, v)$ completes only $O(f^2 D^2)$ “unblocked” closed $6$-walks. It is a careful balancing act to define these terms in the right way while still having an analog of Lemma \[lem:4cyc-cs\] that applies when only “unblocked” closed $6$-walks are considered. However, with enough precision, it can be done.
Some additional technical work not mentioned here is required to avoid a dependence of the form e.g. $O(\text{poly}(k))$ in our upper bound. We defer a discussion of this point to the appendix.
Overview: Lower Bounds for Larger $k$
=====================================
Regularizing $H$ \[app:reg\]
============================
Before diving into our main analysis, it will be convenient as before to assume that $H$ is “approximately regular.” We justify this assumption by the following argument.
\[lem:k-reg\] Suppose that Theorem \[thm:upper-bounds\] holds for all graphs $G$ whose corresponding output graphs $H$ have the property that their maximum degree is at most $c$ times their minimum degree, for some universal constant $c$. Then Theorem \[thm:upper-bounds\] holds in general.
We shall prove this lemma by showing the contrapositive. We suppose that $G = (V, E)$ is an $n$-node graph that serves as a counterexample to Theorem \[thm:upper-bounds\] (i.e. its corresponding output graph $H$ has $n^{1 + 1/k} f^{1 - 1/k} \omega(1)^k$ edges). Our goal is then to show that there is a subgraph $G' \subseteq G$ on at least $n^{1/(2k)}$ nodes that also serves as a counterexample to Theorem \[thm:upper-bounds\], and the maximum degree of $G'$ is larger than its minimum degree by a factor of $O_k(1)$. Hence, in the proof of Theorem \[thm:upper-bounds\] we may assume this approximate regularity condition. We will then rule out the existence of a family of $G'$, and this rules out the general existence of $G$. Note that the constraint that $G'$ has at least $n^{1/(2k)}$ nodes is used to ensure that an infinite family of $G$ implies an infinite family of $G'$; any super-constant function would work equally well for our application of this lemma.
First, we may assume that $G = H$; if our algorithm discards any edge in $G$, we may simply delete this edge from $G$ and it is clear that this deletion will not change the corresponding output graph $H$. Let $n$ be the number of nodes in $G=H$ and let $D$ be its average degree. Partition the nodes of $G$ into two sets: the set $A$ of nodes that have degree $cD$ or less, and the set $B$ of nodes that have degree more than $cD$ (for some constant $c = c_k$ that will be chosen later). By Markov’s inequality we have $|B| \le n/c$. Partition the edges of $G$ into three sets: $E_A$ where both endpoints are in $A$, $E_B$ where both endpoints are in $B$, and $E_{AB}$ that has one endpoint in each. Compare the sizes of $E_A, E_B, E_{AB}$; keep all edges in the largest set and discard all edges in the other two (ties may be broken arbitrarily). We now split into cases based on which set survived.
#### (a) $E_A$ Survived.
We now have a maximum degree of $cD$ in the remaining graph, while its average degree is still $\Omega(D)$ (since we have only discarded a constant fraction of the edges). Let $D'$ be the new average degree of $E_A$, and repeatedly delete all nodes from $G$ that have degree $D'/4$ or less until all nodes have degree at least $D' / 4$. Note that only $n \cdot D'/4$ edges (which is at most half the remaining edges in $G$) will be removed in this way. The remaining subgraph $G'$ is now sparser than the original graph $G$ by only a constant factor and its maximum and minimum degrees are both $\Theta(D)$. Additionally, the number of nodes $n'$ in $G'$ is $n' = \Omega(|E|)/\Theta(D) = \Omega(n)$. Thus $G'$ satisfies the lemma.
#### (b) $E_B$ Survived.
We now obtain a subgraph $G'$ by deleting all nodes in $A$ (which now have degree $0$). The average degree in the remaining subgraph $G'$ is at least $cD/3$, and it has $1/c$ as many nodes as before. It is not necessarily the case that $G'$ is approximately regular, but we may now recurse the argument on $G'$ to enforce this property (it remains to be proved that this recursion terminates before removing too many nodes from $G$). Note that $G'$ has higher average degree and fewer nodes than $G$, so it still serves as a counterexample graph to our claimed bound.
#### (c) $E_{AB}$ Survived.
The average degree of the nodes in $A$ is now at least $D/6$, since we have deleted at most $1/3$ of the edges since setting $D$ and (since the graph is now bipartite) each edge is incident on one node in $A$. Our next step is to delete all nodes from $A$ except for the $|B|$ nodes in $|A|$ with the highest remaining degree. The average degree in the remaining subgraph $G'$ is then still at least $D/6$. We also have $2|B| \le \frac{2}{c} \cdot n$ nodes remaining in $G'$. We then once again recurse the analysis on the remaining subgraph (and we will prove shortly that this recursion terminates before removing too many nodes).\
In the latter two cases, we recurse the analysis on a subgraph $G'$ of the original graph. We will now show that, if $c$ is chosen to be suitably large, then the recursion must eventually terminate in case (a) while the graph still has $\text{poly}(n)$ nodes (where $n$ is the number of nodes in the original graph $G$). Naturally, throughout the recursion, the average degree $D^*$ in the subgraph being considered cannot exceed the number of nodes $n^*$ in that subgraph. However, after $k$ rounds of recursion that avoid case (a), we have $$D^* \ge \frac{D}{6^k} \ge \frac{n^{1/k}}{6^k}$$ and $$n^* \le n \cdot (2/c)^k$$ We thus have $$\begin{aligned}
\frac{n^{1/k}}{6^k} &\le n \cdot (2/c)^k\\
(c/12)^k &\le n^{1 - 1/k}\\
k \log(c/12) &\le (1 - 1/k) \log n \le \log n\end{aligned}$$ Thus, by choosing $c$ sufficiently large, we have that $k \le \frac{\log n}{c'}$ (for some constant $c'=\log(c/12)$ that can be made arbitrarily large by choice of $c$). This means that the recursion bottoms out at depth $\frac{\log n}{c'}$, at which point the average degree of the graph is $$D^* \ge \frac{n^{1/k}}{3^{\log n / c'}} \ge \frac{n^{1/k}}{n^{1/c''}} = n^{1/k - 1/c''}$$ where $c''$ is another constant that can be made arbitrarily large by pushing $c'$ arbitrarily large. Choosing $c'' \ge 2k$ we have $D^* \ge n^{1/(2k)}$ and so the recursion must terminate while the graph still has at least $n^{1/(2k)}$ nodes, as claimed.
Now if we set $c''=2k$, then we are setting $c=12\cdot 9^k$. If the recursion bottoms out after $i\leq k$ levels in case (a), then after applying case (a), the average degree is $D^{*}\geq D/(2\cdot 6^i)$ and the number of nodes is $n^*\leq n(2/c)^i$. We will explicitly show that the subgraph $G^*$ we have obtained is a counterexample, provided $G$ was. We know that in $G$, the number of edges is $Dn/2\geq n^{1+1/k}f^{1-1/k}Q$ where $Q\geq\omega(1)$. We will show that in $G^*$, the number of edges is $\geq (n^*)^{1+1/k}f^{1-1/k}Q$, and hence $G^*$ is also a counterexample.
First, notice that $n^*\leq n(2/c)^i = n(1/(6\cdot 9^k)^i \leq n/(2^k\cdot 6^{ki})$. Thus, $(n^*)^{1/k}\leq n^{1/k}/(2\cdot 6^i)$. Now, since $D\geq 2n^{1/k}f^{1-1/k}Q$ (since $G$ is a counter example), we get that $D^*\geq D/(2\cdot 6^i)\geq 2f^{1-1/k} Q n^{1/k}/(2\cdot 6^i)\geq 2f^{1-1/k} (n^*)^{1/k} Q$, and hence the number of edges in $G^*$ is $D^* n^*/2\geq f^{1-1/k} (n^*)^{1+1/k} Q$, and so $G^*$ is also a counterexample of nontrivial size.
Hence, it suffices to refute the existence of “approximately regular” graphs $G'$ that violate Theorem \[thm:upper-bounds\]. By contrapositive of Lemma \[lem:k-reg\], this would imply that no *general* graph may violate Theorem \[thm:upper-bounds\]. Note that this argument implies Lemma \[lem:3-reg\] by plugging in $k=2$.
As we proceed, we will assume that the maximum and minimum degrees of the input graph $G$ differ by a factor of $O_k(1)$. In fact, as before we may assume that $G = H$, so we may assume this same approximate regularity property for $H$. Moreover, we will assume that all nodes in $H$ have degree in the interval $[D, \psi_k D]$ for some parameter $D$ that we carry into the following proofs. From the argument in Lemma \[lem:k-reg\], we have that $\psi_k\leq 2^{O(k)}$.
Upper Bounds for $k \ge 3$ \[app:k-ub\]
=======================================
We now prove Theorem \[thm:upper-bounds\] for larger $k$. For convenience, we will assume that all edges in $H$ have unique weights, and are thus considered by our algorithm in a consistent order (or it suffices that ties between equally-weighted edges are broken in some consistent fashion).
Definitions, Notation, and some Intuition
-----------------------------------------
First let us introduce some new notation related to walks in $H$. We write $\overline{w}$ to denote the reverse of a walk $w$, we write $w^i$ to denote the $i^{th}$ node in the walk $i$ (indexing from $0$), and for two walks $w_1, w_2$ such that the last node of $w_1$ equals the first node of $w_2$, we write $w_1 w_2$ to denote their concatenation in the natural way.
As mentioned in Section \[sec:ub-overview\], it is easy to prove a suitable generalization of Lemma \[lem:4cyc-cs\] but hard to prove a suitable generalization of Lemma \[lem:4cyc-completion\]. The difficulty in proving Lemma \[lem:4cyc-completion\] for $k > 2$ is in handling pair of nodes $u, v$ for which the number of $u \leadsto v$ $k$-walks is much larger than the average number of $k$-walks over all nodes pairs in the graph. Our solution is to “block” these irregular parts of the graph, essentially throwing away a constant fraction of the available walks in the graph in exchange for a guarantee of “regularity” on the ones that survive. Specifically, we will shortly define a set ${\mathcal{B}}$ of walks in $H$, where each $b \in {\mathcal{B}}$ is called a *blockade*. A walk $w$ in $H$ is *blocked* by some ${\mathcal{B}}$ if there is a blockade $b \in {\mathcal{B}}$ such that $b$ or $\overline{b}$ is a sub-walk of $w$ (we use the notation $b \subseteq w$ or $\overline{b} \subseteq w$).
After appropriately designing ${\mathcal{B}}$, it is tempting to generalize Lemma \[lem:4cyc-completion\] by counting unblocked closed walks. A technical detail of introducing blocks is that this is no longer quite the right object to count. Let us define:
An *$i$-walk meet* is an ordered pair of (possibly identical) $i$-walks with the same start and end points.
The proof of Lemma \[lem:4cyc-completion\] works by observing that the number of $2$-walk meets is the same as the number of closed $4$-walks, up to constant factors. However, it is not necessarily the case that the number of *unblocked* $i$-walk meets is within a constant factor of the number of *unblocked* closed $2i$-walks. Indeed, the number of $i$-walk meets can be much larger. This happens because there are $2i$ different $i$-walk meets corresponding to each closed $2i$-walk, and one can imagine that some of these are blocked but others are unblocked. With this in mind, our proof works by counting $i$-walk meets directly rather than passing through any attempt to count closed walks, as before.
(0, 0) circle \[radius=3cm\]; (0, -3) circle \[radius=0.15cm\]; at (0, -3) [$x$]{}; (-3, 0) circle \[radius=0.15cm\]; at (-3, 0) [$a$]{}; (0, 3) circle \[radius=0.15cm\]; at (0, 3) [$b$]{}; (3, 0) circle \[radius=0.15cm\]; at (3, 0) [$c$]{};
plot ([3\*cos()]{}, [3\*sin()]{}); plot ([2.7\*cos()]{}, [2.7\*sin()]{}); plot ([2.7\*cos()]{}, [2.7\*sin()]{});
We shall write $W^{{\mathcal{B}}}, X^{{\mathcal{B}}}$ to denote the set of walks in $H$ that are unblocked and blocked by ${\mathcal{B}}$, respectively. We will frequently omit the superscript when it is simply ${\mathcal{B}}$ (we never refer to $W$ in the absence of a blockade set). We also use the following modifiers on the sets ${\mathcal{B}}, W, X$: we denote by ${\mathcal{B}}_i, {\mathcal{B}}_{\le i}$ the subset of walks in ${\mathcal{B}}$ of length $i$ or length at most $i$, respectively, and we denote by ${\mathcal{B}}[s \leadsto t]$ to denote the subset of walks in ${\mathcal{B}}$ with endpoints $s, t$ (and similar notation is used on $W, X$). Note that $X_i^{{\mathcal{B}}}$ is not to be confused with ${\mathcal{B}}_i$. Similarly, we denote by $M_i^{{\mathcal{B}}}$ is the set of all unblocked $i$-walk meets in $H$, and $M_i^{{\mathcal{B}}}[s \leadsto t]$ is the subset of these where both walks in the meet start at $s$ and end at $t$. We will also frequently suppress the superscript, although there is always an implicit ${\mathcal{B}}$.
Our goal is to establish the following inequality: $$\Theta(D)^{2k} \leq \left|M_k^{{\mathcal{B}}_{\leq k-1}}\right| \leq \Theta_{k}\left(\left|E_H\right|\cdot (fD)^{k-1}\right)$$ which will then imply an upper bound on $|E_H|$ by some straightforward algebra. The left-hand inequality is shown in Lemmas \[lem:unblocked-count\] and \[lem:kcyc-cs\]. The high level idea here is that, if we only block a small enough constant fraction (dependent on $k$) fraction of the $i$-walks for all $i\leq k$, then the number of unblocked $k$-walk meets is still nearly as large as one would expect without blockades (using the Cauchy-Schwartz Inequalty). The main technical effort goes into the right-hand inequality. This is proved using a delicate interlacing inductive argument, in which two complementary counting arguments are proved for the case $i=2$ and then used to boost each other up to $i=k$. Specifically, we show an interesting interplay between (1) bounding the number of unblocked $i$-walk meets $M_i^{{\mathcal{B}}\leq i-1}$ and (2) choosing $i$-length blockades to bound the number of unblocked $i$-walks $W_i^{{\mathcal{B}}\leq i}[u \leadsto v]$ between any given pair of nodes $u,v$ (Lemma \[lem:building-blocks\]). The latter bound is then used to bounding the number of unblocked $i+1$-walk meets $M_{i+1}^{{\mathcal{B}}\leq i}$, and so on.
Lower Bound for $|M_k|$ (Generalization of Lemma \[lem:4cyc-cs\])
-----------------------------------------------------------------
The following lemma generalizes the fact used in the $k=2$ setting that we have $\Theta(nD^2)$ $2$-walks in $H$ to consider.
\[lem:unblocked-count\] There is some $\phi_k > 0$ (independent of $n, f$) such that the following property holds: if ${\mathcal{B}}_i$ contains at most a $\phi_k$ fraction of all $i$-walks in $H$ for all $i$, then $$|W_i| \ge n \Theta(D)^i \quad \text{for all } i \le k.$$
First note that we have $$nD^i \le |W_i \cup X_i| \le n(\psi_kD)^i$$ *total* walks in $H$ (recall that by our regularization procedure, we can assume that all vertices have degree in $[D, \psi_k D]$). We now upper bound $X_i$. Each $x \in X_i$ has a subpath $x \supseteq b \in {\mathcal{B}}$. We may thus upper bound $X_i$ by the following (somewhat loose) estimate: $$|X_i| \le \sum \limits_{j=2}^{i} |{\mathcal{B}}_j| \cdot (2\psi_kD)^{i-j},$$ since each blocked path $x \in X_i$ may be obtained via $i - |b|$ extensions of some blockade $b \in {\mathcal{B}}_{\le i}$ by adding an edge to its front or back, and there are up to $2\psi_k D$ ways to extend any given walk by $1$ edge on either end. Since $|{\mathcal{B}}_j| \le \phi_k n(\psi_k D)^j$ we have $$|X_i| \le \sum \limits_{j=2}^{i} n \phi_k \cdot (2)^{i-j} (\psi_k D)^i \le n\phi_k (2\psi_k D)^i.$$ Hence, choosing $\phi_k \le \frac{1}{(4\psi_k)^k}$ (this is overkill), we have $$|X_i| \le n (D/2)^i$$ And so $$|W_i| \ge |W_i \cup X_i| - |X_i| \ge nD^i - n(D/2)^i = n\Theta(D)^i$$ and the lemma follows.
With this, we can prove:
\[Generalization of Lemma \[lem:4cyc-cs\]\] \[lem:kcyc-cs\] If $|W_k| = n \Theta(D)^k$, then $|E_H| = O_k\left(n\left|M_k\right|^{1/(2k)}\right)$.
The proof is essentially identical to that of Lemma \[lem:4cyc-cs\]. We have $$\begin{aligned}
\left|M_k \right| &= \sum \limits_{(u, v) \in V \times V} \left|W_k [u \leadsto v]\right|^2\\
&\ge \frac{ \left(\sum \limits_{(u, v) \in V \times V} \left|W_k [u \leadsto v]\right| \right)^2 }{n^2} & \text{Cauchy-Schwarz Inequality}\\
&= \frac{ \left(n\Theta(D)^k \right)^2 }{n^2}\\
&= \Theta(D)^{2k}\end{aligned}$$ and so $$\begin{aligned}
\left|M_k\right|^{1/(2k)} &\ge D\\
n\left|M_k\right|^{1/(2k)} &\ge nD\\
n\left|M_k\right|^{1/(2k)} &= \Omega_k\left(|E_H|\right) \\\end{aligned}$$ which implies the lemma.
Upper Bound for $|M_k|$ (Generalization of Lemma \[lem:4cyc-completion\])
-------------------------------------------------------------------------
We now begin to work towards a generalization of Lemma \[lem:4cyc-completion\]. The argument will be inductive in nature. Lemma \[lem:4cyc-completion\] will essentially serve as the base case, and the inductive step is split across the next two lemmas.
\[lem:meet-count\] Suppose that $\left|W_j[u \leadsto v]\right| = O_k\left(f^{j-1}\right)$ for all $u, v$ and all $j < i$ for some fixed $i \le k$. Then $$\left|M_i \right| =O_k\left(|E_H| \cdot (fD)^{i-1}\right).$$
For a given $i$-walk meet $(w_1, w_2)$, we will say that the *shift* $s_x$ of a node $x \in w_1 \cup w_2$ is its first position in $w_1 \overline{w_2}$ (so $0 \le s_x < 2i$). Similarly, the shift $s_{(u, v)}$ of an edge $(u, v)$ is the first position of this edge in $w_1 \overline{w_2}$ (where the first edge in $w_1 \overline{w_2}$ is indexed from $0$).
As before, when we choose to add any $(u, v)$ to $H$, it is not $(2k-1, f)$ protected in $H^{(u, v)}$ and so there is a set $F$ of $|F| \le f$ nodes (with $u, v \notin F$) such that every $u \leadsto v$ walk of length $2i-1$ intersects some node $x \in F$. Note that each $(w_1, w_2) \in M_i$ that is completed by the addition of the edge $(u, v)$ to $H$ corresponds to a $u \leadsto v$ walk of length $2i-1$ for $i \leq k$ (obtained by joining the common start/endpoint of $w_1 \overline{w_2}$ to create a *circular* walk, and then removing the edge $(u, v)$ from this walk). Thus $x \in w_1 \cup w_2$ for some $x \in F$. Our proof strategy is: we fix a shift $s_{(u, v)}$ for the edge $(u, v)$, we fix a node $x \in F$ and a shift value $s_x$ for $x$, and we will show that the addition of the edge $(u, v)$ to $H^{(u, v)}$ completes only $O_k\left(f^{i-2} D^{i-1}\right)$ $i$-walk meets including the node $x$ in which $(u, v), x$ have their prescribed shift values. Since there are $O_k(f)$ possible choices of $x \in F, 0 \le s_x, s_{(u, v)} \le 2k$, this implies $$\left|M_i\right| = O_k\left(|E_H| \cdot (fD)^{i-1}\right)$$ by a simple union bound over $(u, v) \in E_H$ and over the possible choices of $x, s_x, s_{(u, v)}$.
In the rest of this proof we will assume $0 \le s_{(u, v)} \le i-1$, and so $(u, v) \in w_1$ (we also assume without loss of generality that $u$ precedes $v$ in $w_1$). The proof for the remaining case $i \le s_{(u, v)} < 2i$ is identical with the roles of $w_1, w_2$ swapped. We will denote by $M'_i$ the subset of $M_i$ satisfying the criteria mentioned thus far (i.e. with $(u, v)$ at shift $s_{(u, v)}$ and $x$ at shift $s_x$). We split into two cases, depending on the value of $s_x$.
#### (a) Suppose $0 \le s_x \le i+1$.
Let $P$ be the set of $i+1$-walks in $H^{(u, v)}$ that include node $u$ in position $s_{(u, v)}$, node $v$ in position $s_{(u, v)} + 1$, and node $x$ in position $s_x$ ($P$ can even include blocked walks). We next count $|P|$. Supposing $s_x > s_{(u, v)}$, after fixing the node $u$ in position $s_{(u, v)}$, there are $(\psi_k D)^{s_{(u, v)}}$ ways to choose a prefix for the walk, and there are $(\psi_k D)^{i - 1 - s_{(u, v)}}$ ways to choose a suffix for the walk, since $v, x$ have fixed positions following $u$. Hence $|P| = (\psi_k D)^{s_{(u, v)}} \cdot (\psi_k D)^{i - 1 - s_{(u, v)}} = O_k(D^{i-1})$. If instead we have $s_x < s_{(u, v)}$ then the argument and bound are identical (with a factor of $\psi_k D$ shifted from the prefix to the suffix).
For each $p = \left(p^0, \ldots, p^{i+1}\right) \in P$, let $Q^p$ be the set of suffixes such that for each $q \in Q^p$, we have $qp = w_1\overline{w_2}$ for some $(w_1, w_2) \in M'_i$. We now count $\left|Q^p\right|$. Note that each $q \in Q^p$ has the form $q = w_1 \overline{w_2} \setminus p$, and so $\overline{q}$ is an $i-1$-subwalk of $w_2$; since $w_2$ is unblocked by definition of $i$-walk meets, it follows that $q$ is unblocked as well. Thus $Q^p \subseteq W_{i-1}[p^{i+1} \leadsto p^0]$, and so $$\left| Q^p \right| \le \left| W_{i-1}[p^{i+1} \leadsto p^0] \right| = O_k\left(f^{i-2}\right)$$ We then have $$\left|M'_i\right| = \sum \limits_{p \in P} \left| Q^p \right| \le |P| \cdot O_k\left(f^{i-2}\right) = O_k\left(f^{i-2} D^{i-1}\right)$$ as claimed.
#### (b) Instead suppose $i+2 \le s_x < 2i$.
This implies that $x \notin w_1$ so $x \in w_2$. The proof is now only a slight tweak on the previous case. We define $P$ to be the set of $i$-walks (not $i+1$ walks as before) in $H^{(u, v)}$ that have $u$ in position $s_{(u, v)}$ and $v$ in position $s_{(u, v)} + 1$. By an identical counting argument as in the previous case, we have $|P| = O_k(D^{i-1})$. As before, for each fixed $p = \left(p^0, \dots, p^{i}\right) \in P$ we define $Q^p$ as the set of suffixes such that for each $q \in Q^p$, we have $qp = w_1 \overline{w_2}$ for some $(w_1, w_2) \in M_i$, and our goal is to count $\left|Q^p\right|$. Note that we then have $\overline{q} = w_2$ and so $q$ is unblocked. Unlike before, we have $x \in q$ so we may split each $q \in Q^p$ into two subpaths over $q$. Specifically, let $$Q_1 := \left\{q_1 \subseteq q \ \mid \ q_1^0 = p^i, q_1^{s_x - i} = x, q \in Q^p\right\}$$ and $$Q_2 := \left\{q_2 \subseteq q \ \mid \ q_2^0 = x, q_2^{2i - s_x} = p^0, q \in Q^p\right\}$$ (in other words, for any $q \in Q^p$, we split $q$ over the node $x$ and add its prefix to $Q_1$ and its suffix to $Q_2$). Since each $q \in Q^p$ is unblocked, we also have that each $q_1 \in Q_1, q_2 \in Q_2$ is unblocked. Thus $Q_1 \subseteq W_{s_x - i}[p^i \leadsto x]$ and $Q_2 \subseteq W_{2i - s_x}[x \leadsto p^0]$. We then have $$\left| Q^p \right| \le \left|Q_1 \right| \cdot \left|Q_2 \right| \le O_k\left(f^{s_x - i - 1}\right) \cdot O_k\left(f^{2i - s_x - 1}\right) = O_k\left(f^{i-2}\right)$$ and so, as before, $$\left|M'_i\right| = \sum \limits_{p \in P} \left|Q^p \right| = |P| \cdot O_k\left(f^{i-2}\right) = O_k \left( f^{i-2} D^{i-1} \right)$$ as claimed.
We next show:
\[lem:building-blocks\] Let $2 \le i \le k$. Suppose that $$\left|M_i^{{\mathcal{B}}_{\le i-1}}\right| = O_k\left(|E_H| \cdot (fD)^{i-1}\right).$$ Then there exists a set ${\mathcal{B}}_i$ of $i$-length blockades such that $$\left| W_i^{{\mathcal{B}}_{\le i-1} \cup {\mathcal{B}}_i} [u \leadsto v] \right| = O_k\left(f^{i-1}\right) \qquad \text{for all } u, v \in V$$ and ${\mathcal{B}}_i$ contains at most a $\phi_k$ fraction of all $i$-walks in $H$, for any desired constant $\phi_k > 0$ depending only on $k$.
We construct ${\mathcal{B}}_i$ iteratively as follows: initially ${\mathcal{B}}_i = \emptyset$; we then repeatedly choose the node pair $u, v$ that maximizes $\left| W_i^{{\mathcal{B}}_{\le i-1} \cup {\mathcal{B}}_i} [u \leadsto v] \right|$ (ties may be broken arbitrarily), choose any walk $b \in W_i^{{\mathcal{B}}_{\le i-1} \cup {\mathcal{B}}_i} [u \leadsto v]$, and add $b$ to ${\mathcal{B}}_i$ (note that the sets $W_i^{{\mathcal{B}}_{\le i-1} \cup {\mathcal{B}}_i} [u \leadsto v]$ shrink throughout this process as we grow ${\mathcal{B}}_i$). Repeat until no more walks may be added to ${\mathcal{B}}_i$ without destroying the property that ${\mathcal{B}}_i$ contains at most a $\phi_k$ fraction of all $i$-walks in $H$.
We now argue that ${\mathcal{B}}_i$ satisfies the lemma. Observe that $\left|M_i[s \leadsto t]\right| = \left|W_i[s \leadsto t]\right|^2$ for any $s, t \in V$. Suppose towards a contradiction that ${\mathcal{B}}_i$ does *not* satisfy the lemma; that is, $$\left| W_i^{{\mathcal{B}}_{\le i-1} \cup {\mathcal{B}}_i} [u \leadsto v] \right| = \omega_k\left(f^{i-1}\right) \qquad \text{for some } u, v \in V.$$ Then while we iteratively build ${\mathcal{B}}_i$, each time we choose a node pair $s, t$ that maximizes\
$\left| W_i^{{\mathcal{B}}_{\le i-1} \cup {\mathcal{B}}_i} [s \leadsto t] \right|$, we must have $$\left| W_i^{{\mathcal{B}}_{\le i-1} \cup {\mathcal{B}}_i} [s \leadsto t] \right| = \omega_k\left(f^{i-1}\right).$$
Thus, when we add some $b \in W_i^{{\mathcal{B}}_{\le i-1} \cup {\mathcal{B}}_i} [s \leadsto t]$ to ${\mathcal{B}}_i$, the size of $\left(\left|W_i[s \leadsto t]\right|-1\right)^2$ falls from $\left|W_i[s \leadsto t]\right|^2$ to $$\left(\left|W_i[s \leadsto t]\right|-1\right)^2 = \left|W_i[s \leadsto t] \right|^2 - \Omega\left(\left|W_i[s \leadsto t]\right|\right) = \left|W_i[s \leadsto t] \right|^2 - \omega_k\left(f^{i-1}\right)$$ and so the total number of $i$-walk meets in $H$ falls by an additive $\omega_k\left(f^{i-1}\right)$ term in each iteration of building ${\mathcal{B}}_i$. By Lemma \[lem:unblocked-count\] there are $n\Theta_k(D)^i$ total $i$-walks in $H$, so $$\left| {\mathcal{B}}_i \right| = \phi_k \cdot n\Theta_k(D)^i = n\Theta_k(D)^i.$$ Hence the number of $i$-walk meets falls by $$\omega_k \left(f^{i-1} \right) \cdot n\Theta_k(D)^i = \omega_k\left( |E_H| \cdot (fD)^{i-1}\right)$$ from start to finish of the process of building ${\mathcal{B}}_i$ (since $|E_H| = n\Theta_k(D)$). This is a contradiction, since we assumed that initially $\left|M_i^{{\mathcal{B}}_{\le i-1}}\right| = O_k\left( |E_H| \cdot (fD)^{i-1}\right)$. Thus ${\mathcal{B}}_i$ satisfies the lemma statement.
\[Generalization of Lemma \[lem:4cyc-completion\]\] \[lem:kcyc-completion\] There is a blockade set ${\mathcal{B}}$ for which $$\left|M_k\right| = O_k\left( \left| E_H \right| (fD)^{k-1} \right)$$ and for all $i \le k$, the set ${\mathcal{B}}_i$ contains at most a $\phi_k$ fraction of all $i$-walks in $H$, for any desired constant $\phi_k > 0$ depending only on $k$.
We will inductively show that two statements hold for all $2 \le i \le k$:
- (The lemma statement) There is a blockade set ${\mathcal{B}}_{\le i-1}$ (with maximum blockade length $i-1$) such that (1) ${\mathcal{B}}_j$ contains at most a $\phi_k$ fraction of all $j$-walks in $H$ for all $j \leq i-1$, and (2) $\left|M_i^{{\mathcal{B}}_{\leq}i-1}\right| = O_k\left(\left|E_H\right| (fD)^{i-1} \right)$.
- (An auxiliary statement) We have $\left| W_j^{{\mathcal{B}}} [u \leadsto v] \right| = O_k\left(f^{j-1}\right)$ for all $u, v \in V$ and $j \le i-1$.
We first argue the base case $i=2$. For the first condition (lemma statement), we appeal to Lemma \[lem:4cyc-completion\] to argue that the bound holds even when ${\mathcal{B}}_{\le 1} = \emptyset$. Specifically, note that without blockades, each closed $4$-walk in $H$ corresponds in the natural way to $\Theta(1)$ $i$-walk meets. Thus $$\left|M_2^{\emptyset}\right| = O\left( \left| E_H \right| \cdot fD \right).$$ We also note that the auxiliary statement holds trivially when $i=2$; it simply states that there is at most $1$ edge between any two nodes.
Now we argue the inductive step, assuming that both of the above properties hold for $i$. The first part of the induction (the lemma statement) coincides with the premise of Lemma \[lem:building-blocks\], so we may find a set ${\mathcal{B}}_i$ as in the conclusion of Lemma \[lem:building-blocks\]. That is, we have $$\left| W_i^{{\mathcal{B}}_{\leq i-1} \cup {\mathcal{B}}_i} [u \leadsto v] \right| = O_k\left(f^{i-1}\right) \qquad \text{for all } u, v \in V.$$ This statement (together with the auxiliary inductive hypothesis) proves the auxiliary statement for the case $i+1$. The auxiliary statement for the case $i+1$ also coincides with the premise of Lemma \[lem:meet-count\]; applying this lemma, we have $$\left|M_{i+1}^{{\mathcal{B}}_{\leq i-1} \cup {\mathcal{B}}_i}\right| = O_k\left( \left| E_H \right| \cdot \left(fD\right)^i \right).$$ This is the lemma statement for the case $i+1$, which completes the inductive hypothesis. Hence the first part of our inductive hypothesis (the lemma statement) holds in the case $i=k$, which completes the proof.
Proof of Theorem \[thm:upper-bounds\]
-------------------------------------
It is now a matter of algebra to complete the proof of Theorem \[thm:upper-bounds\].
\[Proof of Theorem \[thm:upper-bounds\]\] Let ${\mathcal{B}}$ be a blockade set as in Lemma \[lem:kcyc-completion\]. By Lemma \[lem:kcyc-completion\], we have $$\left|M_k\right| = O_k\left( \left| E_H \right| (fD)^{k-1} \right).$$ Additionally, since ${\mathcal{B}}_i$ has at most a $\phi_k$ fraction of all $i$-walks for each $i$, we have $\left|W_i\right| \ge n\Theta(D)^k$ (by Lemma \[lem:unblocked-count\]) and so $$\left|E_H\right| = O_k\left( n\left|M_k\right|^{1/(2k)} \right)$$ by Lemma \[lem:kcyc-cs\]. Combining these, we compute $$\begin{aligned}
\left| E_H \right| &= O_k \left( n \left( \left|E_H \right| \left(fD\right)^{k-1} \right)^{1/(2k)} \right)\\
\left| E_H \right|^{2k-1} &= O_k \left( n^{2k} \left(fD\right)^{k-1} \right)\\
\left| E_H \right|^k &= O_k \left( n^{k+1} f^{k-1} \right) & \text{since } \left|E_H\right| = \Theta_k(nD)\\
\left| E_H \right| &= O_k \left( n^{1 + 1/k} f^{1 - 1/k} \right)\end{aligned}$$ as claimed.
| [
1,
11474,
13,
8921,
29901,
13,
29899,
12051,
19929,
5080,
13,
29899,
5765,
360,
2344,
29920,
13,
29899,
4702,
485,
1459,
357,
13,
29899,
11653,
478,
465,
488,
29894,
4621,
11648,
13,
17481,
5275,
29901,
13,
29899,
525,
276,
10662,
29889,
18508,
29915,
13,
3257,
29901,
891,
13,
1678,
20693,
3039,
1798,
4776,
383,
1292,
16977,
261,
424,
1706,
812,
414,
29905,
13,
1678,
313,
1454,
4343,
16116,
29897,
13,
5634,
13,
13,
25898,
13,
4936,
2751,
13,
13,
26214,
350,
618,
363,
395,
29941,
4388,
5592,
812,
414,
13,
9166,
4936,
2751,
13,
13,
6730,
29892,
591,
505,
29901,
13,
13,
29905,
29961,
2409,
29901,
29941,
29899,
1727,
18899,
12142,
393,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
18899,
8640,
363,
395,
29895,
29922,
29906,
29938,
363,
599,
18445,
395,
29954,
29938,
5069,
6590,
1962,
18445,
395,
29950,
29938,
505,
278,
2875,
393,
1009,
7472,
7426,
338,
472,
1556,
395,
29883,
29938,
3064,
1009,
9212,
7426,
29892,
363,
777,
15968,
4868,
395,
29883,
1504,
1987,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
18899,
8640,
297,
2498,
29889,
13,
13,
1576,
5296,
338,
316,
14373,
304,
22871,
861,
5539,
932,
29901,
1727,
29905,
1402,
408,
372,
338,
10579,
1472,
541,
28143,
304,
278,
1667,
716,
7014,
310,
445,
5650,
29889,
1334,
4091,
5251,
297,
278,
1791,
310,
445,
4004,
393,
395,
29950,
29938,
313,
1552,
3983,
1962,
491,
29068,
30081,
29905,
29961,
9564,
29901,
1028,
812,
414,
29905,
2314,
338,
1346,
9961,
2657,
2486,
4943,
30024,
297,
278,
4060,
310,
11894,
5539,
2409,
29901,
29941,
29899,
1727,
29905,
1822,
5853,
10816,
29892,
10106,
445,
5650,
29892,
591,
1235,
395,
29928,
29938,
367,
263,
1353,
1316,
393,
599,
7573,
297,
395,
29950,
29938,
505,
7426,
779,
17458,
29918,
29895,
29898,
29928,
4935,
13,
13,
2887,
9670,
29892,
263,
334,
20919,
29930,
297,
395,
29950,
29938,
338,
263,
5665,
310,
7573,
313,
28802,
14981,
411,
5565,
1446,
29897,
297,
607,
1432,
5101,
310,
20114,
7573,
338,
6631,
491,
385,
7636,
29889,
319,
6686,
756,
3309,
395,
29875,
29938,
313,
15189,
2000,
385,
395,
29875,
4388,
20919,
29897,
565,
372,
3743,
395,
29875,
29974,
29896,
29938,
7573,
29889,
319,
6686,
338,
334,
15603,
29930,
565,
967,
937,
322,
1833,
7573,
526,
278,
1021,
29889,
1334,
4091,
884,
1827,
393,
385,
7636,
2427,
29884,
29892,
325,
1262,
14393,
304,
263,
6686,
395,
29893,
29938,
565,
278,
7573,
395,
29884,
29892,
325,
29938,
2615,
297,
20114,
11909,
310,
395,
29893,
1504,
2803,
395,
29883,
648,
29906,
29895,
1042,
13530,
278,
1353,
310,
5764,
395,
29906,
29895,
4388,
14625,
2039,
297,
395,
29950,
1504,
13,
13,
3644,
395,
29950,
29938,
338,
278,
805,
7310,
7371,
491,
29068,
5539,
9564,
29901,
1028,
812,
414,
18899,
373,
385,
1881,
3983,
395,
29954,
353,
313,
29963,
29892,
382,
5767,
769,
363,
385,
7636,
2427,
29884,
29892,
325,
29897,
320,
262,
382,
1628,
278,
3983,
395,
29950,
7650,
29884,
29892,
325,
2915,
353,
313,
29963,
29892,
382,
29915,
1262,
338,
3342,
408,
278,
1014,
4262,
310,
395,
29950,
29938,
6943,
3721,
278,
12770,
5545,
1434,
2427,
29884,
29892,
325,
1262,
2645,
278,
1395,
7584,
5687,
313,
1333,
3704,
2427,
29884,
29892,
325,
1262,
3528,
467,
13,
13,
29905,
29961,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
18899,
2046,
29883,
29918,
29946,
353,
438,
27204,
29923,
29918,
29950,
29989,
320,
3822,
285,
29928,
17085,
13,
13,
4806,
2367,
278,
2980,
363,
12688,
12570,
29879,
1244,
29936,
278,
2980,
363,
7636,
12570,
29879,
338,
13674,
13557,
29889,
1334,
4091,
27754,
393,
1269,
7636,
2715,
304,
395,
29950,
29938,
2645,
29068,
5539,
9564,
29901,
1028,
812,
414,
18899,
1614,
2167,
395,
29949,
29898,
29888,
29928,
1262,
5764,
395,
29946,
4388,
14625,
2039,
29892,
607,
769,
10469,
278,
10383,
491,
263,
2560,
9833,
3216,
29889,
13,
13,
3644,
591,
6755,
304,
788,
385,
7636,
2427,
29884,
29892,
325,
1262,
304,
395,
29950,
1628,
769,
2427,
29884,
29892,
325,
1262,
338,
451,
2427,
29941,
29892,
285,
1262,
6364,
297,
395,
29950,
7650,
29884,
29892,
325,
29897,
4311,
6549,
29892,
727,
338,
263,
731,
395,
29943,
29938,
310,
11892,
29943,
29989,
320,
280,
285,
29938,
7573,
1316,
393,
1432,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29941,
4388,
20919,
3743,
263,
2943,
297,
395,
29943,
1504,
19814,
29892,
363,
1269,
2943,
395,
29916,
320,
262,
383,
1628,
727,
526,
395,
29949,
29898,
29928,
1262,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29941,
4388,
14625,
2039,
3704,
278,
2943,
395,
29916,
1628,
1951,
395,
29941,
29938,
310,
278,
395,
29946,
29938,
7573,
373,
445,
6686,
526,
6790,
3255,
29884,
1628,
395,
29894,
1628,
322,
395,
29916,
10931,
322,
278,
11582,
2943,
1818,
367,
697,
310,
278,
395,
29949,
29898,
29928,
1262,
22092,
943,
310,
395,
29916,
1504,
2401,
5890,
263,
9833,
3216,
29892,
278,
3001,
1353,
310,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29941,
4388,
14625,
2039,
297,
395,
29950,
7650,
29884,
29892,
325,
15604,
338,
395,
29949,
29898,
29888,
29928,
4935,
2823,
11479,
5539,
1003,
29901,
29941,
29899,
5729,
12757,
18899,
363,
263,
7623,
6942,
411,
445,
2980,
29889,
13,
13,
2831,
1269,
1316,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29941,
4388,
20919,
297,
395,
29950,
7650,
29884,
29892,
325,
29897,
4429,
591,
4866,
472,
1556,
395,
29947,
29938,
5764,
395,
29946,
4388,
14625,
2039,
491,
4417,
2427,
29884,
29892,
325,
1262,
304,
395,
29950,
7650,
29884,
29892,
325,
15604,
313,
14940,
635,
29892,
1269,
1316,
395,
29941,
4388,
20919,
16161,
304,
263,
2323,
1346,
6034,
1070,
395,
29946,
4388,
20919,
29936,
30024,
591,
1122,
769,
6755,
738,
310,
278,
395,
29946,
29938,
7573,
373,
445,
6686,
304,
9080,
408,
278,
1369,
29914,
355,
2943,
310,
278,
8210,
5764,
6686,
29892,
322,
372,
1122,
367,
9850,
839,
297,
2845,
310,
1023,
18112,
467,
450,
10383,
4477,
29889,
13,
13,
29898,
29900,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29953,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
472,
313,
29900,
29892,
29871,
29900,
29897,
518,
29938,
29884,
29938,
3199,
3400,
472,
313,
29953,
29892,
29871,
29900,
29897,
518,
29938,
29894,
29938,
3199,
3400,
13,
13,
29898,
29906,
29892,
29871,
29900,
29897,
560,
5843,
313,
29900,
29889,
29945,
4912,
322,
29871,
29906,
4912,
416,
313,
29946,
29892,
29871,
29900,
29897,
560,
5843,
313,
29900,
29889,
29945,
4912,
322,
29871,
29906,
4912,
416,
13,
13,
271,
313,
29896,
29889,
29947,
29892,
448,
29906,
29897,
518,
6730,
7546,
29905,
13,
2311,
338,
29905,
13,
29938,
29989,
29943,
29989,
353,
285,
29938,
3199,
3400,
313,
29906,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29906,
29892,
29871,
29896,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29906,
29892,
448,
29896,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29900,
29892,
29871,
29900,
29897,
785,
313,
29906,
29892,
29871,
29900,
416,
313,
29900,
29892,
29871,
29900,
29897,
785,
313,
29906,
29892,
29871,
29896,
416,
313,
29900,
29892,
29871,
29900,
29897,
785,
313,
29906,
29892,
448,
29896,
416,
13,
13,
29898,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
29871,
29896,
29889,
29945,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
29871,
29896,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
29871,
29900,
29889,
29945,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
29871,
29900,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
448,
29900,
29889,
29945,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
448,
29896,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
448,
29896,
29889,
29945,
416,
13,
13,
29898,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29896,
29889,
29945,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29896,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29900,
29889,
29945,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29900,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
448,
29900,
29889,
29945,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
448,
29896,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
448,
29896,
29889,
29945,
416,
13,
13,
29898,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
29871,
29896,
29889,
29945,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
29871,
29896,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
29871,
29900,
29889,
29945,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
29871,
29900,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
448,
29900,
29889,
29945,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
448,
29896,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
448,
29896,
29889,
29945,
416,
13,
13,
271,
313,
29946,
29889,
29906,
29892,
448,
29906,
29897,
518,
29938,
29949,
29898,
29888,
29928,
1262,
17042,
2039,
29905,
13,
3166,
395,
29884,
29938,
304,
29905,
13,
7496,
7546,
3199,
3400,
13,
13,
29898,
29953,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29896,
29889,
29945,
416,
313,
29953,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29896,
416,
313,
29953,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29900,
29889,
29945,
416,
313,
29953,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29900,
416,
313,
29953,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
448,
29900,
29889,
29945,
416,
313,
29953,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
448,
29896,
416,
313,
29953,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
448,
29896,
29889,
29945,
416,
13,
13,
29898,
29946,
29892,
29871,
29896,
29889,
29945,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29946,
29892,
29871,
29896,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29946,
29892,
29871,
29900,
29889,
29945,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29946,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29946,
29892,
448,
29900,
29889,
29945,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29946,
29892,
448,
29896,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29946,
29892,
448,
29896,
29889,
29945,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
13,
13,
29905,
29961,
2409,
29901,
29946,
8798,
29899,
2395,
18899,
2046,
29989,
29923,
29918,
29950,
29989,
353,
438,
29905,
1563,
29898,
302,
274,
29918,
29946,
998,
29896,
29914,
29946,
29913,
320,
1266,
17085,
13,
13,
1576,
3001,
1353,
310,
395,
29906,
4388,
14625,
2039,
297,
395,
29950,
29938,
338,
779,
17458,
29898,
29876,
360,
29985,
29906,
5767,
1951,
591,
505,
395,
29876,
29938,
19995,
363,
1369,
2943,
322,
779,
17458,
29898,
29928,
1262,
22092,
943,
363,
1269,
2943,
29889,
7806,
10372,
5101,
310,
313,
28802,
14981,
13557,
29897,
395,
29906,
4388,
14625,
2039,
2427,
29893,
29918,
29896,
29892,
281,
29918,
29906,
1262,
297,
395,
29950,
29938,
411,
278,
1021,
1369,
322,
1095,
7573,
16161,
20498,
873,
304,
263,
5764,
395,
29946,
4388,
20919,
29892,
7625,
491,
22049,
395,
29893,
29918,
29896,
29938,
322,
769,
395,
29893,
29918,
29906,
29938,
297,
11837,
29889,
6549,
29892,
972,
11427,
491,
395,
29895,
648,
29884,
29892,
325,
1042,
278,
1353,
310,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29906,
4388,
14625,
2039,
29892,
591,
1122,
8147,
6118,
463,
29912,
13671,
29913,
13,
29883,
29918,
29946,
7878,
320,
2083,
320,
12514,
20862,
29884,
29892,
325,
29897,
320,
262,
478,
320,
3706,
478,
29913,
413,
648,
29884,
29892,
325,
2137,
29906,
1966,
13,
11035,
479,
320,
1154,
29912,
320,
1563,
1194,
2083,
320,
12514,
20862,
29884,
29892,
325,
29897,
320,
262,
478,
320,
3706,
478,
29913,
413,
648,
29884,
29892,
325,
29913,
320,
1266,
4887,
29906,
24333,
29876,
29985,
29906,
29913,
669,
320,
726,
29912,
29907,
13989,
29891,
29899,
4504,
4495,
29920,
306,
484,
29567,
9952,
13,
20644,
320,
1154,
741,
17458,
29898,
29876,
29985,
29906,
29928,
29985,
29946,
10172,
29876,
29985,
29906,
29913,
13,
29922,
320,
17458,
29898,
29928,
29985,
29946,
2144,
355,
29912,
13671,
9458,
322,
4550,
395,
17608,
29918,
29946,
998,
29896,
29914,
29946,
29913,
320,
479,
320,
17458,
29898,
29876,
29928,
29897,
353,
891,
29923,
29918,
29950,
29989,
1504,
13,
13,
4806,
526,
1286,
7960,
304,
6356,
1749,
7568,
3216,
363,
395,
29895,
29922,
29906,
1504,
13,
13,
29905,
29961,
28116,
310,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
18899,
363,
395,
29895,
29922,
29906,
4535,
29962,
422,
2109,
292,
8836,
8247,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
18899,
322,
5539,
2409,
29901,
29946,
8798,
29899,
2395,
29905,
1402,
591,
10272,
6118,
463,
29912,
13671,
29913,
13,
29989,
29923,
29918,
29950,
29989,
7878,
438,
29905,
1563,
29898,
302,
320,
1563,
27204,
29923,
29918,
29950,
29989,
320,
3822,
285,
29928,
320,
1266,
8940,
29896,
29914,
29946,
29913,
320,
1266,
18775,
13,
29989,
29923,
29918,
29950,
15333,
29941,
7878,
438,
29905,
1563,
29898,
29876,
29985,
29946,
285,
29928,
320,
1266,
18775,
13,
29989,
29923,
29918,
29950,
15333,
29906,
7878,
438,
29905,
1563,
29898,
29876,
29985,
29941,
285,
320,
1266,
29897,
669,
320,
726,
29912,
16076,
500,
891,
29923,
29918,
29950,
29989,
353,
320,
17458,
29898,
29876,
29928,
18775,
13,
29989,
29923,
29918,
29950,
29989,
7878,
438,
29905,
1563,
29898,
29876,
998,
29941,
29914,
29906,
29913,
285,
998,
29896,
29914,
29906,
29913,
320,
1266,
467,
320,
29939,
287,
4150,
29905,
355,
29912,
13671,
9458,
13,
13,
19357,
350,
618,
363,
395,
29941,
4388,
5592,
812,
414,
426,
29937,
3471,
29901,
13609,
29899,
29906,
29913,
13,
9166,
4936,
2751,
13,
13,
4806,
6356,
450,
272,
1567,
5539,
12743,
29901,
369,
4776,
29899,
29880,
5824,
18899,
322,
5539,
12743,
29901,
12864,
29899,
29880,
5824,
18899,
297,
278,
4266,
1206,
395,
29895,
29922,
29906,
1504,
512,
510,
2139,
4127,
6273,
363,
450,
272,
1567,
5539,
12743,
29901,
369,
4776,
29899,
262,
2388,
18899,
322,
5539,
12743,
29901,
12864,
29899,
262,
2388,
18899,
508,
367,
1476,
297,
22871,
861,
5539,
932,
29901,
29880,
5824,
29905,
1822,
8680,
5224,
13451,
363,
395,
29895,
29922,
29906,
29938,
526,
443,
1116,
3245,
29892,
1951,
278,
330,
7515,
25466,
545,
756,
1063,
11827,
297,
445,
4266,
1206,
29901,
13,
13,
29905,
29961,
29872,
29889,
29887,
29889,
399,
15109,
518,
29992,
29893,
15109,
29896,
29929,
29929,
29896,
1062,
1745,
284,
10725,
29962,
5539,
2409,
29901,
29946,
29899,
29887,
7515,
18899,
1152,
599,
395,
29876,
1628,
727,
1863,
395,
29876,
4388,
3177,
18445,
373,
779,
5981,
29905,
1563,
29898,
29876,
998,
29941,
29914,
29906,
1012,
1266,
1262,
12770,
1728,
25785,
310,
3309,
395,
29946,
29938,
470,
3109,
29889,
13,
13,
4806,
27754,
937,
363,
12688,
12570,
29879,
29901,
13,
13,
29905,
29961,
28116,
310,
10244,
5539,
12743,
29901,
369,
4776,
29899,
29880,
5824,
29905,
1402,
1206,
395,
29895,
29922,
29906,
4535,
29962,
7370,
411,
263,
3983,
395,
29954,
29938,
515,
11894,
5539,
2409,
29901,
29946,
29899,
29887,
7515,
29905,
1822,
1334,
3386,
263,
716,
3983,
395,
29954,
13090,
408,
4477,
29889,
2803,
395,
29873,
353,
320,
29880,
27696,
285,
29914,
29906,
320,
29878,
27696,
1504,
1334,
731,
395,
29963,
648,
29954,
10827,
353,
478,
29898,
29954,
29897,
320,
3706,
518,
29873,
25473,
322,
1235,
395,
29923,
648,
29954,
10827,
353,
9991,
320,
8001,
29884,
29892,
29875,
511,
313,
29894,
29892,
29926,
2144,
29913,
584,
9991,
29884,
29892,
29894,
18105,
320,
262,
382,
29898,
29954,
29897,
320,
1049,
474,
29892,
29926,
320,
262,
518,
29873,
10725,
4311,
2803,
395,
29954,
29915,
353,
313,
29963,
648,
29954,
16675,
382,
648,
29954,
10827,
4935,
3159,
3121,
3598,
29892,
591,
508,
1348,
310,
395,
29954,
13090,
408,
1641,
7625,
491,
15270,
1269,
12688,
310,
395,
29954,
29938,
491,
263,
731,
310,
395,
29873,
29938,
14591,
310,
278,
12688,
29892,
322,
1269,
7636,
310,
395,
29954,
29938,
338,
8611,
491,
263,
4866,
289,
27494,
568,
3983,
1546,
278,
1023,
6166,
310,
14591,
29889,
1334,
674,
6356,
10244,
30081,
29905,
29961,
12743,
29901,
369,
4776,
29899,
29880,
5824,
18899,
491,
1326,
292,
393,
278,
871,
395,
29888,
29938,
478,
7818,
395,
29941,
4388,
1028,
7310,
310,
395,
29954,
13090,
338,
3528,
29892,
322,
393,
372,
756,
278,
3734,
1353,
310,
12770,
29889,
13,
13,
4806,
937,
5995,
393,
278,
871,
395,
29888,
29938,
478,
7818,
395,
29941,
4388,
1028,
7310,
310,
395,
29954,
13090,
338,
395,
29954,
13090,
3528,
29889,
1763,
1074,
445,
29892,
7755,
393,
395,
29950,
29938,
338,
263,
1014,
4262,
310,
395,
29954,
13090,
607,
947,
451,
1712,
777,
7636,
779,
8001,
29884,
29892,
29875,
511,
313,
29894,
29892,
29926,
2144,
29913,
320,
262,
382,
648,
29954,
29915,
4311,
2803,
395,
29943,
353,
320,
8001,
29884,
2053,
514,
29897,
584,
320,
514,
320,
10743,
474,
18105,
320,
5231,
320,
8001,
29894,
29892,
320,
514,
29897,
584,
320,
514,
320,
10743,
432,
28538,
474,
29889,
29872,
1696,
591,
1235,
278,
12570,
731,
367,
599,
14591,
310,
395,
29884,
29938,
5174,
363,
2427,
29884,
29892,
29875,
1262,
322,
599,
14591,
310,
395,
29894,
29938,
5174,
2427,
29894,
29892,
29926,
4935,
3940,
393,
11892,
29943,
29989,
320,
3797,
285,
1504,
2567,
2050,
278,
3273,
342,
2224,
515,
2427,
29884,
29892,
29875,
1262,
304,
2427,
29894,
29892,
29926,
1262,
297,
395,
29950,
320,
15375,
383,
1504,
2803,
445,
2224,
367,
2427,
29884,
29892,
29875,
29897,
353,
313,
29916,
29985,
29900,
29892,
474,
29985,
29900,
511,
313,
29916,
29985,
29896,
29892,
474,
29985,
29896,
511,
313,
29916,
29985,
29906,
29892,
474,
29985,
29906,
511,
320,
7778,
29892,
313,
29916,
29985,
29886,
29892,
474,
29985,
29886,
29897,
353,
313,
29894,
29892,
29926,
4935,
3940,
393,
363,
738,
395,
29900,
320,
3797,
263,
320,
3797,
282,
29899,
29896,
1628,
372,
2609,
367,
278,
1206,
393,
395,
29916,
29985,
29874,
353,
318,
29938,
322,
395,
29916,
998,
29874,
29974,
29896,
29913,
353,
325,
1628,
1951,
694,
1316,
12770,
1863,
297,
395,
29950,
320,
15375,
383,
1504,
6549,
395,
29884,
353,
921,
29985,
29900,
29892,
921,
29985,
29896,
29892,
320,
7778,
29892,
921,
29985,
29886,
353,
325,
29938,
338,
263,
6686,
515,
395,
29884,
29938,
304,
395,
29894,
29938,
297,
395,
29954,
29938,
607,
947,
451,
671,
278,
7636,
12564,
29884,
29892,
29894,
23699,
2648,
4417,
12564,
29884,
29892,
29894,
11854,
304,
445,
2224,
29892,
591,
679,
263,
11412,
310,
3309,
472,
1556,
395,
29886,
29974,
29896,
1504,
4001,
395,
29954,
29938,
756,
330,
7515,
472,
3203,
395,
29945,
1628,
445,
10469,
393,
395,
29886,
320,
6279,
29871,
29946,
1504,
6549,
297,
395,
29950,
320,
15375,
383,
29938,
278,
5418,
1546,
2427,
29884,
29892,
29875,
1262,
322,
2427,
29894,
29892,
29926,
1262,
338,
472,
3203,
395,
29946,
1628,
1550,
297,
395,
29954,
29915,
320,
15375,
383,
29938,
896,
526,
472,
5418,
395,
29896,
1504,
1105,
395,
29950,
29938,
338,
451,
385,
395,
29888,
29938,
478,
7818,
395,
29941,
4388,
1028,
7310,
310,
395,
29954,
29915,
1628,
322,
8151,
278,
871,
395,
29888,
29938,
478,
7818,
395,
29941,
4388,
1028,
7310,
310,
395,
29954,
13090,
338,
395,
29954,
13090,
3528,
29889,
13,
13,
6295,
395,
29954,
13090,
338,
278,
871,
395,
29888,
29938,
478,
7818,
395,
29941,
4388,
1028,
7310,
310,
3528,
29892,
322,
372,
9242,
871,
304,
27599,
967,
2159,
29889,
17732,
368,
11892,
29963,
648,
29954,
10827,
29989,
353,
260,
891,
29963,
29898,
29954,
10531,
1628,
322,
491,
11894,
30081,
29905,
29961,
2409,
29901,
29946,
29899,
29887,
7515,
18899,
591,
1073,
393,
11892,
29923,
29898,
29954,
10531,
320,
6279,
320,
5981,
27204,
29963,
29898,
29954,
10531,
998,
29941,
29914,
29906,
23462,
6549,
6118,
463,
29912,
13671,
29913,
13,
29989,
29923,
648,
29954,
10827,
29989,
7878,
320,
5981,
1194,
1563,
27204,
29923,
29898,
29954,
10531,
260,
29985,
29906,
29905,
1266,
29897,
353,
320,
5981,
29905,
1563,
29898,
29873,
29985,
29906,
891,
29963,
29898,
29954,
10531,
998,
29941,
29914,
29906,
1012,
1266,
29897,
353,
320,
5981,
29905,
1563,
29898,
29873,
29985,
29906,
320,
3822,
320,
1563,
1194,
1154,
28437,
29963,
648,
29954,
10827,
29632,
29873,
1012,
1266,
8940,
29941,
29914,
29906,
1012,
1266,
29897,
2474,
13,
20644,
320,
5981,
29905,
1563,
29898,
29888,
998,
29896,
29914,
29906,
29913,
891,
29963,
648,
29954,
10827,
29989,
998,
29941,
29914,
29906,
1012,
1266,
2144,
355,
29912,
13671,
9458,
408,
17049,
29889,
13,
13,
2855,
2446,
363,
7636,
12570,
29879,
29901,
13,
13,
29905,
29961,
28116,
310,
10244,
5539,
12743,
29901,
12864,
29899,
29880,
5824,
29905,
1402,
1206,
395,
29895,
29922,
29906,
4535,
29962,
13,
13,
4806,
3386,
263,
716,
3983,
395,
29954,
13090,
3721,
408,
297,
278,
478,
7818,
1206,
29889,
1094,
1434,
29892,
1235,
395,
29950,
29938,
367,
263,
1014,
4262,
310,
395,
29954,
13090,
4567,
777,
7636,
779,
8001,
29884,
29892,
29875,
511,
313,
29894,
29892,
29926,
2144,
4311,
2803,
395,
29943,
353,
320,
741,
8001,
29884,
29892,
29875,
511,
313,
29894,
29892,
320,
514,
2144,
29913,
584,
320,
514,
320,
262,
518,
29873,
29962,
320,
15375,
9991,
29926,
25848,
29913,
320,
5231,
320,
741,
8001,
29884,
2053,
514,
511,
313,
29894,
29892,
29926,
2144,
29913,
584,
320,
514,
320,
262,
518,
29873,
29962,
320,
15375,
9991,
29875,
25848,
1042,
367,
278,
12570,
731,
29892,
322,
4443,
393,
11892,
29943,
29989,
320,
3797,
285,
1504,
512,
916,
3838,
29892,
591,
4418,
1432,
7636,
515,
2427,
29884,
29892,
29875,
1262,
304,
14591,
310,
395,
29894,
29938,
5174,
363,
278,
7636,
304,
2427,
29894,
29892,
29926,
5767,
322,
22829,
591,
4418,
599,
12770,
515,
2427,
29894,
29892,
29926,
1262,
304,
14591,
310,
395,
29884,
29938,
5174,
363,
2427,
29884,
29892,
29875,
4935,
1105,
297,
395,
29954,
29915,
320,
15375,
383,
29938,
278,
7636,
779,
8001,
29884,
29892,
29875,
511,
313,
29894,
29892,
29926,
2144,
1042,
338,
1603,
2198,
29892,
541,
372,
338,
451,
297,
395,
29950,
320,
15375,
383,
1504,
12808,
29892,
297,
395,
29950,
320,
15375,
383,
29938,
727,
526,
694,
10898,
310,
3309,
472,
1556,
395,
29941,
29938,
515,
2427,
29884,
29892,
29875,
1262,
304,
2427,
29894,
29892,
29926,
1262,
393,
671,
408,
385,
19697,
2943,
738,
916,
3509,
310,
395,
29884,
29938,
470,
3509,
310,
395,
29894,
1504,
10133,
738,
2224,
310,
3309,
472,
1556,
395,
29941,
29938,
1818,
367,
310,
278,
883,
2427,
29884,
29892,
29875,
511,
313,
29916,
29892,
263,
511,
313,
29891,
29892,
29890,
511,
313,
29894,
29892,
29926,
1262,
988,
395,
29884,
29892,
921,
29892,
343,
29892,
325,
29938,
526,
599,
8359,
313,
28802,
14981,
411,
2845,
395,
29916,
29938,
470,
395,
29891,
29938,
4567,
467,
910,
10469,
393,
395,
29884,
29892,
29916,
29892,
29891,
29892,
29894,
29938,
883,
2845,
263,
395,
29941,
4388,
470,
263,
395,
29946,
4388,
23090,
297,
395,
29954,
1628,
607,
27877,
29879,
11894,
30081,
29905,
29961,
2409,
29901,
29946,
29899,
29887,
7515,
29905,
1822,
6549,
395,
29950,
320,
15375,
383,
29938,
338,
451,
263,
395,
29941,
4388,
1028,
7310,
310,
395,
29954,
29915,
320,
15375,
383,
1628,
577,
395,
29950,
29938,
338,
451,
263,
395,
29888,
29938,
382,
7818,
395,
29941,
4388,
1028,
7310,
310,
395,
29954,
29915,
1504,
13,
13,
1349,
375,
395,
29954,
13090,
338,
278,
871,
395,
29888,
29938,
382,
7818,
395,
29941,
4388,
1028,
7310,
310,
3528,
29889,
5293,
278,
1021,
7418,
408,
297,
278,
478,
7818,
1206,
29892,
591,
679,
393,
11892,
29923,
29898,
29954,
1495,
29989,
320,
6279,
320,
5981,
29898,
29888,
998,
29896,
29914,
29906,
29913,
891,
29963,
29898,
29954,
1495,
29989,
998,
29941,
29914,
29906,
27394,
1326,
292,
278,
9185,
29889,
13,
13,
3563,
1493,
29901,
24929,
350,
3885,
363,
8218,
914,
395,
29895,
29938,
5539,
3471,
29901,
431,
29899,
957,
1493,
18899,
13,
9166,
9166,
9166,
4936,
29922,
13,
13,
2831,
23205,
29892,
591,
674,
8569,
373,
278,
1206,
395,
29895,
29922,
29941,
29938,
297,
445,
975,
1493,
29889,
450,
1556,
5613,
4218,
304,
10985,
1749,
7568,
13451,
304,
395,
29895,
29922,
29941,
29938,
5771,
408,
4477,
29901,
937,
697,
2498,
7093,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
29905,
1402,
322,
769,
697,
2498,
7093,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
2395,
18899,
491,
13858,
395,
29941,
4388,
14625,
2039,
3265,
1135,
395,
29906,
4388,
14625,
2039,
29892,
322,
769,
697,
4145,
1475,
278,
1023,
9506,
408,
1434,
29889,
11511,
29892,
278,
7568,
13451,
2411,
2957,
491,
445,
2948,
526,
3755,
8062,
29889,
3118,
5948,
2498,
7093,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
2395,
18899,
304,
1510,
393,
2046,
29989,
29923,
29918,
29950,
29989,
353,
438,
320,
1563,
29898,
302,
29883,
648,
29953,
2844,
29896,
29914,
29953,
29913,
320,
1266,
511,
3997,
322,
697,
5948,
2498,
7093,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
18899,
304,
1510,
2046,
29883,
648,
29953,
29913,
353,
438,
29905,
1563,
29898,
891,
29923,
29918,
29950,
29989,
320,
3822,
285,
29928,
29985,
29941,
320,
1266,
467,
3997,
2398,
29892,
18665,
3460,
1438,
10693,
964,
278,
5296,
1304,
1434,
29892,
591,
2869,
1284,
334,
1217,
20414,
29930,
297,
278,
3517,
7568,
3216,
29901,
591,
1603,
679,
2046,
29989,
29923,
29918,
29950,
29989,
353,
438,
320,
1563,
29898,
302,
998,
29941,
29914,
29906,
29913,
285,
998,
29896,
29914,
29906,
29913,
320,
1266,
17085,
1550,
591,
881,
4966,
363,
1554,
1568,
2253,
29889,
13,
13,
12024,
502,
1286,
1871,
635,
21256,
263,
1158,
363,
4857,
1747,
278,
2498,
2133,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
29905,
1822,
3599,
497,
393,
29892,
515,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
18899,
3528,
29892,
591,
505,
395,
29883,
29918,
29946,
353,
438,
29905,
1563,
29898,
891,
29923,
29918,
29950,
29989,
320,
3822,
285,
29928,
320,
1266,
1262,
313,
6812,
393,
445,
5296,
8640,
1584,
297,
278,
4444,
395,
29895,
29922,
29941,
18724,
6549,
29892,
334,
265,
6588,
15966,
1269,
2943,
395,
29894,
29938,
5221,
1078,
297,
395,
29949,
29898,
29888,
29928,
29985,
29906,
1262,
5764,
395,
29946,
4388,
14625,
2039,
29889,
19814,
29892,
591,
505,
779,
17458,
29898,
29928,
29985,
29906,
1262,
395,
29906,
4388,
14625,
2039,
6257,
472,
395,
29894,
1504,
10133,
1269,
310,
1438,
1023,
17042,
2039,
313,
265,
6588,
29897,
338,
14040,
363,
4969,
472,
1556,
395,
29949,
29898,
29888,
1262,
5764,
395,
29946,
4388,
14625,
2039,
297,
395,
29950,
1628,
322,
577,
313,
265,
6588,
29897,
727,
526,
871,
395,
29949,
29898,
29888,
1262,
395,
29906,
4388,
14625,
2039,
1546,
738,
1023,
7573,
29889,
13,
13,
7900,
2017,
363,
263,
3256,
393,
591,
1033,
4337,
515,
385,
6588,
304,
17322,
29899,
4878,
1873,
310,
445,
3229,
29892,
322,
5251,
263,
2898,
4046,
310,
395,
29949,
29898,
29888,
1262,
395,
29906,
4388,
14625,
2039,
1546,
738,
1023,
7573,
29889,
910,
2114,
1033,
367,
1304,
304,
11157,
1749,
2498,
2133,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
29905,
1402,
24481,
408,
4477,
29889,
12142,
591,
788,
278,
7636,
2427,
29884,
29892,
325,
1262,
304,
395,
29950,
7650,
29884,
29892,
325,
15604,
2645,
29068,
5539,
9564,
29901,
1028,
812,
414,
29905,
1822,
1987,
29892,
727,
338,
263,
731,
395,
29943,
29938,
310,
395,
29888,
29938,
7573,
393,
3804,
373,
738,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29945,
4388,
20919,
29889,
10056,
738,
1316,
2943,
395,
29916,
1628,
322,
5251,
1728,
6410,
310,
2498,
537,
393,
395,
29916,
29938,
338,
297,
278,
937,
4203,
310,
738,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29945,
4388,
20919,
29889,
1334,
769,
2302,
278,
1353,
310,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29945,
4388,
14625,
2039,
3704,
395,
29916,
29938,
408,
4477,
29901,
727,
526,
395,
29928,
29985,
29906,
29938,
5837,
304,
6755,
278,
937,
3023,
7573,
373,
278,
6686,
313,
16076,
395,
29884,
29892,
921,
29938,
526,
1023,
310,
963,
511,
322,
727,
526,
395,
29888,
29938,
5837,
304,
6755,
278,
1833,
1023,
7573,
373,
278,
6686,
313,
16076,
395,
29894,
29938,
338,
278,
1833,
2943,
373,
278,
6686,
322,
591,
505,
6790,
278,
11582,
2943,
373,
278,
6686,
29892,
322,
591,
505,
12023,
393,
727,
526,
871,
395,
29949,
29898,
29888,
1262,
1950,
395,
29906,
4388,
14625,
2039,
1546,
1438,
7573,
467,
10133,
727,
526,
395,
29949,
29898,
29888,
29928,
29985,
29906,
1262,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29945,
4388,
14625,
2039,
3704,
395,
29916,
22073,
15399,
263,
9833,
3216,
975,
395,
29943,
1628,
591,
505,
395,
29949,
29898,
29888,
29985,
29906,
360,
29985,
29906,
1262,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29945,
4388,
14625,
2039,
297,
3001,
29892,
322,
445,
11981,
304,
385,
16710,
3216,
2046,
29883,
29918,
29953,
353,
438,
320,
1563,
29898,
891,
29923,
29918,
29950,
29989,
320,
3822,
313,
29888,
29928,
4887,
29906,
320,
1266,
467,
3997,
13,
13,
29898,
29900,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29896,
29900,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
472,
313,
29900,
29892,
29871,
29900,
29897,
518,
29938,
29884,
29938,
3199,
3400,
472,
313,
29896,
29900,
29892,
29871,
29900,
29897,
518,
29938,
29894,
29938,
3199,
3400,
472,
313,
29945,
29892,
29871,
29900,
29897,
518,
4535,
9572,
29938,
3199,
3400,
13,
13,
29898,
29906,
29892,
29871,
29900,
29897,
560,
5843,
313,
29900,
29889,
29945,
4912,
322,
29871,
29906,
4912,
416,
313,
29946,
29892,
29871,
29900,
29897,
560,
5843,
313,
29900,
29889,
29945,
4912,
322,
29871,
29906,
4912,
416,
313,
29953,
29892,
29871,
29900,
29897,
560,
5843,
313,
29900,
29889,
29945,
4912,
322,
29871,
29906,
4912,
416,
313,
29947,
29892,
29871,
29900,
29897,
560,
5843,
313,
29900,
29889,
29945,
4912,
322,
29871,
29906,
4912,
416,
13,
13,
271,
313,
29896,
29889,
29947,
29892,
448,
29906,
29897,
518,
6730,
7546,
29905,
13,
2311,
338,
29905,
13,
29938,
29989,
29943,
29989,
353,
285,
29938,
3199,
3400,
313,
29906,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29906,
29892,
29871,
29896,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29906,
29892,
448,
29896,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29900,
29892,
29871,
29900,
29897,
785,
313,
29906,
29892,
29871,
29900,
416,
313,
29900,
29892,
29871,
29900,
29897,
785,
313,
29906,
29892,
29871,
29896,
416,
313,
29900,
29892,
29871,
29900,
29897,
785,
313,
29906,
29892,
448,
29896,
416,
13,
13,
29898,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
29871,
29896,
29889,
29945,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
29871,
29896,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
29871,
29900,
29889,
29945,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
29871,
29900,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
448,
29900,
29889,
29945,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
448,
29896,
416,
313,
29906,
29892,
29871,
29896,
29897,
785,
313,
29946,
29892,
448,
29896,
29889,
29945,
416,
13,
13,
29898,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29896,
29889,
29945,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29896,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29900,
29889,
29945,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
29871,
29900,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
448,
29900,
29889,
29945,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
448,
29896,
416,
313,
29906,
29892,
29871,
29900,
29897,
785,
313,
29946,
29892,
448,
29896,
29889,
29945,
416,
13,
13,
29898,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
29871,
29896,
29889,
29945,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
29871,
29896,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
29871,
29900,
29889,
29945,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
29871,
29900,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
448,
29900,
29889,
29945,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
448,
29896,
416,
313,
29906,
29892,
448,
29896,
29897,
785,
313,
29946,
29892,
448,
29896,
29889,
29945,
416,
13,
13,
271,
313,
29953,
29892,
448,
29906,
29897,
518,
29938,
29949,
29898,
29888,
29928,
29985,
29906,
1262,
17042,
2039,
29905,
13,
3166,
395,
29884,
29938,
304,
29905,
13,
22585,
7546,
3199,
3400,
13,
13,
29898,
29953,
29892,
29871,
29896,
29889,
29945,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29953,
29892,
29871,
29896,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29953,
29892,
29871,
29900,
29889,
29945,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29953,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29953,
29892,
448,
29900,
29889,
29945,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29953,
29892,
448,
29896,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29953,
29892,
448,
29896,
29889,
29945,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
13,
13,
29898,
29947,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29947,
29892,
29871,
29896,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
313,
29947,
29892,
448,
29896,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
13,
13,
29898,
29953,
29892,
29871,
29900,
29897,
785,
313,
29947,
29892,
29871,
29896,
416,
313,
29953,
29892,
29871,
29900,
29897,
785,
313,
29947,
29892,
29871,
29900,
416,
313,
29953,
29892,
29871,
29900,
29897,
785,
313,
29947,
29892,
448,
29896,
416,
313,
29896,
29900,
29892,
29871,
29900,
29897,
785,
313,
29947,
29892,
29871,
29896,
416,
313,
29896,
29900,
29892,
29871,
29900,
29897,
785,
313,
29947,
29892,
29871,
29900,
416,
313,
29896,
29900,
29892,
29871,
29900,
29897,
785,
313,
29947,
29892,
448,
29896,
416,
13,
13,
271,
313,
29896,
29900,
29892,
448,
29906,
29897,
518,
29938,
29888,
29938,
5837,
29905,
13,
517,
4866,
263,
29905,
13,
20919,
515,
278,
29905,
13,
22585,
7546,
304,
395,
29894,
29938,
3199,
3400,
13,
13,
4013,
338,
17503,
278,
3216,
373,
395,
29883,
29918,
29953,
29938,
4312,
304,
6356,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
18899,
363,
395,
29895,
29922,
29941,
29938,
29991,
4587,
3236,
29892,
372,
1346,
6194,
30024,
9242,
304,
26922,
1749,
11833,
393,
727,
526,
694,
901,
1135,
395,
29949,
29898,
29888,
1262,
395,
29906,
4388,
14625,
2039,
1546,
738,
1023,
7573,
29892,
1550,
591,
505,
871,
11827,
445,
3229,
297,
278,
6588,
1206,
29889,
910,
6858,
716,
7672,
262,
708,
29889,
2180,
263,
1880,
3233,
29892,
591,
12709,
445,
491,
16112,
9250,
292,
1749,
8570,
304,
263,
11306,
310,
278,
10898,
297,
395,
29950,
22073,
297,
3153,
29892,
591,
1346,
1271,
30024,
395,
29906,
4388,
24772,
393,
13461,
278,
7429,
395,
29949,
29898,
29888,
1262,
3216,
29892,
322,
769,
671,
1554,
3036,
635,
2788,
304,
278,
2038,
5296,
304,
1510,
393,
1269,
7636,
2427,
29884,
29892,
325,
1262,
1614,
2167,
871,
395,
29949,
29898,
29888,
29985,
29906,
360,
29985,
29906,
1262,
1346,
348,
1271,
287,
30024,
5764,
395,
29953,
4388,
14625,
2039,
29889,
739,
338,
263,
16010,
6411,
19985,
1044,
304,
4529,
1438,
4958,
297,
278,
1492,
982,
1550,
1603,
2534,
385,
15690,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
2395,
18899,
393,
16058,
746,
871,
1346,
348,
1271,
287,
30024,
5764,
395,
29953,
4388,
14625,
2039,
526,
5545,
29889,
2398,
29892,
411,
3307,
16716,
29892,
372,
508,
367,
2309,
29889,
13,
13,
9526,
5684,
16905,
664,
451,
5276,
1244,
338,
3734,
304,
4772,
263,
26307,
310,
278,
883,
321,
29889,
29887,
29889,
395,
29949,
1194,
726,
29912,
22678,
2119,
29895,
23846,
297,
1749,
7568,
3216,
29889,
1334,
316,
571,
263,
10679,
310,
445,
1298,
304,
278,
9773,
861,
29889,
13,
13,
3563,
1493,
29901,
27723,
350,
3885,
363,
8218,
914,
395,
29895,
29938,
13,
9166,
9166,
2751,
29922,
13,
13,
4597,
1070,
5281,
395,
29950,
29938,
5539,
932,
29901,
1727,
18899,
13,
9166,
4936,
2751,
13,
13,
18743,
1933,
292,
964,
1749,
1667,
7418,
29892,
372,
674,
367,
19192,
408,
1434,
304,
5251,
393,
395,
29950,
29938,
338,
1346,
9961,
2657,
2486,
4943,
3178,
1334,
26922,
445,
11833,
491,
278,
1494,
2980,
29889,
13,
13,
29905,
29961,
2409,
29901,
29895,
29899,
1727,
18899,
12142,
393,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
18899,
8640,
363,
599,
18445,
395,
29954,
29938,
5069,
6590,
1962,
18445,
395,
29950,
29938,
505,
278,
2875,
393,
1009,
7472,
7426,
338,
472,
1556,
395,
29883,
29938,
3064,
1009,
9212,
7426,
29892,
363,
777,
15968,
4868,
395,
29883,
1504,
1987,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
18899,
8640,
297,
2498,
29889,
13,
13,
4806,
4091,
6356,
445,
10383,
491,
6445,
278,
6761,
1066,
3321,
29889,
1334,
7755,
393,
395,
29954,
353,
313,
29963,
29892,
382,
1262,
338,
385,
395,
29876,
4388,
3177,
3983,
393,
19700,
408,
263,
6795,
4773,
304,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
18899,
313,
29875,
29889,
29872,
29889,
967,
6590,
1962,
3983,
395,
29950,
29938,
756,
395,
29876,
998,
29896,
718,
29871,
29896,
29914,
29895,
29913,
285,
998,
29896,
448,
29871,
29896,
29914,
29895,
29913,
320,
4787,
29898,
29896,
4887,
29895,
29938,
12770,
467,
8680,
7306,
338,
769,
304,
1510,
393,
727,
338,
263,
1014,
4262,
395,
29954,
29915,
320,
11725,
402,
29938,
373,
472,
3203,
395,
29876,
998,
29896,
14571,
29906,
29895,
15604,
7573,
393,
884,
19700,
408,
263,
6795,
4773,
304,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
29905,
1402,
322,
278,
7472,
7426,
310,
395,
29954,
13090,
338,
7200,
1135,
967,
9212,
7426,
491,
263,
7329,
310,
395,
29949,
29918,
29895,
29898,
29896,
4935,
10133,
29892,
297,
278,
5296,
310,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
18899,
591,
1122,
5251,
445,
26368,
4943,
537,
4195,
29889,
1334,
674,
769,
5751,
714,
278,
10379,
310,
263,
3942,
310,
395,
29954,
29915,
1628,
322,
445,
6865,
714,
278,
2498,
10379,
310,
395,
29954,
1504,
3940,
393,
278,
7276,
393,
395,
29954,
13090,
756,
472,
3203,
395,
29876,
998,
29896,
14571,
29906,
29895,
15604,
7573,
338,
1304,
304,
9801,
393,
385,
10362,
3942,
310,
395,
29954,
29938,
10469,
385,
10362,
3942,
310,
395,
29954,
13090,
29936,
738,
2428,
29899,
23362,
740,
723,
664,
18018,
1532,
363,
1749,
2280,
310,
445,
10383,
29889,
13,
13,
6730,
29892,
591,
1122,
5251,
393,
395,
29954,
353,
379,
22073,
565,
1749,
5687,
2313,
3163,
738,
7636,
297,
395,
29954,
1628,
591,
1122,
3763,
5217,
445,
7636,
515,
395,
29954,
29938,
322,
372,
338,
2821,
393,
445,
7374,
291,
674,
451,
1735,
278,
6590,
1962,
3983,
395,
29950,
1504,
2803,
395,
29876,
29938,
367,
278,
1353,
310,
7573,
297,
395,
29954,
29922,
29950,
29938,
322,
1235,
395,
29928,
29938,
367,
967,
6588,
7426,
29889,
3455,
654,
278,
7573,
310,
395,
29954,
29938,
964,
1023,
6166,
29901,
278,
731,
395,
29909,
29938,
310,
7573,
393,
505,
7426,
395,
29883,
29928,
29938,
470,
3109,
29892,
322,
278,
731,
395,
29933,
29938,
310,
7573,
393,
505,
7426,
901,
1135,
395,
29883,
29928,
29938,
313,
1454,
777,
4868,
395,
29883,
353,
274,
29918,
29895,
29938,
393,
674,
367,
10434,
2678,
467,
2648,
4485,
586,
30010,
29879,
14585,
591,
505,
11892,
29933,
29989,
320,
280,
302,
29914,
29883,
1504,
3455,
654,
278,
12770,
310,
395,
29954,
29938,
964,
2211,
6166,
29901,
395,
29923,
29918,
29909,
29938,
988,
1716,
1095,
9748,
526,
297,
395,
29909,
1628,
395,
29923,
29918,
29933,
29938,
988,
1716,
1095,
9748,
526,
297,
395,
29933,
1628,
322,
395,
29923,
648,
2882,
1042,
393,
756,
697,
16248,
297,
1269,
29889,
3831,
598,
278,
15786,
310,
395,
29923,
29918,
29909,
29892,
382,
29918,
29933,
29892,
382,
648,
2882,
1042,
29936,
3013,
599,
12770,
297,
278,
10150,
731,
322,
2313,
538,
599,
12770,
297,
278,
916,
1023,
313,
2938,
1122,
367,
9391,
9727,
6275,
467,
1334,
1286,
6219,
964,
4251,
2729,
373,
607,
731,
10503,
2347,
29889,
13,
13,
4136,
313,
29874,
29897,
395,
29923,
29918,
29909,
29938,
6298,
29894,
2347,
29889,
13,
13,
4806,
1286,
505,
263,
7472,
7426,
310,
395,
29883,
29928,
29938,
297,
278,
9886,
3983,
29892,
1550,
967,
6588,
7426,
338,
1603,
779,
5981,
29898,
29928,
1262,
313,
16076,
591,
505,
871,
2313,
25600,
263,
4868,
15958,
310,
278,
12770,
467,
2803,
395,
29928,
13090,
367,
278,
716,
6588,
7426,
310,
395,
29923,
29918,
29909,
1628,
322,
28424,
5217,
599,
7573,
515,
395,
29954,
29938,
393,
505,
7426,
395,
29928,
29915,
29914,
29946,
29938,
470,
3109,
2745,
599,
7573,
505,
7426,
472,
3203,
395,
29928,
29915,
847,
29871,
29946,
1504,
3940,
393,
871,
395,
29876,
320,
3822,
360,
29915,
29914,
29946,
29938,
12770,
313,
4716,
338,
472,
1556,
4203,
278,
9886,
12770,
297,
395,
29954,
10931,
674,
367,
6206,
297,
445,
982,
29889,
450,
9886,
1014,
4262,
395,
29954,
13090,
338,
1286,
805,
279,
643,
1135,
278,
2441,
3983,
395,
29954,
29938,
491,
871,
263,
4868,
7329,
322,
967,
7472,
322,
9212,
14496,
526,
1716,
779,
17458,
29898,
29928,
4935,
19814,
29892,
278,
1353,
310,
7573,
395,
29876,
13090,
297,
395,
29954,
13090,
338,
395,
29876,
29915,
353,
320,
5981,
27204,
29923,
29989,
6802,
29905,
17458,
29898,
29928,
29897,
353,
320,
5981,
29898,
29876,
4935,
6549,
395,
29954,
13090,
17150,
278,
10383,
29889,
13,
13,
4136,
313,
29890,
29897,
395,
29923,
29918,
29933,
29938,
6298,
29894,
2347,
29889,
13,
13,
4806,
1286,
4017,
263,
1014,
4262,
395,
29954,
13090,
491,
21228,
599,
7573,
297,
395,
29909,
29938,
313,
4716,
1286,
505,
7426,
395,
29900,
18724,
450,
6588,
7426,
297,
278,
9886,
1014,
4262,
395,
29954,
13090,
338,
472,
3203,
395,
29883,
29928,
29914,
29941,
1628,
322,
372,
756,
395,
29896,
29914,
29883,
29938,
408,
1784,
7573,
408,
1434,
29889,
739,
338,
451,
12695,
278,
1206,
393,
395,
29954,
13090,
338,
14235,
4943,
29892,
541,
591,
1122,
1286,
1162,
332,
344,
278,
2980,
373,
395,
29954,
13090,
304,
427,
10118,
445,
2875,
313,
277,
9242,
304,
367,
11827,
393,
445,
20437,
6624,
1078,
1434,
11077,
2086,
1784,
7573,
515,
395,
29954,
18724,
3940,
393,
395,
29954,
13090,
756,
6133,
6588,
7426,
322,
28145,
7573,
1135,
395,
29954,
1628,
577,
372,
1603,
19700,
408,
263,
6795,
4773,
3983,
304,
1749,
17049,
3216,
29889,
13,
13,
4136,
313,
29883,
29897,
395,
29923,
648,
2882,
1042,
6298,
29894,
2347,
29889,
13,
13,
1576,
6588,
7426,
310,
278,
7573,
297,
395,
29909,
29938,
338,
1286,
472,
3203,
395,
29928,
29914,
29953,
1628,
1951,
591,
505,
11132,
472,
1556,
395,
29896,
29914,
29941,
29938,
310,
278,
12770,
1951,
4444,
395,
29928,
29938,
322,
313,
16076,
278,
3983,
338,
1286,
289,
27494,
568,
29897,
1269,
7636,
338,
15134,
373,
697,
2943,
297,
395,
29909,
1504,
8680,
2446,
4331,
338,
304,
5217,
599,
7573,
515,
395,
29909,
29938,
5174,
363,
278,
11892,
29933,
25183,
7573,
297,
11892,
29909,
25183,
411,
278,
9939,
9886,
7426,
29889,
450,
6588,
7426,
297,
278,
9886,
1014,
4262,
395,
29954,
13090,
338,
769,
1603,
472,
3203,
395,
29928,
29914,
29953,
1504,
1334,
884,
505,
395,
29906,
29989,
29933,
29989,
320,
280,
320,
1154,
29912,
29906,
1157,
29883,
29913,
320,
3822,
302,
29938,
7573,
9886,
297,
395,
29954,
29915,
1504,
1334,
769,
2748,
1449,
1162,
332,
344,
278,
7418,
373,
278,
9886,
1014,
4262,
313,
392,
591,
674,
6356,
21734,
393,
445,
20437,
6624,
1078,
1434,
11077,
2086,
1784,
7573,
467,
29905,
13,
797,
278,
7480,
1023,
4251,
29892,
591,
1162,
332,
344,
278,
7418,
373,
263,
1014,
4262,
395,
29954,
13090,
310,
278,
2441,
3983,
29889,
1334,
674,
1286,
1510,
393,
29892,
565,
395,
29883,
29938,
338,
10434,
304,
367,
14726,
2197,
2919,
29892,
769,
278,
20437,
1818,
10201,
29504,
297,
1206,
313,
29874,
29897,
1550,
278,
3983,
1603,
756,
779,
726,
29912,
22678,
2119,
29876,
1262,
7573,
313,
3062,
395,
29876,
29938,
338,
278,
1353,
310,
7573,
297,
278,
2441,
3983,
395,
29954,
18724,
8746,
635,
29892,
10106,
278,
20437,
29892,
278,
6588,
7426,
395,
29928,
6622,
29938,
297,
278,
1014,
4262,
1641,
5545,
2609,
13461,
278,
1353,
310,
7573,
395,
29876,
6622,
29938,
297,
393,
1014,
4262,
29889,
2398,
29892,
1156,
395,
29895,
29938,
364,
3885,
310,
20437,
393,
4772,
1206,
313,
29874,
511,
591,
505,
2046,
29928,
6622,
320,
479,
320,
1154,
29912,
29928,
1157,
29953,
29985,
29895,
29913,
320,
479,
29871,
320,
1154,
29912,
29876,
998,
29896,
29914,
29895,
7585,
29953,
29985,
29895,
9458,
322,
2046,
29876,
6622,
320,
280,
302,
320,
3822,
313,
29906,
29914,
29883,
4887,
29895,
3997,
1334,
4550,
505,
6118,
463,
29912,
13671,
29913,
13,
29905,
1154,
29912,
29876,
998,
29896,
29914,
29895,
7585,
29953,
29985,
29895,
29913,
8682,
280,
302,
320,
3822,
313,
29906,
29914,
29883,
4887,
29895,
1966,
13,
29898,
29883,
29914,
29896,
29906,
4887,
29895,
8682,
280,
302,
998,
29896,
448,
29871,
29896,
29914,
29895,
9952,
13,
29895,
320,
1188,
29898,
29883,
29914,
29896,
29906,
29897,
8682,
280,
313,
29896,
448,
29871,
29896,
29914,
29895,
29897,
320,
1188,
302,
320,
280,
320,
1188,
302,
29905,
355,
29912,
13671,
9458,
6549,
29892,
491,
23906,
395,
29883,
29938,
18430,
2919,
29892,
591,
505,
393,
395,
29895,
320,
280,
320,
1154,
741,
1188,
302,
1157,
29883,
29915,
1042,
313,
1454,
777,
4868,
395,
29883,
29915,
2013,
1188,
29898,
29883,
29914,
29896,
29906,
1262,
393,
508,
367,
1754,
9727,
6275,
2919,
491,
7348,
310,
395,
29883,
18724,
910,
2794,
393,
278,
20437,
5970,
29879,
714,
472,
10809,
779,
1154,
741,
1188,
302,
1157,
29883,
29915,
4429,
472,
607,
1298,
278,
6588,
7426,
310,
278,
3983,
338,
2046,
29928,
6622,
320,
479,
320,
1154,
29912,
29876,
998,
29896,
29914,
29895,
7585,
29941,
3311,
1188,
302,
847,
274,
29915,
930,
320,
479,
320,
1154,
29912,
29876,
998,
29896,
29914,
29895,
7585,
29876,
998,
29896,
29914,
29883,
4907,
930,
353,
302,
998,
29896,
29914,
29895,
448,
29871,
29896,
29914,
29883,
4907,
9458,
988,
395,
29883,
4907,
29938,
338,
1790,
4868,
393,
508,
367,
1754,
9727,
6275,
2919,
491,
27556,
395,
29883,
13090,
9727,
6275,
2919,
29889,
14542,
14556,
395,
29883,
4907,
320,
479,
29871,
29906,
29895,
29938,
591,
505,
395,
29928,
6622,
320,
479,
302,
998,
29896,
14571,
29906,
29895,
15604,
322,
577,
278,
20437,
1818,
29504,
1550,
278,
3983,
1603,
756,
472,
3203,
395,
29876,
998,
29896,
14571,
29906,
29895,
15604,
7573,
29892,
408,
17049,
29889,
13,
13,
10454,
565,
591,
731,
395,
29883,
4907,
29922,
29906,
29895,
1628,
769,
591,
526,
4444,
395,
29883,
29922,
29896,
29906,
29905,
3822,
29871,
29929,
29985,
29895,
1504,
960,
278,
20437,
5970,
29879,
714,
1156,
395,
29875,
29905,
3797,
413,
29938,
11174,
297,
1206,
313,
29874,
511,
769,
1156,
15399,
1206,
313,
29874,
511,
278,
6588,
7426,
338,
395,
29928,
998,
29930,
1012,
6279,
360,
14571,
29906,
29905,
3822,
29871,
29953,
29985,
29875,
1262,
322,
278,
1353,
310,
7573,
338,
395,
29876,
6622,
29905,
3797,
302,
29898,
29906,
29914,
29883,
4887,
29875,
1504,
1334,
674,
9479,
1510,
393,
278,
1014,
4262,
395,
29954,
6622,
29938,
591,
505,
7625,
338,
263,
6795,
4773,
29892,
4944,
395,
29954,
29938,
471,
29889,
1334,
1073,
393,
297,
395,
29954,
1628,
278,
1353,
310,
12770,
338,
395,
29928,
29876,
29914,
29906,
29905,
6279,
302,
998,
29896,
29974,
29896,
29914,
29895,
29913,
29888,
998,
29896,
29899,
29896,
29914,
29895,
29913,
29984,
29938,
988,
395,
29984,
29905,
6279,
29905,
4787,
29898,
29896,
4935,
1334,
674,
1510,
393,
297,
395,
29954,
6622,
1628,
278,
1353,
310,
12770,
338,
779,
6279,
313,
29876,
6622,
8940,
29896,
29974,
29896,
29914,
29895,
29913,
29888,
998,
29896,
29899,
29896,
29914,
29895,
29913,
29984,
1628,
322,
8151,
395,
29954,
6622,
29938,
338,
884,
263,
6795,
4773,
29889,
13,
13,
6730,
29892,
8369,
393,
395,
29876,
6622,
29905,
3797,
302,
29898,
29906,
29914,
29883,
4887,
29875,
353,
302,
29898,
29896,
14571,
29953,
29905,
3822,
29871,
29929,
29985,
29895,
4887,
29875,
320,
3797,
302,
14571,
29906,
29985,
29895,
29905,
3822,
29871,
29953,
998,
1984,
23462,
6549,
29892,
2427,
29876,
6622,
8940,
29896,
29914,
29895,
1012,
3797,
302,
998,
29896,
29914,
29895,
6822,
29898,
29906,
29905,
3822,
29871,
29953,
29985,
29875,
4935,
2567,
29892,
1951,
395,
29928,
29905,
6279,
29871,
29906,
29876,
998,
29896,
29914,
29895,
29913,
29888,
998,
29896,
29899,
29896,
29914,
29895,
29913,
29984,
29938,
313,
16076,
395,
29954,
29938,
338,
263,
6795,
1342,
511,
591,
679,
393,
395,
29928,
6622,
29905,
6279,
360,
14571,
29906,
29905,
3822,
29871,
29953,
29985,
29875,
2144,
6279,
29871,
29906,
29888,
998,
29896,
29899,
29896,
29914,
29895,
29913,
660,
302,
998,
29896,
29914,
29895,
6822,
29898,
29906,
29905,
3822,
29871,
29953,
29985,
29875,
2144,
6279,
29871,
29906,
29888,
998,
29896,
29899,
29896,
29914,
29895,
29913,
313,
29876,
6622,
8940,
29896,
29914,
29895,
29913,
660,
1628,
322,
8151,
278,
1353,
310,
12770,
297,
395,
29954,
6622,
29938,
338,
395,
29928,
6622,
302,
29985,
3877,
29906,
29905,
6279,
285,
998,
29896,
29899,
29896,
29914,
29895,
29913,
313,
29876,
6622,
8940,
29896,
29974,
29896,
29914,
29895,
29913,
660,
1628,
322,
577,
395,
29954,
6622,
29938,
338,
884,
263,
6795,
4773,
310,
302,
609,
9473,
2159,
29889,
13,
13,
29950,
663,
29892,
372,
9378,
1575,
304,
2143,
1082,
278,
10379,
310,
1346,
9961,
2657,
2486,
4943,
30024,
18445,
395,
29954,
13090,
393,
5537,
403,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
29905,
1822,
2648,
6761,
1066,
3321,
310,
11894,
5539,
2409,
29901,
29895,
29899,
1727,
29905,
1402,
445,
723,
22366,
393,
694,
334,
17492,
29930,
3983,
1122,
5537,
403,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
29905,
1822,
3940,
393,
445,
2980,
10469,
11894,
5539,
2409,
29901,
29941,
29899,
1727,
18899,
491,
18665,
3460,
297,
395,
29895,
29922,
29906,
1504,
13,
13,
2887,
591,
8469,
29892,
591,
674,
5251,
393,
278,
7472,
322,
9212,
14496,
310,
278,
1881,
3983,
395,
29954,
29938,
1163,
491,
263,
7329,
310,
395,
29949,
29918,
29895,
29898,
29896,
4935,
512,
2114,
29892,
408,
1434,
591,
1122,
5251,
393,
395,
29954,
353,
379,
1628,
577,
591,
1122,
5251,
445,
1021,
26368,
4943,
537,
2875,
363,
395,
29950,
1504,
12808,
29892,
591,
674,
5251,
393,
599,
7573,
297,
395,
29950,
29938,
505,
7426,
297,
278,
7292,
11970,
29928,
29892,
320,
6134,
29918,
29895,
360,
9341,
363,
777,
3443,
395,
29928,
29938,
393,
591,
8677,
964,
278,
1494,
29828,
29889,
3645,
278,
2980,
297,
11894,
5539,
2409,
29901,
29895,
29899,
1727,
29905,
1402,
591,
505,
393,
779,
6134,
29918,
29895,
29905,
3797,
29871,
29906,
998,
29949,
29898,
29895,
29897,
4311,
13,
13,
26214,
350,
3885,
363,
395,
29895,
320,
479,
29871,
29941,
29938,
5539,
932,
29901,
29895,
29899,
431,
18899,
13,
9166,
9166,
2751,
25512,
13,
13,
4806,
1286,
6356,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
18899,
363,
7200,
395,
29895,
1504,
1152,
29703,
29892,
591,
674,
5251,
393,
599,
12770,
297,
395,
29950,
29938,
505,
5412,
18177,
29892,
322,
526,
4550,
5545,
491,
1749,
5687,
297,
263,
13747,
1797,
313,
272,
372,
9378,
1575,
393,
260,
583,
1546,
18018,
29899,
7915,
287,
12770,
526,
9391,
297,
777,
13747,
13460,
467,
13,
13,
3206,
262,
2187,
29892,
2216,
362,
29892,
322,
777,
3159,
29884,
654,
13,
2683,
2683,
1378,
29899,
13,
13,
6730,
1235,
502,
14944,
777,
716,
12640,
4475,
304,
17042,
2039,
297,
395,
29950,
1504,
1334,
2436,
779,
6875,
29912,
29893,
1042,
304,
13530,
278,
11837,
310,
263,
6686,
395,
29893,
1628,
591,
2436,
395,
29893,
29985,
29875,
29938,
304,
13530,
278,
395,
29875,
998,
386,
1042,
2943,
297,
278,
6686,
395,
29875,
29938,
313,
2248,
292,
515,
395,
29900,
25942,
322,
363,
1023,
17042,
2039,
395,
29893,
29918,
29896,
29892,
281,
29918,
29906,
29938,
1316,
393,
278,
1833,
2943,
310,
395,
29893,
29918,
29896,
29938,
15743,
278,
937,
2943,
310,
395,
29893,
29918,
29906,
1628,
591,
2436,
395,
29893,
29918,
29896,
281,
29918,
29906,
29938,
304,
13530,
1009,
16125,
362,
297,
278,
5613,
982,
29889,
13,
13,
2887,
5276,
297,
9779,
5539,
3471,
29901,
431,
29899,
957,
1493,
29905,
1402,
372,
338,
4780,
304,
6356,
263,
13907,
2498,
2133,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
2395,
18899,
541,
2898,
304,
6356,
263,
13907,
2498,
2133,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
29905,
1822,
450,
14656,
297,
1326,
292,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
18899,
363,
395,
29895,
1405,
29871,
29906,
29938,
338,
297,
11415,
5101,
310,
7573,
395,
29884,
29892,
325,
29938,
363,
607,
278,
1353,
310,
395,
29884,
320,
280,
328,
7864,
325,
29938,
395,
29895,
4388,
14625,
2039,
338,
1568,
7200,
1135,
278,
6588,
1353,
310,
395,
29895,
4388,
14625,
2039,
975,
599,
7573,
11000,
297,
278,
3983,
29889,
8680,
1650,
338,
304,
1346,
1271,
30024,
1438,
27931,
5633,
310,
278,
3983,
29892,
13674,
17452,
3448,
263,
4868,
15958,
310,
278,
3625,
17042,
2039,
297,
278,
3983,
297,
14523,
363,
263,
18818,
310,
1346,
15227,
537,
30024,
373,
278,
6743,
393,
10503,
573,
29889,
26321,
29892,
591,
674,
21734,
4529,
263,
731,
7555,
1942,
29912,
29933,
7920,
310,
17042,
2039,
297,
395,
29950,
1628,
988,
1269,
395,
29890,
320,
262,
2802,
1942,
29912,
29933,
7920,
338,
2000,
263,
334,
1271,
1943,
10521,
319,
6686,
395,
29893,
29938,
297,
395,
29950,
29938,
338,
334,
1271,
287,
29930,
491,
777,
7555,
1942,
29912,
29933,
7920,
565,
727,
338,
263,
2908,
1943,
395,
29890,
320,
262,
2802,
1942,
29912,
29933,
7920,
1316,
393,
395,
29890,
29938,
470,
779,
6875,
29912,
29890,
1042,
338,
263,
1014,
29899,
20919,
310,
395,
29893,
29938,
313,
705,
671,
278,
12640,
395,
29890,
320,
11725,
281,
29938,
470,
779,
6875,
29912,
29890,
29913,
320,
11725,
281,
18724,
13,
13,
13555,
7128,
2486,
2874,
292,
7555,
1942,
29912,
29933,
27206,
372,
338,
25782,
292,
304,
2498,
675,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
18899,
491,
21248,
443,
1271,
287,
5764,
17042,
2039,
29889,
319,
16905,
9493,
310,
4547,
3277,
10930,
338,
393,
445,
338,
694,
5520,
3755,
278,
1492,
1203,
304,
2302,
29889,
2803,
502,
4529,
29901,
13,
13,
2744,
334,
29938,
29875,
4388,
20919,
5870,
29930,
338,
385,
10372,
5101,
310,
313,
28802,
14981,
13557,
29897,
395,
29875,
4388,
14625,
2039,
411,
278,
1021,
1369,
322,
1095,
3291,
29889,
13,
13,
1576,
5296,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
18899,
1736,
491,
5366,
1747,
393,
278,
1353,
310,
395,
29906,
4388,
20919,
28103,
338,
278,
1021,
408,
278,
1353,
310,
5764,
395,
29946,
4388,
14625,
2039,
29892,
701,
304,
4868,
13879,
29889,
2398,
29892,
372,
338,
451,
12695,
278,
1206,
393,
278,
1353,
310,
334,
348,
1271,
287,
29930,
395,
29875,
4388,
20919,
28103,
338,
2629,
263,
4868,
7329,
310,
278,
1353,
310,
334,
348,
1271,
287,
29930,
5764,
395,
29906,
29875,
4388,
14625,
2039,
29889,
14598,
29892,
278,
1353,
310,
395,
29875,
4388,
20919,
28103,
508,
367,
1568,
7200,
29889,
910,
5930,
1363,
727,
526,
395,
29906,
29875,
29938,
1422,
395,
29875,
4388,
20919,
28103,
6590,
304,
1269,
5764,
395,
29906,
29875,
4388,
20919,
29892,
322,
697,
508,
14034,
393,
777,
310,
1438,
526,
24370,
541,
4045,
526,
443,
1271,
287,
29889,
2973,
445,
297,
3458,
29892,
1749,
5296,
1736,
491,
21248,
395,
29875,
4388,
20919,
28103,
4153,
3265,
1135,
6819,
1549,
738,
4218,
304,
2302,
5764,
17042,
2039,
29892,
408,
1434,
29889,
13,
13,
29898,
29900,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29941,
4912,
29905,
1385,
313,
29900,
29892,
448,
29941,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
472,
313,
29900,
29892,
448,
29941,
29897,
518,
29938,
29916,
29938,
3199,
3400,
8521,
29941,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
472,
8521,
29941,
29892,
29871,
29900,
29897,
518,
29938,
29874,
29938,
3199,
3400,
313,
29900,
29892,
29871,
29941,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
472,
313,
29900,
29892,
29871,
29941,
29897,
518,
29938,
29890,
29938,
3199,
3400,
313,
29941,
29892,
29871,
29900,
29897,
8607,
5539,
13471,
29922,
29900,
29889,
29896,
29945,
4912,
29905,
1385,
472,
313,
29941,
29892,
29871,
29900,
29897,
518,
29938,
29883,
29938,
3199,
3400,
13,
13,
5317,
9310,
29941,
29905,
29930,
3944,
580,
3199,
1118,
518,
29941,
29905,
29930,
5223,
580,
3199,
3680,
6492,
9310,
29906,
29889,
29955,
29905,
29930,
3944,
580,
3199,
1118,
518,
29906,
29889,
29955,
29905,
29930,
5223,
580,
3199,
3680,
6492,
9310,
29906,
29889,
29955,
29905,
29930,
3944,
580,
3199,
1118,
518,
29906,
29889,
29955,
29905,
29930,
5223,
580,
3199,
3680,
13,
13,
4806,
4091,
2436,
395,
29956,
998,
741,
1942,
29912,
29933,
930,
1118,
1060,
998,
741,
1942,
29912,
29933,
930,
1042,
304,
13530,
278,
731,
310,
17042,
2039,
297,
395,
29950,
29938,
393,
526,
443,
1271,
287,
322,
24370,
491,
7555,
1942,
29912,
29933,
27206,
8307,
29889,
1334,
674,
13672,
288,
2415,
278,
480,
6774,
924,
746,
372,
338,
3763,
7555,
1942,
29912,
29933,
7920,
313,
705,
2360,
2737,
304,
395,
29956,
29938,
297,
278,
18070,
310,
263,
2908,
1943,
731,
467,
1334,
884,
671,
278,
1494,
878,
14903,
373,
278,
6166,
7555,
1942,
29912,
29933,
11656,
399,
29892,
1060,
21063,
591,
13530,
491,
7555,
1942,
29912,
29933,
15609,
29875,
29892,
2802,
1942,
29912,
29933,
29261,
280,
474,
1042,
278,
11306,
310,
17042,
2039,
297,
7555,
1942,
29912,
29933,
7920,
310,
3309,
395,
29875,
29938,
470,
3309,
472,
1556,
395,
29875,
1628,
8307,
29892,
322,
591,
13530,
491,
7555,
1942,
29912,
29933,
930,
29961,
29879,
320,
280,
328,
7864,
260,
9341,
304,
13530,
278,
11306,
310,
17042,
2039,
297,
7555,
1942,
29912,
29933,
7920,
411,
1095,
9748,
395,
29879,
29892,
260,
29938,
313,
392,
2788,
12640,
338,
1304,
373,
395,
29956,
29892,
1060,
18724,
3940,
393,
395,
29990,
29918,
29875,
998,
741,
1942,
29912,
29933,
930,
1042,
338,
451,
304,
367,
9613,
411,
7555,
1942,
29912,
29933,
15609,
29875,
1504,
20175,
29892,
591,
13530,
491,
395,
29924,
29918,
29875,
998,
741,
1942,
29912,
29933,
930,
1042,
338,
278,
731,
310,
599,
443,
1271,
287,
395,
29875,
4388,
20919,
28103,
297,
395,
29950,
1628,
322,
395,
29924,
29918,
29875,
998,
741,
1942,
29912,
29933,
930,
4400,
29879,
320,
280,
328,
7864,
260,
9341,
338,
278,
11306,
310,
1438,
988,
1716,
17042,
2039,
297,
278,
5870,
1369,
472,
395,
29879,
29938,
322,
1095,
472,
395,
29873,
1504,
1334,
674,
884,
13672,
21301,
278,
480,
6774,
924,
29892,
5998,
727,
338,
2337,
385,
12235,
7555,
1942,
29912,
29933,
26253,
13,
13,
29949,
332,
7306,
338,
304,
10127,
278,
1494,
14585,
29901,
6118,
17458,
29898,
29928,
8940,
29906,
29895,
29913,
320,
3797,
320,
1563,
29989,
29924,
29918,
29895,
998,
741,
1942,
29912,
29933,
29261,
3797,
413,
29899,
29896,
4229,
1266,
29989,
320,
3797,
320,
17458,
648,
29895,
1012,
1563,
1194,
1563,
29989,
29923,
29918,
29950,
29905,
1266,
4295,
3822,
313,
29888,
29928,
8940,
29895,
29899,
29896,
1012,
1266,
17085,
607,
674,
769,
22366,
385,
7568,
3216,
373,
11892,
29923,
29918,
29950,
25183,
491,
777,
20837,
9623,
29889,
450,
2175,
29899,
3179,
14585,
338,
4318,
297,
8836,
8247,
5539,
2409,
29901,
348,
1271,
287,
29899,
2798,
18899,
322,
5539,
2409,
29901,
29895,
8798,
29899,
2395,
29905,
1822,
450,
1880,
3233,
2969,
1244,
338,
393,
29892,
565,
591,
871,
2908,
263,
2319,
3307,
4868,
15958,
313,
18980,
373,
395,
29895,
10931,
15958,
310,
278,
395,
29875,
4388,
14625,
2039,
363,
599,
395,
29875,
29905,
3797,
413,
1628,
769,
278,
1353,
310,
443,
1271,
287,
395,
29895,
4388,
20919,
28103,
338,
1603,
8886,
408,
2919,
408,
697,
723,
2149,
1728,
2908,
3076,
313,
4746,
278,
315,
13989,
29891,
29899,
4504,
10305,
29920,
306,
484,
15380,
1017,
467,
450,
1667,
16905,
7225,
5771,
964,
278,
1492,
29899,
3179,
14585,
29889,
910,
338,
11827,
773,
263,
628,
9593,
1006,
433,
3277,
22799,
573,
2980,
29892,
297,
607,
1023,
19595,
653,
21248,
6273,
526,
11827,
363,
278,
1206,
395,
29875,
29922,
29906,
29938,
322,
769,
1304,
304,
14505,
1269,
916,
701,
304,
395,
29875,
29922,
29895,
1504,
26321,
29892,
591,
1510,
385,
8031,
1006,
1456,
1546,
313,
29896,
29897,
3216,
292,
278,
1353,
310,
443,
1271,
287,
395,
29875,
4388,
20919,
28103,
395,
29924,
29918,
29875,
998,
741,
1942,
29912,
29933,
4229,
3797,
474,
29899,
29896,
1042,
322,
313,
29906,
29897,
23906,
395,
29875,
4388,
2848,
2908,
3076,
304,
3216,
278,
1353,
310,
443,
1271,
287,
395,
29875,
4388,
14625,
2039,
395,
29956,
29918,
29875,
998,
741,
1942,
29912,
29933,
4229,
3797,
474,
4400,
29884,
320,
280,
328,
7864,
325,
9341,
1546,
738,
2183,
5101,
310,
7573,
395,
29884,
29892,
29894,
29938,
313,
29931,
331,
655,
5539,
2409,
29901,
25237,
29899,
1271,
29879,
29905,
14664,
450,
7480,
3216,
338,
769,
1304,
304,
3216,
292,
278,
1353,
310,
443,
1271,
287,
395,
29875,
29974,
29896,
4388,
20919,
28103,
395,
29924,
648,
29875,
29974,
29896,
2844,
741,
1942,
29912,
29933,
4229,
3797,
474,
4429,
322,
577,
373,
29889,
13,
13,
19357,
350,
618,
363,
11892,
29924,
29918,
29895,
25183,
313,
15263,
2133,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
2395,
29905,
2314,
13,
2683,
2683,
2683,
2683,
29899,
13,
13,
1576,
1494,
10383,
2498,
7093,
278,
2114,
1304,
297,
278,
395,
29895,
29922,
29906,
29938,
4444,
393,
591,
505,
779,
17458,
29898,
29876,
29928,
29985,
29906,
1262,
395,
29906,
4388,
14625,
2039,
297,
395,
29950,
29938,
304,
2050,
29889,
13,
13,
29905,
29961,
2409,
29901,
348,
1271,
287,
29899,
2798,
18899,
1670,
338,
777,
779,
2876,
29918,
29895,
1405,
29871,
29900,
29938,
313,
262,
18980,
310,
395,
29876,
29892,
285,
10931,
1316,
393,
278,
1494,
2875,
8640,
29901,
565,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
3743,
472,
1556,
263,
779,
2876,
29918,
29895,
29938,
15958,
310,
599,
395,
29875,
4388,
14625,
2039,
297,
395,
29950,
29938,
363,
599,
395,
29875,
1628,
769,
2046,
29989,
29956,
29918,
29875,
29989,
320,
479,
302,
320,
17458,
29898,
29928,
4887,
29875,
320,
3425,
320,
726,
29912,
1454,
599,
500,
474,
320,
280,
413,
19470,
13,
13,
6730,
4443,
393,
591,
505,
2046,
29876,
29928,
29985,
29875,
320,
280,
891,
29956,
29918,
29875,
320,
5231,
1060,
29918,
29875,
29989,
320,
280,
302,
1194,
6134,
29918,
29895,
29928,
4887,
29875,
3997,
334,
7827,
29930,
17042,
2039,
297,
395,
29950,
29938,
313,
3757,
497,
393,
491,
1749,
4943,
2133,
8792,
29892,
591,
508,
5251,
393,
599,
13791,
505,
7426,
297,
11970,
29928,
29892,
320,
6134,
29918,
29895,
360,
9341,
467,
1334,
1286,
7568,
3216,
395,
29990,
29918,
29875,
1504,
7806,
395,
29916,
320,
262,
1060,
29918,
29875,
29938,
756,
263,
1014,
2084,
395,
29916,
320,
2146,
567,
300,
1837,
289,
320,
262,
2802,
1942,
29912,
29933,
26253,
1334,
1122,
4550,
7568,
3216,
395,
29990,
29918,
29875,
29938,
491,
278,
1494,
313,
5372,
5816,
23819,
29897,
12678,
29901,
2046,
29989,
29990,
29918,
29875,
29989,
320,
280,
320,
2083,
320,
12514,
648,
29926,
29922,
29906,
2844,
29875,
29913,
891,
741,
1942,
29912,
29933,
15609,
29926,
29989,
320,
3822,
313,
29906,
29905,
6134,
29918,
29895,
29928,
8940,
29875,
29899,
29926,
1118,
3997,
1951,
1269,
24370,
2224,
395,
29916,
320,
262,
1060,
29918,
29875,
29938,
1122,
367,
7625,
3025,
395,
29875,
448,
891,
29890,
25183,
17752,
310,
777,
2908,
1943,
395,
29890,
320,
262,
2802,
1942,
29912,
29933,
29261,
280,
474,
1042,
491,
4417,
385,
7636,
304,
967,
4565,
470,
1250,
29892,
322,
727,
526,
701,
304,
395,
29906,
29905,
6134,
29918,
29895,
360,
29938,
5837,
304,
10985,
738,
2183,
6686,
491,
395,
29896,
29938,
7636,
373,
2845,
1095,
29889,
4001,
11892,
741,
1942,
29912,
29933,
15609,
29926,
29989,
320,
280,
320,
2876,
29918,
29895,
302,
1194,
6134,
29918,
29895,
360,
4887,
29926,
29938,
591,
505,
2046,
29989,
29990,
29918,
29875,
29989,
320,
280,
320,
2083,
320,
12514,
648,
29926,
29922,
29906,
2844,
29875,
29913,
302,
320,
2876,
29918,
29895,
320,
3822,
313,
29906,
8940,
29875,
29899,
29926,
29913,
3441,
6134,
29918,
29895,
360,
4887,
29875,
320,
280,
302,
29905,
2876,
29918,
29895,
313,
29906,
29905,
6134,
29918,
29895,
360,
4887,
29875,
19470,
10133,
29892,
23906,
779,
2876,
29918,
29895,
320,
280,
320,
1154,
29912,
29896,
19048,
29946,
29905,
6134,
29918,
29895,
4887,
29895,
1042,
313,
1366,
338,
975,
21174,
511,
591,
505,
2046,
29989,
29990,
29918,
29875,
29989,
320,
280,
302,
313,
29928,
29914,
29906,
4887,
29875,
3997,
1126,
577,
2046,
29989,
29956,
29918,
29875,
29989,
320,
479,
891,
29956,
29918,
29875,
320,
5231,
1060,
29918,
29875,
29989,
448,
891,
29990,
29918,
29875,
29989,
320,
479,
302,
29928,
29985,
29875,
448,
302,
29898,
29928,
29914,
29906,
4887,
29875,
353,
302,
29905,
17458,
29898,
29928,
4887,
29875,
3997,
322,
278,
10383,
4477,
29889,
13,
13,
3047,
445,
29892,
591,
508,
6356,
29901,
13,
13,
29905,
29961,
15263,
2133,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
2395,
29905,
10725,
29962,
5539,
2409,
29901,
29895,
8798,
29899,
2395,
18899,
960,
11892,
29956,
29918,
29895,
29989,
353,
302,
320,
17458,
29898,
29928,
4887,
29895,
1628,
769,
11892,
29923,
29918,
29950,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
29876,
29905,
1563,
29989,
29924,
29918,
29895,
29905,
1266,
29989,
998,
29896,
14571,
29906,
29895,
11383,
1266,
4935,
13,
13,
1576,
5296,
338,
13674,
13557,
304,
393,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
2395,
29905,
1822,
1334,
505,
6118,
463,
29912,
13671,
29913,
13,
29905,
1563,
29989,
29924,
29918,
29895,
320,
1266,
29989,
7878,
320,
2083,
320,
12514,
20862,
29884,
29892,
325,
29897,
320,
262,
478,
320,
3706,
478,
29913,
320,
1563,
29989,
29956,
29918,
29895,
518,
29884,
320,
280,
328,
7864,
325,
10725,
1266,
15333,
29906,
1966,
13,
11035,
479,
320,
1154,
29912,
320,
1563,
1194,
2083,
320,
12514,
20862,
29884,
29892,
325,
29897,
320,
262,
478,
320,
3706,
478,
29913,
320,
1563,
29989,
29956,
29918,
29895,
518,
29884,
320,
280,
328,
7864,
325,
10725,
1266,
29989,
320,
1266,
4887,
29906,
24333,
29876,
29985,
29906,
29913,
669,
320,
726,
29912,
29907,
13989,
29891,
29899,
4504,
4495,
29920,
306,
484,
29567,
9952,
13,
20644,
320,
1154,
29912,
320,
1563,
29898,
29876,
29905,
17458,
29898,
29928,
4887,
29895,
320,
1266,
4887,
29906,
24333,
29876,
29985,
29906,
9952,
13,
20644,
320,
17458,
29898,
29928,
8940,
29906,
29895,
1012,
355,
29912,
13671,
9458,
322,
577,
6118,
463,
29912,
13671,
29913,
13,
29905,
1563,
29989,
29924,
29918,
29895,
29905,
1266,
29989,
998,
29896,
14571,
29906,
29895,
2915,
8682,
479,
360,
1966,
13,
29876,
29905,
1563,
29989,
29924,
29918,
29895,
29905,
1266,
29989,
998,
29896,
14571,
29906,
29895,
2915,
8682,
479,
302,
29928,
1966,
13,
29876,
29905,
1563,
29989,
29924,
29918,
29895,
29905,
1266,
29989,
998,
29896,
14571,
29906,
29895,
2915,
7878,
320,
5981,
29918,
29895,
29905,
1563,
27204,
29923,
29918,
29950,
4295,
1266,
29897,
320,
1966,
355,
29912,
13671,
9458,
607,
10469,
278,
10383,
29889,
13,
13,
26214,
350,
618,
363,
11892,
29924,
29918,
29895,
25183,
313,
15263,
2133,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
29905,
2314,
13,
2683,
2683,
2683,
2683,
1378,
29899,
13,
13,
4806,
1286,
3380,
304,
664,
7113,
263,
2498,
2133,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
29905,
1822,
450,
2980,
674,
367,
22799,
573,
297,
5469,
29889,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
18899,
674,
13674,
9080,
408,
278,
2967,
1206,
29892,
322,
278,
22799,
573,
4331,
338,
6219,
4822,
278,
2446,
1023,
454,
4317,
294,
29889,
13,
13,
29905,
29961,
2409,
29901,
1004,
300,
29899,
2798,
18899,
12142,
393,
779,
1563,
29989,
29956,
29918,
29926,
29961,
29884,
320,
280,
328,
7864,
325,
10725,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29926,
29899,
29896,
1012,
1266,
1262,
363,
599,
395,
29884,
29892,
325,
29938,
322,
599,
395,
29926,
529,
474,
29938,
363,
777,
4343,
395,
29875,
320,
280,
413,
1504,
1987,
6118,
1563,
29989,
29924,
29918,
29875,
320,
1266,
29989,
353,
29949,
29918,
29895,
29905,
1563,
27204,
29923,
29918,
29950,
29989,
320,
3822,
313,
29888,
29928,
8940,
29875,
29899,
29896,
1012,
1266,
467,
3997,
13,
13,
2831,
263,
2183,
395,
29875,
4388,
20919,
5870,
2427,
29893,
29918,
29896,
29892,
281,
29918,
29906,
5767,
591,
674,
1827,
393,
278,
334,
10889,
29930,
395,
29879,
29918,
29916,
29938,
310,
263,
2943,
395,
29916,
320,
262,
281,
29918,
29896,
320,
5231,
281,
29918,
29906,
29938,
338,
967,
937,
2602,
297,
395,
29893,
29918,
29896,
320,
6875,
29912,
29893,
29918,
29906,
1042,
313,
578,
395,
29900,
320,
280,
269,
29918,
29916,
529,
29871,
29906,
29875,
18724,
20175,
29892,
278,
9500,
395,
29879,
20862,
29884,
29892,
325,
15604,
310,
385,
7636,
2427,
29884,
29892,
325,
1262,
338,
278,
937,
2602,
310,
445,
7636,
297,
395,
29893,
29918,
29896,
320,
6875,
29912,
29893,
29918,
29906,
1042,
313,
3062,
278,
937,
7636,
297,
395,
29893,
29918,
29896,
320,
6875,
29912,
29893,
29918,
29906,
1042,
338,
27541,
515,
395,
29900,
18724,
13,
13,
2887,
1434,
29892,
746,
591,
6755,
304,
788,
738,
2427,
29884,
29892,
325,
1262,
304,
395,
29950,
1628,
372,
338,
451,
2427,
29906,
29895,
29899,
29896,
29892,
285,
1262,
6364,
297,
395,
29950,
7650,
29884,
29892,
325,
15604,
322,
577,
727,
338,
263,
731,
395,
29943,
29938,
310,
11892,
29943,
29989,
320,
280,
285,
29938,
7573,
313,
2541,
395,
29884,
29892,
325,
320,
29842,
383,
10931,
1316,
393,
1432,
395,
29884,
320,
280,
328,
7864,
325,
29938,
6686,
310,
3309,
395,
29906,
29875,
29899,
29896,
29938,
25869,
29879,
777,
2943,
395,
29916,
320,
262,
383,
1504,
3940,
393,
1269,
2427,
29893,
29918,
29896,
29892,
281,
29918,
29906,
29897,
320,
262,
341,
29918,
29875,
29938,
393,
338,
8676,
491,
278,
6124,
310,
278,
7636,
2427,
29884,
29892,
325,
1262,
304,
395,
29950,
29938,
16161,
304,
263,
395,
29884,
320,
280,
328,
7864,
325,
29938,
6686,
310,
3309,
395,
29906,
29875,
29899,
29896,
29938,
363,
395,
29875,
320,
3797,
413,
29938,
313,
711,
2408,
287,
491,
22960,
278,
3619,
1369,
29914,
29734,
310,
395,
29893,
29918,
29896,
320,
6875,
29912,
29893,
29918,
29906,
1042,
304,
1653,
263,
334,
6034,
1070,
29930,
6686,
29892,
322,
769,
11077,
278,
7636,
2427,
29884,
29892,
325,
1262,
515,
445,
6686,
467,
6549,
395,
29916,
320,
262,
281,
29918,
29896,
320,
5231,
281,
29918,
29906,
29938,
363,
777,
395,
29916,
320,
262,
383,
1504,
8680,
5296,
13705,
338,
29901,
591,
2329,
263,
9500,
395,
29879,
20862,
29884,
29892,
325,
15604,
363,
278,
7636,
2427,
29884,
29892,
325,
5767,
591,
2329,
263,
2943,
395,
29916,
320,
262,
383,
29938,
322,
263,
9500,
995,
395,
29879,
29918,
29916,
29938,
363,
395,
29916,
1628,
322,
591,
674,
1510,
393,
278,
6124,
310,
278,
7636,
2427,
29884,
29892,
325,
1262,
304,
395,
29950,
7650,
29884,
29892,
325,
15604,
1614,
2167,
871,
395,
29949,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29906,
29913,
360,
998,
29875,
29899,
29896,
1012,
1266,
1262,
395,
29875,
4388,
20919,
28103,
3704,
278,
2943,
395,
29916,
29938,
297,
607,
2427,
29884,
29892,
325,
511,
921,
29938,
505,
1009,
2225,
23059,
9500,
1819,
29889,
4001,
727,
526,
395,
29949,
29918,
29895,
29898,
29888,
1262,
1950,
19995,
310,
395,
29916,
320,
262,
383,
29892,
29871,
29900,
320,
280,
269,
29918,
29916,
29892,
269,
20862,
29884,
29892,
325,
2915,
320,
280,
29871,
29906,
29895,
1628,
445,
10469,
6118,
1563,
29989,
29924,
29918,
29875,
29905,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
27204,
29923,
29918,
29950,
29989,
320,
3822,
313,
29888,
29928,
8940,
29875,
29899,
29896,
1012,
1266,
17085,
491,
263,
2560,
9833,
3216,
975,
2427,
29884,
29892,
325,
29897,
320,
262,
382,
29918,
29950,
29938,
322,
975,
278,
1950,
19995,
310,
395,
29916,
29892,
269,
29918,
29916,
29892,
269,
20862,
29884,
29892,
325,
29897,
4311,
13,
13,
797,
278,
1791,
310,
445,
5296,
591,
674,
5251,
395,
29900,
320,
280,
269,
20862,
29884,
29892,
325,
2915,
320,
280,
474,
29899,
29896,
1628,
322,
577,
2427,
29884,
29892,
325,
29897,
320,
262,
281,
29918,
29896,
29938,
313,
705,
884,
5251,
1728,
6410,
310,
2498,
537,
393,
395,
29884,
29938,
9399,
267,
395,
29894,
29938,
297,
395,
29893,
29918,
29896,
18724,
450,
5296,
363,
278,
9886,
1206,
395,
29875,
320,
280,
269,
20862,
29884,
29892,
325,
2915,
529,
29871,
29906,
29875,
29938,
338,
13557,
411,
278,
16178,
310,
395,
29893,
29918,
29896,
29892,
281,
29918,
29906,
29938,
2381,
17280,
29889,
1334,
674,
13530,
491,
395,
29924,
15972,
29875,
29938,
278,
11306,
310,
395,
29924,
29918,
29875,
29938,
24064,
278,
16614,
5276,
4550,
2215,
313,
29875,
29889,
29872,
29889,
411,
2427,
29884,
29892,
325,
1262,
472,
9500,
395,
29879,
20862,
29884,
29892,
325,
15604,
322,
395,
29916,
29938,
472,
9500,
395,
29879,
29918,
29916,
18724,
1334,
6219,
964,
1023,
4251,
29892,
8679,
373,
278,
995,
310,
395,
29879,
29918,
29916,
1504,
13,
13,
4136,
313,
29874,
29897,
12142,
395,
29900,
320,
280,
269,
29918,
29916,
320,
280,
474,
29974,
29896,
1504,
13,
13,
12024,
395,
29925,
29938,
367,
278,
731,
310,
395,
29875,
29974,
29896,
4388,
14625,
2039,
297,
395,
29950,
7650,
29884,
29892,
325,
15604,
393,
3160,
2943,
395,
29884,
29938,
297,
2602,
395,
29879,
20862,
29884,
29892,
325,
29897,
4429,
2943,
395,
29894,
29938,
297,
2602,
395,
29879,
20862,
29884,
29892,
325,
2915,
718,
29871,
29896,
1628,
322,
2943,
395,
29916,
29938,
297,
2602,
395,
29879,
29918,
29916,
29938,
3255,
29925,
29938,
508,
1584,
3160,
24370,
17042,
2039,
467,
1334,
2446,
2302,
11892,
29925,
29989,
1504,
9179,
14556,
395,
29879,
29918,
29916,
1405,
269,
20862,
29884,
29892,
325,
29897,
4429,
1156,
27826,
278,
2943,
395,
29884,
29938,
297,
2602,
395,
29879,
20862,
29884,
29892,
325,
29897,
4429,
727,
526,
12211,
6134,
29918,
29895,
360,
8940,
29879,
20862,
29884,
29892,
325,
29897,
7920,
5837,
304,
6755,
263,
10944,
363,
278,
6686,
29892,
322,
727,
526,
12211,
6134,
29918,
29895,
360,
8940,
29875,
448,
29871,
29896,
448,
269,
20862,
29884,
29892,
325,
29897,
7920,
5837,
304,
6755,
263,
25557,
363,
278,
6686,
29892,
1951,
395,
29894,
29892,
921,
29938,
505,
4343,
11909,
1494,
395,
29884,
1504,
10133,
11892,
29925,
29989,
353,
3441,
6134,
29918,
29895,
360,
8940,
29879,
20862,
29884,
29892,
325,
21345,
320,
3822,
3441,
6134,
29918,
29895,
360,
8940,
29875,
448,
29871,
29896,
448,
269,
20862,
29884,
29892,
325,
21345,
353,
438,
29918,
29895,
29898,
29928,
998,
29875,
29899,
29896,
23462,
960,
2012,
591,
505,
395,
29879,
29918,
29916,
529,
269,
20862,
29884,
29892,
325,
15604,
769,
278,
2980,
322,
3216,
526,
13557,
313,
2541,
263,
7329,
310,
779,
6134,
29918,
29895,
360,
29938,
9500,
287,
515,
278,
10944,
304,
278,
25557,
467,
13,
13,
2831,
1269,
395,
29886,
353,
320,
1563,
29898,
29886,
29985,
29900,
29892,
320,
7796,
29892,
282,
998,
29875,
29974,
29896,
1012,
1266,
29897,
320,
262,
349,
1628,
1235,
395,
29984,
29985,
29886,
29938,
367,
278,
731,
310,
25557,
267,
1316,
393,
363,
1269,
395,
29939,
320,
262,
660,
29985,
29886,
1628,
591,
505,
395,
29939,
29886,
353,
281,
29918,
29896,
29905,
6875,
29912,
29893,
29918,
29906,
1042,
363,
777,
2427,
29893,
29918,
29896,
29892,
281,
29918,
29906,
29897,
320,
262,
341,
15972,
29875,
1504,
1334,
1286,
2302,
779,
1563,
29989,
29984,
29985,
29886,
29905,
1266,
29989,
1504,
3940,
393,
1269,
395,
29939,
320,
262,
660,
29985,
29886,
29938,
756,
278,
883,
395,
29939,
353,
281,
29918,
29896,
320,
6875,
29912,
29893,
29918,
29906,
29913,
320,
15375,
282,
1628,
322,
577,
779,
6875,
29912,
29939,
1042,
338,
385,
395,
29875,
29899,
29896,
4388,
1491,
20919,
310,
395,
29893,
29918,
29906,
22073,
1951,
395,
29893,
29918,
29906,
29938,
338,
443,
1271,
287,
491,
5023,
310,
395,
29875,
4388,
20919,
28103,
29892,
372,
4477,
393,
395,
29939,
29938,
338,
443,
1271,
287,
408,
1532,
29889,
6549,
395,
29984,
29985,
29886,
320,
11725,
399,
648,
29875,
29899,
29896,
4400,
29886,
998,
29875,
29974,
29896,
29913,
320,
280,
328,
7864,
282,
29985,
29900,
25473,
322,
577,
6118,
1563,
29989,
660,
29985,
29886,
320,
1266,
29989,
320,
280,
320,
1563,
29989,
399,
648,
29875,
29899,
29896,
4400,
29886,
998,
29875,
29974,
29896,
29913,
320,
280,
328,
7864,
282,
29985,
29900,
29962,
320,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29906,
1012,
1266,
17085,
1334,
769,
505,
6118,
1563,
29989,
29924,
15972,
29875,
29905,
1266,
29989,
353,
320,
2083,
320,
12514,
648,
29886,
320,
262,
349,
29913,
320,
1563,
29989,
660,
29985,
29886,
320,
1266,
29989,
320,
280,
891,
29925,
29989,
320,
3822,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29906,
1012,
1266,
29897,
353,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29906,
29913,
360,
998,
29875,
29899,
29896,
1012,
1266,
17085,
408,
17049,
29889,
13,
13,
4136,
313,
29890,
29897,
8669,
7755,
395,
29875,
29974,
29906,
320,
280,
269,
29918,
29916,
529,
29871,
29906,
29875,
1504,
13,
13,
4013,
10469,
393,
395,
29916,
320,
29842,
281,
29918,
29896,
29938,
577,
395,
29916,
320,
262,
281,
29918,
29906,
1504,
450,
5296,
338,
1286,
871,
263,
7248,
7780,
557,
373,
278,
3517,
1206,
29889,
1334,
4529,
395,
29925,
29938,
304,
367,
278,
731,
310,
395,
29875,
4388,
14625,
2039,
313,
1333,
395,
29875,
29974,
29896,
29938,
17042,
2039,
408,
1434,
29897,
297,
395,
29950,
7650,
29884,
29892,
325,
15604,
393,
505,
395,
29884,
29938,
297,
2602,
395,
29879,
20862,
29884,
29892,
325,
15604,
322,
395,
29894,
29938,
297,
2602,
395,
29879,
20862,
29884,
29892,
325,
2915,
718,
29871,
29896,
1504,
2648,
385,
13557,
21248,
2980,
408,
297,
278,
3517,
1206,
29892,
591,
505,
11892,
29925,
29989,
353,
438,
29918,
29895,
29898,
29928,
998,
29875,
29899,
29896,
23462,
1094,
1434,
29892,
363,
1269,
4343,
395,
29886,
353,
320,
1563,
29898,
29886,
29985,
29900,
29892,
320,
7778,
29892,
282,
998,
29875,
1012,
1266,
29897,
320,
262,
349,
29938,
591,
4529,
395,
29984,
29985,
29886,
29938,
408,
278,
731,
310,
25557,
267,
1316,
393,
363,
1269,
395,
29939,
320,
262,
660,
29985,
29886,
1628,
591,
505,
395,
29939,
29886,
353,
281,
29918,
29896,
320,
6875,
29912,
29893,
29918,
29906,
1042,
363,
777,
2427,
29893,
29918,
29896,
29892,
281,
29918,
29906,
29897,
320,
262,
341,
29918,
29875,
1628,
322,
1749,
7306,
338,
304,
2302,
779,
1563,
29989,
29984,
29985,
29886,
29905,
1266,
29989,
1504,
3940,
393,
591,
769,
505,
779,
6875,
29912,
29939,
29913,
353,
281,
29918,
29906,
29938,
322,
577,
395,
29939,
29938,
338,
443,
1271,
287,
29889,
853,
4561,
1434,
29892,
591,
505,
395,
29916,
320,
262,
3855,
29938,
577,
591,
1122,
6219,
1269,
395,
29939,
320,
262,
660,
29985,
29886,
29938,
964,
1023,
1014,
24772,
975,
395,
29939,
1504,
26321,
29892,
1235,
2046,
29984,
29918,
29896,
3490,
320,
1563,
10045,
29939,
29918,
29896,
320,
11725,
3855,
320,
320,
6563,
320,
3855,
29918,
29896,
29985,
29900,
353,
282,
29985,
29875,
29892,
3855,
29918,
29896,
998,
29879,
29918,
29916,
448,
474,
29913,
353,
921,
29892,
3855,
320,
262,
660,
29985,
29886,
29905,
1266,
29905,
9458,
322,
2046,
29984,
29918,
29906,
3490,
320,
1563,
10045,
29939,
29918,
29906,
320,
11725,
3855,
320,
320,
6563,
320,
3855,
29918,
29906,
29985,
29900,
353,
921,
29892,
3855,
29918,
29906,
998,
29906,
29875,
448,
269,
29918,
29916,
29913,
353,
282,
29985,
29900,
29892,
3855,
320,
262,
660,
29985,
29886,
29905,
1266,
29905,
9458,
313,
262,
916,
3838,
29892,
363,
738,
395,
29939,
320,
262,
660,
29985,
29886,
1628,
591,
6219,
395,
29939,
29938,
975,
278,
2943,
395,
29916,
29938,
322,
788,
967,
10944,
304,
395,
29984,
29918,
29896,
29938,
322,
967,
25557,
304,
395,
29984,
29918,
29906,
18724,
4001,
1269,
395,
29939,
320,
262,
660,
29985,
29886,
29938,
338,
443,
1271,
287,
29892,
591,
884,
505,
393,
1269,
395,
29939,
29918,
29896,
320,
262,
660,
29918,
29896,
29892,
3855,
29918,
29906,
320,
262,
660,
29918,
29906,
29938,
338,
443,
1271,
287,
29889,
6549,
395,
29984,
29918,
29896,
320,
11725,
399,
648,
29879,
29918,
29916,
448,
474,
4400,
29886,
29985,
29875,
320,
280,
328,
7864,
921,
9341,
322,
395,
29984,
29918,
29906,
320,
11725,
399,
648,
29906,
29875,
448,
269,
29918,
29916,
4400,
29916,
320,
280,
328,
7864,
282,
29985,
29900,
22689,
1334,
769,
505,
6118,
1563,
29989,
660,
29985,
29886,
320,
1266,
29989,
320,
280,
320,
1563,
29989,
29984,
29918,
29896,
320,
1266,
29989,
320,
3822,
320,
1563,
29989,
29984,
29918,
29906,
320,
1266,
29989,
320,
280,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29879,
29918,
29916,
448,
474,
448,
29871,
29896,
1012,
1266,
29897,
320,
3822,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29906,
29875,
448,
269,
29918,
29916,
448,
29871,
29896,
1012,
1266,
29897,
353,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29906,
1012,
1266,
17085,
322,
577,
29892,
408,
1434,
29892,
6118,
1563,
29989,
29924,
15972,
29875,
29905,
1266,
29989,
353,
320,
2083,
320,
12514,
648,
29886,
320,
262,
349,
29913,
320,
1563,
29989,
29984,
29985,
29886,
320,
1266,
29989,
353,
891,
29925,
29989,
320,
3822,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29906,
1012,
1266,
29897,
353,
438,
29918,
29895,
320,
1563,
29898,
285,
998,
29875,
29899,
29906,
29913,
360,
998,
29875,
29899,
29896,
29913,
320,
1266,
17085,
408,
17049,
29889,
13,
13,
4806,
2446,
1510,
29901,
13,
13,
29905,
29961,
2409,
29901,
25237,
29899,
1271,
29879,
18899,
2803,
395,
29906,
320,
280,
474,
320,
280,
413,
1504,
12142,
393,
6118,
1563,
29989,
29924,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
4229,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
27204,
29923,
29918,
29950,
29989,
320,
3822,
313,
29888,
29928,
8940,
29875,
29899,
29896,
1012,
1266,
467,
3997,
1987,
727,
4864,
263,
731,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
310,
395,
29875,
4388,
2848,
2908,
3076,
1316,
393,
6118,
1563,
29989,
399,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
29913,
320,
5231,
2802,
1942,
29912,
29933,
15609,
29875,
29913,
518,
29884,
320,
280,
328,
7864,
325,
29962,
320,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29896,
1012,
1266,
29897,
320,
12014,
320,
726,
29912,
1454,
599,
500,
318,
29892,
325,
320,
262,
478,
3997,
322,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
3743,
472,
1556,
263,
779,
2876,
29918,
29895,
29938,
15958,
310,
599,
395,
29875,
4388,
14625,
2039,
297,
395,
29950,
1628,
363,
738,
7429,
4868,
779,
2876,
29918,
29895,
1405,
29871,
29900,
29938,
8679,
871,
373,
395,
29895,
1504,
13,
13,
4806,
3386,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
4256,
6703,
408,
4477,
29901,
12919,
7555,
1942,
29912,
29933,
15609,
29875,
353,
320,
26153,
22073,
591,
769,
28424,
6755,
278,
2943,
5101,
395,
29884,
29892,
325,
29938,
393,
5256,
7093,
779,
1563,
29989,
399,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
29913,
320,
5231,
2802,
1942,
29912,
29933,
15609,
29875,
29913,
518,
29884,
320,
280,
328,
7864,
325,
29962,
320,
1266,
25183,
313,
2938,
1122,
367,
9391,
9727,
6275,
511,
6755,
738,
6686,
395,
29890,
320,
262,
29871,
399,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
29913,
320,
5231,
2802,
1942,
29912,
29933,
15609,
29875,
29913,
518,
29884,
320,
280,
328,
7864,
325,
25473,
322,
788,
395,
29890,
29938,
304,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
313,
6812,
393,
278,
6166,
395,
29956,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
29913,
320,
5231,
2802,
1942,
29912,
29933,
15609,
29875,
29913,
518,
29884,
320,
280,
328,
7864,
325,
9341,
14653,
682,
10106,
445,
1889,
408,
591,
6548,
7555,
1942,
29912,
29933,
15609,
29875,
18724,
830,
11666,
2745,
694,
901,
17042,
2039,
1122,
367,
2715,
304,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
1728,
8174,
292,
278,
2875,
393,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
3743,
472,
1556,
263,
779,
2876,
29918,
29895,
29938,
15958,
310,
599,
395,
29875,
4388,
14625,
2039,
297,
395,
29950,
1504,
13,
13,
4806,
1286,
27754,
393,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
17150,
278,
10383,
29889,
4250,
16349,
393,
779,
1563,
29989,
29924,
29918,
29875,
29961,
29879,
320,
280,
328,
7864,
260,
10725,
1266,
29989,
353,
320,
1563,
29989,
29956,
29918,
29875,
29961,
29879,
320,
280,
328,
7864,
260,
10725,
1266,
15333,
29906,
29938,
363,
738,
395,
29879,
29892,
260,
320,
262,
478,
1504,
12142,
7113,
263,
23949,
393,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
947,
334,
1333,
29930,
15523,
278,
10383,
29936,
393,
338,
29892,
6118,
1563,
29989,
399,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
29913,
320,
5231,
2802,
1942,
29912,
29933,
15609,
29875,
29913,
518,
29884,
320,
280,
328,
7864,
325,
29962,
320,
1266,
29989,
353,
320,
4787,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29896,
1012,
1266,
29897,
320,
12014,
320,
726,
29912,
1454,
777,
500,
318,
29892,
325,
320,
262,
478,
19470,
1987,
1550,
591,
4256,
6703,
2048,
7555,
1942,
29912,
29933,
15609,
29875,
1628,
1269,
931,
591,
6755,
263,
2943,
5101,
395,
29879,
29892,
260,
29938,
393,
5256,
7093,
29905,
13,
4535,
1563,
29989,
399,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
29913,
320,
5231,
2802,
1942,
29912,
29933,
15609,
29875,
29913,
518,
29879,
320,
280,
328,
7864,
260,
29962,
320,
1266,
29989,
1628,
591,
1818,
505,
6118,
1563,
29989,
399,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
29913,
320,
5231,
2802,
1942,
29912,
29933,
15609,
29875,
29913,
518,
29879,
320,
280,
328,
7864,
260,
29962,
320,
1266,
29989,
353,
320,
4787,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29896,
1012,
1266,
467,
3997,
13,
13,
1349,
375,
29892,
746,
591,
788,
777,
395,
29890,
320,
262,
399,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
29913,
320,
5231,
2802,
1942,
29912,
29933,
15609,
29875,
29913,
518,
29879,
320,
280,
328,
7864,
260,
9341,
304,
7555,
1942,
29912,
29933,
15609,
29875,
1628,
278,
2159,
310,
779,
1563,
1194,
1563,
29989,
29956,
29918,
29875,
29961,
29879,
320,
280,
328,
7864,
260,
10725,
1266,
29989,
29899,
29896,
29905,
1266,
4887,
29906,
29938,
20074,
515,
779,
1563,
29989,
29956,
29918,
29875,
29961,
29879,
320,
280,
328,
7864,
260,
10725,
1266,
15333,
29906,
29938,
304,
6118,
1563,
1194,
1563,
29989,
29956,
29918,
29875,
29961,
29879,
320,
280,
328,
7864,
260,
10725,
1266,
29989,
29899,
29896,
29905,
1266,
4887,
29906,
353,
320,
1563,
29989,
29956,
29918,
29875,
29961,
29879,
320,
280,
328,
7864,
260,
29962,
320,
1266,
15333,
29906,
448,
320,
5981,
29905,
1563,
1194,
1563,
29989,
29956,
29918,
29875,
29961,
29879,
320,
280,
328,
7864,
260,
10725,
1266,
4295,
1266,
29897,
353,
320,
1563,
29989,
29956,
29918,
29875,
29961,
29879,
320,
280,
328,
7864,
260,
29962,
320,
1266,
15333,
29906,
448,
320,
4787,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29896,
1012,
1266,
17085,
322,
577,
278,
3001,
1353,
310,
395,
29875,
4388,
20919,
28103,
297,
395,
29950,
29938,
20074,
491,
385,
788,
3321,
779,
4787,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29896,
1012,
1266,
1262,
1840,
297,
1269,
12541,
310,
5214,
7555,
1942,
29912,
29933,
15609,
29875,
1504,
2648,
11894,
5539,
2409,
29901,
348,
1271,
287,
29899,
2798,
18899,
727,
526,
395,
29876,
29905,
17458,
29918,
29895,
29898,
29928,
4887,
29875,
29938,
3001,
395,
29875,
4388,
14625,
2039,
297,
395,
29950,
1628,
577,
6118,
1563,
29989,
2802,
1942,
29912,
29933,
15609,
29875,
320,
1266,
29989,
353,
320,
2876,
29918,
29895,
320,
3822,
302,
29905,
17458,
29918,
29895,
29898,
29928,
4887,
29875,
353,
302,
29905,
17458,
29918,
29895,
29898,
29928,
4887,
29875,
19470,
10133,
278,
1353,
310,
395,
29875,
4388,
20919,
28103,
20074,
491,
6118,
4787,
29918,
29895,
320,
1563,
29898,
29888,
998,
29875,
29899,
29896,
29913,
320,
1266,
29897,
320,
3822,
302,
29905,
17458,
29918,
29895,
29898,
29928,
4887,
29875,
353,
320,
4787,
29918,
29895,
29905,
1563,
29898,
891,
29923,
29918,
29950,
29989,
320,
3822,
313,
29888,
29928,
8940,
29875,
29899,
29896,
1012,
1266,
17085,
515,
1369,
304,
8341,
310,
278,
1889,
310,
5214,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
313,
16076,
11892,
29923,
29918,
29950,
29989,
353,
302,
29905,
17458,
29918,
29895,
29898,
29928,
1262,
467,
910,
338,
263,
23949,
29892,
1951,
591,
12023,
393,
12919,
779,
1563,
29989,
29924,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
4229,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
891,
29923,
29918,
29950,
29989,
320,
3822,
313,
29888,
29928,
8940,
29875,
29899,
29896,
1012,
1266,
4935,
6549,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
17150,
278,
10383,
3229,
29889,
13,
13,
29905,
29961,
15263,
2133,
310,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
29905,
10725,
29962,
5539,
2409,
29901,
29895,
8798,
29899,
5729,
12757,
18899,
1670,
338,
263,
2908,
1943,
731,
7555,
1942,
29912,
29933,
7920,
363,
607,
6118,
1563,
29989,
29924,
29918,
29895,
29905,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
320,
1563,
29989,
382,
29918,
29950,
320,
1266,
29989,
313,
29888,
29928,
8940,
29895,
29899,
29896,
29913,
320,
1266,
17085,
322,
363,
599,
395,
29875,
320,
280,
413,
1628,
278,
731,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
3743,
472,
1556,
263,
779,
2876,
29918,
29895,
29938,
15958,
310,
599,
395,
29875,
4388,
14625,
2039,
297,
395,
29950,
1628,
363,
738,
7429,
4868,
779,
2876,
29918,
29895,
1405,
29871,
29900,
29938,
8679,
871,
373,
395,
29895,
1504,
13,
13,
4806,
674,
22799,
3598,
1510,
393,
1023,
9506,
4808,
363,
599,
395,
29906,
320,
280,
474,
320,
280,
413,
21063,
13,
13,
29899,
259,
313,
1576,
10383,
3229,
29897,
1670,
338,
263,
2908,
1943,
731,
7555,
1942,
29912,
29933,
29261,
280,
474,
29899,
29896,
1042,
313,
2541,
7472,
2908,
1943,
3309,
395,
29875,
29899,
29896,
10931,
1316,
393,
313,
29896,
29897,
7555,
1942,
29912,
29933,
15609,
29926,
29938,
3743,
472,
1556,
263,
779,
2876,
29918,
29895,
29938,
15958,
310,
599,
395,
29926,
4388,
14625,
2039,
297,
395,
29950,
29938,
363,
599,
395,
29926,
320,
3797,
474,
29899,
29896,
1628,
322,
313,
29906,
29897,
779,
1563,
29989,
29924,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
3797,
29913,
29875,
29899,
29896,
1012,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
1194,
1563,
29989,
29923,
29918,
29950,
29905,
1266,
29989,
313,
29888,
29928,
8940,
29875,
29899,
29896,
29913,
320,
1266,
4935,
13,
13,
29899,
259,
313,
2744,
29587,
653,
3229,
29897,
1334,
505,
779,
1563,
29989,
399,
29918,
29926,
998,
741,
1942,
29912,
29933,
12499,
518,
29884,
320,
280,
328,
7864,
325,
29962,
320,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29926,
29899,
29896,
1012,
1266,
1262,
363,
599,
395,
29884,
29892,
325,
320,
262,
478,
29938,
322,
395,
29926,
320,
280,
474,
29899,
29896,
1504,
13,
13,
4806,
937,
27754,
278,
2967,
1206,
395,
29875,
29922,
29906,
1504,
1152,
278,
937,
4195,
313,
13846,
3229,
511,
591,
25530,
304,
11894,
5539,
2409,
29901,
29946,
8798,
29899,
5729,
12757,
18899,
304,
27754,
393,
278,
3216,
8640,
1584,
746,
7555,
1942,
29912,
29933,
29261,
280,
29871,
29896,
29913,
353,
320,
26153,
1504,
26321,
29892,
4443,
393,
1728,
2908,
3076,
29892,
1269,
5764,
395,
29946,
4388,
20919,
297,
395,
29950,
29938,
16161,
297,
278,
5613,
982,
304,
779,
17458,
29898,
29896,
1262,
395,
29875,
4388,
20919,
28103,
29889,
6549,
6118,
1563,
29989,
29924,
29918,
29906,
3311,
26153,
1012,
1266,
29989,
353,
438,
29905,
1563,
29898,
320,
1563,
29989,
382,
29918,
29950,
320,
1266,
29989,
320,
3822,
285,
29928,
320,
1266,
467,
3997,
1334,
884,
4443,
393,
278,
29587,
653,
3229,
8640,
12604,
368,
746,
395,
29875,
29922,
29906,
22073,
372,
3763,
5922,
393,
727,
338,
472,
1556,
395,
29896,
29938,
7636,
1546,
738,
1023,
7573,
29889,
13,
13,
10454,
591,
27754,
278,
22799,
573,
4331,
29892,
10241,
393,
1716,
310,
278,
2038,
4426,
4808,
363,
395,
29875,
1504,
450,
937,
760,
310,
278,
21445,
313,
1552,
10383,
3229,
29897,
22819,
2247,
411,
278,
5188,
895,
310,
11894,
5539,
2409,
29901,
25237,
29899,
1271,
29879,
29905,
1402,
577,
591,
1122,
1284,
263,
731,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
408,
297,
278,
15997,
310,
11894,
5539,
2409,
29901,
25237,
29899,
1271,
29879,
29905,
1822,
2193,
338,
29892,
591,
505,
6118,
1563,
29989,
399,
29918,
29875,
998,
741,
1942,
29912,
29933,
29261,
3797,
474,
29899,
29896,
29913,
320,
5231,
2802,
1942,
29912,
29933,
15609,
29875,
29913,
518,
29884,
320,
280,
328,
7864,
325,
29962,
320,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
29888,
998,
29875,
29899,
29896,
1012,
1266,
29897,
320,
12014,
320,
726,
29912,
1454,
599,
500,
318,
29892,
325,
320,
262,
478,
19470,
910,
3229,
313,
29873,
12966,
411,
278,
29587,
653,
22799,
573,
20051,
29897,
28281,
278,
29587,
653,
3229,
363,
278,
1206,
395,
29875,
29974,
29896,
1504,
450,
29587,
653,
3229,
363,
278,
1206,
395,
29875,
29974,
29896,
29938,
884,
22819,
2247,
411,
278,
5188,
895,
310,
11894,
5539,
2409,
29901,
1004,
300,
29899,
2798,
29905,
1385,
15399,
445,
10383,
29892,
591,
505,
6118,
1563,
29989,
29924,
648,
29875,
29974,
29896,
2844,
741,
1942,
29912,
29933,
29261,
3797,
474,
29899,
29896,
29913,
320,
5231,
2802,
1942,
29912,
29933,
15609,
29875,
1012,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
320,
1563,
29989,
382,
29918,
29950,
320,
1266,
29989,
320,
3822,
320,
1563,
29898,
29888,
29928,
29905,
1266,
4887,
29875,
320,
1266,
467,
3997,
910,
338,
278,
10383,
3229,
363,
278,
1206,
395,
29875,
29974,
29896,
1628,
607,
1614,
2167,
278,
22799,
573,
20051,
29889,
10133,
278,
937,
760,
310,
1749,
22799,
573,
20051,
313,
1552,
10383,
3229,
29897,
8640,
297,
278,
1206,
395,
29875,
29922,
29895,
1628,
607,
1614,
2167,
278,
5296,
29889,
13,
13,
28116,
310,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
18899,
13,
2683,
2683,
23648,
13,
13,
3112,
338,
1286,
263,
4383,
310,
9623,
304,
4866,
278,
5296,
310,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
29905,
1822,
13,
13,
29905,
29961,
28116,
310,
10244,
5539,
12743,
29901,
21064,
29899,
23687,
29905,
10725,
29962,
2803,
7555,
1942,
29912,
29933,
7920,
367,
263,
2908,
1943,
731,
408,
297,
11894,
5539,
2409,
29901,
29895,
8798,
29899,
5729,
12757,
29905,
1822,
2648,
11894,
5539,
2409,
29901,
29895,
8798,
29899,
5729,
12757,
29905,
1402,
591,
505,
6118,
1563,
29989,
29924,
29918,
29895,
29905,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
320,
1563,
29989,
382,
29918,
29950,
320,
1266,
29989,
313,
29888,
29928,
8940,
29895,
29899,
29896,
29913,
320,
1266,
467,
3997,
19814,
29892,
1951,
7555,
1942,
29912,
29933,
15609,
29875,
29938,
756,
472,
1556,
263,
779,
2876,
29918,
29895,
29938,
15958,
310,
599,
395,
29875,
4388,
14625,
2039,
363,
1269,
395,
29875,
1628,
591,
505,
779,
1563,
29989,
29956,
29918,
29875,
29905,
1266,
29989,
320,
479,
302,
29905,
17458,
29898,
29928,
4887,
29895,
29938,
313,
1609,
11894,
5539,
2409,
29901,
348,
1271,
287,
29899,
2798,
29905,
2314,
322,
577,
6118,
1563,
29989,
29923,
29918,
29950,
29905,
1266,
29989,
353,
438,
29918,
29895,
29905,
1563,
29898,
302,
29905,
1563,
29989,
29924,
29918,
29895,
29905,
1266,
29989,
998,
29896,
14571,
29906,
29895,
2915,
320,
1266,
17085,
491,
11894,
5539,
2409,
29901,
29895,
8798,
29899,
2395,
29905,
1822,
422,
2109,
292,
1438,
29892,
591,
10272,
6118,
463,
29912,
13671,
29913,
13,
29905,
1563,
29989,
382,
29918,
29950,
320,
1266,
29989,
7878,
438,
29918,
29895,
320,
1563,
29898,
302,
320,
1563,
29898,
320,
1563,
29989,
29923,
29918,
29950,
320,
1266,
29989,
320,
1563,
29898,
29888,
29928,
29905,
1266,
8940,
29895,
29899,
29896,
29913,
320,
1266,
8940,
29896,
14571,
29906,
29895,
2915,
320,
1266,
18775,
13,
29905,
1563,
29989,
382,
29918,
29950,
320,
1266,
29989,
998,
29906,
29895,
29899,
29896,
29913,
7878,
438,
29918,
29895,
320,
1563,
29898,
302,
998,
29906,
29895,
29913,
320,
1563,
29898,
29888,
29928,
29905,
1266,
8940,
29895,
29899,
29896,
29913,
320,
1266,
18775,
13,
29905,
1563,
29989,
382,
29918,
29950,
320,
1266,
15333,
29895,
7878,
438,
29918,
29895,
320,
1563,
29898,
302,
998,
29895,
29974,
29896,
29913,
285,
998,
29895,
29899,
29896,
29913,
320,
1266,
29897,
669,
320,
726,
29912,
16076,
500,
320,
1563,
29989,
29923,
29918,
29950,
29905,
1266,
29989,
353,
320,
17458,
29918,
29895,
29898,
29876,
29928,
18775,
13,
29905,
1563,
29989,
382,
29918,
29950,
320,
1266,
29989,
7878,
438,
29918,
29895,
320,
1563,
29898,
302,
998,
29896,
718,
29871,
29896,
29914,
29895,
29913,
285,
998,
29896,
448,
29871,
29896,
29914,
29895,
29913,
320,
1266,
2144,
355,
29912,
13671,
9458,
408,
17049,
29889,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Wolves are set to officially confirm the £25m club record signing of Raúl Jiménez on Thursday.
Nuno Espirito Santo’s FA Cup semi-finalists have thrashed out a deal with Benfica for the Mexico international and will announce a permanent move in the next 24 hours.
As revealed by Telegraph Sport last week, Wolves were in the final stages of negotiations with the Portuguese club for Raúl, who has scored 15 goals this season after signing on loan in June.
Wolves have now agreed a fee and terms for the 27-year-old forward and are expected to confirm the club record deal on Thursday, three days before their FA Cup semi-final against Watford at Wembley.
The former Atletico Madrid star has emerged as a huge favourite at Molineux and his capture will shatter the previous transfer record of £18m for Adama Traore.
It is believed the initial fee will be around £25m, with instalments taking the overall price closer to £30m.
Raúl has developed a crucial partnership with striker Diogo Jota, providing seven assists.
Jimenez set up Jota's equaliser on Tuesday night against Man Utd with a superb through-ball credit: REUTERS
Jota scored the equaliser against Manchester United on Tuesday night after an assist from his partner.
“We are understanding each other well which is good for each other and the team, but we know without the contribution of the other players that nothing is possible,” said Jota.
“It is working at the moment and we just need to keep going.
“We understand what Sunday means to our fans to reach the last stages of one of the oldest competitions in the world, and we are looking forward to that to try to reach the final.
“We don't need to win something to keep everyone together. We already are (together) but of course if you win something it is always a big achievement and who knows what can happen.” | [
1,
11902,
1960,
526,
731,
304,
22444,
9659,
278,
15151,
29906,
29945,
29885,
4402,
2407,
26188,
310,
6981,
25293,
8507,
29948,
16617,
373,
498,
1295,
3250,
29889,
13,
13,
29940,
9447,
5984,
381,
2049,
21377,
30010,
29879,
13515,
6536,
12647,
29899,
8394,
2879,
505,
1468,
25936,
714,
263,
5376,
411,
4111,
12619,
363,
278,
12568,
6121,
322,
674,
7475,
346,
263,
17667,
4337,
297,
278,
2446,
29871,
29906,
29946,
6199,
29889,
13,
13,
2887,
17845,
491,
1920,
27333,
8815,
1833,
4723,
29892,
11902,
1960,
892,
297,
278,
2186,
22950,
310,
27214,
800,
411,
278,
25519,
4402,
363,
6981,
25293,
29892,
1058,
756,
15569,
29871,
29896,
29945,
14433,
445,
4259,
1156,
26188,
373,
24806,
297,
5306,
29889,
13,
13,
29956,
324,
1960,
505,
1286,
15502,
263,
27684,
322,
4958,
363,
278,
29871,
29906,
29955,
29899,
6360,
29899,
1025,
6375,
322,
526,
3806,
304,
9659,
278,
4402,
2407,
5376,
373,
498,
1295,
3250,
29892,
2211,
3841,
1434,
1009,
13515,
6536,
12647,
29899,
8394,
2750,
14269,
4006,
472,
399,
6967,
29891,
29889,
13,
13,
1576,
4642,
2180,
1026,
1417,
9669,
5810,
756,
11176,
3192,
408,
263,
12176,
15381,
568,
472,
10750,
457,
1314,
322,
670,
10446,
674,
528,
2620,
278,
3517,
6782,
2407,
310,
15151,
29896,
29947,
29885,
363,
2087,
3304,
3201,
487,
29889,
13,
13,
3112,
338,
13112,
278,
2847,
27684,
674,
367,
2820,
15151,
29906,
29945,
29885,
29892,
411,
20226,
1860,
5622,
278,
12463,
8666,
17649,
304,
15151,
29941,
29900,
29885,
29889,
13,
13,
29934,
29874,
25293,
756,
8906,
263,
7618,
1455,
22056,
4034,
411,
10076,
3946,
4671,
10482,
435,
4616,
29892,
13138,
9881,
1223,
2879,
29889,
13,
13,
29967,
326,
10281,
731,
701,
435,
4616,
29915,
29879,
5186,
7608,
373,
323,
1041,
3250,
4646,
2750,
2315,
501,
1594,
411,
263,
2428,
29890,
1549,
29899,
2135,
16200,
29901,
5195,
2692,
23598,
13,
13,
29967,
4616,
15569,
278,
5186,
7608,
2750,
19659,
3303,
373,
323,
1041,
3250,
4646,
1156,
385,
6985,
515,
670,
18096,
29889,
13,
13,
30015,
4806,
526,
8004,
1269,
916,
1532,
607,
338,
1781,
363,
1269,
916,
322,
278,
3815,
29892,
541,
591,
1073,
1728,
278,
11896,
310,
278,
916,
10769,
393,
3078,
338,
1950,
3995,
1497,
435,
4616,
29889,
13,
13,
30015,
3112,
338,
1985,
472,
278,
3256,
322,
591,
925,
817,
304,
3013,
2675,
29889,
13,
13,
30015,
4806,
2274,
825,
16340,
2794,
304,
1749,
24909,
304,
6159,
278,
1833,
22950,
310,
697,
310,
278,
23947,
5100,
2187,
297,
278,
3186,
29892,
322,
591,
526,
3063,
6375,
304,
393,
304,
1018,
304,
6159,
278,
2186,
29889,
13,
13,
30015,
4806,
1016,
29915,
29873,
817,
304,
5401,
1554,
304,
3013,
14332,
4208,
29889,
1334,
2307,
526,
313,
29873,
12966,
29897,
541,
310,
3236,
565,
366,
5401,
1554,
372,
338,
2337,
263,
4802,
27012,
882,
322,
1058,
9906,
825,
508,
3799,
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
] |
var moment = require("../../moment");
exports.is_same = {
"is same without units" : function (test) {
test.expect(17);
var m = moment(new Date(2011, 3, 2, 3, 4, 5, 10)), mCopy = moment(m);
test.equal(m.isSame(moment(new Date(2012, 3, 2, 3, 5, 5, 10))), false, "year is later");
test.equal(m.isSame(moment(new Date(2010, 3, 2, 3, 3, 5, 10))), false, "year is earlier");
test.equal(m.isSame(moment(new Date(2011, 4, 2, 3, 4, 5, 10))), false, "month is later");
test.equal(m.isSame(moment(new Date(2011, 2, 2, 3, 4, 5, 10))), false, "month is earlier");
test.equal(m.isSame(moment(new Date(2011, 3, 3, 3, 4, 5, 10))), false, "day is later");
test.equal(m.isSame(moment(new Date(2011, 3, 1, 3, 4, 5, 10))), false, "day is earlier");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 4, 4, 5, 10))), false, "hour is later");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 2, 4, 5, 10))), false, "hour is earlier");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 5, 5, 10))), false, "minute is later");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 3, 5, 10))), false, "minute is earlier");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 6, 10))), false, "second is later");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 4, 11))), false, "second is earlier");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 5, 10))), true, "millisecond match");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 5, 11))), false, "millisecond is later");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 5, 9))), false, "millisecond is earlier");
test.equal(m.isSame(m), true, "moments are the same as themselves");
test.equal(+m, +mCopy, "isSame second should not change moment");
test.done();
},
"is same year" : function (test) {
test.expect(9);
var m = moment(new Date(2011, 1, 2, 3, 4, 5, 6)), mCopy = moment(m);
test.equal(m.isSame(moment(new Date(2011, 5, 6, 7, 8, 9, 10)), 'year'), true, "year match");
test.equal(m.isSame(moment(new Date(2011, 5, 6, 7, 8, 9, 10)), 'years'), true, "plural should work");
test.equal(m.isSame(moment(new Date(2012, 5, 6, 7, 8, 9, 10)), 'year'), false, "year mismatch");
test.equal(m.isSame(moment(new Date(2011, 0, 1, 0, 0, 0, 0)), 'year'), true, "exact start of year");
test.equal(m.isSame(moment(new Date(2011, 11, 31, 23, 59, 59, 999)), 'year'), true, "exact end of year");
test.equal(m.isSame(moment(new Date(2012, 0, 1, 0, 0, 0, 0)), 'year'), false, "start of next year");
test.equal(m.isSame(moment(new Date(2010, 11, 31, 23, 59, 59, 999)), 'year'), false, "end of previous year");
test.equal(m.isSame(m, 'year'), true, "same moments are in the same year");
test.equal(+m, +mCopy, "isSame year should not change moment");
test.done();
},
"is same month" : function (test) {
test.expect(10);
var m = moment(new Date(2011, 2, 3, 4, 5, 6, 7)), mCopy = moment(m);
test.equal(m.isSame(moment(new Date(2011, 2, 6, 7, 8, 9, 10)), 'month'), true, "month match");
test.equal(m.isSame(moment(new Date(2011, 2, 6, 7, 8, 9, 10)), 'months'), true, "plural should work");
test.equal(m.isSame(moment(new Date(2012, 2, 6, 7, 8, 9, 10)), 'month'), false, "year mismatch");
test.equal(m.isSame(moment(new Date(2011, 5, 6, 7, 8, 9, 10)), 'month'), false, "month mismatch");
test.equal(m.isSame(moment(new Date(2011, 2, 1, 0, 0, 0, 0)), 'month'), true, "exact start of month");
test.equal(m.isSame(moment(new Date(2011, 2, 31, 23, 59, 59, 999)), 'month'), true, "exact end of month");
test.equal(m.isSame(moment(new Date(2011, 3, 1, 0, 0, 0, 0)), 'month'), false, "start of next month");
test.equal(m.isSame(moment(new Date(2011, 1, 27, 23, 59, 59, 999)), 'month'), false, "end of previous month");
test.equal(m.isSame(m, 'month'), true, "same moments are in the same month");
test.equal(+m, +mCopy, "isSame month should not change moment");
test.done();
},
"is same day" : function (test) {
test.expect(11);
var m = moment(new Date(2011, 1, 2, 3, 4, 5, 6)), mCopy = moment(m);
test.equal(m.isSame(moment(new Date(2011, 1, 2, 7, 8, 9, 10)), 'day'), true, "day match");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 7, 8, 9, 10)), 'days'), true, "plural should work");
test.equal(m.isSame(moment(new Date(2012, 1, 2, 7, 8, 9, 10)), 'day'), false, "year mismatch");
test.equal(m.isSame(moment(new Date(2011, 2, 2, 7, 8, 9, 10)), 'day'), false, "month mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 3, 7, 8, 9, 10)), 'day'), false, "day mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 0, 0, 0, 0)), 'day'), true, "exact start of day");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 23, 59, 59, 999)), 'day'), true, "exact end of day");
test.equal(m.isSame(moment(new Date(2011, 1, 3, 0, 0, 0, 0)), 'day'), false, "start of next day");
test.equal(m.isSame(moment(new Date(2011, 1, 1, 23, 59, 59, 999)), 'day'), false, "end of previous day");
test.equal(m.isSame(m, 'day'), true, "same moments are in the same day");
test.equal(+m, +mCopy, "isSame day should not change moment");
test.done();
},
"is same hour" : function (test) {
test.expect(12);
var m = moment(new Date(2011, 1, 2, 3, 4, 5, 6)), mCopy = moment(m);
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 8, 9, 10)), 'hour'), true, "hour match");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 8, 9, 10)), 'hours'), true, "plural should work");
test.equal(m.isSame(moment(new Date(2012, 1, 2, 3, 8, 9, 10)), 'hour'), false, "year mismatch");
test.equal(m.isSame(moment(new Date(2011, 2, 2, 3, 8, 9, 10)), 'hour'), false, "month mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 3, 3, 8, 9, 10)), 'hour'), false, "day mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 4, 8, 9, 10)), 'hour'), false, "hour mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 0, 0, 0)), 'hour'), true, "exact start of hour");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 59, 59, 999)), 'hour'), true, "exact end of hour");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 4, 0, 0, 0)), 'hour'), false, "start of next hour");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 2, 59, 59, 999)), 'hour'), false, "end of previous hour");
test.equal(m.isSame(m, 'hour'), true, "same moments are in the same hour");
test.equal(+m, +mCopy, "isSame hour should not change moment");
test.done();
},
"is same minute" : function (test) {
test.expect(13);
var m = moment(new Date(2011, 1, 2, 3, 4, 5, 6)), mCopy = moment(m);
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 9, 10)), 'minute'), true, "minute match");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 9, 10)), 'minutes'), true, "plural should work");
test.equal(m.isSame(moment(new Date(2012, 1, 2, 3, 4, 9, 10)), 'minute'), false, "year mismatch");
test.equal(m.isSame(moment(new Date(2011, 2, 2, 3, 4, 9, 10)), 'minute'), false, "month mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 3, 3, 4, 9, 10)), 'minute'), false, "day mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 4, 4, 9, 10)), 'minute'), false, "hour mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 5, 9, 10)), 'minute'), false, "minute mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 0, 0)), 'minute'), true, "exact start of minute");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 59, 999)), 'minute'), true, "exact end of minute");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 5, 0, 0)), 'minute'), false, "start of next minute");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 3, 59, 999)), 'minute'), false, "end of previous minute");
test.equal(m.isSame(m, 'minute'), true, "same moments are in the same minute");
test.equal(+m, +mCopy, "isSame minute should not change moment");
test.done();
},
"is same second" : function (test) {
test.expect(14);
var m = moment(new Date(2011, 1, 2, 3, 4, 5, 6)), mCopy = moment(m);
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 5, 10)), 'second'), true, "second match");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 5, 10)), 'seconds'), true, "plural should work");
test.equal(m.isSame(moment(new Date(2012, 1, 2, 3, 4, 5, 10)), 'second'), false, "year mismatch");
test.equal(m.isSame(moment(new Date(2011, 2, 2, 3, 4, 5, 10)), 'second'), false, "month mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 3, 3, 4, 5, 10)), 'second'), false, "day mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 4, 4, 5, 10)), 'second'), false, "hour mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 5, 5, 10)), 'second'), false, "minute mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 6, 10)), 'second'), false, "second mismatch");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 5, 0)), 'second'), true, "exact start of second");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 5, 999)), 'second'), true, "exact end of second");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 6, 0)), 'second'), false, "start of next second");
test.equal(m.isSame(moment(new Date(2011, 1, 2, 3, 4, 4, 999)), 'second'), false, "end of previous second");
test.equal(m.isSame(m, 'second'), true, "same moments are in the same second");
test.equal(+m, +mCopy, "isSame second should not change moment");
test.done();
},
"is same millisecond" : function (test) {
test.expect(18);
var m = moment(new Date(2011, 3, 2, 3, 4, 5, 10)), mCopy = moment(m);
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 5, 10)), 'millisecond'), true, "millisecond match");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 5, 10)), 'milliseconds'), true, "plural should work");
test.equal(m.isSame(moment(new Date(2012, 3, 2, 3, 4, 5, 10)), 'millisecond'), false, "year is later");
test.equal(m.isSame(moment(new Date(2010, 3, 2, 3, 4, 5, 10)), 'millisecond'), false, "year is earlier");
test.equal(m.isSame(moment(new Date(2011, 4, 2, 3, 4, 5, 10)), 'millisecond'), false, "month is later");
test.equal(m.isSame(moment(new Date(2011, 2, 2, 3, 4, 5, 10)), 'millisecond'), false, "month is earlier");
test.equal(m.isSame(moment(new Date(2011, 3, 3, 3, 4, 5, 10)), 'millisecond'), false, "day is later");
test.equal(m.isSame(moment(new Date(2011, 3, 1, 1, 4, 5, 10)), 'millisecond'), false, "day is earlier");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 4, 4, 5, 10)), 'millisecond'), false, "hour is later");
test.equal(m.isSame(moment(new Date(2011, 3, 1, 4, 1, 5, 10)), 'millisecond'), false, "hour is earlier");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 5, 5, 10)), 'millisecond'), false, "minute is later");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 3, 5, 10)), 'millisecond'), false, "minute is earlier");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 6, 10)), 'millisecond'), false, "second is later");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 4, 5)), 'millisecond'), false, "second is earlier");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 6, 11)), 'millisecond'), false, "millisecond is later");
test.equal(m.isSame(moment(new Date(2011, 3, 2, 3, 4, 4, 9)), 'millisecond'), false, "millisecond is earlier");
test.equal(m.isSame(m, 'millisecond'), true, "same moments are in the same millisecond");
test.equal(+m, +mCopy, "isSame millisecond should not change moment");
test.done();
}
};
| [
1,
722,
3256,
353,
1996,
703,
21546,
29885,
2932,
1496,
13,
13,
26500,
29889,
275,
29918,
17642,
353,
426,
13,
1678,
376,
275,
1021,
1728,
10340,
29908,
584,
740,
313,
1688,
29897,
426,
13,
4706,
1243,
29889,
17854,
29898,
29896,
29955,
416,
13,
13,
4706,
722,
286,
353,
3256,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
286,
11882,
353,
3256,
29898,
29885,
416,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29906,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29945,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
6360,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29900,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
6360,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29946,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
10874,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
10874,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
3250,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29896,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
3250,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29946,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
18721,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29906,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
18721,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29945,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
1195,
1082,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
1195,
1082,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29953,
29892,
29871,
29896,
29900,
876,
511,
2089,
29892,
376,
7496,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29946,
29892,
29871,
29896,
29896,
876,
511,
2089,
29892,
376,
7496,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
876,
511,
1565,
29892,
376,
19958,
18802,
1993,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29896,
876,
511,
2089,
29892,
376,
19958,
18802,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29929,
876,
511,
2089,
29892,
376,
19958,
18802,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
511,
1565,
29892,
376,
29885,
290,
1237,
526,
278,
1021,
408,
6053,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29974,
29885,
29892,
718,
29885,
11882,
29892,
376,
275,
29903,
420,
1473,
881,
451,
1735,
3256,
1496,
13,
4706,
1243,
29889,
15091,
890,
13,
1678,
2981,
13,
13,
1678,
376,
275,
1021,
1629,
29908,
584,
740,
313,
1688,
29897,
426,
13,
4706,
1243,
29889,
17854,
29898,
29929,
416,
13,
13,
4706,
722,
286,
353,
3256,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29953,
8243,
286,
11882,
353,
3256,
29898,
29885,
416,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29945,
29892,
29871,
29953,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
6360,
5477,
1565,
29892,
376,
6360,
1993,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29945,
29892,
29871,
29953,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
6360,
29879,
5477,
1565,
29892,
376,
572,
3631,
881,
664,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29906,
29892,
29871,
29945,
29892,
29871,
29953,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
6360,
5477,
2089,
29892,
376,
6360,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29900,
29892,
29871,
29896,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
8243,
525,
6360,
5477,
1565,
29892,
376,
735,
627,
1369,
310,
1629,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29896,
29892,
29871,
29941,
29896,
29892,
29871,
29906,
29941,
29892,
29871,
29945,
29929,
29892,
29871,
29945,
29929,
29892,
29871,
29929,
29929,
29929,
8243,
525,
6360,
5477,
1565,
29892,
376,
735,
627,
1095,
310,
1629,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29906,
29892,
29871,
29900,
29892,
29871,
29896,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
8243,
525,
6360,
5477,
2089,
29892,
376,
2962,
310,
2446,
1629,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29900,
29892,
29871,
29896,
29896,
29892,
29871,
29941,
29896,
29892,
29871,
29906,
29941,
29892,
29871,
29945,
29929,
29892,
29871,
29945,
29929,
29892,
29871,
29929,
29929,
29929,
8243,
525,
6360,
5477,
2089,
29892,
376,
355,
310,
3517,
1629,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
29892,
525,
6360,
5477,
1565,
29892,
376,
17642,
19462,
526,
297,
278,
1021,
1629,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29974,
29885,
29892,
718,
29885,
11882,
29892,
376,
275,
29903,
420,
1629,
881,
451,
1735,
3256,
1496,
13,
4706,
1243,
29889,
15091,
890,
13,
1678,
2981,
13,
13,
1678,
376,
275,
1021,
4098,
29908,
584,
740,
313,
1688,
29897,
426,
13,
4706,
1243,
29889,
17854,
29898,
29896,
29900,
416,
13,
13,
4706,
722,
286,
353,
3256,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29953,
29892,
29871,
29955,
8243,
286,
11882,
353,
3256,
29898,
29885,
416,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29953,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
10874,
5477,
1565,
29892,
376,
10874,
1993,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29953,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
10874,
29879,
5477,
1565,
29892,
376,
572,
3631,
881,
664,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29906,
29892,
29871,
29906,
29892,
29871,
29953,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
10874,
5477,
2089,
29892,
376,
6360,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29945,
29892,
29871,
29953,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
10874,
5477,
2089,
29892,
376,
10874,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29896,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
8243,
525,
10874,
5477,
1565,
29892,
376,
735,
627,
1369,
310,
4098,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29896,
29892,
29871,
29906,
29941,
29892,
29871,
29945,
29929,
29892,
29871,
29945,
29929,
29892,
29871,
29929,
29929,
29929,
8243,
525,
10874,
5477,
1565,
29892,
376,
735,
627,
1095,
310,
4098,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29896,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
8243,
525,
10874,
5477,
2089,
29892,
376,
2962,
310,
2446,
4098,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29955,
29892,
29871,
29906,
29941,
29892,
29871,
29945,
29929,
29892,
29871,
29945,
29929,
29892,
29871,
29929,
29929,
29929,
8243,
525,
10874,
5477,
2089,
29892,
376,
355,
310,
3517,
4098,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
29892,
525,
10874,
5477,
1565,
29892,
376,
17642,
19462,
526,
297,
278,
1021,
4098,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29974,
29885,
29892,
718,
29885,
11882,
29892,
376,
275,
29903,
420,
4098,
881,
451,
1735,
3256,
1496,
13,
4706,
1243,
29889,
15091,
890,
13,
1678,
2981,
13,
13,
1678,
376,
275,
1021,
2462,
29908,
584,
740,
313,
1688,
29897,
426,
13,
4706,
1243,
29889,
17854,
29898,
29896,
29896,
416,
13,
13,
4706,
722,
286,
353,
3256,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29953,
8243,
286,
11882,
353,
3256,
29898,
29885,
416,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
3250,
5477,
1565,
29892,
376,
3250,
1993,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
16700,
5477,
1565,
29892,
376,
572,
3631,
881,
664,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29906,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
3250,
5477,
2089,
29892,
376,
6360,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29906,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
3250,
5477,
2089,
29892,
376,
10874,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29941,
29892,
29871,
29955,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
3250,
5477,
2089,
29892,
376,
3250,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
8243,
525,
3250,
5477,
1565,
29892,
376,
735,
627,
1369,
310,
2462,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29906,
29941,
29892,
29871,
29945,
29929,
29892,
29871,
29945,
29929,
29892,
29871,
29929,
29929,
29929,
8243,
525,
3250,
5477,
1565,
29892,
376,
735,
627,
1095,
310,
2462,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29941,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
8243,
525,
3250,
5477,
2089,
29892,
376,
2962,
310,
2446,
2462,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29941,
29892,
29871,
29945,
29929,
29892,
29871,
29945,
29929,
29892,
29871,
29929,
29929,
29929,
8243,
525,
3250,
5477,
2089,
29892,
376,
355,
310,
3517,
2462,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
29892,
525,
3250,
5477,
1565,
29892,
376,
17642,
19462,
526,
297,
278,
1021,
2462,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29974,
29885,
29892,
718,
29885,
11882,
29892,
376,
275,
29903,
420,
2462,
881,
451,
1735,
3256,
1496,
13,
4706,
1243,
29889,
15091,
890,
13,
1678,
2981,
13,
13,
1678,
376,
275,
1021,
7234,
29908,
584,
740,
313,
1688,
29897,
426,
13,
4706,
1243,
29889,
17854,
29898,
29896,
29906,
416,
13,
13,
4706,
722,
286,
353,
3256,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29953,
8243,
286,
11882,
353,
3256,
29898,
29885,
416,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
18721,
5477,
1565,
29892,
376,
18721,
1993,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
29882,
2470,
5477,
1565,
29892,
376,
572,
3631,
881,
664,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29906,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
18721,
5477,
2089,
29892,
376,
6360,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
18721,
5477,
2089,
29892,
376,
10874,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
18721,
5477,
2089,
29892,
376,
3250,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29946,
29892,
29871,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
18721,
5477,
2089,
29892,
376,
18721,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
8243,
525,
18721,
5477,
1565,
29892,
376,
735,
627,
1369,
310,
7234,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29945,
29929,
29892,
29871,
29945,
29929,
29892,
29871,
29929,
29929,
29929,
8243,
525,
18721,
5477,
1565,
29892,
376,
735,
627,
1095,
310,
7234,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29946,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
8243,
525,
18721,
5477,
2089,
29892,
376,
2962,
310,
2446,
7234,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29906,
29892,
29871,
29945,
29929,
29892,
29871,
29945,
29929,
29892,
29871,
29929,
29929,
29929,
8243,
525,
18721,
5477,
2089,
29892,
376,
355,
310,
3517,
7234,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
29892,
525,
18721,
5477,
1565,
29892,
376,
17642,
19462,
526,
297,
278,
1021,
7234,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29974,
29885,
29892,
718,
29885,
11882,
29892,
376,
275,
29903,
420,
7234,
881,
451,
1735,
3256,
1496,
13,
4706,
1243,
29889,
15091,
890,
13,
1678,
2981,
13,
13,
1678,
376,
275,
1021,
11015,
29908,
584,
740,
313,
1688,
29897,
426,
13,
4706,
1243,
29889,
17854,
29898,
29896,
29941,
416,
13,
13,
4706,
722,
286,
353,
3256,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29953,
8243,
286,
11882,
353,
3256,
29898,
29885,
416,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
1195,
1082,
5477,
1565,
29892,
376,
1195,
1082,
1993,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
1195,
2667,
5477,
1565,
29892,
376,
572,
3631,
881,
664,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29906,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
1195,
1082,
5477,
2089,
29892,
376,
6360,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
1195,
1082,
5477,
2089,
29892,
376,
10874,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
1195,
1082,
5477,
2089,
29892,
376,
3250,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29946,
29892,
29871,
29946,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
1195,
1082,
5477,
2089,
29892,
376,
18721,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29945,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
8243,
525,
1195,
1082,
5477,
2089,
29892,
376,
1195,
1082,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29900,
29892,
29871,
29900,
8243,
525,
1195,
1082,
5477,
1565,
29892,
376,
735,
627,
1369,
310,
11015,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29929,
29892,
29871,
29929,
29929,
29929,
8243,
525,
1195,
1082,
5477,
1565,
29892,
376,
735,
627,
1095,
310,
11015,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29945,
29892,
29871,
29900,
29892,
29871,
29900,
8243,
525,
1195,
1082,
5477,
2089,
29892,
376,
2962,
310,
2446,
11015,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29945,
29929,
29892,
29871,
29929,
29929,
29929,
8243,
525,
1195,
1082,
5477,
2089,
29892,
376,
355,
310,
3517,
11015,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
29892,
525,
1195,
1082,
5477,
1565,
29892,
376,
17642,
19462,
526,
297,
278,
1021,
11015,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29974,
29885,
29892,
718,
29885,
11882,
29892,
376,
275,
29903,
420,
11015,
881,
451,
1735,
3256,
1496,
13,
4706,
1243,
29889,
15091,
890,
13,
1678,
2981,
13,
13,
1678,
376,
275,
1021,
1473,
29908,
584,
740,
313,
1688,
29897,
426,
13,
4706,
1243,
29889,
17854,
29898,
29896,
29946,
416,
13,
13,
4706,
722,
286,
353,
3256,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29953,
8243,
286,
11882,
353,
3256,
29898,
29885,
416,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
7496,
5477,
1565,
29892,
376,
7496,
1993,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
23128,
5477,
1565,
29892,
376,
572,
3631,
881,
664,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29906,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
7496,
5477,
2089,
29892,
376,
6360,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
7496,
5477,
2089,
29892,
376,
10874,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
7496,
5477,
2089,
29892,
376,
3250,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29946,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
7496,
5477,
2089,
29892,
376,
18721,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29945,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
7496,
5477,
2089,
29892,
376,
1195,
1082,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29953,
29892,
29871,
29896,
29900,
8243,
525,
7496,
5477,
2089,
29892,
376,
7496,
29635,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29900,
8243,
525,
7496,
5477,
1565,
29892,
376,
735,
627,
1369,
310,
1473,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29929,
29929,
29929,
8243,
525,
7496,
5477,
1565,
29892,
376,
735,
627,
1095,
310,
1473,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29953,
29892,
29871,
29900,
8243,
525,
7496,
5477,
2089,
29892,
376,
2962,
310,
2446,
1473,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29946,
29892,
29871,
29929,
29929,
29929,
8243,
525,
7496,
5477,
2089,
29892,
376,
355,
310,
3517,
1473,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
29892,
525,
7496,
5477,
1565,
29892,
376,
17642,
19462,
526,
297,
278,
1021,
1473,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29974,
29885,
29892,
718,
29885,
11882,
29892,
376,
275,
29903,
420,
1473,
881,
451,
1735,
3256,
1496,
13,
4706,
1243,
29889,
15091,
890,
13,
1678,
2981,
13,
13,
1678,
376,
275,
1021,
3533,
18802,
29908,
584,
740,
313,
1688,
29897,
426,
13,
4706,
1243,
29889,
17854,
29898,
29896,
29947,
416,
13,
13,
4706,
722,
286,
353,
3256,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
286,
11882,
353,
3256,
29898,
29885,
416,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
1565,
29892,
376,
19958,
18802,
1993,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
21462,
5477,
1565,
29892,
376,
572,
3631,
881,
664,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29906,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
6360,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29900,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
6360,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29946,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
10874,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29906,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
10874,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
3250,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29896,
29892,
29871,
29896,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
3250,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29946,
29892,
29871,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
18721,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29896,
29892,
29871,
29946,
29892,
29871,
29896,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
18721,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29945,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
1195,
1082,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29945,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
1195,
1082,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29953,
29892,
29871,
29896,
29900,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
7496,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29946,
29892,
29871,
29945,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
7496,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29953,
29892,
29871,
29896,
29896,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
19958,
18802,
338,
2678,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
2932,
29898,
1482,
4712,
29898,
29906,
29900,
29896,
29896,
29892,
29871,
29941,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29946,
29892,
29871,
29929,
8243,
525,
19958,
18802,
5477,
2089,
29892,
376,
19958,
18802,
338,
8859,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29885,
29889,
275,
29903,
420,
29898,
29885,
29892,
525,
19958,
18802,
5477,
1565,
29892,
376,
17642,
19462,
526,
297,
278,
1021,
3533,
18802,
1496,
13,
4706,
1243,
29889,
11745,
29898,
29974,
29885,
29892,
718,
29885,
11882,
29892,
376,
275,
29903,
420,
3533,
18802,
881,
451,
1735,
3256,
1496,
13,
4706,
1243,
29889,
15091,
890,
13,
1678,
500,
13,
3400,
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
] |
Q:
How to say "Why not?" in Korean?
"Why not?" is a colloquial stand-alone answer in English. It can expresses
An answer to a "why" question, explaining that there is no specific reason. For example,
A: Why are you so nice with me today ?
B: Why not? (Do I need a reason to be nice?)
or
A: Why are you so fancy today?
B: Why not?
(as opposed to "B: Because I have a date tonight." for example)
An agreement to a proposition. Example:
A: Shall we see a movie together?
B: Sure. Why not? (Could there be a reason I don't want to see a movie with you?)
Are there similar colloquial expressions in Korean that are commonly used to express these two meanings?
As a follow-up questions, in the situation 1., "why not?" can be used to show some annoyance from the question, as well as a genuine absence of reason (depending on the tone of the answer). Is there a way to express such nuance in Korean?
A:
Well I don't think there would be an exact match; the closest could be
"그렇지 않을/못할 이유라도 (있나)?"
This might be used fairly well in situation 1, but in situation 2 it wouldn't be used often. B would end his talk with "sure".
A:
For Case 1, I believe "그럼 안돼(요)?" would work. Literally, "Is it not allowed?"
Just as you mentioned at the end of the question, this phrase can also indicate annoyance; it could also mean a genuine question asking whether something is allowed, so use with care. (In particular, I think the phrase is more informal than "why not," so you wouldn't want to say "그럼 안돼요?" to mean "why not" in a business meeting.)
| [
1,
660,
29901,
13,
13,
5328,
304,
1827,
376,
11008,
451,
3026,
297,
22467,
29973,
13,
13,
29908,
11008,
451,
3026,
338,
263,
784,
417,
339,
616,
2317,
29899,
18785,
1234,
297,
4223,
29889,
739,
508,
4653,
267,
13,
13,
2744,
1234,
304,
263,
376,
14606,
29908,
1139,
29892,
24232,
393,
727,
338,
694,
2702,
2769,
29889,
1152,
1342,
29892,
29871,
13,
13,
29909,
29901,
3750,
526,
366,
577,
7575,
411,
592,
9826,
1577,
13,
29933,
29901,
3750,
451,
29973,
313,
6132,
306,
817,
263,
2769,
304,
367,
7575,
7897,
13,
13,
272,
29871,
13,
13,
29909,
29901,
3750,
526,
366,
577,
19231,
9826,
29973,
13,
29933,
29901,
3750,
451,
29973,
29871,
13,
13,
29898,
294,
15869,
304,
376,
29933,
29901,
7311,
306,
505,
263,
2635,
15243,
523,
1213,
363,
1342,
29897,
13,
2744,
17327,
304,
263,
26619,
29889,
8741,
29901,
29871,
13,
13,
29909,
29901,
1383,
497,
591,
1074,
263,
14064,
4208,
29973,
13,
29933,
29901,
18585,
29889,
3750,
451,
29973,
313,
23323,
727,
367,
263,
2769,
306,
1016,
29915,
29873,
864,
304,
1074,
263,
14064,
411,
366,
7897,
13,
13,
17506,
727,
2788,
784,
417,
339,
616,
12241,
297,
22467,
393,
526,
15574,
1304,
304,
4653,
1438,
1023,
2099,
886,
29973,
13,
2887,
263,
1101,
29899,
786,
5155,
29892,
297,
278,
6434,
29871,
29896,
1696,
376,
14606,
451,
3026,
508,
367,
1304,
304,
1510,
777,
12327,
29891,
749,
515,
278,
1139,
29892,
408,
1532,
408,
263,
29120,
457,
18070,
310,
2769,
313,
2716,
2548,
373,
278,
16225,
310,
278,
1234,
467,
1317,
727,
263,
982,
304,
4653,
1316,
4948,
749,
297,
22467,
29973,
29871,
13,
13,
29909,
29901,
13,
13,
11284,
306,
1016,
29915,
29873,
1348,
727,
723,
367,
385,
2684,
1993,
29936,
278,
21438,
1033,
367,
13,
29908,
31607,
238,
163,
138,
30811,
29871,
239,
152,
141,
31286,
29914,
238,
173,
190,
240,
152,
163,
29871,
30393,
31533,
31197,
31136,
313,
239,
161,
139,
31207,
29897,
3026,
13,
4013,
1795,
367,
1304,
12558,
1532,
297,
6434,
29871,
29896,
29892,
541,
297,
6434,
29871,
29906,
372,
7656,
29915,
29873,
367,
1304,
4049,
29889,
350,
723,
1095,
670,
5193,
411,
376,
29879,
545,
1642,
13,
13,
29909,
29901,
13,
13,
2831,
11733,
29871,
29896,
29892,
306,
4658,
376,
31607,
238,
162,
191,
29871,
31734,
238,
146,
191,
29898,
31527,
29897,
3026,
723,
664,
29889,
29871,
5449,
635,
29892,
376,
3624,
372,
451,
6068,
3026,
13,
14084,
408,
366,
5276,
472,
278,
1095,
310,
278,
1139,
29892,
445,
16549,
508,
884,
12266,
12327,
29891,
749,
29936,
372,
1033,
884,
2099,
263,
29120,
457,
1139,
6721,
3692,
1554,
338,
6068,
29892,
577,
671,
411,
2562,
29889,
29871,
313,
797,
3153,
29892,
306,
1348,
278,
16549,
338,
901,
1871,
284,
1135,
376,
14606,
451,
1699,
577,
366,
7656,
29915,
29873,
864,
304,
1827,
376,
31607,
238,
162,
191,
29871,
31734,
238,
146,
191,
31527,
3026,
304,
2099,
376,
14606,
451,
29908,
297,
263,
5381,
11781,
1846,
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
] |
ALSO BY THE AMERICAN HEART ASSOCIATION
American Heart Association Go Fresh
American Heart Association The Go Red For Women Cookbook
American Heart Association Eat Less Salt
American Heart Association Healthy Slow Cooker Cookbook
American Heart Association Quick & Easy Cookbook, 2nd Edition
American Heart Association Low-Salt Cookbook, 4th Edition
American Heart Association No-Fad Diet, 2nd Edition
The New American Heart Association Cookbook, 8th Edition
American Heart Association Quick & Easy Meals
American Heart Association Complete Guide to Women's Heart Health
American Heart Association Healthy Family Meals
American Heart Association Low-Fat, Low-Cholesterol Cookbook, 4th Edition
American Heart Association Low-Calorie Cookbook
American Heart Association One-Dish Meals
# ACKNOWLEDGMENTS
AMERICAN HEART ASSOCIATION CONSUMER PUBLICATIONS
Director: Linda S. Ball
Managing Editor: Deborah A. Renza
Senior Editor: Robin P. Loveman
Assistant Managing Editor: Roberta W. Sullivan
RECIPE DEVELOPERS
Janice Cole
Nancy S. Hughes
Carol Ritchie
Francine Wolfe Schwartz
NUTRITION ANALYST
Tammi Hancock, R.D.
Copyright © 2015 by American Heart Association
Photographs © 2015 by Lucy Schaeffer
All rights reserved.
Published in the United States by Clarkson Potter/Publishers, an imprint of the Crown Publishing Group, a division of Penguin Random House LLC, New York.
www.crownpublishing.com
www.clarksonpotter.com
CLARKSON POTTER is a trademark and POTTER with colophon is a registered trademark of Penguin Random House LLC.
Your contributions to the American Heart Association support research that helps make publications like this possible. For more information, call 1-800-AHA-USA1 (1-800-242-8721) or contact us online at www.heart.org.
Library of Congress Cataloging-in-Publication Data
American Heart Association grill it, braise it, broil it, and other easy techniques and quick recipes for healthy meals / American Heart Association.
pages cm
Summary: "Knowing how to cook healthfully—without sacrificing flavor—is an important step towards improving heart health, weight, and overall well-being. For the first time, American Heart Association offers a primer on 12 easy-to-master heart-healthy cooking techniques (baking, broiling, braising, poaching, grilling, roasting, microwaving, blending, slow cooking, and stewing, to name a few). Once you know these techniques, you'll be able to customize the 175 recipes in this book for an endless supply of delicious meals. Learn the basics and then start experimenting!"—Provided by publisher.
1. Low-fat diet—Recipes. 2. Heart—Diseases—Diet therapy—Recipes. 3. Cooking. 4. Broiling. I. American Heart Association. II. Title: Grill it, braise it, broil it, and other easy techniques and quick recipes for healthy meals.
RM237.7.A374 2015
641.56311—dc23
eBook ISBN: 978-0-307-88811-2
Trade Paperback ISBN: 978-0-307-88809-9
Cover design by Gabriel Levine
Photography by Lucy Schaeffer
v3.1
# contents
preface
cooking with easy techniques for a healthy heart
shopping smart and eating well
living a healthy lifestyle
recipes
slow cooking
microwaving
blending
grilling
stir-frying
braising
stewing
steaming
poaching
broiling
roasting
baking
resources
a heart-healthy pantry
cooking equipment and tools basics
kitchen and food safety basics
food groups and suggested servings
about the recipes
index
# preface
At the American Heart Association and American Stroke Association, we know that for you and your family, eating nutritiously is a big part of living a healthier lifestyle, and that cooking more at home is an easy way to achieve this. In this cookbook, we share information about healthy cooking techniques and give you recipes to put these techniques into action. You can trust that each of the recipes not only tastes delicious but also follows the dietary recommendations of the American Heart Association.
Tired of the same tried-and-true baked chicken? Braise it and enjoy Curried Chicken Thighs, or steam it and serve Stuffed Napa Cabbage Rolls with Orange-Ginger Sauce. Not sure how to cook fish? Get in your weekly omega-3s through Honeyed Salmon with Spiced Honeydew Salsa and Tuna with Tomato-Tarragon Sauce from the microwave. Try the unexpected, like broiled Warm Caesar Salad with Tofu "Croutons" or Smoky Chicken and Vegetable Lasagna cooked on the grill. And, unlike any of our other American Heart Association cookbooks, all the recipes are organized by cooking method.
When you cook at home, you can control the amounts of saturated and trans fats, sodium, and added sugar you consume to help lower cholesterol and blood pressure levels that increase your risk for heart disease and stroke. With Grill It, Braise It, Broil It, you'll have a reliable resource to help you make nutritious, simple, and creative meals at home each and every day.
ROSE MARIE ROBERTSON, M.D., FAHA, FACC
Chief Science and Medical Officer
American Heart Association/American Stroke Association
# cooking with easy techniques for a healthy heart
Organized by technique, Grill It, Braise It, Broil It shows you how to cook using 12 different healthy cooking methods. All of them will help you expand your recipe repertoire. Some styles, such as stir-frying, steaming, and poaching, are quick. Techniques such as roasting and broiling offer distinct flavors and interesting textures; others, like braising and stewing, yield melt-in-your mouth dishes that cook low and slow with little attention needed. Slow cooking, microwaving, blending, and grilling let you utilize some of your favorite cooking appliances and don't heat up your kitchen; some methods, like baking, require no equipment or tools beyond what's in a basic kitchen.
The 175 recipes include snacks, appetizers, salads, soups, entrées, breakfasts, side dishes, and desserts that offer you versatility in the kitchen—from countertop to stovetop to oven. In addition, you'll find information on the techniques such as:
• why they're healthy
• the benefits and advantages
• how they work and tips to cook successfully with them
• what main tools and equipment are needed
In the back of the book, you'll also find a list of nutritious pantry items to keep in stock, basic cooking tools for a well-equipped kitchen, food safety practices, grocery shopping recommendations, and overall good nutrition and healthy lifestyle guidelines.
# shopping smart and eating well
To be sure you include enough wholesome foods in your daily eating plan and limit foods that are low in health benefits, keep the following guidelines in mind.
CHOOSE MORE NUTRIENT-RICH FOODS
Include a range of different VEGETABLES and FRUITS to get the widest variety of nutrients. When buying frozen or canned vegetables and fruits, shop for those with the lowest amounts of sodium or added sugars.
Eat high-fiber WHOLE GRAINS rather than refined grain products as often as possible. Serve whole-grain breads, pastas, cereals, and side dishes for the benefits of fiber and other important nutrients. Try to be sure at least half the grains you eat are whole grains. Shop for brown rice, bulgur, quinoa, barley, amaranth, and farro, as well as whole-grain breads, pastas, cereals, and crackers. Check that a whole grain is listed first in the ingredients.
Select FAT-FREE, 1%, and LOW-FAT DAIRY products and limit full-fat dairy products, such as milk, cheese, and yogurt.
Eat FISH at least twice a week, especially fish high in omega-3 fatty acids, such as salmon, tuna, and trout. Seafood is an excellent source of protein. Shop for fresh fish when possible, but also look for canned albacore tuna packed in water with the lowest sodium and canned boneless, skinless salmon as healthy alternatives.
Choose SKINLESS POULTRY and LEAN MEAT, and prepare them without added unhealthy fats, discarding all visible fat before cooking them. Lean cuts of beef and pork, such as sirloin, extra-lean ground beef, pork tenderloin, and pork loin chops, can be part of a heart-healthy diet if you consume them in moderation.
Add LEGUMES, NUTS, and SEEDS to your diet. Legumes, including beans (such as black and kidney), peas (such as green and chickpeas), lentils, and peanuts, are an excellent source of fiber and meatless protein. Nuts and seeds contain monounsaturated fats, which may help improve blood cholesterol levels when they replace saturated and trans fat in the diet. Look for unsalted nuts and seeds for snacks or to add to salads or homemade whole-grain breads or muffins.
Include HEALTHY FATS and OILS in your eating plan. Vegetable oils provide heart-healthy unsaturated fats. Use canola, corn, olive, and safflower oils as your main go- to oils in the kitchen. Use these along with nonstick cooking sprays and soft tub margarine rather than hard stick margarine, butter, and shortening.
EAT LESS OF NUTRIENT-POOR FOODS
Cut back on SODIUM. Be mindful that most of the sodium you eat comes from packaged and processed foods, including restaurant meals. Watch how much sodium (and added sugars) you add to your meals in the form of condiments, dressings, and sauces. Compare the food labels of similar products to find the ones with less sodium, and be cautious of typically high-sodium foods such as soups, breads, sandwiches, pizza, poultry, and cold cuts. When cooking, season food with herbs, spices, and citrus. Use salt sparingly or not at all. To lower blood pressure, aim to eat no more than 2,400 milligrams (mg) of sodium per day. To reduce blood pressure even further, cut back to a daily sodium intake of 1,500 mg.
Limit ADDED SUGAR. Keep your intake of sugar-sweetened beverages to no more than 450 calories, or 36 ounces per week. (If you need fewer than 2,000 calories per day, avoid these beverages altogether.) Also, avoid sugary foods that are low in nutrients but high in calories. Buy them only as occasional treats.
Cut back on foods high in SATURATED FAT and TRANS FAT. A diet high in these fats increases your risk of heart disease. Saturated fat is found primarily in foods from animals, such as meats, poultry, and full-fat dairy products, or in tropical oils, such as coconut, palm, and palm kernel. Trans fat is present in many manufactured foods that include partially hydrogenated oil. Cut back on trans fat by reading labels when choosing snacks, cakes, cookies, pastries, pies, muffins, and fried foods. To lower cholesterol, reduce your intake of saturated fat to no more than 5 to 6 percent of your total calories, so if you eat a 2,000-calorie diet, aim to consume 13 grams or less of saturated fat a day.
# living a healthy lifestyle
Although some risk factors for heart disease and stroke, such as increasing age, family history, and ethnicity, can't be changed, many of the most damaging risk factors are things you can control.
MAINTAIN A HEALTHY WEIGHT
Consistently taking in too many calories will lead to becoming overweight or obese—a risk factor for heart disease and stroke, as well as other diseases including diabetes. You have a much higher risk of heart disease and stroke if you're overweight or obese, even if you have no other risk factors. Losing just 5 to 10 percent of your body weight will help lower some of your risk. Too much body fat—especially at your waist—means that your heart has to work harder and your risk increases for high blood pressure, high cholesterol, and diabetes. You can determine your body mass index (BMI) using the BMI Calculator for Adults at www.heart.org. Also, talk to your healthcare provider about what a healthy BMI and waist measurement are for you. To best manage your weight, eat the right amount of calories for you and engage in regular physical activity.
EXERCISE REGULARLY
The American Heart Association recommends that adults get 30 minutes of moderate-intensity physical activity at least five days a week or 75 minutes of vigorous-intensity activity each week for overall cardiovascular health. Children should aim for at least 60 minutes a day.
DON'T SMOKE OR BREATHE TOBACCO SMOKE
Smoking is the number one preventable cause of premature death in the United States. Smoking is a risk factor for cardiovascular disease. A smoker's risk of developing coronary heart disease is two to four times that of a nonsmoker's. If you smoke, quit now! (To find resources to quit, go to www.heart.org.) When you stop smoking, your risk of heart disease and stroke drops rapidly, no matter how long or how much you've smoked. If you don't smoke, don't start.
DRINK ALCOHOL IN MODERATION—OR NOT AT ALL
Drinking too much alcohol can raise blood pressure, increase risk of heart failure and stroke, produce irregular heartbeats, and contribute to many other diseases. If you drink, do so in moderation—no more than one drink per day for a woman and two drinks for a man. One drink is equal to 12 ounces of beer, 5 ounces of wine, or 1½ ounces of 80-proof spirits. If you don't drink, don't start.
SCHEDULE REGULAR MEDICAL CHECKUPS
Make an appointment with your healthcare professional for a heart checkup to find out your numbers and discuss your personal risk for cardiovascular disease.
# slow cooking
italian vegetable soup with farro
meatball soup with spinach and parmesan
bayou gumbo
citrus-cilantro salmon
chilean chicken and vegetable stew
chicken korma
chicken cacciatore with pasta
rosemary steak smothered in onions
madeira flank steak
new mexican meat loaf
hummus and veggie lasagna roll-ups
savory lentil stew with polenta
chayote squash and pepper casserole
southwestern sweet potatoes
Traditionally, cooks have turned to their slow cookers to prepare basic chilis, stews, soups, and dips, but the truth is your slow cooker is capable of so much more! You can use this traditional appliance to enjoy modern healthy dishes that include interesting and complex flavors like Chicken Korma, an Indian dish chock-full of exotic spices, and Madeira Flank Steak, which uses wine to create a rich-tasting sauce. You can also use your slow cooker to make delicious dishes that you might not think to use your appliance for, such as Chayote Squash and Pepper Casserole and Citrus-Cilantro Salmon.
Use your slow cooker to put a new twist on familiar family classics, too, such as Chicken Cacciatore with Pasta and New Mexican Meat Loaf. Slow cooking not only helps you prepare healthy meals but also saves you time because the dishes need a minimum of hands-on attention. You shouldn't stir the food (unless a recipe calls for it), and you don't need to watch it or worry about it burning. Throw healthy ingredients into a crock, let them cook low and slow, and serve your family a delicious meal! You can save even more time as well as further reduce your kitchen "footprint" by cooking once and eating twice: make large quantities of your favorite dishes, eat some now, and refrigerate or freeze the rest for a quick meal at another time.
Slow cooking can save you money, too. Because slow cooking breaks down the connective tissue in less-expensive cuts of meat, you won't need to spend a lot to enjoy a savory stew or roast.
So how do slow cookers really work? They surround food with low, steady heat, resulting in long, slow cooking without burning. The moist heat cooks foods until they're falling-apart tender. Covering the crock with the lid creates a moisture-tight seal that ensures that the heat and steam released by the contents remain in the crock. This seal is important to maintain a steady temperature inside, and it also helps distribute and blend flavors as vapor condenses on the lid and returns to the food in the pot.
TO SLOW COOK:
To cook food with low, steady, moist heat for a long period of time in a covered crock.
Tools & Equipment Needed: Slow cooker
TIPS:
• Make the cooker work with your schedule. Try prepping a recipe the night before you plan to cook the food. Cover and refrigerate the prepped food in airtight containers overnight, fill the crock in the morning, and turn on the heat and, if your cooker has one, the timer.
• Prep foods so they will cook the most efficiently and evenly. For example, take care to cut carrots into pieces of the same approximate size so all the carrots in the dish will be done at the same time.
• Trim the visible fat from poultry and lean meats, and in most cases discard the skin before cooking the poultry (if skin isn't discarded before cooking, do so before eating), both to cut down on unhealthy fats in the finished dish and for more even cooking.
• Resist the urge to stir or sneak a peek. Open the lid only when the recipe directs you to, complete the necessary actions, such as adding ingredients, and re-cover the cooker quickly. Every time you break the seal between the cover and the crock, you lose heat.
• See safety tips for slow cooking.
BEST FOODS FOR SLOW COOKING
Seafood: Thick fish fillets, such as salmon, are a great choice, like Citrus-Cilantro Salmon. Thinner fillets and chunks of fish (as for stews or soups) are usually added toward the end of cooking time. The low, slow cooking is very forgiving, so it's hard to overcook fish. Shellfish and mollusks such as shrimp and mussels also can be slow cooked, as in Bayou Gumbo.
Poultry: Bone-in pieces of chicken and turkey work well, as in Chilean Chicken and Vegetable Stew, but boneless chicken breasts are often used as well.
Meat: Lean cuts, which are the healthier option, from the largest muscles work best in the slow cooker because they are high in fibrous protein, which breaks down in the slow cooker. Try shanks, chuck roasts, and top or bottom rounds, such as Rosemary Steak Smothered in Onions. Avoid more tender cuts such as sirloin.
Vegetarian Protein: Because they absorb flavors so well, tofu, seitan, and tempeh are ideal for slow cooking in a flavorful liquid. Legumes—such as dried beans, peas, and lentils—are a natural for the low, steady heat of slow cooking, which renders them tender but not mushy. Try Savory Lentil Stew with Polenta.
Vegetables: Tough, fibrous vegetables such as carrots, parsnips, beets, celery, radishes, and potatoes, as in Southwestern Sweet Potatoes, become sweet and tender when exposed to the slow, gentle heat of a slow cooker, but you can also use eggplant, leeks, cauliflower, broccoli, and cabbage or other greens.
Grains: Use the slow cooker to get more whole grains, including barley, millet, quinoa, wild rice, and farro. Try Italian Vegetable Soup with Farro. Oatmeal is also a popular choice; put in the ingredients and turn on the cooker at bedtime, and you'll wake up to a warm, hearty, and nutritious breakfast (see Slow Cooking Bonus).
## italian vegetable soup with farro
This hearty soup combines smooth broth and chunky vegetables with tender beans and chewy farro (FAHR-oh), an ancient grain also known as emmer. It all adds up to a rich, comforting one-dish meal with a variety of flavors in every spoonful.
SERVES 6 | 1⅔ cups per serving
2 large carrots, cut into ½-inch slices
1 large fennel bulb, coarsely chopped
2 medium onions, coarsely chopped
2 medium zucchini, halved lengthwise if wide, cut into ½-inch slices
4 large garlic cloves, minced, and 1 medium garlic clove, left whole, divided use
2 sprigs of fresh rosemary
½ cup uncooked farro, rinsed and drained
1 15.5-ounce can no-salt-added cannellini beans, rinsed and drained
1 14.5-ounce can no-salt-added diced tomatoes, undrained
4 cups fat-free, low-sodium vegetable broth
1 cup loosely packed fresh basil
½ cup shredded or grated Parmesan cheese
In a 5- to 7-quart round or oval slow cooker, make one layer each, in order, of the carrots, fennel, onions, zucchini, minced garlic, and sprigs of rosemary. Sprinkle the farro over all. Top with the beans and tomatoes with liquid. Pour in the broth. Cook, covered, on low for 9 to 10 hours or on high for 4½ to 5½ hours.
About 5 minutes before serving time, in a food processor or blender, pulse the remaining 1 garlic clove 5 times, or until finely minced. Add the basil. Pulse 10 times, or until finely chopped. In a small bowl, stir together the basil mixture and Parmesan.
Just before serving, discard the rosemary stems, stirring the leaves back into the soup. Sprinkle the soup with the basil mixture.
per serving
calories 215
total fat 3.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.5 g
cholesterol 5 mg
sodium 214 mg
carbohydrates 37 g
fiber 8 g
sugars 8 g
protein 12 g
dietary exchanges: 1½ starch, 3 vegetable, ½ lean meat
## meatball soup with spinach and parmesan
It takes a few extra minutes to brown the meatballs before adding them to the slow cooker, but it will be well worth the effort. The seasoned, caramelized meatballs cook to tender perfection in a soup bursting with the freshness of sweet tomatoes, spinach, and basil. A final sprinkle of Parmesan adds the crowning touch.
SERVES 4 | 1 cup (with 4 meatballs) per serving
Cooking spray
8 ounces extra-lean ground beef
⅓ cup uncooked oatmeal
1 large egg white
1 teaspoon dried Italian seasoning, crumbled, or dried oregano, crumbled
½ teaspoon onion powder
¼ to ½ teaspoon crushed red pepper flakes
1 teaspoon olive oil and 2 teaspoons olive oil (extra virgin preferred), divided use
2 cups grape tomatoes, halved
2 cups water
1 large green bell pepper, chopped
1 medium onion, diced
½ cup dry red wine (regular or nonalcoholic)
2 packets (2 teaspoons) salt-free instant beef bouillon
1 ounce baby spinach, coarsely chopped (about 1 cup)
¼ cup chopped fresh basil
⅛ teaspoon salt
¼ cup shredded or grated Parmesan cheese
Lightly spray a 3- to 4½-quart round or oval slow cooker with cooking spray. Set aside.
In a medium bowl, using your hands or a spoon, combine the ground beef, oatmeal, egg white, Italian seasoning, onion powder, and red pepper flakes. Shape into sixteen 1-inch balls. Transfer to a large plate.
In a large nonstick skillet, heat 1 teaspoon oil over medium-high heat, swirling to coat the bottom. Cook the meatballs for 2 to 3 minutes, or until browned on all sides, turning occasionally.
Meanwhile, in the slow cooker, stir together the tomatoes, water, bell pepper, onion, wine, and bouillon.
Gently add the meatballs, spooning some of the tomato mixture over them. Cook, covered, on low for 7½ to 8 hours or on high for 3 hours 45 minutes to 4 hours, or until the bell pepper is very tender.
Gently stir in the spinach, basil, salt, and the remaining 2 teaspoons oil. Let stand, uncovered, for 10 minutes so the flavors blend. Just before serving, sprinkle the soup with the Parmesan.
per serving
calories 233
total fat 8.5 g
saturated fat 2.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 4.0 g
cholesterol 35 mg
sodium 241 mg
carbohydrates 17 g
fiber 4 g
sugars 7 g
protein 18 g
dietary exchanges: ½ starch, 2 vegetable, 2 lean meat, ½ fat
COOK'S TIP: To handle the meatballs easily while turning them, use two utensils, such as two spoons or forks, or one of each.
SLOW COOKING BONUS: Don't put away those oats so fast! Once dinner is done, clean out the slow cooker and get a head start on the morning by making oatmeal overnight. Lightly spray a 3- to 4½-quart round or oval slow cooker with cooking spray. In the slow cooker, stir together 2 cups uncooked oatmeal (steel-cut or rolled) and 4½ cups water. Stir in fruit and seasonings, if desired (for example, chopped apple and ground cinnamon). Cook, covered, on low for 6 to 7 hours, or until the oatmeal is tender and the water is absorbed.
## bayou gumbo
This recipe uses the convenience of the slow cooker but boasts a depth of flavor you can only get by first browning the flour and sautéing the vegetables. Serve over fluffy brown rice.
SERVES 6 | 1 cup per serving
⅓ cup all-purpose flour
1 cup water and 1 cup water, divided use
1 tablespoon canola or corn oil
2 medium ribs of celery, chopped
1 small onion, diced
1 medium green bell pepper, diced
2 cups sliced okra
1 14.5-ounce can no-salt-added diced tomatoes, undrained
1 tablespoon salt-free Creole or Cajun seasoning blend
1 teaspoon garlic powder
1 teaspoon ground cumin
½ teaspoon Louisiana-style hot-pepper sauce (optional)
¼ teaspoon salt
¼ teaspoon pepper (freshly ground preferred)
8 ounces catfish fillets, rinsed, patted dry, and cut into ¾-inch pieces
8 ounces raw medium shrimp, peeled, rinsed, and patted dry
In a large skillet, cook the flour over medium-high heat for 4 to 5 minutes, or until golden brown, stirring frequently. Watch carefully so it doesn't burn. In a medium bowl, whisk together the flour and 1 cup water until completely blended. Pour into a 3- to 4½-quart round or oval slow cooker.
In the same skillet, heat the oil, still over medium-high heat, swirling to coat the bottom. Cook the celery, onion, and bell pepper for 5 to 6 minutes, or until tender-crisp, stirring occasionally. Stir in the okra. Cook for 2 to 3 minutes, or until tender-crisp, stirring occasionally. Transfer the celery mixture to the slow cooker.
Stir in the tomatoes with liquid, seasoning blend, garlic powder, cumin, hot-pepper sauce, salt, pepper, and the remaining 1 cup water. Cook, covered, on low for 6 to 7 hours or on high for 2½ to 3½ hours. Stir in the fish and shrimp. Cook, covered, on low for 1 hour or on high for 30 minutes, or until the fish flakes easily when tested with a fork and the shrimp are pink on the outside.
per serving
calories 152
total fat 4.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.0 g
cholesterol 70 mg
sodium 223 mg
carbohydrates 15 g
fiber 3 g
sugars 4 g
protein 14 g
dietary exchanges: ½ starch, 2 vegetable, 2 lean meat
COOK'S TIP ON CREOLE OR CAJUN SEASONING BLEND: To make your own salt-free Creole or Cajun seasoning blend, stir together ½ teaspoon each of chili powder, ground cumin, onion powder, garlic powder, paprika, and pepper, and, if you wish, ⅛ teaspoon of cayenne. This makes just over 1 tablespoon of the blend; double or triple the amounts if you like, and keep the extra in a container with a shaker top to use in other seafood, poultry, meat, and vegetable dishes.
## citrus-cilantro salmon
Slow cooking is an ideal way to ensure that your salmon is perfectly done every time, and it requires very little cleanup. Sweet, refreshing orange contrasts beautifully with the smokiness of cumin and the heat of chili powder and red pepper flakes.
SERVES 4 | 3 ounces fish per serving
Cooking spray
1 medium orange, cut into 4 rounds
4 salmon fillets with skin (about 5 ounces each), rinsed and patted dry
1 teaspoon canola or corn oil
1 teaspoon chili powder
½ teaspoon ground cumin
¼ teaspoon salt
⅛ teaspoon crushed red pepper flakes
¼ cup chopped fresh cilantro
1 medium lemon or lime, cut into 4 wedges
Lightly spray a 3- to 4½-quart round or oval slow cooker with cooking spray. Arrange the orange rounds in the slow cooker, overlapping them slightly. Place the fish on the orange rounds with the skin side down. Brush the oil over the fish. In a small bowl, stir together the chili powder, cumin, salt, and red pepper flakes. Sprinkle the mixture over the fish. Cook, covered, on high for 1 hour to 1 hour 15 minutes, or until the fish is the desired doneness.
Transfer the fish to plates. Sprinkle with the cilantro. Serve with the lemon wedges.
per serving
calories 161
total fat 6.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 53 mg
sodium 244 mg
carbohydrates 1 g
fiber 0 g
sugars 0 g
protein 24 g
dietary exchanges: 3 lean meat
## chilean chicken and vegetable stew
Corn is a popular ingredient in Chilean cuisine and is often used in meat dishes. In this entrée, it also acts as a thickener in the form of cornmeal. Bone-in chicken adds extra flavor to stews, but remember to discard the skin before cooking to eliminate much of the saturated fat.
SERVES 6 | 3 ounces chicken and 1 cup vegetable mixture per serving
1 large onion, cut into 1-inch wedges
12 ounces small red potatoes, cut into 1-inch wedges
1 large sweet potato, cut into 1½-inch pieces
1 large red bell pepper, cut into 1½-inch pieces
4 ounces green beans, trimmed and cut into 1½-inch pieces
1 cup frozen whole-kernel corn, thawed
1 2½- to 3-pound chicken, cut into serving pieces, skin, all visible fat, neck, and giblets discarded
3 cups fat-free, low-sodium chicken broth
⅓ cup cornmeal
2 tablespoons ground cumin
1 tablespoon ground coriander
½ teaspoon pepper
½ cup chopped fresh cilantro
In a 3- to 4½-quart round or oval slow cooker, make one layer each, in order, of the onion, potatoes, sweet potato, bell pepper, green beans, and corn. Place the chicken on the corn.
In a large bowl, whisk together the remaining ingredients except the cilantro. Pour into the slow cooker. Gently press down on the chicken so it's partially covered by the broth mixture. Cook, covered, on low for 6 to 8 hours or on high for 3 to 4 hours, or until the chicken is no longer pink in the center, the onion is soft, and the vegetables are tender.
Just before serving, sprinkle with the cilantro.
per serving
calories 296
total fat 4.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 1.0 g
cholesterol 69 mg
sodium 155 mg
carbohydrates 39 g
fiber 6 g
sugars 8 g
protein 28 g
dietary exchanges: 2 starch, 2 vegetable, 3 lean meat
## chicken korma
Your kitchen will fill with the aroma of exotic spices when you prepare this Indian dish. First, though, the chicken needs to marinate for as little as one hour or as long as overnight. Serve this entrée over basmati rice to catch all the sauce.
SERVES 8 | 3 ounces chicken and ½ cup sauce per serving
Cooking spray
1 large onion, coarsely chopped, and 1 large onion, thinly sliced, divided use
¼ cup slivered or sliced almonds
1 small fresh jalapeño, seeds and ribs discarded, diced (see Cook's Tip)
1 1-inch piece peeled gingerroot, sliced crosswise
2 tablespoons water
2 medium garlic cloves, chopped
1 teaspoon ground coriander
⅜ teaspoon salt
8 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded
2 teaspoons canola or corn oil
1 cinnamon stick (about 3 inches long), broken in half
1 tablespoon curry powder
1 teaspoon garam masala
½ teaspoon ground turmeric
2 tablespoons cornstarch
1 cup fat-free, low-sodium chicken broth
16 ounces frozen green peas, thawed
1 cup fat-free plain yogurt (Greek preferred), at room temperature
2 tablespoons sliced almonds, dry-roasted
2 tablespoons chopped fresh cilantro
Lightly spray a 3- to 4½-quart round or oval slow cooker with cooking spray. Set aside.
In a food processor or blender, process the chopped onion, ¼ cup almonds, jalapeño, gingerroot, water, garlic, coriander, and salt until smooth. Transfer to a large bowl.
Put the chicken in a large shallow glass dish. Using a rubber scraper, spread all the chopped onion mixture over both sides of the chicken. Cover the dish tightly and refrigerate for 1 hour to overnight.
In a medium skillet, heat the oil over medium-high heat, swirling to coat the bottom. Cook the sliced onion for 10 minutes, or until golden, stirring frequently and adjusting the heat as necessary so it doesn't burn. Reduce the heat to low.
Stir in the cinnamon stick, curry powder, garam masala, and turmeric. Cook for 1 minute, stirring frequently so the spices don't burn.
Meanwhile, put the cornstarch in a small bowl. Add the broth, whisking to dissolve.
Stir the cornstarch mixture into the sliced onion mixture. Increase the heat to medium high. Bring to a boil, stirring constantly. Reduce the heat and simmer for 1 minute, or until the sauce is thickened, stirring constantly.
Arrange half the chicken, including any remaining chopped onion mixture, in the slow cooker. Pour half the sauce over the chicken. Repeat with the remaining chicken and sauce. Cook, covered, on low for 3½ to 5½ hours, or until the chicken is no longer pink in the center.
Quickly pour the peas over the sauce (don't stir) and re-cover the slow cooker. Cook for 30 minutes, or until the peas are tender.
Transfer the chicken to serving bowls, leaving the sauce in the slow cooker. Stir the yogurt into the sauce. Spoon over the chicken. Sprinkle with the remaining 2 tablespoons almonds, then with the cilantro.
per serving
calories 261
total fat 7.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 3.0 g
cholesterol 73 mg
sodium 324 mg
carbohydrates 18 g
fiber 5 g
sugars 7 g
protein 32 g
dietary exchanges: ½ starch, 1 vegetable, 3½ lean meat
COOK'S TIP: This recipe calls for the low setting as the only option because the flavors need the longer cooking time to develop.
COOK'S TIP ON GARAM MASALA: Garam masala is an Indian blend of spices usually including pepper, cinnamon, cloves, cumin, and hot chiles. The name means "warm" or "hot," indicating that dishes containing this blend are spicy. It's usually found in the spice or ethnic-foods aisle of grocery stores.
## chicken cacciatore with pasta
This Italian mainstay has been updated for today's modern cook. Buon appetito!
SERVES 6 | 1½ cups cacciatore and ½ cup pasta per serving
Cooking spray
CACCIATORE
1 tablespoon all-purpose flour
1 tablespoon balsamic vinegar
½ cup Chianti or other dry red wine (regular or nonalcoholic)
1½ pounds boneless, skinless chicken breasts, all visible fat discarded, cut into ¾-inch cubes
8 ounces brown (cremini) mushrooms, sliced (about 2½ cups)
1 14.5-ounce can no-salt-added stewed tomatoes, undrained
1 14.5-ounce can no-salt-added diced tomatoes, undrained
6 ounces no-salt-added tomato paste
1 medium onion, halved, thinly sliced, and separated into half-rings
½ medium green bell pepper, chopped
1 tablespoon dried Italian seasoning, crumbled
2 large garlic cloves, minced
2 teaspoons crushed red pepper flakes
¼ teaspoon salt
6 ounces dried whole-grain spaghetti
2 tablespoons shredded or grated Parmesan cheese
Lightly spray a 3- to 4½-quart round or oval slow cooker with cooking spray. Set aside.
In a small bowl, whisk together the flour and vinegar until the mixture forms a smooth paste. Gradually whisk in the wine.
In the slow cooker, stir the remaining cacciatore ingredients together. Stir in the wine mixture. Cook, covered, on low for 7 to 8 hours or on high for 3 to 4 hours.
Shortly before serving time, prepare the pasta using the package directions, omitting the salt. Drain well in a colander.
Serve the cacciatore over the pasta. Sprinkle with the Parmesan.
per serving
calories 342
total fat 4.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 1.5 g
cholesterol 74 mg
sodium 296 mg
carbohydrates 41 g
fiber 7 g
sugars 14 g
protein 32 g
dietary exchanges: 1½ starch, 4 vegetable, 3 lean meat
## rosemary steak smothered in onions
This recipe takes advantage of the long cooking process to tenderize the round steak. Don't be afraid of the quantity of onions. As they cook, they will wilt and turn golden, creating a silky topping for the steak that will melt in your mouth.
SERVES 4 | 3 ounces beef and ⅓ cup onions per serving
Cooking spray
½ teaspoon pepper
¼ teaspoon salt
1 1-pound boneless round steak, cut into 4 pieces, all visible fat discarded
1½ teaspoons olive oil
2 large sweet onions, such as Vidalia, Maui, or Oso Sweet, sliced (about 4 cups)
¼ cup water
4 sprigs of fresh rosemary
Lightly spray a 3- to 4½-quart round or oval slow cooker with cooking spray. Set aside.
Sprinkle the pepper and salt over both sides of the beef.
In a large nonstick skillet, heat the oil over medium-high heat, swirling to coat the bottom. Cook the beef for 3 to 4 minutes, or until browned, turning once halfway through.
Meanwhile, put half the onions in the slow cooker. Place the beef on the onions.
Increase the stovetop heat to high. In the same skillet, bring the water to a boil, scraping to dislodge any browned bits. Boil for 1 to 2 minutes, or until reduced by half (to about 2 tablespoons). Pour over the beef in the slow cooker.
Put the rosemary on the beef. Scatter the remaining onions over the rosemary and beef.
Cook, covered, on low for 4 to 6 hours or on high for 2 to 3 hours, or until the beef is fork-tender.
Discard the rosemary. Serve the beef topped with the onions and drizzled with the cooking juices.
per serving
calories 187
total fat 5.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.5 g
cholesterol 64 mg
sodium 181 mg
carbohydrates 7 g
fiber 1 g
sugars 3 g
protein 26 g
dietary exchanges: 1 vegetable, 3 lean meat
## madeira flank steak
Slow cooking the mushrooms makes them wonderfully velvety. Add Madeira, a fortified wine, to the sauce. It will be so rich-tasting, your guests will think you're a culinary genius!
SERVES 4 | 3 ounces beef and ¼ cup sauce per serving
Cooking spray
1 teaspoon canola or corn oil and 1 teaspoon canola or corn oil, divided use
1 1-pound flank steak, all visible fat discarded
4 medium shallots, chopped (about 1 cup)
8 ounces shiitake mushrooms (stems discarded) or mixed exotic mushrooms, thinly sliced
¼ cup Madeira or fat-free, low-sodium beef broth and ¼ cup Madeira or fat-free, low-sodium beef broth, divided use
2 tablespoons water
2 tablespoons light tub margarine
⅛ teaspoon salt
2 tablespoons chopped fresh parsley
Lightly spray a 3- to 4½-quart round or oval slow cooker with cooking spray. Set aside.
In a large nonstick skillet, heat 1 teaspoon oil over medium-high heat, swirling to coat the bottom. Cook the beef for 4 minutes. Turn over the beef. Cook for 1 minute. Transfer to a large plate. Cover and refrigerate to chill completely so it won't overcook.
In the same skillet, heat the remaining 1 teaspoon oil, swirling to coat the bottom. Cook the shallots for 3 minutes, or until beginning to brown, stirring frequently. Transfer to the slow cooker. Stir in the mushrooms.
Pour ¼ cup Madeira and the water into the skillet, scraping to dislodge any browned bits. Stir into the shallot mixture in the slow cooker. Cook, covered, on low for 3½ to 4 hours or on high for 1 hour 45 minutes to 2 hours, or until the mushrooms are very soft.
If using the low setting, change it to high. Quickly stir in the margarine, salt, and the remaining ¼ cup Madeira. Place the beef on top. Pour in any accumulated juices from the beef. Re-cover the slow cooker. Cook for 20 to 30 minutes, or until the beef is heated through.
Transfer the beef to a cutting board, leaving the sauce in the slow cooker. Change the setting to low. Cut the beef diagonally across the grain into thin slices. Just before serving, spoon the sauce over the beef. Sprinkle with the parsley.
per serving
calories 274
total fat 11.5 g
saturated fat 3.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 6.0 g
cholesterol 48 mg
sodium 167 mg
carbohydrates 9 g
fiber 1 g
sugars 4 g
protein 25 g
dietary exchanges: 1 vegetable, 3 lean meat, ½ fat
COOK'S TIP: You can use sliced button mushrooms in place of the shiitake or mixed exotic mushrooms, but they will have a bit less flavor.
## new mexican meat loaf
New Mexico is famous for its green-chile cheeseburgers, which were the inspiration for this flavorful meat loaf. It's studded with bits of mild, roasted poblano pepper and provides a surprise of melted cheese in the middle. During the meat loaf's standing time, use your microwave to make Broccoli with Jalapeño and Garlic for a spicy side.
SERVES 8 | 1 slice or wedge per serving
Cooking spray
1 14.5-ounce can no-salt-added petite diced tomatoes, liquid reserved, divided use
1½ pounds extra-lean ground beef
½ cup finely chopped sweet onion, such as Vidalia, Maui, or Oso Sweet
½ cup plain dry whole-wheat bread crumbs (lowest sodium available)
¼ cup chopped roasted poblano pepper and ¼ cup chopped roasted poblano pepper (about a 4-ounce poblano), divided use (see Cook's Tip)
1 large egg white
2 tablespoons chopped fresh cilantro and 2 tablespoons chopped fresh cilantro, divided use
2 teaspoons ancho powder or chili powder
1½ teaspoons dried oregano, crumbled
1 teaspoon ground cumin
1 teaspoon garlic powder
¼ teaspoon salt
½ cup shredded low-fat 4-cheese Mexican blend
¼ cup no-salt-added ketchup
Fold an 18-inch-long piece of aluminum foil lengthwise in thirds. Place the foil in a 3- to 4½-quart oval slow cooker so it runs the length of the cooker and hangs over the two short sides. The foil will help you remove the cooked meat loaf from the slow cooker later. Lightly spray the foil and the inside of the slow cooker with cooking spray.
Put ½ cup of the tomatoes and all the reserved liquid in a large bowl. Set aside the remaining tomatoes.
Add the beef, onion, bread crumbs, ¼ cup poblano pepper, the egg white, 2 tablespoons cilantro, the ancho powder, oregano, cumin, garlic powder, and salt to the tomato mixture. Using your hands or a spoon, gently combine the ingredients. Transfer half the mixture to a flat surface. Depending on the shape of your slow cooker, shape into a loaf that will fit in the slow cooker and leave about a 1-inch space all around between it and the side of the crock.
Using your fingertips, gently press the loaf to form a 1-inch trough down the center. Put the cheese in the trough. Cover the loaf with the remaining half of the beef mixture, gently pressing the edges together to seal well. Transfer to the slow cooker, placing the meat loaf so the foil strip is under the middle of it. Cook, covered, on high for 1 hour. Change the setting to low and cook, covered, for 3 hours.
Meanwhile, in a small bowl, stir together the ketchup and the remaining tomatoes, ¼ cup poblano pepper, and 2 tablespoons cilantro.
When the meat loaf is ready, quickly spoon the ketchup mixture over the top and re-cover the slow cooker. Cook on low for 1 hour, or until the meat loaf registers 160°F on an instant-read thermometer, testing where there is no cheese. Grasping the ends of the foil, carefully lift the meat loaf from the slow cooker. Transfer to a cutting board. Let stand for 10 minutes before slicing or cutting into wedges.
per serving
calories 185
total fat 6.0 g
saturated fat 2.5 g
trans fat 0.5 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 51 mg
sodium 230 mg
carbohydrates 11 g
fiber 2 g
sugars 4 g
protein 22 g
dietary exchanges: ½ starch, 3 lean meat
COOK'S TIP: If you don't have an oval slow cooker, you can still make this dish. Just make your meat loaf round!
COOK'S TIP ON ROASTING POBLANO PEPPERS: To roast a poblano pepper, preheat the broiler. Halve the pepper lengthwise and discard the seeds and ribs (be sure to wear plastic gloves or to wash your hands thoroughly with warm, soapy water after handling the pepper). Place the halves with the skin side up on a baking sheet lined with aluminum foil. Broil 4 to 5 inches from the heat for 7 to 9 minutes, or until the skin is blackened and blistered. Remove the baking sheet from the oven and wrap the foil around the pepper. Let stand for 15 to 20 minutes, or until cool enough to handle. To remove the skin with ease, pull from the pointed end of the pepper.
## hummus and veggie lasagna roll-ups
Navy bean hummus with lasagna? The garlicky bean mixture makes a surprisingly delicious stand-in for the usual ricotta filling. You can make the hummus and the pasta the day before serving the roll-ups to reduce the hands-on time before firing up the slow cooker.
SERVES 4 | 1 roll-up and ½ cup sauce per serving
Cooking spray
1 medium zucchini, quartered lengthwise and cut crosswise into 1-inch pieces
1 medium green bell pepper, cut into 1-inch squares
1 teaspoon canola or corn oil
4 dried whole-grain lasagna noodles
1 15.5-ounce can no-salt-added navy beans, rinsed and drained
2 tablespoons water
2 medium garlic cloves, minced
10 ounces frozen chopped spinach, thawed, drained, and squeezed until very dry
½ cup chopped fresh parsley and 2 tablespoons chopped fresh parsley, divided use
2 large egg whites
2 tablespoons shredded or grated Parmesan cheese and 1 tablespoon shredded or grated Parmesan cheese, divided use
1½ tablespoons dried basil, crumbled
2 cups meatless spaghetti sauce (lowest sodium available)
¼ cup shredded low-fat mozzarella cheese
Lightly spray a 4- to 6-quart round or oval slow cooker with cooking spray. Put the zucchini, bell pepper, and oil in the slow cooker, stirring to combine. Cook, covered, on low for 5 to 5½ hours or on high for 2½ hours to 2 hours 45 minutes, or until the bell pepper is browned on the edges and very tender.
Meanwhile, prepare the noodles using the package directions, omitting the salt. Drain well in a colander. Spread out on a dish towel. Pat dry with paper towels. Let the noodles cool, about 10 minutes. Transfer them to a container large enough for them to lie flat. (To prevent them from sticking together, separate the noodles with cooking parchment or wax paper or only slightly overlap them.) Cover and refrigerate until needed.
In a food processor or blender, process the beans, water, and garlic until smooth. Transfer the hummus to a large bowl. Stir in the spinach, ½ cup parsley, the egg whites, 2 tablespoons Parmesan, and the basil. Cover and refrigerate until needed.
Shortly before the zucchini mixture is ready, place the noodles on a work surface. Spread ½ cup hummus on each noodle. Gently roll up from one of the short ends.
When the zucchini mixture has cooked, quickly stir it. Place the roll-ups with the seam side down on the zucchini mixture. Pour the spaghetti sauce over the roll-ups. Re-cover the slow cooker. Cook on low for 2 hours or on high for 1 hour, or until the roll-ups are heated through and the sauce is bubbly around the edge. Sprinkle with the mozzarella and the remaining 2 tablespoons parsley and 1 tablespoon Parmesan. Turn off the slow cooker. Let stand, covered, for 5 to 10 minutes so the cheeses melt slightly.
per serving
calories 293
total fat 5.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.0 g
cholesterol 5 mg
sodium 309 mg
carbohydrates 47 g
fiber 11 g
sugars 11 g
protein 19 g
dietary exchanges: 2½ starch, 2 vegetable, 1½ lean meat
COOK'S TIP: Make a double recipe of the hummus so you'll have some to enjoy with baked whole-grain pita wedges or baby carrots.
COOK'S TIP: You can wait until about 45 minutes before the zucchini mixture has finished cooking to boil the noodles and make the hummus, if that works better with your schedule.
SLOW COOKING BONUS: If you prefer to use dried beans in this and other recipes, they cook up wonderfully in the slow cooker. Rinse and drain dried beans, sorting for stones and shriveled beans. If using kidney beans, boil them in water for 10 minutes to remove toxins that can cause intestinal distress (if you're using other beans, there's no need to boil them first). Put 1 to 2 cups of beans in a 3- to 4½-quart round or oval slow cooker (or make a bigger batch using a larger slow cooker). Pour in enough water to cover the beans by 2 inches. Cook, covered, on low for 6 to 8 hours or on high for 3 to 4 hours.
## savory lentil stew with polenta
This satisfying, hearty stew served over whole-grain polenta features fiber-rich lentils in a well-seasoned tomato sauce. The slow cooker makes it nearly effortless.
SERVES 6 | 1½ cups stew and ½ cup polenta per serving
STEW
1 28-ounce can no-salt-added crushed tomatoes, undrained
2 cups fat-free, low-sodium vegetable broth
1½ cups brown lentils, sorted for stones and shriveled lentils, rinsed, and drained
2 medium onions, sliced
2 medium ribs of celery, thinly sliced
2 medium carrots, diced
1 medium red bell pepper, diced
¼ cup dry-packed sun-dried tomatoes, thinly sliced
2 tablespoons no-salt-added tomato paste
3 medium garlic cloves, minced
1 teaspoon dried oregano, crumbled
1 tablespoon balsamic vinegar
POLENTA
4 cups water
1 cup cornmeal
In a 4- to 6-quart round or oval slow cooker, stir together all the stew ingredients except the vinegar. Cook, covered, on low for 6 to 7 hours or on high for 3 to 4 hours, or until the lentils are very tender.
About 30 minutes before serving time, prepare the polenta. In a large saucepan or stockpot, bring the water to a boil over high heat. Using a long-handled whisk, carefully whisk the water to create a swirl. Slowly pour the cornmeal in a steady stream into the swirl, whisking constantly. After all the cornmeal is added, reduce the heat and simmer for 15 to 20 minutes, or until the polenta is the desired consistency, stirring occasionally. Spoon the polenta into bowls.
Just before serving, stir the balsamic vinegar into the stew. Ladle the stew over the polenta.
per serving
calories 339
total fat 1.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 72 mg
carbohydrates 67 g
fiber 17 g
sugars 14 g
protein 18 g
dietary exchanges: 3 starch, 4 vegetable, 1 lean meat
## chayote squash and pepper casserole
The chayote (chai-OH-tay) squash is about the size and shape of a large pear and has a relatively neutral taste, so it blends nicely with ingredients that have a more assertive flavor, such as poblano peppers and Parmesan cheese.
SERVES 4 | ¾ cup per serving
Cooking spray
1 large poblano pepper, thinly sliced, or 1 medium green bell pepper, thinly sliced (see Cook's Tip)
1 cup diced onion
2 medium chayote squash, peeled, halved, pitted, and each half cut lengthwise into 4 wedges
1 tablespoon olive oil (extra virgin preferred)
1 teaspoon dried oregano, crumbled
½ teaspoon garlic powder
2 tablespoons whole-wheat panko (Japanese-style bread crumbs)
2 tablespoons shredded or grated Parmesan cheese
⅛ teaspoon salt
Lightly spray a 3- to 4½-quart round or oval slow cooker with cooking spray. In the slow cooker, make one layer each, in order, of the poblano, onion, and squash. Drizzle the oil over all. Sprinkle the oregano and garlic powder over all. Don't stir. Cook, covered, on low for 4½ hours or on high for 2½ hours, or until the squash is tender.
Meanwhile, in a small skillet, toast the panko over medium-high heat for 1 minute, or until beginning to brown, stirring constantly. Watch carefully so it doesn't burn. Transfer to a small bowl. Stir in the Parmesan and salt.
Gently stir together the poblano mixture. Sprinkle with the panko mixture. Let stand for 5 minutes before serving.
per serving
calories 90
total fat 4.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.5 g
cholesterol 2 mg
sodium 123 mg
carbohydrates 12 g
fiber 3 g
sugars 4 g
protein 3 g
dietary exchanges: 2 vegetable, 1 fat
## southwestern sweet potatoes
Not your run-of-the-mill mashed sweet potatoes, these offer a bit of tanginess and spiciness with the unexpected and exciting addition of lime and chipotle. Serve with Mini Meat Loaves or Pork Medallions with Mango Mojo, or enjoy them as a fuss-free side dish on Thanksgiving.
SERVES 4 | ½ cup per serving
1½ pounds sweet potatoes (about 2 large), cut into 2-inch cubes (about 4½ cups)
⅓ cup fat-free, low-sodium chicken broth or water
1 tablespoon firmly packed light brown sugar
½ teaspoon grated lime zest
1 tablespoon fresh lime juice
2 medium garlic cloves, minced
¼ to ½ teaspoon chipotle powder
⅛ teaspoon salt
Put the sweet potatoes in a 3- to 4½-quart round or oval slow cooker.
In a small bowl, stir together the remaining ingredients. Pour over the sweet potatoes. Cook, covered, on low for 5 to 6 hours or on high for 2½ to 3 hours, or until the sweet potatoes are very tender. Using a potato masher, mash the sweet potatoes to the desired consistency.
per serving
calories 149
total fat 0.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 174 mg
carbohydrates 35 g
fiber 5 g
sugars 13 g
protein 3 g
dietary exchanges: 2½ starch
# microwaving
chicken parmesan soup
chicken and bulgur salad with feta
caribbean snapper with peach salsa
trout with grape tomato relish
tuna with tomato-tarragon sauce
chicken with creamy arugula pesto
chicken with citrus-dijon sauce
15-minute turkey meat loaf
speedy stuffed spuds
quick and easy chili
black bean chili
risotto with edamame
broccoli with jalapeño and garlic
sugar snap peas with sweet-and-sour sauce
stuffed "baked" apples
buttermilk-oat pancakes with warm blueberry topping
Microwave a meal? In most kitchens, microwaves are used to reheat leftovers, pop popcorn, or heat frozen meals, but, yes, microwaves can actually cook food! Microwave cooking uses moist heat, making it an especially healthy way to prepare vegetables, fruits, and fish. That's because very little liquid is needed, so nutrients are retained. You can cook such a variety of healthy meals in a hurry using the microwave that you may never heat up your oven again. Meat loaf in 15 minutes? Try 15-Minute Turkey Meat Loaf. Homemade chicken soup in under 20 minutes? Give Chicken Parmesan Soup a try. Fish in less than five minutes? You'll see for yourself with Tuna with Tomato-Tarragon Sauce.
How do microwaves cook food so fast? Contrary to the popular misconception, microwaves don't cook food from the inside out. Rather, they penetrate the food from every direction so food cooks much faster than it would in a traditional oven. Another benefit of microwave cooking is that foods don't stick, so cleanup is easy.
TO MICROWAVE:
Cooking, warming, or thawing food with heat produced as microwaves that cause water molecules in food to vibrate.
Tools & Equipment Needed: Microwave oven*; microwaveable bowls, plates, glass casserole dishes, baking dishes, and pie pan
*The recipes that follow have been tested using a 1,000-watt microwave oven. Cooking times should be adjusted if yours has a higher or lower wattage. To check, look for a sticker on the doorjamb or the back of the microwave.
TIPS:
• If your microwave doesn't have a rotating plate, be sure to rotate food midway through the microwaving time for more even cooking and to eliminate cold spots where harmful bacteria can survive.
• Cover foods with a lid or microwaveable plastic wrap to trap steam and retain moisture. When the food is done, carefully uncover it away from you to prevent steam burns. If you use plastic wrap, poke a hole in the plastic to allow the steam to escape before removing the wrap.
• Add healthy sauces to microwaved foods such as Chicken with Creamy Arugula Pesto to make them look more attractive since the microwave oven doesn't brown food.
• To avoid both overcooking and undercooking meat and poultry, use a meat thermometer to check doneness. Remove the meat or poultry from the oven before inserting the instant-read thermometer. Insert the thermometer into the center, or thickest part, of the meat, making sure the thermometer doesn't touch bone or fat.
• See microwaving safety tips.
BEST FOODS FOR MICROWAVING
Seafood: Fish cooks quickly in the microwave and retains moisture, so it won't dry out. When cooking fish with skin, use a knife to slash the skin in a few places to minimize curling and shrinkage. For best results, choose fillets or steaks that are no thicker than 2 inches. Try Trout with Grape Tomato Relish or Caribbean Snapper with Peach Salsa.
Vegetables: Baked potatoes, such as Speedy Stuffed Spuds, cook in a fraction of the time they take in the oven. Steamed vegetables, such as Broccoli with Jalapeño and Garlic and Sugar Snap Peas with Sweet-and-Sour Sauce, are ideal for the microwave.
Fruits: Make your own version of a fast, healthy fruit "cobbler" by combining fresh or frozen bite-size pieces of fruits, such as banana, peach, or strawberry slices, and microwaving them on high until hot and soft. Then top with a bit of fat-free granola and a small scoop of fat-free frozen yogurt. Also enjoy Stuffed "Baked" Apples in less than 10 minutes!
Grains: You can cook grains, such as bulgur, oats, and rice, very quickly in the microwave. Try Chicken and Bulgur Salad with Feta and Buttermilk-Oat Pancakes with Warm Blueberry Topping. Risotto cooks more evenly and requires less stirring than it does on a stovetop, as in Risotto with Edamame.
## chicken parmesan soup
When you need a nourishing soup in short order, this entrée fits the bill. Brimming with chicken and fresh vegetables, it's best served with crusty whole-grain rolls so you can sop up every delectable drop.
SERVES 4 | 1½ cups per serving
12 ounces boneless, skinless chicken breasts, cut into ½-inch pieces
2 small zucchini, cut into ½-inch pieces
½ small onion, chopped
1 teaspoon olive oil
2 cups fat-free, low-sodium chicken broth
2 large tomatoes, peeled and diced
1 teaspoon dried oregano, crumbled
¼ teaspoon crushed red pepper flakes (optional)
⅛ teaspoon pepper (freshly ground preferred)
½ cup shredded or grated Parmesan cheese
¼ cup loosely packed chiffonade of fresh basil
In a 2-quart microwaveable casserole dish, stir together the chicken, zucchini, onion, and oil. Microwave, covered, on 100 percent power (high) for 6 minutes, stirring once halfway through (the chicken won't be done at this point).
Stir in the broth, tomatoes, oregano, red pepper flakes, and pepper. Microwave, covered, on 100 percent power (high) for 5 minutes. Stir. Microwave, covered, on 100 percent power (high) for 5 to 7 minutes, or until the chicken is no longer pink in the center and the vegetables are tender.
Just before serving, sprinkle with the Parmesan and basil.
per serving
calories 185
total fat 6.5 g
saturated fat 2.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.5 g
cholesterol 62 mg
sodium 308 mg
carbohydrates 7 g
fiber 2 g
sugars 4 g
protein 25 g
dietary exchanges: 1 vegetable, 3 lean meat
COOK'S TIP ON CHIFFONADES: To cut herbs or lettuce into a chiffonade, stack about 10 leaves in a neat pile. Roll up the pile lengthwise into a tight cylinder. Using a sharp knife, cut the cylinder crosswise to create thin strips.
## chicken and bulgur salad with feta
This Mediterranean-influenced salad holds its flavor well. It's great to "make and take" for lunch at work or a potluck supper.
SERVES 4 | 1½ cups per serving
Cooking spray
12 ounces boneless, skinless chicken breasts, all visible fat discarded, cut into bite-size pieces
2 cups hot water
1 cup uncooked instant, or fine-grain, bulgur
1 cup grape tomatoes, quartered
⅓ cup finely chopped red onion
1½ tablespoons olive oil (extra virgin preferred)
1 tablespoon finely chopped fresh rosemary
1 tablespoon grated lemon zest
2 medium garlic cloves, minced
⅛ teaspoon crushed red pepper flakes (optional)
⅛ teaspoon salt
½ cup crumbled low-fat feta cheese
Lightly spray a medium microwaveable bowl with cooking spray. Microwave the chicken, covered, on 100 percent power (high) for 2 minutes. Stir. Microwave on 100 percent power (high) for 1 minute, or until slightly pink in the center (the chicken will continue to cook while cooling). Drain well in a colander. Transfer to a serving bowl.
In the same medium microwaveable bowl, stir together the water and bulgur. Microwave, covered, on 100 percent power (high) for 7 to 8 minutes, or until the bulgur is just tender and the water is absorbed. Transfer to a fine-mesh sieve. Rinse with cold water to cool completely. Drain well. Return to the bowl. Fluff with a fork.
Stir the bulgur, tomatoes, onion, oil, rosemary, lemon zest, garlic, red pepper flakes, and salt together with the chicken. Gently stir in the feta.
per serving
calories 317
total fat 10.0 g
saturated fat 2.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 5.0 g
cholesterol 61 mg
sodium 435 mg
carbohydrates 32 g
fiber 8 g
sugars 3 g
protein 27 g
dietary exchanges: 2 starch, 1 vegetable, 3 lean meat
## caribbean snapper with peach salsa
Spicy-sweet peach salsa enhances the delicate flavor of red snapper in this summery dish.
SERVES 4 | 3 ounces fish and ½ cup salsa per serving
2 medium peaches, peeled and diced
½ medium red bell pepper, minced
2 medium shallots, minced
1 medium fresh jalapeño, seeds and ribs discarded, minced (see Cook's Tip)
1 tablespoon minced fresh cilantro
1½ teaspoons grated lime zest
1½ tablespoons fresh lime juice
4 red snapper fillets (about 4 ounces each), rinsed and patted dry
In a medium bowl, gently stir together the peaches, bell pepper, shallots, jalapeño, cilantro, lime zest, and lime juice.
Cut eight 12-inch squares of cooking parchment. Place 1 fish fillet in the center of 1 square. Top with ½ cup salsa. Place a second square over the fish. Fold the edges of both squares together several times to seal the packets. Repeat to create the remaining packets.
Transfer the packets to a microwaveable 8-inch square baking dish. Microwave on 100 percent power (high) for 8 minutes. Carefully remove the dish from the microwave. Let stand for 2 minutes. Using the tines of a fork, carefully open a packet away from you (to prevent steam burns). If the fish flakes easily when tested with a fork, carefully open the remaining packets and serve. If the fish isn't cooked enough, reclose the packet and microwave all the packets on 100 percent power (high) for 1 to 2 minutes.
per serving
calories 152
total fat 1.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 0.5 g
cholesterol 40 mg
sodium 51 mg
carbohydrates 11 g
fiber 2 g
sugars 7 g
protein 24 g
dietary exchanges: 1 fruit, 3 lean meat
COOK'S TIP ON CLEANING AND FRESHENING A MICROWAVE OVEN: In a 2-cup glass measuring cup, stir together 1 cup water and several lemon slices or 2 tablespoons of fresh lemon juice. Microwave on 100 percent power (high) for 3 to 4 minutes, or until the water is boiling. Let the cup stand inside the microwave for 10 minutes. Remove it and wipe the inside of the microwave with paper towels. Repeat the process if necessary.
## trout with grape tomato relish
Mild fish is topped with a relish highlighted by briny capers, bright parsley, and refreshing lemon zest. You can prepare the relish up to one day in advance.
SERVES 4 | 3 ounces fish and ¼ cup relish per serving
RELISH
⅔ cup grape tomatoes, diced
¼ cup finely chopped red onion
3 tablespoons capers, drained
2 tablespoons chopped Italian (flat-leaf) parsley
1 tablespoon olive oil (extra virgin preferred)
2 teaspoons grated lemon zest
Cooking spray
4 trout or other mild white fish fillets (about 4 ounces each), rinsed and patted dry
2 to 3 tablespoons fresh lemon juice
¼ teaspoon paprika
¼ teaspoon salt
¼ teaspoon pepper
In a small bowl, stir together the relish ingredients. Set aside.
Lightly spray a microwaveable glass casserole dish with a lid with cooking spray. Arrange the fish in a single layer in the dish, making sure that any thick pieces are closer to the edge of the dish. Spoon the lemon juice over the fish. In a small bowl, stir together the paprika, salt, and pepper. Sprinkle over the fish.
Microwave, covered, on 100 percent power (high) for 2 minutes. Let stand, covered, for 2 minutes. Carefully uncover the pan away from you (to prevent steam burns). If the fish flakes easily when tested with a fork, transfer to serving plates. If the fish isn't cooked enough, re-cover the dish and microwave on 100 percent power (high) for 1 minute. Let stand, covered, for 1 minute. Serve with the relish.
per serving
calories 182
total fat 7.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 4.0 g
cholesterol 67 mg
sodium 377 mg
carbohydrates 4 g
fiber 1 g
sugars 2 g
protein 24 g
dietary exchanges: 1 vegetable, 3 lean meat
## tuna with tomato-tarragon sauce
This time-saving recipe features a marinade that doubles as a sauce and keeps the tuna steaks moist while they're microwaved. The crunchy-juicy topping adds a nice contrast to the tangy sauce.
SERVES 4 | 3 ounces fish, 2 tablespoons sauce, and 2 tablespoons celery mixture per serving
½ cup no-salt-added tomato sauce
1 tablespoon chopped fresh tarragon
1 teaspoon bottled white horseradish
1 teaspoon Dijon mustard (lowest sodium available)
1 teaspoon fresh lemon juice
½ teaspoon paprika
¼ teaspoon salt
⅛ teaspoon pepper
4 tuna steaks (about 4 ounces each), about 1 inch thick, rinsed and patted dry
3 tablespoons diced celery
3 tablespoons diced green bell pepper
2 tablespoons diced tomato
In a 1½-quart microwaveable casserole dish, whisk together the tomato sauce, tarragon, horseradish, mustard, lemon juice, paprika, salt, and pepper. Add the fish, turning to coat. Cover and refrigerate for 10 minutes to 1 hour, turning occasionally.
Microwave, covered, on 100 percent power (high) for 4 minutes, or to the desired doneness.
Meanwhile, in a small bowl, stir together the celery, bell pepper, and tomato.
Transfer the fish to serving plates. Just before serving, drizzle the sauce over the fish. Sprinkle with the celery mixture.
per serving
calories 140
total fat 1.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 44 mg
sodium 235 mg
carbohydrates 4 g
fiber 1 g
sugars 2 g
protein 28 g
dietary exchanges: 3 lean meat
## chicken with creamy arugula pesto
Make any rushed weeknight special by topping moist microwaved chicken breasts with a yogurt-pesto sauce made with peppery arugula and ground almonds instead of the traditional basil and pine nuts.
SERVES 4 | 3 ounces chicken and 2 tablespoons pesto per serving
4 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded
2 tablespoons dry white wine (regular or nonalcoholic) or fat-free, low-sodium chicken broth
½ cup arugula
2 tablespoons unsalted almonds, dry-roasted
1 small garlic clove, chopped
2 tablespoons shredded or grated Parmesan cheese
1 tablespoon olive oil
½ cup fat-free plain Greek yogurt
Pepper to taste (freshly ground preferred)
Put the chicken in a microwaveable 8- or 9-inch round or square baking dish with a lid. Pour the wine over the chicken.
Microwave, covered, on 70 percent power (medium high) for 7 to 9 minutes, or until the chicken is no longer pink in the center. Remove from the microwave. Let stand for 5 minutes (the chicken will continue to cook).
Meanwhile, in a food processor or blender, process the arugula, almonds, and garlic until finely minced. Add the Parmesan and oil. Process until smooth. Transfer the pesto to a medium microwaveable bowl. Stir in the yogurt and pepper. Microwave on 40 percent power (medium low) for 2 to 3 minutes, stirring twice. Spoon over the chicken.
per serving
calories 212
total fat 9.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 5.0 g
cholesterol 74 mg
sodium 186 mg
carbohydrates 3 g
fiber 1 g
sugars 1 g
protein 29 g
dietary exchanges: 3½ lean meat
COOK'S TIP: This recipe makes extra pesto, which is also delicious with microwave-steamed vegetables such as broccoli, cauliflower, or zucchini.
## chicken with citrus-dijon sauce
Chicken comes out tender, juicy, and full of flavor when it's seasoned with fresh herbs and steamed on a bed of green onions. A tangy yogurt sauce tops it off.
SERVES 4 | 3 ounces chicken and 2 tablespoons sauce per serving
Cooking spray
8 medium green onions, ends trimmed
¼ cup fat-free, low-sodium chicken broth
1 tablespoon dry sherry or white wine vinegar
1 tablespoon chopped fresh parsley or 1 teaspoon dried parsley, crumbled
1 tablespoon chopped fresh sage or 1 teaspoon dried rubbed sage
1 tablespoon chopped fresh rosemary or 1 teaspoon dried rosemary, crushed
1 tablespoon chopped fresh thyme or 1 teaspoon dried thyme, crumbled
½ cup fat-free plain yogurt
1 tablespoon Dijon mustard (lowest sodium available)
1 teaspoon grated orange zest
1 tablespoon fresh orange juice
4 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded, flattened to ½-inch thickness
½ teaspoon paprika
¼ teaspoon salt
¼ teaspoon pepper (freshly ground preferred)
1 medium orange, cut into 8 wedges (optional)
Lightly spray a shallow microwaveable 1½-quart casserole dish with cooking spray.
Arrange the green onions in a single layer in the dish. Pour in the broth and sherry.
In a small bowl, stir together the parsley, sage, rosemary, and thyme. In a separate small bowl, whisk together the yogurt, mustard, orange zest, orange juice, and 1 tablespoon of the parsley mixture until combined. Cover and refrigerate until serving time.
Sprinkle the remaining parsley mixture over both sides of the chicken. Place the chicken on the green onions with the smooth side up. In a small bowl, stir together the paprika, salt, and pepper. Sprinkle over the top of the chicken.
Microwave, covered, on 100 percent power (high) for 8 to 9 minutes, or until the chicken is no longer pink in the center. Transfer to plates. Spoon the sauce over the chicken. Serve with the orange wedges.
per serving
calories 181
total fat 3.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 73 mg
sodium 392 mg
carbohydrates 8 g
fiber 2 g
sugars 5 g
protein 26 g
dietary exchanges: ½ other carbohydrate, 3 lean meat
## 15-minute turkey meat loaf
Even meat loaf can be made in the microwave, saving energy and time, and keeping your kitchen cool. Use the standing time to whip up Broccoli with Jalapeño and Garlic or Sugar Snap Peas with Sweet-and-Sour Sauce.
SERVES 6 | 1 slice per serving
Cooking spray
1 8-ounce can no-salt-added tomato sauce
1 tablespoon Worcestershire sauce (lowest sodium available)
2 teaspoons sugar
½ teaspoon salt
1 pound ground skinless turkey breast
1 cup chopped onion
1 medium green bell pepper, chopped
½ cup chopped Italian (flat-leaf) parsley
½ cup quick-cooking oatmeal
¼ cup flax seed meal
2 large egg whites
1 teaspoon dried thyme, crumbled
Lightly spray a microwaveable 9-inch pie pan with cooking spray.
In a small bowl, whisk together the tomato sauce, Worcestershire sauce, sugar, and salt.
In a large bowl, using your hands or a spoon, combine half the tomato sauce mixture with the remaining ingredients. Transfer to the pie pan. Shape the mixture into a 6-inch-wide ring with a 2-inch hole in the middle. Spread the remaining tomato sauce mixture over the meat loaf. Microwave, covered, on 100 percent power (high) for 8 to 10 minutes, or until the meat loaf registers 165°F on an instant-read thermometer and is no longer pink in the center. Let stand for 5 minutes before slicing.
per serving
calories 178
total fat 3.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 0.5 g
cholesterol 47 mg
sodium 263 mg
carbohydrates 15 g
fiber 4 g
sugars 5 g
protein 23 g
dietary exchanges: ½ starch, 2 vegetable, 3 lean meat
COOK'S TIP: Shaping the meat loaf into a ring allows it to cook more evenly in the microwave and keeps the edges from overcooking.
## speedy stuffed spuds
These southwestern-style studded spuds are filled with tender beef, fresh tomatoes, a generous amount of green onions, and sharp Cheddar cheese.
SERVES 4 | 1 stuffed potato per serving
4 medium red potatoes (about 6 ounces each)
Cooking spray
8 ounces extra-lean ground beef
1½ teaspoons chili powder
½ teaspoon ground cumin
⅜ teaspoon salt
1 cup diced tomatoes or quartered grape tomatoes
½ cup shredded low-fat sharp Cheddar cheese
3 medium green onions, finely chopped
¼ cup fat-free sour cream (optional)
Using a fork, pierce each potato in several places. Wrap each in a paper towel. Place on a large microwaveable plate. Microwave on 100 percent power (high) for 10 minutes, or until the tines of a fork inserted into each potato come out easily. Remove from the oven.
Lightly spray a microwaveable 9-inch pie pan with cooking spray. Crumble the beef into the pan. Microwave, covered, on 100 percent power (high) for 6 minutes, or until no longer pink in the center, stirring every 2 minutes. Drain in a colander. Return the beef to the pan. Stir in the chili powder, cumin, and salt. Gently stir in the tomatoes, Cheddar, and green onions.
Halve the potatoes lengthwise. Using a fork, fluff the pulp. Top with the beef mixture. Microwave on 100 percent power (high) for 2 minutes. Top with the sour cream.
per serving
calories 237
total fat 4.5 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 34 mg
sodium 404 mg
carbohydrates 31 g
fiber 5 g
sugars 4 g
protein 19 g
dietary exchanges: 2 starch, 2 lean meat
COOK'S TIP: Use red or Yukon gold potatoes if you prefer a moister potato. Use russets if you prefer a drier, flakier potato.
## quick and easy chili
This simple recipe is ready in minutes, and most of the ingredients can be found in any well-stocked pantry. The jícama topping adds a unique, slightly sweet crunch to this bowl of red.
SERVES 4 | 1½ cups per serving
Cooking spray
12 ounces extra-lean ground beef
½ medium green bell pepper, chopped
½ small onion, chopped
1 15.5-ounce can no-salt-added pinto beans, rinsed and drained
1 14.5-ounce can diced tomatoes, undrained
1 4-ounce can diced green chiles, drained
1 tablespoon chili powder
1 teaspoon ground cumin
1 teaspoon garlic powder
1 teaspoon dried oregano, crumbled
½ teaspoon smoked paprika
⅛ teaspoon salt
⅛ teaspoon pepper
½ cup chopped red onion
½ cup diced peeled jícama
½ cup shredded low-fat Cheddar cheese
Lightly spray a 2-quart microwaveable casserole dish with cooking spray. Crumble the beef into the dish. Add the bell pepper and onion. Microwave, covered, on 100 percent power (high) for 8 minutes, or until the beef is no longer pink in the center, stirring every 2 minutes to turn and break up the beef. Drain well in a colander. Return the beef mixture to the dish.
Stir in the beans, tomatoes with liquid, chiles, chili powder, cumin, garlic powder, oregano, paprika, salt, and pepper. Microwave, covered, on 100 percent power (high) for 10 minutes, or until the beans and vegetables are tender, stirring once halfway through.
Just before serving, sprinkle the chili with the red onion, jícama, and Cheddar.
per serving
calories 292
total fat 6.0 g
saturated fat 2.5 g
trans fat 0.3 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 50 mg
sodium 376 mg
carbohydrates 30 g
fiber 8 g
sugars 9 g
protein 30 g
dietary exchanges: 1 starch, 3 vegetable, 3 lean meat
COOK'S TIP ON JÍCAMA: When peeling jícama, be sure to remove the fibrous layer just under the skin. Peel until the flesh no longer looks stringy.
## black bean chili
This vegetarian chili requires very little prep and is ready in less than 30 minutes, but it still has that satisfying, long-simmered taste. To speed things up even more, buy pre-chopped onion.
SERVES 4 | 1 cup per serving
½ cup water
1 cup chopped onion
1 15.5-ounce can no-salt-added black beans, rinsed and drained
1 14.5-ounce can no-salt-added stewed tomatoes, undrained
1 4-ounce can chopped green chiles, undrained
1 tablespoon chili powder
2 teaspoons sugar
1½ teaspoons ground cumin
1 tablespoon olive oil (extra virgin preferred)
⅛ teaspoon salt
¾ cup shredded low-fat sharp Cheddar cheese
2 tablespoons finely chopped fresh jalapeño, seeds and ribs discarded (see Cook's Tip)
2 tablespoons chopped fresh cilantro
Put the water and onion in a large microwaveable bowl. Microwave, covered, on 100 percent power (high) for 5 minutes, or until the onion is soft. Stir in the beans, tomatoes with liquid, chiles with liquid, chili powder, sugar, and cumin. Microwave, covered, on 100 percent power (high) for 20 minutes, or until the onion is very soft. Remove from the oven. Stir in the oil and salt.
Meanwhile, in a small bowl, stir together the Cheddar, jalapeño, and cilantro. Sprinkle the chili with the Cheddar mixture.
per serving
calories 226
total fat 5.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 3.0 g
cholesterol 5 g
sodium 356 mg
carbohydrates 31 g
fiber 7 g
sugars 11 g
protein 13 g
dietary exchanges: 1½ starch, 2 vegetable, 1 lean meat
COOK'S TIP: Adding the oil after microwaving the chili provides another layer of flavor and helps the other flavors to blend.
## risotto with edamame
Risotto is notorious for requiring long cooking and continuous stirring. With this version, you need only stir every few minutes, giving your biceps a break.
SERVES 4 | 1½ cups per serving
¾ cup uncooked Arborio rice
1 small onion, chopped
1 teaspoon olive oil
3 cups fat-free, low-sodium vegetable broth
½ teaspoon dried thyme, crumbled
¼ teaspoon salt
⅛ teaspoon pepper (freshly ground preferred)
2 cups diced butternut squash
1½ cups frozen shelled edamame
1 cup frozen whole-kernel corn
4 cups baby spinach
¼ cup shredded or grated Parmesan cheese
In a shallow microwaveable 2-quart casserole dish with a lid, stir together the rice, onion, and oil. Microwave, covered, on 100 percent power (high) for 2 to 3 minutes, or until the onion is soft.
Remove the dish from the microwave. Carefully remove the lid away from you (to prevent steam burns). Stir in the broth, thyme, salt, and pepper. Microwave, covered, on 100 percent power (high) for 5 minutes, or until simmering.
Stir in the squash and edamame. Microwave, covered, on 100 percent power (high) for 15 minutes, stirring once every 5 minutes.
Stir in the corn. Microwave, covered, on 100 percent power (high) for 5 minutes. Stir in the spinach and Parmesan. Microwave, covered, on 100 percent power (high) for 1 minute, or until the rice is tender and the spinach is wilted.
per serving
calories 319
total fat 5.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 4 mg
sodium 281 mg
carbohydrates 54 g
fiber 7 g
sugars 6 g
protein 16 g
dietary exchanges: 3½ starch, 1 lean meat
COOK'S TIP: Be careful when removing a covered dish from the microwave. Always remove the lid away from you to prevent steam burns.
COOK'S TIP ON ARBORIO RICE: Arborio rice is more absorbent and has a higher starch content than other types of rice, yielding a flavorful and creamy risotto.
## broccoli with jalapeño and garlic
Tender-crisp broccoli tossed with garlic, jalapeño, cumin, and lime juice is a spicy, smoky complement to almost any Tex-Mex or southwestern entrée, including Baja Fish Tacos or Citrus-Cilantro Salmon. If you like a lot of heat, leave the ribs and some of the seeds in the jalapeño when you make this dish.
SERVES 4 | heaping ½ cup per serving
4 cups broccoli florets
2 teaspoons olive oil
1 medium fresh jalapeño, halved lengthwise, seeds and ribs discarded, thinly sliced
2 medium garlic cloves, thinly sliced
⅛ teaspoon ground cumin
2 teaspoons fresh lime juice
⅛ teaspoon salt
Put the broccoli in a medium microwaveable bowl. Microwave, covered, on 100 percent power (high) for 2 minutes, or until just tender-crisp. Remove from the microwave.
Meanwhile, in a medium nonstick skillet, heat the oil over medium-high heat, swirling to coat the bottom. Cook the jalapeño and garlic for 3 minutes, or until the garlic is lightly browned and the jalapeño begins to soften, stirring frequently. Watch carefully so the garlic doesn't burn.
Stir the cumin into the jalapeño mixture. Cook for 1 minute, stirring constantly. Stir in the broccoli, lime juice, and salt.
per serving
calories 44
total fat 2.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 0 mg
sodium 92 mg
carbohydrates 5 g
fiber 2 g
sugars 0 g
protein 2 g
dietary exchanges: 1 vegetable, ½ fat
COOK'S TIP ON HANDLING HOT CHILES: Hot chiles contain oils that can burn your skin, lips, and eyes. Wear plastic gloves or wash your hands thoroughly with warm, soapy water immediately after handling them.
## sugar snap peas with sweet-and-sour sauce
In just a couple of minutes, you can enjoy a bright, tasty side dish that's perfect to serve with grilled flank steak or stir-fried chicken tenders.
SERVES 4 | ½ cup peas and 2 tablespoons sauce per serving
8 ounces sugar snap peas, trimmed
3 tablespoons water
¼ cup apricot all-fruit spread
3 tablespoons fresh orange juice
1 tablespoon cider vinegar
½ teaspoon cornstarch
1 teaspoon sesame seeds, dry-roasted (optional)
In a medium microwaveable bowl, stir together the peas and water.
In a small microwaveable bowl, whisk together the remaining ingredients except the sesame seeds until the cornstarch is dissolved.
Microwave both the peas and sauce, both covered, on 100 percent power (high) for 1½ minutes, or until the peas are cooked and the sauce has thickened and is heated through. Drain the peas well in a colander. Transfer the peas to serving dishes.
Drizzle with the sauce. Sprinkle with the sesame seeds.
per serving
calories 72
total fat 0.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 1 mg
carbohydrates 17 g
fiber 2 g
sugars 11 g
protein 2 g
dietary exchanges: ½ fruit, 1 vegetable
## stuffed "baked" apples
If you're craving a healthy dessert, look no further than this easy recipe, which replicates the warm flavors of oven-baked apples.
SERVES 4 | 1 stuffed apple per serving
2 tablespoons light brown sugar
2 tablespoons sweetened dried cranberries
2 tablespoons golden raisins
1 teaspoon ground cinnamon
1 teaspoon olive oil
¼ teaspoon ground nutmeg
¼ teaspoon ground ginger
¼ teaspoon ground allspice
4 small Granny Smith, Fuji, or Gala apples, halved, cores discarded
½ cup fresh orange juice
2 tablespoons chopped walnuts, dry-roasted
In a small bowl, stir together the brown sugar, cranberries, raisins, cinnamon, oil, nutmeg, ginger, and allspice.
Put the apples in a shallow 1-quart microwaveable baking dish with a lid. Spoon the stuffing into the apples. Pour the orange juice around the apples.
Microwave, covered, on 100 percent power (high) for 6 to 7 minutes, or until the apples are soft.
Carefully transfer the apples to serving plates, leaving the juices in the dish. Microwave the remaining juices, uncovered, on 100 percent power (high) for 2 to 3 minutes, or until the mixture is reduced by half (to about ¼ cup).
Just before serving, drizzle the juice mixture over the apples. Sprinkle with the walnuts.
per serving
calories 182
total fat 4.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 1.0 g
cholesterol 0 mg
sodium 5 mg
carbohydrates 39 g
fiber 5 g
sugars 30 g
protein 1 g
dietary exchanges: 2½ fruit, 1 fat
MICROWAVING BONUS: To dry-roast nuts in the microwave, spread them in a single layer on a microwaveable plate. Microwave on 100 percent power (high) for 1 to 4 minutes, or until the nuts are fragrant, stirring once every minute. Nuts can burn quickly, so check them frequently.
## buttermilk-oat pancakes with warm blueberry topping
Think you don't have time to make a homemade breakfast on weekday mornings? Think again. Just prepare the pancake batter ahead of time and microwave individual portions whenever you want. For those in the family who don't like pancakes or are watching their carbs, see the Microwaving Bonus to make an individual omelet instead.
SERVES 8 | 1 pancake and 2 tablespoons topping per serving
TOPPING
1½ cups frozen blueberries (about 8 ounces)
2 tablespoons water
1 tablespoon light brown sugar
1 teaspoon grated lemon zest
1 tablespoon fresh lemon juice
2 teaspoons cornstarch
1 teaspoon vanilla extract
PANCAKES
1 cup low-fat buttermilk
½ cup uncooked quick-cooking oatmeal and 2 tablespoons plus 2 teaspoons uncooked quick-cooking oatmeal, divided use
1 large egg
2 tablespoons canola or corn oil
¾ cup whole-wheat pastry flour
2 teaspoons light brown sugar
1 teaspoon baking powder
½ teaspoon baking soda
¼ teaspoon ground cinnamon
¼ teaspoon ground nutmeg
Cooking spray
In a medium microwaveable bowl, stir together all the topping ingredients. Microwave, covered, on 100 percent power (high) for 2 minutes. Stir. Microwave, covered, on 100 percent power (high) for 2 minutes. If needed, microwave for 1-minute intervals until the mixture has thickened and is heated through, stirring after each interval. If making the topping in advance, cover and refrigerate for up to three days. To reheat, microwave, covered, on 100 percent power (high) for 30 to 40 seconds, or until heated through.
In a medium bowl, whisk together the buttermilk, ½ cup oatmeal, the egg, and oil. Let stand for 5 minutes.
Meanwhile, in a separate medium bowl, stir together the flour, brown sugar, baking powder, baking soda, cinnamon, and nutmeg.
Stir the buttermilk mixture into the flour mixture until the batter is just moistened but no flour is visible. Don't overmix; the batter may be slightly lumpy. If making the batter in advance, cover and refrigerate for up to three days.
For each pancake, lightly spray a small microwaveable plate with cooking spray. Ladle ¼ cup batter onto the plate, slightly spreading the mixture with the ladle. Sprinkle 1 teaspoon of the remaining 2 tablespoons plus 2 teaspoons oatmeal over the pancake. Microwave on 100 percent power (high) for 55 seconds to 1 minute, or until a wooden toothpick inserted in the center comes out clean. Spoon the topping over the pancake. Repeat with the remaining batter, oatmeal, and topping.
per serving
calories 150
total fat 5.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 25 mg
sodium 171 mg
carbohydrates 22 g
fiber 3 g
sugars 7 g
protein 4 g
dietary exchanges: 1 starch, ½ fruit, 1 fat
MICROWAVING BONUS: To make a coffee mug omelet, lightly spray a microwaveable mug with cooking spray. In the mug, stir together 4 egg whites (or ¼ cup egg substitute), 3 tablespoons diced vegetables (such as bell pepper, onion, and mushroom), 2 tablespoons shredded spinach, and 1 tablespoon low-fat Cheddar or feta cheese. Microwave, covered, on 100 percent power (high) for 1 minute. Stir. Microwave on 100 percent power (high) for 1 to 1½ minutes, or until the egg whites are set.
# blending
spinach and artichoke dip
edamame dip
white bean and roasted red bell pepper hummus
butternut squash and apple soup
minted pea soup with yogurt swirl
yogurt gazpacho
creamy tomato-basil soup
greek goddess salad dressing
pesto
roasted bell pepper and garlic sauce
very berry yogurt parfaits
almond, kale, and blueberry smoothies
orange-apricot smoothies
cherry-berry slush
peanut butter and banana "ice cream"
strawberry granita
You may use your blender or food processor only when you want to whip up a frozen drink, but it can also help you easily make healthy snacks, soups, sauces, salad dressings, and desserts. Blending can be an ideal technique to encourage you or your children to increase fruit and vegetable consumption because it transforms foods that are unfamiliar or that you may have avoided. And unlike juicing, blending the whole fruit or vegetable retains the fiber and nutrient content. Because blending compacts the ingredients so well, you can pack a lot of different healthy foods into one serving, maximizing the variety of nutrients you're consuming, such as with Cherry-Berry Slush, in which you get the health benefits of three different fruits—and carrot. In Almond, Kale, and Blueberry Smoothies, you combine not only fruits and a vegetable but also dairy and nuts.
Not crazy about the texture of raw shelled peas or tofu? Try Minted Pea Soup with Yogurt Swirl or Creamy Tomato-Basil Soup. Looking for a way to jazz up plain carrot and celery sticks for an office or after-school snack? Whip up Edamame Dip or White Bean and Roasted Red Bell Pepper Hummus. Need a fast dinner? While you're boiling some whole-wheat pasta or sautéing chicken breasts, make Pesto or Roasted Bell Pepper and Garlic Sauce to put on either one—or both. Craving something to satisfy your sweet tooth? How about Peanut Butter and Banana "Ice Cream"?
Blending is also fast, requires no heat, and allows easy cleanup. Just throw a few ingredients into your appliance, flip a switch for a few minutes (or, in some cases, only seconds), and enjoy a medley of whole-food goodness. With such fast results, there's no need to let this versatile kitchen appliance sit idle on your countertop.
TO BLEND:
Using an appliance with blades to combine two or more ingredients to achieve a particular flavor or quality.
Tools & Equipment Needed: Blender or food processor, rubber spatula
TIPS:
• Never operate the blender without the lid. Even the smallest amount of food can create quite a mess if the top isn't secured.
• Regardless of how snug the lid is, you should hold it down while the blender is operating.
• Always leave room for the contents to expand—at least one-third capacity and more for very thin or hot liquids.
• Cut vegetables and other foods into pieces to enable them to circulate around the blade.
• When making smoothies or other cold drinks that call for ice, adding it last can help avoid a watery drink. If you use frozen fruit, you may not need as much ice.
• See safety tips for blending (including important information on blending hot liquids).
## spinach and artichoke dip
This dip is delicious with crisp vegetables or crunchy baked whole-wheat pita wedges. For a real treat, serve it warm. It's best enjoyed the day you make it; it tends to get watery when refrigerated too long.
SERVES 10 | ¼ cup per serving
2 cups baby spinach or 10 ounces frozen chopped spinach, thawed and squeezed dry
12 ounces frozen artichoke hearts, thawed and drained
1 cup fat-free plain Greek yogurt
½ cup coarsely chopped green onions
3 tablespoons low-fat cream cheese
1 tablespoon shredded Parmesan-Asiago cheese blend
1 teaspoon minced or crushed garlic
In a food processor or blender, process all the ingredients until almost smooth but slightly chunky. Serve immediately or cover and refrigerate for 1 to 3 hours to serve chilled.
per serving
calories 45
total fat 1.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 3 mg
sodium 60 mg
carbohydrates 5 g
fiber 3 g
sugars 1 g
protein 4 g
dietary exchanges: 1 vegetable
COOK'S TIP: To serve warm, preheat the oven to 350°F. Spoon the dip into a large ramekin or small casserole dish. Bake for 10 to 15 minutes, or until the dip is heated through.
COOK'S TIP ON FROZEN SPINACH: Use a potato ricer to easily and thoroughly squeeze the moisture out of frozen spinach.
## edamame dip
This protein-rich dip is ideal as an afternoon pick-me-up snack with a selection of fresh vegetables. The Asian flavors pair especially well with sugar snap peas or strips of red bell pepper.
SERVES 4 | ¼ cup per serving
1½ cups frozen shelled edamame, thawed
½ cup fat-free plain Greek yogurt
2 tablespoons coarsely chopped fresh cilantro
1½ tablespoons fresh lime juice
1 tablespoon soy sauce (lowest sodium available)
2 teaspoons light brown sugar
2 teaspoons toasted sesame oil
½ teaspoon garlic powder
¼ teaspoon pepper
In a food processor or blender, process the ingredients for 30 seconds, or until smooth. Serve immediately or cover and refrigerate for up to five days.
per serving
calories 140
total fat 6.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 3.0 g
monounsaturated fat 1.5 g
cholesterol 0 mg
sodium 117 mg
carbohydrates 11 g
fiber 4 g
sugars 5 g
protein 10 g
dietary exchanges: ½ starch, 1 lean meat, ½ fat
## white bean and roasted red bell pepper hummus
Roasted garlic adds a delectably nutty flavor to this creamy hummus, while roasted red bell peppers lend color and a sweet smokiness. Served with plenty of crunchy raw veggies, this spread makes an unusual side dish at lunch or a satisfying snack anytime.
SERVES 4 | 3 tablespoons hummus and ½ cup vegetables per serving
HUMMUS
½ 15.5-ounce can no-salt-added navy beans, rinsed and drained
2 tablespoons chopped roasted red bell peppers, drained if bottled
2 tablespoons fat-free sour cream
1½ teaspoons cider vinegar
½ teaspoon dried oregano, crumbled
½ teaspoon bottled minced roasted garlic
¼ teaspoon liquid smoke (optional)
1½ teaspoons olive oil (extra virgin preferred)
2 cups vegetables, such as baby carrots, sugar snap peas, sliced red bell peppers, sliced cucumbers, or a combination
In a food processor or blender, process the hummus ingredients except the oil until the desired consistency. Transfer to a small bowl. Stir in the oil. Serve at room temperature with the vegetables or cover and refrigerate for up to two days.
per serving
calories 84
total fat 2.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 1.0 g
cholesterol 1 mg
sodium 24 mg
carbohydrates 13 g
fiber 3 g
sugars 4 g
protein 4 g
dietary exchanges: ½ starch, 1 vegetable
COOK'S TIP: Store unused beans in the refrigerator for up to two days or freeze them in an airtight container for up to one month. Or just use the full can and double the recipe.
## butternut squash and apple soup
Nothing says fall has arrived better than a bowlful of this velvety soup. Onion and garlic add a savory touch that highlights the sweetness of the squash and apple, while just a bit of cayenne gives a warm finish.
SERVES 6 | 1 cup per serving
1 tablespoon canola or corn oil
1 medium onion, chopped
1 medium garlic clove, minced
3 cups fat-free, low-sodium chicken or vegetable broth
24 ounces cubed butternut or other winter squash
1 cup unsweetened apple juice
1 medium Golden Delicious apple, peeled and diced
¼ teaspoon ground nutmeg
¼ teaspoon salt
Pinch of cayenne
1 teaspoon fresh lemon juice
In a stockpot, heat the oil over medium heat, swirling to coat the bottom. Cook the onion for 5 minutes, or until soft, stirring frequently.
Stir in the garlic. Cook for 2 minutes, or until the garlic is fragrant but hasn't begun to brown.
Stir in the remaining ingredients except the lemon juice. Bring to a simmer, still over medium heat. Reduce the heat and simmer for 20 minutes so the flavors blend, stirring occasionally.
In a food processor or blender (vent the blender lid), process the soup in batches until smooth. Carefully return the soup to the pot. Stir in the lemon juice. Cook over medium heat for 3 minutes, or until hot, stirring occasionally.
per serving
calories 118
total fat 2.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 0 mg
sodium 117 mg
carbohydrates 24 g
fiber 3 g
sugars 11 g
protein 3 g
dietary exchanges: 1 ½ fruit, ½ fat
COOK'S TIP ON BLENDING HOT LIQUIDS: Be careful when blending hot liquids. Venting the blender lid prevents heat and steam from popping off the lid. Most blender lids have a center section that can be removed. You can even place a kitchen towel over the opening. Begin blending at the lowest speed and increase to the desired speed, holding the lid down firmly. If you have an immersion, or handheld, blender, you can use it instead.
minted pea soup with yogurt swirl
## minted pea soup with yogurt swirl
Sweet green peas and fresh mint are a perfect match in this dish. A flourish of creamy yogurt contrasts beautifully with the vibrant green soup.
SERVES 4 | 1 cup per serving
16 ounces frozen green peas, thawed
1 cup fat-free, low-sodium vegetable broth and 1½ cups fat-free, low-sodium vegetable broth, divided use
2 tablespoons all-purpose flour
1 medium garlic clove
8 medium fresh mint leaves
¼ teaspoon salt
⅛ teaspoon pepper
¼ cup fat-free plain yogurt
1 small lime, cut into 4 wedges
In a food processor or blender, pulse the peas, 1 cup broth, the flour, and garlic 5 or 6 times, or until the peas are slightly broken up. Process the mixture for 1 minute, or until slightly chunky. Add the mint, salt, and pepper. Process for 10 seconds, or until the mint is finely chopped.
In a medium saucepan, stir together the pea mixture and the remaining 1½ cups broth. Bring to a simmer over medium-high heat. Cook for 2 minutes, or until the soup thickens, stirring occasionally. Reduce the heat to medium. Cook for 10 minutes, stirring occasionally. Remove from the heat.
Just before serving, spoon 1 tablespoon yogurt onto each serving of soup. Using a wooden toothpick, gently pull it through the yogurt to create a swirl or design of your choice. Serve with the lime wedges.
per serving
calories 107
total fat 0.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 186 mg
carbohydrates 18 g
fiber 7 g
sugars 4 g
protein 7 g
dietary exchanges: 1 starch, ½ lean meat
## yogurt gazpacho
Try our creamy version of this popular cold soup. It makes a protein-packed lunch or refreshing appetizer in summer, when fresh tomatoes are at their finest.
SERVES 5 | 1 cup per serving
4 cups fat-free plain Greek yogurt
2 medium ripe tomatoes, quartered
3 medium green onions, quartered
¼ cup picante sauce (lowest sodium available)
⅛ teaspoon garlic powder
Coarsely chopped fresh cilantro to taste
In a food processor or blender, process all the ingredients until almost smooth, but with some texture.
per serving
calories 115
total fat 0.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 126 mg
carbohydrates 11 g
fiber 1 g
sugars 10 g
protein 16 g
dietary exchanges: 1 fat-free milk, 1 lean meat
## creamy tomato-basil soup
This soup has all the flavor and creamy texture you love without all the saturated fat—and with a punch of protein from tofu and beans.
SERVES 4 | 1½ cups per serving
1 15.5-ounce can no-salt-added Great Northern beans, rinsed and drained
1 14.5-ounce can no-salt-added diced tomatoes, undrained
12 ounces light soft tofu, drained, patted dry, and cut into 1-inch pieces
2 tablespoons no-salt-added tomato paste
1 medium garlic clove, peeled
½ cup loosely packed fresh basil and ¼ cup loosely packed fresh basil, rolled and cut into thin strips, divided use
1 teaspoon onion powder
¼ teaspoon salt
¼ teaspoon pepper (freshly ground preferred)
¼ teaspoon crushed red pepper flakes (optional)
½ cup fat-free, low-sodium chicken or vegetable broth
½ cup 100% carrot juice
In a food processor or blender, pulse the beans, tomatoes with liquid, tofu, tomato paste, and garlic 5 or 6 times, or until the beans, tomatoes, and garlic are finely chopped. Using a rubber spatula, scrape the side. Process for 1 minute, or until smooth, scraping the side once halfway through.
Add ½ cup basil, the onion powder, salt, pepper, and red pepper flakes. Process for 15 to 20 seconds, or until the basil is chopped. Pour into a medium saucepan. Stir in the broth and carrot juice. Bring to a simmer over medium-high heat. Reduce the heat and simmer, partially covered, for 5 to 6 minutes, or until the soup is heated through.
Just before serving, garnish with the remaining ¼ cup basil.
per serving
calories 175
total fat 2.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 298 mg
carbohydrates 27 g
fiber 8 g
sugars 7 g
protein 13 g
dietary exchanges: 1 starch, 2 vegetable, 1½ lean meat
## greek goddess salad dressing
Greek yogurt updates Green Goddess dressing, which was created in 1923 at a San Francisco hotel and named after a hit play of the time. This dressing gets its beautiful hue from parsley and dillweed, with extra flavor from cucumber and green onion.
SERVES 4 | 2 tablespoons per serving
⅓ cup fat-free plain Greek yogurt
¼ cup peeled, seeded, and chopped cucumber
2 tablespoons coarsely chopped fresh parsley
2 teaspoons chopped fresh dillweed or ¼ teaspoon dried dillweed, crumbled
1 medium green onion, cut into 1-inch pieces
1 teaspoon fresh lemon juice
1 teaspoon white wine vinegar
¼ teaspoon garlic powder
¼ teaspoon sugar
⅛ teaspoon salt
⅛ teaspoon pepper
In a food processor or blender, process all the ingredients, scraping the side as necessary, until almost smooth.
per serving
calories 17
total fat 0.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 83 mg
carbohydrates 2 g
fiber 0 g
sugars 1 g
protein 2 g
dietary exchanges: Free
## pesto
This versatile sauce makes an excellent topping for pasta or baked potatoes. Try stirring it into fat-free Greek yogurt to make a dip. To change the flavor of this pesto, substitute fresh cilantro for the basil.
SERVES 16 | 2 tablespoons per serving
2 cups loosely packed fresh basil
½ cup pine nuts or walnuts, dry-roasted
⅓ cup freshly grated Parmesan cheese
⅓ cup olive oil
1 medium garlic clove
¼ to ½ cup fat-free, low-sodium chicken or vegetable broth (optional)
In a food processor or blender, process all the ingredients except the broth until smooth, occasionally scraping down the side. If the mixture doesn't move during processing, slowly drizzle in the broth to loosen it.
per serving
calories 69
total fat 7.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 4.0 g
cholesterol 2 mg
sodium 27 mg
carbohydrates 1 g
fiber 0 g
sugars 0 g
protein 2 g
dietary exchanges: 1½ fat
COOK'S TIP: Pesto can be made well in advance and refrigerated or frozen in an airtight container. Or, spoon measured portions into an ice cube tray and freeze. When the pesto is frozen, transfer the cubes to a resealable plastic bag and return to the freezer.
COOK'S TIP ON DRY-ROASTING NUTS OR SEEDS IN THE OVEN: To dry-roast a large amount of nuts or seeds at one time, place them in a shallow baking dish. Roast them at 350°F for 10 to 15 minutes, stirring occasionally. You can freeze them in an airtight container or resealable plastic freezer bag after cooling so they can be ready at a moment's notice. You don't even need to thaw them before using them.
## roasted bell pepper and garlic sauce
This very versatile sauce of roasted bell peppers and fresh garlic has a hint of smoky heat from the chipotle pepper and cumin. Use it to perk up grilled or steamed entrées and vegetables. It can be served at room temperature or heated.
SERVES 4 | ¼ cup per serving
6 ounces roasted red bell peppers, drained if bottled
1 medium chipotle pepper canned in adobo sauce
2 teaspoons adobo sauce (from chipotle peppers canned in adobo sauce)
2 teaspoons balsamic vinegar
1 medium garlic clove
⅛ teaspoon ground cumin
2 tablespoons olive oil (extra virgin preferred)
In a food processor or blender, process all the ingredients except the oil until smooth. With the motor still running, slowly drizzle in the oil.
To serve hot, pour the sauce into a small saucepan. Cook over medium heat for 2 to 3 minutes, or until just heated.
per serving
calories 83
total fat 7.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 5.0 g
cholesterol 0 mg
sodium 181 mg
carbohydrates 4 g
fiber 0 g
sugars 1 g
protein 0 g
dietary exchanges: 1 vegetable, 1½ fat
## very berry yogurt parfaits
This parfait combines sweet fresh fruit with crunchy fiber-rich cereal and plenty of protein. Prepare the tofu mixture in advance, then assemble the parfaits whenever you're ready.
SERVES 4 | 1 parfait per serving
12 ounces light soft tofu, drained and patted dry
1 cup raspberries
6 ounces fat-free plain Greek yogurt
2 tablespoons all-fruit raspberry spread
1 tablespoon honey
2 cups blueberries, blackberries, sliced hulled strawberries, or sliced bananas
1 cup high-fiber cereal
In a blender, process the tofu, raspberries, yogurt, raspberry spread, and honey for 20 to 30 seconds, or until smooth, stirring once halfway through. In each parfait glass, layer the ingredients as follows: ¼ cup blueberries, ¼ cup tofu mixture, and 2 tablespoons cereal. Repeat the layers.
per serving
calories 178
total fat 2.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 0.5 g
cholesterol 0 mg
sodium 112 mg
carbohydrates 39 g
fiber 12 g
sugars 17 g
protein 11 g
dietary exchanges: 1 starch, 1½ fruit, 1 lean meat
## almond, kale, and blueberry smoothies
Blueberries combined with kale create a brilliant purple drink that is packed with nutrition; it's sure to please adults and kids alike.
SERVES 2 | 1 cup per serving
¾ cup unsweetened vanilla almond milk
2 tablespoons slivered almonds, dry-roasted
1 cup fresh or frozen blueberries
⅔ cup coarsely chopped kale, any large stems discarded
½ cup fat-free plain Greek yogurt
½ cup ice cubes
⅓ cup sliced ripe banana (½ small banana)
In a food processor or blender, process the almond milk and almonds until smooth. Add the remaining ingredients. Process until smooth.
per serving
calories 160
total fat 5.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.0 g
cholesterol 0 mg
sodium 100 mg
carbohydrates 23 g
fiber 4 g
sugars 13 g
protein 8 g
dietary exchanges: 1 fruit, ½ fat-free milk, ½ fat
COOK'S TIP: Blending the almond milk and almonds together before adding the other ingredients yields a smoother finished product.
## orange-apricot smoothies
Even if you are lactose intolerant, you can still enjoy this rich and creamy smoothie. Bananas, orange juice concentrate, and apricot nectar give it natural sweetness.
SERVES 6 | 1 scant cup per serving
12 ounces frozen 100% orange juice concentrate, broken into chunks
12 ounces 100% apricot nectar
1½ cups water
2 medium bananas
½ teaspoon vanilla extract
In a food processor or blender, process all the ingredients until smooth.
per serving
calories 182
total fat 0.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 8 mg
carbohydrates 44 g
fiber 2 g
sugars 38 g
protein 3 g
dietary exchanges: 3 fruit
## cherry-berry slush
This fruit-filled drink gets its extra fiber and body, along with a boost of vitamins, from carrot.
SERVES 4 | 1 cup per serving
1¼ cups 100% cranberry juice
8 ounces frozen unsweetened dark sweet cherries
6 ounces frozen unsweetened raspberries
1 medium carrot, cut into chunks or shredded
1 teaspoon grated orange zest
1 teaspoon vanilla extract
2 teaspoons sugar (optional)
1 cup ice cubes
In a food processor or blender, process all the ingredients except the ice cubes until smooth. Add the ice cubes. Process until smooth.
per serving
calories 111
total fat 0.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 14 mg
carbohydrates 28 g
fiber 4 g
sugars 21 g
protein 1 g
dietary exchanges: 2 fruit
COOK'S TIP: You can store any leftover slush in the freezer. To serve it as a drink, let the mixture thaw at room temperature for 15 minutes. Or use a fork to scrape the surface of the frozen slush and serve it as a granita for dessert.
## peanut butter and banana "ice cream"
This cold and creamy frozen treat contains no dairy products. Freezing the bananas and then giving them a whirl in a food processor gives them a consistency similar to soft-serve ice cream. Keep some banana slices in your freezer so you can prepare this dish whenever the mood strikes. For a more adult version and a softer texture, use the optional vodka.
SERVES 4 | scant ½ cup per serving
4 medium ripe bananas, cut crosswise into ¼-inch slices
2 tablespoons finely chopped unsalted peanuts, dry-roasted
1½ tablespoons low-sodium peanut butter (smooth or crunchy)
1 to 3 tablespoons vodka (optional)
1 tablespoon honey
1 teaspoon vanilla extract
¼ teaspoon ground cinnamon
¼ teaspoon freshly grated or ground nutmeg
Freeze the banana slices for at least 3 to 4 hours to overnight, or until solid.
In a food processor, process the bananas until they are the consistency of soft-serve ice cream.
Add the remaining ingredients. Process until smooth and creamy. Serve immediately or freeze in an airtight freezer container. If frozen, let stand at room temperature for about 5 minutes to thaw slightly before serving.
per serving
calories 187
total fat 5.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 0 mg
sodium 3 mg
carbohydrates 34 mg
fiber 4 g
sugars 20 g
protein 4 g
dietary exchanges: 2 fruit, 1 fat
COOK'S TIP: Adding the vodka will keep the "ice cream" a little softer when it freezes.
## strawberry granita
A granita is a semi-frozen dessert made with water, often sugar or a simple syrup, fruit, and a liquid that adds flavor, such as juice, coffee, tea, or wine. This sweet treat is deceptively creamy although it contains no dairy or added fat. Store a batch in the freezer for a dessert that's ready when you are.
SERVES 6 | ½ cup per serving
1 quart strawberries, hulled
½ cup all-fruit strawberry spread
1 tablespoon fresh lemon juice
In a food processor or blender, process the strawberries until smooth. Stir in the strawberry spread and lemon juice. Strain through a fine-mesh sieve into an 8-inch square pan. Freeze for about 1 hour, or until slushy.
Return the mixture to the food processor. Process until smooth and creamy. Return to the pan and freeze again until solid.
Remove the pan from the freezer. Let stand at room temperature for 15 minutes. Using a fork, scrape the granita into dessert dishes or small bowls.
per serving
calories 85
total fat 0.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 1 mg
carbohydrates 21 g
fiber 2 g
sugars 15 g
protein 1 g
dietary exchanges: 1½ fruit
# grilling
corn and black bean salad
shrimp and watermelon salad with cucumber-lime vinaigrette
island halibut with papaya and strawberry salsa
mediterranean tuna kebabs
baja fish tacos
chicken with red raspberry glaze
smoky chicken and vegetable lasagna
teriyaki chicken and vegetable kebabs
flank steak with chimichurri sauce
pork medallions with mango mojo
seitan stacks
mushroom-zucchini nachos with smoky crema
honey-balsamic brussels sprouts with goat cheese
beets with orange gremolata
chai-spiced pineapple spears
Grilling is an easy way to cook quick, healthy meals. Grilled foods cook fast so they retain their moisture and excess unhealthy fats drip away into the grill. The intense, direct heat provides a crisp, browned crust and a moist, tender interior, and the quick cooking lets you get dinner on the table in short order. You can use the surface of the grill to cook both your entrée and side dishes—and even your dessert.
Although lean meats and poultry are popular grilling choices, you can also use this healthy cooking technique to incorporate a variety of food groups into your meals, including seafood, vegetables, and fruit such as Island Halibut with Papaya and Strawberry Salsa or Honey-Balsamic Brussels Sprouts with Goat Cheese. Grilling brings out such unique, natural sweet flavors that it's a perfect opportunity to try foods you may not have eaten before or may have avoided because you don't want their aromas to fill your house.
Marinades, rubs, and sauces are good flavor enhancers for grilled foods. Just be sure to look for those that are low in sodium, saturated and trans fats, and added sugar. Rubs impart a stronger flavor than marinades but can burn when grilled, so they work particularly well with foods that will be cooked with indirect heat or for a short time, such as fish. Sauces should be put on foods toward the end of grilling (about 5 minutes for each side before removing) to prevent them from burning as well.
TO GRILL:
To cook food on a metal grate set over a radiant heat source such as gas, coals, electricity, or wood.
Tools & Equipment Needed: Grill (the recipes in this cookbook are for an outdoor gas grill), grilling tools, wire cleaning brush, basting brushes, instant-read thermometer, skewers, grill baskets or perforated grill sheets, kitchen timer
TIPS:
• To adapt outdoor grilling recipes for a countertop double-sided contact grill, cut the cooking time in half. For stovetop grill pans, cook the food longer because these pans don't get as hot as outdoor grills and aren't covered. These are general rules of thumb, but be sure to watch for visual cues that indicate the food is done.
• Cut vegetables thickly so they don't fall through the grate. Place asparagus and zucchini spears perpendicular to the grates or thread them crosswise onto two skewers.
• Use skewers, grill baskets, or perforated grill sheets for smaller vegetables such as button mushrooms and cherry tomatoes.
• When grilling a variety of veggies, group them according to the cooking time they'll need rather than in one mixed bunch.
• Try adding lemon wedges to your fish or vegetable kebabs. Grilling tames their tartness and adds citrus flavor to the foods sharing the skewer.
• Trim and discard all visible fat from poultry and meats before grilling; this will both cut down on saturated fat and help prevent flare-ups.
• Select boneless (and lean) cuts of chicken, beef, and pork, which cook more evenly.
• Instead of turning kebabs, use a spatula to roll them over.
• Marinate for only the recommended time on a recipe; marinating longer won't necessarily mean better flavor and may give the food an unpleasant texture.
• Most marinades contain an acid—such as vinegar or citrus juice—that helps to tenderize the food and add moisture, so be sure to use a nonreactive container like a glass or stainless steel dish or a resealable plastic bag.
• If you use cooking spray to keep food from sticking, be sure to spray the grate before it is heated.
• To lightly oil a hot grate, soak a paper towel in water, then dip it in oil and hold it with long tongs.
• To clean the grill, preheat it on high for 10 to 15 minutes to burn off most of the residue. Use a grill brush to remove any leftover food. (If you don't have a grill brush, you can use a ball of crumpled heavy-duty aluminum foil held with long tongs.)
• To avoid both overcooking and undercooking meat and poultry, use a meat thermometer to check doneness. Remove the meat or poultry from the grill before inserting the instant-read thermometer. Insert the thermometer into the center, or thickest part, of the meat, making sure the thermometer doesn't touch bone or fat.
• See safety tips for grilling.
BEST FOODS FOR GRILLING
Seafood: Shrimp, scallops, and fish fillets or steaks, such as Mediterranean Tuna Kebabs.
Poultry: Boneless cuts, such as tenderloins or skinless thighs or breasts, cook more evenly. Try Smoky Chicken and Vegetable Lasagna.
Meat: Boneless, lean beef cuts including top sirloin, flank steak, such as Flank Steak with Chimichurri Sauce, and pork cuts such as boneless pork chops, tenderloin, and medallions, such as Pork Medallions with Mango Mojo.
Vegetarian Protein: Seitan and tofu are both excellent meat-free protein sources that benefit from the smoky flavor the grill imparts. Try Seitan Stacks or marinate thick slices of tofu in a flavorful, low-sodium marinade, then grill for 3 to 4 minutes on each side.
Vegetables: Nearly any vegetable can be grilled. Cut large vegetables such as winter squashes into chunks and put them on skewers (do the same for small vegetables, such as button mushrooms, onion wedges, and cherry and grape tomatoes). Asparagus, zucchini or yellow summer squash halves, eggplant slices, corn on the cob, bell pepper halves, and portobello mushrooms are also great grilled. Try something unexpected such as Beets with Orange Gremolata. Try grilling sturdy leafy greens, too, like romaine and escarole.
Fruit: Summer fruits are perfect for the grill. Try peaches, nectarines, plums, pineapples, such as Chai-Spiced Pineapple Spears, mangoes, and watermelon, as in Shrimp and Watermelon Salad with Cucumber-Lime Vinaigrette.
## corn and black bean salad
Grilled corn is a treat, but this brightly colored entrée salad steps things up a notch, adding tender black beans, juicy tomatoes, and mild queso fresco.
SERVES 4 | 1½ cups per serving
4 large ears of corn, husks and silk discarded
Cooking spray
DRESSING
1 tablespoon olive oil (extra virgin preferred)
1 tablespoon cider vinegar
1 tablespoon fresh lime juice
1 medium garlic clove, minced
½ teaspoon salt
¼ teaspoon pepper
1 15.5-ounce can no-salt-added black beans, rinsed and drained
1 cup grape tomatoes, quartered
½ cup chopped fresh cilantro
4 ounces queso fresco or farmer cheese, crumbled
Preheat the grill on medium high. Cut four 5-inch-square pieces of aluminum foil. Lightly spray the corn with cooking spray. Place each ear diagonally in the center of a piece of foil. Roll the foil around the ear. Twist the ends to seal loosely.
Grill the corn for 15 to 20 minutes, or until tender-crisp, turning occasionally. Remove from the grill. Let stand for 10 minutes so the corn cools slightly.
In a small bowl, whisk together the dressing ingredients. Unwrap the corn, discarding the foil. Cut the kernels off the cob. In a large bowl, stir together the corn and the remaining ingredients. Pour the dressing over the salad, tossing gently to coat.
per serving
calories 303
total fat 8.0 g
saturated fat 2.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 4.0 g
cholesterol 9 mg
sodium 356 mg
carbohydrates 49 g
fiber 8 g
sugars 14 g
protein 15 g
dietary exchanges: 3 starch, 1 vegetable, 1 lean meat, ½ fat
COOK'S TIP ON CORN: To remove corn kernels from a cob, place one end of the cob in the hole in the center of a tube or Bundt pan. As you cut downward along the cob, the kernels will fall into the pan.
## shrimp and watermelon salad with cucumber-lime vinaigrette
An unusual combination of spiced watermelon, tender shrimp, and peppery arugula, this salad is topped with a dressing that's literally as cool as a cucumber. Juice from a grilled lime adds a slightly smoky flavor to the dressing. This will be your go- to salad all summer.
SERVES 4 | 1 watermelon wedge, ½ cup arugula, 2 ounces shrimp, and 2 tablespoons dressing per serving
Olive oil cooking spray
1 small lime
½ medium cucumber, peeled, seeded, and cut into 1-inch pieces
1 tablespoon honey
10 ounces raw medium shrimp (thawed if frozen), peeled, rinsed, and patted dry
½ teaspoon chili powder and ½ teaspoon chili powder, divided use
⅛ teaspoon pepper (freshly ground preferred)
¼ teaspoon salt
1 round slice of watermelon (about 1 inch thick) with rind, cut into 4 wedges
2 cups loosely packed arugula
Soak four 6-inch wooden skewers for at least 10 minutes in cold water to keep them from charring, or use metal skewers. Lightly spray the grill rack with cooking spray. Preheat the grill on medium high.
Grate 1 teaspoon of zest from the lime. Set the zest aside. Halve the lime.
Grill the lime halves with the cut sides down for 2 minutes, or until the cut sides are light golden brown and the limes are heated through. Transfer to a plate. Let cool for 5 minutes.
Juice the lime halves. In a food processor or blender, process the cucumber, honey, lime juice, and reserved lime zest for 30 seconds, or until smooth, scraping the side as necessary. Set the dressing aside.
Thread the shrimp onto the skewers. Sprinkle ½ teaspoon chili powder and the pepper over both sides of the shrimp. Lightly spray both sides of the shrimp with cooking spray.
Sprinkle the salt and the remaining ½ teaspoon chili powder over both sides of the watermelon. Lightly spray both sides of the watermelon with cooking spray.
Grill the shrimp for 2 minutes on each side, or until pink on the outside. Grill the watermelon for 1½ minutes on each side, or until it has light grill marks and is heated through. Transfer the watermelon to plates. Remove the shrimp from the skewers. Arrange on the watermelon.
Using a grill rack or wok-style grilling basket, grill the arugula for 15 to 20 seconds, or until the arugula is slightly wilted, stirring frequently with tongs.
Top the shrimp with the arugula. Drizzle the dressing over the salad.
per serving
calories 92
total fat 1.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 89 mg
sodium 319 mg
carbohydrates 11 g
fiber 1 g
sugars 9 g
protein 11 g
dietary exchanges: ½ fruit, 2 lean meat
## island halibut with papaya and strawberry salsa
Grilling enhances fruit's natural sweetness by caramelizing its sugar, while grilled jalapeño adds a smoky heat to this unusual salsa. Spooned over flaky halibut marinated in pineapple juice, it will bring a taste of the tropics to your next barbecue.
SERVES 4 | 3 ounces fish and ¼ cup salsa per serving
¼ cup 100% pineapple juice
¼ teaspoon pepper (freshly ground preferred)
4 halibut fillets with skin (about 5 ounces each), rinsed and patted dry
Cooking spray
½ small papaya, seeds discarded
4 medium hulled strawberries
1 small fresh jalapeño
1 tablespoon chopped fresh mint
1 teaspoon grated lime zest
1 tablespoon fresh lime juice
4 sprigs of fresh mint (optional)
Soak one 8-inch wooden skewer for at least 10 minutes in cold water to keep it from charring, or use a metal skewer.
In a shallow glass baking dish, whisk together the pineapple juice and pepper. Add the fish, turning to coat. Cover and refrigerate for 10 to 30 minutes, turning every 10 minutes.
Meanwhile, lightly spray a perforated grill sheet with cooking spray and place on the grill rack. Preheat the grill on medium high.
Using a sharp knife, make a series of crosshatch cuts in the papaya, being careful not to cut all the way through the flesh to the peel. Lightly spray the cut side with cooking spray. Thread the strawberries onto the skewer. Lightly spray them with cooking spray.
Lightly spray the jalapeño with cooking spray. Grill for 4 to 5 minutes, or until slightly charred, turning occasionally. Grill the papaya with the cut side down for 2 to 3 minutes, or until the flesh is golden brown. Grill the strawberries for 2 to 3 minutes, or until slightly golden and heated through, turning once halfway through. Transfer the jalapeño, papaya, and strawberries to a cutting board. Let stand for 5 minutes to cool.
Using a spoon, scoop out the flesh of the papaya. Transfer to a medium bowl. Chop the strawberries. Add the strawberries to the papaya. Discard the seeds and ribs of the jalapeño (see Cook's Tip). Chop it. Gently stir the jalapeño, chopped mint, lime zest, and lime juice into the papaya mixture.
Drain the fish, discarding the marinade. Grill the fish for 4 to 5 minutes on each side, or until it flakes easily when tested with a fork. Transfer to plates. Top with the salsa. Garnish with the sprigs of mint.
per serving
calories 118
total fat 1.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 0.5 g
cholesterol 56 mg
sodium 80 mg
carbohydrates 4 g
fiber 1 g
sugars 2 g
protein 21 g
dietary exchanges: 3 lean meat
mediterranean tuna kebabs
## mediterranean tuna kebabs
A fresh tomato-saffron sauce doubles as a marinade to give the kebabs twice the flavor. Serve them with brown rice or whole-wheat couscous. (See photo.)
SERVES 4 | 1 kebab per serving
¼ cup hot water
Pinch of saffron (optional)
⅔ cup chopped Italian plum (Roma) tomatoes (about 2 small)
2 teaspoons olive oil (extra virgin preferred)
1 teaspoon red wine vinegar
1 small garlic clove
1 pound tuna steaks, rinsed, patted dry, and cut into 12 1-inch cubes
1 medium onion, cut into 12 ½-inch wedges
1 medium red or yellow bell pepper, cut into 12 strips
1 medium zucchini, cut crosswise into 12 slices
Cooking spray
Soak four 12-inch wooden skewers for at least 10 minutes in cold water to keep them from charring, or use metal skewers.
In a small glass bowl, whisk together the hot water and saffron. In a food processor or blender, process the saffron mixture, tomatoes, oil, vinegar, and garlic for 1 minute, or until smooth. Transfer ⅓ cup of the mixture to the bowl. Cover and refrigerate until 10 to 15 minutes before serving time.
For each kebab, thread each skewer with 3 tuna cubes, 3 onion wedges, 3 bell pepper strips, and 3 zucchini slices. Put the kebabs on a rimmed baking sheet. Brush all sides of the kebabs generously with the marinade. Cover and refrigerate for 30 minutes to 1 hour.
Lightly spray the grill rack with cooking spray. Preheat the grill on medium high.
Meanwhile, remove the reserved saffron mixture from the refrigerator. Let stand at room temperature for 10 to 15 minutes.
Lightly spray the kebabs with cooking spray. Grill the kebabs, covered, for about 4 minutes, or until the fish is the desired doneness and the vegetables are tender-crisp, turning frequently. Serve with the reserved saffron mixture.
per serving
calories 179
total fat 3.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 44 mg
sodium 60 mg
carbohydrates 8 g
fiber 2 g
sugars 5 g
protein 29 g
dietary exchanges: 2 vegetable, 3 lean meat
COOK'S TIP: When threading the kebabs, angle the zucchini slices so they lie slightly flat during grilling for more even cooking.
COOK'S TIP ON KEBABS: Instead of turning kebabs, you can use a metal spatula to roll them over.
COOK'S TIP ON SAFFRON: You can buy saffron in powder form or as threads; the threads are fresher and more flavorful. They can be expensive, but a little goes a long way. Crush them just before you use them.
## baja fish tacos
The Baja Peninsula, in northwestern Mexico, is famous for fish tacos. Though haddock is featured in this recipe, any firm-fleshed fish will work well for grilling. Set out the cooked fish and topping ingredients and let everyone build his or her own tacos.
4 SERVINGS | 2 tacos per serving
1 teaspoon chili powder (ancho powder preferred)
1 teaspoon dried oregano, crumbled
½ teaspoon dried thyme, crumbled
½ teaspoon ground cumin
1 tablespoon canola or corn oil
4 haddock fillets (about 4 ounces each), rinsed and patted dry
Cooking spray
8 6-inch corn tortillas
1 medium avocado
2 medium Italian plum (Roma) tomatoes, seeded and diced
1 cup shredded romaine
¼ cup salsa verde (lowest sodium available)
2 medium limes, each cut into 4 wedges
In a small bowl, stir together the chili powder, oregano, thyme, and cumin. Stir in the oil. Spread the mixture over both sides of the fish. Cover and refrigerate for 15 to 20 minutes.
Meanwhile preheat the grill on high. Lightly spray the fish with cooking spray. Grill the fish with the sprayed side down for 5 to 6 minutes, or until it flakes easily when tested with a fork. Don't turn it over.
Using a metal spatula, transfer the fish to a large plate. Let cool for 3 to 5 minutes. Break the fish into 1-inch pieces.
Put the fish on the tortillas. Dice the avocado. Top the fish with the avocado, tomatoes, romaine, and salsa. Serve with the lime wedges.
per serving
calories 275
total fat 12.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 2.5 g
monounsaturated fat 7.5 g
cholesterol 61 mg
sodium 352 mg
carbohydrates 21 g
fiber 6 g
sugars 2 g
protein 22 g
dietary exchanges: 1 starch, 1 vegetable, 3 lean meat, ½ fat
## chicken with red raspberry glaze
Super-simple to put together, this sweet and tart dish uses only five ingredients. You can have it on the table in less than 30 minutes, making it the perfect entrée for a busy summer night.
SERVES 4 | 3 ounces chicken per serving
Cooking spray
¾ cup all-fruit seedless red raspberry spread
2 tablespoons honey mustard (lowest sodium available)
¼ teaspoon cayenne
4 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded, pounded to ½-inch thickness
6 ounces red raspberries
Lightly spray the grill rack with cooking spray. Preheat the grill on medium high.
In a small bowl, whisk together the raspberry spread, honey mustard, and cayenne. Spoon ¼ cup of the glaze into a separate small bowl. Set aside. Lightly brush both sides of the chicken with the remaining glaze.
Grill the chicken for 5 to 7 minutes on each side, or until no longer pink in the center.
Meanwhile, add the raspberries to the reserved glaze, stirring gently to coat. Just before serving, spoon over the chicken.
per serving
calories 242
total fat 3.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 73 mg
sodium 137 mg
carbohydrates 27 g
fiber 3 g
sugars 20 g
protein 25 g
dietary exchanges: 2 fruit, 3 lean meat
COOK'S TIP ON CHICKEN BREASTS: Flattened chicken breasts are more uniform in thickness so they cook more evenly. They also cook faster, which makes them less likely to dry out or become tough.
## smoky chicken and vegetable lasagna
This unusual recipe takes lasagna out of the oven and into the outdoors. The components are grilled, adding a rich smokiness to the dish, which is also finished on the grill. Round out your meal with a simple salad or some extra grilled vegetables.
SERVES 8 | one 3 × 4½-inch piece per serving
2 tablespoons chopped fresh rosemary
1 tablespoon white wine vinegar
2 medium garlic cloves, minced
¼ teaspoon salt
¼ teaspoon pepper (freshly ground preferred)
1 pound boneless, skinless chicken breasts, all visible fat discarded
Cooking spray
9 dried whole-grain lasagna noodles
4 medium tomatoes, halved
2 medium zucchini, cut lengthwise into ¾-inch-thick slices
1 large orange bell pepper, cut into ½-inch rings
1 medium red onion, cut into ½-inch slices and separated into rings
1 tablespoon salt-free all-purpose seasoning blend
1 teaspoon dried oregano, crumbled
15 ounces fat-free ricotta cheese
1 cup shredded low-fat mozzarella cheese
In a shallow glass bowl, stir together the rosemary, vinegar, garlic, salt, and pepper. Add the chicken, turning to coat. Cover and refrigerate for at least 10 minutes, or up to 8 hours, turning occasionally.
Lightly spray the grill rack with cooking spray. Preheat the grill on medium high.
Drain the chicken, discarding the marinade. Lightly spray both sides of the chicken with cooking spray. Grill for 6 to 8 minutes on each side, or until the chicken is no longer pink in the center. Transfer to a cutting board. Let cool. Coarsely chop the chicken.
Meanwhile, lightly spray both sides of the noodles with cooking spray. Grill for 1½ to 2 minutes on each side, or until they have golden-brown grill marks. Remove from the grill.
Put the tomatoes, zucchini, bell pepper, and onion on a baking sheet or platter. Lightly spray with cooking spray. Sprinkle with half the seasoning blend. Turn over the vegetables. Lightly spray with cooking spray. Sprinkle with the remaining seasoning blend.
Using a perforated grill sheet, grill the vegetables for 2 to 3 minutes on each side. Remove from the grill. In a large bowl, stir together the chopped chicken and grilled zucchini, bell pepper, and onion.
In a food processor or blender, process the tomatoes and oregano for 1½ to 2 minutes, or until the sauce is slightly chunky.
Lightly spray a 13 × 9 × 2-inch metal pan with cooking spray.
In the pan, layer as follows: ½ cup tomato sauce, 3 noodles, half the chicken mixture, half the ricotta, and half the mozzarella. Repeat the layers, finishing with the remaining 3 noodles. Spread the remaining tomato sauce on top. Cover the pan with aluminum foil.
Grill, covered, for 20 to 25 minutes, or until the mozzarella has melted and the lasagna is heated through.
per serving
calories 238
total fat 3.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 46 mg
sodium 350 mg
carbohydrates 25 g
fiber 5 g
sugars 7 g
protein 27 g
dietary exchanges: 1 starch, 2 vegetable, 3 lean meat
## teriyaki chicken and vegetable kebabs
Juicy chicken and a variety of vegetables are marinated in a spicy-sweet sauce before being grilled to tender perfection. Follow dinner with Chai-Spiced Pineapple Spears for dessert.
SERVES 4 | 2 skewers per serving
2½ tablespoons light brown sugar
2 tablespoons sherry or fresh orange juice
1 tablespoon soy sauce (lowest sodium available)
2 teaspoons canola or corn oil
½ teaspoon ground ginger
½ teaspoon hot chili oil
1 pound boneless, skinless chicken breasts, all visible fat discarded, cut into 16 1½-inch cubes
2 medium onions, cut into 4 wedges each
8 medium button mushrooms
8 cherry or grape tomatoes
1 medium zucchini, cut crosswise into 8 slices
Cooking spray
In a shallow glass baking dish, whisk together the brown sugar, sherry, soy sauce, canola oil, ginger, and chili oil. Add the chicken, onions, mushrooms, tomatoes, and zucchini, stirring to coat. Cover and refrigerate for 1 hour, turning occasionally.
Meanwhile, soak eight 8-inch bamboo skewers for at least 10 minutes in cold water to keep them from charring, or use metal skewers.
Lightly spray the grill rack with cooking spray. Preheat the grill on high.
For each kebab, thread each skewer with 2 chicken cubes, 1 onion wedge, 1 mushroom, 1 tomato, and 1 zucchini slice. Grill for 3 minutes on each side, or until the chicken is no longer pink in the center.
per serving
calories 177
total fat 3.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 73 mg
sodium 239 mg
carbohydrates 11 g
fiber 3 g
sugars 8 g
protein 27 g
dietary exchanges: 2 vegetable, 3 lean meat
## flank steak with chimichurri sauce
Chimichurri, a garlicky herb sauce, is like the ketchup of Argentina. It's commonly served with all types of grilled or roasted meats. Try this with a side of Beets with Orange Gremolata.
4 SERVINGS | 3 ounces beef and 1 tablespoon sauce per serving
SAUCE
1½ cups Italian (flat-leaf) parsley, coarsely chopped
2 medium shallots, coarsely chopped
2 tablespoons coarsely chopped fresh basil
2 tablespoons fresh lime juice
2 tablespoons water
6 medium garlic cloves, coarsely chopped
1 tablespoon coarsely chopped fresh cilantro (optional)
¼ teaspoon pepper (freshly ground preferred)
2 tablespoons olive oil
1 1-pound flank steak, all visible fat and silver skin discarded
In a food processor or blender, process the sauce ingredients except the oil for 1 to 2 minutes, or until finely chopped. Add the oil, pulsing 2 or 3 times, or until just smooth. Pour half the sauce into a small glass bowl. Cover and refrigerate.
Pour the remaining sauce into a large glass baking dish. Add the beef, turning to coat. Refrigerate, covered, for 2 hours, turning occasionally. Remove the dish from the refrigerator. Let stand for 20 minutes. Remove the reserved sauce from the refrigerator. Let stand for 30 minutes.
Meanwhile, preheat the grill on high.
Drain the beef, discarding the marinade. Grill the beef for 4 to 5 minutes on each side, or to the desired doneness. Transfer to a cutting board. Let stand for 15 minutes before thinly slicing. Serve with the reserved sauce.
per serving
calories 198
total fat 10.0 g
saturated fat 3.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 5.0 g
cholesterol 65 mg
sodium 53 mg
carbohydrates 3 g
fiber 1 g
sugars 0 g
protein 23 g
dietary exchanges: 3 lean meat
## pork medallions with mango mojo
A traditional Caribbean mango mojo (MO-ho) includes puréed mango. Grilling the mango and chopping it adds texture and a hint of smoke to the sweet sauce.
SERVES 4 | 3 medallions and 3 tablespoons sauce per serving
1 1-pound pork tenderloin, all visible fat discarded, cut diagonally across the grain into 12 medallions
2 tablespoons minced shallots
1 teaspoon grated lime zest
2 tablespoons fresh lime juice
¼ teaspoon pepper (freshly ground preferred)
1 teaspoon olive oil
2 tablespoons chopped fresh cilantro
Cooking spray
MOJO
1 medium mango, cut lengthwise into ½-inch-thick slices
1½ tablespoons lime juice
1 tablespoon chopped fresh cilantro
1 small garlic clove, minced
¼ teaspoon red hot-pepper sauce
Using the palm of your hand, gently flatten any thick slices of pork for more even cooking. Arrange the pork on a large rimmed baking sheet. In a small dish, stir together the shallots, lime zest, and pepper. Sprinkle all over the pork. Pour 2 tablespoons lime juice and the oil on top. Sprinkle 2 tablespoons cilantro all over the pork. Let stand for 30 minutes.
Meanwhile, lightly spray the grill rack with cooking spray. Preheat the grill on medium. Grill the mango for 2 minutes on each side. Let cool to room temperature. Finely chop. In a small bowl, stir together the mango and the remaining mojo ingredients.
Grill the pork, covered, for 4 to 6 minutes, or until it registers 145°F on an instant-read thermometer, turning once. Transfer to plates. Let stand for 3 minutes. Serve with the mojo.
per serving
calories 186
total fat 4.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 60 mg
sodium 51 mg
carbohydrates 15 g
fiber 2 g
sugars 12 g
protein 22 g
dietary exchanges: 1 fruit, 3 lean meat
## seitan stacks
Seitan (SAY-tan) is a meatlike, protein-rich food made from wheat gluten. In this dish, it's layered with hearty vegetables and gooey mozzarella.
SERVES 4 | 1 stack per serving
1 tablespoon chopped fresh rosemary or 1 teaspoon dried rosemary, crushed
1 teaspoon dried oregano, crumbled
1 teaspoon dried basil, crumbled
½ teaspoon pepper
1 1-pound eggplant, cut into 8 ½-inch slices
2 medium yellow summer squash, each cut into 16 ½-inch rounds
2 medium red bell peppers, each cut into 4 ½-inch rings
8 ounces seitan strips or chunks, patted dry
2 tablespoons fresh lemon juice
1 tablespoon olive oil
Olive oil cooking spray
1 cup shredded low-fat mozzarella cheese
½ cup marinara sauce (lowest sodium available), heated
4 small sprigs of fresh rosemary (optional)
In a small bowl, stir together the chopped rosemary, oregano, basil, and pepper.
Arrange the eggplant, squash, bell peppers, and seitan in a single layer on a rimmed baking sheet. Drizzle with half the lemon juice and oil. Sprinkle with half the rosemary mixture. Turn over the vegetables and seitan. Repeat with the remaining lemon juice, oil, and rosemary mixture.
Lightly spray the grill rack with cooking spray. Preheat the grill on medium high. Using a perforated grill sheet, grill the vegetables and seitan for 2 to 3 minutes on each side. Remove from the grill. Put 4 slices of eggplant on a platter. Top each with 1 bell pepper ring, 4 squash rounds, 3 seitan strips, and 2 tablespoons mozzarella. Repeat the layers. Spoon the sauce over the stacks. Garnish with the rosemary.
per serving
calories 243
total fat 8.0 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 4.0 g
cholesterol 10 mg
sodium 447 mg
carbohydrates 20 g
fiber 7 g
sugars 11 g
protein 24 g
dietary exchanges: 4 vegetable, 3 lean meat
## mushroom-zucchini nachos with smoky crema
There's no need to feel guilty about eating nachos for dinner when the homemade grilled tortilla chips are topped with veggies and tofu. Seasoned with a zesty spice mix and garnished with a Mexican-style sour cream, these nachos pop with flavor. Remember to allow enough time to press the tofu for easier grilling.
SERVES 4 | 1½ cups per serving
14 ounces light extra-firm or firm tofu, drained and patted dry
4 6-inch corn tortillas, each cut into 6 wedges
2 teaspoons ground cumin
½ teaspoon dried oregano (Mexican preferred), crumbled
½ teaspoon garlic powder
⅓ cup fat-free sour cream
3 tablespoons fat-free milk
¼ teaspoon smoked paprika
Cooking spray
2 medium portobello mushroom caps, cut into ½-inch slices
1 medium zucchini, cut lengthwise into ½-inch slices
¾ cup cherry tomatoes, halved
½ cup crumbled queso fresco or farmer cheese
⅓ cup chopped fresh cilantro
Put the tofu on a cutting board lined with four layers of paper towels. Cover with four layers of paper towels. Place a large, heavy baking dish on top. Let stand for 30 minutes so the tofu releases its excess moisture, replacing the paper towels if necessary.
Meanwhile, arrange the tortilla wedges in a single layer on a large rimmed baking sheet. Let stand for 30 minutes to 1 hour, or until slightly dried and curled. Transfer to a large bowl.
In a small bowl, stir together the cumin, oregano, and garlic powder. Set aside.
In a separate small bowl, whisk together the sour cream, milk, and paprika. Cover and refrigerate.
Lightly spray the grill with cooking spray. Preheat the grill on medium.
Meanwhile, using paper towels, pat dry the tofu. Cut it crosswise into 4 thin slabs. Transfer to the baking sheet. Arrange the mushrooms and zucchini in a single layer on a separate large rimmed baking sheet. Lightly spray the tofu, mushrooms, and zucchini on all sides with cooking spray. Sprinkle the cumin mixture over all sides of the tofu and vegetables. Using your fingertips, gently press the mixture so it adheres to the tofu and vegetables.
Place the tofu lengthwise so it's perpendicular to the grates of the grill. Grill, covered, for 8 to 10 minutes, or until lightly browned, turning once halfway through. Place the mushrooms and zucchini so they're perpendicular to the grates of the grill. Grill, covered, for 6 to 9 minutes, or until lightly browned and tender, turning occasionally. Grill the tortilla wedges, covered, for 5 to 8 minutes, or until lightly crisp, turning occasionally. Transfer the tofu, mushrooms, and zucchini to a cutting board. Transfer the tortilla wedges to serving plates.
Coarsely chop the tofu, mushrooms, and zucchini, keeping the ingredients separate. Top the tortilla wedges with, in order, the mushrooms, zucchini, tofu, tomatoes, queso fresco, and cilantro. Drizzle with the sour cream mixture.
per serving
calories 206
total fat 6.0 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.0 g
cholesterol 14 mg
sodium 134 mg
carbohydrates 22 g
fiber 4 g
sugars 5 g
protein 17 g
dietary exchanges: 1 starch, 1 vegetable, 2 lean meat
COOK'S TIP: Pressing the tofu helps release its excess moisture, making it firmer and easier to grill. Use a large pancake turner or spatula to turn the tofu while it grills.
## honey-balsamic brussels sprouts with goat cheese
The gentle tartness of the balsamic mixture accents the flavor of the sprouts. Try these even if you think you don't like brussels sprouts; grilling imparts a sweet smokiness and tames the bitterness.
SERVES 4 | ½ cup per serving
12 medium brussels sprouts (about 8 ounces)
3 tablespoons balsamic vinegar
1 tablespoon honey
1 teaspoon olive oil
1 medium garlic clove, minced
Cooking spray
2 tablespoons goat cheese crumbles or crumbled fat-free feta cheese
Soak four 6- to 8-inch wooden skewers for at least 10 minutes in cold water to keep them from charring, or use metal skewers.
Using a sharp knife, trim the stems of the brussels sprouts. Hold each brussels sprout with the stem end up. Cut halfway through each (to help them absorb the marinade).
In a large shallow glass bowl, whisk together the vinegar, honey, oil, and garlic. Set aside 1 tablespoon of the mixture. Cover and refrigerate the reserved mixture.
Add the brussels sprouts to the marinade in the bowl, stirring to coat. Cover and refrigerate for 15 minutes to 8 hours, turning occasionally.
Lightly spray the grill rack with cooking spray. Preheat the grill on medium.
Piercing the stem ends of the brussels sprouts first, thread them onto the skewers. Grill, covered, for 20 to 25 minutes, or until they are golden brown and can easily be pierced with the tip of a sharp knife, turning every 5 minutes to brown on all sides.
Transfer to a serving platter or plates. Drizzle with the reserved vinegar mixture. Arrange the goat cheese crumbles around the brussels sprouts.
per serving
calories 80
total fat 3.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 1.0 g
cholesterol 3 mg
sodium 43 mg
carbohydrates 12 g
fiber 2 g
sugars 8 g
protein 3 g
dietary exchanges: 1 vegetable, ½ other carbohydrate, ½ fat
COOK'S TIP: If your grocer carries brussels sprouts on the stalk, you can skip the skewers. Cut halfway through each sprout from the top and brush the marinade on each. Grill as directed, turning the stalk every 5 minutes. To serve, cut the grilled sprouts off the stalk.
## beets with orange gremolata
A gremolata is a garnish usually made with parsley, lemon zest, and garlic. This one uses orange zest, drops the garlic, and adds almonds for crunch and bits of orange to enhance the sweetness of the grill-caramelized beets.
SERVES 4 | ½ cup beets and 2 tablespoons gremolata per serving
Olive oil cooking spray
1 tablespoon chopped fresh thyme or 1 teaspoon dried thyme, crumbled
¼ teaspoon pepper (freshly ground preferred)
⅛ teaspoon salt
1 pound (5 to 6 medium) beets, cut into ½-inch slices
1 teaspoon grated orange zest
1 large orange, cut into ½-inch pieces
1 tablespoon chopped fresh parsley
1 tablespoon chopped almonds, dry-roasted
Lightly spray the grill rack with cooking spray. Preheat the grill on medium.
In a small bowl, stir together the thyme, pepper, and salt. Lightly spray both sides of the beets with cooking spray. Sprinkle the thyme mixture over both sides of the beets. Using your fingertips, gently press the mixture so it adheres to the beets.
Using tongs, place the beets about 1 inch apart on the grill rack. Grill, covered, for 15 minutes. Turn over the beets. Grill, covered, for 10 to 15 minutes, or until tender when pierced with the tip of a knife.
Meanwhile, in a small bowl, stir together the remaining ingredients.
Transfer the beets to a platter. Top with the gremolata.
per serving
calories 83
total fat 1.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 0.5 g
cholesterol 0 mg
sodium 162 mg
carbohydrates 17 g
fiber 5 g
sugars 12 g
protein 3 g
dietary exchanges: 2 vegetable, ½ fruit
## chai-spiced pineapple spears
Warm Indian spices complement the natural sweetness of the fruit. Delicious for dessert, this pineapple also pairs well with grilled fish or meat.
4 SERVINGS | 2 spears per serving
1 tablespoon brown sugar
1 teaspoon ground cinnamon
½ teaspoon ground nutmeg (freshly grated preferred)
⅛ teaspoon ground cloves (optional)
1 medium pineapple, peeled and cored, cut into 8 spears, and patted dry
Cooking spray
In a small bowl, stir together the brown sugar, cinnamon, nutmeg, and cloves.
Preheat the grill on medium. Line a rimmed baking sheet or a large baking dish with aluminum foil.
Put the pineapple on the foil. Lightly spray the pineapple with cooking spray. Sprinkle the brown sugar mixture over all sides of the pineapple. Using your fingertips, gently press the mixture so it adheres to the pineapple.
Place the pineapple spears lengthwise so they are perpendicular to the grates of the grill. Grill for 8 to 10 minutes, or until caramelized, turning them frequently so they don't burn.
per serving
calories 129
total fat 0.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 3 mg
carbohydrates 34 g
fiber 4 g
sugars 26 g
protein 1 g
dietary exchanges: 2 fruit
COOK'S TIP: For convenience, many grocery stores sell peeled and cored whole pineapple in the produce section.
# stir-frying
chinese chicken salad
sunny seafood mélange
tex-mex chicken
summertime stir-fry
chicken with napa cabbage and rice noodles
shredded beef with bok choy and carrots
japanese stir-fry
taco time pork
plum-sauced pork with asian vegetables
vegetarian fried rice
lentils with mushrooms, tomatoes, and kale
green beans in spicy sauce
mediterranean mushrooms and bell peppers
warm cinnamon-raisin apples
Stir-frying is a healthy, quick, cost-conscious, and efficient cooking method. Within minutes, a nutritious meal can be put together complete with plenty of vegetables and a protein such as fish, poultry, meat, tofu, or lentils. Stir-fries lend themselves to including more than one type of vegetable in a dish, such as Summertime Stir-Fry, allowing for a variety of nutrients and the opportunity to include different vegetables in your eating plan. You can easily make substitutions, too, when stir-frying. If you don't have broccoli, then you can add cauliflower instead. If you don't have a particular type of mushroom on hand, use another. Stir-frying requires a minimum of hot oil, and this fast, high-heat method of cooking seals in the natural juices of meats and seafood and preserves the nutrients, texture, and color of vegetables.
Stir-frying offers ethnic variety, too. It's not just for Asian dishes; try Mediterranean Mushrooms and Bell Peppers or Taco Time Pork to see how versatile this method can be. You can even cook fruit in your wok, such as Warm Cinnamon-Raisin Apples.
When choosing a wok, look for carbon steel and avoid nonstick coatings, which should not be used when cooking on high heat. Before using your wok, you'll need to "season" it. First, clean the wok inside and out, using a stainless-steel scouring pad and plenty of hot, soapy water, to remove the antirust coating. Rinse the wok well and heat it over low heat for 1 to 2 minutes, or until the water has evaporated (be sure to ventilate the kitchen well because any remaining coating might emit fumes). Allow the wok to cool, then heat it over high heat until a bead of water dropped into the wok evaporates within 1 to 2 seconds. Pour in 2 tablespoons peanut or canola oil, swirling to coat the wok. Reduce the heat to medium. To further season the wok, cook ½ cup sliced unpeeled ginger and one bunch of green onions (sliced into 2-inch pieces) for 20 minutes, or until brown and crusty, stirring frequently and using a spatula to press the ginger mixture all over the inside of the wok. Remove from the heat, discarding the ginger mixture. Wash the wok with hot water but no soap (from this point on, you'll never use soap to wash your wok). Heat the wok over low heat until the water evaporates. To clean the wok after cooking, use hot water and, if needed, a nonabrasive scouring pad. Heat the cleaned wok over low heat until completely dry, to prevent rusting.
HERE'S HOW THIS TECHNIQUE USUALLY WORKS:
1. PREHEAT the pan over high heat. (The pan is hot enough when a bead of water vaporizes within 1 to 2 seconds of contact.)
2. Add oil to the hot pan (this will help keep the oil from smoking and the food from sticking) and swirl the pan to be sure oil coats the surface.
3. Stir-fry aromatics such as garlic and ginger (these ingredients should sizzle as soon as they're added).
4. Add the protein in one layer to sear it (sometimes the protein is cooked before the aromatics).
5. Add the vegetables.
6. Finally, ADD any liquids and additional seasonings.
7. While the food is cooking, be sure to STIR it around the pan constantly.
TO STIR-FRY:
To quickly cook small pieces of food in a large pan over very high heat while constantly and briskly stirring the food.
Tools & Equipment Needed: 14-inch wok or 12-inch skillet (when you're cooking food for four people, which is the common serving number for the recipes in this cookbook, these sizes will work best to avoid crowding the food; it will be harder to keep a larger wok or skillet uniformly hot), spatulas, wooden spoons, kitchen timer
TIPS:
• Because stir-frying moves so quickly, it's best to use the classic technique called mise en place, which means having all the ingredients prepared and measured before you begin cooking.
• Cook in a well-ventilated area.
• When adding oil, quickly tilt the pan back and forth to allow the oil to coat the entire bottom.
• If the pan is hot enough, you'll see the oil shimmer when you add it.
• Start with foods that require the longest cooking times, such as onions and carrots, and finish with those that need to cook for only a few minutes.
• Make sure all the meat, poultry, or fish and vegetables are dry before adding them to the wok.
• Discard all visible fat and skin from meat and poultry.
• Be sure to listen for a constant sizzle throughout the cooking process, as this sound will tell you if the pan is hot enough.
BEST FOODS FOR STIR-FRYING
Seafood: Firm-fleshed fish such as cod, halibut, or red snapper, as well as shrimp and bay scallops are good choices. Try Sunny Seafood Mélange.
Poultry: Boneless, skinless chicken breasts hold up best, as with Tex-Mex Chicken, but thighs can be used.
Meat: Lean cuts work well. Try flank steak, as in Shredded Beef with Bok Choy and Carrots, or sirloin, ground pork, lean pork butt, or pork tenderloin.
Vegetarian Protein: Tofu, which you'll find in Vegetarian Fried Rice, and seitan are popular vegetarian proteins commonly used in stir-fries. Eggs are sometimes added to dishes as well.
Vegetables: Nearly any vegetable can be stir-fried. Common choices are broccoli, mushrooms, bell peppers, green beans, carrots, cabbage, water chestnuts, bamboo shoots, and baby corn. Try Green Beans in Spicy Sauce.
chinese chicken salad
## chinese chicken salad
A sweet-hot dressing highlights the juicy chicken and crisp vegetables in this stir-fried salad. If you're too hungry to wait for it to chill, serve this entrée hot over steamed brown rice.
SERVES 5 | 1 cup per serving
1 tablespoon hot chili oil and 1 teaspoon hot chili oil, divided use
1 tablespoon toasted sesame oil
3 or 4 medium garlic cloves, minced
1½ teaspoons grated peeled gingerroot
1 pound boneless, skinless chicken breasts, all visible fat discarded, patted dry, and cut into ½-inch cubes
1 cup thinly sliced red bell pepper strips
1 8-ounce can sliced water chestnuts, drained and cut into thin strips
6 ounces snow peas, trimmed, halved if large
2 tablespoons water
⅓ cup thinly sliced green onions
2 tablespoons soy sauce (lowest sodium available)
1 tablespoon honey
1 tablespoon rice vinegar
Heat a wok over medium-high heat. Pour in 1 tablespoon chili oil and the sesame oil, swirling to coat the bottom. Cook the garlic and gingerroot for 1 minute, stirring constantly. Increase the heat to high. Stir in the chicken. Cook for 4 minutes, or until the chicken is lightly browned, stirring constantly. Stir in the bell pepper, water chestnuts, snow peas, and water. Cook for 3 minutes, or until the water evaporates, stirring constantly. Stir in the green onions. Cook for 1 minute, stirring constantly. Remove the wok from the heat.
In a small bowl, whisk together the soy sauce, honey, vinegar, and the remaining 1 teaspoon chili oil. Pour over the chicken mixture, stirring to coat. Cover and refrigerate for at least 2 hours, or until chilled.
per serving
calories 221
total fat 9.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 2.5 g
monounsaturated fat 4.0 g
cholesterol 58 mg
sodium 271 mg
carbohydrates 13 g
fiber 3 g
sugars 8 g
protein 21 g
dietary exchanges: 2 vegetable, 2½ lean meat
## sunny seafood mélange
Speedy stir-frying is a perfect technique to let the fresh flavors of the sun-kissed Mediterranean shine. Serve this medley of sweet scallops, lean grouper, and tender vegetables over a bed of whole-grain pasta or couscous.
SERVES 4 | 1 cup per serving
1 teaspoon canola or corn oil and 1 teaspoon canola or corn oil, divided use
1 small zucchini, cut into ¼-inch slices
4 ounces sliced brown (cremini) mushrooms
½ medium red bell pepper, diced
½ medium onion, diced
1 medium garlic clove, minced
12 ounces grouper, redfish, mahi mahi, or salmon fillets, rinsed, patted dry, and cut into ¾-inch pieces
4 ounces bay scallops, rinsed and patted dry
1 large tomato, peeled and diced
½ teaspoon dried oregano, crumbled
½ teaspoon dried basil, crumbled
¼ teaspoon salt
⅛ teaspoon pepper
Heat a wok over high heat. Pour in 1 teaspoon oil, swirling to coat the wok. Cook the zucchini, mushrooms, bell pepper, onion, and garlic for 1½ to 2½ minutes, or until tender-crisp, stirring constantly. Transfer to a bowl.
Heat the remaining 1 teaspoon oil, still over high heat, swirling to coat the wok. Cook the fish and scallops for 2 to 3 minutes, gently stirring constantly (the fish and scallops won't be done at this point).
Stir in the zucchini mixture and the remaining ingredients. Cook for 1 to 2 minutes, or until the fish flakes easily when tested with a fork and the scallops are opaque, stirring constantly. Be careful not to overcook or the scallops will become rubbery.
per serving
calories 151
total fat 3.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 1.5 g
cholesterol 38 mg
sodium 309 mg
carbohydrates 7 g
fiber 2 g
sugars 4 g
protein 22 g
dietary exchanges: 1 vegetable, 3 lean meat
## tex-mex chicken
After marinating in the bright flavors of lime, chili powder, and cumin, juicy chicken teams up with poblano pepper, tomatoes, and cheese in this easy dish.
SERVES 4 | 1 cup per serving
1 teaspoon grated lime zest
2 tablespoons fresh lime juice
1 teaspoon chili powder
1 teaspoon ground cumin
¼ teaspoon salt
¼ teaspoon pepper
1 pound boneless, skinless chicken breasts, all visible fat discarded, cut into ½-inch pieces
1 teaspoon canola or corn oil and 1 teaspoon canola or corn oil, divided use
1 small red onion, thinly sliced
¼ cup chopped poblano pepper (roasted preferred; see Cook's Tip)
1 cup halved cherry tomatoes
½ cup shredded low-fat Cotija cheese or low-fat Monterey Jack cheese
In a large shallow bowl or a baking dish, whisk together the lime zest, lime juice, chili powder, cumin, salt, and pepper. Add the chicken, turning to coat. Cover and refrigerate for 15 minutes to 8 hours, turning occasionally. Drain the chicken, discarding the marinade. Pat it dry.
Heat a wok over high heat. Pour in 1 teaspoon oil, swirling to coat the wok. Cook the chicken for 3 to 4 minutes, or until the chicken is no longer pink in the center, stirring constantly. Transfer to a bowl. Heat the remaining 1 teaspoon oil, still over high heat, swirling to coat the wok. Cook the onion for 2 to 3 minutes, or until tender-crisp, stirring constantly. Stir in the poblano. Cook for 1 minute, stirring constantly. Stir in the chicken and tomatoes. Cook for 30 seconds, or until the tomatoes are hot, stirring constantly. Just before serving, sprinkle with the Cotija.
per serving
calories 221
total fat 9.0 g
saturated fat 3.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 3.0 g
cholesterol 82 mg
sodium 375 mg
carbohydrates 6 g
fiber 2 g
sugars 3 g
protein 29 g
dietary exchanges: 1 vegetable, 3½ lean meat
COOK'S TIP ON COTIJA CHEESE: Cotija is a Mexican cheese made from cow's or goat's milk. It doesn't melt, so it's often sprinkled on salads or cooked dishes.
## summertime stir-fry
This entrée is a step above what you'd find on most takeout menus, thanks to the addition of fresh lemon zest and cherry tomatoes.
SERVES 4 | 1 cup stir-fry and ½ cup rice per serving
1 tablespoon cornstarch and 1 tablespoon cornstarch, divided use
1 tablespoon soy sauce and 1 tablespoon soy sauce (lowest sodium available), divided use
1 pound chicken tenders, all visible fat discarded
1¼ cups fat-free, low-sodium chicken broth and 1 cup fat-free, low-sodium chicken broth, divided use
½ teaspoon grated lemon zest
½ cup uncooked instant brown rice
1 teaspoon canola or corn oil
2 cups small broccoli florets
1 cup sugar snap peas, trimmed
1 cup cherry tomatoes
Put 1 tablespoon cornstarch in a medium shallow glass dish. Add 1 tablespoon soy sauce, whisking to dissolve. Add the chicken, turning to coat. Cover and refrigerate for 10 minutes to 8 hours, turning occasionally. Drain the chicken, discarding the marinade. Pat it dry.
In a medium bowl, whisk together 1¼ cups broth, the lemon zest, and the remaining 1 tablespoon cornstarch and 1 tablespoon soy sauce.
Prepare the rice using the package directions, omitting the salt and margarine and substituting the remaining 1 cup broth for the water.
Meanwhile, heat a wok over high heat. Pour in the oil, swirling to coat the bottom. Cook the chicken for 3 to 4 minutes on each side, or until almost cooked through. Stir in the broccoli. Cook for 2 to 3 minutes, stirring constantly. Stir in the reserved broth mixture. Reduce the heat and simmer, covered, for 5 minutes. Stir in the peas and tomatoes. Remove from the heat. Let stand for 30 seconds. Serve the stir-fry over the rice.
per serving
calories 247
total fat 5.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.0 g
cholesterol 73 mg
sodium 364 mg
carbohydrates 22 g
fiber 3 g
sugars 4 g
protein 29 g
dietary exchanges: 1 starch, 2 vegetable, 3 lean meat
## chicken with napa cabbage and rice noodles
A delectable sauce spiced with sriracha and sweetened with honey coats a ginger-scented mixture of chicken, rice noodles, and fresh vegetables in this one-dish meal.
SERVES 4 | 1½ cups per serving
SAUCE
2 tablespoons soy sauce (lowest sodium available)
2 teaspoons honey
1 teaspoon plain rice vinegar
½ teaspoon cornstarch
¼ teaspoon hot chile sauce (sriracha preferred)
4 ounces dried medium Asian rice stick noodles, broken in half
1 tablespoon toasted sesame oil
1 pound boneless skinless chicken breasts, all visible fat discarded, patted dry, and cut into ½-inch strips
1½ tablespoons minced peeled gingerroot
1 medium red bell pepper, chopped
½ cup matchstick-size carrot strips
4 cups thinly sliced napa cabbage
¾ cup sliced green onions (dark green part only)
¼ cup chopped fresh cilantro
¼ cup chopped unsalted peanuts, dry-roasted
In a small bowl, whisk together the sauce ingredients. Set aside.
Put the noodles in a large bowl. Pour in boiling water to cover. Let stand for 5 to 7 minutes, or until tender. Drain well in a colander.
Meanwhile, heat a wok over high heat. Pour in the oil, swirling to coat the wok. Cook the chicken for 5 minutes, or until lightly browned, stirring frequently. Transfer to a plate (the chicken won't be done at this point).
Cook the gingerroot for 30 seconds, still over high heat, stirring constantly. Stir in the bell pepper and carrot. Cook for 2 to 3 minutes, or until slightly softened, stirring constantly (add a little water if the vegetables are sticking). Stir in the cabbage. Cook for 1 minute, stirring constantly. Stir in the green onions, chicken, and sauce. Cook for 1 minute, or until the chicken is no longer pink in the center and the vegetables are tender-crisp, stirring constantly. Stir in the noodles. Just before serving, sprinkle with the cilantro and peanuts.
per serving
calories 373
total fat 11.0 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 3.5 g
monounsaturated fat 4.5 g
cholesterol 73 mg
sodium 415 mg
carbohydrates 36 g
fiber 4 g
sugars 7 g
protein 29 g
dietary exchanges: 2 starch, 1 vegetable, 3 lean meat
COOK'S TIP ON RICE STICK NOODLES: Rice stick noodles come in various sizes, from thin vermicelli-like strands to wide, hearty noodles. For this recipe, look for noodles that are about the width of spaghetti or linguine. They are available in Asian specialty markets and in the Asian aisle of some supermarkets.
## shredded beef with bok choy and carrots
This is so good that you might want to double the recipe and have leftovers. For a change from brown rice, try serving this entrée over another whole grain, such as bulgur or farro.
SERVES 4 | 1 heaping cup per serving
3 tablespoons dry sherry
1 tablespoon soy sauce (lowest sodium available)
2 teaspoons grated peeled gingerroot
2 to 3 medium garlic cloves, crushed or minced
½ teaspoon red chili paste
1 pound flank steak, all visible fat discarded, sliced across the grain into ⅛-inch strips
1½ teaspoons canola or peanut oil and 1½ teaspoons canola or peanut oil (if needed), divided use
6 stalks bok choy, thinly sliced
5 medium carrots, cut into matchstick-size strips
½ cup fat-free, low-sodium beef broth
1 tablespoon cornstarch
2 tablespoons water
In a large glass baking dish, stir together the sherry, soy sauce, gingerroot, garlic, and chili paste. Add the beef, turning to coat. Let stand for 10 minutes.
Drain the beef, discarding the marinade. Pat it dry.
Heat a wok over high heat. Pour in 1½ teaspoons oil, swirling to coat the bottom. Cook the beef for 2 minutes, or until just cooked, stirring constantly. Using a slotted spoon, transfer the beef to a plate.
If the wok is dry, heat the remaining 1½ teaspoons oil, swirling to coat the bottom. Cook the bok choy and carrots for 2 to 3 minutes, stirring constantly. Stir in the beef and broth.
Working quickly, put the cornstarch in a small bowl. Add the water, whisking to dissolve. Stir into the beef mixture. Cook for 1 minute, or until the sauce thickens, stirring constantly.
per serving
calories 256
total fat 9.5 g
saturated fat 2.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 4.5 g
cholesterol 69 mg
sodium 279 mg
carbohydrates 12 g
fiber 3 g
sugars 5 g
protein 27 g
dietary exchanges: 2 vegetable, 3 lean meat
COOK'S TIP: The flank steak will be easier to slice if it's partially frozen. To avoid diluting the flavors, thaw the slices before adding them to the marinade.
COOK'S TIP ON CUTTING MATCHSTICK-SIZE STRIPS: A mandoline slicer is a handy tool to use when you have a lot of vegetables to cut. Most can make thin or thick slices, as well as matchstick-size strips and crinkle or waffle cuts.
## japanese stir-fry
This dish has all the flavors of sukiyaki, a Japanese dish that is usually cooked at the table, with all the ingredients kept separate. We simplify the process by stir-frying everything together.
SERVES 4 | 1⅓ cups per serving
7 ounces dried soba (buckwheat) noodles
½ cup fat-free, low-sodium beef broth
½ cup dry sherry or fresh orange juice
2 tablespoons light brown sugar
2 tablespoons soy sauce (lowest sodium available)
2 teaspoons grated peeled gingerroot
1 to 1½ teaspoons hot chili oil
½ teaspoon pepper
1 teaspoon canola or corn oil
1 pound boneless top round steak, all visible fat discarded, patted dry, and sliced across the grain into strips 2 to 3 inches long and ½ to 1 inch wide
2 cups thinly sliced napa cabbage
1 cup thinly sliced shiitake mushrooms, stems discarded
1 cup diagonally sliced celery
½ cup diagonally sliced green onions
1 8-ounce can bamboo shoots, drained and slivered
Prepare the soba noodles using the package directions, omitting the salt. Set aside.
Meanwhile, in a small bowl, whisk together the broth, sherry, brown sugar, soy sauce, gingerroot, chili oil, and pepper. Set aside.
Heat a wok over high heat. Pour in the canola oil, swirling to coat the wok. Cook the beef for 3 to 4 minutes, or until just cooked, stirring constantly. Using a slotted spoon, transfer the beef to a plate. Discard the accumulated juices from the beef.
Cook the cabbage, mushrooms, celery, green onions, and bamboo shoots for 3 to 4 minutes, stirring constantly. Stir in the noodles, beef, and broth mixture. Cook for 2 to 3 minutes, or until heated through, stirring frequently. Serve immediately.
per serving
calories 267
total fat 4.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.0 g
cholesterol 39 mg
sodium 281 mg
carbohydrates 33 g
fiber 3 g
sugars 9 g
protein 24 g
dietary exchanges: 2 starch, 1 vegetable, 2½ lean meat
## taco time pork
A Mexican-inspired dish cooked in a wok? Why not? The sizzling pork and vegetables are reminiscent of fajitas.
SERVES 4 | 2 tacos per serving
1 tablespoon chili powder
2 teaspoons ground cumin
½ teaspoon pepper
1 pound pork tenderloin, all visible fat discarded, patted dry, and cut into thin strips
2 teaspoons canola or corn oil, 2 teaspoons canola or corn oil, and 2 teaspoons canola or corn oil, divided use
1 medium yellow summer squash, halved lengthwise and thinly sliced
1 cup chopped onion
2 medium Anaheim peppers, seeds and ribs discarded, thinly sliced (see Cook's Tip)
½ teaspoon salt
8 6-inch corn tortillas
3 cups shredded romaine
½ cup fat-free sour cream (optional)
In a medium bowl, stir together the chili powder, cumin, and pepper. Add the pork, stirring to coat.
Heat a wok over high heat. Pour in 2 teaspoons oil, swirling to coat the wok. Cook half the pork for 2 minutes, or until browned (the pork won't be done at this point), stirring constantly. Transfer to a plate. Repeat the process.
Heat the remaining 2 teaspoons oil, swirling to coat the wok. Cook the squash, onion, and Anaheim peppers for 3 minutes, stirring frequently. Stir in the pork, any juices, and the salt. Cook for 1 minute, or until the pork is no longer pink in the center, stirring frequently.
Warm the tortillas using the package directions. For each taco, put ⅔ cup pork mixture on a tortilla. Top with the romaine and sour cream.
per serving
calories 295
total fat 11.0 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 3.0 g
monounsaturated fat 5.5 g
cholesterol 74 mg
sodium 437 mg
carbohydrates 23 g
fiber 5 g
sugars 5 g
protein 28 g
dietary exchanges: 1 starch, 2 vegetable, 3 lean meat
## plum-sauced pork with asian vegetables
Chinese plum sauce lends its subtly sweet flavor to this dish, while sesame oil adds a nutty flavor. With succulent pork tenderloin, crisp vegetables, and plenty of tender noodles, this delicious meal can be on the table in minutes.
SERVES 4 | 1 cup stir-fry and ½ cup noodles per serving
4 ounces uncooked wide lo mein or other Asian noodles
½ to 1 teaspoon toasted sesame oil
1 tablespoon cornstarch
½ cup fat-free, low-sodium vegetable broth or water
¼ cup Chinese plum sauce
2 tablespoons soy sauce (lowest sodium available)
2 tablespoons plain rice vinegar or cider vinegar
1 tablespoon light brown sugar
1 tablespoon canola or corn oil
1 pound pork tenderloin, all visible fat discarded, patted dry, and sliced into 2 × ¼ inch-strips
16 ounces frozen stir-fry Asian vegetable blend
1½ teaspoons grated peeled gingerroot
1 large garlic clove, minced
¼ cup slivered almonds, dry-roasted
Prepare the noodles using the package directions, omitting the salt. Drain well in a colander. Return the noodles to the pan. Stir in the sesame oil. Set aside.
Meanwhile, put the cornstarch in a small bowl. Add the broth, whisking to dissolve. Whisk in the plum sauce, soy sauce, vinegar, and brown sugar. Set aside.
Heat a wok over high heat. Pour in the canola oil, swirling to coat the wok. Cook the pork for 2 to 3 minutes, or until no longer pink on the outside, stirring frequently. Transfer to a plate. Set aside.
In the wok, still over high heat, cook the vegetables, gingerroot, and garlic for 2 to 3 minutes, or until tender, stirring frequently. Stir in the pork and any accumulated juices. Cook for 1 minute. Stir the plum sauce mixture, then stir it into the pork mixture. Cook for about 1 minute, or until the sauce thickens and bubbles, stirring constantly.
Serve the pork mixture over the noodles. Sprinkle with the almonds.
per serving
calories 387
total fat 10.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 2.5 g
monounsaturated fat 5.5 g
cholesterol 60 mg
sodium 361 mg
carbohydrates 45 g
fiber 4 g
sugars 12 g
protein 29 g
dietary exchanges: 2½ starch, 2 vegetable, 3 lean meat
COOK'S TIP: Read the labels when you buy Asian noodles. Some have very little if any sodium, but others have almost 500 milligrams of sodium per serving.
STIR-FRYING BONUS: If you're cutting back on sugar or can't find plum sauce, try this simple stir-fry sauce that works with nearly any combination of protein and vegetables: In a small bowl stir together 2½ teaspoons plain rice vinegar, 1½ teaspoons soy sauce (lowest sodium available), 1 teaspoon minced garlic, and 1 teaspoon grated peeled gingerroot.
## vegetarian fried rice
This vegan version of fried rice gets a protein boost from tofu rather than egg. It makes a delicious entrée, or serve ½ cup as a side dish.
SERVES 4 | 1½ cups per serving
1½ cups uncooked brown rice
1 tablespoon canola or peanut oil
8 ounces light firm tofu, patted dry and crumbled
1 cup sliced button mushrooms
1 cup snow peas, trimmed
1 medium green onion, thinly sliced
½ cup frozen green peas, thawed
1 tablespoon soy sauce (lowest sodium available)
1 teaspoon toasted sesame oil
Prepare the rice using the package directions, omitting the salt and margarine. Set aside.
Heat a wok over high heat. Pour in the canola oil, swirling to coat the wok. Cook the tofu, mushrooms, snow peas, and green onion for 1 to 2 minutes, or until the mushrooms are soft and the snow peas and green onion are slightly wilted, stirring constantly. Stir in the green peas, soy sauce, and sesame oil. Stir in the rice. Cook until heated through, stirring constantly.
per serving
calories 231
total fat 7.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 2.5 g
monounsaturated fat 3.5 g
cholesterol 0 mg
sodium 146 mg
carbohydrates 32 g
fiber 4 g
sugars 3 g
protein 10 g
dietary exchanges: 2 starch, 1 lean meat, ½ fat
## lentils with mushrooms, tomatoes, and kale
Earthy cremini mushrooms, hearty lentils, fresh kale, and juicy tomatoes make a meatless meal that's brimming with flavor.
SERVES 4 | 1½ cups per serving
2 cups fat-free, low-sodium vegetable broth and ½ cup fat-free, low-sodium vegetable broth, divided use
1 cup dried lentils, sorted for stones and shriveled lentils, rinsed, and drained
2 teaspoons canola or corn oil
1 small onion, thinly sliced
8 ounces brown (cremini) mushrooms, thinly sliced
¼ cup dry red wine (regular or nonalcoholic)
4 cups coarsely chopped kale, any large stems and ribs discarded
2 medium tomatoes, peeled and diced
1 teaspoon salt-free all-purpose seasoning blend
¼ cup slivered almonds, dry-roasted
In a medium saucepan, bring 2 cups broth to a boil over high heat. Stir in the lentils. Reduce the heat and simmer, covered, for 30 minutes, or until tender. Drain well in a fine-mesh sieve.
Heat a wok over high heat. Pour in the oil, swirling to coat the wok. Cook the onion for 1½ minutes, stirring constantly. Stir in the mushrooms. Cook for 2 to 3 minutes, or until slightly golden brown, stirring frequently. Stir in the wine. Cook for 2 to 3 minutes, stirring constantly. Stir in the kale. Cook for 1 to 2 minutes, or until wilted, stirring constantly. Stir in the lentils, tomatoes, seasoning blend, and the remaining ½ cup broth. Cook for 2 to 3 minutes, stirring frequently. Just before serving, sprinkle with the almonds.
per serving
calories 301
total fat 7.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 3.5 g
cholesterol 0 mg
sodium 50 mg
carbohydrates 42 g
fiber 15 g
sugars 6 g
protein 20 g
dietary exchanges: 2 starch, 2 vegetable, 1½ lean meat
## green beans in spicy sauce
These hot and zesty green beans pair perfectly with nearly any stir-fried dish.
SERVES 4 | ¾ cup per serving
SAUCE
1 teaspoon cornstarch
3 tablespoons water
1 teaspoon canola or peanut oil
1 teaspoon soy sauce (lowest sodium available)
½ teaspoon sugar
½ teaspoon toasted sesame oil
½ teaspoon white vinegar
½ teaspoon dry sherry (optional)
Pinch of pepper (white preferred)
1 teaspoon canola or peanut oil and 1 teaspoon canola or peanut oil, divided use
12 ounces green beans, trimmed
2 small fresh red hot chiles, such as serranos, minced (see Cook's Tip)
2 teaspoons grated peeled gingerroot
2 teaspoons minced garlic
Put the cornstarch in a small bowl. Add the water, stirring to dissolve. Whisk in the remaining sauce ingredients. Set aside.
Heat a wok over high heat. Pour in 1 teaspoon canola oil, swirling to coat the wok. When a wisp of white smoke appears, stir in the green beans. Cook for 2 minutes, or until softened, stirring constantly. Using a slotted spoon, transfer the green beans to a colander.
Pour the remaining 1 teaspoon canola oil into the wok. Stir in the chiles, gingerroot, and garlic. Cook for 1 minute, still over high heat, stirring constantly. Stir in the green beans. Cook for 1 minute, stirring constantly. Make a well in the center of the green beans. Stir the sauce, then pour it into the well. Quickly stir the green beans and sauce together. When the sauce thickens, remove from the heat. Serve immediately.
per serving
calories 71
total fat 4.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 0 mg
sodium 39 mg
carbohydrates 8 g
fiber 2 g
sugars 4 g
protein 2 g
dietary exchanges: 1 vegetable, 1 fat
## mediterranean mushrooms and bell peppers
This vegetable dish features plenty of fresh basil, garlic, and lemon zest. You can use just one color of bell pepper if you'd like, but it's prettier and more flavorful if you use several colors. Serve it as a side dish, or use it to top pasta or homemade pizza.
SERVES 4 | ¾ cup per serving
2 teaspoons olive oil
3 medium garlic cloves, minced
8 ounces button mushrooms, thinly sliced
⅛ teaspoon salt
1 medium red bell pepper, cut into thin strips
1 medium green bell pepper, cut into thin strips
1 medium yellow bell pepper, cut into thin strips
1½ teaspoons grated lemon zest
½ cup fresh basil, minced
Pepper to taste (freshly ground preferred)
Heat a wok over medium heat. Pour in the oil, swirling to coat the wok. Cook the garlic for 1 minute, stirring frequently. Stir in the mushrooms and salt. Cook for 5 minutes, stirring occasionally.
Increase the heat to high. Stir in the bell peppers. Cook for 7 to 8 minutes, or until tender-crisp, stirring frequently. Stir in the zest. Cook for 1 minute, stirring frequently. Stir in the basil and pepper.
per serving
calories 61
total fat 2.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 0 mg
sodium 79 mg
carbohydrates 8 g
fiber 2 g
sugars 4 g
protein 3 g
dietary exchanges: 2 vegetable, ½ fat
warm cinnamon-raisin apples
## warm cinnamon-raisin apples
The wok isn't just for savory dishes. For this sweet stir-fried dessert, sizzling apples are combined with a sauce that's fragrant with cinnamon and nutmeg. Serve this on its own or atop a scoop of fat-free frozen vanilla yogurt.
SERVES 4 | ½ cup per serving
1 tablespoon light or dark brown sugar
2 teaspoons cornstarch
1 teaspoon ground cinnamon
¼ teaspoon ground nutmeg (freshly grated preferred)
⅓ cup 100% apple juice and ⅔ cup 100% apple juice, divided use
2 teaspoons canola or corn oil
2 medium Braeburn, Rome Beauty, or Golden Delicious apples, peeled if desired, thinly sliced, and patted dry
2 tablespoons golden raisins
¼ cup chopped walnuts, dry-roasted
In a small bowl, stir together the brown sugar, cornstarch, cinnamon, and nutmeg. Stir in ⅓ cup apple juice. Set aside.
Heat a wok over high heat. Pour in the oil, swirling to coat the wok. Cook the apples for 2 to 3 minutes, or until tender and lightly browned, stirring constantly.
Stir in the raisins and the remaining ⅔ cup apple juice. Stir in the brown sugar mixture. Cook for 4 to 6 minutes, or until the sauce is thickened, stirring constantly. Just before serving, sprinkle with the walnuts.
per serving
calories 172
total fat 7.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 4.0 g
monounsaturated fat 2.0 g
cholesterol 0 mg
sodium 4 mg
carbohydrates 28 g
fiber 2 g
sugars 21 g
protein 2 g
dietary exchanges: 2 fruit, 1½ fat
# braising
spicy catfish with potatoes and tomatoes
cod with fennel, tomatoes, and orange
shrimp and grits with greens
chicken with 40 cloves of garlic
chicken with dried plums and sage
curried chicken thighs
beer-braised beef with molasses
sauerbraten
anise-rubbed pork roast
moroccan-spiced lentils and vegetables
korean-style tofu with mustard greens
quinoa with kale, chickpeas, and feta
sweet-and-sour red cabbage
tender radishes with lemon and mint
eggs with smoked sausage, spinach, and tomatoes
pomegranate pears
Braising is perhaps one of the least familiar techniques to many American home cooks. If you fall into this category, you'll wonder why you haven't tried braising sooner once you've experienced the delicious food it creates. Braising involves layering flavors in a heavy pot. It often begins with a foundation of caramelized meat or poultry to which herbs, aromatics, and vegetables are added before the whole dish is simmered in a fragrant liquid such as wine, beer, broth, vinegar, or fruit juice. Because herbs and aromatics are an important element in braising, little salt—if any—is needed.
Another benefit of braising is that an entire meal can be cooked in the same skillet, so you're easily able to include vegetables in your main dish, such as with Moroccan-Spiced Lentils and Vegetables and Eggs with Smoked Sausage, Spinach, and Tomatoes. The braising liquid is often used to make a sauce that enhances the flavor of the dish and helps retain the nutrients in the ingredients.
If you're a cook who doesn't want to spend a lot of time in the kitchen, braising is an ideal cooking technique that you'll want to use again and again. In fact, you might think of a braising pot as a heavy slow cooker without a plug. And much like a slow cooker, the food cooks low and slow without much tending. Because the dish cooks in one skillet, cleanup is easy, too.
Braising doesn't call for perfect timing, either. The food is cooked gently over low heat, making it a forgiving method.
HERE'S HOW THIS TECHNIQUE WORKS*:
1. For many recipes, first BROWN the food on all sides, using a small amount of healthy oil (or cooking spray). To do this, heat the oil in the pan and then add the meat or vegetables. (Be sure the food is dry; otherwise, moisture will cause it to steam rather than brown.) Then let it sit—without moving it—until the bottom is seared; if you turn the food before that, it will stick to the pan and the surface won't caramelize. Turn to brown all sides. In many braising recipes, the meat is removed from the pot at this point and then returned later.
2. Next, ADD herbs and aromatics such as onion and garlic. Match the herbs and aromatics to the cooking time; a longer cooking time requires bigger pieces so they don't break down while cooking.
3. STIR IN the vegetables, beans, and/or legumes. Return the meat to the pan if it was removed earlier.
4. ADD a small amount of liquid. (The liquid should not cover the meat, fish, or poultry.) The food is gently simmered on the stovetop or in the oven at a low temperature, tightly covered.
5. After the food is cooked, it can REST in the braising liquid. Once it's removed, the braising liquid can be reduced to make a rich, flavorful sauce.
*Sometimes the order of the steps varies
TO BRAISE:
To cook food in a small amount of liquid on low heat and tightly covered (on the stovetop or in the oven), often browning it first.
Tools & Equipment Needed: Pot with a tight-fitting lid (such as a Dutch oven or deep skillet)—the pot should be heavy so as to maintain an even temperature and small enough to hold the food snugly, with sides high enough to contain the braising liquid; oven thermometer; instant-read thermometer; oven mitts and pot holders; kitchen timer
TIPS:
• You need to have a tight lid for your pot to keep the steam and vapors—and flavor—close to the food. If the pot lid isn't snug, you can wrap aluminum foil around the edge to seal it. You can also place a sheet of cooking parchment, a little larger than the pot, over the ingredients. Press down until it is just touching the food, with the edges outside the pot, then top with the lid.
• Almost any liquid can be used for braising to add its own unique flavor to the dish. Most braises use broth or wine, but you can also try beer or cider, or add a splash of 100 percent fruit juice to the pot. In more delicate dishes, water is all that's needed.
• A constant simmer is not always easy to regulate, especially on a gas stovetop, so our recipes don't state at what temperature to simmer. Even at the lowest setting on some stovetops, the heat may be too intense, which will cause the liquid to boil (try using a burner plate, sometimes called a simmer plate, which helps diffuse the heat). When simmering, a bubble should break through the surface of the liquid every second or two. If more bubbles rise to the surface, then lower the heat or shift the pot to one side of the burner.
• Because braising meat or poultry cooks the fat out into the liquid, begin a day ahead if possible. Prepare the dish, then refrigerate it overnight. The extra time lets the flavors blend and causes the chilled fat to rise to the top and harden, making it easy to remove.
BEST FOODS FOR BRAISING
Seafood: Large, firm fish, such as halibut, tuna, or salmon, work well. Scallops and shrimp are also popular choices and are sturdy enough to stand up to braising. More delicate fillets can also be braised, as in Cod with Fennel, Tomatoes, and Orange or Spicy Catfish with Potatoes and Tomatoes, but the braising time will be shorter to keep the fish from falling apart.
Poultry: Bone-in pieces work best, as in Curried Chicken Thighs, because boneless, skinless breasts cook more quickly and can dry out. However, they can be braised successfully, as in Chicken with 40 Cloves of Garlic.
Meat: Lean cuts from the largest muscles work best in braising because they are high in fibrous protein. Try the shanks, chuck roasts, and top or bottom rounds, as in Beer-Braised Beef with Molasses. Avoid more tender cuts such as sirloin.
Vegetarian Protein: Because they absorb flavors so well, vegetarian protein sources such as seitan, tempeh, and tofu, including Korean-Style Tofu with Mustard Greens, are ideal for braising in a flavorful liquid.
Vegetables: Braising is perfect for tough, fibrous vegetables such as carrots, parsnips, beets, celery, and radishes, including Tender Radishes with Lemon and Mint; but it also works well with eggplant, leeks, cauliflower, broccoli, greens, and cabbage, such as Sweet-and-Sour Red Cabbage. Browning the vegetables caramelizes the sugars and adds sweetness, cooking them slowly over low heat keeps them tender, and using just a small amount of liquid concentrates the flavors.
Fruit: Braise fruit and serve it as a side dish, a dessert, or as part of a salad. Good choices are peaches, plums, apples, and pears, such as Pomegranate Pears.
## spicy catfish with potatoes and tomatoes
Tender potato wedges, spicy chiles, and sweet grape tomatoes create a savory base for delicate catfish fillets. Serve this entrée in shallow soup bowls so you can enjoy all the broth.
SERVES 4 | 3 ounces fish and 1 cup potato mixture per serving
1 tablespoon olive oil and 1 tablespoon olive oil (extra virgin preferred), divided use
1 pound red potatoes, quartered
½ cup chopped onion
1 medium poblano pepper, seeds and ribs discarded, chopped (see Cook's Tip)
¼ teaspoon salt and ¼ teaspoon salt, divided use
1 cup grape tomatoes
½ cup fat-free, low-sodium chicken broth
4 catfish or tilapia fillets (about 4 ounces each), rinsed and patted dry
¼ cup chopped fresh cilantro
¼ teaspoon pepper
In a large, heavy skillet, heat 1 tablespoon oil over medium-high heat, swirling to coat the bottom. Cook the potatoes, onion, poblano, and ¼ teaspoon salt, covered, for about 7 minutes, or until the potatoes are just tender-crisp, stirring occasionally.
Stir in the tomatoes and broth. Place the fish in the mixture. Bring to a boil, still over medium-high heat. Reduce the heat and simmer, covered, for 12 minutes, or until the fish flakes easily when tested with a fork. Drizzle with the remaining 1 tablespoon oil. Sprinkle with the cilantro, pepper, and the remaining ¼ teaspoon salt.
per serving
calories 272
total fat 10.0 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 6.0 g
cholesterol 66 mg
sodium 375 mg
carbohydrates 24 g
fiber 3 g
sugars 4 g
protein 22 g
dietary exchanges: 1 starch, 1 vegetable, 3 lean meat
## cod with fennel, tomatoes, and orange
Braising is a perfect technique for cooking meaty fish like cod because the braising liquid keeps the fish moist.
SERVES 4 | 3 ounces fish and ¾ cup fennel mixture per serving
2 teaspoons olive oil
1½ cups chopped onion
1 medium fennel bulb, halved crosswise, then cut lengthwise into thin slices
3 large garlic cloves, minced
1 14.5-ounce can no-salt-added diced tomatoes, undrained
¼ cup water
1 teaspoon grated orange zest
¼ cup fresh orange juice
2 teaspoons chopped fresh thyme
¼ teaspoon pepper (freshly ground preferred)
4 cod fillets (about 4 ounces each), rinsed and patted dry
In a large, heavy skillet, heat the oil over medium heat, swirling to coat the bottom. Cook the onion for about 3 minutes, or until beginning to soften, stirring frequently. Stir in the fennel. Cook for 1 minute, stirring constantly. Stir in the garlic. Cook for 30 seconds, stirring constantly.
Stir in the tomatoes with liquid, water, orange juice, and thyme. Increase the heat to high and bring to a boil. Reduce the heat and simmer, covered, for 4 to 5 minutes, or until the fennel is almost tender.
Stir in the orange zest and pepper. Place the fish in the mixture. Simmer, covered, for 6 to 9 minutes, or until the fish flakes easily when tested with a fork.
per serving
calories 180
total fat 3.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 43 mg
sodium 107 mg
carbohydrates 17 g
fiber 4 g
sugars 7 g
protein 20 g
dietary exchanges: 3 vegetable, 3 lean meat
## shrimp and grits with greens
This lighter version of a Southern classic proves you don't have to braise greens for a long time. A sauté with a short braise keeps them bright and crisp.
SERVES 4 | 2 ounces shrimp, ⅔ cup vegetable mixture, and ½ cup grits per serving
3 slices turkey bacon, chopped
2 teaspoons olive oil
1½ cups chopped onions
1¼ cups chopped red bell peppers
2 cups chopped collard greens (any tough stems discarded), mustard greens, turnip greens, or baby kale
1 tablespoon cider vinegar
1 cup fat-free, low-sodium chicken or vegetable broth
¼ cup dry white wine (regular or nonalcoholic)
2 teaspoons chopped fresh thyme
12 ounces raw medium shrimp (thawed if frozen), peeled, rinsed, and patted dry
1 teaspoon Louisiana-style hot-pepper sauce
½ cup uncooked quick-cooking grits
In a Dutch oven, cook the bacon over medium heat for 2 to 3 minutes, or until browned, stirring frequently. Pour in the oil. Stir in the onions. Cook for 3 minutes, or until the onion begins to soften, stirring occasionally. Stir in the bell peppers. Cook for 1 minute, or until slightly softened, stirring occasionally.
Stir in the greens. Cook for 2 minutes, or until bright green, stirring occasionally. Stir in the vinegar. Bring to a boil. Stir in the broth, wine, and thyme. Return to a boil. Reduce the heat and simmer, covered, for 7 to 10 minutes, or until the greens are tender-crisp. Add the shrimp. Cook, covered, for 2 to 3 minutes, or until pink on the outside. Stir in the hot-pepper sauce. Meanwhile, prepare the grits using the package directions. Spoon into shallow serving bowls. Top with the shrimp mixture.
per serving
calories 231
total fat 4.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.5 g
cholesterol 115 mg
sodium 348 mg
carbohydrates 26 g
fiber 3 g
sugars 5 g
protein 17 g
dietary exchanges: 1 starch, 2 vegetable, 2 lean meat
## chicken with 40 cloves of garlic
If you're concerned about all that garlic, don't be! As the chicken braises in the oven, so does the garlic, giving it a sweet flavor and soft texture.
SERVES 6 | 3 ounces chicken per serving
2 teaspoons olive oil
6 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded
40 medium garlic cloves (from 3 to 4 heads)
½ cup dry white wine (regular or nonalcoholic)
1½ teaspoons fresh thyme or ½ teaspoon dried thyme, crumbled
⅓ cup fat-free, low-sodium chicken broth, if needed, and ¼ cup fat-free, low-sodium chicken broth or water, divided use
2 tablespoons white whole-wheat flour
Preheat the oven to 325°F. In a Dutch oven, heat the oil over medium-high heat, swirling to coat the bottom. Cook the chicken for 2 minutes on each side, or until browned. Add the garlic. Cook for 1 to 2 minutes, or until lightly browned, stirring frequently. Stir in the wine and thyme. Bring to a boil over high heat. Remove from the heat.
Bake, covered, for 25 to 30 minutes, or until the chicken is no longer pink in the center. Transfer the chicken and garlic to a platter. Cover to keep warm. Pour the cooking liquid into a measuring cup. Add enough of the ⅓ cup broth to measure 1 cup. Return the liquid to the pot. Bring to a boil over high heat. Reduce the heat to medium. Put the flour in a bowl. Add the remaining ¼ cup broth, stirring to dissolve. Stir into the cooking liquid. Cook for 4 to 5 minutes, or until thickened, stirring constantly.
per serving
calories 186
total fat 4.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 73 mg
sodium 141 mg
carbohydrates 8 g
fiber 1 g
sugars 0 g
protein 26 g
dietary exchanges: 1 vegetable, 3 lean meat
COOK'S TIP: This recipe uses a lot of garlic, so look for containers of whole peeled garlic in the produce section of your grocery store to save yourself time and effort.
## chicken with dried plums and sage
A hint of sweetness from dried fruit balances the tang of Dijon mustard and slight bitterness of sage in this lightly seasoned dish.
SERVES 4 | 3 ounces chicken and ¼ cup vegetables and fruit per serving
1 teaspoon canola or corn oil and 2 teaspoons canola or corn oil, divided use
4 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded
1 medium onion, thinly sliced
1 large carrot, thinly sliced
½ cup fat-free, low-sodium chicken broth
4 medium dried plums, quartered
1 tablespoon coarse-grain Dijon mustard (lowest sodium available)
½ teaspoon dried rubbed sage
¼ teaspoon salt
¼ teaspoon pepper
In a large, heavy, nonstick skillet, heat 1 teaspoon oil over medium-high heat, swirling to coat the bottom. Cook the chicken for 2 minutes on each side, or until browned. Transfer to a large plate.
In the same skillet, still over medium-high heat, heat the remaining 2 teaspoons oil, swirling to coat the bottom. Cook the onion and carrot for about 3 minutes, stirring frequently.
Stir in the remaining ingredients. Bring to a boil. Add the chicken, turning to coat. Reduce the heat and simmer, covered, for 10 to 12 minutes, or until the chicken is no longer pink in the center. Transfer the chicken to a platter.
Increase the heat to medium high and bring to a boil. Boil for 2 minutes, or until the onion mixture is slightly thickened, stirring occasionally. Spoon over the chicken.
per serving
calories 279
total fat 7.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 3.0 g
cholesterol 73 mg
sodium 376 mg
carbohydrates 31 g
fiber 6 g
sugars 23 g
protein 26 g
dietary exchanges: ½ fruit, 3 lean meat
## curried chicken thighs
Simmering chicken thighs in a spiced tomato-coconut sauce yields exotic flavor with little effort. Serve the curry with brown basmati rice.
SERVES 4 | 1 thigh and 1 cup vegetables per serving
1 teaspoon olive oil
1 large onion, halved, then cut into ¾-inch wedges
1 tablespoon minced peeled gingerroot
2½ teaspoons curry powder
3 large garlic cloves, minced
½ teaspoon ground cumin
1 14.5-ounce can no-salt-added diced tomatoes, undrained
½ cup lite coconut milk
½ cup fat-free, low-sodium chicken broth
4 bone-in, skinless chicken thighs (about 5 ounces each), all visible fat discarded
2 medium sweet potatoes, peeled and cubed
2 cups chopped rainbow chard, tough stems discarded
⅓ cup chopped fresh cilantro
In a Dutch oven, heat the oil over medium heat, swirling to coat the bottom. Cook the onion for 3 minutes, stirring frequently. Stir in the gingerroot, curry powder, garlic, and cumin. Cook for 30 seconds, stirring constantly.
Stir in the tomatoes with liquid, coconut milk, and broth. Bring to a boil. Add the chicken and sweet potatoes. Return to a boil. Reduce the heat and simmer, covered, for 15 minutes. Turn over the chicken. Stir in the chard. Cook, covered, for 10 to 15 minutes, or until the chicken is no longer pink in the center.
Transfer the chicken and vegetables to a serving bowl. Bring the sauce to a boil over high heat. Boil for 3 to 5 minutes, stirring frequently. Stir in the cilantro. Pour the sauce over all.
per serving
calories 346
total fat 12.5 g
saturated fat 4.0 g
trans fat 0.0 g
polyunsaturated fat 2.5 g
monounsaturated fat 4.5 g
cholesterol 86 mg
sodium 191 mg
carbohydrates 30 g
fiber 5 g
sugars 11 g
protein 28 g
dietary exchanges: 1½ starch, 2 vegetable, 3 lean meat, ½ fat
## beer-braised beef with molasses
Tender beef is cooked "low and slow" in a heady combination of beer, molasses, tomatoes, and bell pepper, with just a hint of zippy mustard. Try it over whole-grain, no-yolk noodles or low-fat mashed potatoes.
SERVES 6 | ¾ cup per serving
1 tablespoon canola or corn oil
1½ pounds boneless bottom round steak, halved, all visible fat discarded
1 14.5-ounce can no-salt-added stewed tomatoes, undrained
6 ounces light beer (regular or nonalcoholic)
2 medium green bell peppers, chopped
1½ cups chopped onions
2 teaspoons dried basil, crumbled
2 medium garlic cloves, minced
2 tablespoons dark molasses
1 tablespoon yellow mustard (lowest sodium available)
½ teaspoon salt
In a Dutch oven, heat the oil over medium-high heat, swirling to coat the bottom. Cook half the beef for 2 minutes on each side, or until browned. Transfer the beef to a plate. Repeat with the remaining beef.
Stir in the remaining ingredients except the salt. Increase the heat to high and bring to a boil. Return the beef and any accumulated juices to the Dutch oven, pressing down lightly so that the beef is partially covered. Reduce the heat and simmer, covered, for 2 to 2½ hours, or until the beef is very tender and falling apart when pierced with a fork. Using two forks, shred the beef. Stir in the salt.
per serving
calories 242
total fat 6.5 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 4.0 g
cholesterol 61 mg
sodium 273 mg
carbohydrates 15 g
fiber 2 g
sugars 9 g
protein 27 g
dietary exchanges: 2 vegetable, ½ other carbohydrate, 3 lean meat
## sauerbraten
Be sure to plan ahead for this popular sweet-and-sour German dish that will feed a crowd or provide plenty of leftovers, because the beef marinates for two to three days before cooking. We've added roasted red bell peppers for color and a modern twist.
SERVES 12 | 3 ounces beef per serving
1½ cups dry red wine (regular or nonalcoholic)
1½ cups red wine vinegar
1 cup water
2 medium carrots, sliced
1 medium onion, sliced
6 whole cloves
4 black peppercorns, crushed using a mortar and pestle
2 medium dried bay leaves
½ teaspoon caraway seeds
¼ teaspoon ground coriander
1 3-pound boneless beef rump roast, all visible fat discarded
Cooking spray
½ cup crushed low-fat gingersnaps (about 7)
7 ounces chopped roasted red bell peppers, drained if bottled
In a medium saucepan, stir together the wine, vinegar, water, carrots, onion, cloves, peppercorns, bay leaves, caraway seeds, and coriander. Bring to a boil over high heat. Reduce the heat and simmer for 5 minutes. Remove from the heat. Let stand until cool.
Using a fork, pierce the beef all over. Transfer to a large bowl or baking dish.
Pour the marinade over the beef, turning to coat. Cover and refrigerate for two to three days, turning occasionally.
Drain the beef, reserving the marinade. Pat the beef dry with paper towels.
Lightly spray a Dutch oven with cooking spray. Heat over medium-high heat. Cook the beef for 10 minutes, turning to brown it on all sides. Pour in the marinade. Bring to a boil over high heat. Boil for 5 minutes (this destroys harmful bacteria). Reduce the heat and simmer, covered, for 2 hours, or until the beef is tender. Transfer the beef to a cutting board. Let stand for 10 minutes before slicing.
Meanwhile, strain the cooking liquid through a fine-mesh sieve or colander placed over a bowl. Discard the solids. Skim off the fat and return the liquid to the Dutch oven. Stir in the gingersnaps and roasted peppers. Cook over medium heat for 10 minutes, or until bubbly, stirring frequently. Serve with the beef.
per serving
calories 164
total fat 4.0 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 1.5 g
cholesterol 64 mg
sodium 81 mg
carbohydrates 4 g
fiber 0 g
sugars 1 g
protein 26 g
dietary exchanges: 3 lean meat
## anise-rubbed pork roast
Braising lets the pork cook to tender, juicy perfection and absorb all the flavors from the rub and the cooking liquid. Sweet and aromatic anise seed, which is used in the rub, is a member of the parsley family that provides the predominant flavor in black jelly beans. People in India often chew on the seeds after a meal to aid their digestion and sweeten their breath.
SERVES 8 | 3 ounces pork per serving
½ teaspoon dried thyme, crumbled
½ teaspoon dried oregano, crumbled
½ teaspoon anise seeds
⅛ teaspoon pepper
1 2-pound boneless pork loin roast, all visible fat discarded
1 teaspoon canola or corn oil
1¾ cups fat-free, low-sodium chicken broth
½ cup dry white wine (regular or nonalcoholic)
1 medium onion, chopped
2 medium garlic cloves, minced
1 tablespoon dried parsley, crumbled
¼ cup fat-free sour cream
In a small bowl, stir together the thyme, oregano, anise seeds, and pepper. Sprinkle all over the pork. Using your fingertips, gently press the mixture so it adheres to the pork.
In a Dutch oven, heat the oil over medium-high heat, swirling to coat the bottom. Cook the pork for 30 minutes, turning to brown on all sides. Transfer to a plate.
Stir the broth and wine into the Dutch oven, scraping to dislodge any browned bits. Stir the onion, garlic, and parsley into the broth mixture. Place the pork back in the pot. Bring the broth mixture to a boil, still over medium-high heat. Reduce the heat to low. Cook, covered, for 2 hours, or until the pork is tender.
Transfer the pork to a cutting board. Let stand for 15 to 20 minutes before slicing.
Meanwhile, increase the heat to medium high and bring the sauce to a boil. Boil until reduced by about half. Reduce the heat to low and let the sauce cool slightly. Spoon some of the sauce into the sour cream (this reduces curdling), then stir the sour cream mixture into the sauce. Cook for 1 minute, stirring constantly. Spoon over the sliced pork.
per serving
calories 194
total fat 9.0 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.5 g
cholesterol 66 mg
sodium 66 mg
carbohydrates 4 g
fiber 1 g
sugars 2 g
protein 22 g
dietary exchanges: 3 lean meat
## moroccan-spiced lentils and vegetables
This hearty vegetarian stew is sure to satisfy, with meaty eggplant, sweet bell pepper, tender cabbage, and plump lentils. The warm blend of spices makes it perfect for a chilly evening.
SERVES 4 | 1½ cups per serving
2 teaspoons olive oil
1 medium onion, chopped
2 medium garlic cloves, minced
1 small eggplant, diced
½ small red cabbage, thinly sliced
1 medium red bell pepper, chopped
1 cup dried lentils, sorted for stones and shriveled lentils, rinsed, and drained
1 teaspoon crushed coriander seeds (or ground coriander)
1 teaspoon crushed cumin seeds (or ground cumin)
½ teaspoon crushed anise seeds
4 cups fat-free, low-sodium vegetable broth
½ cup fresh cilantro, coarsely chopped
1 small lemon, cut into 4 wedges
In a large, heavy saucepan or Dutch oven, heat the oil over medium-high heat, swirling to coat the bottom. Cook the onion for about 3 minutes, or until soft, stirring frequently. Stir in the garlic. Cook for 30 seconds, stirring occasionally.
Stir in the eggplant, cabbage, and bell pepper. Cook for 5 to 6 minutes, or until the eggplant is lightly golden brown and the cabbage and bell pepper are tender, stirring frequently.
Stir in the lentils, coriander seeds, cumin seeds, and anise seeds. Pour in the broth. Increase the heat to high and bring to a boil. Reduce the heat and simmer, covered, for 25 to 30 minutes, or until the lentils and vegetables are tender, stirring occasionally. Stir in the cilantro. Cook for 3 minutes, stirring occasionally. Serve with the lemon wedges.
per serving
calories 264
total fat 3.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 0 mg
sodium 49 mg
carbohydrates 46 g
fiber 18 g
sugars 12 g
protein 17 g
dietary exchanges: 2 starch, 3 vegetable, 1 lean meat
COOK'S TIP ON CRUSHING SPICES: Crushing your own spices and seeds adds more flavor than using the preground kind. The best tool for this is a mortar and pestle, but if you don't have one, you can crush the seeds between two spoons. Alternatively, spread them in a single layer on a cutting board and press them with the side of a chef's knife blade, or roll over them with a rolling pin.
## korean-style tofu with mustard greens
Despite its exotic flavors, this entrée is easy to prepare and the ingredients are available in most grocery stores. Tofu loses its blandness when simmered with Asian seasonings, sharp daikon radish, and peppery mustard greens. Serve it on its own or over brown rice to soak up the broth.
SERVES 4 | 3 ounces tofu and ½ cup greens mixture per serving
1 cup fat-free, low-sodium vegetable broth
1 tablespoon soy sauce (lowest sodium available)
1 tablespoon oyster sauce (lowest sodium available)
1 tablespoon light brown sugar
2 medium garlic cloves, minced
1 teaspoon minced peeled gingerroot
1 teaspoon toasted sesame oil
2 teaspoons canola or corn oil
8 cups coarsely chopped mustard greens, stems and ribs discarded
8 medium green onions, thinly sliced
8 ounces daikon radish, peeled and cut into ¼-inch slices (about 1 small radish)
12 ounces light extra-firm tofu, drained, patted dry, and cut into 1-inch slices
2 teaspoons sesame seeds, dry-roasted (optional)
In a small bowl, whisk together the broth, soy sauce, oyster sauce, brown sugar, garlic, gingerroot, and sesame oil. Set aside.
In a large, heavy, deep skillet, heat the canola oil over medium-high heat, swirling to coat the bottom. Cook the greens and green onions for 3 to 4 minutes, or until the greens are wilted, stirring occasionally.
Arrange the radish slices in a single layer on top of the greens mixture. Arrange the tofu slices in a single layer on the radish slices.
Pour in enough of the broth mixture to come halfway up the tofu. Bring to a simmer, still over medium-high heat. Reduce the heat and simmer, covered, for 10 minutes (no stirring needed).
Using a slotted spoon, transfer the tofu and vegetables to shallow serving bowls. Ladle the broth over all. Sprinkle with the sesame seeds.
per serving
calories 181
total fat 6.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 3.0 g
cholesterol 0 mg
sodium 349 mg
carbohydrates 20 g
fiber 8 g
sugars 9 g
protein 12 g
dietary exchanges: ½ starch, 2 vegetable, 1 lean meat, ½ fat
COOK'S TIP ON DAIKON RADISH: This large Asian radish has a sweet, fresh flavor. Most range from 6 to 15 inches long with skin that is either white or black. If you have extra, use it raw in salads, roast daikon cubes with other root vegetables, or add some to your next stir-fry.
## quinoa with kale, chickpeas, and feta
Tender greens mingle with fluffy quinoa, creamy chickpeas, and sharp feta in this main dish that's so full of flavors and textures that you're likely to discover something new in every bite.
SERVES 4 | ¾ cup kale mixture and ¾ cup quinoa per serving
1 cup uncooked quinoa, rinsed and drained
1 tablespoon olive oil
½ cup diced onion
2 medium garlic cloves, minced
1 15.5-ounce can no-salt-added chickpeas, rinsed and drained
1 cup fat-free, low-sodium vegetable broth
4 ounces chopped kale, any large stems discarded (about 4 cups tightly packed)
¼ teaspoon salt
⅓ cup crumbled fat-free feta cheese
Prepare the quinoa using the package directions, omitting the salt. Transfer to a medium bowl. Fluff with a fork. Set aside.
Meanwhile, in a large, heavy skillet, heat the oil over medium-high heat, swirling to coat the bottom. Cook the onion for 3 minutes, or until soft, stirring frequently. Stir in the garlic. Cook for 15 seconds, stirring constantly.
Stir in the chickpeas and broth. Bring to a boil, still over medium-high heat. Stir in the kale. Return to a boil. Reduce the heat and simmer, covered, for 8 minutes, or until the kale is softened, stirring occasionally. Remove from the heat. Stir in the salt.
Spoon the quinoa onto a serving platter or plates. Top with the chickpea mixture. Sprinkle with the feta.
per serving
calories 336
total fat 7.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 3.0 g
cholesterol 0 mg
sodium 396 mg
carbohydrates 53 g
fiber 8 g
sugars 4 g
protein 16 g
dietary exchanges: 3 starch, 1 vegetable, 1 lean meat
## sweet-and-sour red cabbage
This traditional German and Austrian side dish pairs perfectly with pork. The slow braising makes the cabbage tender and sweet, and gives the flavors plenty of time to mellow and blend. Serve it hot or cold.
SERVES 8 | ½ cup per serving
1 tablespoon canola or corn oil
1 large onion, thinly sliced
1 1-pound red cabbage, cored and thinly sliced (about 8 cups)
1 cup 100% apple juice
¼ cup firmly packed brown sugar
¼ cup cider vinegar
½ teaspoon pepper (freshly ground preferred)
½ teaspoon ground cinnamon
¼ teaspoon ground cloves
2 large Granny Smith apples, peeled if desired and chopped
In a large, heavy saucepan, heat the oil over medium-high heat, swirling to coat the bottom. Cook the onion for 3 minutes, or until soft, stirring frequently. Stir in the cabbage. Cook for 3 to 5 minutes, or until the cabbage is wilted, stirring frequently.
Stir in the remaining ingredients except the apples. Reduce the heat and simmer, covered, for 1 hour, stirring frequently.
Stir in the apples. Cook, covered, for 20 to 30 minutes, or until the apples are soft and the cabbage is very tender, stirring frequently.
per serving
calories 110
total fat 2.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 0 mg
sodium 20 mg
carbohydrates 23 g
fiber 2 g
sugars 18 g
protein 1 g
dietary exchanges: 1½ fruit, 1 vegetable, ½ fat
COOK'S TIP: This dish will taste even better the next day.
## tender radishes with lemon and mint
Radishes are the often-overlooked heroes of the root family. Inexpensive and full of vitamin C, they become softer and sweeter when cooked, making them a delicious companion for any simple roasted pork or chicken entrée.
SERVES 4 | ½ cup per serving
1 teaspoon canola or corn oil
½ cup finely chopped red onion
2 cups radishes, trimmed and halved lengthwise
¼ cup water
1 teaspoon grated lemon zest
2 tablespoons fresh lemon juice
2 teaspoons sugar
⅛ teaspoon salt
2 tablespoons chopped fresh mint
In a medium, heavy saucepan, heat the oil over medium-low heat, swirling to coat the bottom. Cook the onion for 5 minutes, or until soft, stirring occasionally.
Stir in the radishes. Cook for 1 minute. Stir in the water, lemon juice, sugar, and salt. Increase the heat to high and bring to a boil. Reduce the heat and simmer, covered, for 4 minutes, or until the radishes are just tender-crisp. Remove from the heat.
Stir in the mint and lemon zest. Let stand for 10 minutes to serve warm or 25 to 30 minutes to serve at room temperature. Or cover and refrigerate for 1 hour to serve chilled.
per serving
calories 39
total fat 1.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 0 mg
sodium 98 mg
carbohydrates 7 g
fiber 2 g
sugars 4 g
protein 1 g
dietary exchanges: 1 vegetable, 1½ lean meat, 1 fat
COOK'S TIP: Leftover radishes make a tasty and unusual addition to any salad.
eggs with smoked sausage, spinach, and tomatoes
## eggs with smoked sausage, spinach, and tomatoes
This zesty breakfast dish also makes an excellent light lunch or dinner. The vegetables balance the smokiness of the sausage and the peppery hot sauce. (See photo.)
SERVES 4 | 1 egg and ½ cup sausage mixture per serving
½ teaspoon canola or corn oil and 1 tablespoon canola or corn oil, divided use
4 ounces low-fat smoked turkey sausage, casings discarded, diced
4 large eggs
¼ cup water
1 cup loosely packed spinach, coarsely chopped
1 cup grape tomatoes, quartered
2 tablespoons chopped fresh Italian (flat-leaf) parsley or finely chopped green onions
¼ teaspoon pepper
2 teaspoons mild Louisiana-style hot-pepper sauce
In a large, heavy, nonstick skillet, heat ½ teaspoon oil over medium heat, swirling to coat the bottom. Cook the sausage for 5 minutes, or until beginning to brown lightly, stirring occasionally. Transfer to a small plate.
Meanwhile, crack the eggs into a bowl. Don't beat them. Reduce the heat to medium low. In the same skillet, heat the remaining 1 tablespoon oil, swirling to coat the bottom. Slide the eggs, one at a time, into the skillet. Cook for 1 minute. Gently pour the water into the skillet (not directly over the eggs). Sprinkle the eggs with the sausage, spinach, tomatoes, parsley, pepper, and hot-pepper sauce. Cook, covered, for 3 to 4 minutes, or until the egg whites are cooked.
per serving
calories 168
total fat 11.5 g
saturated fat 3.0 g
trans fat 0.0 g
polyunsaturated fat 2.5 g
monounsaturated fat 5.0 g
cholesterol 201 mg
sodium 362 mg
carbohydrates 5 g
fiber 1 g
sugars 3 g
protein 11 g
dietary exchanges: 1 vegetable, 1½ lean meat, 1 fat
## pomegranate pears
Fresh pears gently simmer in tangy-sweet pomegranate juice until they're mouthwateringly tender, then a hint of fresh orange zest and vanilla adds sophistication. Enjoy this guilt-free dessert warm, at room temperature, or chilled.
SERVES 4 | 1 pear half and 1 tablespoon sauce per serving
2 large firm Bosc or Bartlett pears (about 1 pound), peeled, halved, and cored
½ cup 100% pomegranate juice
1 tablespoon sugar
1 teaspoon grated orange zest
1 teaspoon vanilla extract
Place the pears with the cut side down in a medium, heavy skillet with a lid. Pour in the pomegranate juice. Sprinkle the sugar over the pears. Bring to a boil over medium-high heat. Reduce the heat and simmer, covered, for 20 minutes, or until the pears are tender, turning them over once halfway through. Transfer to plates or bowls.
Bring the pomegranate juice mixture to a boil over medium-high heat. Boil for 1 minute, or until reduced by half (to about ½ cup). Remove from the heat.
Stir in the orange zest and vanilla. Spoon the sauce over the pears. Serve the pears warm, let them cool for 30 minutes to serve at room temperature, or cover and refrigerate them for 1 hour to serve chilled.
per serving
calories 100
total fat 0.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 5 mg
carbohydrates 26 g
fiber 4 g
sugars 19 g
protein 1 g
dietary exchanges: 1½ fruit
COOK'S TIP: Be sure to use firm pears or your dessert will be mushy.
# stewing
mediterranean fish stew
grouper and sausage stew
tomatillo-chicken stew
chicken in tomato-wine sauce
beef burgundy
moroccan beef stew with fragrant couscous
steakhouse stew
egyptian ful
meatless cassoulet
porotos granados
garden-fresh ratatouille
orange-kissed summer fruits
If you like to cook one-dish meals, then stewing is an ideal technique for you. Fish, meat, poultry, or beans can easily be combined with vegetables in a pot to make dinner. Steakhouse Stew and Grouper and Sausage Stew are examples of recipes that show how easily this can be done. A tight-fitting cover on the stew pot minimizes evaporation, and the condensation formed inside creates a self-basting process to keep the food moist while locking in the nutrients.
Stewing is an ideal way to get dinner cooking while you're doing something else. It requires little attention while this gentle slow-cooking method simmers food in its own juices along with a liquid such as broth or wine. All you need is a heavy pot with a lid and healthy ingredients.
HERE'S HOW THIS TECHNIQUE WORKS*:
1. BROWN the meat or poultry (this step is skipped in seafood dishes to avoid overcooking). To do this, preheat the pot before browning the ingredients. Add the meat or poultry, then let it sit—without moving it—until the bottom is seared; if you turn the food before that, it will stick to the pot and the surface won't caramelize.
2. SAUTÉ the herbs and aromatics. Match the herbs and aromatics to the cooking time; a longer cooking time requires bigger pieces so they don't break down and disintegrate while cooking. Sauté them first with cooking spray or a bit of oil for the most flavor.
3. Stir in the vegetables, beans, and/or legumes.
4. ADD the liquid (to cover the food completely) and let the food simmer, covered, until it's tender.
*Sometimes the order of the steps varies
TO STEW:
To cook food covered with liquid and simmered slowly in a tightly covered pot, usually for a long period of time.
Tools & Equipment Needed: Pot with a tight-fitting lid (such as a Dutch oven or skillet with lid or saucepan with lid—the pot should be heavy to distribute the heat evenly and maintain an even temperature; it's also best to use a stainless steel or anodized aluminum or enameled cast-iron pan when cooking with acidic foods like tomatoes or citrus to avoid creating discolored foods and a metallic taste), kitchen timer
TIPS:
• Because stewing meat or poultry cooks the fat out into the sauce, begin a day ahead, if possible. Prepare the dish, then refrigerate it overnight. The extra time lets the flavors blend and causes the chilled fat to rise to the top and harden, making it easy to remove.
• Check the pot periodically to be sure that the liquid is still covering the food completely. If needed, add some additional liquid to keep the food covered.
• A constant simmer is not always easy to regulate, especially on a gas stovetop, so our recipes don't state at what temperature to simmer. Even at the lowest setting on some stovetops, the heat may be too intense, which will cause the liquid to boil.
BEST FOODS FOR STEWING
Seafood: Nearly any type of fish or seafood can be used in a stew. But, as with other slow-cooking methods, the fish or seafood is usually added toward the end of the cooking time, as in Mediterranean Fish Stew.
Poultry: Almost any part of the chicken can be stewed. Older, tougher birds are best suited for stewing and are usually labeled "stewing chickens." Try Tomatillo-Chicken Stew, which uses boneless, skinless chicken thighs.
Meat: The slow cooking tenderizes tougher cuts of meat, as in Moroccan Beef Stew with Fragrant Couscous, but lean ground meat is also often stewed in chilis.
Vegetarian Protein: Beans and lentils are common in stews around the world. Try Egyptian Ful or the Chilean dish, Porotos Granados, which use fava beans and navy beans, respectively.
Vegetables: Most vegetables hold up well—even more delicate choices such as the zucchini, eggplant, onions, bell peppers, and tomatoes in a classic ratatouille. Try Meatless Cassoulet and Garden-Fresh Ratatouille.
Fruit: Fresh stone fruits, such as apricots, cherries, peaches, and plums, are the classic choice, as in Orange-Kissed Summer Fruits, but dried fruits can also be stewed.
## mediterranean fish stew
It doesn't take long to prep and cook this comforting but light stew, so it's a great choice for a quick summer dinner in which you can even use a fresh zucchini from your own garden or your weekend trip to the farmers' market. The stew's very mild fish flavor should appeal even to people who aren't usually seafood lovers.
SERVES 4 | heaping 1½ cups per serving
2 teaspoons olive oil
1 medium rib of celery, chopped
1 medium carrot, chopped
1 small onion, chopped
1 medium garlic clove, minced
2½ cups fat-free, low-sodium chicken broth
1 14.5-ounce can no-salt-added diced tomatoes, undrained
2 tablespoons no-salt-added tomato paste
½ teaspoon dried thyme, crumbled
⅛ teaspoon salt
⅛ teaspoon pepper
1 medium zucchini, chopped
12 ounces tilapia or other mild white fish fillets, rinsed, patted dry, and cut into 1-inch cubes
In a large, heavy saucepan, heat the oil over medium-high heat, swirling to coat the bottom. Cook the celery, carrot, onion, and garlic for 5 minutes, or until soft, stirring frequently.
Stir in the broth, tomatoes with liquid, tomato paste, thyme, salt, and pepper. Bring to a boil, still over medium-high heat. Reduce the heat and simmer, covered, for 8 to 10 minutes, or until the vegetables are very tender and the onion is very soft, with no crispness remaining.
Stir in the zucchini. Cook for 3 minutes, or until almost tender-crisp, stirring occasionally.
Stir in the fish. Cook for 2 to 3 minutes, or until it flakes easily when tested with a fork.
per serving
calories 164
total fat 4.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 43 mg
sodium 175 mg
carbohydrates 12 g
fiber 3 g
sugars 7 g
protein 21 g
dietary exchanges: 2 vegetable, 2½ lean meat
## grouper and sausage stew
This slightly smoky stew features grouper, chickpeas, and turkey sausage. Leaving the fillets whole and ladling the stew on top makes for an elegant, modern presentation.
SERVES 4 | 1½ cups per serving
1 tablespoon olive oil
6 ounces low-fat sweet or hot Italian turkey or chicken sausage, casings discarded, cut into 1-inch slices
2 medium carrots, diced
1 medium onion, chopped
2 medium garlic cloves, minced
1 28-ounce can no-salt-added diced tomatoes, undrained
1 15.5-ounce can no-salt-added chickpeas, rinsed and drained
1 cup fat-free, low-sodium vegetable or chicken broth
½ cup sherry, dry red wine (regular or nonalcoholic), or fat-free, low-sodium vegetable broth
6 cups chopped collard greens, any large stems discarded
¼ teaspoon pepper (freshly ground preferred)
4 grouper or red snapper fillets (about 4 ounces each), rinsed and patted dry
In a large, heavy saucepan or Dutch oven, heat the oil over medium-high heat, swirling to coat the bottom. Reduce the heat to medium. Cook the sausage for 3 to 5 minutes, or until lightly browned, stirring occasionally. Stir in the carrots and onion. Cook for about 3 minutes, stirring frequently. Stir in the garlic. Cook for 1 to 2 minutes, or until fragrant, stirring frequently.
Stir in the tomatoes with liquid, chickpeas, broth, and sherry. Bring to a boil. Gradually stir in the collard greens and pepper. Reduce the heat and simmer, covered, for 10 minutes, stirring frequently. Gently place the fish in the stew. Simmer, covered, for 5 minutes, or until the fish flakes easily when tested with a fork.
Using a spatula, carefully transfer the fish to shallow serving bowls. Ladle the collard greens mixture over the fish.
per serving
calories 416
total fat 9.0 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 4.0 g
cholesterol 75 mg
sodium 450 mg
carbohydrates 41 g
fiber 10 g
sugars 12 g
protein 39 g
dietary exchanges: 1½ starch, 4 vegetable, 4 lean meat
## tomatillo-chicken stew
Tomatillos (tohm-ah-TEE-ohs) add a fresh, lemonlike flavor to this Mexican stew, while masa harina, a corn flour best known for its use in tamales, thickens the dish. Peppers, corn, and cilantro round out this robust stew.
SERVES 6 | 1⅓ cups per serving
2 teaspoons olive oil
1¼ pounds boneless, skinless chicken thighs, all visible fat discarded, cut into 1½-inch pieces
1 large onion, coarsely chopped
5 large garlic cloves, minced
2 medium Anaheim peppers, seeds and ribs discarded, chopped
1 large red bell pepper, chopped
12 ounces medium tomatillos, papery husks discarded, chopped
1½ cups fat-free, low-sodium chicken broth
1 tablespoon ground cumin
9 ounces frozen whole-kernel corn
3 tablespoons to ¼ cup masa harina
½ cup chopped fresh cilantro
In a Dutch oven, heat the oil over medium-high heat, swirling to coat the bottom. Cook the chicken for 5 to 8 minutes, or until lightly browned, stirring occasionally. (Be sure to let the chicken sear before stirring.)
Reduce the heat to medium. Cook the onion for 3 to 4 minutes, or until beginning to soften, stirring frequently. Stir in the garlic. Cook for 30 seconds, stirring constantly. Stir in the Anaheim peppers and bell pepper. Cook for 3 minutes, or until beginning to soften, stirring frequently. Stir in the tomatillos, broth, and cumin. Increase the heat to high and bring to a boil, covered. Reduce the heat and simmer, partially covered, for 20 minutes, stirring occasionally.
Stir in the corn. Simmer, partially covered, for 10 minutes, or until the chicken is no longer pink in the center and the vegetables are tender.
Put the masa harina in a small bowl. Whisk in about ¼ cup of the broth from the stew to create a thick paste. Stir the masa harina mixture into the stew. Simmer for 5 minutes, or until the stew is slightly thickened. Stir in the cilantro. Serve the stew in shallow bowls.
per serving
calories 263
total fat 10.0 g
saturated fat 2.5 g
trans fat 0.0 g
polyunsaturated fat 2.5 g
monounsaturated fat 4.0 g
cholesterol 62 mg
sodium 81 mg
carbohydrates 24 g
fiber 5 g
sugars 8 g
protein 21 g
dietary exchanges: 1 starch, 2 vegetable, 2½ lean meat
COOK'S TIP ON TOMATILLOS: Tomatillos look like small green tomatoes, but they have a tangy, slightly acidic taste. Choose hard-fleshed fruit. Discard the husks and wash the tomatillos well before using them. To store them, leave the husks on and refrigerate the tomatillos in a paper bag for up to one month.
COOK'S TIP: Masa harina is available in Hispanic specialty markets and in the Hispanic aisle of most supermarkets. If it's unavailable, you can substitute one finely chopped 6-inch corn tortilla or ¼ cup crushed baked unsalted corn tortilla chips. Stir the tortilla pieces or crushed chips right into the stew to thicken it.
## chicken in tomato-wine sauce
White wine and the juice from tomatoes are the stars in the stewing liquid for this Italian-inspired dish. They infuse the chicken with flavor and moisture, and create a flavorful sauce. Serve over whole-grain couscous to soak up every drop.
SERVES 4 | 3 ounces chicken and scant 1½ cups sauce per serving
2 teaspoons canola or corn oil
1 medium onion, diced
1 medium green bell pepper, diced
8 ounces button mushrooms, sliced
2 teaspoons dried oregano, crumbled
2 teaspoons dried parsley, crumbled
2 medium garlic cloves, minced
4 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded
1 14.5-ounce can no-salt-added diced tomatoes, undrained
1¼ cups water
½ cup white wine (regular or nonalcoholic)
1 tablespoon tomato paste
In a large, heavy skillet or Dutch oven, heat the oil over medium heat, swirling to coat the bottom. Cook the onion and bell pepper for 3 to 5 minutes, or until beginning to soften, stirring occasionally. Stir in the mushrooms. Cook for 5 to 7 minutes, or until beginning to soften, stirring occasionally. Stir in the oregano, parsley, and garlic. Cook for 1 minute.
Place the chicken in the skillet. Stir in the tomatoes with liquid, water, wine, and tomato paste. Increase the heat to medium high and bring to a boil.
Reduce the heat and simmer, covered, for 30 to 35 minutes, or until the chicken is no longer pink in the center.
per serving
calories 222
total fat 5.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.5 g
cholesterol 73 mg
sodium 155 mg
carbohydrates 13 g
fiber 3 g
sugars 8 g
protein 28 g
dietary exchanges: 3 vegetable, 3 lean meat
COOK'S TIP ON SIMMERING: A small bubble should break through the surface of the liquid every second or two. If more bubbles rise to the surface, then lower the heat or shift the pot to one side of the burner.
## beef burgundy
This rich, hearty stew from France's Burgundy region is one of the country's most famous dishes.
SERVES 4 | 1 cup per serving
3 slices turkey bacon, chopped
1 pound boneless top round steak, all visible fat discarded, cut into ½-inch cubes
1 cup chopped onion
4 large garlic cloves, minced
1 tablespoon light tub margarine
2 tablespoons all-purpose flour
1½ cups dry red wine (regular or nonalcoholic)
1 cup coarsely chopped carrots
1 cup pearl onions, thawed if frozen
8 ounces chanterelle, shiitake (stems discarded), brown (cremini), or button mushrooms, or a combination (coarsely chopped if large)
1 cup fat-free, low-sodium beef broth, plus more if needed
½ cup water
¼ cup Cognac or brandy (optional)
1 tablespoon dark brown sugar
1 tablespoon no-salt-added tomato paste
1 teaspoon dried rosemary, crushed
1 tablespoon plus 1 teaspoon chopped fresh thyme
In a Dutch oven, cook the bacon over medium heat for 5 minutes, stirring occasionally. Transfer to a small plate lined with paper towels.
Increase the heat to medium high. In the same pot, cook half the beef for 5 to 7 minutes, or until browned, stirring occasionally. (Be sure to let the beef sear before stirring.) Transfer to a large plate. Repeat with the remaining beef.
Reduce the heat to medium. Cook the onion, garlic, and margarine for 5 minutes, stirring frequently. Stir in the flour. Stir in the bacon, beef, and the remaining ingredients except the thyme. Increase the heat to high and bring to a boil. Reduce the heat and simmer, covered, for 1½ hours, or until the beef is tender, stirring occasionally and adding more broth to barely cover the beef mixture if necessary. Just before serving, sprinkle with the thyme.
per serving
calories 322
total fat 6.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.5 g
cholesterol 71 mg
sodium 224 mg
carbohydrates 26 g
fiber 3 g
sugars 10 g
protein 32 g
dietary exchanges: ½ starch, 3 vegetable, 3 lean meat
moroccan beef stew with fragrant couscous
## moroccan beef stew with fragrant couscous
Couscous is often served as a side dish with stewed or braised entrées. In this recipe, it's cooked in a steamer basket that's placed in the same pot with the beef and spices so the grain is delicately flavored while it steams. (See photo.)
SERVES 8 | 1 heaping cup per serving
1½ teaspoons light tub margarine
1½ teaspoons olive oil
½ pound lean stew meat, all visible fat discarded, cut into 1-inch cubes
1 large onion, sliced
1 teaspoon pepper
½ teaspoon ground ginger
½ teaspoon ground turmeric
Pinch of saffron (optional)
8 ounces uncooked whole-wheat couscous
1 cup water
2 tablespoons raisins
2 tablespoons pine nuts, dry-roasted
3 medium carrots, quartered
2 medium potatoes, peeled and quartered
2 medium turnips, peeled and quartered
2 medium zucchini, sliced
½ 15.5-ounce can no-salt-added chickpeas, rinsed and drained
⅛ teaspoon salt
In a large stockpot, heat the margarine and oil over medium-high heat, swirling to coat the bottom. Cook the beef for 5 minutes, or until browned, stirring occasionally. (Be sure to let the beef sear before stirring.)
Stir in the onion, pepper, ginger, turmeric, and saffron. Stir in enough water to cover the beef mixture by at least 2 inches. Bring to a simmer. Reduce the heat and simmer, covered, for 5 minutes.
Meanwhile, put the couscous in a large bowl. Slowly pour in the water, a little at a time, rubbing the couscous between your hands to remove all the lumps and to thoroughly moisten the couscous. (Don't get the couscous soaking wet.) Stir in the raisins and pine nuts.
Line a collapsible steamer basket with dampened cheesecloth or a clean, dampened dish towel. Spoon the couscous mixture into the cheesecloth lining; don't pack it. Place the steamer in the stockpot (the simmering beef mixture remains beneath the steamer). Cook, covered, for 1 hour, gently stirring the couscous every 10 minutes (to keep it fluffy and help it cook evenly).
Carefully remove the steamer basket from the pot. Set aside.
Stir the carrots, potatoes, and turnips into the stew. Cook, covered, for 20 minutes. Stir in a little boiling water if the stew looks dry. Stir in the zucchini and chickpeas. Cook, covered, for 20 minutes. Stir in the salt.
Mound the couscous in the center of a large platter. Using a slotted spoon, remove the vegetables from the stew. Arrange them and the beef around the couscous. Serve the broth in a gravy boat on the side or drizzle it over the couscous.
per serving
calories 281
total fat 5.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.0 g
cholesterol 18 mg
sodium 109 mg
carbohydrates 48 g
fiber 8 g
sugars 7 g
protein 14 g
dietary exchanges: 2½ starch, 2 vegetable, 1 lean meat
## steakhouse stew
A simple marinade and just a bit of turkey bacon add a big boost of flavor to this traditional beef stew.
SERVES 4 | 1½ cups per serving
1 pound boneless top sirloin steak, all visible fat discarded, cut into 1-inch cubes
1 large red onion, sliced into thin rings
1 cup light beer (regular or nonalcoholic)
2 medium garlic cloves, crushed
1 medium dried bay leaf
1 slice turkey bacon, minced
2 cups halved baby carrots
2 cups fat-free, low-sodium chicken broth
1 tablespoon chopped fresh thyme or 1 teaspoon dried thyme, crumbled
1 tablespoon no-salt-added tomato paste
½ teaspoon paprika
Pepper to taste (freshly ground preferred)
6 small red potatoes, quartered
1 cup whole pearl onions, thawed if frozen
3 tablespoons all-purpose flour
3 to 4 tablespoons cold water
In a large shallow glass dish, stir together the beef, red onion, beer, garlic, and bay leaf. Cover and refrigerate for at least 3 hours, stirring occasionally.
Drain the beef, discarding the red onion, garlic, and bay leaf, and reserving the liquid.
Heat a large, heavy nonstick skillet over medium heat. Add the beef and bacon. Cook for 5 minutes, or until the beef is browned, stirring occasionally. Stir in the carrots, broth, thyme, tomato paste, paprika, pepper, and the reserved liquid from the marinade. If necessary, pour in enough water to cover the beef mixture. Bring to a boil. Boil for 5 minutes. Reduce the heat and simmer, covered, for 1½ hours.
Stir in the potatoes and pearl onions. Cook, covered, for 30 to 40 minutes.
Put the flour in a small bowl. Add the water, whisking to dissolve. Slowly stir the flour mixture into the stew. Cook for 5 minutes, or until thickened, stirring frequently.
per serving
calories 307
total fat 5.5 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.5 g
cholesterol 63 mg
sodium 159 mg
carbohydrates 29 g
fiber 3 g
sugars 7 g
protein 30 g
dietary exchanges: 1 starch, 3 vegetable, 3 lean meat
## egyptian ful
Beans of many kinds have been a dietary staple in Egypt since the pharaohs ruled. One favorite entrée is ful, or fava beans simmered to create a thick, savory stew. Start soaking the dried beans in the morning, and they'll be ready to cook for dinner. Serve the stew with warm whole-wheat pita bread and a salad of cucumbers and tomatoes.
SERVES 4 | 1 heaping cup per serving
2 cups dried fava beans or dark red kidney beans, sorted for stones and shriveled beans, rinsed, and drained
2 tablespoons olive oil
1 tablespoon ground cumin
3 medium garlic cloves, minced
1 small bunch Italian (flat-leaf) parsley, chopped
1 tablespoon fresh lemon juice
¼ teaspoon salt
In a medium, heavy saucepan, soak the beans for 8 hours in cold water to cover by at least 2 inches. Change the water several times, if possible. Rinse and drain the beans in a colander. Return them to the pan. Pour in fresh water to cover. Stir in the oil, cumin, and garlic. Simmer, covered, for 45 minutes, or until the beans are tender, stirring occasionally.
Stir in the parsley, lemon juice, and salt. Simmer, covered, for 30 minutes, or until some of the beans begin to break down, forming a creamy base for the rest.
per serving
calories 330
total fat 8.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 5.0 g
cholesterol 0 mg
sodium 166 mg
carbohydrates 46 g
fiber 19 g
sugars 5 g
protein 20 g
dietary exchanges: 3 starch, 2 lean meat
COOK'S TIP: Leftovers are delicious when reheated. Ful (the pronunciation is halfway between "fool" and "full"), also called ful medames, is often served for breakfast, sometimes with a fried or boiled egg.
## meatless cassoulet
A typical French cassoulet, named after an earthenware pot called a cassole, is a stew of white beans and meats. There are as many versions of this stew as there are cooks who make it. This version preserves the superb, slow-simmered flavor of the stew but omits the meat. Because this uses dried beans, be sure to set aside time to cook or soak them.
SERVES 8 | 1 cup per serving
8 ounces dried Great Northern beans or other dried white beans, sorted for stones and shriveled beans, rinsed, and drained
8 ounces dried black beans, sorted for stones and shriveled beans, rinsed, and drained
6 cups water
Cooking spray
1½ cups chopped carrots
1½ cups chopped celery
1 large onion, chopped
1 large green bell pepper, chopped
4 medium garlic cloves, crushed or minced
1¼ cups fat-free, low-sodium vegetable broth
1 8-ounce can no-salt-added tomato sauce
½ cup dry white wine (regular or nonalcoholic)
¼ cup molasses
2 medium dried bay leaves
1½ teaspoons dried fennel seeds, crushed
½ to ¾ teaspoon crushed red pepper flakes
½ teaspoon salt
½ teaspoon dried thyme, crumbled
In a Dutch oven, stir together the Great Northern beans, black beans, and water. Bring to a boil over high heat. Reduce the heat and simmer for 2 minutes, stirring occasionally. Remove from the heat. Let stand, covered, for 1 hour. Rinse and drain the beans in a colander. Dry the Dutch oven with paper towels.
Or, in a large bowl, stir together both types of beans and the water. Let stand, covered, for 6 to 8 hours or overnight. After the beans have soaked, rinse and drain them in a colander.
Lightly spray the Dutch oven with cooking spray. Cook the carrots, celery, onion, bell pepper, and garlic over medium heat for 20 minutes, or until the carrots, celery, and bell pepper are tender and the onion is very soft, stirring occasionally.
Stir in the beans and the remaining ingredients. Increase the heat to high and bring to a boil. Reduce the heat and simmer, covered, for 2½ to 3 hours, or until the beans are tender, adding water if necessary and stirring occasionally. Discard the bay leaves before serving the stew.
per serving
calories 244
total fat 1.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 192 mg
carbohydrates 47 g
fiber 13 g
sugars 10 g
protein 13 g
dietary exchanges: 2½ starch, 2 vegetable, 1 lean meat
COOK'S TIP: Stewing is used throughout the world and is known by many different names: France's cassoulet, ratatouille, beef bourguignon, and bouillabaisse; Hungary's goulash; Louisiana's gumbo; the Southwest's chili con carne; Ethiopia's doro wat; and India's curries are all examples of stews.
## porotos granados
This vegetarian Chilean stew makes a hearty meal in the fall, when fresh pumpkin is in season. The toasted pumpkin seed topping adds a nice crunch. If you're using butternut squash, toast the seeds as you would the pumpkin seeds, or buy raw pumpkin seeds and follow the directions in the recipe.
SERVES 4 | 1½ cups stew and 1 tablespoon pumpkin seeds per serving
1 1-pound pie-style pumpkin, peeled and halved, or 3 cups cubed butternut squash
1 teaspoon olive oil and 1 teaspoon olive oil, divided use
1 teaspoon salt-free all-purpose seasoning blend
½ small onion, chopped
2 medium garlic cloves, minced
2 15.5-ounce cans no-salt-added navy beans, rinsed and drained
2 cups frozen whole-kernel corn
1 cup fat-free, low-sodium vegetable broth
1 teaspoon dried basil, crumbled
1 teaspoon paprika
¼ teaspoon salt
⅛ teaspoon pepper
Preheat the oven to 350°F.
Using a spoon, scoop out the pumpkin seeds. Rinse the seeds in a colander, discarding the strings. Pat the seeds dry with paper towels. Transfer them to a nonstick baking pan. Drizzle 1 teaspoon oil over the seeds. Sprinkle the seasoning blend over the seeds, stirring to combine. Bake for 30 minutes, or until golden brown, stirring every 10 minutes.
Meanwhile, cut the pumpkin into ¾-inch cubes.
In a large, heavy saucepan or a Dutch oven, heat the remaining 1 teaspoon oil over medium-high heat, swirling to coat the bottom. Cook the onion for 3 minutes, or until soft, stirring frequently.
Stir in the garlic. Cook for 30 seconds, stirring frequently. Stir in the remaining ingredients, including the pumpkin cubes. Bring to a simmer. Reduce the heat and simmer, covered, for 20 minutes, or until the pumpkin is tender. Ladle into serving bowls. Sprinkle each serving with 1 tablespoon pumpkin seeds.
per serving
calories 362
total fat 6.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 3.0 g
cholesterol 0 mg
sodium 167 mg
carbohydrates 62 g
fiber 12 g
sugars 13 g
protein 18 g
dietary exchanges: 4 starch, 1 lean meat
COOK'S TIP: The remaining pumpkin seeds can be stored in an airtight container at room temperature for up to one week or frozen in an airtight freezer container for up to two months.
## garden-fresh ratatouille
This classic French dish usually includes eggplant, squash, and tomato stewed in olive oil with plenty of garlic and herbs. This version reduces the amount of oil and adds a bit of broth to bring out the flavors of the vegetables. Ratatouille can be served hot, cold, or at room temperature.
SERVES 4 | ½ cup per serving
1 teaspoon olive oil
½ small eggplant or 1 medium Japanese eggplant, chopped
1 medium zucchini, chopped
½ medium yellow bell pepper, chopped
½ small red onion, chopped
2 medium garlic cloves, minced
1 medium tomato, peeled and chopped
½ cup fat-free, low-sodium vegetable broth
⅛ teaspoon salt
⅛ teaspoon pepper (freshly ground preferred)
2 tablespoons chopped fresh basil
¼ cup shaved, shredded, or grated Parmesan cheese
In a large, heavy saucepan, heat the oil over medium-high heat, swirling to coat the bottom. Cook the eggplant for 5 to 6 minutes, or until light golden brown, stirring occasionally. Stir in the zucchini, bell pepper, onion, and garlic. Cook for 3 to 4 minutes, or until the bell pepper is tender-crisp and the onion is soft, stirring occasionally.
Stir in the tomato, broth, salt, and pepper. Bring to a simmer over medium-high heat. Reduce the heat and simmer, partially covered, for 10 to 15 minutes, or until the vegetables are tender, stirring occasionally.
Remove from the heat. Stir in the basil. Just before serving, garnish with the Parmesan.
per serving
calories 69
total fat 3.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 4 mg
sodium 168 mg
carbohydrates 8 g
fiber 3 g
sugars 4 g
protein 4 g
dietary exchanges: 2 vegetable, ½ fat
COOK'S TIP ON SHAVED PARMESAN: Most grocery stores sell chunks or wedges of Parmesan cheese. It usually has a stronger taste than the pre-grated kind, so a small amount adds big flavor. Use a vegetable peeler to shave off thin slices.
## orange-kissed summer fruits
Take advantage of summer's bounty by quickly stewing your favorite combinations of fresh fruits in a sweet and spicy mix of apple juice, orange zest, and cinnamon. It's delicious eaten warm or chilled for breakfast, dessert, or even as a side dish.
SERVES 4 | ½ cup per serving
2 pounds peaches, nectarines, apricots, plums, or cherries, or a combination (about 4 cups)
½ cup 100% apple juice
Zest of 1 medium orange, cut into strips or grated
1 cinnamon stick (about 3 inches long)
1 tablespoon brown sugar
1 tablespoon orange-flavored liqueur, such as Grand Marnier (optional)
¼ teaspoon ground nutmeg (freshly grated preferred)
Peel and pit the fruit, cutting the larger fruit, such as peaches, into eighths and halving or quartering the smaller fruit, such as apricots and cherries.
In a medium, heavy saucepan, stir together the fruit and the remaining ingredients. Bring to a boil over medium-high heat. Reduce the heat and simmer for 10 to 15 minutes, or until the fruit is tender and the sauce has thickened, stirring frequently.
per serving
calories 115
total fat 0.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 2 mg
carbohydrates 28 g
fiber 4 g
sugars 24 g
protein 2 g
dietary exchanges: 2 fruit
# steaming
thai-style chicken potstickers
peruvian quinoa salad
salmon in green tea
tilapia packets with artichokes
mussels cooked in wine
stuffed napa cabbage rolls with orange-ginger sauce
tofu in green onion broth
beer-scented chicken with veggies
walnut-orange broccoli
lemony green beans with almonds
mixed vegetables with ginger
thai sweet rice with mango
Steaming is one of the best ways for foods to retain their color and preserve their nutrients. By varying the steaming liquid and adding spices and aromatics, you can infuse steamed food with delicate flavor; for more intense flavor, add aromatics such as garlic and onion to the food itself or pair the food with a delicious sauce. Because steam transfers heat to food more efficiently than either boiling water or hot air, steaming is one of the quickest cooking techniques, making it ideal for the busy cook. Within minutes you can have a healthy meal or side dish on the table.
Steaming is ideal for vegetables. You can keep it simple by adding any fresh vegetable to a steamer basket, or you can spend a few extra minutes to make Walnut-Orange Broccoli seasoned with citrus and thyme or Mixed Vegetables with Ginger enhanced with garlic and lemon.
With steaming, you can incorporate more grains into your diet; this technique makes them light and fluffy. Try Peruvian Quinoa Salad to see how simple it is. You can enrich your diet even further by adding necessary omega-3s with fish such as Salmon in Green Tea.
Most steaming is done by placing the food in a bamboo steamer or collapsible metal or silicone basket suspended over simmering liquid; the food is cooked by gentle hot vapor. Bamboo steamers, traditionally used in Asian cooking, are designed to fit in a wok, but they can also work in some larger saucepans. They can also be stacked on top of each other, so you can separately steam more than one food at a time. You can use the bamboo steamers to steam foods with different cooking times, removing the layers as each food is finished. Alternatively, collapsible or silicone steamers are compact, inexpensive, and easy to clean. They fit into a variety of pots, but they often can't hold as much food as can the bamboo steamers.
Food cooked en papillote, or enclosed in a packet of cooking parchment or aluminum foil and cooked in the oven, is also a form of steaming that uses the foods' own juices to cook. This method makes portion control and cleanup a snap, in addition to offering an attractive presentation, with each person getting his or her own packet—which can be personalized based on the diner's preferences.
TO STEAM:
To cook food using steam, usually in a bamboo steamer or steamer basket over boiling or simmering water in a covered pan, or enclosed in cooking parchment or aluminum foil (known as en papillote), allowing the food to cook in its own juices.
Tools & Equipment Needed: Collapsible metal or silicone steamer basket, bamboo steamer, skillet, wok, or saucepan (with lid, if using a collapsible steamer basket), cooking parchment or aluminum foil, kitchen timer
TIPS:
• When steaming on the stovetop, make sure the food sits above the water and isn't submerged.
• Use thin, clear, or translucent liquids, such as water, broth, wine, or beer. Avoid cloudy liquids such as milk, which will curdle, and thick liquids such as tomato sauce, which can burn.
• If you need to steam something for more than 15 or 20 minutes, be sure to check the level of liquid occasionally. Have some extra liquid boiling in a separate pot or kettle and add the hot liquid if needed (be sure to add the liquid to the pot and not to the food).
• When cooking something en papillote, use cooking parchment rather than aluminum foil if you're working with highly acidic ingredients such as vinegar, tomatoes, tomato sauce, and citrus fruits, which will react to the foil.
• The lid of a bamboo steamer will absorb excess moisture, rather than dripping it back onto the food when the lid is lifted (which can dilute the flavor).
• When steaming tofu, score the surface so that the flavors will penetrate the tofu better.
• Vegetables should fit in a single layer in the steamer basket to avoid some becoming overcooked while others are undercooked.
• Most vegetables should be steamed just until tender-crisp. To test, insert the tip of a paring knife into the thickest part; if the knife meets a little resistance, then the vegetables are steamed properly.
• Steamed foods should be served immediately after cooking because they can become rubbery and dry as they cool.
• A constant simmer is not always easy to regulate, especially on a gas stovetop, so our recipes don't state at what temperature to simmer. Even at the lowest setting on some stovetops, the heat may be too intense, which will cause the liquid to boil. When simmering, a small bubble should break through the surface of the liquid every second or two. If more bubbles rise to the surface, then lower the heat or shift the pot to one side of the burner.
• To avoid both overcooking and undercooking meat and poultry, use a meat thermometer to check doneness. Remove the meat or poultry from the heat before inserting the instant-read thermometer. Insert the thermometer into the center, or thickest part, of the meat, making sure the thermometer doesn't touch bone or fat.
BEST FOODS FOR STEAMING
Seafood: Shellfish and tender fillets such as catfish or tilapia are excellent choices, as in Tilapia Packets with Artichokes.
Poultry: Delicate cuts, such as turkey medallions or chicken breasts, are ideal, as in Beer-Scented Chicken with Veggies. Or use ground chicken breast in Stuffed Napa Cabbage Rolls with Orange-Ginger Sauce.
Vegetarian Protein: Steaming suits tender foods that cook quickly, including tofu; try Tofu in Green Onion Broth.
Vegetables: Almost all vegetables benefit from steaming, especially those that are naturally tender, such as carrots, asparagus, green beans, and red potatoes. Try Lemony Green Beans with Almonds and Mixed Vegetables with Ginger, which includes carrots, cauliflower, and sugar snap peas.
## thai-style chicken potstickers
Lemongrass and cilantro give these little packages a hint of Thai flavor. The simple dipping sauce, made with serrano pepper, provides an added spark for these already-dynamite bites. This recipe doubles easily if you want to serve these potstickers as an appetizer at your next gathering.
SERVES 8 | 3 potstickers per serving
FILLING
8 ounces ground skinless chicken breast
¼ cup minced water chestnuts, drained
2 tablespoons very finely minced lemongrass
2 tablespoons minced green onions (green part only)
2 tablespoons minced fresh cilantro
1 tablespoon soy sauce (lowest sodium available)
1 teaspoon sugar
1 teaspoon grated peeled gingerroot
1 medium garlic clove, minced
¼ teaspoon crushed red pepper flakes
1 large egg white
1 tablespoon water, ½ cup water, and ½ cup water, divided use
24 wonton wrappers, thawed if frozen
1½ teaspoons canola or corn oil and 1½ teaspoons canola or corn oil, divided use
SAUCE
⅓ cup plain rice vinegar
2 tablespoons matchstick-size strips of peeled gingerroot
1 small fresh serrano pepper, thinly sliced (see Cook's Tip)
In a large bowl, using your hands or a spoon, combine the filling ingredients.
In a small bowl, whisk together the egg white and 1 tablespoon water.
Arrange the wonton wrappers in a single layer on a large baking sheet. Line a separate large baking sheet with cooking parchment.
Put the large bowl, baking sheet with the wonton wrappers, small bowl, and baking sheet with cooking parchment in a row, assembly-line fashion.
Place a scant tablespoon of filling in the center of each wrapper. Brush the egg white mixture around the edges of one wrapper. Gather the corners and pinch them together at the top, making sure all the edges are sealed. Place the potsticker on the baking sheet with the cooking parchment (the parchment will keep the potstickers from sticking to the baking sheet while they stand). Repeat with the remaining wrappers, arranging so the potstickers don't touch.
In a large nonstick skillet, heat 1½ teaspoons oil over medium-high heat, swirling to coat the bottom. Place half the potstickers in the skillet so they don't touch. Cook for 2 minutes, or until the bottoms are browned. Pour ½ cup water into the skillet. Steam the potstickers, covered, for about 3 minutes, or until the chicken is no longer pink in the center when you cut a potsticker in half. Using a spatula, transfer to a warm serving platter. Repeat with the remaining 1½ teaspoons oil, potstickers, and ½ cup water.
Meanwhile, in a small microwaveable bowl, stir together the sauce ingredients. Microwave on 100 percent power (high) for 30 seconds. Serve the sauce with the potstickers.
per serving
calories 130
total fat 3.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 1.5 g
cholesterol 20 mg
sodium 106 mg
carbohydrates 16 g
fiber 1 g
sugars 1 g
protein 9 g
dietary exchanges: 1 starch, 1 lean meat
COOK'S TIP ON LEMONGRASS: Frequently used in Southeast Asian cuisines, lemongrass adds a lemonlike flavor to foods. Lemongrass should have a pale to medium green stalk and a pale yellow to almost white root end. Discard the bulb and outer leaves and use only the bottom 3 to 5 inches of the inner stalk. Lemongrass can be found in Asian markets and in the produce section of many grocery stores.
## peruvian quinoa salad
In this vegetarian entrée salad, a bright cilantro-lime dressing lightly coats a colorful blend of Peruvian staples including quinoa, beans, corn, bell peppers, and tomatoes. Steaming the quinoa makes the grains light and fluffy and is well worth the extra time.
SERVES 4 | 1½ cups per serving
DRESSING
¼ cup fresh lime juice
3 tablespoons fresh orange juice
3 tablespoons chopped fresh cilantro
1½ tablespoons olive oil (extra virgin preferred)
1 teaspoon ground coriander
1 teaspoon honey
1 medium garlic clove, minced
¼ teaspoon pepper
SALAD
1 cup water
½ cup uncooked quinoa, rinsed and drained
1 15.5-ounce can no-salt-added Great Northern beans, rinsed and drained
9 ounces frozen whole-kernel corn, thawed
1 medium tomato, chopped
¾ cup thinly sliced assorted mini bell peppers (about 4)
1 small onion, halved and thinly sliced
⅓ cup chopped fresh cilantro
2 large hard-boiled eggs, each cut into 4 wedges
In a small bowl, whisk together the dressing ingredients. Cover and refrigerate.
In a large saucepan, bring 1 cup water to a boil over high heat. Stir in the quinoa. Cook for 10 minutes, or until the quinoa is partially cooked. Drain in a fine-mesh sieve. Rinse with cold water to cool. Drain well. Transfer the quinoa to a collapsible steamer basket.
In the same large pan, bring 1 inch of water to a boil over medium heat. Place the steamer basket in the pan. Make sure the water doesn't touch the bottom of the steamer. Cover the basket with a clean, folded dish towel. Cook the quinoa, covered, for 10 minutes, or until tender. Remove from the heat. Fluff with a fork.
Transfer the quinoa to a large serving bowl. Stir in the remaining salad ingredients except the eggs. Pour the dressing over the salad, tossing to coat. Garnish with the eggs. Serve immediately or cover and refrigerate for about 2 hours to serve chilled.
per serving
calories 357
total fat 10.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 5.0 g
cholesterol 93 mg
sodium 83 mg
carbohydrates 56 g
fiber 12 g
sugars 11 g
protein 14 g
dietary exchanges: 3 starch, 2 vegetable, 1 lean meat, 1 fat
COOK'S TIP: If you prefer, you can substitute no-salt-added black beans or Peruvian beans, also known as peruano beans or Mexican yellow beans, for the Great Northern beans.
COOK'S TIP ON QUINOA: Partially cooking the quinoa in boiling water and then steaming it keeps the grain from becoming mushy. Quinoa is fully cooked when it is tender and a tiny curled white thread emerges from the grain.
## salmon in green tea
Rich salmon gently steams to perfection on a bed of thinly sliced fresh lime. Green tea infused with black peppercorns is the steaming liquid. A sweetly piquant sauce of green onions, soy, honey, and more lime finishes the dish. Pair this with a whole grain such as brown rice or quinoa and Lemony Green Beans with Almonds to complete your meal.
SERVES 4 | 3 ounces fish and 2 tablespoons sauce per serving
6 single-serving bags of green tea
1 tablespoon black peppercorns (optional)
4 cups hot water and 1 cup hot water (if needed), divided use
5 medium limes, thinly sliced
4 salmon fillets with skin (about 5 ounces each), rinsed and patted dry
SAUCE
1 teaspoon canola or corn oil
1 small garlic clove, finely minced
¼ teaspoon crushed red pepper flakes (optional)
¼ cup Riesling or other medium-sweet white wine (regular or nonalcoholic) or ¼ cup 100% apple juice
¼ cup fat-free, low-sodium chicken or vegetable broth
1 to 2 tablespoons fresh lime juice
1 tablespoon honey
½ teaspoon soy sauce (lowest sodium available)
1 medium green onion (dark and light green parts only), thinly sliced diagonally
Put the tea bags and peppercorns in a medium glass bowl. Pour in 4 cups hot water. Steep, covered, for 5 to 6 minutes.
Meanwhile, line a large bamboo or collapsible steamer basket with the lime slices, overlapping them until they completely cover the bottom. Place the fish fillets on the lime slices, spacing them at least 1 inch apart.
Into a skillet or wok large enough to hold the steamer, pour the tea mixture to a depth of about 2 inches. If needed, pour in some or all of the remaining 1 cup water. Bring to a simmer over medium heat.
Put the steamer in the skillet. Make sure the liquid doesn't touch the bottom of the steamer. If using a bamboo steamer, cover it with the lid. If using a collapsible steamer basket, tightly cover the skillet. Simmer for 5 to 7 minutes, or until the fish is cooked to the desired doneness.
Meanwhile, in a small saucepan, heat the oil over medium-high heat, swirling to coat the bottom. Cook the garlic and red pepper flakes for 1 to 2 minutes, or until fragrant, stirring constantly. Stir in the wine and broth. Bring to a boil. Boil for 2 to 3 minutes, stirring constantly. Stir in the lime juice, honey, and soy sauce. Reduce the heat and simmer for 3 to 5 minutes, or until thickened, stirring frequently. Stir in the green onions.
Transfer the fish to plates. Drizzle with the sauce.
per serving
calories 187
total fat 6.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 53 mg
sodium 117 mg
carbohydrates 6 g
fiber 0 g
sugars 5 g
protein 24 g
dietary exchanges: ½ other carbohydrate, 3 lean meat
## tilapia packets with artichokes
Wrapping food in cooking parchment and cooking the packets in the oven makes for mess-free steaming and preserves all those luscious juices.
SERVES 4 | 3 ounces fish and ⅔ cup artichoke mixture per serving
Cooking spray
2 medium lemons, each cut into 4 slices
4 tilapia fillets (about 4 ounces each), rinsed and patted dry
1 teaspoon dried oregano, crumbled
⅛ teaspoon crushed red pepper flakes
1 14-ounce can quartered artichoke hearts, drained and coarsely chopped
1 cup grape tomatoes, quartered
1 tablespoon olive oil (extra virgin preferred)
⅓ cup crumbled fat-free feta cheese
Preheat the oven to 425°F.
Cut eight 12-inch-square pieces of cooking parchment. Lightly spray one side of each square with cooking spray. Place 2 lemon slices in the center of the sprayed side of four of the squares. Place the fish on the lemon slices. Sprinkle the oregano and red pepper flakes over the fish. Top with the artichokes and tomatoes. Place one of the remaining squares with the sprayed side down over each serving. Fold the edges of both parchment pieces together to seal the packets securely. Transfer to a large baking sheet.
Bake the packets for 12 minutes. Using the tines of a fork, carefully open a packet away from you. If the fish flakes easily when tested with the fork, carefully open the remaining packets and serve. If the fish isn't cooked enough, reclose the open packet and continue baking all the packets for about 2 minutes.
Just before serving, drizzle the fish and vegetables with the oil. Sprinkle with the feta.
per serving
calories 188
total fat 5.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 3.0 g
cholesterol 57 mg
sodium 445 mg
carbohydrates 8 g
fiber 2 g
sugars 3 g
protein 28 g
dietary exchanges: 2 vegetable, 3 lean meat
## mussels cooked in wine
Coastal Mediterranean peoples have gleaned shellfish from the sea for eons. Exposed on the rocks at low tide, mussels were easy pickings—a succulent morsel for the wealthy and a reliable meal for the poor. This simple dish presents the delicate flavor of mussels at their best. With whole-grain bread to sop up the broth and a leafy dark green salad, it makes a light but nourishing meal.
SERVES 6 | 3 ounces mussels per serving
2 tablespoons light tub margarine
3 medium shallots, chopped
1 medium garlic clove, minced
1 cup dry white wine (regular or nonalcoholic) or ¾ cup water plus 3 tablespoons fresh lemon juice
1 medium dried bay leaf
½ teaspoon dried thyme, crumbled
½ teaspoon pepper
1½ pounds fresh debearded and rinsed medium mussels
In a large stockpot, melt the margarine over medium heat, swirling to coat the bottom. Cook the shallots and garlic for 5 minutes, or until softened, stirring occasionally. Stir in the wine, bay leaf, thyme, and pepper. Increase the heat to high and bring to a boil. Stir in the mussels. Reduce the heat to low and simmer, covered, for 5 to 10 minutes, or until the shells open. Remove from the heat. Discard the bay leaf.
Using a slotted spoon, transfer the mussels to a serving bowl. Discard any that haven't opened. Spoon some of the cooking liquid over the mussels. Serve immediately.
per serving
calories 119
total fat 3.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 1.5 g
cholesterol 28 mg
sodium 316 mg
carbohydrates 5 g
fiber 0 g
sugars 0 g
protein 12 g
dietary exchanges: ½ other carbohydrate, 2 lean meat
## stuffed napa cabbage rolls with orange-ginger sauce
Napa cabbage leaves enclose a moist and tender Asian-spiced chicken filling. The light and airy rolls are delectable when dipped in a pungent sauce.
SERVES 4 | 2 rolls and 1 tablespoon sauce per serving
1 medium orange, thinly sliced
8 large napa cabbage leaves
1 pound ground skinless chicken breast
½ cup cooked brown rice
1 large egg, lightly beaten
2 tablespoons minced fresh parsley
1 tablespoon minced shallot
1 tablespoon finely minced peeled gingerroot
¼ teaspoon pepper (freshly ground preferred)
2 cups fat-free, low-sodium chicken broth or water
SAUCE
2 teaspoons canola or corn oil
4 or 5 medium green onions, thinly sliced (½ cup)
2 tablespoons grated peeled gingerroot
1 cup fat-free, low-sodium chicken broth
2 tablespoons grated orange zest
⅓ cup fresh orange juice
1 teaspoon soy sauce (lowest sodium available)
Line the bottom of a large bamboo steamer with the orange slices, overlapping them until they completely cover the bottom. Set aside.
Microwave the cabbage on 100 percent power (high) for 3 minutes, or until softened.
Meanwhile, in a large bowl, crumble the chicken. Add the rice, egg, parsley, shallot, minced gingerroot, and pepper. Using your hands or a spoon, combine the ingredients.
Put the cabbage leaves on a flat surface with the stem end toward you. Pat dry if needed. Place ¼ cup of the chicken mixture on each leaf toward the base of the leaf. Fold the edges of the leaves to the center so they slightly overlap. Trying to keep the cabbage rolls fairly tight, roll up from the stem end.
Transfer the rolls with the seam side down to the steamer. Tightly cover the steamer.
Into a large skillet or a wok that's large enough to hold the steamer snugly, pour the broth to a depth of about 2 inches. Bring to a boil over high heat. Reduce the heat to a simmer. Place the steamer in the skillet. Make sure the broth doesn't touch the bottom of the steamer. Simmer for 10 to 12 minutes, or until the chicken registers 165°F on an instant-read thermometer. Transfer the rolls to plates.
Meanwhile, in a medium saucepan, heat the oil over medium-high heat, swirling to coat the bottom. Cook the green onions and grated gingerroot for 1 to 2 minutes, or until fragrant, stirring frequently. Stir in the remaining ingredients. Bring to a boil, still over medium-high heat. Reduce the heat and simmer for 5 to 8 minutes, or until the sauce begins to thicken, stirring frequently.
Just before serving, drizzle the cabbage rolls with the sauce.
per serving
calories 232
total fat 7.0 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 3.0 g
cholesterol 119 mg
sodium 208 mg
carbohydrates 13 g
fiber 3 g
sugars 4 g
protein 28 g
dietary exchanges: ½ starch, 1 vegetable, 3 lean meat
## tofu in green onion broth
When it's steamed, tofu becomes soft and puffy rather than chewy. This simple preparation is complemented by the tangy lemon and subtle onion flavors of the broth.
SERVES 4 | 1 slice tofu and 3 tablespoons sauce per serving
16 ounces light extra-firm tofu, drained, patted dry, and cut into 4 slices
4 to 5 medium lemons, thinly sliced
1 tablespoon canola or corn oil
4 or 5 medium green onions, sliced (½ cup)
1 large shallot, minced
2 medium garlic cloves, minced
¼ cup dry white wine (regular or nonalcoholic)
2 cups fat-free, low-sodium vegetable broth plus 1 cup fat-free, low-sodium vegetable broth (if needed)
¼ cup chopped fresh parsley
2 tablespoons honey
Put the tofu on a cutting board lined with four layers of paper towels. Cover with four layers of paper towels. Place a large, heavy baking dish on top. Let stand for 30 minutes so the tofu releases its excess moisture, replacing the paper towels if necessary.
Line the bottom of a large bamboo steamer with the lemon slices, overlapping them until they completely cover the bottom. Place the tofu on the lemon slices. Cover tightly with the steamer lid. Set aside.
In a medium saucepan, heat the oil over medium-high heat, swirling to coat the bottom. Cook the green onions, shallot, and garlic for 1 to 2 minutes, or until fragrant. Stir in the wine. Cook for 1 to 2 minutes (no stirring needed). Stir in 2 cups broth, the parsley, and honey. Bring to a boil. Reduce the heat and simmer for 5 to 8 minutes, or until slightly thickened.
In a food processor or blender (vent the blender lid), process the broth mixture until smooth.
Pour the broth mixture into a skillet or wok large enough to hold the steamer. Bring to a simmer over medium heat.
Put the steamer in the skillet. Make sure the liquid doesn't touch the bottom of the steamer. Simmer for 7 to 10 minutes, or until the tofu is warm and puffy. Carefully transfer the steamer to a rimmed baking sheet. Carefully remove the lid away from you (to prevent steam burns).
Increase the heat to medium high. Bring the broth mixture to a boil. Reduce the heat and simmer for 5 minutes, or until the mixture is reduced by about half (to ¾ cup).
Transfer the tofu to plates or shallow bowls. Spoon the broth mixture over the tofu.
per serving
calories 179
total fat 6.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 4.0 g
cholesterol 0 mg
sodium 97 mg
carbohydrates 17 g
fiber 3 g
sugars 10 g
protein 12 g
dietary exchanges: ½ starch, ½ other carbohydrate, 1½ lean meat
## beer-scented chicken with veggies
If you like beer-can grilled chicken, you will love this recipe. Light beer is part of the steaming liquid and imbues the chicken and vegetables with flavor while they cook.
SERVES 4 | 3 ounces chicken and ½ cup vegetables per serving
12 ounces light beer (regular or nonalcoholic)
1 cup water
½ cup chopped fresh parsley
1 teaspoon dried dillweed, crumbled
¼ teaspoon salt
¼ teaspoon pepper
4 boneless, skinless chicken breast halves (about 4 ounces each), flattened to ½-inch thickness
1 medium yellow summer squash, cut crosswise into ½-inch slices
1 medium carrot, sliced crosswise
½ cup broccoli florets
1 medium Italian plum (Roma) tomato, thinly sliced
In a large saucepan fitted with a collapsible steamer basket, stir together the beer and water. Make sure the liquid doesn't touch the bottom of the steamer. Bring to a simmer over medium-high heat.
Meanwhile, in a small bowl, stir together the parsley, dillweed, salt, and pepper. Sprinkle over both sides of the chicken.
Arrange the chicken in a single layer in the steamer basket. Arrange the vegetables around the chicken. Steam, covered, for 11 to 12 minutes, or until the chicken is no longer pink in the center and the vegetables are tender. Remove from the heat. Carefully uncover the pan away from you (to prevent steam burns).
per serving
calories 155
total fat 3.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 73 mg
sodium 300 mg
carbohydrates 5 g
fiber 2 g
sugars 3 g
protein 26 g
dietary exchanges: 1 vegetable, 3 lean meat
COOK'S TIP: For a fancier presentation, "roll-cut" the carrot. Start by cutting through the carrot at a 45-degree angle at one end. Roll the carrot a quarter turn. Make another 45-degree cut. Repeat the process until the carrot is completely cut into wedge-shaped pieces.
## walnut-orange broccoli
This recipe is all about fresh ingredients—broccoli, orange juice and zest, and thyme—plus some crunch from dry-roasted walnuts.
SERVES 4 | ½ cup per serving
8 ounces broccoli florets
½ teaspoon grated orange zest
2 tablespoons fresh orange juice
2 teaspoons olive oil
1 teaspoon fresh thyme
⅛ teaspoon salt
¼ cup chopped walnuts, dry-roasted
Fill a large saucepan with water to a depth of 1 inch. Place a collapsible steamer basket in the pan. Make sure the water doesn't touch the bottom of the steamer. Bring the water to a boil over high heat. Put the broccoli in the steamer. Steam, covered, for 5 to 6 minutes, or until tender-crisp. Remove from the heat. Carefully uncover the pan away from you (to prevent steam burns). Drain the broccoli well in a colander.
Meanwhile, in a medium bowl, whisk together the remaining ingredients except the walnuts.
Using tongs or a slotted spoon, transfer the broccoli to the bowl. Add the walnuts, stirring to coat.
per serving
calories 91
total fat 7.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 3.5 g
monounsaturated fat 2.5 g
cholesterol 0 mg
sodium 92 mg
carbohydrates 6 g
fiber 2 g
sugars 2 g
protein 3 g
dietary exchanges: 1 vegetable, 1½ fat
## lemony green beans with almonds
The lively taste of lemon and a pop of fresh parsley add the perfect accents to fresh green beans.
SERVES 4 | ½ cup per serving
8 ounces green beans, trimmed, cut into 1½- to 2-inch pieces (about 2 cups)
2 tablespoons sliced almonds, dry-roasted
1 tablespoon minced fresh parsley
½ teaspoon grated lemon zest
1 teaspoon fresh lemon juice
⅛ teaspoon pepper
Fill a large saucepan with water to a depth of 1 inch. Place a collapsible steamer basket in the pan. Make sure the water doesn't touch the bottom of the steamer. Bring the water to a boil over high heat. Put the green beans in the steamer. Steam, covered, for 3 to 5 minutes, or until tender-crisp. Remove from the heat. Carefully uncover the pan away from you (to prevent steam burns). Drain the green beans well in a colander.
Using tongs, transfer the green beans to a serving bowl. Sprinkle with the remaining ingredients, stirring gently to coat. Serve immediately for the best texture.
per serving
calories 35
total fat 1.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 0 mg
sodium 4 mg
carbohydrates 5 g
fiber 2 g
sugars 2 g
protein 2 g
dietary exchanges: 1 vegetable, ½ fat
COOK'S TIP ON DRY-ROASTING NUTS IN A SKILLET: Dry-roasting nuts brings out their flavor. Put the nuts in a single layer in an ungreased skillet. Dry-roast over medium heat for about 4 minutes, or until just fragrant, stirring frequently and watching carefully so they don't burn. Remove the skillet from the heat to stop the cooking process.
## mixed vegetables with ginger
Using lemon juice as the steaming liquid imparts a light, citrusy flavor to this simple vegetable dish. Feel free to substitute whatever vegetables you have on hand.
SERVES 4 | ½ cup per serving
¼ cup fresh lemon juice
1 cup sliced carrots
2 cups cauliflower florets
1 cup sugar snap peas, trimmed
2 medium garlic cloves, halved
1 1½-inch piece peeled gingerroot, cut into matchstick-size strips
Pour the lemon juice into a large saucepan. Add water to bring the liquid to a depth of 1 inch. Place a collapsible steamer basket in the pan. Make sure the liquid doesn't touch the bottom of the steamer. Bring the liquid to a boil over high heat. In the steamer, layer, in order, the carrots, cauliflower, peas, garlic, and gingerroot. Steam, covered, for 5 to 7 minutes, or until the vegetables are tender-crisp. Remove from the heat. Carefully uncover the pan away from you (to prevent steam burns). Drain the vegetables well in a colander, discarding the cooking liquid.
per serving
calories 39
total fat 0.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 40 mg
carbohydrates 8 g
fiber 3 g
sugars 4 g
protein 2 g
dietary exchanges: 2 vegetable
## thai sweet rice with mango
This dessert is popular in Thai restaurants, and for good reason. Be sure to buy sweet rice (also called sticky rice), as the regular kind won't work.
SERVES 4 | heaping ⅓ cup rice and ¼ cup mango per serving
¾ cup uncooked Thai-style sweet rice
⅓ cup lite coconut milk or ¼ cup fat-free milk and ¼ teaspoon coconut extract
1 tablespoon light brown sugar
¼ teaspoon salt
1 medium mango, thinly sliced
4 sprigs of fresh mint
Put the rice in a medium bowl. Pour in enough water to cover the rice by at least 1 inch. Let stand, covered, for 8 to 12 hours.
After the rice has soaked, cut a circle of cooking parchment to fit inside a bamboo or collapsible steamer basket. Using a fork, pierce the paper several times. Place the paper in the steamer.
In a saucepan or wok large enough to hold the steamer, add water to a depth of 2 inches. Place the steamer in the pan. Make sure the water doesn't touch the bottom of the steamer. Bring to a simmer over medium heat.
Meanwhile, drain the rice, discarding the soaking water. Transfer the rice to the steamer. Reduce the heat and simmer, covered, for 45 minutes, or until the rice is tender (no stirring needed). Check the water level occasionally, adding more if needed.
In a medium bowl, stir together the coconut milk, brown sugar, and salt until the brown sugar is dissolved. Stir in the rice. Garnish with the mango and mint sprigs.
per serving
calories 211
total fat 1.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 156 mg
carbohydrates 47 g
fiber 2 g
sugars 15 g
protein 3 g
dietary exchanges: 2 starch, 1 fruit
COOK'S TIP: Thai-style sweet rice is sometimes called sticky or glutinous rice because of the consistency. As with other rice, it's gluten-free. It's sold in Asian markets and in the Asian section of some grocery stores.
# poaching
cod in green curry broth
green tea halibut with baby spinach
pineapple and ginger mahi mahi
salmon with lemon-watercress sauce
honeyed salmon with spiced honeydew salsa
citrus tea tilapia
lemon chicken with dill sauce
chicken and vegetables with thyme-scented broth
cheesy open-face egg sandwiches
cardamom-orange plums
vanilla-infused pears
Poaching is a simple way to prepare meals, especially delicate foods like fish and eggs. Poaching brings water or a flavorful poaching liquid, such as wine, broth, fruit juice, or tea, to a boil and then gently simmers the food until done, which helps retain the food's shape and moisture. Although the liquid does come to a boil at first, poaching shouldn't be confused with cooking by boiling. Poached food is cooked more slowly, and the liquid often becomes a tasty base for a sauce, which means you retain all the food's vitamins and minerals.
Tired of the same old chicken dishes? Poaching is a great cooking method for infusing chicken breasts with tons of flavor while keeping them moist and tender. Try Lemon Chicken with Dill Sauce. Need to add more fruit to your diet? Try poaching it, as in Vanilla-Infused Pears, in which the fruit simmers in white wine made fragrant with orange zest, cinnamon, and vanilla.
Another benefit for busy home cooks is that poaching is fast and doesn't require much hands-on time, as the food is moved very little in the pan. You don't need much more than a pot with a lid and healthy ingredients to put a nutritious poached meal on the table.
HERE'S HOW THIS TECHNIQUE WORKS:
1. Use a pan that is just large enough to contain the food you want to cook but deep enough to add the amount of liquid needed. Add herbs, aromatics, and spices, such as garlic, onions, cinnamon sticks, fresh ginger, citrus peels, bay leaves, cardamom pods, peppercorns, or whole cloves.
2. Next, barely SUBMERGE the food in the simmering liquid, and cook it with a cover. Larger foods, such as whole fish, should be added to the pan in the beginning and heated along with the liquid. Smaller foods, such as fish fillets, eggs, and chicken breasts, should be added after the liquid is hot.
3. After the food is cooked, REMOVE it from the pan (a slotted spoon or spatula works best). Serve it with the broth or reduce the remaining liquid (decrease the volume by boiling the liquid rapidly) to make a flavorful sauce.
TO POACH:
To cook food gently immersed in simmering liquid.
Tools & Equipment Needed: Skillet or Dutch oven with lid, saucepan with lid, slotted spoon or spatula, kitchen timer
TIPS:
• Keep a close eye on the poaching liquid, which should never reach a boil after the food has been added. It's a good idea to keep the lid ajar (especially if you don't have glass pot lids) so you can watch that the liquid isn't boiling. If you don't have a lid, use a round piece of cooking parchment cut to fit the pot. The parchment will trap some steam but let enough out so the water doesn't boil.
• Although you can use water as the liquid, you can also use 100 percent fruit juice, tea, wine, or fat-free, low-sodium broth to infuse the food with flavor. An acid, such as vinegar, wine, or lemon juice, can be added to the poaching liquid to help firm up the proteins in the food.
• It's key to use uniform-size pieces so that everything cooks evenly at the same time.
• A constant simmer is not always easy to regulate, especially on a gas stovetop, so our recipes don't state at what temperature to simmer. Even at the lowest setting on some stovetops, the heat may be too intense, which will cause the liquid to boil. When simmering, a small bubble should break through the surface of the liquid every second or two. If more bubbles rise to the surface, then lower the heat or use a burner plate, sometimes called a simmer plate, to diffuse the heat.
BEST FOODS FOR POACHING
Seafood: The moist, gentle heat is perfect for whole fish and fillets; try Citrus Tea Tilapia and Pineapple and Ginger Mahi Mahi.
Poultry: Poaching keeps whole chickens and chicken breasts from drying out, as in Chicken and Vegetables with Thyme-Scented Broth.
Vegetarian Protein: Poached eggs are a classic and can be used in a variety of dishes, including Cheesy Open-Face Egg Sandwiches.
Fruit: Poached fruit makes a delicious, elegant dessert. Try stone fruits such as peaches, nectarines, pears, apricots, and cherries, as well as figs, pineapples, and plums, as in Cardamom-Orange Plums.
## cod in green curry broth
The lively flavors of Thailand permeate this rich-tasting entrée, which contains Thai curry paste and a liberal dose of lime. Serve it with a green vegetable such as baby bok choy and brown rice or brown rice noodles.
SERVES 4 | 3 ounces fish and 1 cup broth per serving
4 cups fat-free, low-sodium chicken broth and 1 cup fat-free, low-sodium chicken broth (if needed), divided use
1 tablespoon grated lime zest
3 tablespoons fresh lime juice
1 tablespoon Thai green curry paste
1 tablespoon canola or corn oil
2 medium shallots, minced
1 medium garlic clove, minced
4 cod fillets (about 4 ounces each), rinsed and patted dry
2 medium green onions, thinly sliced diagonally
1 tablespoon minced fresh cilantro or ¼ cup basil chiffonade (Thai basil preferred)
1 medium lime, cut into 4 wedges
In a medium bowl, whisk together 4 cups broth, the lime zest, lime juice, and curry paste.
In a large skillet, heat the oil over medium-high heat, swirling to coat the bottom. Cook the shallots and garlic for 2 to 3 minutes, or until soft, stirring frequently. Stir in the broth mixture. Reduce the heat to medium. Cook, covered, until just boiling.
Gently place the fish in the broth mixture. If necessary, pour in enough of the remaining 1 cup broth to barely cover the fish. Reduce the heat and simmer, partially covered, for 7 minutes, or until the fish flakes easily when tested with a fork.
Transfer the fish to serving bowls. Ladle the broth over the fish. Sprinkle with the green onions and cilantro. Serve with the lime wedges.
per serving
calories 146
total fat 4.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.5 g
cholesterol 43 mg
sodium 208 mg
carbohydrates 5 g
fiber 1 g
sugars 1 g
protein 21 g
dietary exchanges: ½ other carbohydrate, 3 lean meat
## green tea halibut with baby spinach
Adding green tea to the poaching liquid enhances the Asian flavors that infuse this dish. Topping the raw spinach with the hot fish and the tea mixture cooks it just enough, right in the bowl.
SERVES 4 | 3 ounces fish, 1 cup spinach, and ½ cup broth per serving
2 cups water
1 tablespoon soy sauce (lowest sodium available)
1 teaspoon minced peeled gingerroot
1 teaspoon toasted sesame oil
1 medium garlic clove, minced
⅛ teaspoon pepper
1 single-serving bag of green tea (with a tag preferred)
4 halibut fillets (about 4 ounces each), about 1 inch thick, rinsed and patted dry
4 cups loosely packed baby spinach
2 medium green onions, thinly sliced
2 teaspoons sesame seeds, dry-roasted
In a shallow saucepan, stir together the water, soy sauce, gingerroot, sesame oil, garlic, and pepper. Add the tea bag, letting the tag hang over the side of the pan. Bring to a simmer over medium-high heat. Reduce the heat and simmer for 5 minutes, or until the tea bag has steeped. Discard the tea bag. Increase the heat to medium. Cook, covered, until just boiling.
Gently place the fish in the tea mixture. If necessary, pour in enough hot water to barely cover the fish. Reduce the heat and simmer, partially covered, for 10 to 11 minutes, or until the fish flakes easily when tested with a fork.
Put the spinach in serving bowls. Place the fish on the spinach. Sprinkle with the green onions. Ladle the broth over all. Sprinkle with the sesame seeds.
per serving
calories 161
total fat 5.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 1.5 g
cholesterol 36 mg
sodium 189 mg
carbohydrates 3 g
fiber 1 g
sugars 1 g
protein 25 g
dietary exchanges: 3 lean meat
## pineapple and ginger mahi mahi
A versatile and mildly flavored fish known by its Hawaiian name, mahi mahi is a natural with the tropical Asian flavors of pineapple and ginger. Serve this with brown rice or soba noodles to soak up the fruity broth.
SERVES 4 | 3 ounces fish and 1 cup pineapple mixture per serving
1 tablespoon canola or corn oil
2 medium carrots, thinly sliced diagonally
1 medium red bell pepper, thinly sliced
2 medium garlic cloves, minced
2 cups fat-free, low-sodium chicken broth and 1 cup fat-free, low-
sodium chicken broth (if needed), divided use
1 tablespoon grated peeled gingerroot
4 cups chopped pineapple (1-inch pieces)
4 mahi mahi fillets (about 4 ounces each), rinsed and patted dry
¼ cup chopped fresh cilantro
3 medium green onions, thinly sliced diagonally (green parts only)
In a large skillet, heat the oil over medium-high heat, swirling to coat the bottom. Cook the carrots, bell pepper, and garlic for 2 to 3 minutes, or until the carrots and bell pepper are tender-crisp, stirring frequently. Stir in 2 cups broth and the gingerroot. Reduce the heat to medium. Cook, covered, until just boiling.
Stir in the pineapple. Gently place the fish in the broth mixture. If necessary, pour in enough of the remaining 1 cup broth to barely cover the fish. Reduce the heat and simmer, partially covered, for 5 to 7 minutes, or until the fish flakes easily when tested with a fork.
Transfer the fish to serving bowls. Ladle the broth mixture over the fish. Sprinkle with the cilantro and green onions.
per serving
calories 252
total fat 4.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 83 mg
sodium 177 mg
carbohydrates 29 g
fiber 5 g
sugars 21 g
protein 24 g
dietary exchanges: 1½ fruit, 1 vegetable, 3 lean meat
## salmon with lemon-watercress sauce
Traditionally served cold, this showy salmon dish is equally inviting when warm.
SERVES 4 | 3 ounces fish and 2 tablespoons sauce per serving
¼ cup fat-free plain Greek yogurt
¼ cup light mayonnaise
2 tablespoons finely chopped watercress or parsley
1 tablespoon thinly sliced green onions or chives
1 tablespoon grated lemon zest
Pinch of pepper (white preferred)
2 medium ribs of celery, sliced
1 medium onion, sliced
1 medium carrot, sliced
2 slices lemon, about ¼ inch thick
1 medium dried bay leaf
3 black peppercorns
1¾ cups fat-free, low-sodium chicken broth
1 cup dry white wine (regular or nonalcoholic)
1 1-pound skinless salmon fillet, about 1 inch thick, rinsed and patted dry
¼ teaspoon paprika
In a small bowl, stir together the yogurt, mayonnaise, watercress, green onions, lemon zest, and pepper. Cover and refrigerate.
Put the celery, onion, carrot, lemon slices, bay leaf, and peppercorns in a large skillet. Pour in the broth and wine. Cook, covered, over medium-high heat until just boiling.
Gently place the fish in the broth mixture. If necessary, pour in enough hot water to barely cover the fish. Reduce the heat and simmer, partially covered, for 8 to 12 minutes, or until the fish is the desired doneness. Using a slotted spatula, transfer the fish to a plate. Pat the fish dry with paper towels. Discard the liquid.
Serve the fish warm or wrap it in plastic wrap or aluminum foil and refrigerate for 3 to 24 hours to serve chilled. Just before serving, cut the fish into four pieces. Sprinkle with the paprika. Serve the sauce on the side.
per serving
calories 216
total fat 8.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 3.5 g
monounsaturated fat 2.5 g
cholesterol 58 mg
sodium 236 mg
carbohydrates 3 g
fiber 0 g
sugars 1 g
protein 26 g
dietary exchanges: 3 lean meat
COOK'S TIP: If you prefer, you can substitute redfish, sea bass, or monkfish fillets for the salmon.
## honeyed salmon with spiced honeydew salsa
The beauty of poaching fish is that the fish stays moist and delicate. Honey and lime juice give this poaching liquid a sweet-and-sour taste.
SERVES 4 | 3 ounces fish and ⅓ cup salsa per serving
SALSA
1½ tablespoons honey
1 teaspoon grated lime zest
1 teaspoon fresh lime juice
⅛ to ¼ teaspoon crushed red pepper flakes
1 cup chopped honeydew melon
⅓ cup finely chopped red bell pepper
¼ cup sliced green onions
1 tablespoon chopped fresh cilantro
2 cups water
¼ cup sliced green onions (white and light green parts)
3 tablespoons fresh lime juice
2 tablespoons honey
4 salmon fillets (about 4 ounces each), rinsed and patted dry
In a medium bowl, stir together 1½ tablespoons honey, 1 teaspoon lime juice, and the red pepper flakes. Gently stir in the remaining salsa ingredients, including the lime zest. Set aside.
In a medium skillet, stir together the water and the remaining ¼ cup green onions, 3 tablespoons lime juice, and 2 tablespoons honey. Cook, covered, over medium-high heat until just boiling.
Gently place the fish in the poaching liquid. If necessary, pour in enough hot water to barely cover the fish. Reduce the heat and simmer, partially covered, for 6 to 8 minutes, or until the fish is the desired doneness. Using a slotted spatula, transfer to serving plates. Discard the poaching liquid. Serve the fish with the salsa.
per serving
calories 194
total fat 5.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 1.5 g
cholesterol 53 mg
sodium 98 mg
carbohydrates 12 g
fiber 1 g
sugars 11 g
protein 24 g
dietary exchanges: ½ fruit, ½ other carbohydrate, 3 lean meat
## citrus tea tilapia
This sweet and savory fish dish gets a triple dose of citrus from fresh orange zest and juice, as well as citrus-flavored tea. Serve with steamed veggies, such as Walnut-Orange Broccoli.
SERVES 4 | 3 ounces fish and 2 tablespoons sauce per serving
4 single-serving bags of citrus tea
3 cups hot water, 1 cup hot water (if needed), and 1 tablespoon water, divided use
1 tablespoon light or dark brown sugar
1 tablespoon canola or corn oil
2 medium shallots, chopped
2 medium garlic cloves, minced
2 tablespoons grated orange zest
⅓ to ½ cup fresh orange juice
¼ teaspoon pepper (freshly ground preferred)
4 tilapia fillets (about 4 ounces each), rinsed and patted dry
1 tablespoon cornstarch
1 tablespoon minced fresh parsley
1 medium lemon, cut into 4 wedges
Put the tea bags in a 4-cup glass measuring cup. Pour in 3 cups hot water. Steep, covered, for 4 to 5 minutes. Discard the tea bags. Stir in the brown sugar.
In a large skillet, heat the oil over medium-high heat, swirling to coat the bottom. Cook the shallots and garlic for 2 to 3 minutes, or until soft, stirring frequently. Stir in the tea mixture, orange zest, orange juice, and pepper. Reduce the heat to medium. Cook, covered, until just boiling.
Gently place the fish in the tea mixture. If necessary, pour in enough of the 1 cup hot water to barely cover the fish. Reduce the heat and simmer, partially covered, for 4 to 5 minutes, or until the fish flakes easily when tested with a fork.
Without turning off the heat, transfer the fish to plates. Cover the fish loosely with aluminum foil to keep warm.
Put the cornstarch in a small bowl. Add the remaining 1 tablespoon water, stirring to dissolve. Gradually add to the sauce, whisking until it begins to thicken. Bring just to a boil. Reduce the heat and simmer for 3 to 5 minutes, whisking frequently.
Spoon the sauce over the fish. Sprinkle with the parsley. Serve with the lemon wedges.
per serving
calories 181
total fat 5.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 3.0 g
cholesterol 57 mg
sodium 69 mg
carbohydrates 10 g
fiber 1 g
sugars 5 g
protein 23 g
dietary exchanges: ½ other carbohydrate, 3 lean meat
COOK'S TIP: Flounder, red snapper, or other types of flaky white fish may be substituted for the tilapia.
## lemon chicken with dill sauce
Whether you are a novice or an experienced cook, you'll love the simplicity of this vibrantly flavored dish. Serve it with brown rice or farro, along with your favorite vegetable. Or serve the moist and tender chicken over a salad of dark, leafy greens.
SERVES 4 | 3 ounces chicken and 2 tablespoons sauce per serving
1½ cups fat-free, low-sodium chicken broth
½ cup dry white wine (regular or nonalcoholic)
1 small lemon, thinly sliced
1 teaspoon dill seeds
1 teaspoon dried oregano, crumbled
⅛ teaspoon pepper (freshly ground preferred)
4 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded, flattened to ¾-inch thickness
SAUCE
½ cup fat-free plain Greek yogurt
2 teaspoons chopped fresh dillweed
½ teaspoon grated lemon zest
1 teaspoon fresh lemon juice
⅛ teaspoon pepper (freshly ground preferred)
1 medium lemon, thinly sliced
4 sprigs of fresh dillweed (stems trimmed to the feathery tops)
In a large, shallow saucepan, stir together the broth, wine, lemon slices, dill seeds, oregano, and pepper. Bring to a boil over high heat. Reduce the heat and simmer, covered, for 5 minutes.
Place the chicken in the broth mixture. If necessary, add enough hot water to barely cover the chicken. Increase the heat to medium high and return to a simmer. Reduce the heat and simmer, partially covered, for 8 minutes, or until the chicken is no longer pink in the center.
Meanwhile, in a small bowl, whisk together the sauce ingredients.
Using a slotted spoon or spatula, transfer the cooked chicken to a cutting board. Discard the poaching liquid. Cut the chicken diagonally across the grain into thick slices. Transfer to plates. Spoon the sauce over the chicken. Garnish with the remaining lemon slices and sprigs of dillweed.
per serving
calories 149
total fat 3.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 73 mg
sodium 165 mg
carbohydrates 1 g
fiber 0 g
sugars 1 g
protein 27 g
dietary exchanges: 3½ lean meat
COOK'S TIP: The sauce can be prepared up to three days in advance. Cover and refrigerate it until needed.
## chicken and vegetables with thyme-scented broth
A poached chicken breast served with tender vegetables is the height of simplicity, letting the fresh ingredients shine through. Serve this in a bowl, like a soup or stew, to enjoy all the comforting, fragrant broth.
SERVES 4 | 3 ounces chicken and 1 cup vegetables and broth per serving
1 tablespoon olive oil
2 medium leeks, thinly sliced (white parts only)
2 medium ribs of celery, thinly sliced diagonally
4 cups fat-free, low-sodium chicken broth and 1 cup fat-free, low-sodium chicken broth (if needed), divided use
2 small carrots, thinly sliced diagonally
1 medium red potato, quartered and thinly sliced
3 sprigs of fresh thyme
4 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded
8 ounces chopped kale, tough stems discarded
¼ teaspoon pepper (freshly ground preferred)
In a large saucepan, heat the oil over medium-high heat, swirling to coat the bottom. Cook the leeks and celery for 3 to 5 minutes, or until soft, stirring frequently.
Stir in 4 cups broth, the carrots, potato, and thyme. Increase the heat to high and bring to a boil. Reduce the heat and simmer, covered, for 5 minutes. Place the chicken in the broth mixture. If necessary, pour in enough of the remaining 1 cup broth to barely cover the chicken. Increase the heat to medium high and return to a simmer. Reduce the heat and simmer, partially covered, for 4 to 5 minutes (the chicken won't be done at this point). Using a slotted spoon, discard the thyme.
Add the kale. Cook for 3 minutes, or until the kale is just tender and the chicken is no longer pink in the center.
Using a slotted spoon or spatula, transfer the chicken to a cutting board. Cut diagonally across the grain into thick slices. Transfer to bowls. Ladle the vegetables and broth over the chicken. Sprinkle with the pepper.
per serving
calories 278
total fat 7.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 3.5 g
cholesterol 73 mg
sodium 280 mg
carbohydrates 23 g
fiber 4 g
sugars 4 g
protein 31 g
dietary exchanges: ½ starch, 3 vegetable, 3 lean meat
COOK'S TIP ON LEEKS: To prepare leeks, cut off and discard the roots on the white bulb. Cut off the tougher dark green leaves. If you wish, you can save these to make stock. Halve the leek lengthwise. Then cut the halves crosswise into thin slices. Transfer the slices to a small colander. Rinse them well under cold water. Drain them well. If necessary, repeat the process to clean off all the sandy grit.
## cheesy open-face egg sandwiches
Perfectly poached eggs are easy to prepare, making them an ideal breakfast for those in a hurry. Here they top crisp toasted whole-grain English muffin halves, while a cheesy béchamel sauce ties the dish together. The eggs and sauce are equally tasty when served over steamed or sautéed spinach.
SERVES 4 | 1 sandwich per serving
½ cup fat-free milk
2 teaspoons all-purpose flour
½ teaspoon olive oil
⅛ teaspoon pepper (freshly ground preferred)
⅛ teaspoon ground nutmeg
⅛ teaspoon cayenne (optional)
⅓ cup shredded low-fat Cheddar cheese
3 cups water
1 teaspoon white vinegar
4 large eggs, cracked into separate small bowls or cups
2 whole-grain English muffins (lowest sodium available), halved and toasted
In a small bowl, whisk together the milk, flour, oil, pepper, nutmeg, and cayenne. In a small saucepan, bring the mixture to a simmer over medium-high heat. Simmer for 1 to 2 minutes, or until thickened, whisking frequently. Remove from the heat.
Add the Cheddar, stirring until melted. Cover to keep warm. Set aside.
In a shallow saucepan, bring the water and vinegar to just below the boiling point (140°F to 180°F on an instant-read thermometer); tiny bubbles may form at the bottom of the pan, but they won't break the surface of the water. Place a double layer of paper towels on a large plate.
Using a clean medium-size whisk, quickly and gently stir the water to create a swirl in the center of the pan. Carefully slip one of the eggs into the swirl. Using a spoon, gently stir the water around the egg for 10 seconds to help the egg white wrap around the yolk. Cook for 2 to 4 minutes, or until the white is completely set and the yolk is the desired doneness. Using a slotted spoon, transfer the egg to the paper towel. Repeat with the remaining eggs.
Just before serving, put the English muffin halves on plates with the cut sides up. Top each muffin half with an egg. Spoon the sauce over the eggs.
per serving
calories 176
total fat 7.0 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 189 mg
sodium 263 mg
carbohydrates 17 g
fiber 2 g
sugars 5 g
protein 13 g
dietary exchanges: 1 starch, 1½ lean meat
COOK'S TIP: For added visual appeal and flavor, top each sandwich with a pinch of freshly ground pepper, paprika, or chopped fresh herbs (chives, thyme, oregano, basil, and rosemary are great choices).
## cardamom-orange plums
Aromatic cardamom gives these poached plums a distinctive spicy-sweet flavor. Serve the fruit warm or chilled, alone or with a scoop of fat-free frozen vanilla yogurt.
SERVES 4 | 2 plum halves per serving
1 teaspoon grated orange zest
2½ cups fresh orange juice and 1 cup fresh orange juice (if needed)
½ cup orange liqueur, such as Grand Marnier (optional)
1 tablespoon sugar
1 tablespoon crushed cardamom pods (about 3 to 4 pods)
4 medium plums, halved
In a medium saucepan, stir together 2½ cups orange juice, the liqueur, sugar, cardamom, and orange zest. Bring to a simmer over medium heat, stirring until the sugar is dissolved.
Gently place the plums in the orange juice mixture. If necessary, pour in enough of the remaining 1 cup orange juice to barely cover the plums. Increase the heat to high and bring to a simmer. Reduce the heat and simmer for 5 to 7 minutes, or until the plums are just tender when pierced with the tip of a sharp knife, stirring frequently.
Using a slotted spoon, transfer the plums to dessert dishes.
Increase the heat to high and bring the orange juice mixture to a boil. Boil for 10 to 12 minutes, or until reduced by half (to about 1½ cups), stirring constantly. Using a fine-mesh sieve, strain the sauce, discarding the solids. Spoon the sauce over the plums.
per serving
calories 141
total fat 0.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 2 mg
carbohydrates 33 g
fiber 1 g
sugars 28 g
protein 2 g
dietary exchanges: 2 fruit
COOK'S TIP: Used in equal parts, a combination of cinnamon and cloves or cinnamon and nutmeg can substitute for cardamom. In this recipe, use 1 cinnamon stick (about 3 inches long) and ¼ teaspoon whole cloves instead of the cardamom pods.
COOK'S TIP ON CARDAMOM: Cardamom pods are popular in Scandinavian, Indian, and Greek cooking. They have a short shelf life and should be stored in an airtight container in the freezer. Ground cardamom loses its potency very quickly, so choose the pods whenever possible.
## vanilla-infused pears
Vanilla and pears make a heavenly pair, especially when the fruit is gently simmered and served with a thick sauce made from the cinnamon-scented poaching liquid. Serve warm or chilled.
SERVES 4 | 1 pear half and 2 tablespoons sauce per serving
1 cup Riesling or other medium-sweet white wine (regular or nonalcoholic)
½ cup water
2½ tablespoons sugar
1 cinnamon stick (about 3 inches long)
Zest of ½ medium orange, cut into strips
1 teaspoon vanilla extract
2 medium firm Bosc or Bartlett pears, peeled, halved, and cored
In a medium saucepan, whisk together all the ingredients except the pears. Bring to a boil over medium-high heat. Boil for 5 minutes, or until the sugar is dissolved, stirring frequently.
Gently place the pears in the wine mixture. If necessary, pour in enough hot water to barely cover the pears. Reduce the heat and simmer, partially covered, for 10 to 15 minutes, or until the tip of a sharp knife inserted into a pear comes out easily.
Using a slotted spoon, transfer the pears to plates. Discard the cinnamon stick and orange zest from the sauce.
Simmer the sauce for 12 to 15 minutes, or until reduced by half (to about ½ cup), stirring constantly. Spoon over the pears.
per serving
calories 108
total fat 0.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 2 mg
carbohydrates 23 g
fiber 3 g
sugars 17 g
protein 0 g
dietary exchanges: 1 fruit, ½ other carbohydrate
COOK'S TIP: For a deeper flavor, let the pears cool in the poaching liquid. Cover and refrigerate overnight. Serve chilled, or remove from the refrigerator and let stand for about 1 hour to serve at room temperature.
# broiling
warm caesar salad with tofu "croutons"
brazilian halibut
portobello-tuna melts
sweet and tangy scallops
chicken and green onion kebabs
sweet and spicy drumsticks
porcupine meatballs
sirloin steak with creamy horseradish sauce
lettuce-wrap sliders
portobello pizzas
browned tofu with bok choy
swiss chard and swiss cheese frittata
broiled foiled tomatoes
grapefruit with crunchy ginger
The speed and simplicity of broiling—and the fact that ovens come equipped with a built-in broiler—make it a convenient and simple way to prepare healthy meals. What is broiling? Think of it as upside-down grilling, with the food on the bottom and the flame or heating element on top. Just about anything that you can grill can be broiled. You can broil many nutritious foods, including seafood, vegetables, and even fruit, such as in Brazilian Halibut, Broiled Foiled Tomatoes, and Grapefruit with Crunchy Ginger.
The high heat of broiling creates a crisp, browned crust on fish, meat, and poultry and a moist, tender interior while allowing excess saturated fat to drip away into the broiler pan. The intense, direct heat cooks food fast and caramelizes it, giving it a distinctive flavor.
TO BROIL:
To cook food directly under a heat source in an electric or gas oven.
Tools & Equipment Needed: Broiler pan and rack, broiler-safe baking sheets, ovenproof skillet, oven mitts and pot holders, oven thermometer, instant-read thermometer, kitchen timer
TIPS:
• In electric ovens, the broiler is always at the top. In gas ovens, broilers can be either at the top or in a separate drawer under the oven. If you have a toaster oven, you most likely have a broiler there, too.
• Position food under the heating element for best results, rotating it as necessary to evenly cook the food's surface.
• Remember that if a recipe specifies a distance from the heat, it means the number of inches from the heating element to the top of the food you are broiling, not to the top of the broiler rack. As a rule of thumb, food should be placed about 4 inches from the heating element to avoid burning.
• Most ovens come with a broiler pan and rack, but if you don't have a broiler pan, then you can use any all-metal pan.
• To make cleanup easier, line the broiler pan with aluminum foil.
• Trim and discard all visible fat from poultry and meats before broiling; this will both cut down on saturated fat and help prevent flare-ups.
• Use lower-sodium marinades and glazes as well as salt-free rubs to add flavor.
• To avoid both overcooking and undercooking meat and poultry, use a meat thermometer to check doneness. Remove the meat or poultry from the oven before inserting the instant-read thermometer. Insert the thermometer into the center, or thickest part, of the meat, making sure the thermometer doesn't touch bone or fat.
• See broiling safety tips.
BEST FOODS FOR BROILING
Seafood: Fish fillets and steaks, shrimp, and scallops, as in Sweet and Tangy Scallops.
Poultry: Chicken breast halves (bone-in or boneless), as in Chicken and Green Onion Kebabs; chicken tenderloins; turkey cutlets; and turkey tenderloins.
Meat: Tender beef cuts, such as top sirloin, as in Sirloin Steak with Creamy Horseradish Sauce, flank steak, and beef tenderloin; pork cuts such as pork chops and tenderloin medallions.
Vegetables: Asparagus, tomato halves, onion wedges or slices, zucchini, yellow summer squash, eggplant slices, and portobello mushrooms, such as Portobello Pizzas.
Fruit: Peaches, nectarines, plums, pineapples, mangoes, and grapefruit, such as Grapefruit with Crunchy Ginger.
## warm caesar salad with tofu "croutons"
Briefly broiling the lettuce gives this salad a warm, toasty flavor and a softer texture. Crisp, seasoned tofu stands in for traditional croutons in a surprising but delicious way. To turn this into an entrée, just add lean leftover chicken or turkey, cooked without salt.
SERVES 4 | 1 cup per serving
Olive oil cooking spray
4 ounces light extra-firm tofu, drained, patted dry, and cut into ½-inch cubes
½ teaspoon salt-free all-purpose seasoning blend and ½ teaspoon salt-free all-purpose seasoning blend, divided use
DRESSING
2 tablespoons white wine vinegar
1 tablespoon olive oil
1 tablespoon Dijon mustard (lowest sodium available)
1 teaspoon soy sauce (lowest sodium available)
1 teaspoon fresh lemon juice
1 medium garlic clove, minced
1 medium head of romaine, halved lengthwise
2 tablespoons shredded or grated Parmesan cheese
⅛ to ¼ teaspoon pepper (freshly ground preferred)
Preheat the broiler. Lightly spray a broiler pan and rack with cooking spray.
Arrange the tofu in a single layer on the broiler rack. Lightly spray the top of the cubes with cooking spray. Sprinkle ½ teaspoon seasoning blend over the tofu. Broil about 4 inches from the heat for 5 to 10 minutes, or until golden brown (watch carefully so the tofu doesn't burn). Remove from the oven. Gently stir the tofu. Lightly spray with cooking spray. Sprinkle with the remaining ½ teaspoon seasoning blend. Broil for 5 to 10 minutes, or until golden brown (watch carefully so the tofu doesn't burn). Transfer to a plate. Set aside.
Meanwhile, in a large bowl, whisk together the dressing ingredients. Set aside.
Put the romaine with the cut sides up on the broiler pan. Lightly spray with cooking spray. Broil about 6 inches from the heat for 1 to 2 minutes on each side, or until golden brown. Transfer to a cutting board. Chop into bite-size pieces.
Add the romaine, Parmesan, and pepper to the dressing, tossing to coat. Sprinkle with the tofu.
per serving
calories 81
total fat 5.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.5 g
cholesterol 2 mg
sodium 189 mg
carbohydrates 6 g
fiber 3 g
sugars 2 g
protein 5 g
dietary exchanges: 1 vegetable, ½ lean meat, ½ fat
COOK'S TIP: Putting the dressing in the bowl first and then adding the salad not only saves on cleanup, it also distributes the dressing more evenly when the salad is tossed, allowing you to use less.
## brazilian halibut
Firm, meaty halibut stands up well to the rich, earthy flavor of coffee, while lemon juice adds a light freshness.
SERVES 4 | 3 ounces fish per serving
1½ teaspoons instant coffee granules
1 tablespoon fresh lemon juice
2 tablespoons light tub margarine, melted
½ teaspoon onion powder
1 1-pound halibut or other firm fish steak, rinsed and patted dry
Cooking spray
1½ teaspoons chopped fresh parsley
Put the coffee granules in a shallow baking dish. Add the lemon juice, stirring to dissolve. Stir in the margarine and onion powder. Transfer 2 teaspoons of the marinade to a small bowl. Set aside. Add the fish to the marinade in the baking dish, turning to coat. Cover and refrigerate for 30 minutes, turning once halfway through.
Preheat the broiler. Lightly spray the broiler pan and rack with cooking spray.
Drain the fish, discarding the marinade. Broil about 4 inches from the heat for 4 to 5 minutes. Remove from the oven.
Carefully turn over the fish. Brush the top with the reserved marinade. Broil for 4 to 5 minutes, or until the fish flakes easily when tested with a fork. Just before serving, sprinkle with the parsley.
per serving
calories 108
total fat 2.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 56 mg
sodium 89 mg
carbohydrates 0 g
fiber 0 g
sugars 0 g
protein 21 g
dietary exchanges: 3 lean meat
## portobello-tuna melts
A deli classic goes classy in these sophisticated tuna melts. Creamy tuna salad is spiked with green onions, shallot, and carrots, then piled onto meaty portobello mushroom caps and topped with two kinds of cheese.
SERVES 4 | 1 stuffed mushroom per serving
Cooking spray
2 4.5-ounce cans very low sodium solid albacore tuna, packed in water, drained and flaked
⅓ cup shredded carrot
2 to 3 medium green onions, sliced
1 large shallot, minced
¼ cup light mayonnaise
¼ teaspoon pepper and ¼ teaspoon pepper, divided use
4 4-inch portobello mushroom caps
¼ cup shredded or grated Parmesan cheese
½ cup shredded low-fat Cheddar cheese
Preheat the broiler. Line a large, heavy-duty rimmed baking sheet with aluminum foil. Lightly spray the foil with cooking spray.
In a small bowl, using a fork, stir together the tuna, carrot, green onions, and shallot. Stir in the mayonnaise and ¼ teaspoon pepper.
Arrange the mushroom caps in a single layer on the baking sheet with the stem sides up. Sprinkle the remaining ¼ teaspoon pepper over the mushrooms. Broil about 6 inches from the heat for 5 to 8 minutes, or until they begin to soften. Remove from the oven.
Fill the mushrooms with the tuna mixture. Sprinkle with the Parmesan. Top with the Cheddar. Broil about 6 inches from the heat for 2 to 4 minutes, or until the cheeses are melted and lightly browned and the tuna mixture is hot.
per serving
calories 174
total fat 7.0 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 2.5 g
monounsaturated fat 1.5 g
cholesterol 39 mg
sodium 352 mg
carbohydrates 7 g
fiber 2 g
sugars 2 g
protein 23 g
dietary exchanges: 1 vegetable, 3 lean meat
## sweet and tangy scallops
Infused with the warmth of curry powder, a honey-mustard sauce highlights the sweetness of scallops in this entrée that's simple to make but loaded with complex flavor.
SERVES 4 | 2 ounces scallops per serving
Cooking spray
2 tablespoons honey
2 tablespoons yellow mustard (lowest sodium available)
½ teaspoon curry powder
½ teaspoon fresh lemon juice
12 ounces sea scallops, rinsed and patted dry
1 medium lemon, cut into 4 wedges
Preheat the broiler. Lightly spray a broiler pan with cooking spray.
In a small bowl, whisk together the honey, mustard, curry powder, and lemon juice.
Arrange the scallops in a single layer in the pan. Brush with the honey mixture. Broil about 4 inches from the heat for 5 to 8 minutes, or until browned. Serve with the lemon wedges.
per serving
calories 97
total fat 1.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.5 g
cholesterol 20 mg
sodium 419 mg
carbohydrates 12 g
fiber 0 g
sugars 9 g
protein 11 g
dietary exchanges: 1 other carbohydrate, 2 lean meat
## chicken and green onion kebabs
The kebabs in this recipe are reminiscent of the grilled kebabs known as yakitori that are sold on the streets of Japan, from carts that function very much like those that sell hot dogs in New York City.
SERVES 6 | 2 skewers per serving
MARINADE
¼ cup soy sauce (lowest sodium available)
1½ tablespoons sugar or honey
1 teaspoon canola or corn oil
1 teaspoon minced peeled gingerroot
1 medium garlic clove, minced
1½ pounds boneless, skinless chicken breasts, all visible fat discarded, cut into 24 1-inch cubes
1 medium bunch of green onions (green part only), cut crosswise into 24 1-inch pieces
Cooking spray
In a shallow glass dish, whisk together the marinade ingredients. Add the chicken and green onions, turning to coat. Cover and refrigerate for 30 minutes, turning occasionally.
Meanwhile, soak twelve 8-inch wooden skewers in cold water for at least 10 minutes to keep them from charring, or use metal skewers.
Drain the chicken and green onions, discarding the marinade. Alternate threading the chicken cubes and green onion pieces onto the skewers.
Preheat the broiler. Lightly spray a broiler pan with cooking spray. Arrange the skewers in a single layer in the pan. Broil about 4 inches from the heat for 3 minutes on each side, or until the chicken is no longer pink in the center.
per serving
calories 146
total fat 3.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 73 mg
sodium 397 mg
carbohydrates 3 g
fiber 1 g
sugars 2 g
protein 25 g
dietary exchanges: 3 lean meat
COOK'S TIP ON SOY SAUCE: Be sure to check the milligrams of sodium per serving on the nutrition facts panel before you purchase soy sauce. Surprisingly, some brands of regular soy sauce may contain less sodium than some brands that are labeled "light" soy sauce.
## sweet and spicy drumsticks
For a change from chicken breasts, try drumsticks that have been marinated in fresh lime juice and a bit of soy sauce. Broiling caramelizes the sugars, and a spicy honey-mustard sauce adds the final touch.
SERVES 4 | 2 drumsticks and 1 scant tablespoon sauce per serving
2 tablespoons fresh lime juice
1 tablespoon soy sauce (lowest sodium available)
1½ teaspoons canola or corn oil
8 chicken drumsticks (about 5 ounces each), skin and all visible fat discarded
Cooking spray
SAUCE
2 tablespoons honey
1 tablespoon yellow mustard (lowest sodium available)
1 teaspoon fresh lime juice
1 teaspoon hot chile sauce (sriracha preferred)
In a medium shallow glass baking dish, whisk together the lime juice, soy sauce, and oil. Add the chicken, turning to coat. Cover and refrigerate for 1 to 24 hours, turning occasionally.
Preheat the broiler. Lightly spray a broiler pan and rack with cooking spray.
Drain the chicken, discarding the marinade. Broil the chicken about 4 inches from the heat for 20 to 25 minutes, or until no longer pink in the center, turning occasionally.
Meanwhile, in a small bowl, whisk together the sauce ingredients. Just before serving, drizzle the sauce over the chicken.
per serving
calories 231
total fat 7.0 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 168 mg
sodium 318 mg
carbohydrates 10 g
fiber 0 g
sugars 9 g
protein 31 g
dietary exchanges: ½ other carbohydrate, 4 lean meat
COOK'S TIP ON REMOVING POULTRY SKIN: To remove poultry skin easily, grip the skin with paper towels. The towels keep your fingers from slipping while you're pulling.
## porcupine meatballs
The grains of rice stick out of the meatballs like porcupine quills! Lighten up this kid-pleasing favorite by using ground turkey breast and brown rice.
SERVES 4 | 4 meatballs per serving
Cooking spray
½ cup uncooked instant brown rice
1 pound ground skinless turkey breast
¼ cup chopped onion
1 teaspoon dried Italian seasoning, crumbled
1 teaspoon canola or corn oil
¼ teaspoon pepper
2 cups no-salt-added tomato sauce
½ cup chopped green bell pepper
½ teaspoon chili powder
Preheat the broiler. Lightly spray the broiler pan and rack with cooking spray.
Prepare the rice using the package directions, omitting the salt and margarine.
In a large bowl, using a spoon or your hands, combine the rice, turkey, onion, Italian seasoning, oil, and pepper. Shape into 16 meatballs. Transfer them to the broiler rack.
Broil about 6 inches from the heat for 6 to 8 minutes, turning occasionally until browned evenly on all sides (the meatballs won't be done at this point). In a medium saucepan, stir together the tomato sauce, bell pepper, and chili powder. Bring to a boil over medium-high heat. Gently stir in the meatballs. Reduce the heat and simmer, covered, for 20 minutes, gently stirring occasionally.
per serving
calories 223
total fat 2.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 1.0 g
cholesterol 70 mg
sodium 78 mg
carbohydrates 19 g
fiber 3 g
sugars 6 g
protein 31 g
dietary exchanges: ½ starch, 2 vegetable, 3 lean meat
COOK'S TIP ON SHAPING MEATBALLS: To help make your meatballs uniform in size and shape, use a small ice cream scoop or the large end of a melon baller to scoop out the ground turkey mixture. Use your free hand to round the tops.
## sirloin steak with creamy horseradish sauce
The zing of horseradish and Dijon mustard is a perfect foil for succulent sirloin steak that's been marinating for 24 hours in a mouthwatering mix of balsamic vinegar and Worcestershire sauce. That same blend flavors the tomatoes that broil alongside the beef.
SERVES 4 | 3 ounces beef, 1 tomato half, and 2 tablespoons sauce per serving
1 tablespoon Worcestershire sauce (lowest sodium available)
1 tablespoon balsamic vinegar
½ teaspoon garlic powder
½ teaspoon pepper
1 1-pound boneless sirloin steak, all visible fat discarded
Cooking spray
¼ teaspoon salt
2 medium tomatoes, halved crosswise
SAUCE
½ cup fat-free sour cream
2 tablespoons grated peeled horseradish
2 tablespoons water
1 tablespoon olive oil (extra virgin preferred)
2 teaspoons coarse-grain Dijon mustard (lowest sodium available)
⅛ teaspoon salt
In a large, shallow glass baking dish, whisk together the Worcestershire sauce, vinegar, garlic powder, and pepper. Set aside 1 tablespoon of the marinade. Cover and refrigerate the reserved marinade. Add the beef to the marinade in the baking dish, turning to coat. Cover and refrigerate for about 24 hours, turning occasionally.
Preheat the broiler. Lightly spray a broiler pan and rack with cooking spray.
Stir ¼ teaspoon salt into the reserved marinade.
Drain the beef, discarding the marinade in the baking dish. Broil the beef and tomatoes with the cut side up about 4 inches from the heat for 3 minutes. Turn over the beef. Brush the beef and tomatoes with the reserved marinade. Broil for 3 to 5 minutes, or until the beef is the desired doneness. Transfer the tomatoes to plates. Transfer the beef to a cutting board. Let stand for 3 minutes before thinly slicing diagonally across the grain.
Meanwhile, in a small bowl, whisk together the sauce ingredients. Serve with the beef and tomatoes.
per serving
calories 235
total fat 8.0 g
saturated fat 2.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 4.5 g
cholesterol 65 mg
sodium 383 mg
carbohydrates 10 g
fiber 1 g
sugars 5 g
protein 29 g
dietary exchanges: ½ other carbohydrate, 3 lean meat
## lettuce-wrap sliders
The beefy flavor of these Asian-spiced burgers contrasts well with the sweet-hot garnish of shredded carrots and Thai chili sauce.
SERVES 6 | 2 sliders per serving
Cooking spray
1 pound extra-lean ground beef
1 8-ounce can water chestnuts, drained and chopped
2 tablespoons soy sauce (lowest sodium available)
2 medium garlic cloves, minced
1 teaspoon grated peeled gingerroot
12 Bibb lettuce leaves
¼ cup Thai sweet chili sauce (lowest sodium available)
2 medium carrots, shredded (about ¾ cup)
Preheat the broiler. Lightly spray a broiler pan and rack with cooking spray.
Crumble the beef into a large bowl. Add the water chestnuts, soy sauce, garlic, and gingerroot. Using your hands or a spoon, combine the ingredients. Shape into twelve ½-inch balls (about 1½ teaspoons each). Flatten into patties.
Broil the patties about 4 inches from the heat for 3 minutes, or until browned. Turn over the patties. Broil for 2 to 3 minutes, or until they register 160°F on an instant-read thermometer.
Place the lettuce on a flat surface. Place a patty in the center of each leaf. Spoon the chili sauce onto each patty. Sprinkle with the carrots. Fold the sides of the lettuce over the patties. Secure with a wooden toothpick, if desired.
per serving
calories 151
total fat 4.0 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 42 mg
sodium 341 mg
carbohydrates 12 g
fiber 2 g
sugars 7 g
protein 17 g
dietary exchanges: 1 vegetable, ½ other carbohydrate, 2 lean meat
## portobello pizzas
This recipe is perfect for a meatless Monday or as a healthy substitute on pizza night.
SERVES 4 | 1 pizza per serving
Olive oil cooking spray
4 medium portobello mushrooms
1 teaspoon salt-free all-purpose seasoning blend
1 cup canned no-salt-added cannellini beans, rinsed and drained
1 tablespoon balsamic vinegar
¼ cup no-salt-added tomato sauce
¼ cup loosely packed fresh basil
1 cup roasted red bell peppers, drained if bottled, thinly sliced
1 cup shredded low-fat mozzarella cheese
¼ cup shredded or grated Parmesan cheese
Preheat the broiler. Lightly spray the broiler pan with cooking spray.
Lightly spray both sides of the mushrooms with cooking spray. Sprinkle the seasoning blend over both sides. Broil about 6 inches from the heat for 1 to 2 minutes on each side, or until golden brown. Remove from the oven.
Meanwhile, in a small bowl, stir together the beans and vinegar.
In each mushroom cap, layer as follows: 1 tablespoon tomato sauce, 1 tablespoon basil, ¼ cup bean mixture, and ¼ cup roasted peppers. Sprinkle with the mozzarella and Parmesan. Broil about 6 inches from the heat for 1 to 2 minutes, or until the filling is heated through and the cheeses are melted and light golden brown.
per serving
calories 153
total fat 4.5 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 1.5 g
cholesterol 14 mg
sodium 341 mg
carbohydrates 15 g
fiber 4 g
sugars 3 g
protein 13 g
dietary exchanges: ½ starch, 1 vegetable, 1½ lean meat
BROILING BONUS: To roast your own peppers, preheat the broiler. Lightly spray a broiler pan and rack with olive oil cooking spray. Put the desired number of whole bell peppers (or chiles) on the rack. Broil the peppers 3 to 4 inches from the heat until they are almost completely black, turning them to char evenly. Put the peppers in a large bowl and cover it with plastic wrap. Let stand for 20 to 30 minutes. When the peppers are cool, slice them in half lengthwise, and remove the stems, seeds, and ribs (for chiles, see Cook's Tip). Gently peel off the skin, using your fingers or rubbing the peppers between paper towels. Discard the skin. If you wish, rinse the peppers to remove some of the bits of charred skin that remain.
## browned tofu with bok choy
Broiled tofu takes on bright Asian flavors when it's infused with a mixture of citrus and soy, then served with a crisp vegetable and a sauce that adds just a little bit of sweet and heat.
SERVES 4 | 1 slice tofu and ½ cup bok choy per serving
16 ounces light firm tofu, drained, patted dry, and cut into 4 slices
½ cup fresh orange juice
1 tablespoon soy sauce (lowest sodium available)
1 tablespoon light or dark brown sugar
1 teaspoon toasted sesame oil
1 teaspoon canola or corn oil and 2 teaspoons canola or corn oil, divided use
1 teaspoon grated peeled gingerroot
1 teaspoon Thai sweet red chili sauce
1 medium garlic clove, finely minced
Cooking spray
1½ pounds baby bok choy, heads halved lengthwise
Put the tofu on a cutting board lined with four layers of paper towels. Cover with four layers of paper towels. Place a large, heavy baking dish on top. Let stand for 30 minutes so the tofu releases its excess moisture, replacing the paper towels if necessary.
In a 13 × 9 × 2-inch glass baking dish, whisk together the orange juice, soy sauce, brown sugar, sesame oil, 1 teaspoon canola oil, gingerroot, chili sauce, and garlic. Place the tofu slices in the dish. Let stand for 20 minutes, turning once halfway through.
Preheat the broiler. Line a heavy-duty rimmed baking sheet with aluminum foil. Lightly spray the foil with cooking spray.
Drain the tofu, reserving the marinade. Using a slotted spatula, transfer the tofu to the baking sheet. Broil about 4 inches from the heat for 8 to 10 minutes on each side, or until a deep golden brown. Transfer to plates. Cover to keep warm.
Put the bok choy on the baking sheet. Drizzle with the remaining 2 teaspoons canola oil, turning to coat. Broil about 6 inches from the heat for 6 minutes on each side, or until the leaves are slightly charred and the stems are tender-crisp. Serve with the tofu. Spoon the reserved marinade over all.
per serving
calories 158
total fat 7.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 3.0 g
monounsaturated fat 3.0 g
cholesterol 0 mg
sodium 265 mg
carbohydrates 13 g
fiber 3 g
sugars 9 g
protein 13 g
dietary exchanges: 1 vegetable, ½ other carbohydrate, 1½ lean meat, ½ fat
BROILING BONUS: Bok choy isn't the only vegetable that tastes grilled or roasted when it's broiled. To "quick-roast" vegetables, use big chunks of hardy vegetables such as broccoli, cauliflower, bell peppers, onion, mushrooms, eggplant, or zucchini. Toss with a small amount of olive or grapeseed oil or lightly spray with olive oil spray, then sprinkle with salt-free lemon pepper or another salt-free seasoning mix. Spread the vegetables in a single layer on a large baking sheet. Broil until the desired doneness, turning every 5 minutes. Add the cooked vegetables to your favorite pasta dish, use them to top pizza, tuck them into sandwiches, or let them cool and toss them with salad greens.
## swiss chard and swiss cheese frittata
Eaten hot or cold, a frittata is a quick, versatile entrée for a hectic day. You can try other herbs and cheeses for variety. Use whatever greens or leftover vegetables you have on hand instead of the Swiss chard. Serve with whole-grain toast for breakfast or a side of roasted potatoes for dinner.
SERVES 4 | 1 wedge per serving
2 large eggs, separated
2 teaspoons olive oil
2 medium shallots, minced
1 pound chopped Swiss chard, tough stems discarded, or 1 pound baby spinach
⅔ cup shredded low-fat Swiss cheese
1 teaspoon chopped fresh thyme or ¼ teaspoon dried thyme, crumbled
1 teaspoon minced fresh parsley (optional)
¼ teaspoon ground nutmeg (freshly grated preferred)
¼ teaspoon pepper (freshly ground preferred)
Preheat the broiler.
In a medium mixing bowl, using an electric mixer on high speed, beat the egg whites until soft peaks form. Set aside.
In a small ovenproof skillet, heat the oil over medium-high heat, swirling to coat the bottom. Cook the shallots for 2 minutes, or until soft, stirring frequently. Stir in the chard in batches, adding more as each batch wilts. Cook for 5 to 7 minutes, or until the liquid has evaporated, stirring constantly. Remove from the heat. Sprinkle with the Swiss cheese.
In a small bowl, whisk together the egg yolks, thyme, parsley, nutmeg, and pepper. Fold the mixture into the egg whites, blending until no yellow streaks remain.
Spread the egg mixture over the Swiss cheese, smoothing the top. Broil about 4 inches from the heat for 5 to 6 minutes, or until the frittata is set and just firm (the frittata doesn't jiggle when the skillet is gently shaken). Cut into 4 wedges.
per serving
calories 115
total fat 6.0 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 3.0 g
cholesterol 99 mg
sodium 325 mg
carbohydrates 7 g
fiber 2 g
sugars 2 g
protein 11 g
dietary exchanges: 1 vegetable, 1 lean meat, ½ fat
COOK'S TIP ON OVENPROOFING A SKILLET: You can ovenproof a skillet by wrapping the handle with aluminum foil.
COOK'S TIP ON EGG WHITES: Even a single drop of egg yolk will prevent egg whites from forming peaks when beaten, so separate eggs very carefully. Also, before beating the egg whites, make sure they are cold and the bowl and beaters are well chilled. The coldness will improve the stability and volume of the beaten whites.
## broiled foiled tomatoes
This side dish is a favorite, especially in summer when tomatoes are at their peak. We solve the problem of overbrowned topping by turning off the broiler and covering the tomatoes with aluminum foil.
SERVES 4 | 1 tomato half per serving
Cooking spray
2 teaspoons dried basil, crumbled
2 teaspoons olive oil (extra virgin preferred)
1½ teaspoons coarse-grain Dijon mustard (lowest sodium available)
1 teaspoon cider vinegar
2 large tomatoes, halved crosswise
2 tablespoons whole-wheat panko (Japanese-style bread crumbs)
2 tablespoons shredded or grated Parmesan cheese
Preheat the broiler. Lightly spray the broiler pan and rack with cooking spray.
In a small bowl, whisk together the basil, oil, mustard, and vinegar. Spoon onto the cut side of the tomatoes.
In a separate small bowl, stir together the panko and Parmesan. Sprinkle over the tomatoes.
Broil the tomatoes about 4 inches from the heat for 1 minute, or until the topping is golden brown, watching carefully so it doesn't burn. Turn off the broiler. Cover the tomatoes with aluminum foil. Let stand beneath the broiler for 8 minutes, or until the tomatoes are tender when pierced with a fork. Remove from the oven. Let stand for 10 minutes before serving.
per serving
calories 58
total fat 3.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 2 mg
sodium 89 mg
carbohydrates 6 g
fiber 1 g
sugars 3 g
protein 2 g
dietary exchanges: 1 vegetable, ½ fat
## grapefruit with crunchy ginger
Honey and crystallized ginger form a crisp, spicy-sweet crust similar to the kind found on crème brûlée, taming the tartness of grapefruit in this modern take on an old standby. This dessert also makes an excellent addition to breakfast or brunch.
SERVES 4 | 1 grapefruit half per serving
2 tablespoons finely minced crystallized ginger (about 3 to 4 pieces)
¼ teaspoon ground cinnamon
⅛ teaspoon ground nutmeg (freshly grated preferred)
2 medium grapefruit, halved crosswise
1 tablespoon plus 1 teaspoon honey
Preheat the broiler. Line a baking sheet with aluminum foil.
In a small bowl, stir together the ginger, cinnamon, and nutmeg.
Cut a thin slice from the bottom of each grapefruit half to keep it steady. Transfer them all to the baking sheet. Drizzle the honey over the cut side of each half. Using the back of a spoon, spread the honey. Sprinkle the ginger mixture over the honey.
Broil the grapefruit about 4 inches from the heat for 5 to 7 minutes, or until golden brown. Watch carefully so they don't burn. Remove from the oven. Let cool slightly before serving.
per serving
calories 87
total fat 0.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 0 mg
sodium 0 mg
carbohydrates 23 g
fiber 2 g
sugars 18 g
protein 1 g
dietary exchanges: 1 fruit, ½ other carbohydrate
COOK'S TIP ON GRAPEFRUIT: Grapefruit can interact with a number of medications, including many heart medicines. Be sure to check with your doctor or pharmacist if you take any medication, and substitute two large navel oranges in this recipe, if necessary.
BROILING BONUS: Other fruits are also delicious when caramelized by the broiler. Try broiling pineapple rings, mango slices, or peach halves, then cutting them up and adding them to a salsa or a side dish.
COOK'S TIP: Placing each grapefruit half into a canning jar lid band will help keep them stable while they are broiling.
# roasting
roasted melon soup and balsamic drizzle
beet and farro salad with goat cheese
oven-fried catfish over seared spinach
salmon with creamy chipotle-orange sauce
herb-roasted chicken
chicken with artichokes and tomatoes
lemon-garlic turkey tenderloin
savory beef tenderloin
basil pork tenderloin with black bean salsa
pork roast with vegetables
chickpeas with zucchini, peppers, and onion
asparagus with dijon vinaigrette
toasted cauliflower and garlic
lemony herbed potatoes
root vegetable medley
honeyed strawberries with almonds
Roasting preserves the nutrients in food while enhancing the flavors and textures. For vegetables and fruits, this cooking method brings out their natural sugars, concentrating and intensifying their flavors and giving them a sweeter taste. For seafood, poultry, and meat, the high heat dries the exterior of the food, creating a crunchy, caramelized texture while leaving the inside moist and succulent.
Roasting is simply done in the oven under high heat. This method uses the dry heat of an oven to cook food, which is left uncovered so that it won't steam. When we think of roasting, turkey and meats come to mind because roasting is indeed best for tender foods and larger cuts of meat, poultry, and fish, such as whole chickens or turkeys, pork or beef tenderloin, whole fish, or thick fish fillets. Try family comfort dishes such as Herb-Roasted Chicken and Pork Roast with Vegetables. You'll also find recipes that will help you push past the familiar including Roasted Melon Soup and Balsamic Drizzle and Beet and Farro Salad with Goat Cheese.
TO ROAST:
To cook food in the oven in a shallow uncovered pan at temperatures usually higher than baking.
Tools & Equipment Needed: Roasting pan and rack, rimmed baking sheet, oven mitts and pot holders, oven thermometer, instant-read thermometer, basting brush, kitchen timer
TIPS:
• Because roasting requires the oven to use high heat, be sure your oven is clean to minimize smoking. Vent the area well, opening windows and using your kitchen exhaust fan as necessary.
• Since the temperatures of most ovens are not calibrated exactly, check the accuracy of yours with an oven thermometer and either have the oven recalibrated if it's way off or adjust the roasting temperature accordingly.
• Take the time to preheat the oven; starting with a hot oven will help the food brown properly. Food cooks unevenly, and more slowly, when started in a cold oven.
• If using a disposable aluminum roasting pan, be sure it's sturdy enough to support the weight of the food.
• To roast vegetables, cut them to a uniform size and spread them in a single layer on a rimmed baking sheet to ensure proper browning.
• If you don't have a roasting rack, you can place a bed of thickly sliced vegetables such as onions or potatoes on the bottom of the pan and set the meat or poultry on top.
• For whole birds, discard as much fat as you can before roasting, but leave the skin on until the poultry is cooked. Discard the skin before serving.
• If you're roasting a whole bird, put it in the oven legs first. The back of the oven is the hottest part, and dark meat takes longer to cook.
• To avoid both overcooking and undercooking meat and poultry, use an instant-read meat thermometer to check doneness. Remove the meat or poultry from the oven before inserting the thermometer, and insert it into the center, or thickest part, of the meat, making sure the thermometer doesn't touch bone or fat.
• Check the internal temperature of roasted poultry or meat after about three-fourths of the total suggested cooking time, then every 5 to 10 minutes after that to avoid overcooking.
• Let meat or poultry stand at room temperature for about 5 to 10 minutes when it comes out of the oven to finish the cooking process and allow the muscle fibers to relax, making the meat more tender and helping it to retain its juices. Open the oven door only when necessary. Every time the door is opened, heat escapes and the temperature of the oven is lowered, adding to the cooking time. When you do open the door, protect yourself from the escaping heat, which can burn.
BEST FOODS FOR ROASTING
Seafood: Roasting is best suited to large shrimp or scallops, whole fish, and thicker fillets (for example, salmon, cod, and tuna), such as Salmon with Creamy Chipotle-Orange Sauce.
Poultry: Whole birds (chickens, turkeys, game hens), such as Chicken with Artichokes and Tomatoes, are a classic choice, but you can also roast turkey breasts or tenderloins, as in Lemon-Garlic Turkey Tenderloin.
Meat: Choose tender cuts such as beef flank steak, tenderloin, and sirloin; pork tenderloin, such as Basil Pork Tenderloin with Black Bean Salsa, and pork loin.
Vegetarian Protein: For a vegetarian entrée, try tofu and other vegetarian proteins as well as Chickpeas with Zucchini, Peppers, and Onion.
Vegetables: Sturdy root vegetables, such as the beets in Beet and Farro Salad with Goat Cheese, carrots, radishes, parsnips, turnips, and potatoes become beautifully sweet when roasted. Try using this technique with vegetables you have shied away from or that you don't normally choose, such as broccoli, cauliflower, brussels sprouts, asparagus, winter squash, tomatoes, or fennel. Roasting your vegetables both browns and caramelizes them, bringing out their natural sweetness. When roasted, garlic becomes much sweeter and milder. Roasted garlic can be used in sauces or dips, or try it all on its own as a spread for whole-grain bread.
Fruit: Roasting can transform fruit into a warm, comforting dessert. Try plums, apricots, peaches, pineapples, pears, apples, bananas, and strawberries, such as Honeyed Strawberries with Almonds.
## roasted melon soup and balsamic drizzle
This twist on fruit soup combines the sweetness of cantaloupe with savory onion and broth. Roasting the melon concentrates its summery flavor. Drizzled with a mellow balsamic glaze, the sunset-orange soup is a showstopper.
SERVES 4 | 1 cup per serving
Cooking spray
6 cups cubed cantaloupe (from about 1 medium)
2 teaspoons olive oil
¾ cup chopped sweet onion, such as Vidalia, Maui, or Oso Sweet
1 teaspoon minced peeled gingerroot
¼ teaspoon ground cumin
¼ teaspoon ground cinnamon
Dash of cayenne
1 cup fat-free, low-sodium chicken or vegetable broth
½ cup fat-free half-and-half
¼ cup balsamic vinegar
Preheat the oven to 425°F. Lightly spray a large rimmed baking sheet with cooking spray. Arrange the cantaloupe in a single layer on the baking sheet. Roast for 20 to 25 minutes, or until the edges begin to brown. Remove from the oven. Let stand until cool.
Meanwhile, in a medium nonstick skillet, heat the oil over medium-high heat, swirling to coat the bottom. Cook the onion for about 5 minutes, or until lightly browned, stirring frequently. Stir in the gingerroot, cumin, cinnamon, and cayenne. Cook for 30 seconds, or until fragrant, stirring constantly.
In a food processor or blender, process the cantaloupe and any accumulated juices for 1 minute, or until smooth. Add the broth and onion mixture. Process until smooth. Pour in the half-and-half. Process for 30 seconds to 1 minute, or until blended. Serve at room temperature or cover and refrigerate for 2 hours to serve chilled.
Just before serving, in a small saucepan, bring the vinegar to a boil over medium-high heat. Cook for 30 seconds to 1 minute, or until the vinegar is syrupy and reduced by almost half (to about 2 tablespoons). Drizzle the soup with the vinegar.
per serving
calories 151
total fat 3.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 0 mg
sodium 89 mg
carbohydrates 30 g
fiber 3 g
sugars 24 g
protein 5 g
dietary exchanges: 1½ fruit, ½ fat-free milk
COOK'S TIP: You've seen roasted pumpkin and sunflower seeds, but did you know you can also roast melon seeds? Rinse and dry the seeds from a cantaloupe, honeydew melon, or watermelon. Lightly spray with olive oil cooking spray. Spread the seeds on a baking sheet and roast at 325°F for about 15 minutes, or until browned.
## beet and farro salad with goat cheese
Sometimes known as the mother of all grains, farro is an ancient variety of wheat grown in the Mediterranean. With its high protein and fiber content, this nutty grain pairs beautifully with sweet roasted beets and tangy goat cheese for a filling salad.
SERVES 4 | 1 cup per serving
1½ pounds beets with greens
2 teaspoons olive oil and 2 tablespoons olive oil (extra virgin preferred), divided use
1 large shallot, minced
3 cups water
¾ cup uncooked farro, rinsed and drained
¼ teaspoon pepper (freshly ground preferred)
¼ cup plus 1 tablespoon fresh lemon juice
2 tablespoons honey
1 small garlic clove, finely minced
2 ounces soft goat cheese, crumbled
Preheat the oven to 400°F.
Trim the greens and roots from the beets. Refrigerate the greens.
Put the beets on a large piece of aluminum foil. Fold the foil over the beets. Crimp the edges to seal the packet. Roast for 45 minutes, or until the beets are tender when pierced with a fork. Remove from the oven. Set aside to cool.
Meanwhile, in a medium saucepan, heat 2 teaspoons oil over medium-high heat, swirling to coat the bottom. Cook the shallot for 1 to 2 minutes, stirring constantly. Pour in the water. Increase the heat to high and bring to a boil. Stir in the farro. Reduce the heat and simmer for 15 minutes, or until the farro is tender. Drain well in a fine-mesh sieve. Transfer the farro mixture to a large bowl. Fluff with a fork. Stir in the pepper. Set aside to cool.
Gently peel off the beet skins. Cut the beets into 1-inch pieces. Stir into the farro mixture.
Thinly slice the beet greens. Stir into the farro mixture.
In a small bowl, whisk together the lemon juice, honey, garlic, and the remaining 2 tablespoons oil. Drizzle over the salad, tossing to coat. Transfer to serving plates. Sprinkle with the goat cheese.
per serving
calories 353
total fat 12.5 g
saturated fat 3.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 7.5 g
cholesterol 7 mg
sodium 256 mg
carbohydrates 51 g
fiber 7 g
sugars 19 g
protein 11 g
dietary exchanges: 2 starch, 3 vegetable, ½ other carbohydrate, ½ lean meat, 2 fat
COOK'S TIP: To prepare this dish one day in advance, cook the farro and beets as directed. Cover and refrigerate separately, so the beets don't stain the farro. Just before serving, prepare the dressing and assemble the salad.
ROASTING BONUS: Roasting grains, such as farro, quinoa, bulgur, or rice, before cooking them brings out their natural nutty flavor and shortens their cooking times. Preheat the oven to 350°F. Spread the grains on a baking sheet in a single layer. Roast for 10 to 30 minutes (smaller grains like quinoa and fine-grain bulgur will take less time than larger grains such as rice and farro), or until fragrant and beginning to lightly brown, stirring every 2 to 5 minutes. Store the cooled grains in an airtight container in the pantry or refrigerator for up to one month.
## oven-fried catfish over seared spinach
Roasting breaded foods on a preheated baking sheet gives them a crisp crust, which is how this cornmeal-coated catfish gets so crunchy. The preheated sheet also roasts vegetables and fish quickly. The fish is done in a flash using this method, and the accompanying spinach can be ready in two minutes.
SERVES 4 | 3 ounces fish and ½ cup spinach per serving
⅓ cup all-purpose flour
½ cup low-fat buttermilk
½ cup cornmeal
2 teaspoons paprika
1 teaspoon garlic powder
1 teaspoon dried oregano, crumbled (Greek preferred)
2 teaspoons olive oil
4 catfish or tilapia fillets (about 4 ounces each), rinsed and patted dry
¼ teaspoon pepper
⅛ teaspoon salt
8 cups loosely packed baby spinach
1 tablespoon chopped fresh dillweed
Put a large, heavy-duty rimmed baking sheet on the middle oven rack. Preheat the oven to 425°F.
Put the flour in a medium shallow dish. Pour the buttermilk into a separate medium shallow dish. In a third medium shallow dish, stir together the cornmeal, paprika, garlic powder, and oregano. Carefully remove the baking sheet from the oven. Drizzle with the oil.
Set the dishes and baking sheet in a row, assembly-line fashion. Sprinkle the pepper and salt over the fish. Dip the fish in the flour, then in the buttermilk, and finally in the cornmeal mixture, turning to coat at each step and gently shaking off any excess. Using your fingertips, gently press the coating so it adheres to the fish. Place the fish on the preheated baking sheet.
Roast for 8 to 10 minutes, or until the fish flakes easily when tested with a fork. Transfer the fish to a large plate. Cover to keep warm.
Put the spinach on the baking sheet. Sprinkle the dillweed over the spinach. Roast for 1 to 2 minutes, or until the spinach is barely wilted. Transfer to plates. Serve the fish on the spinach.
per serving
calories 232
total fat 6.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 3.0 g
cholesterol 67 mg
sodium 193 mg
carbohydrates 21 g
fiber 3 g
sugars 2 g
protein 23 g
dietary exchanges: 1½ starch, 3 lean meat
COOK'S TIP: To avoid warping your baking sheet, use a heavy-duty baking sheet, such as the professional-style rimmed sheet pans that are widely available where baking pans are sold.
ROASTING BONUS: Don't limit yourself to cornmeal, bread crumbs, or panko when you want crisp-coated fish, chicken, or vegetables. Many other foods are delicious once processed into crumbs. Try root vegetable chips or air-popped popcorn processed into crumbs, dry-roasted uncooked oatmeal, quinoa flakes, or quinoa that has been cooked using the package directions and then baked at 375°F for 15 to 25 minutes, or until crisp.
## salmon with creamy chipotle-orange sauce
A spicy chipotle sauce with notes of sweet-tart citrus turns succulent salmon into something spectacular. Roasting keeps the fish tender and moist.
SERVES 4 | 3 ounces fish and 2 tablespoons sauce per serving
Cooking spray
4 salmon fillets with skin (about 5 ounces each), rinsed and patted dry
1 tablespoon fresh lime juice
1 teaspoon canola or corn oil
½ teaspoon adobo sauce and ¼ to ½ teaspoon adobo sauce (from chipotle peppers canned in adobo sauce), divided use
½ teaspoon grated orange zest
⅔ cup fresh orange juice
2 teaspoons cornstarch
½ medium chipotle pepper (from chipotle peppers canned in adobo sauce), minced
½ teaspoon sugar
⅛ teaspoon salt
¼ cup fat-free half-and-half
¼ cup chopped fresh cilantro
1 medium lime, cut into 4 wedges
Preheat the oven to 400°F. Line a large, heavy-duty baking sheet with aluminum foil. Lightly spray the foil with cooking spray.
Put the fish on the baking sheet with the skin side down.
In a small bowl, whisk together the lime juice, oil, and ½ teaspoon adobo sauce. Brush the mixture over the top of the fish. Roast for 20 minutes, or until the desired doneness.
Meanwhile, in a food processor or blender, process the orange juice, cornstarch, chipotle pepper, sugar, salt, and the remaining ¼ to ½ teaspoon adobo sauce until smooth. Pour into a small saucepan. Bring to a boil over medium-high heat. Boil for 2 minutes, or until thickened and reduced by half (to about ⅓ cup). Remove from the heat.
Let stand for 3 minutes, or until slightly cooled.
Whisk in the half-and-half and orange zest. Spoon the sauce onto plates. Place the fish on the sauce. Sprinkle with the cilantro. Serve with the lime wedges.
per serving
calories 199
total fat 6.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 53 mg
sodium 223 mg
carbohydrates 9 g
fiber 0 g
sugars 5 g
protein 25 g
dietary exchanges: ½ fruit, 3 lean meat
## herb-roasted chicken
No chapter on roasting would be complete without a classic roast chicken recipe. Plan for five to six hours of marinating time to allow the seasonings to permeate the meat and give it the maximum flavor. Leave the skin on the chicken while it roasts to keep the meat extra moist, but be sure to remove it before serving. For an easy side dish, try Asparagus with Dijon Vinaigrette. Just pop the asparagus in the oven when the chicken is almost done.
SERVES 6 | 3 ounces chicken per serving
1½ teaspoons dried thyme, crumbled
½ teaspoon dried basil, crumbled
½ teaspoon salt
½ teaspoon pepper (freshly ground preferred), or to taste
1 2½- to 3-pound chicken, all visible fat, neck, and giblets discarded
2 medium onions, halved
1 medium lemon, cut into wedges
1 large dried bay leaf
2 medium garlic cloves, coarsely chopped
½ cup dry white wine (regular or nonalcoholic)
2 tablespoons light tub margarine, melted
In a small bowl, stir together the thyme, basil, salt, and pepper. Rub the mixture over the outside of the chicken and in the chicken cavity. Put the onions, lemon, bay leaf, and garlic in the cavity. Using kitchen twine, tie the legs together. Cover and refrigerate for 5 to 6 hours.
Preheat the oven to 425°F.
Place the chicken with the breast side up on a rack in a nonstick roasting pan. Pour the wine and margarine over the chicken. Transfer to the oven with the legs facing the back of the oven. Roast for 1 hour to 1 hour 15 minutes, or until the chicken registers 165°F on an instant-read thermometer, basting once halfway through. The chicken should be golden brown and its juices should run clear when the thigh is pierced with the tip of a sharp knife. Remove from the oven. Let stand, loosely covered, for 5 minutes.
Transfer the chicken to a serving platter. Discard the twine. Discard the onions, lemon, bay leaf, and garlic. Discard the skin before carving the chicken.
To make gravy, skim and discard the fat from the cooking liquid in the roasting pan. Pour the remaining liquid into a small saucepan. Bring to a boil over medium-high heat. Boil for 5 minutes, stirring occasionally. Serve with the chicken.
per serving
calories 139
total fat 4.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 1.5 g
cholesterol 69 mg
sodium 304 mg
carbohydrates 1 g
fiber 0 g
sugars 0 g
protein 22 g
dietary exchanges: 3 lean meat
## chicken with artichokes and tomatoes
A simple roast chicken can be served at any time, for any occasion. This one highlights the warm, sunny flavors of Greece. It's roasted with artichoke hearts, tomatoes, shallots, olives, and garlic, all bathed in fresh lemon juice.
SERVES 6 | 3 ounces chicken and ⅓ cup vegetables per serving
¼ cup kalamata olives, rinsed and drained
9 ounces frozen artichoke hearts, thawed and drained
8 large shallots, halved
6 medium Italian plum (Roma) tomatoes, quartered
1 medium garlic bulb, cloves separated
3 tablespoons fresh lemon juice
2 teaspoons olive oil
2 tablespoons chopped fresh rosemary or 2 teaspoons dried rosemary, crushed
2 tablespoons chopped fresh thyme or 2 teaspoons dried thyme, crumbled
¼ teaspoon salt
¼ teaspoon pepper and ¼ teaspoon pepper (or to taste), divided use
1 cup fat-free, low-sodium chicken broth
1 2½- to 3-pound chicken, all visible fat, neck, and giblets discarded
Preheat the oven to 350°F.
Put the olives in a large roasting pan. Using the back of a spoon, slightly crush them. Stir the artichokes, shallots, tomatoes, and garlic into the olives. Pour the lemon juice and oil over the artichoke mixture, stirring to coat. Sprinkle with the rosemary, thyme, salt, and ¼ teaspoon pepper. Pour in the broth. Bake, covered, for 20 minutes.
Meanwhile, sprinkle the remaining ¼ teaspoon pepper over the outside of the chicken and rub it into the chicken cavity. Using kitchen twine, tie the legs together.
Increase the oven temperature to 425°F. Remove the pan from the oven. Place the chicken in the pan. Transfer to the oven with the chicken's legs facing the back of the oven. Roast, covered, for 25 minutes, basting occasionally with the pan juices (add a little water if necessary).
Roast the chicken, uncovered, for 40 minutes to 1 hour, or until it registers 165°F on an instant-read thermometer. The skin should be golden brown and crisp, and the juices should run clear when the thigh is pierced with a sharp knife. Remove from the oven. Let stand, loosely covered, for 5 minutes.
Transfer the chicken to a serving platter. Discard the twine. Using a slotted spoon, transfer 8 of the garlic cloves to a food processor or blender. Transfer the artichokes, shallots, tomatoes, olives, and the remaining garlic to the platter, arranging the vegetables around the chicken. Cover to keep warm. Discard the skin before carving the chicken.
To prepare the sauce, skim and discard the fat from the cooking liquid in the roasting pan. Add the defatted liquid to the garlic in the food processor or blender. Process until smooth, diluting with a little water if necessary. Serve with the chicken.
per serving
calories 209
total fat 6.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 3.5 g
cholesterol 69 mg
sodium 332 mg
carbohydrates 13 g
fiber 4 g
sugars 3 g
protein 24 g
dietary exchanges: 3 vegetable, 3 lean meat
## lemon-garlic turkey tenderloin
The turkey roasts atop a "rack" of fresh carrots in the pan, basting those carrots with rich juices and giving them a deep, meaty flavor.
SERVES 4 | 3 ounces turkey and 2 carrots per serving
Cooking spray
8 medium carrots, 1 inch of greens left on if the carrots are young
1 1-pound turkey tenderloin, all visible fat discarded
2 teaspoons olive oil
2 teaspoons grated lemon zest
3 medium garlic cloves, minced
¼ teaspoon pepper
⅛ teaspoon salt
Preheat the oven to 400°F. Lightly spray a shallow roasting pan with cooking spray.
Arrange the carrots in a single layer in the pan. Arrange the turkey on the carrots. Brush the oil over the turkey and any carrots that aren't under the turkey. In a small bowl, stir together the lemon zest and garlic. Sprinkle over both sides of the turkey. Sprinkle the pepper and salt over the turkey and carrots.
Roast for 30 minutes. Turn over the carrots (they'll be browned on the bottom).
Roast for 10 to 15 minutes, or until the turkey registers 165°F on an instant-read thermometer and the carrots are tender. Remove from the oven. Transfer the turkey to a cutting board. Let stand, loosely covered, for 5 minutes before slicing. Serve the carrots with the turkey.
per serving
calories 209
total fat 3.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 70 mg
sodium 228 mg
carbohydrates 15 g
fiber 4 g
sugars 7 g
protein 29 g
dietary exchanges: 3 vegetable, 3 lean meat
## savory beef tenderloin
A rub of garlic and a touch of thyme are all that's needed to accent the robust flavor of beef tenderloin. While the beef is resting, you can make Asparagus with Dijon Vinaigrette and have everything on the table at once.
SERVES 4 | 3 ounces beef per serving
1 1-pound beef tenderloin, all visible fat discarded
3 medium garlic cloves, crushed
¼ teaspoon pepper (freshly ground preferred), or to taste
4 or 5 sprigs of fresh thyme or 1 teaspoon dried thyme, crumbled
1 tablespoon olive oil
1 medium onion, sliced
2 medium carrots, thinly sliced
¼ teaspoon salt
Preheat the oven to 425°F.
Using kitchen twine, tie the beef in three or four places to help it keep its shape during roasting.
Rub the garlic all over the beef. Sprinkle with the pepper. Put the beef in a nonstick roasting pan. Arrange the thyme on the beef. Drizzle with the oil. Place the onion and carrots around the beef.
Roast for 30 to 40 minutes, or until the beef is the desired doneness. Remove from the oven. Sprinkle with the salt. Let stand, loosely covered, for 10 minutes. Discard the twine. Thinly slice the beef diagonally across the grain. Serve with the onion and carrots.
per serving
calories 209
total fat 8.5 g
saturated fat 3.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 5.0 g
cholesterol 53 mg
sodium 222 mg
carbohydrates 7 g
fiber 2 g
sugars 4 g
protein 25 g
dietary exchanges: 1 vegetable, 3 lean meat
## basil pork tenderloin with black bean salsa
Fresh basil and tomatoes flavor both the pork and the hearty salsa in this tempting entrée. Slice any leftover pork into strips and layer them inside corn tortillas with the salsa to make tasty tacos.
SERVES 4 | 3 ounces pork and ½ cup salsa per serving
MARINADE
2 tablespoons chopped, seeded tomato
2 tablespoons minced fresh basil
1 tablespoon fresh lime juice
2 medium garlic cloves, minced
¼ teaspoon pepper
⅛ teaspoon salt
1 1-pound pork tenderloin, all visible fat discarded
Cooking spray
SALSA
1 15.5-ounce can no-salt-added black beans, rinsed and drained
½ cup chopped, seeded tomato
1 medium green onion, sliced
2 tablespoons minced fresh basil
1 tablespoon minced fresh cilantro
1 tablespoon fresh lime juice
1 medium garlic clove, minced
⅛ teaspoon salt
For the marinade, put 2 tablespoons tomato in a medium glass baking dish. Using the back of a wooden spoon, gently press on the pieces to bruise them and release some of their juice. Stir in the remaining marinade ingredients.
Add the pork, turning to coat. Cover and refrigerate for 30 minutes, turning once halfway through.
Meanwhile, preheat the oven to 425°F. Lightly spray a roasting pan and rack with cooking spray.
Drain the pork, discarding the marinade. Transfer the pork to the rack, tucking the ends under if they are thin. Roast for 20 to 25 minutes, or until the pork registers 145°F on an instant-read thermometer. Transfer to a cutting board. Let stand for 3 minutes before cutting crosswise into slices.
Meanwhile, in a medium bowl, stir together the salsa ingredients. Let stand at room temperature for 5 minutes so the flavors blend. Serve with the pork.
per serving
calories 219
total fat 3.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 60 mg
sodium 195 mg
carbohydrates 19 g
fiber 5 g
sugars 4 g
protein 28 g
dietary exchanges: 1 starch, 3½ lean meat
COOK'S TIP ON TESTING DONENESS OF MEAT: To avoid both overcooking and undercooking your meat, use a meat thermometer to check doneness. Remove the meat from the oven before inserting the instant-read thermometer. Insert the thermometer into the center, or thickest part, of the meat, making sure the thermometer doesn't touch bone or fat.
## pork roast with vegetables
Once you get this easy-to-assemble dinner in the oven, you can relax.
SERVES 4 | 3 ounces pork and ½ cup vegetables per serving
Cooking spray
1 tablespoon frozen 100% apple juice concentrate, thawed
1 1-pound boneless center-cut pork loin roast, all visible fat discarded
1½ teaspoons light brown sugar
1½ teaspoons garlic powder
1½ teaspoons dried oregano, crumbled
1½ teaspoons dried thyme, crumbled
1½ teaspoons paprika
½ teaspoon pepper
2 small red potatoes, cut into ½-inch cubes
½ cup baby carrots
½ cup bite-size pieces of cauliflower florets
½ small zucchini, cut into ½-inch cubes
¼ small red onion, cut into ½-inch pieces
Preheat the oven to 425°F. Lightly spray a 13 × 9 × 2-inch baking dish with cooking spray.
Brush the apple juice concentrate all over the pork. In a small bowl, stir together the brown sugar, garlic powder, oregano, thyme, paprika, and pepper. Set aside 1 teaspoon of the mixture. Sprinkle the remaining mixture all over the pork. Transfer the pork to the pan.
In a medium bowl, stir together the potatoes, carrots, cauliflower, zucchini, onion, and reserved 1 teaspoon brown sugar mixture. Place around the pork. Lightly spray the pork and vegetables with cooking spray.
Roast for 35 to 40 minutes or until the pork registers 145°F on an instant-read thermometer. Remove from the oven. Let stand, loosely covered, for 3 minutes before cutting the pork crosswise into slices. Serve with the vegetables.
per serving
calories 210
total fat 6.0 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.5 g
cholesterol 60 mg
sodium 76 mg
carbohydrates 14 g
fiber 2 g
sugars 6 g
protein 24 g
dietary exchanges: ½ starch, 1 vegetable, 3 lean meat
## chickpeas with zucchini, peppers, and onion
This colorful entrée—with green zucchini, red and orange bell peppers, cherry tomatoes, and snow-white feta cheese—can be served warm or at room temperature. Roasting brings out the sweetness of the vegetables and adds richness to the flavor of the chickpeas.
SERVES 4 | 1½ cups per serving
2 medium zucchini, halved lengthwise, cut into 1½-inch pieces
1 large red bell pepper, cut into 1½-inch pieces
1 large orange bell pepper, cut into 1½-inch pieces
1 small red onion, cut into 1-inch wedges
1½ tablespoons chopped fresh rosemary
3 large garlic cloves, minced
2 teaspoons olive oil (extra virgin preferred)
1 15.5-ounce can no-salt-added chickpeas, rinsed and drained
1½ cups cherry tomatoes
½ cup crumbled low-fat feta cheese (about 2 ounces)
Preheat the oven to 425°F.
In a large bowl, stir together the zucchini, bell peppers, onion, rosemary, and garlic. Add the oil, stirring to coat. Arrange in a single layer on a large, heavy-duty rimmed baking sheet. Roast for 20 minutes. Stir.
Top with the chickpeas and tomatoes. Roast for 10 to 15 minutes, or until the zucchini and bell peppers are tender, the onion is soft, and the chickpeas are lightly browned. Just before serving, sprinkle with the feta.
per serving
calories 235
total fat 6.0 g
saturated fat 2.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.0 g
cholesterol 7 mg
sodium 293 mg
carbohydrates 35 g
fiber 8 g
sugars 10 g
protein 12 g
dietary exchanges: 1½ starch, 3 vegetable, 1 lean meat
COOK'S TIP ON ROSEMARY: To chop rosemary easily, put the leaves in a small cup or bowl. Using scissors or kitchen shears, snip the sprigs into small pieces.
## asparagus with dijon vinaigrette
This easy side dish goes nicely with Herb-Roasted Chicken. Start preparing the ingredients when the chicken goes in the oven and then both dishes can finish together, so that dinner will be ready by the time you set the table. Don't use frozen asparagus for this recipe. It won't hold up well and will become mushy.
SERVES 4 | 6 spears per serving
24 medium asparagus spears, trimmed
Cooking spray
¼ teaspoon grated lemon zest
1 tablespoon fresh lemon juice
1 tablespoon fat-free, low-sodium chicken broth
¾ teaspoon Dijon mustard (lowest sodium available)
½ teaspoon olive oil (extra virgin preferred)
Pepper to taste
Preheat the oven to 425°F.
Arrange the asparagus in a single layer on a large, heavy-duty baking sheet. Lightly spray the asparagus with cooking spray. Roast for 12 to 15 minutes, or until tender-crisp and lightly browned.
Meanwhile, in a small bowl, whisk together the remaining ingredients.
Serve this side dish hot, at room temperature, or chilled. Just before serving, drizzle with the vinaigrette.
per serving
calories 31
total fat 0.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.5 g
cholesterol 0 mg
sodium 20 mg
carbohydrates 5 g
fiber 3 g
sugars 3 g
protein 3 g
dietary exchanges: 1 vegetable
## toasted cauliflower and garlic
Nutmeg adds a bit of sweetness while red pepper flakes bring spice to cauliflower, transforming this ordinary vegetable into a memorable side dish.
SERVES 4 | ¾ cup per serving
1 pound 1-inch cauliflower florets (from 1 medium head of cauliflower)
1½ cups chopped onion
8 medium garlic cloves
1 tablespoon canola or corn oil and 1 tablespoon canola or corn oil, divided use
1½ teaspoons sugar
¼ teaspoon ground nutmeg
¼ teaspoon crushed red pepper flakes
⅛ teaspoon salt
Preheat the oven to 500°F. Line a large, heavy-duty baking sheet with aluminum foil.
Arrange the cauliflower, onion, and garlic in a single layer on the baking sheet. Drizzle 1 tablespoon oil over all. Roast for 12 minutes. Stir. Roast for 3 minutes, or until the cauliflower and onion are tender-crisp and the garlic is soft. Remove from the oven.
Drizzle with the remaining 1 tablespoon oil. Sprinkle with the remaining ingredients. Don't stir. Fold the edges of the foil to the center to cover the vegetables and garlic completely. Fold together to tightly seal. Let stand for 5 minutes so the flavors blend and the vegetables release some of their juices.
per serving
calories 128
total fat 7.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 5.0 g
cholesterol 0 mg
sodium 111 mg
carbohydrates 15 g
fiber 3 g
sugars 6 g
protein 3 g
dietary exchanges: 3 vegetable, 1½ fat
COOK'S TIP: Be sure to cut all the florets about the same size.
ROASTING BONUS: If you enjoy the garlic in this recipe but would also like to try it with other foods, roast a whole bulb (or more than one) at once: Preheat the oven to 400°F. Place a large garlic bulb on aluminum foil. Slice off and discard the top of the garlic. Drizzle the bulb with ½ teaspoon olive oil. Top with a sprig of thyme or rosemary. Fold the foil up to enclose the garlic and seal the edges. Roast for 45 minutes, or until soft.
## lemony herbed potatoes
Traditional Italian seasonings get a sunny boost from lemon pepper to give these potatoes a Mediterranean flair. They pair well with nearly any baked or roasted entrée, but are especially good with Lemon-Garlic Turkey Tenderloin.
SERVES 4 | 4 potatoes per serving
16 small red potatoes (about 1 pound), patted very dry with paper towels
Cooking spray
2 teaspoons olive oil (extra virgin preferred)
2 tablespoons chopped fresh parsley
½ teaspoon dried oregano, crumbled
½ teaspoon salt-free lemon pepper
¼ teaspoon salt
Preheat the oven to 400°F.
Put the potatoes on a heavy-duty nonstick rimmed baking sheet. Lightly spray them with cooking spray.
Roast for 30 minutes, or until tender when pierced with a fork.
Remove the baking sheet from the oven. Drizzle the potatoes with the oil, stirring to coat. Sprinkle the remaining ingredients over the potatoes, stirring to coat.
per serving
calories 101
total fat 2.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 0 mg
sodium 167 mg
carbohydrates 18 g
fiber 2 g
sugars 2 g
protein 2 g
dietary exchanges: 1 starch
COOK'S TIP: If you can't easily find 1-ounce potatoes, you can use eight 2-ounce potatoes instead. Just halve them crosswise.
## root vegetable medley
Typically served in winter, this dish features earthy flavors that go well with anything from Thanksgiving turkey to steaks on the grill. You can also substitute other root vegetables, such as beets, carrots, or rutabagas.
SERVES 10 | ½ cup per serving
3 small turnips, peeled and cut into eighths
12 radishes, trimmed and quartered
12 pearl onions, peeled
2 medium parsnips, peeled and cut crosswise into 1-inch slices
12 medium garlic cloves
1½ tablespoons olive oil
⅛ teaspoon salt
Pepper to taste
1½ teaspoons dried oregano, crumbled
2 tablespoons chopped fresh parsley
Preheat the oven to 400°F. Line a large, heavy-duty rimmed baking sheet with aluminum foil.
Put the turnips, radishes, onions, parsnips, and garlic in a large bowl. Drizzle with the oil. Sprinkle the salt and pepper over the vegetables and garlic, stirring to coat well. Arrange the vegetables and garlic in a single layer on the baking sheet.
Roast for 30 minutes, or until tender and beginning to brown, stirring occasionally. Remove the baking sheet from the oven. Sprinkle the oregano over all.
Roast for 10 minutes. Just before serving, sprinkle with the parsley.
per serving
calories 50
total fat 2.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 0 mg
sodium 47 mg
carbohydrates 8 g
fiber 2 g
sugars 2 g
protein 1 g
dietary exchanges: ½ starch
## honeyed strawberries with almonds
This dessert creates its own rich, delicately sweet sauce as the honey-drizzled strawberries cook. The sliced almonds roast with the berries during the last few minutes to deepen their flavor. Enjoy this nutty fruit delight alone, over fat-free yogurt, or over whole-grain waffles for breakfast or brunch.
SERVES 4 | ½ cup per serving
3 cups hulled strawberries, patted dry
Cooking spray
2 tablespoons plus 2 teaspoons honey
¼ cup sliced almonds
Preheat the oven to 400°F. Line a large, heavy-duty rimmed baking sheet with aluminum foil.
Arrange the strawberries in a single layer on the baking sheet. Lightly spray with cooking spray. Roast for 13 to 15 minutes, or until tender and just beginning to darken slightly. Drizzle with the honey. Roast for 8 minutes.
Reduce the heat to 350°F. Sprinkle the almonds over and around the strawberries. Bake for 2 to 3 minutes, or until the almonds are golden. Watch carefully so the almonds and honey don't burn. Transfer the baking sheet to a cooling rack. Let stand for 10 minutes before serving.
per serving
calories 110
total fat 3.0 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.0 g
cholesterol 0 mg
sodium 2 mg
carbohydrates 21 g
fiber 3 g
sugars 17 g
protein 2 g
dietary exchanges: ½ fruit, 1 other carbohydrate, ½ fat
COOK'S TIP ON STRAWBERRIES: Don't have a strawberry huller? Use a regular drinking straw instead. Just start at the bottom of the berry and push the straw straight through the center to the stem.
ROASTING BONUS: If you enjoy roasted nuts like the almonds in this recipe, try dry-roasting a larger amount to have on hand. Preheat the oven to 350°F. Spread the nuts (chopped or whole) on a baking sheet in a single layer. Roast for 10 to 15 minutes, or until fragrant, stirring occasionally (watch carefully so they don't burn). Store the cooled nuts in an airtight container in the freezer for up to one year.
# baking
lemon-basil halibut with linguine
salmon with honey-balsamic glaze
tilapia with pumpkin seed crust and pineapple-avocado salsa
basil chicken
mediterranean chicken with mushrooms and artichokes
manicotti-style chicken roll-ups
layered mexican casserole
mini meat loaves
pork tenderloin stuffed with spinach, pine nuts, and sun-dried tomatoes
stuffed chayote squash
spinach lasagna
tofu with orange and rosemary glaze
creole eggplant
cheesy kale chips
sweet potato fries with curry dipping sauce
acorn squash stuffed with cranberry-studded quinoa
cheddar cheese pub bread
three-cheese quiches
easy peach crisp
Baking is one of the most familiar cooking techniques to most home cooks. It's as simple as turning on the oven and allowing the dry heat to cook the food. This method keeps food moist and flavorful without needing to add any unhealthy saturated fat. Baking usually requires limited hands-on time or attention; there's no need to turn foods over, stir them frequently, or keep an eye on the dish. You combine ingredients, put them in a baking vessel, place it in the oven, set the timer, and let the food cook while you go on to do something else until dinner is ready.
When you think about baking, what foods come to mind—bread, cookies, and casseroles? The gentle heat of the oven not only melds flavors but can also provide crisp textures, making almost any food taste scrumptious, including fish, poultry, vegetables, and tofu. Similar to roasting, baking usually involves lower temperatures and smaller pieces of meat, such as the chicken breasts used in Mediterranean Chicken with Mushrooms and Artichokes, or fish fillets, such as Salmon with Honey-Balsamic Glaze. Baking can also turn large vegetables, such as whole or halved squash, into tender, succulent edible bowls with fabulous fillings, such as Acorn Squash Stuffed with Cranberry-Studded Quinoa. It can mimic the crisp exteriors of fried foods, as in Cheesy Kale Chips or Sweet Potato Fries with Curry Dipping Sauce. And, of course, it's perfect for classic family favorites such as Mini Meat Loaves and Spinach Lasagna.
TO BAKE:
To cook food in an oven without direct exposure to a flame, surrounding it with dry heat.
Tools & Equipment Needed: Oven thermometer, instant-read thermometer, oven mitts and pot holders, glass baking dishes, metal baking pans, baking sheets (rimmed and unrimmed), loaf pan, muffin pans, wire rack, kitchen timer
TIPS:
• Since the temperatures of most ovens are not calibrated exactly, check the accuracy of yours with an oven thermometer and either have the oven recalibrated if it's way off or adjust the baking temperature accordingly.
• Be sure to preheat the oven; it's worth the wait. If you get impatient and put food into the oven before it has reached the proper temperature, you're likely to end up with unevenly cooked food that hasn't browned properly. Food also cooks faster if it's started at the correct temperature. And some foods, like those made with yeast, baking soda, or baking powder, won't rise properly if they're put in a cold oven because those ingredients react immediately to heat.
• To preheat the oven more quickly, use the broiler setting for a few minutes before switching to the required oven temperature.
• It's best to leave the oven door closed as much as possible. Opening it lets out the heat and lowers the temperature in the oven, which can result in uneven cooking and longer cooking times.
• Use a meat thermometer to check the doneness of meat and poultry. Remove the food from the oven before inserting the instant-read thermometer. Insert the thermometer into the center, or thickest part, of the meat, making sure the thermometer doesn't touch bone or fat.
• Turn the oven on while you're gathering and prepping your ingredients, so it will be ready when you are. Some ovens can take 10 to 15 minutes to reach the desired temperature.
## lemon-basil halibut with linguine
Tender chunks of halibut nestle in nutty whole-grain linguine along with crisp broccoli and sweet roasted red bell pepper, while a creamy sauce coats each bite of this delectable casserole.
SERVES 4 | 1½ cups per serving
4 ounces dried whole-grain linguine
Cooking spray
2 cups broccoli florets, blanched
1 cup roasted red bell peppers, drained if bottled, coarsely chopped
½ cup loosely packed fresh basil, coarsely chopped
1 pound halibut fillets, rinsed, patted dry, and cut into ¾-inch pieces
1 cup fat-free half-and-half
1½ tablespoons all-purpose flour
1 teaspoon garlic powder
1 teaspoon grated lemon zest
¼ teaspoon salt
⅛ teaspoon pepper
2 tablespoons shredded or grated Parmesan cheese
Prepare the pasta using the package directions, omitting the salt. Drain well in a colander.
Preheat the oven to 350°F. Lightly spray an 11 × 7 × 2-inch glass baking dish with cooking spray.
In the baking dish, stir together the pasta, broccoli, roasted peppers, and basil. Arrange the fish in a single layer on the pasta mixture.
In a small bowl, whisk together the remaining ingredients except the Parmesan. Pour over the fish and pasta mixture. Bake, covered, for 25 minutes, or until the fish flakes easily when tested with a fork. Sprinkle with the Parmesan.
per serving
calories 289
total fat 3.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 57 mg
sodium 371 mg
carbohydrates 36 g
fiber 5 g
sugars 6 g
protein 31 g
dietary exchanges: 2 starch, 1 vegetable, 3½ lean meat
COOK'S TIP ON BLANCHING: To blanch broccoli or other vegetables, fill a saucepan three-quarters full of water. Bring to a boil over high heat. Boil the broccoli for 1 to 2 minutes, or until lightly cooked. Drain the broccoli and briefly submerge it in ice water to stop the cooking process.
## salmon with honey-balsamic glaze
Use simple ingredients likely to be found in your kitchen to create a sweet and savory glaze for salmon. Sesame seeds add texture to this entrée that's sure to become a family favorite. When the fish is cooked, put Easy Peach Crisp in the oven to have a warm, delicious dessert after dinner is done.
SERVES 4 | 3 ounces fish per serving
Cooking spray
1½ tablespoons light mayonnaise
1½ tablespoons balsamic vinegar
1 tablespoon honey
1½ teaspoons sesame seeds
¾ teaspoon dried oregano, crumbled
¾ teaspoon olive oil
1 medium garlic clove, minced
4 salmon fillets (about 4 ounces each), rinsed and patted dry
Preheat the oven to 375°F. Lightly spray a shallow baking dish with cooking spray.
In a small bowl, whisk together the mayonnaise and vinegar until smooth. Whisk in the remaining ingredients except the fish.
Put the fish in the baking dish. Lightly spread the mayonnaise mixture over the top and sides of the fish.
Bake for 15 to 20 minutes, or until the fish is cooked to the desired doneness.
per serving
calories 204
total fat 8.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.5 g
cholesterol 55 mg
sodium 125 mg
carbohydrates 7 g
fiber 0 g
sugars 6 g
protein 24 g
dietary exchanges: ½ other carbohydrate, 3 lean meat
## tilapia with pumpkin seed crust and pineapple-avocado salsa
Pumpkin seeds give a crisp crunch and nutty flavor to this fish dish, while creamy avocado adds richness to the spicy-sweet fruit salsa that accompanies it.
SERVES 4 | 3 ounces fish and ⅓ cup salsa per serving
FISH
¼ cup all-purpose flour
2 large egg whites
¼ cup finely chopped unsalted shelled pumpkin seeds, dry-roasted (about 2 ounces)
¼ cup whole-wheat panko (Japanese-style bread crumbs)
1 teaspoon paprika
4 tilapia fillets (about 4 ounces each), rinsed and patted dry
SALSA
1 8-ounce can pineapple tidbits in their own juice, drained
1 medium avocado, chopped
¼ cup finely chopped red onion
¼ cup chopped fresh cilantro
2 tablespoons finely chopped fresh jalapeño, seeds and ribs discarded (see Cook's Tip)
1 to 2 tablespoons fresh lime juice
Preheat the oven to 400°F.
Put the flour in a medium shallow dish. In a separate medium shallow dish, whisk the egg whites until foamy. In a third medium shallow dish, stir together the pumpkin seeds, panko, and paprika. Dip the fish in the flour, then in the egg whites, and finally in the pumpkin seed mixture, turning to coat at each step and gently shaking off any excess. Using your fingertips, gently press the mixture so it adheres to the fish. Place the fish on a baking sheet.
Reduce the oven temperature to 375°F. Bake the fish for 12 to 15 minutes, or until it flakes easily when tested with a fork.
Meanwhile, in a small bowl, gently stir together the salsa ingredients. Serve the fish topped with the salsa.
per serving
calories 331
total fat 13.5 g
saturated fat 2.5 g
trans fat 0.0 g
polyunsaturated fat 3.0 g
monounsaturated fat 7.0 g
cholesterol 57 mg
sodium 99 mg
carbohydrates 25 g
fiber 6 g
sugars 8 g
protein 30 g
dietary exchanges: 1 starch, ½ fruit, 1 vegetable, 3½ lean meat
## basil chicken
Baking the chicken with its skin on helps keep the meat moist and tender. The skin also presses the basil, paprika, and lemon tightly against the meat so it can soak up their flavors.
SERVES 4 | 3 ounces chicken per serving
Cooking spray
½ teaspoon paprika
¼ teaspoon pepper
4 bone-in chicken breast halves with skin, all visible fat discarded
2 to 3 tablespoons fresh lemon juice
8 medium fresh basil leaves
¼ teaspoon salt
Preheat the oven to 375°F. Lightly spray a 9-inch glass baking dish with cooking spray.
In a small bowl, stir together the paprika and pepper.
Gently pull back the skin from one piece of chicken, leaving it attached at one end and being careful not to tear it. Sprinkle one-fourth of the lemon juice and one-fourth of the paprika mixture over the exposed meat. Arrange 2 basil leaves on top. Pull the skin back into place, covering the basil leaves. Transfer to the baking dish with the skin side up. Repeat with the remaining chicken.
Bake for 30 minutes, or until the chicken is no longer pink in the center. Discard the skin. Just before serving, sprinkle the chicken with the salt.
per serving
calories 138
total fat 3.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 76 mg
sodium 283 mg
carbohydrates 1 g
fiber 0 g
sugars 0 g
protein 25 g
dietary exchanges: 3 lean meat
## mediterranean chicken with mushrooms and artichokes
Juicy chicken is baked to perfection with tender mushrooms, tangy artichoke hearts, and sweet tomatoes to create the warm flavors of the Mediterranean. Serve over brown rice or whole-grain orzo.
SERVES 4 | 3 ounces chicken per serving
½ cup all-purpose flour
4 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded
2 tablespoons olive oil
8 ounces sliced button mushrooms
1 6-ounce jar marinated artichoke hearts, drained
2 cups chopped tomatoes
2 medium garlic cloves, minced
½ teaspoon dried oregano, crumbled
½ teaspoon pepper (freshly ground preferred), or to taste
½ cup dry sherry or fat-free, low-sodium chicken broth
Preheat the oven to 350°F.
Put the flour in a medium shallow dish. Dip the chicken in the flour, turning to coat and gently shaking off any excess. Transfer to a large plate.
In a large nonstick skillet, heat the oil over medium-high heat, swirling to coat the bottom. Cook the chicken for 2 minutes on each side, or until lightly browned. Transfer to an 11 × 7 × 2-inch baking dish. Place the mushrooms and artichokes around the chicken.
In a small bowl, stir together the tomatoes, garlic, oregano, and pepper. Pour over the chicken, mushrooms, and artichokes. Bake for 25 minutes. Remove from the oven and stir in the sherry. Bake for 5 minutes, or until the chicken is no longer pink in the center.
per serving
calories 324
total fat 13.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 2.5 g
monounsaturated fat 7.0 g
cholesterol 73 mg
sodium 263 mg
carbohydrates 21 g
fiber 4 g
sugars 4 g
protein 28 g
dietary exchanges: 1 starch, 2 vegetable, 3 lean meat, ½ fat
## manicotti-style chicken roll-ups
In this fresh take on a classic dish, we replace the traditional pasta tubes with chicken breasts that have been flattened to roll around a creamy, herbed filling.
SERVES 4 | 1 roll-up per serving
¾ teaspoon dried oregano, crumbled
¾ teaspoon dried basil, crumbled
½ teaspoon dried marjoram, crumbled
¼ teaspoon pepper (freshly ground preferred), or to taste
1 cup water
1 6-ounce can no-salt-added tomato paste
1 medium garlic clove, minced
4 boneless, skinless chicken breast halves (about 4 ounces each), all visible fat discarded, flattened to ¼-inch thickness
4 ounces fat-free ricotta cheese
2 ounces shredded or grated low-fat mozzarella cheese
Preheat the oven to 350°F.
In a small bowl, stir together the oregano, basil, marjoram, and pepper. In a small saucepan, stir together the water, tomato paste, garlic, and 1½ teaspoons of the oregano mixture. Bring to a boil. Reduce the heat and simmer for 10 minutes, stirring occasionally.
Place the chicken on a flat surface. In a separate small bowl, stir together the ricotta and the remaining oregano mixture. Spoon onto the center of each chicken breast. Roll up jelly-roll style.
Spread half the tomato paste mixture in an 11 × 7 × 2-inch baking dish. Place the roll-ups on the tomato paste mixture. Spoon the remaining mixture over the chicken. Sprinkle with the mozzarella. Bake for 45 minutes, or until the chicken is no longer pink in the center.
per serving
calories 216
total fat 4.5 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 80 mg
sodium 314 mg
carbohydrates 10 g
fiber 2 g
sugars 6 g
protein 33 g
dietary exchanges: 2 vegetable, 4 lean meat
COOK'S TIP ON FLATTENING CHICKEN BREASTS: Put a chicken breast with the smooth side up between two pieces of plastic wrap. With the smooth side of a meat mallet or a heavy pan, flatten the chicken to the desired thickness. Be careful not to tear the meat.
## layered mexican casserole
A spritz of fresh lime juice is the perfect finishing touch for this casserole, which is a handy way to use leftover chicken. If you don't have any cooked chicken breast on hand, see the Cook's Tip for a quick way to prepare some.
SERVES 4 | 1 cup per serving
10 ounces frozen brown rice
1 teaspoon ground cumin
1 tablespoon olive oil
1 4-ounce can chopped green chiles, undrained
¼ cup chopped fresh cilantro
1½ cups cubed cooked skinless chicken breast, cooked without salt (about 7½ ounces cooked)
½ cup shredded low-fat 4-cheese Mexican blend
1 medium lime, cut into 4 wedges
Preheat the oven to 350°F.
Prepare the rice using the package directions. Transfer to a medium bowl. Stir the cumin into the cooked rice. Spread the rice mixture in an 8-inch square baking pan. Drizzle with the oil. Using the back of a spoon, smooth the surface. Spoon the chiles over the mixture. Top with, in order, the cilantro, chicken, and cheese.
Bake, covered, for 15 minutes, or until the cheese has melted.
Serve with the lime wedges.
per serving
calories 242
total fat 8.5 g
saturated fat 2.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 3.0 g
cholesterol 52 mg
sodium 267 mg
carbohydrates 18 g
fiber 2 g
sugars 0 g
protein 22 g
dietary exchanges: 1 starch, 3 lean meat
COOK'S TIP: For quickly cooked chicken to use in this recipe, discard all the visible fat from 10 ounces of boneless, skinless chicken breasts. Cut the chicken into bite-size pieces. Lightly spray a small skillet with cooking spray. Heat over medium-high heat. Cook the chicken for 3 to 4 minutes, or until no longer pink in the center, stirring constantly.
## mini meat loaves
Making these single-serving meat loaves saves cooking time, and they're chock-full of veggies, so they're extra healthy, too. Save even more time by doubling the recipe and freezing the extras.
SERVES 4 | 1 meat loaf per serving
Cooking spray
½ cup no-salt-added ketchup
2 teaspoons Worcestershire sauce (lowest sodium available)
⅛ teaspoon salt
1 pound extra-lean ground beef
⅔ cup whole-wheat panko (Japanese-style bread crumbs)
½ cup chopped green onions
½ cup diced green bell pepper
½ cup diced red bell pepper
½ cup whole-kernel corn, thawed if frozen
2 large egg whites
Preheat the oven to 350°F. Line a baking sheet with aluminum foil. Lightly spray the foil with cooking spray. Set aside.
In a small bowl, whisk together the ketchup, Worcestershire sauce, and salt.
In a medium bowl, using your hands or a spoon, combine the beef, panko, green onions, bell peppers, corn, egg whites, and ¼ cup of the ketchup mixture until just blended. Divide the mixture into four parts. Transfer them to the baking sheet. Shape into four 3 × 4 × 1-inch loaves. Bake for 35 to 40 minutes. Remove from the oven.
Spoon the remaining ketchup mixture over the loaves. Bake for 2 to 4 minutes, or until the meat loaves register 160°F on an instant-read thermometer and are no longer pink in the center.
per serving
calories 266
total fat 6.5 g
saturated fat 2.5 g
trans fat 0.5 g
polyunsaturated fat 0.5 g
monounsaturated fat 2.5 g
cholesterol 62 mg
sodium 228 mg
carbohydrates 24 g
fiber 3 g
sugars 11 g
protein 30 g
dietary exchanges: 1 starch, 1 vegetable, 3½ lean meat
pork tenderloin stuffed with spinach, pine nuts, and sun-dried tomatoes
## pork tenderloin stuffed with spinach, pine nuts, and sun-dried tomatoes
This elegant main dish is sure to impress when the pork is sliced open to reveal its beautiful, bright filling. It may look complicated, but it's simple to prepare. Sweet sun-dried tomatoes, earthy spinach, and crunchy pine nuts provide a wonderful contrast to rosemary-scented pork. Have your oven do double duty by baking Acorn Squash Stuffed with Cranberry-Studded Quinoa at the same time. (See photo.)
SERVES 4 | 3 ounces pork and 2 tablespoons sauce per serving
½ cup dry-packed sun-dried tomatoes
Cooking spray
1 1-pound pork tenderloin, all visible fat discarded, butterflied and flattened to 1-inch thickness
2 tablespoons pine nuts, dry-roasted
1 tablespoon chopped fresh rosemary and 1 tablespoon chopped fresh rosemary, divided use
¼ teaspoon salt
⅛ teaspoon pepper and ⅛ teaspoon pepper, divided use
4 cups loosely packed baby spinach
Bring 1 cup water to a boil. Put the tomatoes in a small bowl. Pour in the boiling water. Let stand for 10 minutes, or until softened.
Preheat the oven to 375°F. Lightly spray a rimmed baking sheet with cooking spray.
Drain the tomatoes, discarding the soaking water. Squeeze them to remove any excess water. Coarsely chop the tomatoes.
Lay the opened pork on a cutting board. Sprinkle the tomatoes and pine nuts lengthwise over half of the pork. Sprinkle 1 tablespoon rosemary, the salt, and ⅛ teaspoon pepper over the tomato mixture. Arrange the spinach in a single layer on top. Fold the half with no filling over the other half. Using kitchen twine, tie the pork at 2-inch intervals to secure it. Transfer the pork to the baking sheet. Lightly spray the pork with cooking spray. Sprinkle with the remaining 1 tablespoon rosemary and ⅛ teaspoon pepper.
Bake for 40 minutes, or until the pork registers 145°F on an instant-read thermometer.
Transfer the pork to a clean cutting board. Discard the twine. Let stand for 3 minutes before slicing.
per serving
calories 166
total fat 5.0 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 1.5 g
monounsaturated fat 2.0 g
cholesterol 60 mg
sodium 218 mg
carbohydrates 6 g
fiber 2 g
sugars 2 g
protein 24 g
dietary exchanges: 1 vegetable, 3 lean meat
## stuffed chayote squash
The pulp of the chayote squash is moist and tastes like a cross between an apple and a cucumber. The key to this recipe is not to overcook the vegetable filling. The tender-crisp texture is part of the charm of the finished dish.
SERVES 4 | 1 squash half per serving
2 medium chayote squash (about 1 pound total)
1 teaspoon canola or corn oil
2 medium ribs of celery, diced
2 medium carrots, diced
1 medium onion, diced
2 medium garlic cloves, minced
5 ounces frozen soy crumbles, thawed
2 medium Italian plum (Roma) tomatoes, diced
2 medium green onions, thinly sliced
¼ teaspoon dried thyme, crumbled
⅛ teaspoon salt
⅛ teaspoon pepper
¼ cup whole-wheat panko (Japanese-style bread crumbs)
1 tablespoon plus 1 teaspoon shredded or grated Parmesan cheese
Put the squash in a medium saucepan and fill the pan with enough cold water to cover by 2 inches. Bring to a boil over high heat. Reduce the heat and simmer for 30 minutes, or until the squash is tender when pierced with the tip of a sharp knife. Remove from the pan and plunge into a bowl of ice water to stop the cooking process. Let cool.
When the squash is cool, halve it lengthwise. Discard the seeds. Using a spoon or melon baller, scoop out the pulp, leaving a ½-inch border of the shell all the way around. Chop the pulp and set aside. Place the shells with the cut sides up on a rimmed baking sheet.
Preheat the oven to 375°F.
Meanwhile, in a small skillet, heat the oil over medium heat. Cook the celery, carrots, onion, and garlic for 2 to 3 minutes, or until tender-crisp (don't overcook). Stir in the soy crumbles, tomatoes, green onions, thyme, salt, pepper, and reserved squash pulp. Cook for 30 seconds.
Spoon the soy crumble mixture into the squash shells. Sprinkle with the panko and Parmesan.
Bake for 15 to 20 minutes, or until heated through.
per serving
calories 142
total fat 2.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 1 mg
sodium 280 mg
carbohydrates 22 g
fiber 7 g
sugars 8 g
protein 11 g
dietary exchanges: ½ starch, 3 vegetable, 1 lean meat
COOK'S TIP: If you can't find chayote squash, you can use yellow summer squash or zucchini instead. Halve the squash lengthwise. Scoop out the pulp, leaving a ¼-inch border of the shell all the way around. Dice the pulp. Set aside. Place the shells with the cut sides down in a medium glass baking dish. Microwave, covered, on 100 percent power (high) for 4 to 6 minutes, or until just tender. Remove from the microwave. Uncover the dish carefully to avoid steam burns. Proceed as directed.
## spinach lasagna
This healthier version of a classic dish boasts three kinds of cheese for a lasagna with decadent flavor but less sodium and saturated fat.
SERVES 8 | one 4 × 3½-inch piece per serving
Cooking spray
1 pound dried whole-grain lasagna noodles
¼ cup shredded low-fat mozzarella cheese and 1 cup shredded low-fat mozzarella cheese, divided use
2 tablespoons shredded or grated Parmesan cheese and ¼ cup plus 2 tablespoons shredded or grated Parmesan cheese, divided use
3 cups chopped spinach
2 cups fat-free ricotta cheese
4 cups spaghetti sauce (lowest sodium available)
Preheat the oven to 350°F. Lightly spray a 13 × 9 × 2-inch baking dish with cooking spray.
Prepare the noodles using the package directions, omitting the salt. Drain well.
In a small bowl, stir together ¼ cup mozzarella and 2 tablespoons Parmesan.
In a medium bowl, stir together the spinach, ricotta cheese, and the remaining 1 cup mozzarella and ¼ cup plus 2 tablespoons Parmesan.
Spread 1 cup of the spaghetti sauce in a thin layer in the baking dish. Arrange about one-third of the noodles in a single layer on the sauce. Spread half the ricotta cheese mixture over the noodles. Repeat the layers. Top the second layer of ricotta cheese with 1 cup sauce, spreading it into a thin layer. Arrange the remaining noodles on top. Spread the remaining sauce over the noodles. Sprinkle with the mozzarella mixture. Bake for 30 to 40 minutes. Remove from the oven. Let stand for 10 to 15 minutes before slicing.
per serving
calories 345
total fat 5.5 g
saturated fat 1.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.5 g
cholesterol 15 mg
sodium 439 mg
carbohydrates 52 g
fiber 8 g
sugars 9 g
protein 23 g
dietary exchanges: 3 starch, 1 vegetable, 2 lean meat
## tofu with orange and rosemary glaze
Tangy and sweet, these orange-glazed tofu slices are a great substitute for fish or chicken when you're topping a salad or making a sandwich.
SERVES 4 | 2 slices per serving
32 ounces light firm tofu, drained, patted dry, and cut into 8 slices
Cooking spray
2 tablespoons grated orange zest
½ cup fresh orange juice
2 tablespoons orange marmalade (optional)
2 tablespoons soy sauce (lowest sodium available)
2 tablespoons plain rice vinegar
2 tablespoons canola or corn oil
2 teaspoons finely minced fresh rosemary
¼ teaspoon pepper (freshly ground preferred), or to taste
Put the tofu on a cutting board lined with four layers of paper towels. Cover it with four layers of paper towels. Place a large, heavy baking dish on top. Let stand for 30 minutes so the tofu releases its excess moisture, replacing the paper towels if necessary.
Preheat the oven to 350°F. Lightly spray a 13 × 9 × 2-inch baking dish with cooking spray.
In the baking dish, whisk together the remaining ingredients. Add the tofu, turning to coat. Arrange the slices in two rows, overlapping the slices if necessary. Bake for 45 minutes to 1 hour, or until golden brown, basting occasionally.
per serving
calories 207
total fat 11.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 4.5 g
monounsaturated fat 5.0 g
cholesterol 0 mg
sodium 273 mg
carbohydrates 8 g
fiber 2 g
sugars 4 g
protein 20 g
dietary exchanges: ½ other carbohydrate, 3 lean meat
## creole eggplant
Unlike its Cajun cousin, Creole cuisine is flavorful but not spicy. Here, eggplant is layered with tomato sauce, then finished with a crunchy topping.
SERVES 10 | ½ cup per serving
2 tablespoons canola or corn oil
¼ cup sliced button mushrooms
2 tablespoons chopped onion
2 tablespoons chopped green bell pepper
2 cups canned no-salt-added stewed tomatoes or chopped tomatoes, drained
Pepper to taste (freshly ground preferred)
1 medium eggplant, sliced or cubed
Cooking spray
½ cup plain dry bread crumbs (lowest sodium available)
1 tablespoon light tub margarine
In a medium skillet, heat the oil over low heat, swirling to coat the bottom. Cook the mushrooms, onion, and bell pepper for 5 minutes, or until the mushrooms and onion are soft and the bell pepper is tender, stirring occasionally. Stir in the tomatoes and pepper. Simmer for 30 minutes, stirring occasionally.
Put the eggplant in a large saucepan and fill with enough water to cover. Bring to a boil over medium-high heat. Boil for 10 minutes. Drain well in a colander. Set aside.
Preheat the oven to 350°F. Lightly spray an 11 × 7 × 2-inch baking dish with cooking spray.
Put half the eggplant in the dish. Spoon half the sauce over the eggplant. Repeat the layers. Sprinkle with the bread crumbs. Dot with the margarine. Bake for 30 minutes, or until bubbling.
per serving
calories 79
total fat 3.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 1.0 g
monounsaturated fat 2.0 g
cholesterol 0 mg
sodium 56 mg
carbohydrates 10 g
fiber 3 g
sugars 4 g
protein 2 g
dietary exchanges: ½ starch, 1 vegetable, ½ fat
COOK'S TIP: If you prefer, substitute 1½ large yellow summer squash for the eggplant.
## cheesy kale chips
Reach for a serving of these crisp chips as a side to a sandwich or by themselves as a healthy snack.
SERVES 4 | ½ cup per serving
Olive oil cooking spray
1 bunch kale (about 4 ounces), ribs discarded and leaves torn or cut into 2-inch pieces
1 tablespoon sesame seeds
1 teaspoon dried minced garlic or garlic powder
1 teaspoon dried minced onion or onion powder
½ teaspoon smoked paprika
¼ teaspoon pepper
⅛ teaspoon salt
2 tablespoons shredded or grated Parmesan cheese
Preheat the oven to 375°F. Put a wire mesh rack on a rimmed baking sheet. Lightly spray the rack with cooking spray.
Arrange the kale in a single layer on the rack. Lightly spray the kale with cooking spray.
In a small bowl, stir together the remaining ingredients except the Parmesan. Sprinkle over the kale. Bake for 28 to 30 minutes, or until the kale is crisp and the edges are browned. Sprinkle with the Parmesan. Bake for 1 minute, or until the Parmesan has melted.
Remove the baking sheet from the oven. Let stand for 5 minutes.
per serving
calories 45
total fat 2.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 1.0 g
cholesterol 2 mg
sodium 128 mg
carbohydrates 4 g
fiber 1 g
sugars 0 g
protein 3 g
dietary exchanges: 1 vegetable, ½ fat
COOK'S TIP: These chips can be stored in an airtight container for up to five days.
BAKING BONUS: If you enjoy kale chips, try making chips out of brussels sprouts. Separate fresh brussels sprouts into leaves and put on a baking sheet in a single layer. Lightly spray with cooking spray or toss with a small amount of olive oil. Bake at 350°F for 7 to 10 minutes, or until crisp.
## sweet potato fries with curry dipping sauce
These are everything fries should be—crisp on the outside and tender on the inside. They're paired with a lightly sweetened, creamy curry sauce.
SERVES 4 | ½ cup fries and 2 tablespoons sauce per serving
Cooking spray
2 small sweet potatoes (about 1 pound total), peeled and cut into 4 × ¼ × ¼-inch strips
1 teaspoon garlic powder
1 teaspoon ground cumin
¼ teaspoon pepper
⅛ teaspoon salt
SAUCE
½ cup fat-free plain yogurt
2 teaspoons light brown sugar
½ teaspoon curry powder
Preheat the oven to 400°F. Lightly spray a baking sheet with cooking spray.
Put the sweet potatoes on the baking sheet.
In a small bowl, stir together the garlic powder, cumin, pepper, and salt. Sprinkle over the sweet potatoes, stirring to coat. Arrange in a single layer on the baking sheet. Lightly spray the fries with cooking spray.
Reduce the oven temperature to 350°F. Bake the fries for 40 to 45 minutes, or until golden brown on the outside and tender on the inside, turning once halfway through.
Meanwhile, in a small bowl, whisk together the sauce ingredients. Serve with the fries.
per serving
calories 129
total fat 0.5 g
saturated fat 0.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 0.0 g
cholesterol 1 mg
sodium 161 mg
carbohydrates 28 g
fiber 4 g
sugars 9 g
protein 4 g
dietary exchanges: 2 starch
BAKING BONUS: Root vegetables, including sweet potatoes, can also be baked into crisp chips. Thinly slice any combination of root vegetables such as beets, carrots, parsnips, sweet potatoes, jícama, radishes, or daikon radishes. Arrange in a single layer on a baking sheet. Lightly spray with cooking spray or brush with a small amount of olive oil. Bake at 350°F for 12 to 15 minutes, or until crisp.
acorn squash stuffed with cranberry-studded quinoa
## acorn squash stuffed with cranberry-studded quinoa
You'll really fall for this autumnal dish, which is baked in stages so that all the ingredients cook to perfection. (See photo.)
SERVES 4 | 1 stuffed squash quarter per serving
1 small acorn squash (about 1 pound), quartered, seeds and strings discarded
Cooking spray
1 medium onion, coarsely chopped
2 teaspoons canola or corn oil
1 ounce chopped pecans
¼ cup uncooked quinoa, rinsed and drained
¼ cup sweetened dried cranberries
⅛ teaspoon ground cumin
⅛ teaspoon crushed red pepper flakes
⅛ teaspoon salt
Preheat the oven to 375°F.
Line a baking sheet with aluminum foil. Put the squash quarters with the cut sides up on the baking sheet. Lightly spray the squash with cooking spray. Bake for 15 minutes. Remove from the oven.
In a small bowl, stir together the onion and oil. Arrange the onion around the squash. Bake for 20 minutes. Sprinkle the pecans over the onion. Bake for 5 minutes, or until the pecans are browned (watch carefully so they don't burn).
Meanwhile, prepare the quinoa using the package directions, omitting the salt. Fluff with a fork.
Transfer the squash to plates. Stir the onion mixture into the quinoa. Stir in the remaining ingredients. Spoon into the squash cavities.
per serving
calories 179
total fat 8.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 2.5 g
monounsaturated fat 4.5 g
cholesterol 0 mg
sodium 79 mg
carbohydrates 26 g
fiber 4 g
sugars 10 g
protein 3 g
dietary exchanges: 1 starch, ½ fruit, 1 vegetable, 1½ fat
COOK'S TIP: For easier quartering, use a fork to pierce the whole squash in several places, then microwave it on 100 percent power (high) for 2 minutes. The heat will permeate the squash and soften it a bit. Carefully transfer it to a cutting board. Let it cool for about 3 minutes, or until it's easy to handle.
## cheddar cheese pub bread
Flecked with Cheddar cheese and subtly flavored with mustard, slices of this hearty loaf are the perfect partner for a bowl of steaming soup. Try a slice with Creamy Tomato-Basil Soup.
SERVES 8 | 1 slice per serving
⅓ cup sliced green onions
¼ cup water
2 medium garlic cloves, minced
¼ cup fat-free milk
1 teaspoon sugar
¼ teaspoon salt
½ cup all-purpose flour, 2 cups all-purpose flour, and 2 to 3 tablespoons all-purpose flour, divided use
1 ¼-ounce package active dry yeast
1 teaspoon dry mustard
1 large egg
⅓ cup shredded low-fat sharp Cheddar cheese
Cooking spray
In a small saucepan, stir together the green onions, water, and garlic. Bring to a boil over medium-high heat. Reduce the heat and simmer, covered, for 5 minutes. Stir in the milk, sugar, and salt. Heat or cool the mixture to 120°F to 130°F (use an instant-read thermometer to check).
In a medium mixing bowl, combine ½ cup flour, the yeast, and mustard. Add the green onion mixture and egg. Beat with an electric mixer on low to medium speed for 30 seconds, scraping the side of the bowl. Beat on high speed for 3 minutes. Using a spoon, stir in the Cheddar and as much of the 2 cups flour as possible.
Using the remaining 2 to 3 tablespoons flour, lightly flour a flat surface. Knead the dough for 6 to 8 minutes, adding enough of the remaining flour to make a moderately stiff dough that's smooth and elastic. Shape into a ball. Using cooking spray, lightly spray a large bowl and a piece of plastic wrap large enough to cover the top of the bowl. Transfer the dough to the bowl, turning once to coat all sides with the cooking spray. Cover the bowl with the plastic wrap with the sprayed side down. Let the dough rise in a warm, draft-free place (about 85°F) until doubled in bulk (about 1½ hours).
Punch down the dough. Turn the dough out onto a lightly floured surface. Divide the dough into 16 equal pieces. Roll each piece into a ball.
Spray an 8 × 4 × 2-inch loaf pan with cooking spray. Arrange the dough balls in the pan. Cover with a clean dish towel. Let rise in a warm, draft-free place (about 85°F) until nearly doubled in bulk (about 45 minutes).
Preheat the oven to 375°F. Uncover the bread. Bake for 35 to 40 minutes, or until the bread is brown and sounds hollow when tapped on the bottom (remove it from the pan to test this).
Transfer the bread to a cooling rack. Let cool before slicing.
per serving
calories 172
total fat 1.5 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 0.5 g
monounsaturated fat 0.5 g
cholesterol 24 mg
sodium 118 mg
carbohydrates 32 g
fiber 2 g
sugars 1 g
protein 7 g
dietary exchanges: 2 starch
## three-cheese quiches
These veggie-studded crustless quiches are super simple to make.
SERVES 6 | 1 quiche per serving
Cooking spray
1 teaspoon olive oil
1 cup chopped broccoli florets
½ cup shredded carrot
½ cup shredded zucchini
2 medium green onions, thinly sliced
1½ cups egg substitute
½ cup fat-free half-and-half
¼ cup shredded low-fat mozzarella cheese
¼ cup shredded low-fat Cheddar cheese
2 tablespoons shredded or grated Parmesan cheese
½ teaspoon dried oregano, crumbled
⅛ teaspoon pepper
Preheat the oven to 350°F. Lightly spray a 6-cup muffin pan with cooking spray or use 6 cups of a standard 12-cup muffin pan. Fill the empty cups with water.
In a medium skillet, heat the oil over medium heat, swirling to coat the bottom. Cook the broccoli, carrot, zucchini, and green onions for 2 to 3 minutes. Spoon into the muffin cups.
In a medium bowl, whisk together the remaining ingredients. Ladle the egg substitute mixture into the muffin cups.
Bake for 25 to 28 minutes, or until a wooden toothpick inserted in the center of a quiche comes out clean. Transfer the pan to a cooling rack. Let stand for 10 minutes. Using a thin spatula or flat knife, loosen the sides of the quiches. Serve warm. Refrigerate leftovers in an airtight container for up to five days.
per serving
calories 89
total fat 2.0 g
saturated fat 1.0 g
trans fat 0.0 g
polyunsaturated fat 0.0 g
monounsaturated fat 1.0 g
cholesterol 4 mg
sodium 249 mg
carbohydrates 7 g
fiber 1 g
sugars 4 g
protein 11 g
dietary exchanges: ½ starch, 1½ lean meat
## easy peach crisp
This dessert couldn't be easier to prepare, and the results are delectable. Use fresh peaches when they're in season, but keep some frozen ones on hand for when they're not. This is a dessert you'll want to make again and again.
SERVES 4 | ½ cup per serving
4 medium peaches, peeled and sliced, or 2 cups frozen unsweetened peach slices, thawed
½ teaspoon ground cinnamon and ½ teaspoon ground cinnamon, divided use
½ teaspoon cornstarch
½ cup uncooked oatmeal
3 tablespoons chopped pecans
2 tablespoons light tub margarine
1 tablespoon light brown sugar
½ teaspoon ground nutmeg
¼ teaspoon ground ginger
Preheat the oven to 375°F.
Put the peaches in a nonstick 8- or 9-inch square baking pan. Stir in ½ teaspoon cinnamon and the cornstarch.
In a small bowl, using a fork, stir together the remaining ingredients, including the remaining ½ teaspoon cinnamon. Sprinkle over the peaches.
Bake for 30 to 40 minutes, or until the topping is golden brown and the peaches are heated through. Serve immediately.
per serving
calories 171
total fat 7.0 g
saturated fat 0.5 g
trans fat 0.0 g
polyunsaturated fat 2.0 g
monounsaturated fat 3.5 g
cholesterol 0 mg
sodium 47 mg
carbohydrates 26 g
fiber 4 g
sugars 16 g
protein 4 g
dietary exchanges: 2 other carbohydrate, 1½ fat
# a heart-healthy pantry
Keeping healthy staples on hand makes cooking healthy meals at home easier and more convenient. Don't let the long list discourage you; most of these items aren't perishable or have a fairly long shelf life so you can acquire them over time to build up your pantry. If you keep some healthy basics in each category, you'll have more options for cooking nutritious meals at home. In fact, you'll be able to prepare most of the recipes in this book with the ingredients waiting in your well-stocked refrigerator, freezer, and pantry; for many other dishes, you'll need only a few additional items from the store.
FRESH
• garlic
• gingerroot
• lemons
• limes
• onions
• oranges
• shallots
• various chiles
FOR THE FRIDGE
• eggs
• egg substitute
• fat-free or low-fat feta cheese
• fat-free half-and-half
• fat-free milk
• fat-free ricotta cheese
• fat-free sour cream
• fat-free plain yogurt
• fat-free plain Greek yogurt
• light mayonnaise
• light tub margarine
• low-fat buttermilk
• low-fat Cheddar cheese
• low-fat mozzarella cheese
• Parmesan cheese, shaved, shredded, or grated
• queso fresco or farmer cheese
FOR THE FREEZER
• assorted fruits and berries
• assorted vegetables without added sauces
• brown rice
• chicken breasts
• extra-lean ground beef
• fish fillets
• ground skinless chicken breast
• ground skinless turkey breast
• lean steaks and chops
• seitan
• soy crumbles
• tofu
• turkey bacon
FOR THE PANTRY (NONPERISHABLES)
Rices (choose unseasoned)
• Arborio rice
• instant and/or regular brown rice
Beans and legumes
• dried beans, peas, and lentils
• no-salt-added canned black beans
• no-salt-added canned cannellini beans
• no-salt-added canned chickpeas
• no-salt-added canned kidney beans
• no-salt-added canned navy beans
PASTAS AND GRAINS
• assorted whole-grain and enriched pastas, including lasagna noodles
• barley
• corn tortillas
• farro
• instant, or fine-grain, bulgur
• quick-cooking oatmeal
• quinoa
• whole-wheat couscous
TOMATO PRODUCTS
• dry-packed sun-dried tomatoes
• no-salt-added diced, stewed, crushed, and whole tomatoes
• no-salt-added tomato paste
• no-salt-added tomato sauce
• spaghetti sauce (lowest sodium available)
DRY GOODS
• active dry yeast
• baking powder
• baking soda
• cornmeal
• cornstarch
• flour: all-purpose, whole-wheat, white whole-wheat, and whole-wheat pastry
• green tea bags
• plain dry bread crumbs
• salt-free instant bouillon: chicken and beef
• sugar: granulated, light brown, dark brown, and confectioners'
• whole-wheat panko (Japanese-style bread crumbs)
CANNED AND BOTTLED PRODUCTS
• 100% fruit juices
• boneless, skinless salmon canned or in pouches (lowest sodium available)
• canned very low sodium tuna, packed in water
• canned water chestnuts
• fat-free, low-sodium broths: chicken, beef, and/or vegetable
• fruits canned in water with no sugar added when possible or in their own juice
• garlic: minced, chopped, or whole cloves
• gingerroot, minced
• green chiles
• kalamata olives
• light beer
• no-salt-added canned vegetables
• red wine (regular or nonalcoholic)
• roasted red bell peppers
• sherry (not cooking sherry)
• unsweetened applesauce
• white wine (regular or nonalcoholic)
COOKING OILS
• canola or corn oil
• cooking sprays
• olive oil
• peanut oil
• toasted sesame oil
MISCELLANEOUS
• all-fruit spreads
• dried fruits, including raisins, cranberries, apricots, and plums (choose those with the least added sugar)
• honey
• low-sodium peanut butter
• molasses
• pure maple syrup
• unsalted nuts, including almonds, walnuts, peanuts, pecans, and pine nuts
• seeds, including sesame, anise, caraway, fennel, and pumpkin (unsalted)
CONDIMENTS (CHOOSE LOWEST SODIUM AVAILABLE)
• chipotle peppers canned in adobo sauce
• hot chili oil
• mustards
• no-salt-added ketchup
• red hot-pepper sauce
• soy sauce
• Thai sweet chili sauce
• vinegars, including cider, balsamic, red wine, white wine, and plain rice
• Worcestershire sauce
SPICES AND SEASONINGS
• black pepper
• cayenne
• chili powder
• crushed red pepper flakes
• curry powder
• dried herbs, including oregano, basil, thyme, rosemary, dillweed, parsley, sage, bay leaves, and saffron
• dry mustard
• garlic powder
• ground spices, including cinnamon, ginger, nutmeg, allspice, cumin, coriander, paprika, smoked paprika, and turmeric
• onion powder
• salt
• salt-free seasoning blends, including all-purpose, Creole or Cajun, Italian, and lemon pepper
• vanilla extract
# cooking equipment and tools basics
APPLIANCES
• blender
• food processor
• grill (outdoor)
• microwave
• oven
• slow cooker
• stovetop
TOOLS
• basting brushes
• box grater
• can opener
• citrus reamer
• colander
• cooking parchment (or aluminum foil)
• cutting boards for vegetables, meats, and poultry
• fine-mesh sieve
• grill tools including wire cleaning brush
• instant-read thermometer
• kitchen shears
• kitchen twine
• knives: carving, chef's, paring, santoku, slicing, serrated, utility
• ladle
• mandoline
• measuring cups
• measuring spoons
• mixing bowls (glass)
• oven mitts and pot holders
• oven thermometer
• peeler
• rasp grater
• skewers (metal or wooden, bamboo)
• slotted spoon
• spatulas (regular and slotted, rubber and metal)
• timer
• tongs
• whisk
• wire rack
• wooden spoons
COOKWARE
• baking dishes, glass (9-inch square and 11 × 7 × 2-inch)
• baking pans, metal (8-inch square)
• baking sheets (rimmed and unrimmed, broiler-safe)
• broiler pan and rack
• Dutch oven with lid
• skillets with lids: small (8-inch, ovenproof), medium (10-inch), large (12-inch)
• pots with lids
• loaf pan (8 × 4 × 2-inch)
• microwaveable bowls, plates, casserole dishes with lids (1½-quart and 2-quart), baking dishes (8- or 9-inch round or square), pie pan (9-inch)
• muffin pan (12-cup)
• ramekins
• roasting pan and rack
• saucepans with lids: small (2-quart), medium (4-quart), large (6-quart)
• bamboo steamer or collapsible metal or silicone steamer basket
• wok (14-inch)
# kitchen and food safety basics
GENERAL FOOD SAFETY
According to the United States Department of Agriculture (USDA), these are the four fundamental rules to keep food safe:
CLEAN: WASH HANDS AND SURFACES OFTEN.
• Wash hands with soap and warm water for 20 seconds before and after handling food.
• Use hot, soapy water and paper towels or clean cloths to wipe up kitchen surfaces or spills. Wash cloths in hot water in the washing machine.
• Wash cutting boards, dishes, knives, and countertops with hot, soapy water after preparing each food item and before you go on to the next item.
SEPARATE: DON'T CROSS-CONTAMINATE.
• Place raw meat, poultry, and seafood in containers or sealed plastic bags to prevent their juices, which may contain harmful bacteria, from dripping onto other foods both in your grocery cart and in your refrigerator or freezer.
• Liquid that was used to marinate raw meat, poultry, or seafood should not be used as a basting sauce or on cooked foods unless it is boiled just before using to destroy any harmful bacteria.
• Never place cooked food back on the same plate or cutting board that previously held raw food.
• If possible, designate one cutting board for fresh produce and bread and a separate one for raw meat, poultry, and seafood. Always use a clean cutting board.
COOK: COOK TO THE RIGHT TEMPERATURE.
Use a food thermometer inserted into the thickest part of the food (don't let it touch bone). Cook foods until they have reached the following safe minimum internal temperatures:
• All beef, pork, lamb, and veal steaks, chops, and roasts to a minimum internal temperature of 145°F. Allow the meat to rest for at least 3 minutes.
• All ground beef, pork, lamb, and veal to an internal temperature of 160°F.
• All poultry, including ground poultry, to an internal temperature of 165°F.
CHILL: REFRIGERATE PROMPTLY.
• Refrigerate perishable food within 2 hours (in the summer cut this down to 1 hour).
• Refrigerate or freeze leftovers within 2 hours (in the summer cut this down to 1 hour). Discard any food left out beyond this window.
• Be sure your refrigerator is set at and maintaining a temperature of 40°F or below and the freezer at 0°F or below. Monitor with an appliance thermometer.
COOKING SAFELY IN THE BLENDER OR FOOD PROCESSOR
When putting hot liquids into your blender or food processor, use the following safety guidelines:
• Always use a lid when using a blender or food processor.
• Process hot liquids in batches.
• Vent the lid so the steam can escape.
• Cover the open area with a kitchen towel to prevent spraying.
• Don't overfill your blender; always leave room for expansion of your ingredients. Blend the mixture in batches if needed.
COOKING SAFELY UNDER THE BROILER
Broiling is an intense technique because it uses high temperatures to cook food. Follow these safety guidelines when using your broiler:
• Never leave the room while broiling. Watch food carefully, because it can go from browned to burned very quickly.
• Check your oven's owner's manual to determine whether the door should be closed or left ajar while broiling.
• Vent the area well, especially if you have an electric oven. Splatters on the electric coils can cause smoke.
• If you're using cookware other than the broiler pan (when browning a casserole, for example), be sure the dish can handle high heat. Avoid using glass pans, which can crack or burst.
• Foods that are no more than 1 to 1½ inches thick are best for broiling, because only the surface of the food is cooked; the heat won't penetrate the food enough to cook the center of thicker foods.
• To avoid flare-ups, don't pour marinades and sauces over the food while broiling it.
COOKING SAFELY ON THE GRILL
According to the USDA, eating moderate amounts of grilled meats, poultry, and fish cooked—without charring—to a safe temperature does not pose a health problem. Follow these safety guidelines when using your grill:
• Completely thaw meat and poultry before grilling so it cooks more evenly. Use the refrigerator for slow, safe thawing or thaw sealed packages in cold water. For quicker thawing, you can use the microwave to defrost if the food will be grilled immediately.
• Always marinate food in the refrigerator, not on the counter.
• Always use a clean basting brush to avoid contamination.
• When taking food off the grill, use a clean platter. Putting cooked food on the same platter that held raw meat or poultry could contaminate it from the harmful bacteria in the raw meat juices.
• In hot weather (above 90°F), don't let food sit out for more than 1 hour.
• Cook food to a safe minimum internal temperature to destroy harmful bacteria (see "Cook to the right temperature"). Meat and poultry on a grill often browns very fast on the outside. Use an instant-read thermometer to be sure the food has reached a safe minimum internal temperature.
• When using a gas grill, avoid high temperatures. Food that is cooked on high heat for longer periods of time may produce unwanted carcinogens. Cut off any charred (burnt or black) parts before eating.
COOKING SAFELY IN THE MICROWAVE
Microwaves are convenient and safe appliances when used properly. Follow these safety guidelines when using your microwave:
• Arrange food evenly in a microwaveable dish and add some liquid if needed. Cover the dish with a microwave-safe lid or plastic wrap; loosen or vent the lid or wrap to let steam escape. The moist heat that is created will help destroy harmful bacteria and ensure uniform cooking.
• Microwave ovens can cook unevenly and leave "cold spots" where harmful bacteria can survive, so stir or rotate food midway through the cooking time to eliminate these.
• When partially cooking food in the microwave to finish on the grill or in the oven, be sure to transfer the microwaved food to the other heat source immediately. Never partially cook food and store it for later use.
• Remove food from packaging before defrosting it in the microwave.
• Use only cookware that is manufactured for use in the microwave oven. Glass, ceramic, and all plastics should be labeled for microwave use.
• Microwaveable plastic wraps, wax paper, cooking bags, cooking parchment, and white microwave-safe paper towels should be safe to use. Don't let plastic wrap touch food during microwaving; it may melt.
• The following should NOT be used in the microwave: plastic storage containers such as margarine tubs, take-out containers, and other one-time-use containers. These can warp or melt, possibly causing harmful chemicals to leach into the food. Also, never use thin plastic storage bags, brown paper or plastic grocery bags, newspaper, aluminum foil, or metal or foam containers.
• Never operate the microwave if it is damaged in any way, such as broken door seals or loose latches. Don't operate a microwave when it's empty, as this can damage the interior.
COOKING SAFELY IN THE SLOW COOKER
The direct heat from the crock, lengthy cooking times, and steam created within the tightly covered container combine to destroy bacteria and make slow cooking a safe process for cooking even on the low setting. Follow these safety guidelines when using your slow cooker:
• Become familiar with your cooker's temperature range so you can gauge cooking times accurately. Cooking temperatures of units from different manufacturers vary, and today's cookers may cook hotter than older models; your machine may cook a little hotter or cooler than the norm. If that's the case, the difference may affect not only the success of a recipe but also the safety of the food.
• To test the cooking temperature of your cooker, try this: Fill the crock one-half to two-thirds full of room-temperature water and heat the water, covered, on low for 8 hours. Uncover and immediately test the water temperature with an instant-read thermometer. (Act quickly because the temperature will drop when the lid is raised.) If the temperature is higher than 185°F, your cooker runs hot, and you should cook foods for slightly less time than recommended. If it is lower, foods may not reach an adequate cooking temperature quickly enough for safety. (If your cooker is not heating to a safe temperature, you should consider replacing it.) Altitude also will affect your cooker's performance, so modify your timing according to the manufacturer's instructions.
• Thaw frozen foods, especially meat and poultry, in the fridge or microwave—but not at room temperature—before you put them in the cooker. Frozen ingredients will keep the internal temperature lower than it should be, and the contents of the crock may not reach high-enough temperatures to cook properly.
• To prevent harmful bacteria from multiplying, don't leave food on the warm or off setting in your slow cooker for more than 2 hours.
• If you suspect that your cooker has been off for more than 2 hours because of a power outage, discard the food in the crock.
• Don't reheat leftovers in the crock because bacteria can grow in the time it takes for the food to reach a safe temperature. Instead, reheat food in a microwave or on the stove.
• Remove foods from the crock before refrigerating them. The crock is too thick to allow foods to cool quickly enough to prevent bacteria growth.
# food groups and suggested servings
To get the nutrients you need, the American Heart Association recommends that you focus your diet on fruits, vegetables, whole grains, low-fat dairy products, poultry, fish, and nuts, while limiting red meat and sugary foods and beverages. Many diets fit this pattern, including the DASH (Dietary Approaches to Stop Hypertension) eating plan from the National Institutes of Health and diets suggested by the USDA and the American Heart Association. The DASH diet provides the average recommended number of servings of each basic food group, which are based on daily calorie intake and summarized on the following chart. The number of servings that is right for you will vary depending on your caloric needs. When shopping, compare nutrition facts panels and look for the products that are lowest in sodium, saturated fat, and trans fat, and that don't have added sugars.
SERVING RECOMMENDATIONS BY CALORIE LEVEL
FOOD GROUP | 1,600 CALORIES | 2,000 CALORIES | SAMPLE SERVING SIZES
---|---|---|---
VEGETABLES
Eat a variety of colors and types. | 3 to 4 servings per day | 4 to 5 servings per day | 1 cup raw leafy vegetable
½ cup cut-up raw or cooked vegetable
½ cup vegetable juice
FRUITS
Eat a variety of colors and types. | 4 servings per day | 4 to 5 servings per day | 1 medium fruit
¼ cup dried fruit
½ cup fresh, frozen, or canned fruit
½ cup fruit juice
FIBER-RICH WHOLE GRAINS
Choose whole grains for at least half your servings. | 6 servings per day | 6 to 8 servings per day | 1 slice bread
1 oz dry cereal (check nutrition label for cup measurements)
½ cup cooked rice, pasta, or cereal
FAT-FREE, 1% FAT, AND LOW-FAT DAIRY PRODUCTS
Choose fat-free when possible and compare sodium levels to choose the lowest. | 2 to 3 servings per day | 2 to 3 servings per day | 1 cup fat-free or low-fat milk
1 cup fat-free or low-fat yogurt
1½ oz fat-free or low-fat cheese
FISH*
Choose varieties rich in omega-3 fatty acids. | 6 oz (cooked) per week | 6 oz (cooked) per week | 3 oz cooked fish, such as salmon and trout
SKINLESS POULTRY AND LEAN MEATS
Choose lean and extra-lean. | 3 to 6 oz (cooked) per day | Less than 6 oz (cooked) per day | 3 oz cooked poultry or meat
LEGUMES, NUTS, AND SEEDS
Choose unsalted products. | 3 to 4 servings per week | 4 to 5 servings per week | ½ cup dried beans or peas
⅓ cup or 1½ oz nuts
2 tbsp peanut butter
2 tbsp or ½ oz seeds
FATS AND OILS
Use liquid vegetable oils (such as olive, canola, or corn) and cooking sprays or light tub margarines most often. Choose products with the lowest amount of sodium. | 2 servings per day | 2 to 3 servings per day | 1 tsp light tub margarine
1 tbsp light mayonnaise
1 tsp vegetable oil
1 tbsp regular or 2 tbsp low-fat salad dressing (fat-free dressing does not count as a serving but does contain calories)
SWEETS AND ADDED SUGARS | 0 servings per week | 5 or fewer servings per week | 1 tbsp sugar
1 tbsp jelly or jam
½ cup sorbet
1 cup lemonade
*If you are concerned about the mercury in fish and shellfish, remember that the health risks from mercury exposure depend on the amount of seafood eaten and the level of mercury in the individual fish. In most cases, the benefits of fish outweigh the risks. For more details, visit www.heart.org or www.fda.gov.
# about the recipes
EACH RECIPE in the book includes a nutritional analysis so you can decide how that dish fits with your dietary needs. These guidelines will give you some details on how the analyses were calculated.
• Each analysis is for a single serving; garnishes or optional ingredients are not included unless noted.
• Because of the many variables involved, the nutrient values provided should be considered approximate. When figuring portions, remember that the serving sizes are approximate also.
• When ingredient options are listed, the first one is analyzed. When a range of amount is given, the average is analyzed.
• Values other than fats are rounded to the nearest whole number. Fat values are rounded to the nearest half gram. Because of the rounding, values for saturated, trans, monounsaturated, and polyunsaturated fats may not add up to the amount shown for total fat value.
• All the recipes are analyzed using unsalted or low-sodium ingredients whenever possible. In some cases, we call for unprocessed foods or no-salt-added and low-sodium products, then add table salt sparingly for flavor.
• We specify canola, corn, and olive oils in these recipes, but you can also use other heart-healthy unsaturated oils, such as safflower, soybean, and sunflower.
• Meats are analyzed as lean, with all visible fat discarded. Values for ground beef are based on lean meat that is 95 percent fat free.
• When meat, poultry, or seafood is marinated and the marinade is discarded, the analysis includes all of the sodium from the marinade but none of the other nutrients from it.
• If alcohol is used in a cooked dish, we estimate that most of the alcohol calories evaporate as the food cooks.
• Because product labeling in the marketplace can vary and change quickly, we use the generic terms "fat-free" and "low-fat" throughout to avoid confusion.
• We use the abbreviations g for gram and mg for milligram.
# index
Bold references indicate recipe has a photo in color insert.
# A
apples
Butternut Squash and Apple Soup
Stuffed "Baked" Apples
Sweet-and-Sour Red Cabbage
Warm Cinnamon-Raisin Apples, 5.1
artichokes
Chicken with Artichokes and Tomatoes
Mediterranean Chicken with Mushrooms and Artichokes
Spinach and Artichoke Dip
Tilapia Packets with Artichokes
Asparagus with Dijon Vinaigrette
# B
baking, about
Banana and Peanut Butter "Ice Cream,"
basil
Basil Chicken
Basil Pork Tenderloin with Black Bean Salsa
Creamy Tomato-Basil Soup
Lemon-Basil Halibut with Linguine
Pesto
beans
Basil Pork Tenderloin with Black Bean Salsa
Black Bean Chili
Chickpeas with Zucchini, Peppers, and Onion
Corn and Black Bean Salad
Creamy Tomato-Basil Soup
Edamame Dip
Egyptian Ful
Green Beans in Spicy Sauce
Hummus and Veggie Lasagna Roll-Ups
Italian Vegetable Soup with Farro
Lemony Green Beans with Almonds
Meatless Cassoulet
Peruvian Quinoa Salad
Porotos Granados
Portobello Pizzas
Quick and Easy Chili
Quinoa with Kale, Chickpeas, and Feta
Risotto with Edamame
White Bean and Roasted Red Bell Pepper Hummus
_see also_ lentils
beef
Beef Burgundy
Beer-Braised Beef with Molasses
Flank Steak with Chimichurri Sauce
Japanese Stir-Fry
Lettuce-Wrap Sliders
Madeira Flank Steak
Meatball Soup with Spinach and Parmesan
Mini Meat Loaves
Moroccan Beef Stew with Fragrant Couscous, 7.1
New Mexican Meat Loaf
Quick and Easy Chili
Rosemary Steak Smothered in Onions
Sauerbraten
Savory Beef Tenderloin
Shredded Beef with Bok Choy and Carrots
Sirloin Steak with Creamy Horseradish Sauce
Speedy Stuffed Spuds
Steakhouse Stew
Beet and Farro Salad with Goat Cheese
Beets with Orange Gremolata
blenders, working with
blueberries
Almond, Kale, and Blueberry Smoothies
Buttermilk-Oat Pancakes with Warm Blueberry Topping
Very-Berry Yogurt Parfaits
bok choy
Browned Tofu with Bok Choy
Shredded Beef with Bok Choy and Carrots
braising, about
broccoli
Broccoli with Jalapeño and Garlic
Lemon-Basil Halibut with Linguine
Summertime Stir-Fry
Walnut-Orange Broccoli
broiling, about
Brussels Sprouts, Honey-Balsamic, with Goat Cheese
# C
cabbage
Chicken with Napa Cabbage and Rice Noodles
Japanese Stir-Fry
Stuffed Napa Cabbage Rolls with Orange-Ginger Sauce
Sweet-and-Sour Red Cabbage
_see also_ bok choy
cardamom, cook's tip on
Carrots and Bok Choy, Shredded Beef with
cauliflower
Mixed Vegetables with Ginger
Toasted Cauliflower and Garlic
Cheddar Cheese Pub Bread
cheese
Cheddar Cheese Pub Bread
Cheesy Open-Face Egg Sandwiches
Cotija, cook's tip on
Manicotti-Style Chicken Roll-Ups
Parmesan, cook's tip on
Portobello Pizzas
Portobello-Tuna Melts
Smoky Chicken and Vegetable Lasagna
Spinach Lasagna
Swiss Chard and Swiss Cheese Frittata
Three-Cheese Quiches
Cherry-Berry Slush
chicken
Basil Chicken
Beer-Scented Chicken with Veggies
breasts, cook's tips on, 4.1, 12.1
Chicken and Bulgur Salad with Feta
Chicken and Green Onion Kebabs
Chicken and Vegetables with Thyme-Scented Broth
Chicken Cacciatore with Pasta
Chicken in Tomato-Wine Sauce
Chicken Korma
Chicken Parmesan Soup
Chicken with Artichokes and Tomatoes
Chicken with Citrus-Dijon Sauce
Chicken with Creamy Arugula Pesto
Chicken with Dried Plums and Sage
Chicken with 40 Cloves of Garlic
Chicken with Napa Cabbage and Rice Noodles
Chicken with Red Raspberry Glaze
Chilean Chicken and Vegetable Stew
Chinese Chicken Salad, 5.1
Curried Chicken Thighs
Herb-Roasted Chicken
Layered Mexican Casserole
Lemon Chicken with Dill Sauce
Manicotti-Style Chicken Roll-Ups
Mediterranean Chicken with Mushrooms and Artichokes
Smoky Chicken and Vegetable Lasagna
Stuffed Napa Cabbage Rolls with Orange-Ginger Sauce
Summertime Stir-Fry
Sweet and Spicy Drumsticks
Teriyaki Chicken and Vegetable Kebabs
Tex-Mex Chicken
Thai-Style Chicken Potstickers
Tomatillo-Chicken Stew
chiffonades, cook's tip on
chili
Black Bean Chili
Quick and Easy Chili
cook's tips
Arborio rice
blanching vegetables
blending hot liquids
cardamom
chicken breasts, 4.1, 12.1
chiffonades
cleaning a microwave oven
corn
Cotija cheese
Creole or Cajun seasoning blend
crushing spices
cutting matchstick-size strips
daikon radish
dry-roasting nuts, 3.1, 8.1
egg whites
frozen spinach
garam masala
grapefruit
handling hot chiles
jícama
kebabs
leeks
lemongrass
ovenproofing a skillet
quinoa
removing poultry skin
rice stick noodles
roasting poblano peppers
rosemary
saffron
shaping meatballs
shaved Parmesan
soy sauce
strawberries
testing doneness of meat
tomatillos
corn
cook's tip on
Corn and Black Bean Salad
Peruvian Quinoa Salad
Porotos Granados
Creole or Cajun seasoning blend, cook's tip on
# D
dips
Edamame Dip
Spinach and Artichoke Dip
White Bean and Roasted Red Bell Pepper Hummus
drinks
Almond, Kale, and Blueberry Smoothies
Cherry-Berry Slush
Orange-Apricot Smoothies
# E
eggplant
Creole Eggplant
Garden-Fresh Ratatouille
Moroccan-Spiced Lentils and Vegetables
Seitan Stacks
eggs
Cheesy Open-Face Egg Sandwiches
Eggs with Smoked Sausage, Spinach, and Tomatoes, 6.1
egg whites, cook's tip on
Swiss Chard and Swiss Cheese Frittata
equipment and tools
# F
farro
Beet and Farro Salad with Goat Cheese
Italian Vegetable Soup with Farro
Fennel, Tomatoes, and Orange, Cod with
fish
Baja Fish Tacos
Bayou Gumbo
Brazilian Halibut
Caribbean Snapper with Peach Salsa
Citrus-Cilantro Salmon
Citrus Tea Tilapia
Cod in Green Curry Broth
Cod with Fennel, Tomatoes, and Orange
Green Tea Halibut with Baby Spinach
Grouper and Sausage Stew
Honeyed Salmon with Spiced Honeydew Salsa
Island Halibut with Papaya and Strawberry Salsa
Lemon-Basil Halibut with Linguine
Mediterranean Fish Stew
Mediterranean Tuna Kebabs, 4.1
Oven-Fried Catfish over Seared Spinach
Pineapple and Ginger Mahi Mahi
Portobello-Tuna Melts
Salmon in Green Tea
Salmon with Creamy Chipotle-Orange Sauce
Salmon with Honey-Balsamic Glaze
Salmon with Lemon-Watercress Sauce
Spicy Catfish with Potatoes and Tomatoes
Sunny Seafood Mélange
Tilapia Packets with Artichokes
Tilapia with Pumpkin Seed Crust and Pineapple-Avocado Salsa
Trout with Grape Tomato Relish
Tuna with Tomato-Tarragon Sauce
food groups and serving recommendations
food safety basics
Frittata, Swiss Chard and Swiss Cheese
fruit
Orange-Kissed Summer Fruits
_see also specific fruits_
# G
garam masala, cook's tip on
garlic
Chicken with 40 Cloves of Garlic
Flank Steak with Chimichurri Sauce
Roasted Bell Pepper and Garlic Sauce
Toasted Cauliflower and Garlic
ginger
Grapefruit with Crunchy Ginger
Mixed Vegetables with Ginger
grains
Beet and Farro Salad with Goat Cheese
Buttermilk-Oat Pancakes with Warm Blueberry Topping
Chicken and Bulgur Salad with Feta
Italian Vegetable Soup with Farro
Savory Lentil Stew with Polenta
Shrimp and Grits with Greens
_see also_ quinoa; rice
Granita, Strawberry
grapefruit
cook's tip on
Grapefruit with Crunchy Ginger
greens
Chicken with Creamy Arugula Pesto
Curried Chicken Thighs
Korean-Style Tofu with Mustard Greens
Lettuce-Wrap Sliders
Shrimp and Grits with Greens
Swiss Chard and Swiss Cheese Frittata
Warm Caesar Salad with Tofu "Croutons,"
_see also_ kale; spinach
grilling, about
Grits and Shrimp with Greens
# H
healthy lifestyle
heart-healthy pantry staples
hot liquids, cook's tip on
# J
jícama, cook's tip on
# K
kale
Almond, Kale, and Blueberry Smoothies
Cheesy Kale Chips
Lentils with Mushrooms, Tomatoes, and Kale
Quinoa with Kale, Chickpeas, and Feta
kebabs, cook's tip on
# L
leeks, cook's tip on
Lemon Chicken with Dill Sauce
Lemon-Garlic Turkey Tenderloin
lemongrass, cook's tip on
Lemony Green Beans with Almonds
lentils
Lentils with Mushrooms, Tomatoes, and Kale
Moroccan-Spiced Lentils and Vegetables
Savory Lentil Stew with Polenta
# M
mango
Pork Medallions with Mango Mojo
Thai Sweet Rice with Mango
meat
testing doneness, cook's tip on
_see also_ beef; pork
meatballs
cook's tip on
Meatball Soup with Spinach and Parmesan
Porcupine Meatballs
meat loaf
15-Minute Turkey Meat Loaf
Mini Meat Loaves
New Mexican Meat Loaf
melon
Honeyed Salmon with Spiced Honeydew Salsa
Roasted Melon Soup and Balsamic Drizzle
Shrimp and Watermelon Salad with Cucumber-Lime Vinaigrette
microwave ovens
cleaning, cook's tip on
cooking with
mushrooms
Lentils with Mushrooms, Tomatoes, and Kale
Mediterranean Chicken with Mushrooms and Artichokes
Mediterranean Mushrooms and Bell Peppers
Mushroom-Zucchini Nachos with Smoky Crema
Portobello Pizzas
Portobello-Tuna Melts
# N
Nachos, Mushroom-Zucchini, with Smoky Crema
noodles
Chicken with Napa Cabbage and Rice Noodles
Japanese Stir-Fry
Plum-Sauced Pork with Asian Vegetables
rice stick noodles, cook's tip on
nutritional analyses
nuts
Almond, Kale, and Blueberry Smoothies
dry-roasting, cook's tips on, 3.1, 8.1
Walnut-Orange Broccoli
# O
Oat-Buttermilk Pancakes with Warm Blueberry Topping
oranges
Beets with Orange Gremolata
Cardamom-Orange Plums
Citrus-Cilantro Salmon
Cod with Fennel, Tomatoes, and Orange
Orange-Apricot Smoothies
Orange-Kissed Summer Fruits
Salmon with Creamy Chipotle-Orange Sauce
Stuffed Napa Cabbage Rolls with Orange-Ginger Sauce
Tofu with Orange and Rosemary Glaze
Walnut-Orange Broccoli
# P
Pancakes, Buttermilk-Oat, with Warm Blueberry Topping
Papaya and Strawberry Salsa, Island Halibut with
Parfaits, Very Berry Yogurt
pasta
Chicken Cacciatore with Pasta
Hummus and Veggie Lasagna Roll-Ups
Lemon-Basil Halibut with Linguine
Smoky Chicken and Vegetable Lasagna
Spinach Lasagna
_see also_ noodles
peaches
Caribbean Snapper with Peach Salsa
Easy Peach Crips
Peanut Butter and Banana "Ice Cream,"
pears
Pomegranate Pears
Vanilla-Infused Pears
peas
Chicken Korma
Minted Pea Soup with Yogurt Swirl, 3.1
Sugar Snap Peas with Sweet-and-Sour Sauce
peppers
Broccoli with Jalapeño and Garlic
Chayote Squash and Pepper Casserole
Chickpeas with Zucchini, Peppers, and Onion
Green Beans in Spicy Sauce
hot, cook's tip on
Mediterranean Mushrooms and Bell Peppers
New Mexican Meat Loaf
poblano, cook's tip on
Roasted Bell Pepper and Garlic Sauce
Salmon with Creamy Chipotle-Orange Sauce
Taco Time Pork
Tex-Mex Chicken
White Bean and Roasted Red Bell Pepper Hummus
Pesto
pineapple
Chai-Spiced Pineapple Spears
Pineapple and Ginger Mahi Mahi
Tilapia with Pumpkin Seed Crust and Pineapple-Avocado Salsa
plums
Cardamom-Orange Plums
Chicken with Dried Plums and Sage
poaching, about
Polenta, Savory Lentil Stew with
Pomegranate Pears
pork
Anise-Rubbed Pork Roast
Basil Pork Tenderloin with Black Bean Salsa
Plum-Sauced Pork with Asian Vegetables
Pork Medallions with Mango Mojo
Pork Roast with Vegetables
Pork Tenderloin Stuffed with Spinach, Pine Nuts, and Sun-Dried Tomatoes, 12.1
Taco Time Pork
potatoes
Lemony Herbed Potatoes
Speedy Stuffed Spuds
Spicy Catfish with Potatoes and Tomatoes
_see also_ sweet potatoes
Potstickers, Thai-Style Chicken
poultry
skin, removing, cook's tip on
_see also_ chicken; turkey
# Q
Quiches, Three-Cheese
quinoa
Acorn Squash Stuffed with Cranberry-Studded Quinoa, 12.1
cook's tip on
Peruvian Quinoa Salad
Quinoa with Kale, Chickpeas, and Feta
# R
radishes
daikon, cook's tip on
Korean-Style Tofu with Mustard Greens
Root Vegetable Medley
Tender Radishes with Lemon and Mint
raspberries
Cherry-Berry Slush
Chicken with Red Raspberry Glaze
Very Berry Yogurt Parfaits
rice
Arborio, cook's tip on
Layered Mexican Casserole
Porcupine Meatballs
Risotto with Edamame
Summertime Stir-Fry
Thai Sweet Rice with Mango
Vegetarian Fried Rice
roasting, about
rosemary, cook's tip on
# S
saffron, cook's tip on
Salad Dressing, Greek Goddess
salads
Beet and Farro Salad with Goat Cheese
Chicken and Bulgur Salad with Feta
Chinese Chicken Salad, 5.1
Corn and Black Bean Salad
Peruvian Quinoa Salad
Shrimp and Watermelon Salad with Cucumber-Lime Vinaigrette
Warm Caesar Salad with Tofu "Croutons,"
Sandwiches, Cheesy Open-Face Egg
Sauce, Roasted Bell Pepper and Garlic
sausages
Eggs with Smoked Sausage, Spinach, and Tomatoes, 6.1
Grouper and Sausage Stew
seeds, dry-roasting, cook's tip on
Seitan Stacks
shellfish
Bayou Gumbo
Mussels Cooked in Wine
Shrimp and Grits with Greens
Shrimp and Watermelon Salad with Cucumber-Lime Vinaigrette
Sunny Seafood Mélange
Sweet and Tangy Scallops
skillets, ovenproofing, cook's tip on
Sliders, Lettuce-Wrap
slow cookers, cooking with
smoothies
Almond, Kale, and Blueberry Smoothies
Orange-Apricot Smoothies
soups
Butternut Squash and Apple Soup
Chicken Parmesan Soup
Creamy Tomato-Basil Soup
Italian Vegetable Soup with Farro
Meatball Soup with Spinach and Parmesan
Minted Pea Soup with Yogurt Swirl, 3.1
Roasted Melon Soup and Balsamic Drizzle
Yogurt Gazpacho
soy sauce, cook's tip on
spices, crushing, cook's tip on
spinach
Eggs with Smoked Sausage, Spinach, and Tomatoes, 6.1
frozen, cook's tip on
Green Tea Halibut with Baby Spinach
Meatball Soup with Spinach and Parmesan
Oven-Fried Catfish over Seared Spinach
Pork Tenderloin Stuffed with Spinach, Pine Nuts, and Sun-Dried Tomatoes, 12.1
Risotto with Edamame
Spinach and Artichoke Dip
Spinach Lasagna
squash
Acorn Squash Stuffed with Cranberry-Studded Quinoa, 12.1
Butternut Squash and Apple Soup
Chayote Squash and Pepper Casserole
Porotos Granados
Risotto with Edamame
Seitan Stacks
Stuffed Chayote Squash
_see also_ zucchini
steaming, about
stewing, about
stews
Bayou Gumbo
Beef Burgundy
Chilean Chicken and Vegetable Stew
Egyptian Ful
Grouper and Sausage Stew
Meatless Cassoulet
Mediterranean Fish Stew
Moroccan Beef Stew with Fragrant Couscous, 7.1
Porotos Granados
Savory Lentil Stew with Polenta
Steakhouse Stew
Tomatillo-Chicken Stew
stir-frying, about
strawberries
cook's tip on
Honeyed Strawberries with Almonds
Island Halibut with Papaya and Strawberry Salsa
Strawberry Granita
Sugar Snap Peas with Sweet-and-Sour Sauce
sweet potatoes
Curried Chicken Thighs
Southwestern Sweet Potatoes
Sweet Potato Fries with Curry Dipping Sauce
Swiss Chard and Swiss Cheese Frittata
# T
tacos
Baja Fish Tacos
Taco Time Pork
tofu
Browned Tofu with Bok Choy
Creamy Tomato-Basil Soup
Korean-Style Tofu with Mustard Greens
Mushroom-Zucchini Nachos with Smoky Crema
Tofu in Green Onion Broth
Tofu with Orange and Rosemary Glaze
Vegetarian Fried Rice
Very Berry Yogurt Parfaits
Warm Caesar Salad with Tofu "Croutons,"
tomatillos
cook's tip on
Tomatillo-Chicken Stew
tomatoes
Broiled Foiled Tomatoes
Chicken in Tomato-Wine Sauce
Chicken with Artichokes and Tomatoes
Cod with Fennel, Tomatoes, and Orange
Creamy Tomato-Basil Soup
Creole Eggplant
Eggs with Smoked Sausage, Spinach, and Tomatoes, 6.1
Lentils with Mushrooms, Tomatoes, and Kale
Spicy Catfish with Potatoes and Tomatoes
Tex-Mex Chicken
Trout with Grape Tomato Relish
Tuna with Tomato-Tarragon Sauce
Yogurt Gazpacho
tortillas
Baja Fish Tacos
Mushroom-Zucchini Nachos with Smoky Crema
Taco Time Pork
turkey
15-Minute Turkey Meat Loaf
Lemon-Garlic Turkey Tenderloin
Porcupine Meatballs
_see also_ sausages
# V
vegetables
Beer-Scented Chicken with Veggies
Chicken and Vegetables with Thyme-Scented Broth
Chilean Chicken and Vegetable Stew
cutting matchstick-size strips, cook's tip on
Hummus and Veggie Lasagna Roll-Ups
Italian Vegetable Soup with Farro
Mixed Vegetables with Ginger
Plum-Sauced Pork with Asian Vegetables
Pork Roast with Vegetables
Root Vegetable Medley
Smoky Chicken and Vegetable Lasagna
Teriyaki Chicken and Vegetable Kebabs
Vegetarian Fried Rice
_see also specific vegetables_
vegetarian entrées
Black Bean Chili
Browned Tofu with Bok Choy
Chickpeas with Zucchini, Peppers, and Onion
Egyptian Ful
Hummus and Veggie Lasagna Roll-Ups
Korean-Style Tofu with Mustard Greens
Lentils with Mushrooms, Tomatoes, and Kale
Meatless Cassoulet
Moroccan-Spiced Lentils and Vegetables
Mushroom-Zucchini Nachos with Smoky Crema
Porotos Granados
Portobello Pizzas
Quinoa with Kale, Chickpeas, and Feta
Risotto with Edamame
Savory Lentil Stew
Seitan Stacks
Spinach Lasagna
Stuffed Chayote Squash
Tofu in Green Onion Broth
Tofu with Orange and Rosemary Glaze
Vegetarian Fried Rice
# Y
yogurt
Greek Goddess Salad Dressing
Very Berry Yogurt Parfaits
Yogurt Gazpacho
# Z
zucchini
Chickpeas with Zucchini, Peppers, and Onion
Garden-Fresh Ratatouille
Mushroom-Zucchini Nachos with Smoky Crema
| [
1,
259,
13,
1964,
6156,
6770,
6093,
13862,
1001,
2965,
2190,
17714,
8322,
319,
1799,
29949,
8426,
8098,
13,
13,
14689,
17778,
7993,
2921,
383,
3781,
13,
13,
14689,
17778,
7993,
450,
2921,
4367,
1152,
10152,
17278,
2909,
13,
13,
14689,
17778,
7993,
382,
271,
27898,
27903,
13,
13,
14689,
17778,
7993,
15202,
29891,
317,
677,
17278,
261,
17278,
2909,
13,
13,
14689,
17778,
7993,
26141,
669,
382,
8995,
17278,
2909,
29892,
29871,
29906,
299,
17138,
13,
13,
14689,
17778,
7993,
17511,
29899,
29903,
1997,
17278,
2909,
29892,
29871,
29946,
386,
17138,
13,
13,
14689,
17778,
7993,
1939,
29899,
29943,
328,
24315,
29892,
29871,
29906,
299,
17138,
13,
13,
1576,
1570,
3082,
17778,
7993,
17278,
2909,
29892,
29871,
29947,
386,
17138,
13,
13,
14689,
17778,
7993,
26141,
669,
382,
8995,
2191,
1338,
13,
13,
14689,
17778,
7993,
25034,
16886,
304,
10152,
29915,
29879,
17778,
15202,
13,
13,
14689,
17778,
7993,
15202,
29891,
14662,
2191,
1338,
13,
13,
14689,
17778,
7993,
17511,
29899,
29943,
271,
29892,
17511,
29899,
1451,
324,
4156,
324,
17278,
2909,
29892,
29871,
29946,
386,
17138,
13,
13,
14689,
17778,
7993,
17511,
29899,
7856,
7661,
17278,
2909,
13,
13,
14689,
17778,
7993,
3118,
29899,
29928,
728,
2191,
1338,
13,
13,
29937,
319,
7077,
6632,
29956,
20566,
29954,
13780,
29903,
13,
13,
5194,
1001,
2965,
2190,
17714,
8322,
319,
1799,
29949,
8426,
8098,
8707,
25021,
1001,
349,
7466,
27888,
8098,
29903,
13,
13,
17392,
272,
29901,
365,
11054,
317,
29889,
13402,
13,
13,
2517,
6751,
14059,
29901,
7089,
272,
801,
319,
29889,
390,
5723,
13,
13,
29903,
264,
1611,
14059,
29901,
13104,
349,
29889,
23974,
11422,
13,
13,
7900,
22137,
2315,
6751,
14059,
29901,
1528,
19954,
399,
29889,
317,
913,
20595,
13,
13,
1525,
8426,
4162,
5012,
12064,
3927,
13171,
29903,
13,
13,
26626,
625,
16816,
13,
13,
29940,
6906,
317,
29889,
15888,
267,
13,
13,
8179,
324,
390,
2335,
347,
13,
13,
7675,
29883,
457,
11902,
1725,
9234,
442,
29920,
13,
13,
29940,
2692,
29934,
22122,
13764,
1964,
29979,
1254,
13,
13,
29911,
314,
2460,
7169,
24956,
29892,
390,
29889,
29928,
29889,
13,
11882,
1266,
29871,
30211,
29871,
29906,
29900,
29896,
29945,
491,
3082,
17778,
7993,
259,
13,
4819,
327,
1946,
29879,
29871,
30211,
29871,
29906,
29900,
29896,
29945,
491,
28846,
1102,
29874,
1389,
571,
13,
13,
3596,
10462,
21676,
29889,
13,
13,
21076,
3726,
297,
278,
3303,
3900,
491,
17129,
1100,
10173,
357,
29914,
21076,
1674,
414,
29892,
385,
527,
2158,
310,
278,
25306,
19088,
6431,
29892,
263,
8542,
310,
349,
19636,
262,
16968,
5619,
365,
12182,
29892,
1570,
3088,
29889,
259,
13,
1636,
29889,
29883,
4708,
23679,
292,
29889,
510,
259,
13,
1636,
29889,
695,
935,
1100,
17765,
357,
29889,
510,
13,
13,
6154,
1718,
29968,
3094,
349,
2891,
4945,
338,
263,
1020,
2310,
935,
322,
349,
2891,
4945,
411,
784,
3021,
265,
338,
263,
15443,
1020,
2310,
935,
310,
349,
19636,
262,
16968,
5619,
365,
12182,
29889,
13,
13,
10858,
20706,
304,
278,
3082,
17778,
7993,
2304,
5925,
393,
6911,
1207,
25964,
763,
445,
1950,
29889,
1152,
901,
2472,
29892,
1246,
29871,
29896,
29899,
29947,
29900,
29900,
29899,
29909,
15715,
29899,
27019,
29896,
313,
29896,
29899,
29947,
29900,
29900,
29899,
29906,
29946,
29906,
29899,
29947,
29955,
29906,
29896,
29897,
470,
6958,
502,
7395,
472,
7821,
29889,
23057,
29889,
990,
29889,
13,
13,
12284,
310,
11559,
5725,
292,
29899,
262,
29899,
19858,
362,
3630,
259,
13,
14689,
17778,
7993,
867,
453,
372,
29892,
4105,
895,
372,
29892,
2545,
309,
372,
29892,
322,
916,
4780,
13698,
322,
4996,
9522,
5547,
363,
9045,
29891,
592,
1338,
847,
3082,
17778,
7993,
29889,
259,
13,
12292,
7477,
259,
13,
26289,
29901,
376,
29968,
3707,
292,
920,
304,
7984,
9045,
3730,
30003,
14037,
26285,
292,
21054,
272,
30003,
275,
385,
4100,
4331,
7113,
4857,
1747,
5192,
9045,
29892,
7688,
29892,
322,
12463,
1532,
29899,
915,
292,
29889,
1152,
278,
937,
931,
29892,
3082,
17778,
7993,
16688,
263,
7130,
373,
29871,
29896,
29906,
4780,
29899,
517,
29899,
6207,
5192,
29899,
354,
4298,
29891,
7984,
292,
13698,
313,
29890,
5086,
29892,
2545,
6504,
29892,
4105,
5921,
29892,
772,
9733,
29892,
867,
8873,
29892,
696,
579,
292,
29892,
20710,
798,
5555,
29892,
1999,
2548,
29892,
5232,
7984,
292,
29892,
322,
1886,
16958,
29892,
304,
1024,
263,
2846,
467,
9038,
366,
1073,
1438,
13698,
29892,
366,
29915,
645,
367,
2221,
304,
2888,
675,
278,
29871,
29896,
29955,
29945,
9522,
5547,
297,
445,
3143,
363,
385,
1095,
2222,
11421,
310,
628,
14803,
592,
1338,
29889,
19530,
29876,
278,
2362,
1199,
322,
769,
1369,
7639,
292,
3850,
30003,
1184,
29894,
2618,
491,
9805,
261,
29889,
259,
13,
29896,
29889,
17511,
29899,
29888,
271,
652,
300,
30003,
1123,
455,
5547,
29889,
29871,
29906,
29889,
17778,
30003,
29928,
895,
2129,
30003,
29928,
2035,
29220,
27580,
30003,
1123,
455,
5547,
29889,
29871,
29941,
29889,
17278,
292,
29889,
29871,
29946,
29889,
4358,
6504,
29889,
306,
29889,
3082,
17778,
7993,
29889,
1944,
29889,
18527,
29901,
1632,
453,
372,
29892,
4105,
895,
372,
29892,
2545,
309,
372,
29892,
322,
916,
4780,
13698,
322,
4996,
9522,
5547,
363,
9045,
29891,
592,
1338,
29889,
259,
13,
29934,
29924,
29906,
29941,
29955,
29889,
29955,
29889,
29909,
29941,
29955,
29946,
29871,
29906,
29900,
29896,
29945,
259,
13,
29953,
29946,
29896,
29889,
29945,
29953,
29941,
29896,
29896,
30003,
13891,
29906,
29941,
13,
13,
29872,
10967,
2210,
29901,
29871,
29929,
29955,
29947,
29899,
29900,
29899,
29941,
29900,
29955,
29899,
29947,
29947,
29947,
29896,
29896,
29899,
29906,
259,
13,
5323,
311,
349,
7202,
1627,
2210,
29901,
29871,
29929,
29955,
29947,
29899,
29900,
29899,
29941,
29900,
29955,
29899,
29947,
29947,
29947,
29900,
29929,
29899,
29929,
13,
13,
29907,
957,
2874,
491,
18672,
20708,
457,
259,
13,
4819,
327,
5275,
491,
28846,
1102,
29874,
1389,
571,
13,
13,
29894,
29941,
29889,
29896,
13,
13,
29937,
8118,
13,
13,
29886,
999,
815,
13,
13,
15108,
292,
411,
4780,
13698,
363,
263,
9045,
29891,
5192,
13,
13,
845,
29877,
3262,
15040,
322,
321,
1218,
1532,
13,
13,
29880,
4357,
263,
9045,
29891,
301,
7004,
1508,
13,
13,
4361,
5547,
13,
13,
28544,
7984,
292,
13,
13,
13076,
798,
5555,
13,
13,
2204,
2548,
13,
13,
629,
8873,
13,
13,
303,
381,
29899,
29888,
719,
292,
13,
13,
2634,
5921,
13,
13,
303,
809,
292,
13,
13,
1655,
11500,
13,
13,
1129,
9733,
13,
13,
6729,
6504,
13,
13,
307,
579,
292,
13,
13,
29890,
5086,
13,
13,
13237,
13,
13,
29874,
5192,
29899,
354,
4298,
29891,
282,
15328,
13,
13,
15108,
292,
21083,
322,
8492,
2362,
1199,
13,
13,
29895,
23213,
322,
9687,
15332,
2362,
1199,
13,
13,
1181,
397,
6471,
322,
7829,
3348,
886,
13,
13,
12717,
278,
9522,
5547,
13,
13,
2248,
13,
13,
29937,
758,
2161,
13,
13,
4178,
278,
3082,
17778,
7993,
322,
3082,
624,
10946,
7993,
29892,
591,
1073,
393,
363,
366,
322,
596,
3942,
29892,
321,
1218,
18254,
768,
17365,
338,
263,
4802,
760,
310,
8471,
263,
9045,
631,
301,
7004,
1508,
29892,
322,
393,
7984,
292,
901,
472,
3271,
338,
385,
4780,
982,
304,
6176,
445,
29889,
512,
445,
7984,
2909,
29892,
591,
6232,
2472,
1048,
9045,
29891,
7984,
292,
13698,
322,
2367,
366,
9522,
5547,
304,
1925,
1438,
13698,
964,
3158,
29889,
887,
508,
9311,
393,
1269,
310,
278,
9522,
5547,
451,
871,
260,
579,
267,
628,
14803,
541,
884,
4477,
278,
652,
300,
653,
6907,
800,
310,
278,
3082,
17778,
7993,
29889,
13,
13,
29911,
2859,
310,
278,
1021,
1898,
29899,
392,
29899,
3009,
289,
12535,
521,
21475,
29973,
5032,
895,
372,
322,
13389,
10837,
1255,
678,
21475,
498,
1141,
29879,
29892,
470,
21837,
372,
322,
9080,
624,
3096,
287,
8344,
29874,
315,
8846,
482,
21809,
29879,
411,
26048,
29899,
29954,
5621,
23863,
346,
29889,
2216,
1854,
920,
304,
7984,
9427,
29973,
3617,
297,
596,
4723,
368,
2703,
2442,
29899,
29941,
29879,
1549,
379,
4992,
287,
3956,
3712,
411,
1706,
7612,
379,
4992,
311,
29893,
317,
1338,
29874,
322,
323,
4347,
411,
4335,
1219,
29899,
29911,
279,
1431,
265,
23863,
346,
515,
278,
20710,
798,
1351,
29889,
3967,
278,
15668,
29892,
763,
2545,
2356,
399,
2817,
9243,
26892,
3956,
328,
411,
323,
974,
29884,
376,
29907,
14608,
787,
29908,
470,
4116,
554,
29891,
678,
21475,
322,
17236,
300,
519,
7413,
15713,
7984,
287,
373,
278,
867,
453,
29889,
1126,
29892,
25531,
738,
310,
1749,
916,
3082,
17778,
7993,
7984,
12733,
29892,
599,
278,
9522,
5547,
526,
19098,
491,
7984,
292,
1158,
29889,
13,
13,
10401,
366,
7984,
472,
3271,
29892,
366,
508,
2761,
278,
26999,
310,
269,
1337,
630,
322,
1301,
285,
1446,
29892,
20892,
1974,
29892,
322,
2715,
26438,
366,
29151,
304,
1371,
5224,
521,
324,
4156,
324,
322,
10416,
12959,
11174,
393,
7910,
596,
12045,
363,
5192,
17135,
322,
19782,
29889,
2973,
1632,
453,
739,
29892,
5032,
895,
739,
29892,
4358,
309,
739,
29892,
366,
29915,
645,
505,
263,
23279,
6503,
304,
1371,
366,
1207,
18254,
768,
2738,
29892,
2560,
29892,
322,
907,
1230,
592,
1338,
472,
3271,
1269,
322,
1432,
2462,
29889,
13,
13,
1672,
1660,
23851,
8673,
16641,
13635,
29911,
3094,
29892,
341,
29889,
29928,
1696,
13515,
15715,
29892,
383,
2477,
29907,
13,
13,
1451,
2575,
9327,
322,
20795,
28288,
13,
13,
14689,
17778,
7993,
29914,
14689,
624,
10946,
7993,
13,
13,
29937,
7984,
292,
411,
4780,
13698,
363,
263,
9045,
29891,
5192,
13,
13,
27356,
1891,
491,
11043,
29892,
1632,
453,
739,
29892,
5032,
895,
739,
29892,
4358,
309,
739,
3697,
366,
920,
304,
7984,
773,
29871,
29896,
29906,
1422,
9045,
29891,
7984,
292,
3519,
29889,
2178,
310,
963,
674,
1371,
366,
7985,
596,
9522,
412,
337,
546,
18734,
29889,
3834,
11949,
29892,
1316,
408,
23546,
29899,
29888,
719,
292,
29892,
1886,
11500,
29892,
322,
772,
9733,
29892,
526,
4996,
29889,
1920,
6387,
1912,
1316,
408,
696,
579,
292,
322,
2545,
6504,
5957,
8359,
21054,
943,
322,
8031,
1426,
1973,
29936,
4045,
29892,
763,
4105,
5921,
322,
1886,
16958,
29892,
7709,
286,
2152,
29899,
262,
29899,
8066,
13394,
270,
17006,
393,
7984,
4482,
322,
5232,
411,
2217,
8570,
4312,
29889,
317,
677,
7984,
292,
29892,
20710,
798,
5555,
29892,
1999,
2548,
29892,
322,
867,
8873,
1235,
366,
3667,
675,
777,
310,
596,
25448,
7984,
292,
623,
492,
2925,
322,
1016,
29915,
29873,
12871,
701,
596,
29181,
29936,
777,
3519,
29892,
763,
289,
5086,
29892,
1996,
694,
21083,
470,
8492,
8724,
825,
29915,
29879,
297,
263,
6996,
29181,
29889,
13,
13,
1576,
29871,
29896,
29955,
29945,
9522,
5547,
3160,
5807,
26514,
29892,
623,
300,
19427,
29892,
4497,
7925,
29892,
3669,
567,
29892,
9953,
2406,
29892,
26044,
29879,
29892,
2625,
270,
17006,
29892,
322,
6808,
814,
29879,
393,
5957,
366,
1224,
271,
1793,
297,
278,
29181,
30003,
3166,
6795,
3332,
304,
380,
586,
300,
459,
304,
288,
854,
29889,
512,
6124,
29892,
366,
29915,
645,
1284,
2472,
373,
278,
13698,
1316,
408,
29901,
13,
13,
30119,
2020,
896,
29915,
276,
9045,
29891,
13,
13,
30119,
278,
23633,
322,
25486,
13,
13,
30119,
920,
896,
664,
322,
25562,
304,
7984,
8472,
411,
963,
13,
13,
30119,
825,
1667,
8492,
322,
21083,
526,
4312,
13,
13,
797,
278,
1250,
310,
278,
3143,
29892,
366,
29915,
645,
884,
1284,
263,
1051,
310,
18254,
768,
2738,
282,
15328,
4452,
304,
3013,
297,
10961,
29892,
6996,
7984,
292,
8492,
363,
263,
1532,
29899,
1686,
16242,
29181,
29892,
9687,
15332,
23274,
29892,
4071,
29883,
708,
17394,
3262,
6907,
800,
29892,
322,
12463,
1781,
18254,
29878,
654,
322,
9045,
29891,
301,
7004,
1508,
1410,
10652,
1475,
29889,
13,
13,
29937,
17394,
3262,
15040,
322,
321,
1218,
1532,
13,
13,
1762,
367,
1854,
366,
3160,
3307,
377,
6544,
608,
9687,
29879,
297,
596,
14218,
321,
1218,
3814,
322,
4046,
9687,
29879,
393,
526,
4482,
297,
9045,
23633,
29892,
3013,
278,
1494,
1410,
10652,
1475,
297,
3458,
29889,
13,
13,
3210,
29949,
29949,
1660,
16999,
1525,
405,
2692,
3960,
3919,
29899,
29934,
2965,
29950,
18322,
29949,
8452,
13,
13,
29419,
263,
3464,
310,
1422,
478,
29923,
7194,
6181,
29903,
322,
23788,
29965,
1806,
29903,
304,
679,
278,
9449,
342,
12875,
310,
18254,
374,
1237,
29889,
1932,
1321,
5414,
14671,
2256,
470,
508,
9571,
18655,
1849,
322,
285,
21211,
29892,
18296,
363,
1906,
411,
278,
19604,
26999,
310,
20892,
1974,
470,
2715,
29746,
1503,
29889,
13,
13,
29923,
271,
1880,
29899,
7241,
495,
399,
8187,
1307,
402,
4717,
1177,
29903,
3265,
1135,
2143,
1312,
2646,
262,
9316,
408,
4049,
408,
1950,
29889,
1816,
345,
3353,
29899,
3874,
262,
18423,
29879,
29892,
4940,
294,
29892,
274,
406,
1338,
29892,
322,
2625,
270,
17006,
363,
278,
23633,
310,
5713,
495,
322,
916,
4100,
18254,
374,
1237,
29889,
3967,
304,
367,
1854,
472,
3203,
4203,
278,
2646,
1144,
366,
17545,
526,
3353,
2646,
1144,
29889,
1383,
459,
363,
17354,
19408,
29892,
8227,
29887,
332,
29892,
439,
1789,
29874,
29892,
2594,
2330,
29892,
626,
279,
9716,
29892,
322,
2215,
307,
29892,
408,
1532,
408,
3353,
29899,
3874,
262,
18423,
29879,
29892,
4940,
294,
29892,
274,
406,
1338,
29892,
322,
26755,
414,
29889,
5399,
393,
263,
3353,
2646,
262,
338,
9904,
937,
297,
278,
2348,
1127,
10070,
29889,
13,
13,
3549,
383,
1299,
29899,
29943,
21661,
29892,
29871,
29896,
13667,
322,
365,
9806,
29899,
29943,
1299,
21330,
8193,
29979,
9316,
322,
4046,
2989,
29899,
29888,
271,
1146,
16129,
9316,
29892,
1316,
408,
27274,
29892,
923,
968,
29892,
322,
343,
468,
4227,
29889,
13,
13,
29923,
271,
383,
3235,
29950,
472,
3203,
8951,
263,
4723,
29892,
7148,
9427,
1880,
297,
2703,
2442,
29899,
29941,
9950,
1017,
1274,
4841,
29892,
1316,
408,
4497,
3712,
29892,
260,
4347,
29892,
322,
534,
449,
29889,
14070,
1181,
397,
338,
385,
15129,
2752,
310,
26823,
29889,
1383,
459,
363,
10849,
9427,
746,
1950,
29892,
541,
884,
1106,
363,
508,
9571,
27234,
562,
487,
260,
4347,
4870,
287,
297,
4094,
411,
278,
19604,
20892,
1974,
322,
508,
9571,
10814,
6393,
29892,
19309,
2222,
4497,
3712,
408,
9045,
29891,
27809,
29889,
13,
13,
15954,
852,
18581,
1177,
1307,
1799,
21521,
13309,
5659,
29979,
322,
11060,
2190,
22986,
1299,
29892,
322,
19012,
963,
1728,
2715,
443,
354,
4298,
29891,
285,
1446,
29892,
2313,
20272,
599,
7962,
9950,
1434,
7984,
292,
963,
29889,
951,
273,
5700,
29879,
310,
367,
1389,
322,
282,
548,
29892,
1316,
408,
8889,
417,
262,
29892,
4805,
29899,
14044,
5962,
367,
1389,
29892,
282,
548,
22707,
417,
262,
29892,
322,
282,
548,
658,
262,
521,
3554,
29892,
508,
367,
760,
310,
263,
5192,
29899,
354,
4298,
29891,
652,
300,
565,
366,
29151,
963,
297,
17768,
362,
29889,
13,
13,
2528,
11060,
29954,
29965,
2303,
29903,
29892,
405,
2692,
29903,
29892,
322,
3725,
3352,
29903,
304,
596,
652,
300,
29889,
5682,
9351,
29892,
3704,
367,
550,
313,
14565,
408,
4628,
322,
26397,
3801,
511,
1236,
294,
313,
14565,
408,
7933,
322,
521,
860,
412,
294,
511,
301,
296,
2719,
29892,
322,
1236,
273,
8842,
29892,
526,
385,
15129,
2752,
310,
5713,
495,
322,
27654,
2222,
26823,
29889,
405,
8842,
322,
409,
5779,
1712,
1601,
1309,
29879,
1337,
630,
285,
1446,
29892,
607,
1122,
1371,
11157,
10416,
521,
324,
4156,
324,
11174,
746,
896,
5191,
269,
1337,
630,
322,
1301,
9950,
297,
278,
652,
300,
29889,
7419,
363,
9644,
1997,
287,
302,
8842,
322,
409,
5779,
363,
5807,
26514,
470,
304,
788,
304,
4497,
7925,
470,
3632,
331,
1943,
3353,
29899,
3874,
262,
18423,
29879,
470,
286,
3096,
1144,
29889,
13,
13,
29419,
17714,
1964,
4690,
29979,
383,
1299,
29903,
322,
438,
6227,
29903,
297,
596,
321,
1218,
3814,
29889,
17236,
300,
519,
288,
2719,
3867,
5192,
29899,
354,
4298,
29891,
9644,
1337,
630,
285,
1446,
29889,
4803,
508,
2963,
29892,
26343,
29892,
288,
9258,
29892,
322,
872,
600,
13609,
288,
2719,
408,
596,
1667,
748,
29899,
304,
288,
2719,
297,
278,
29181,
29889,
4803,
1438,
3412,
411,
1661,
303,
860,
7984,
292,
805,
764,
29879,
322,
4964,
23131,
15276,
279,
457,
3265,
1135,
2898,
12070,
15276,
279,
457,
29892,
541,
357,
29892,
322,
3273,
8333,
29889,
13,
13,
29923,
1299,
11060,
1799,
8079,
405,
2692,
3960,
3919,
29899,
13152,
1955,
18322,
29949,
8452,
13,
13,
29907,
329,
1250,
373,
7791,
4571,
5005,
29889,
1522,
3458,
1319,
393,
1556,
310,
278,
20892,
1974,
366,
17545,
5304,
515,
4870,
4063,
322,
19356,
9687,
29879,
29892,
3704,
27144,
592,
1338,
29889,
24274,
920,
1568,
20892,
1974,
313,
392,
2715,
29746,
1503,
29897,
366,
788,
304,
596,
592,
1338,
297,
278,
883,
310,
2148,
7862,
29892,
10714,
886,
29892,
322,
12507,
778,
29889,
3831,
598,
278,
9687,
11073,
310,
2788,
9316,
304,
1284,
278,
6743,
411,
3109,
20892,
1974,
29892,
322,
367,
274,
1300,
2738,
310,
12234,
1880,
29899,
29879,
397,
1974,
9687,
29879,
1316,
408,
3669,
567,
29892,
18423,
29879,
29892,
11982,
16416,
267,
29892,
282,
24990,
29892,
282,
5059,
2202,
29892,
322,
11220,
5700,
29879,
29889,
1932,
7984,
292,
29892,
4259,
9687,
411,
902,
5824,
29892,
805,
1575,
29892,
322,
7537,
15816,
29889,
4803,
15795,
805,
4362,
368,
470,
451,
472,
599,
29889,
1763,
5224,
10416,
12959,
29892,
12242,
304,
17545,
694,
901,
1135,
29871,
29906,
29892,
29946,
29900,
29900,
3533,
4481,
2232,
313,
29885,
29887,
29897,
310,
20892,
1974,
639,
2462,
29889,
1763,
10032,
10416,
12959,
1584,
4340,
29892,
5700,
1250,
304,
263,
14218,
20892,
1974,
938,
1296,
310,
29871,
29896,
29892,
29945,
29900,
29900,
286,
29887,
29889,
13,
13,
24445,
11033,
2287,
29928,
20134,
29954,
1718,
29889,
19152,
596,
938,
1296,
310,
26438,
29899,
29879,
705,
6302,
287,
367,
369,
1179,
304,
694,
901,
1135,
29871,
29946,
29945,
29900,
1208,
3842,
29892,
470,
29871,
29941,
29953,
29871,
1309,
778,
639,
4723,
29889,
313,
3644,
366,
817,
28145,
1135,
29871,
29906,
29892,
29900,
29900,
29900,
1208,
3842,
639,
2462,
29892,
4772,
1438,
367,
369,
1179,
19148,
1846,
3115,
29892,
4772,
29746,
653,
9687,
29879,
393,
526,
4482,
297,
18254,
374,
1237,
541,
1880,
297,
1208,
3842,
29889,
5373,
29891,
963,
871,
408,
14882,
1848,
2578,
1446,
29889,
13,
13,
29907,
329,
1250,
373,
9687,
29879,
1880,
297,
317,
1299,
4574,
3040,
29928,
383,
1299,
322,
10014,
2190,
29903,
383,
1299,
29889,
319,
652,
300,
1880,
297,
1438,
285,
1446,
16415,
596,
12045,
310,
5192,
17135,
29889,
317,
1337,
630,
9950,
338,
1476,
19434,
297,
9687,
29879,
515,
15006,
29892,
1316,
408,
592,
1446,
29892,
282,
5059,
2202,
29892,
322,
2989,
29899,
29888,
271,
1146,
16129,
9316,
29892,
470,
297,
21881,
288,
2719,
29892,
1316,
408,
1302,
535,
329,
29892,
5112,
29885,
29892,
322,
5112,
29885,
8466,
29889,
4103,
9950,
338,
2198,
297,
1784,
12012,
2955,
9687,
29879,
393,
3160,
22039,
17546,
1885,
630,
17182,
29889,
315,
329,
1250,
373,
1301,
9950,
491,
5183,
11073,
746,
23906,
5807,
26514,
29892,
274,
6926,
29892,
21046,
29892,
4940,
2722,
29892,
282,
583,
29892,
286,
3096,
1144,
29892,
322,
285,
1255,
9687,
29879,
29889,
1763,
5224,
521,
324,
4156,
324,
29892,
10032,
596,
938,
1296,
310,
269,
1337,
630,
9950,
304,
694,
901,
1135,
29871,
29945,
304,
29871,
29953,
10151,
310,
596,
3001,
1208,
3842,
29892,
577,
565,
366,
17545,
263,
29871,
29906,
29892,
29900,
29900,
29900,
29899,
1052,
7661,
652,
300,
29892,
12242,
304,
29151,
29871,
29896,
29941,
867,
2232,
470,
3109,
310,
269,
1337,
630,
9950,
263,
2462,
29889,
13,
13,
29937,
8471,
263,
9045,
29891,
301,
7004,
1508,
13,
13,
2499,
3592,
777,
12045,
13879,
363,
5192,
17135,
322,
19782,
29892,
1316,
408,
10231,
5046,
29892,
3942,
4955,
29892,
322,
11314,
7823,
537,
29892,
508,
29915,
29873,
367,
3939,
29892,
1784,
310,
278,
1556,
5625,
6751,
12045,
13879,
526,
2712,
366,
508,
2761,
29889,
13,
13,
29032,
6040,
1177,
319,
17714,
1964,
4690,
29979,
399,
29923,
22530,
13,
13,
13696,
391,
2705,
5622,
297,
2086,
1784,
1208,
3842,
674,
3275,
304,
14171,
975,
7915,
470,
704,
968,
30003,
29874,
12045,
7329,
363,
5192,
17135,
322,
19782,
29892,
408,
1532,
408,
916,
10267,
2129,
3704,
652,
370,
10778,
29889,
887,
505,
263,
1568,
6133,
12045,
310,
5192,
17135,
322,
19782,
565,
366,
29915,
276,
975,
7915,
470,
704,
968,
29892,
1584,
565,
366,
505,
694,
916,
12045,
13879,
29889,
4602,
292,
925,
29871,
29945,
304,
29871,
29896,
29900,
10151,
310,
596,
3573,
7688,
674,
1371,
5224,
777,
310,
596,
12045,
29889,
1763,
29877,
1568,
3573,
9950,
30003,
267,
25009,
472,
596,
11324,
391,
30003,
1004,
550,
393,
596,
5192,
756,
304,
664,
22622,
322,
596,
12045,
16415,
363,
1880,
10416,
12959,
29892,
1880,
521,
324,
4156,
324,
29892,
322,
652,
370,
10778,
29889,
887,
508,
8161,
596,
3573,
4158,
2380,
313,
29933,
10403,
29897,
773,
278,
350,
10403,
20535,
1061,
363,
2087,
499,
29879,
472,
7821,
29889,
23057,
29889,
990,
29889,
3115,
29892,
5193,
304,
596,
9045,
18020,
13113,
1048,
825,
263,
9045,
29891,
350,
10403,
322,
11324,
391,
20039,
526,
363,
366,
29889,
1763,
1900,
10933,
596,
7688,
29892,
17545,
278,
1492,
5253,
310,
1208,
3842,
363,
366,
322,
3033,
482,
297,
4943,
9128,
6354,
29889,
13,
13,
5746,
1001,
8426,
1660,
5195,
29954,
13309,
1718,
16786,
13,
13,
1576,
3082,
17778,
7993,
5052,
1975,
393,
16157,
29879,
679,
29871,
29941,
29900,
6233,
310,
17768,
403,
29899,
524,
575,
537,
9128,
6354,
472,
3203,
5320,
3841,
263,
4723,
470,
29871,
29955,
29945,
6233,
310,
14877,
20657,
29899,
524,
575,
537,
6354,
1269,
4723,
363,
12463,
5881,
29875,
586,
6151,
1070,
9045,
29889,
20986,
881,
12242,
363,
472,
3203,
29871,
29953,
29900,
6233,
263,
2462,
29889,
13,
13,
29928,
1164,
29915,
29911,
317,
6720,
6059,
6323,
350,
1525,
7534,
29923,
7495,
29933,
2477,
3217,
317,
6720,
6059,
13,
13,
12636,
17223,
338,
278,
1353,
697,
5557,
519,
4556,
310,
5188,
1535,
4892,
297,
278,
3303,
3900,
29889,
4116,
17223,
338,
263,
12045,
7329,
363,
5881,
29875,
586,
6151,
1070,
17135,
29889,
319,
1560,
17933,
29915,
29879,
12045,
310,
14338,
25082,
653,
5192,
17135,
338,
1023,
304,
3023,
3064,
393,
310,
263,
302,
787,
29885,
17933,
29915,
29879,
29889,
960,
366,
25158,
29892,
23283,
1286,
29991,
313,
1762,
1284,
7788,
304,
23283,
29892,
748,
304,
7821,
29889,
23057,
29889,
990,
1846,
1932,
366,
5040,
1560,
17223,
29892,
596,
12045,
310,
5192,
17135,
322,
19782,
4441,
567,
19328,
29892,
694,
4383,
920,
1472,
470,
920,
1568,
366,
29915,
345,
1560,
12504,
29889,
960,
366,
1016,
29915,
29873,
25158,
29892,
1016,
29915,
29873,
1369,
29889,
13,
13,
8353,
1177,
29968,
14445,
3217,
29950,
5607,
2672,
16999,
8032,
8098,
30003,
1955,
6058,
15531,
15149,
13,
13,
25639,
18159,
2086,
1568,
27231,
5391,
508,
12020,
10416,
12959,
29892,
7910,
12045,
310,
5192,
10672,
322,
19782,
29892,
7738,
27931,
5192,
915,
1446,
29892,
322,
29126,
304,
1784,
916,
10267,
2129,
29889,
960,
366,
13748,
29892,
437,
577,
297,
17768,
362,
30003,
1217,
901,
1135,
697,
13748,
639,
2462,
363,
263,
6114,
322,
1023,
13748,
29879,
363,
263,
767,
29889,
3118,
13748,
338,
5186,
304,
29871,
29896,
29906,
29871,
1309,
778,
310,
367,
261,
29892,
29871,
29945,
29871,
1309,
778,
310,
19006,
29892,
470,
29871,
29896,
30226,
29871,
1309,
778,
310,
29871,
29947,
29900,
29899,
8017,
26829,
29889,
960,
366,
1016,
29915,
29873,
13748,
29892,
1016,
29915,
29873,
1369,
29889,
13,
13,
29903,
3210,
3352,
29965,
1307,
5195,
29954,
13309,
1718,
341,
3352,
2965,
1964,
23557,
4897,
29903,
13,
13,
9984,
385,
28573,
411,
596,
9045,
18020,
10257,
363,
263,
5192,
1423,
786,
304,
1284,
714,
596,
3694,
322,
5353,
596,
7333,
12045,
363,
5881,
29875,
586,
6151,
1070,
17135,
29889,
13,
13,
29937,
5232,
7984,
292,
13,
13,
2410,
713,
18655,
519,
22300,
411,
2215,
307,
13,
13,
1004,
271,
2135,
22300,
411,
10917,
496,
322,
610,
4467,
273,
13,
13,
27495,
283,
330,
398,
833,
13,
13,
20752,
15816,
29899,
5553,
424,
307,
4497,
3712,
13,
13,
305,
488,
273,
521,
21475,
322,
18655,
519,
1886,
29893,
13,
13,
305,
21475,
413,
555,
29874,
13,
13,
305,
21475,
274,
21566,
6082,
411,
4940,
29874,
13,
13,
1883,
331,
653,
1886,
557,
1560,
1228,
287,
297,
373,
1080,
13,
13,
26350,
3055,
1652,
804,
1886,
557,
13,
13,
1482,
21800,
2185,
27654,
658,
2142,
13,
13,
16063,
8366,
322,
12461,
12053,
1869,
15713,
9679,
29899,
14340,
13,
13,
29879,
485,
706,
301,
296,
309,
1886,
29893,
411,
1248,
6381,
13,
13,
305,
388,
866,
10674,
1161,
322,
1236,
2496,
274,
465,
1489,
280,
13,
13,
29879,
2438,
22741,
14225,
3104,
20452,
13,
13,
2308,
328,
17658,
29892,
7984,
29879,
505,
6077,
304,
1009,
5232,
7984,
414,
304,
19012,
6996,
521,
23285,
29892,
1886,
5652,
29892,
3669,
567,
29892,
322,
652,
567,
29892,
541,
278,
8760,
338,
596,
5232,
7984,
261,
338,
15390,
310,
577,
1568,
901,
29991,
887,
508,
671,
445,
13807,
623,
13036,
304,
13389,
5400,
9045,
29891,
270,
17006,
393,
3160,
8031,
322,
4280,
21054,
943,
763,
678,
21475,
476,
555,
29874,
29892,
385,
7560,
270,
728,
521,
1698,
29899,
8159,
310,
429,
13574,
805,
1575,
29892,
322,
18266,
3055,
2379,
804,
2443,
557,
29892,
607,
3913,
19006,
304,
1653,
263,
8261,
29899,
29873,
579,
292,
12507,
346,
29889,
887,
508,
884,
671,
596,
5232,
7984,
261,
304,
1207,
628,
14803,
270,
17006,
393,
366,
1795,
451,
1348,
304,
671,
596,
623,
13036,
363,
29892,
1316,
408,
678,
388,
866,
317,
339,
1161,
322,
3938,
2496,
13088,
1489,
280,
322,
21353,
15816,
29899,
29907,
309,
424,
307,
3956,
3712,
29889,
13,
13,
11403,
596,
5232,
7984,
261,
304,
1925,
263,
716,
3252,
391,
373,
9985,
3942,
770,
1199,
29892,
2086,
29892,
1316,
408,
678,
21475,
315,
21566,
6082,
411,
349,
5427,
322,
1570,
24777,
2191,
271,
4309,
2142,
29889,
317,
677,
7984,
292,
451,
871,
6911,
366,
19012,
9045,
29891,
592,
1338,
541,
884,
27401,
366,
931,
1363,
278,
270,
17006,
817,
263,
9212,
310,
6567,
29899,
265,
8570,
29889,
887,
9273,
29915,
29873,
23546,
278,
9687,
313,
28952,
263,
9522,
412,
5717,
363,
372,
511,
322,
366,
1016,
29915,
29873,
817,
304,
6505,
372,
470,
15982,
1048,
372,
25535,
29889,
498,
798,
9045,
29891,
2348,
1127,
10070,
964,
263,
8182,
384,
29892,
1235,
963,
7984,
4482,
322,
5232,
29892,
322,
9080,
596,
3942,
263,
628,
14803,
592,
284,
29991,
887,
508,
4078,
1584,
901,
931,
408,
1532,
408,
4340,
10032,
596,
29181,
376,
6661,
2158,
29908,
491,
7984,
292,
2748,
322,
321,
1218,
8951,
29901,
1207,
2919,
26855,
310,
596,
25448,
270,
17006,
29892,
17545,
777,
1286,
29892,
322,
337,
1341,
4087,
403,
470,
3889,
911,
278,
1791,
363,
263,
4996,
592,
284,
472,
1790,
931,
29889,
13,
13,
29903,
677,
7984,
292,
508,
4078,
366,
6909,
29892,
2086,
29889,
7311,
5232,
7984,
292,
16706,
1623,
278,
4511,
573,
260,
15118,
297,
3109,
29899,
4548,
6270,
5700,
29879,
310,
27654,
29892,
366,
2113,
29915,
29873,
817,
304,
18864,
263,
3287,
304,
13389,
263,
4048,
706,
1886,
29893,
470,
696,
579,
29889,
13,
13,
6295,
920,
437,
5232,
7984,
414,
2289,
664,
29973,
2688,
8388,
618,
9687,
411,
4482,
29892,
27357,
12871,
29892,
9819,
297,
1472,
29892,
5232,
7984,
292,
1728,
25535,
29889,
450,
2730,
391,
12871,
7984,
29879,
9687,
29879,
2745,
896,
29915,
276,
20327,
29899,
481,
442,
22707,
29889,
26428,
292,
278,
8182,
384,
411,
278,
17343,
10017,
263,
2730,
391,
545,
29899,
29873,
523,
409,
284,
393,
5662,
1973,
393,
278,
12871,
322,
21837,
5492,
491,
278,
8118,
3933,
297,
278,
8182,
384,
29889,
910,
409,
284,
338,
4100,
304,
7344,
263,
27357,
10430,
2768,
29892,
322,
372,
884,
6911,
1320,
2666,
322,
1999,
355,
21054,
943,
408,
325,
26191,
2148,
11259,
373,
278,
17343,
322,
3639,
304,
278,
9687,
297,
278,
3104,
29889,
13,
13,
4986,
317,
27998,
4810,
8949,
29901,
259,
13,
1762,
7984,
9687,
411,
4482,
29892,
27357,
29892,
2730,
391,
12871,
363,
263,
1472,
3785,
310,
931,
297,
263,
10664,
8182,
384,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
317,
677,
7984,
261,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
8561,
278,
7984,
261,
664,
411,
596,
20410,
29889,
3967,
758,
3262,
263,
9522,
412,
278,
4646,
1434,
366,
3814,
304,
7984,
278,
9687,
29889,
26428,
322,
337,
1341,
4087,
403,
278,
758,
2986,
9687,
297,
263,
2728,
523,
22637,
975,
11147,
29892,
5445,
278,
8182,
384,
297,
278,
7250,
29892,
322,
2507,
373,
278,
12871,
322,
29892,
565,
596,
7984,
261,
756,
697,
29892,
278,
12237,
29889,
13,
13,
30119,
349,
3445,
9687,
29879,
577,
896,
674,
7984,
278,
1556,
29497,
322,
1584,
368,
29889,
1152,
1342,
29892,
2125,
2562,
304,
5700,
1559,
307,
1372,
964,
12785,
310,
278,
1021,
26368,
2159,
577,
599,
278,
1559,
307,
1372,
297,
278,
270,
728,
674,
367,
2309,
472,
278,
1021,
931,
29889,
13,
13,
30119,
1605,
326,
278,
7962,
9950,
515,
282,
5059,
2202,
322,
20793,
592,
1446,
29892,
322,
297,
1556,
4251,
2313,
538,
278,
19309,
1434,
7984,
292,
278,
282,
5059,
2202,
313,
361,
19309,
3508,
29915,
29873,
2313,
25600,
1434,
7984,
292,
29892,
437,
577,
1434,
321,
1218,
511,
1716,
304,
5700,
1623,
373,
443,
354,
4298,
29891,
285,
1446,
297,
278,
7743,
270,
728,
322,
363,
901,
1584,
7984,
292,
29889,
13,
13,
30119,
2538,
391,
278,
5065,
479,
304,
23546,
470,
269,
484,
557,
263,
1236,
1416,
29889,
4673,
278,
17343,
871,
746,
278,
9522,
412,
1513,
29879,
366,
304,
29892,
4866,
278,
5181,
8820,
29892,
1316,
408,
4417,
2348,
1127,
10070,
29892,
322,
337,
29899,
11911,
278,
7984,
261,
9098,
29889,
7569,
931,
366,
2867,
278,
409,
284,
1546,
278,
4612,
322,
278,
8182,
384,
29892,
366,
14074,
12871,
29889,
13,
13,
30119,
2823,
15332,
25562,
363,
5232,
7984,
292,
29889,
13,
13,
15349,
1254,
18322,
29949,
8452,
15842,
317,
27998,
4810,
8949,
4214,
13,
13,
2008,
29874,
1181,
397,
29901,
498,
860,
9427,
977,
10376,
29892,
1316,
408,
4497,
3712,
29892,
526,
263,
2107,
7348,
29892,
763,
21353,
15816,
29899,
29907,
309,
424,
307,
3956,
3712,
29889,
498,
3993,
977,
10376,
322,
521,
18801,
310,
9427,
313,
294,
363,
1886,
5652,
470,
3669,
567,
29897,
526,
5491,
2715,
11183,
278,
1095,
310,
7984,
292,
931,
29889,
450,
4482,
29892,
5232,
7984,
292,
338,
1407,
18879,
4357,
29892,
577,
372,
29915,
29879,
2898,
304,
975,
15108,
9427,
29889,
1383,
514,
15161,
322,
286,
3028,
375,
2039,
1316,
408,
528,
5632,
29886,
322,
23885,
1379,
884,
508,
367,
5232,
7984,
287,
29892,
408,
297,
6211,
283,
402,
398,
833,
29889,
13,
13,
29925,
5059,
2202,
29901,
350,
650,
29899,
262,
12785,
310,
521,
21475,
322,
7013,
1989,
664,
1532,
29892,
408,
297,
13430,
273,
678,
21475,
322,
17236,
300,
519,
2443,
29893,
29892,
541,
10814,
6393,
521,
21475,
2078,
19416,
526,
4049,
1304,
408,
1532,
29889,
13,
13,
6816,
271,
29901,
951,
273,
5700,
29879,
29892,
607,
526,
278,
9045,
631,
2984,
29892,
515,
278,
10150,
2301,
7799,
664,
1900,
297,
278,
5232,
7984,
261,
1363,
896,
526,
1880,
297,
285,
4626,
681,
26823,
29892,
607,
16706,
1623,
297,
278,
5232,
7984,
261,
29889,
3967,
528,
1331,
29892,
521,
2707,
696,
19416,
29892,
322,
2246,
470,
5970,
364,
3885,
29892,
1316,
408,
5678,
331,
653,
2443,
557,
4116,
1228,
287,
297,
1551,
1080,
29889,
319,
5405,
901,
22707,
5700,
29879,
1316,
408,
8889,
417,
262,
29889,
13,
13,
29963,
387,
300,
13956,
14409,
262,
29901,
7311,
896,
6425,
11831,
21054,
943,
577,
1532,
29892,
304,
21154,
29892,
8416,
273,
29892,
322,
1350,
412,
29882,
526,
10839,
363,
5232,
7984,
292,
297,
263,
21054,
272,
1319,
23904,
29889,
5682,
9351,
30003,
14565,
408,
270,
1255,
367,
550,
29892,
1236,
294,
29892,
322,
301,
296,
2719,
30003,
598,
263,
5613,
363,
278,
4482,
29892,
27357,
12871,
310,
5232,
7984,
292,
29892,
607,
7697,
414,
963,
22707,
541,
451,
286,
1878,
29891,
29889,
3967,
9583,
706,
365,
296,
309,
2443,
29893,
411,
2043,
6381,
29889,
13,
13,
29963,
387,
300,
1849,
29901,
323,
820,
29892,
285,
4626,
681,
18655,
1849,
1316,
408,
1559,
307,
1372,
29892,
610,
29879,
1240,
567,
29892,
367,
1691,
29892,
6432,
708,
29892,
2971,
17006,
29892,
322,
3104,
20452,
29892,
408,
297,
4275,
22741,
317,
16668,
10173,
20452,
29892,
4953,
14225,
322,
22707,
746,
19884,
304,
278,
5232,
29892,
9914,
12871,
310,
263,
5232,
7984,
261,
29892,
541,
366,
508,
884,
671,
19710,
24389,
29892,
454,
14541,
29892,
5777,
352,
361,
13609,
29892,
2545,
617,
5079,
29892,
322,
7776,
17807,
470,
916,
1395,
575,
29889,
13,
13,
29954,
336,
1144,
29901,
4803,
278,
5232,
7984,
261,
304,
679,
901,
3353,
2646,
1144,
29892,
3704,
2594,
2330,
29892,
2316,
1026,
29892,
439,
1789,
29874,
29892,
8775,
19408,
29892,
322,
2215,
307,
29889,
3967,
10545,
17236,
300,
519,
317,
1132,
411,
8413,
307,
29889,
438,
271,
1004,
284,
338,
884,
263,
5972,
7348,
29936,
1925,
297,
278,
2348,
1127,
10070,
322,
2507,
373,
278,
7984,
261,
472,
6592,
2230,
29892,
322,
366,
29915,
645,
281,
1296,
701,
304,
263,
14294,
29892,
5192,
29891,
29892,
322,
18254,
768,
2738,
26044,
313,
4149,
317,
677,
17278,
292,
8396,
375,
467,
13,
13,
2277,
4698,
713,
18655,
519,
22300,
411,
2215,
307,
13,
13,
4013,
5192,
29891,
22300,
4145,
1475,
10597,
2545,
386,
322,
19875,
29891,
18655,
1849,
411,
22707,
367,
550,
322,
923,
12822,
2215,
307,
313,
4519,
20938,
29899,
1148,
511,
385,
12297,
2646,
262,
884,
2998,
408,
953,
1050,
29889,
739,
599,
12778,
701,
304,
263,
8261,
29892,
13016,
292,
697,
29899,
29881,
728,
592,
284,
411,
263,
12875,
310,
21054,
943,
297,
1432,
805,
6150,
1319,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29896,
229,
136,
151,
2723,
567,
639,
16330,
13,
13,
29906,
2919,
1559,
307,
1372,
29892,
5700,
964,
29871,
30226,
29899,
22466,
269,
29399,
13,
13,
29896,
2919,
285,
2108,
295,
8227,
29890,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
29906,
18350,
373,
1080,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
29906,
18350,
503,
1682,
305,
2172,
29892,
8870,
1490,
3309,
3538,
565,
9377,
29892,
5700,
964,
29871,
30226,
29899,
22466,
269,
29399,
13,
13,
29946,
2919,
7171,
506,
17184,
1960,
29892,
1375,
1133,
29892,
322,
29871,
29896,
18350,
7171,
506,
17184,
345,
29892,
2175,
3353,
29892,
13931,
671,
13,
13,
29906,
7689,
23379,
310,
10849,
696,
12846,
653,
13,
13,
30226,
18002,
443,
1111,
12504,
2215,
307,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
508,
18437,
2172,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
270,
7612,
6454,
20452,
29892,
563,
22042,
13,
13,
29946,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
13,
13,
29896,
18002,
658,
359,
873,
4870,
287,
10849,
2362,
309,
13,
13,
30226,
18002,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
797,
263,
29871,
29945,
29899,
304,
29871,
29955,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
29892,
1207,
697,
7546,
1269,
29892,
297,
1797,
29892,
310,
278,
1559,
307,
1372,
29892,
285,
2108,
295,
29892,
373,
1080,
29892,
503,
1682,
305,
2172,
29892,
1375,
1133,
7171,
506,
29892,
322,
7689,
23379,
310,
696,
12846,
653,
29889,
14314,
682,
280,
278,
2215,
307,
975,
599,
29889,
7488,
411,
278,
367,
550,
322,
6454,
20452,
411,
23904,
29889,
6803,
297,
278,
2545,
386,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29929,
304,
29871,
29896,
29900,
6199,
470,
373,
1880,
363,
29871,
29946,
30226,
304,
29871,
29945,
30226,
6199,
29889,
13,
13,
28173,
29871,
29945,
6233,
1434,
16330,
931,
29892,
297,
263,
9687,
21433,
470,
1999,
1581,
29892,
9505,
344,
278,
9886,
29871,
29896,
7171,
506,
17184,
345,
29871,
29945,
3064,
29892,
470,
2745,
1436,
873,
1375,
1133,
29889,
3462,
278,
2362,
309,
29889,
349,
19994,
29871,
29896,
29900,
3064,
29892,
470,
2745,
1436,
873,
3060,
2986,
29889,
512,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
2362,
309,
29544,
322,
1459,
4467,
273,
29889,
13,
13,
14084,
1434,
16330,
29892,
2313,
538,
278,
696,
12846,
653,
380,
1567,
29892,
23546,
5393,
278,
11308,
1250,
964,
278,
22300,
29889,
14314,
682,
280,
278,
22300,
411,
278,
2362,
309,
29544,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29896,
29945,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29896,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29955,
330,
13,
13,
7241,
495,
29871,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29947,
330,
13,
13,
14676,
262,
29871,
29896,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
380,
1279,
29892,
29871,
29941,
18655,
519,
29892,
29871,
30226,
20793,
27654,
13,
13,
2277,
27654,
2135,
22300,
411,
10917,
496,
322,
610,
4467,
273,
13,
13,
3112,
4893,
263,
2846,
4805,
6233,
304,
17354,
278,
27654,
2135,
29879,
1434,
4417,
963,
304,
278,
5232,
7984,
261,
29892,
541,
372,
674,
367,
1532,
7088,
278,
7225,
29889,
450,
4259,
287,
29892,
1559,
314,
295,
1891,
27654,
2135,
29879,
7984,
304,
22707,
639,
20309,
297,
263,
22300,
20887,
292,
411,
278,
10849,
2264,
310,
14225,
6454,
20452,
29892,
10917,
496,
29892,
322,
2362,
309,
29889,
319,
2186,
7689,
682,
280,
310,
1459,
4467,
273,
12778,
278,
11660,
1076,
6023,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
313,
2541,
29871,
29946,
27654,
2135,
29879,
29897,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29947,
29871,
1309,
778,
4805,
29899,
14044,
5962,
367,
1389,
13,
13,
31690,
18002,
443,
1111,
12504,
288,
271,
1004,
284,
13,
13,
29896,
2919,
19710,
4796,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
10545,
4259,
292,
29892,
2181,
25443,
29892,
470,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
373,
291,
4764,
672,
13,
13,
30515,
304,
29871,
30226,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
13,
13,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
322,
29871,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
511,
13931,
671,
13,
13,
29906,
2723,
567,
2646,
412,
6454,
20452,
29892,
8870,
1490,
13,
13,
29906,
2723,
567,
4094,
13,
13,
29896,
2919,
7933,
22623,
1236,
2496,
29892,
3060,
2986,
13,
13,
29896,
18350,
373,
291,
29892,
270,
7612,
13,
13,
30226,
18002,
15589,
2654,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29906,
23912,
313,
29906,
734,
294,
1129,
787,
29897,
15795,
29899,
9021,
14426,
367,
1389,
16380,
12794,
13,
13,
29896,
29871,
21543,
24354,
10917,
496,
29892,
1302,
1503,
873,
3060,
2986,
313,
12717,
29871,
29896,
18002,
29897,
13,
13,
30515,
18002,
3060,
2986,
10849,
2362,
309,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
30515,
18002,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
20769,
368,
805,
764,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
411,
7984,
292,
805,
764,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
773,
596,
6567,
470,
263,
805,
6150,
29892,
14405,
278,
5962,
367,
1389,
29892,
288,
271,
1004,
284,
29892,
19710,
4796,
29892,
10545,
4259,
292,
29892,
373,
291,
4764,
672,
29892,
322,
2654,
1236,
2496,
17422,
10794,
29889,
1383,
4085,
964,
4832,
9404,
29871,
29896,
29899,
22466,
26563,
29889,
17934,
304,
263,
2919,
15284,
29889,
13,
13,
797,
263,
2919,
1661,
303,
860,
2071,
7324,
29892,
12871,
29871,
29896,
734,
294,
1129,
265,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
27654,
2135,
29879,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
3347,
9571,
373,
599,
11192,
29892,
14712,
23025,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
278,
5232,
7984,
261,
29892,
23546,
4208,
278,
6454,
20452,
29892,
4094,
29892,
22623,
1236,
2496,
29892,
373,
291,
29892,
19006,
29892,
322,
16380,
12794,
29889,
13,
13,
29954,
2705,
788,
278,
27654,
2135,
29879,
29892,
805,
6150,
292,
777,
310,
278,
6454,
1219,
29544,
975,
963,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29955,
30226,
304,
29871,
29947,
6199,
470,
373,
1880,
363,
29871,
29941,
6199,
29871,
29946,
29945,
6233,
304,
29871,
29946,
6199,
29892,
470,
2745,
278,
22623,
1236,
2496,
338,
1407,
22707,
29889,
13,
13,
29954,
2705,
23546,
297,
278,
10917,
496,
29892,
2362,
309,
29892,
15795,
29892,
322,
278,
9886,
29871,
29906,
734,
294,
1129,
787,
17182,
29889,
2803,
2317,
29892,
443,
11911,
287,
29892,
363,
29871,
29896,
29900,
6233,
577,
278,
21054,
943,
1999,
355,
29889,
3387,
1434,
16330,
29892,
7689,
682,
280,
278,
22300,
411,
278,
1459,
4467,
273,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29941,
29941,
13,
13,
7827,
9950,
29871,
29947,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29941,
29945,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29946,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29955,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29896,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29906,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1763,
4386,
278,
27654,
2135,
29879,
5948,
1550,
14712,
963,
29892,
671,
1023,
3477,
575,
2719,
29892,
1316,
408,
1023,
13345,
787,
470,
363,
2039,
29892,
470,
697,
310,
1269,
29889,
13,
13,
29903,
27998,
4810,
8949,
4214,
350,
1164,
3308,
29901,
3872,
29915,
29873,
1925,
3448,
1906,
288,
1446,
577,
5172,
29991,
9038,
17803,
338,
2309,
29892,
5941,
714,
278,
5232,
7984,
261,
322,
679,
263,
2343,
1369,
373,
278,
7250,
491,
3907,
288,
271,
1004,
284,
975,
11147,
29889,
12790,
368,
805,
764,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
411,
7984,
292,
805,
764,
29889,
512,
278,
5232,
7984,
261,
29892,
23546,
4208,
29871,
29906,
2723,
567,
443,
1111,
12504,
288,
271,
1004,
284,
313,
1655,
295,
29899,
7582,
470,
29081,
29897,
322,
29871,
29946,
30226,
2723,
567,
4094,
29889,
624,
381,
297,
15774,
322,
4259,
886,
29892,
565,
7429,
313,
1454,
1342,
29892,
3060,
2986,
26163,
322,
5962,
274,
2559,
314,
265,
467,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29953,
304,
29871,
29955,
6199,
29892,
470,
2745,
278,
288,
271,
1004,
284,
338,
22707,
322,
278,
4094,
338,
17977,
2580,
29889,
13,
13,
2277,
23041,
283,
330,
398,
833,
13,
13,
4013,
9522,
412,
3913,
278,
29703,
310,
278,
5232,
7984,
261,
541,
1045,
19416,
263,
10809,
310,
21054,
272,
366,
508,
871,
679,
491,
937,
3347,
1076,
278,
1652,
473,
322,
872,
329,
29948,
292,
278,
18655,
1849,
29889,
1816,
345,
975,
1652,
3096,
29891,
17354,
19408,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
31690,
18002,
599,
29899,
15503,
4220,
1652,
473,
13,
13,
29896,
18002,
4094,
322,
29871,
29896,
18002,
4094,
29892,
13931,
671,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29906,
18350,
18130,
29879,
310,
6432,
708,
29892,
3060,
2986,
13,
13,
29896,
2319,
373,
291,
29892,
270,
7612,
13,
13,
29896,
18350,
7933,
22623,
1236,
2496,
29892,
270,
7612,
13,
13,
29906,
2723,
567,
269,
506,
287,
3431,
336,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
270,
7612,
6454,
20452,
29892,
563,
22042,
13,
13,
29896,
6131,
1129,
265,
15795,
29899,
9021,
6760,
1772,
470,
315,
1175,
348,
4259,
292,
1999,
355,
13,
13,
29896,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
29896,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
30226,
734,
294,
1129,
265,
28838,
29899,
3293,
7375,
29899,
412,
2496,
12507,
346,
313,
25253,
29897,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29947,
29871,
1309,
778,
6635,
15161,
977,
10376,
29892,
364,
1144,
287,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
30642,
29899,
22466,
12785,
13,
13,
29947,
29871,
1309,
778,
10650,
18350,
528,
5632,
29886,
29892,
1236,
29872,
839,
29892,
364,
1144,
287,
29892,
322,
282,
19667,
15589,
13,
13,
797,
263,
2919,
2071,
7324,
29892,
7984,
278,
1652,
473,
975,
18350,
29899,
9812,
12871,
363,
29871,
29946,
304,
29871,
29945,
6233,
29892,
470,
2745,
22843,
17354,
29892,
23546,
5393,
13672,
29889,
24274,
16112,
577,
372,
1838,
29915,
29873,
12138,
29889,
512,
263,
18350,
12580,
29880,
29892,
377,
3873,
4208,
278,
1652,
473,
322,
29871,
29896,
18002,
4094,
2745,
6446,
1999,
2760,
29889,
6803,
964,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
29889,
13,
13,
797,
278,
1021,
2071,
7324,
29892,
12871,
278,
17182,
29892,
1603,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
6432,
708,
29892,
373,
291,
29892,
322,
22623,
1236,
2496,
363,
29871,
29945,
304,
29871,
29953,
6233,
29892,
470,
2745,
22707,
29899,
29883,
3780,
29886,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
3431,
336,
29889,
17278,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
22707,
29899,
29883,
3780,
29886,
29892,
23546,
5393,
23025,
29889,
17934,
278,
6432,
708,
29544,
304,
278,
5232,
7984,
261,
29889,
13,
13,
855,
381,
297,
278,
6454,
20452,
411,
23904,
29892,
4259,
292,
1999,
355,
29892,
7171,
506,
4764,
672,
29892,
274,
9735,
29892,
7375,
29899,
412,
2496,
12507,
346,
29892,
15795,
29892,
1236,
2496,
29892,
322,
278,
9886,
29871,
29896,
18002,
4094,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29953,
304,
29871,
29955,
6199,
470,
373,
1880,
363,
29871,
29906,
30226,
304,
29871,
29941,
30226,
6199,
29889,
624,
381,
297,
278,
9427,
322,
528,
5632,
29886,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29896,
7234,
470,
373,
1880,
363,
29871,
29941,
29900,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
322,
278,
528,
5632,
29886,
526,
282,
682,
373,
278,
5377,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29945,
29906,
13,
13,
7827,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29906,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29945,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29896,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29906,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
315,
1525,
29949,
1307,
6323,
12766,
29967,
3904,
3725,
29909,
3094,
4214,
350,
1307,
2797,
29901,
1763,
1207,
596,
1914,
15795,
29899,
9021,
6760,
1772,
470,
315,
1175,
348,
4259,
292,
1999,
355,
29892,
23546,
4208,
29871,
30226,
734,
294,
1129,
265,
1269,
310,
521,
2638,
4764,
672,
29892,
5962,
274,
9735,
29892,
373,
291,
4764,
672,
29892,
7171,
506,
4764,
672,
29892,
3500,
374,
1335,
29892,
322,
1236,
2496,
29892,
322,
29892,
565,
366,
6398,
29892,
29871,
229,
136,
158,
734,
294,
1129,
265,
310,
274,
388,
4584,
29889,
910,
3732,
925,
975,
29871,
29896,
6131,
1129,
265,
310,
278,
1999,
355,
29936,
3765,
470,
21954,
278,
26999,
565,
366,
763,
29892,
322,
3013,
278,
4805,
297,
263,
5639,
411,
263,
528,
5790,
2246,
304,
671,
297,
916,
7205,
1181,
397,
29892,
282,
5059,
2202,
29892,
27654,
29892,
322,
18655,
519,
270,
17006,
29889,
13,
13,
2277,
7537,
15816,
29899,
5553,
424,
307,
4497,
3712,
13,
13,
29903,
677,
7984,
292,
338,
385,
10839,
982,
304,
9801,
393,
596,
4497,
3712,
338,
7970,
2309,
1432,
931,
29892,
322,
372,
6858,
1407,
2217,
5941,
786,
29889,
317,
16668,
29892,
2143,
690,
2790,
24841,
12814,
29879,
9560,
368,
411,
278,
1560,
554,
3335,
310,
274,
9735,
322,
278,
12871,
310,
521,
2638,
4764,
672,
322,
2654,
1236,
2496,
17422,
10794,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
18350,
24841,
29892,
5700,
964,
29871,
29946,
364,
3885,
13,
13,
29946,
4497,
3712,
977,
10376,
411,
19309,
313,
12717,
29871,
29945,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
734,
294,
1129,
265,
521,
2638,
4764,
672,
13,
13,
30226,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
13,
13,
30515,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29896,
18350,
454,
3712,
470,
301,
603,
29892,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
20769,
368,
805,
764,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
411,
7984,
292,
805,
764,
29889,
826,
3881,
278,
24841,
364,
3885,
297,
278,
5232,
7984,
261,
29892,
975,
433,
3262,
963,
10029,
29889,
15484,
278,
9427,
373,
278,
24841,
364,
3885,
411,
278,
19309,
2625,
1623,
29889,
1771,
1878,
278,
17182,
975,
278,
9427,
29889,
512,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
521,
2638,
4764,
672,
29892,
274,
9735,
29892,
15795,
29892,
322,
2654,
1236,
2496,
17422,
10794,
29889,
14314,
682,
280,
278,
29544,
975,
278,
9427,
29889,
17278,
29892,
10664,
29892,
373,
1880,
363,
29871,
29896,
7234,
304,
29871,
29896,
7234,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
9427,
338,
278,
7429,
1016,
18543,
29889,
13,
13,
4300,
571,
278,
9427,
304,
715,
1078,
29889,
14314,
682,
280,
411,
278,
274,
309,
424,
307,
29889,
1816,
345,
411,
278,
454,
3712,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29953,
29896,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29946,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
2277,
521,
488,
273,
521,
21475,
322,
18655,
519,
1886,
29893,
13,
13,
29907,
1398,
338,
263,
5972,
2348,
1127,
993,
297,
13430,
273,
2723,
275,
457,
322,
338,
4049,
1304,
297,
27654,
270,
17006,
29889,
512,
445,
9953,
1318,
29892,
372,
884,
14741,
408,
263,
12003,
759,
297,
278,
883,
310,
26343,
1004,
284,
29889,
350,
650,
29899,
262,
521,
21475,
12778,
4805,
21054,
272,
304,
1886,
5652,
29892,
541,
6456,
304,
2313,
538,
278,
19309,
1434,
7984,
292,
304,
27399,
1568,
310,
278,
269,
1337,
630,
9950,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
322,
29871,
29896,
18002,
18655,
519,
29544,
639,
16330,
13,
13,
29896,
2919,
373,
291,
29892,
5700,
964,
29871,
29896,
29899,
22466,
14837,
2710,
13,
13,
29896,
29906,
29871,
1309,
778,
2319,
2654,
3104,
20452,
29892,
5700,
964,
29871,
29896,
29899,
22466,
14837,
2710,
13,
13,
29896,
2919,
14225,
3104,
1219,
29892,
5700,
964,
29871,
29896,
30226,
29899,
22466,
12785,
13,
13,
29896,
2919,
2654,
22623,
1236,
2496,
29892,
5700,
964,
29871,
29896,
30226,
29899,
22466,
12785,
13,
13,
29946,
29871,
1309,
778,
7933,
367,
550,
29892,
17151,
2168,
322,
5700,
964,
29871,
29896,
30226,
29899,
22466,
12785,
13,
13,
29896,
18002,
14671,
2256,
3353,
29899,
17460,
26343,
29892,
266,
1450,
287,
13,
13,
29896,
29871,
29906,
30226,
29899,
304,
29871,
29941,
29899,
29886,
618,
521,
21475,
29892,
5700,
964,
16330,
12785,
29892,
19309,
29892,
599,
7962,
9950,
29892,
18873,
29892,
322,
330,
1821,
1372,
2313,
25600,
13,
13,
29941,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
31690,
18002,
26343,
1004,
284,
13,
13,
29906,
6131,
1129,
787,
5962,
274,
9735,
13,
13,
29896,
6131,
1129,
265,
5962,
1034,
29875,
3825,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
13,
13,
30226,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
797,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
29892,
1207,
697,
7546,
1269,
29892,
297,
1797,
29892,
310,
278,
373,
291,
29892,
3104,
20452,
29892,
14225,
3104,
1219,
29892,
22623,
1236,
2496,
29892,
7933,
367,
550,
29892,
322,
26343,
29889,
15484,
278,
521,
21475,
373,
278,
26343,
29889,
13,
13,
797,
263,
2919,
12580,
29880,
29892,
377,
3873,
4208,
278,
9886,
2348,
1127,
10070,
5174,
278,
274,
309,
424,
307,
29889,
6803,
964,
278,
5232,
7984,
261,
29889,
402,
2705,
3965,
1623,
373,
278,
521,
21475,
577,
372,
29915,
29879,
22039,
10664,
491,
278,
2545,
386,
29544,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29953,
304,
29871,
29947,
6199,
470,
373,
1880,
363,
29871,
29941,
304,
29871,
29946,
6199,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29892,
278,
373,
291,
338,
4964,
29892,
322,
278,
18655,
1849,
526,
22707,
29889,
13,
13,
14084,
1434,
16330,
29892,
7689,
682,
280,
411,
278,
274,
309,
424,
307,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29929,
29953,
13,
13,
7827,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29945,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29929,
330,
13,
13,
7241,
495,
29871,
29953,
330,
13,
13,
29879,
688,
1503,
29871,
29947,
330,
13,
13,
14676,
262,
29871,
29906,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
521,
21475,
413,
555,
29874,
13,
13,
10858,
29181,
674,
5445,
411,
278,
263,
456,
29874,
310,
429,
13574,
805,
1575,
746,
366,
19012,
445,
7560,
270,
728,
29889,
3824,
29892,
2466,
29892,
278,
521,
21475,
4225,
304,
1766,
16976,
363,
408,
2217,
408,
697,
7234,
470,
408,
1472,
408,
975,
11147,
29889,
1816,
345,
445,
9953,
1318,
975,
2362,
29885,
2219,
19408,
304,
4380,
599,
278,
12507,
346,
29889,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
322,
29871,
30226,
18002,
12507,
346,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
2919,
373,
291,
29892,
1302,
1503,
873,
3060,
2986,
29892,
322,
29871,
29896,
2919,
373,
291,
29892,
16835,
368,
269,
506,
287,
29892,
13931,
671,
13,
13,
30515,
18002,
269,
14381,
287,
470,
269,
506,
287,
394,
8315,
29879,
13,
13,
29896,
2319,
10849,
432,
2883,
412,
8266,
29892,
409,
5779,
322,
18130,
29879,
2313,
25600,
29892,
270,
7612,
313,
4149,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
29896,
29871,
29896,
29899,
22466,
8424,
1236,
29872,
839,
330,
5621,
4632,
29892,
269,
506,
287,
4891,
3538,
13,
13,
29906,
6131,
1129,
787,
4094,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
3060,
2986,
13,
13,
29896,
734,
294,
1129,
265,
5962,
1034,
29875,
3825,
13,
13,
229,
136,
159,
734,
294,
1129,
265,
15795,
13,
13,
29947,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
13,
13,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
274,
2559,
314,
265,
12070,
313,
12717,
29871,
29941,
22831,
1472,
511,
9391,
297,
4203,
13,
13,
29896,
6131,
1129,
265,
3151,
719,
4764,
672,
13,
13,
29896,
734,
294,
1129,
265,
7171,
314,
5516,
2883,
13,
13,
30226,
734,
294,
1129,
265,
5962,
7013,
1050,
293,
13,
13,
29906,
6131,
1129,
787,
26343,
303,
1279,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29896,
29953,
29871,
1309,
778,
14671,
2256,
7933,
1236,
294,
29892,
266,
1450,
287,
13,
13,
29896,
18002,
9950,
29899,
9021,
8656,
343,
468,
4227,
313,
29954,
7285,
16389,
511,
472,
5716,
10430,
13,
13,
29906,
6131,
1129,
787,
269,
506,
287,
394,
8315,
29879,
29892,
15589,
29899,
307,
28470,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
20769,
368,
805,
764,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
411,
7984,
292,
805,
764,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
3060,
2986,
373,
291,
29892,
29871,
30515,
18002,
394,
8315,
29879,
29892,
432,
2883,
412,
8266,
29892,
330,
5621,
4632,
29892,
4094,
29892,
7171,
506,
29892,
1034,
29875,
3825,
29892,
322,
15795,
2745,
10597,
29889,
17934,
304,
263,
2919,
12580,
29880,
29889,
13,
13,
22908,
278,
521,
21475,
297,
263,
2919,
4091,
340,
12917,
270,
728,
29889,
5293,
263,
14051,
495,
24559,
546,
29892,
9677,
599,
278,
3060,
2986,
373,
291,
29544,
975,
1716,
11192,
310,
278,
521,
21475,
29889,
26428,
278,
270,
728,
19932,
368,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
7234,
304,
975,
11147,
29889,
13,
13,
797,
263,
18350,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
269,
506,
287,
373,
291,
363,
29871,
29896,
29900,
6233,
29892,
470,
2745,
22843,
29892,
23546,
5393,
13672,
322,
10365,
292,
278,
12871,
408,
5181,
577,
372,
1838,
29915,
29873,
12138,
29889,
4367,
24551,
278,
12871,
304,
4482,
29889,
13,
13,
855,
381,
297,
278,
274,
2559,
314,
265,
12070,
29892,
3151,
719,
4764,
672,
29892,
7171,
314,
5516,
2883,
29892,
322,
7013,
1050,
293,
29889,
17278,
363,
29871,
29896,
11015,
29892,
23546,
5393,
13672,
577,
278,
805,
1575,
1016,
29915,
29873,
12138,
29889,
13,
13,
6816,
273,
8000,
29892,
1925,
278,
26343,
303,
1279,
297,
263,
2319,
12580,
29880,
29889,
3462,
278,
2545,
386,
29892,
377,
3873,
292,
304,
23556,
345,
29889,
13,
13,
855,
381,
278,
26343,
303,
1279,
29544,
964,
278,
269,
506,
287,
373,
291,
29544,
29889,
512,
1037,
559,
278,
12871,
304,
18350,
1880,
29889,
1771,
292,
304,
263,
1045,
309,
29892,
23546,
5393,
21003,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29896,
11015,
29892,
470,
2745,
278,
12507,
346,
338,
12003,
6419,
29892,
23546,
5393,
21003,
29889,
13,
13,
1433,
3881,
4203,
278,
521,
21475,
29892,
3704,
738,
9886,
3060,
2986,
373,
291,
29544,
29892,
297,
278,
5232,
7984,
261,
29889,
6803,
4203,
278,
12507,
346,
975,
278,
521,
21475,
29889,
830,
11666,
411,
278,
9886,
521,
21475,
322,
12507,
346,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29941,
30226,
304,
29871,
29945,
30226,
6199,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
2182,
860,
368,
1671,
278,
1236,
294,
975,
278,
12507,
346,
313,
9176,
29915,
29873,
23546,
29897,
322,
337,
29899,
11911,
278,
5232,
7984,
261,
29889,
17278,
363,
29871,
29941,
29900,
6233,
29892,
470,
2745,
278,
1236,
294,
526,
22707,
29889,
13,
13,
4300,
571,
278,
521,
21475,
304,
16330,
12580,
3137,
29892,
10124,
278,
12507,
346,
297,
278,
5232,
7984,
261,
29889,
624,
381,
278,
343,
468,
4227,
964,
278,
12507,
346,
29889,
24674,
265,
975,
278,
521,
21475,
29889,
14314,
682,
280,
411,
278,
9886,
29871,
29906,
6131,
1129,
787,
394,
8315,
29879,
29892,
769,
411,
278,
274,
309,
424,
307,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29953,
29896,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29906,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29947,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29941,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
30226,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
910,
9522,
412,
5717,
363,
278,
4482,
4444,
408,
278,
871,
2984,
1363,
278,
21054,
943,
817,
278,
5520,
7984,
292,
931,
304,
2693,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
402,
1718,
5194,
341,
3289,
1964,
29909,
29901,
7455,
314,
5516,
2883,
338,
385,
7560,
1999,
355,
310,
805,
1575,
5491,
3704,
1236,
2496,
29892,
274,
2559,
314,
265,
29892,
17184,
1960,
29892,
274,
9735,
29892,
322,
7375,
521,
5475,
29889,
450,
1024,
2794,
376,
29893,
2817,
29908,
470,
376,
8711,
1699,
23941,
393,
270,
17006,
6943,
445,
1999,
355,
526,
805,
4245,
29889,
739,
29915,
29879,
5491,
1476,
297,
278,
805,
625,
470,
11314,
7823,
29899,
1181,
19653,
263,
275,
280,
310,
4071,
29883,
708,
14422,
29889,
13,
13,
2277,
521,
21475,
274,
21566,
6082,
411,
4940,
29874,
13,
13,
4013,
10545,
1667,
303,
388,
756,
1063,
4784,
363,
9826,
29915,
29879,
5400,
7984,
29889,
5373,
265,
623,
300,
2049,
29991,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29896,
30226,
2723,
567,
274,
21566,
6082,
322,
29871,
30226,
18002,
4940,
29874,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29907,
2477,
8426,
1299,
29949,
1525,
13,
13,
29896,
6131,
1129,
265,
599,
29899,
15503,
4220,
1652,
473,
13,
13,
29896,
6131,
1129,
265,
289,
1338,
314,
293,
13848,
387,
279,
13,
13,
30226,
18002,
18168,
3656,
470,
916,
15589,
2654,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29896,
30226,
24261,
10814,
6393,
29892,
19309,
2222,
521,
21475,
2078,
19416,
29892,
599,
7962,
9950,
2313,
25600,
29892,
5700,
964,
29871,
30642,
29899,
22466,
13630,
267,
13,
13,
29947,
29871,
1309,
778,
17354,
313,
1037,
1195,
29875,
29897,
286,
1878,
18901,
29892,
269,
506,
287,
313,
12717,
29871,
29906,
30226,
2723,
567,
29897,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
1886,
8734,
6454,
20452,
29892,
563,
22042,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
270,
7612,
6454,
20452,
29892,
563,
22042,
13,
13,
29953,
29871,
1309,
778,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
11417,
13,
13,
29896,
18350,
373,
291,
29892,
8870,
1490,
29892,
16835,
368,
269,
506,
287,
29892,
322,
13055,
964,
4203,
29899,
29878,
886,
13,
13,
30226,
18350,
7933,
22623,
1236,
2496,
29892,
3060,
2986,
13,
13,
29896,
6131,
1129,
265,
270,
1255,
10545,
4259,
292,
29892,
2181,
25443,
13,
13,
29906,
2919,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29906,
734,
294,
1129,
787,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
29953,
29871,
1309,
778,
270,
1255,
3353,
29899,
3874,
262,
805,
21705,
9890,
13,
13,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
20769,
368,
805,
764,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
411,
7984,
292,
805,
764,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
1652,
473,
322,
13848,
387,
279,
2745,
278,
29544,
7190,
263,
10597,
11417,
29889,
19295,
1474,
377,
3873,
297,
278,
19006,
29889,
13,
13,
797,
278,
5232,
7984,
261,
29892,
23546,
278,
9886,
274,
21566,
6082,
2348,
1127,
10070,
4208,
29889,
624,
381,
297,
278,
19006,
29544,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29955,
304,
29871,
29947,
6199,
470,
373,
1880,
363,
29871,
29941,
304,
29871,
29946,
6199,
29889,
13,
13,
21322,
368,
1434,
16330,
931,
29892,
19012,
278,
4940,
29874,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
29889,
360,
6038,
1532,
297,
263,
784,
3825,
29889,
13,
13,
1748,
345,
278,
274,
21566,
6082,
975,
278,
4940,
29874,
29889,
14314,
682,
280,
411,
278,
1459,
4467,
273,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29946,
29906,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29929,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29896,
330,
13,
13,
7241,
495,
29871,
29955,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29946,
330,
13,
13,
14676,
262,
29871,
29941,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
380,
1279,
29892,
29871,
29946,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
696,
12846,
653,
1886,
557,
1560,
1228,
287,
297,
373,
1080,
13,
13,
4013,
9522,
412,
4893,
10631,
310,
278,
1472,
7984,
292,
1889,
304,
22707,
675,
278,
4513,
1886,
557,
29889,
3872,
29915,
29873,
367,
13421,
310,
278,
14728,
310,
373,
1080,
29889,
1094,
896,
7984,
29892,
896,
674,
281,
2782,
322,
2507,
22843,
29892,
4969,
263,
4047,
3459,
304,
3262,
363,
278,
1886,
557,
393,
674,
286,
2152,
297,
596,
13394,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
367,
1389,
322,
29871,
31690,
18002,
373,
1080,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
10814,
6393,
4513,
1886,
557,
29892,
5700,
964,
29871,
29946,
12785,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
29896,
30226,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29906,
2919,
14225,
373,
1080,
29892,
1316,
408,
18895,
19627,
29892,
22209,
29875,
29892,
470,
438,
578,
317,
16668,
29892,
269,
506,
287,
313,
12717,
29871,
29946,
2723,
567,
29897,
13,
13,
30515,
18002,
4094,
13,
13,
29946,
7689,
23379,
310,
10849,
696,
12846,
653,
13,
13,
20769,
368,
805,
764,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
411,
7984,
292,
805,
764,
29889,
3789,
17786,
29889,
13,
13,
29903,
558,
682,
280,
278,
1236,
2496,
322,
15795,
975,
1716,
11192,
310,
278,
367,
1389,
29889,
13,
13,
797,
263,
2919,
1661,
303,
860,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
367,
1389,
363,
29871,
29941,
304,
29871,
29946,
6233,
29892,
470,
2745,
3347,
9571,
29892,
14712,
2748,
4203,
1582,
1549,
29889,
13,
13,
6816,
273,
8000,
29892,
1925,
4203,
278,
373,
1080,
297,
278,
5232,
7984,
261,
29889,
15484,
278,
367,
1389,
373,
278,
373,
1080,
29889,
13,
13,
797,
1037,
559,
278,
380,
586,
300,
459,
12871,
304,
1880,
29889,
512,
278,
1021,
2071,
7324,
29892,
6963,
278,
4094,
304,
263,
1045,
309,
29892,
885,
2390,
292,
304,
766,
29880,
17979,
738,
3347,
9571,
9978,
29889,
1952,
309,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
12212,
491,
4203,
313,
517,
1048,
29871,
29906,
6131,
1129,
787,
467,
6803,
975,
278,
367,
1389,
297,
278,
5232,
7984,
261,
29889,
13,
13,
22908,
278,
696,
12846,
653,
373,
278,
367,
1389,
29889,
2522,
2620,
278,
9886,
373,
1080,
975,
278,
696,
12846,
653,
322,
367,
1389,
29889,
13,
13,
19159,
29892,
10664,
29892,
373,
4482,
363,
29871,
29946,
304,
29871,
29953,
6199,
470,
373,
1880,
363,
29871,
29906,
304,
29871,
29941,
6199,
29892,
470,
2745,
278,
367,
1389,
338,
27350,
29899,
29873,
1581,
29889,
13,
13,
4205,
7543,
278,
696,
12846,
653,
29889,
1816,
345,
278,
367,
1389,
304,
2986,
411,
278,
373,
1080,
322,
10293,
5617,
839,
411,
278,
7984,
292,
3623,
1575,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29955,
13,
13,
7827,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29947,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29955,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29906,
29953,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
1754,
3055,
1652,
804,
1886,
557,
13,
13,
29903,
677,
7984,
292,
278,
286,
1878,
18901,
3732,
963,
4997,
3730,
5343,
29894,
3305,
29889,
3462,
18266,
3055,
29892,
263,
5162,
2164,
19006,
29892,
304,
278,
12507,
346,
29889,
739,
674,
367,
577,
8261,
29899,
29873,
579,
292,
29892,
596,
28865,
674,
1348,
366,
29915,
276,
263,
13949,
3821,
26858,
29991,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
367,
1389,
322,
29871,
30515,
18002,
12507,
346,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
322,
29871,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
29892,
13931,
671,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
1652,
804,
1886,
557,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
29946,
18350,
4091,
1862,
29892,
3060,
2986,
313,
12717,
29871,
29896,
18002,
29897,
13,
13,
29947,
29871,
1309,
778,
528,
29875,
277,
1296,
286,
1878,
18901,
313,
303,
1567,
2313,
25600,
29897,
470,
12849,
429,
13574,
286,
1878,
18901,
29892,
16835,
368,
269,
506,
287,
13,
13,
30515,
18002,
18266,
3055,
470,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
367,
1389,
2545,
386,
322,
29871,
30515,
18002,
18266,
3055,
470,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
367,
1389,
2545,
386,
29892,
13931,
671,
13,
13,
29906,
6131,
1129,
787,
4094,
13,
13,
29906,
6131,
1129,
787,
3578,
23131,
15276,
279,
457,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
610,
29879,
2330,
13,
13,
20769,
368,
805,
764,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
411,
7984,
292,
805,
764,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
2919,
1661,
303,
860,
2071,
7324,
29892,
12871,
29871,
29896,
734,
294,
1129,
265,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
367,
1389,
363,
29871,
29946,
6233,
29889,
9603,
975,
278,
367,
1389,
29889,
17278,
363,
29871,
29896,
11015,
29889,
17934,
304,
263,
2919,
15284,
29889,
26428,
322,
337,
1341,
4087,
403,
304,
521,
453,
6446,
577,
372,
2113,
29915,
29873,
975,
15108,
29889,
13,
13,
797,
278,
1021,
2071,
7324,
29892,
12871,
278,
9886,
29871,
29896,
734,
294,
1129,
265,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
4091,
1862,
363,
29871,
29941,
6233,
29892,
470,
2745,
6763,
304,
17354,
29892,
23546,
5393,
13672,
29889,
17934,
304,
278,
5232,
7984,
261,
29889,
624,
381,
297,
278,
286,
1878,
18901,
29889,
13,
13,
29925,
473,
29871,
30515,
18002,
18266,
3055,
322,
278,
4094,
964,
278,
2071,
7324,
29892,
885,
2390,
292,
304,
766,
29880,
17979,
738,
3347,
9571,
9978,
29889,
624,
381,
964,
278,
4091,
327,
29544,
297,
278,
5232,
7984,
261,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29941,
30226,
304,
29871,
29946,
6199,
470,
373,
1880,
363,
29871,
29896,
7234,
29871,
29946,
29945,
6233,
304,
29871,
29906,
6199,
29892,
470,
2745,
278,
286,
1878,
18901,
526,
1407,
4964,
29889,
13,
13,
3644,
773,
278,
4482,
4444,
29892,
1735,
372,
304,
1880,
29889,
26141,
368,
23546,
297,
278,
15276,
279,
457,
29892,
15795,
29892,
322,
278,
9886,
29871,
30515,
18002,
18266,
3055,
29889,
15484,
278,
367,
1389,
373,
2246,
29889,
6803,
297,
738,
18414,
7964,
3623,
1575,
515,
278,
367,
1389,
29889,
830,
29899,
11911,
278,
5232,
7984,
261,
29889,
17278,
363,
29871,
29906,
29900,
304,
29871,
29941,
29900,
6233,
29892,
470,
2745,
278,
367,
1389,
338,
540,
630,
1549,
29889,
13,
13,
4300,
571,
278,
367,
1389,
304,
263,
28967,
7613,
29892,
10124,
278,
12507,
346,
297,
278,
5232,
7984,
261,
29889,
10726,
278,
4444,
304,
4482,
29889,
315,
329,
278,
367,
1389,
7936,
265,
635,
4822,
278,
2646,
262,
964,
16835,
269,
29399,
29889,
3387,
1434,
16330,
29892,
805,
6150,
278,
12507,
346,
975,
278,
367,
1389,
29889,
14314,
682,
280,
411,
278,
610,
29879,
2330,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29955,
29946,
13,
13,
7827,
9950,
29871,
29896,
29896,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29953,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
29947,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29953,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29929,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
887,
508,
671,
269,
506,
287,
2826,
286,
1878,
18901,
297,
2058,
310,
278,
528,
29875,
277,
1296,
470,
12849,
429,
13574,
286,
1878,
18901,
29892,
541,
896,
674,
505,
263,
2586,
3109,
21054,
272,
29889,
13,
13,
2277,
716,
21800,
2185,
27654,
658,
2142,
13,
13,
4373,
12568,
338,
13834,
363,
967,
7933,
29899,
305,
488,
923,
267,
774,
2007,
414,
29892,
607,
892,
278,
8681,
12232,
363,
445,
21054,
272,
1319,
27654,
658,
2142,
29889,
739,
29915,
29879,
1921,
7176,
411,
9978,
310,
286,
789,
29892,
696,
28470,
6130,
29880,
1562,
1236,
2496,
322,
8128,
263,
16671,
310,
286,
2152,
287,
923,
968,
297,
278,
7256,
29889,
7133,
278,
27654,
658,
2142,
29915,
29879,
13407,
931,
29892,
671,
596,
20710,
798,
1351,
304,
1207,
4358,
617,
5079,
411,
435,
2883,
412,
8266,
322,
7455,
506,
363,
263,
805,
4245,
2625,
29889,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
29871,
29896,
22780,
470,
281,
12864,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
22577,
270,
7612,
6454,
20452,
29892,
23904,
21676,
29892,
13931,
671,
13,
13,
29896,
30226,
24261,
4805,
29899,
14044,
5962,
367,
1389,
13,
13,
30226,
18002,
1436,
873,
3060,
2986,
14225,
373,
291,
29892,
1316,
408,
18895,
19627,
29892,
22209,
29875,
29892,
470,
438,
578,
317,
16668,
13,
13,
30226,
18002,
8656,
15589,
3353,
29899,
29893,
354,
271,
18423,
2181,
3774,
29879,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
30515,
18002,
3060,
2986,
696,
28470,
6130,
29880,
1562,
1236,
2496,
322,
29871,
30515,
18002,
3060,
2986,
696,
28470,
6130,
29880,
1562,
1236,
2496,
313,
12717,
263,
29871,
29946,
29899,
21543,
6130,
29880,
1562,
511,
13931,
671,
313,
4149,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
29896,
2919,
19710,
4796,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
274,
309,
424,
307,
322,
29871,
29906,
6131,
1129,
787,
3060,
2986,
10849,
274,
309,
424,
307,
29892,
13931,
671,
13,
13,
29906,
734,
294,
1129,
787,
385,
1859,
4764,
672,
470,
521,
2638,
4764,
672,
13,
13,
29896,
30226,
734,
294,
1129,
787,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
29896,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
29896,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30226,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
29871,
29946,
29899,
1173,
968,
24777,
1999,
355,
13,
13,
30515,
18002,
694,
29899,
29879,
1997,
29899,
23959,
413,
3486,
786,
13,
13,
29943,
1025,
385,
29871,
29896,
29947,
29899,
22466,
29899,
5426,
8424,
310,
394,
9735,
398,
1701,
309,
3309,
3538,
297,
4654,
29879,
29889,
15484,
278,
1701,
309,
297,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
288,
791,
5232,
7984,
261,
577,
372,
6057,
278,
3309,
310,
278,
7984,
261,
322,
13958,
29879,
975,
278,
1023,
3273,
11192,
29889,
450,
1701,
309,
674,
1371,
366,
3349,
278,
7984,
287,
27654,
658,
2142,
515,
278,
5232,
7984,
261,
2678,
29889,
12790,
368,
805,
764,
278,
1701,
309,
322,
278,
2768,
310,
278,
5232,
7984,
261,
411,
7984,
292,
805,
764,
29889,
13,
13,
22908,
29871,
30226,
18002,
310,
278,
6454,
20452,
322,
599,
278,
21676,
23904,
297,
263,
2919,
12580,
29880,
29889,
3789,
17786,
278,
9886,
6454,
20452,
29889,
13,
13,
2528,
278,
367,
1389,
29892,
373,
291,
29892,
18423,
2181,
3774,
29879,
29892,
29871,
30515,
18002,
6130,
29880,
1562,
1236,
2496,
29892,
278,
19710,
4796,
29892,
29871,
29906,
6131,
1129,
787,
274,
309,
424,
307,
29892,
278,
385,
1859,
4764,
672,
29892,
470,
387,
1562,
29892,
274,
9735,
29892,
7171,
506,
4764,
672,
29892,
322,
15795,
304,
278,
6454,
1219,
29544,
29889,
5293,
596,
6567,
470,
263,
805,
6150,
29892,
330,
2705,
14405,
278,
2348,
1127,
10070,
29889,
17934,
4203,
278,
29544,
304,
263,
12151,
7101,
29889,
28277,
373,
278,
8267,
310,
596,
5232,
7984,
261,
29892,
8267,
964,
263,
658,
2142,
393,
674,
6216,
297,
278,
5232,
7984,
261,
322,
5967,
1048,
263,
29871,
29896,
29899,
22466,
2913,
599,
2820,
1546,
372,
322,
278,
2625,
310,
278,
8182,
384,
29889,
13,
13,
15156,
596,
285,
292,
814,
4512,
29892,
330,
2705,
3965,
278,
658,
2142,
304,
883,
263,
29871,
29896,
29899,
22466,
534,
820,
1623,
278,
4818,
29889,
12065,
278,
923,
968,
297,
278,
534,
820,
29889,
26428,
278,
658,
2142,
411,
278,
9886,
4203,
310,
278,
367,
1389,
29544,
29892,
330,
2705,
24795,
278,
12770,
4208,
304,
409,
284,
1532,
29889,
17934,
304,
278,
5232,
7984,
261,
29892,
24421,
278,
27654,
658,
2142,
577,
278,
1701,
309,
17820,
338,
1090,
278,
7256,
310,
372,
29889,
17278,
29892,
10664,
29892,
373,
1880,
363,
29871,
29896,
7234,
29889,
10726,
278,
4444,
304,
4482,
322,
7984,
29892,
10664,
29892,
363,
29871,
29941,
6199,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
413,
3486,
786,
322,
278,
9886,
6454,
20452,
29892,
29871,
30515,
18002,
6130,
29880,
1562,
1236,
2496,
29892,
322,
29871,
29906,
6131,
1129,
787,
274,
309,
424,
307,
29889,
13,
13,
10401,
278,
27654,
658,
2142,
338,
7960,
29892,
9098,
805,
6150,
278,
413,
3486,
786,
29544,
975,
278,
2246,
322,
337,
29899,
11911,
278,
5232,
7984,
261,
29889,
17278,
373,
4482,
363,
29871,
29896,
7234,
29892,
470,
2745,
278,
27654,
658,
2142,
28975,
29871,
29896,
29953,
29900,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
29892,
6724,
988,
727,
338,
694,
923,
968,
29889,
1632,
4692,
292,
278,
10614,
310,
278,
1701,
309,
29892,
16112,
13777,
278,
27654,
658,
2142,
515,
278,
5232,
7984,
261,
29889,
17934,
304,
263,
28967,
7613,
29889,
2803,
2317,
363,
29871,
29896,
29900,
6233,
1434,
269,
506,
292,
470,
28967,
964,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29945,
13,
13,
7827,
9950,
29871,
29953,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29896,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29941,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29896,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
960,
366,
1016,
29915,
29873,
505,
385,
288,
791,
5232,
7984,
261,
29892,
366,
508,
1603,
1207,
445,
270,
728,
29889,
3387,
1207,
596,
27654,
658,
2142,
4513,
29991,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
16641,
28938,
4214,
21521,
13367,
2190,
29949,
349,
15488,
13171,
29903,
29901,
1763,
696,
579,
263,
6130,
29880,
1562,
1236,
2496,
29892,
758,
354,
271,
278,
2545,
3955,
29889,
8142,
345,
278,
1236,
2496,
3309,
3538,
322,
2313,
538,
278,
409,
5779,
322,
18130,
29879,
313,
915,
1854,
304,
19531,
715,
6288,
15482,
1960,
470,
304,
471,
29882,
596,
6567,
26606,
411,
14294,
29892,
577,
27580,
4094,
1156,
11415,
278,
1236,
2496,
467,
15484,
278,
8870,
1960,
411,
278,
19309,
2625,
701,
373,
263,
289,
5086,
9869,
301,
1312,
411,
394,
9735,
398,
1701,
309,
29889,
4358,
309,
29871,
29946,
304,
29871,
29945,
22831,
515,
278,
12871,
363,
29871,
29955,
304,
29871,
29929,
6233,
29892,
470,
2745,
278,
19309,
338,
4628,
6419,
322,
1999,
1531,
287,
29889,
15154,
278,
289,
5086,
9869,
515,
278,
288,
854,
322,
12244,
278,
1701,
309,
2820,
278,
1236,
2496,
29889,
2803,
2317,
363,
29871,
29896,
29945,
304,
29871,
29906,
29900,
6233,
29892,
470,
2745,
12528,
3307,
304,
4386,
29889,
1763,
3349,
278,
19309,
411,
16326,
29892,
8206,
515,
278,
11520,
1095,
310,
278,
1236,
2496,
29889,
13,
13,
2277,
3165,
8366,
322,
12461,
12053,
1869,
15713,
9679,
29899,
14340,
13,
13,
29940,
5301,
17796,
3165,
8366,
411,
1869,
15713,
29973,
450,
7171,
1406,
29891,
17796,
29544,
3732,
263,
26800,
368,
628,
14803,
2317,
29899,
262,
363,
278,
9670,
9597,
13536,
27523,
29889,
887,
508,
1207,
278,
3165,
8366,
322,
278,
4940,
29874,
278,
2462,
1434,
16330,
278,
9679,
29899,
14340,
304,
10032,
278,
6567,
29899,
265,
931,
1434,
25948,
701,
278,
5232,
7984,
261,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
9679,
29899,
786,
322,
29871,
30226,
18002,
12507,
346,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
18350,
503,
1682,
305,
2172,
29892,
12616,
287,
3309,
3538,
322,
5700,
4891,
3538,
964,
29871,
29896,
29899,
22466,
12785,
13,
13,
29896,
18350,
7933,
22623,
1236,
2496,
29892,
5700,
964,
29871,
29896,
29899,
22466,
25256,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29946,
270,
1255,
3353,
29899,
3874,
262,
1869,
15713,
694,
397,
793,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
302,
5301,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29906,
6131,
1129,
787,
4094,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
29900,
29871,
1309,
778,
14671,
2256,
3060,
2986,
10917,
496,
29892,
266,
1450,
287,
29892,
7482,
1312,
29892,
322,
269,
802,
6096,
287,
2745,
1407,
15589,
13,
13,
30226,
18002,
3060,
2986,
10849,
610,
29879,
2330,
322,
29871,
29906,
6131,
1129,
787,
3060,
2986,
10849,
610,
29879,
2330,
29892,
13931,
671,
13,
13,
29906,
2919,
19710,
18960,
13,
13,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
322,
29871,
29896,
6131,
1129,
265,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
29892,
13931,
671,
13,
13,
29896,
30226,
6131,
1129,
787,
270,
1255,
2362,
309,
29892,
2181,
25443,
13,
13,
29906,
2723,
567,
27654,
2222,
805,
21705,
9890,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
30515,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
286,
2112,
29920,
598,
13520,
923,
968,
13,
13,
20769,
368,
805,
764,
263,
29871,
29946,
29899,
304,
29871,
29953,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
411,
7984,
292,
805,
764,
29889,
12065,
278,
503,
1682,
305,
2172,
29892,
22623,
1236,
2496,
29892,
322,
17182,
297,
278,
5232,
7984,
261,
29892,
23546,
5393,
304,
14405,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29945,
304,
29871,
29945,
30226,
6199,
470,
373,
1880,
363,
29871,
29906,
30226,
6199,
304,
29871,
29906,
6199,
29871,
29946,
29945,
6233,
29892,
470,
2745,
278,
22623,
1236,
2496,
338,
3347,
9571,
373,
278,
12770,
322,
1407,
22707,
29889,
13,
13,
6816,
273,
8000,
29892,
19012,
278,
694,
397,
793,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
29889,
360,
6038,
1532,
297,
263,
784,
3825,
29889,
1706,
949,
714,
373,
263,
270,
728,
304,
20466,
29889,
4121,
15589,
411,
5650,
304,
29893,
1379,
29889,
2803,
278,
694,
397,
793,
12528,
29892,
1048,
29871,
29896,
29900,
6233,
29889,
17934,
963,
304,
263,
5639,
2919,
3307,
363,
963,
304,
3804,
12151,
29889,
313,
1762,
5557,
963,
515,
12070,
292,
4208,
29892,
5004,
278,
694,
397,
793,
411,
7984,
292,
610,
305,
358,
470,
281,
1165,
5650,
470,
871,
10029,
25457,
963,
1846,
26428,
322,
337,
1341,
4087,
403,
2745,
4312,
29889,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
367,
550,
29892,
4094,
29892,
322,
7171,
506,
2745,
10597,
29889,
17934,
278,
3165,
8366,
304,
263,
2919,
12580,
29880,
29889,
624,
381,
297,
278,
10917,
496,
29892,
29871,
30226,
18002,
610,
29879,
2330,
29892,
278,
19710,
18960,
29892,
29871,
29906,
6131,
1129,
787,
1459,
4467,
273,
29892,
322,
278,
2362,
309,
29889,
26428,
322,
337,
1341,
4087,
403,
2745,
4312,
29889,
13,
13,
21322,
368,
1434,
278,
503,
1682,
305,
2172,
29544,
338,
7960,
29892,
2058,
278,
694,
397,
793,
373,
263,
664,
7101,
29889,
1706,
949,
29871,
30226,
18002,
3165,
8366,
373,
1269,
694,
397,
280,
29889,
402,
2705,
9679,
701,
515,
697,
310,
278,
3273,
10614,
29889,
13,
13,
10401,
278,
503,
1682,
305,
2172,
29544,
756,
7984,
287,
29892,
9098,
23546,
372,
29889,
15484,
278,
9679,
29899,
14340,
411,
278,
409,
314,
2625,
1623,
373,
278,
503,
1682,
305,
2172,
29544,
29889,
6803,
278,
805,
21705,
9890,
12507,
346,
975,
278,
9679,
29899,
14340,
29889,
830,
29899,
11911,
278,
5232,
7984,
261,
29889,
17278,
373,
4482,
363,
29871,
29906,
6199,
470,
373,
1880,
363,
29871,
29896,
7234,
29892,
470,
2745,
278,
9679,
29899,
14340,
526,
540,
630,
1549,
322,
278,
12507,
346,
338,
289,
431,
29890,
368,
2820,
278,
7636,
29889,
14314,
682,
280,
411,
278,
286,
2112,
29920,
598,
13520,
322,
278,
9886,
29871,
29906,
6131,
1129,
787,
610,
29879,
2330,
322,
29871,
29896,
6131,
1129,
265,
1459,
4467,
273,
29889,
9603,
1283,
278,
5232,
7984,
261,
29889,
2803,
2317,
29892,
10664,
29892,
363,
29871,
29945,
304,
29871,
29896,
29900,
6233,
577,
278,
923,
21523,
286,
2152,
10029,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29929,
29941,
13,
13,
7827,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29900,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29955,
330,
13,
13,
7241,
495,
29871,
29896,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29896,
330,
13,
13,
14676,
262,
29871,
29896,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29896,
30226,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
8561,
263,
3765,
9522,
412,
310,
278,
3165,
8366,
577,
366,
29915,
645,
505,
777,
304,
13389,
411,
289,
12535,
3353,
29899,
3874,
262,
282,
2028,
14837,
2710,
470,
24354,
1559,
307,
1372,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
887,
508,
4480,
2745,
1048,
29871,
29946,
29945,
6233,
1434,
278,
503,
1682,
305,
2172,
29544,
756,
7743,
7984,
292,
304,
1045,
309,
278,
694,
397,
793,
322,
1207,
278,
3165,
8366,
29892,
565,
393,
1736,
2253,
411,
596,
20410,
29889,
13,
13,
29903,
27998,
4810,
8949,
4214,
350,
1164,
3308,
29901,
960,
366,
5821,
304,
671,
270,
1255,
367,
550,
297,
445,
322,
916,
9522,
5547,
29892,
896,
7984,
701,
4997,
3730,
297,
278,
5232,
7984,
261,
29889,
390,
262,
344,
322,
270,
6038,
270,
1255,
367,
550,
29892,
16548,
363,
25702,
322,
528,
4401,
839,
367,
550,
29889,
960,
773,
26397,
3801,
367,
550,
29892,
1045,
309,
963,
297,
4094,
363,
29871,
29896,
29900,
6233,
304,
3349,
304,
29916,
1144,
393,
508,
4556,
938,
342,
979,
1320,
1253,
313,
361,
366,
29915,
276,
773,
916,
367,
550,
29892,
727,
29915,
29879,
694,
817,
304,
1045,
309,
963,
937,
467,
12065,
29871,
29896,
304,
29871,
29906,
2723,
567,
310,
367,
550,
297,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
313,
272,
1207,
263,
16600,
9853,
773,
263,
7200,
5232,
7984,
261,
467,
6803,
297,
3307,
4094,
304,
4612,
278,
367,
550,
491,
29871,
29906,
22831,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29953,
304,
29871,
29947,
6199,
470,
373,
1880,
363,
29871,
29941,
304,
29871,
29946,
6199,
29889,
13,
13,
2277,
4048,
706,
301,
296,
309,
1886,
29893,
411,
1248,
6381,
13,
13,
4013,
24064,
29892,
5192,
29891,
1886,
29893,
6766,
975,
3353,
29899,
3874,
262,
1248,
6381,
5680,
5713,
495,
29899,
4018,
301,
296,
2719,
297,
263,
1532,
29899,
25682,
287,
6454,
1219,
12507,
346,
29889,
450,
5232,
7984,
261,
3732,
372,
8886,
7225,
2222,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29896,
30226,
2723,
567,
1886,
29893,
322,
29871,
30226,
18002,
1248,
6381,
639,
16330,
13,
13,
1254,
29923,
29956,
13,
13,
29896,
29871,
29906,
29947,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
2181,
15392,
6454,
20452,
29892,
563,
22042,
13,
13,
29906,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
13,
13,
29896,
30226,
2723,
567,
17354,
301,
296,
2719,
29892,
12705,
363,
25702,
322,
528,
4401,
839,
301,
296,
2719,
29892,
364,
1144,
287,
29892,
322,
7482,
1312,
13,
13,
29906,
18350,
373,
1080,
29892,
269,
506,
287,
13,
13,
29906,
18350,
18130,
29879,
310,
6432,
708,
29892,
16835,
368,
269,
506,
287,
13,
13,
29906,
18350,
1559,
307,
1372,
29892,
270,
7612,
13,
13,
29896,
18350,
2654,
22623,
1236,
2496,
29892,
270,
7612,
13,
13,
30515,
18002,
15589,
29899,
4058,
287,
6575,
29899,
29881,
1255,
6454,
20452,
29892,
16835,
368,
269,
506,
287,
13,
13,
29906,
6131,
1129,
787,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
11417,
13,
13,
29941,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
29896,
6131,
1129,
265,
289,
1338,
314,
293,
13848,
387,
279,
13,
13,
13152,
1307,
29940,
6040,
13,
13,
29946,
2723,
567,
4094,
13,
13,
29896,
18002,
26343,
1004,
284,
13,
13,
797,
263,
29871,
29946,
29899,
304,
29871,
29953,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
29892,
23546,
4208,
599,
278,
1886,
29893,
2348,
1127,
10070,
5174,
278,
13848,
387,
279,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29953,
304,
29871,
29955,
6199,
470,
373,
1880,
363,
29871,
29941,
304,
29871,
29946,
6199,
29892,
470,
2745,
278,
301,
296,
2719,
526,
1407,
22707,
29889,
13,
13,
28173,
29871,
29941,
29900,
6233,
1434,
16330,
931,
29892,
19012,
278,
1248,
6381,
29889,
512,
263,
2919,
12507,
346,
8357,
470,
10961,
17765,
29892,
6963,
278,
4094,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
5293,
263,
1472,
29899,
3179,
839,
377,
3873,
29892,
16112,
377,
3873,
278,
4094,
304,
1653,
263,
2381,
5168,
29889,
317,
677,
368,
1671,
278,
26343,
1004,
284,
297,
263,
27357,
4840,
964,
278,
2381,
5168,
29892,
377,
3873,
292,
21003,
29889,
2860,
599,
278,
26343,
1004,
284,
338,
2715,
29892,
10032,
278,
12871,
322,
1027,
1050,
363,
29871,
29896,
29945,
304,
29871,
29906,
29900,
6233,
29892,
470,
2745,
278,
1248,
6381,
338,
278,
7429,
5718,
3819,
29892,
23546,
5393,
23025,
29889,
24674,
265,
278,
1248,
6381,
964,
12580,
3137,
29889,
13,
13,
14084,
1434,
16330,
29892,
23546,
278,
289,
1338,
314,
293,
13848,
387,
279,
964,
278,
1886,
29893,
29889,
19955,
280,
278,
1886,
29893,
975,
278,
1248,
6381,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29941,
29929,
13,
13,
7827,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29955,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29953,
29955,
330,
13,
13,
7241,
495,
29871,
29896,
29955,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29946,
330,
13,
13,
14676,
262,
29871,
29896,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
380,
1279,
29892,
29871,
29946,
18655,
519,
29892,
29871,
29896,
20793,
27654,
13,
13,
2277,
521,
388,
866,
10674,
1161,
322,
1236,
2496,
274,
465,
1489,
280,
13,
13,
1576,
521,
388,
866,
313,
305,
1794,
29899,
23170,
29899,
29873,
388,
29897,
10674,
1161,
338,
1048,
278,
2159,
322,
8267,
310,
263,
2919,
282,
799,
322,
756,
263,
13774,
21104,
21779,
29892,
577,
372,
1999,
1975,
28138,
411,
2348,
1127,
10070,
393,
505,
263,
901,
4974,
573,
21054,
272,
29892,
1316,
408,
6130,
29880,
1562,
1236,
22437,
322,
1459,
4467,
273,
923,
968,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30642,
18002,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
2919,
6130,
29880,
1562,
1236,
2496,
29892,
16835,
368,
269,
506,
287,
29892,
470,
29871,
29896,
18350,
7933,
22623,
1236,
2496,
29892,
16835,
368,
269,
506,
287,
313,
4149,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
29896,
18002,
270,
7612,
373,
291,
13,
13,
29906,
18350,
521,
388,
866,
10674,
1161,
29892,
1236,
29872,
839,
29892,
8870,
1490,
29892,
282,
4430,
29892,
322,
1269,
4203,
5700,
3309,
3538,
964,
29871,
29946,
14837,
2710,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
29906,
6131,
1129,
787,
3353,
29899,
29893,
354,
271,
282,
804,
29877,
313,
29967,
21419,
968,
29899,
3293,
18423,
2181,
3774,
29879,
29897,
13,
13,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
20769,
368,
805,
764,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
411,
7984,
292,
805,
764,
29889,
512,
278,
5232,
7984,
261,
29892,
1207,
697,
7546,
1269,
29892,
297,
1797,
29892,
310,
278,
6130,
29880,
1562,
29892,
373,
291,
29892,
322,
10674,
1161,
29889,
360,
374,
5617,
280,
278,
17182,
975,
599,
29889,
14314,
682,
280,
278,
470,
387,
1562,
322,
7171,
506,
4764,
672,
975,
599,
29889,
3872,
29915,
29873,
23546,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29946,
30226,
6199,
470,
373,
1880,
363,
29871,
29906,
30226,
6199,
29892,
470,
2745,
278,
10674,
1161,
338,
22707,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
2071,
7324,
29892,
304,
579,
278,
282,
804,
29877,
975,
18350,
29899,
9812,
12871,
363,
29871,
29896,
11015,
29892,
470,
2745,
6763,
304,
17354,
29892,
23546,
5393,
21003,
29889,
24274,
16112,
577,
372,
1838,
29915,
29873,
12138,
29889,
17934,
304,
263,
2319,
12580,
29880,
29889,
624,
381,
297,
278,
1459,
4467,
273,
322,
15795,
29889,
13,
13,
29954,
2705,
23546,
4208,
278,
6130,
29880,
1562,
29544,
29889,
14314,
682,
280,
411,
278,
282,
804,
29877,
29544,
29889,
2803,
2317,
363,
29871,
29945,
6233,
1434,
16330,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29929,
29900,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29906,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29906,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
29896,
9950,
13,
13,
2277,
7062,
22741,
14225,
3104,
20452,
13,
13,
3664,
596,
1065,
29899,
974,
29899,
1552,
29899,
19958,
286,
25936,
14225,
3104,
20452,
29892,
1438,
5957,
263,
2586,
310,
18806,
3335,
322,
805,
293,
3335,
411,
278,
15668,
322,
5566,
11407,
6124,
310,
301,
603,
322,
29830,
327,
280,
29889,
1816,
345,
411,
341,
2172,
2191,
271,
4309,
5989,
470,
349,
548,
3436,
497,
1080,
411,
341,
4524,
4546,
2212,
29892,
470,
13389,
963,
408,
263,
285,
1558,
29899,
9021,
2625,
270,
728,
373,
1834,
29887,
4357,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29896,
30226,
24261,
14225,
3104,
20452,
313,
12717,
29871,
29906,
2919,
511,
5700,
964,
29871,
29906,
29899,
22466,
13630,
267,
313,
12717,
29871,
29946,
30226,
2723,
567,
29897,
13,
13,
31690,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
470,
4094,
13,
13,
29896,
6131,
1129,
265,
9226,
368,
4870,
287,
3578,
17354,
26438,
13,
13,
30226,
734,
294,
1129,
265,
867,
630,
301,
603,
503,
342,
13,
13,
29896,
6131,
1129,
265,
10849,
301,
603,
3623,
625,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
30515,
304,
29871,
30226,
734,
294,
1129,
265,
29830,
327,
280,
4764,
672,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
22908,
278,
14225,
3104,
20452,
297,
263,
29871,
29941,
29899,
304,
29871,
29946,
30226,
29899,
339,
442,
4513,
470,
288,
791,
5232,
7984,
261,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
9886,
2348,
1127,
10070,
29889,
6803,
975,
278,
14225,
3104,
20452,
29889,
17278,
29892,
10664,
29892,
373,
4482,
363,
29871,
29945,
304,
29871,
29953,
6199,
470,
373,
1880,
363,
29871,
29906,
30226,
304,
29871,
29941,
6199,
29892,
470,
2745,
278,
14225,
3104,
20452,
526,
1407,
22707,
29889,
5293,
263,
3104,
1219,
286,
1161,
261,
29892,
286,
1161,
278,
14225,
3104,
20452,
304,
278,
7429,
5718,
3819,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29946,
29929,
13,
13,
7827,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29955,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29945,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29941,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
30226,
380,
1279,
13,
13,
29937,
20710,
798,
5555,
13,
13,
305,
21475,
610,
4467,
273,
22300,
13,
13,
305,
21475,
322,
8227,
29887,
332,
4497,
328,
411,
285,
1187,
13,
13,
4287,
747,
14471,
5807,
23239,
411,
1236,
496,
269,
1338,
29874,
13,
13,
509,
449,
411,
2646,
412,
6454,
1219,
1104,
728,
13,
13,
29873,
4347,
411,
6454,
1219,
29899,
12637,
1431,
265,
12507,
346,
13,
13,
305,
21475,
411,
907,
25934,
564,
688,
2497,
282,
4778,
13,
13,
305,
21475,
411,
7537,
15816,
29899,
29881,
823,
265,
12507,
346,
13,
13,
29896,
29945,
29899,
1195,
1082,
7013,
1989,
27654,
658,
2142,
13,
13,
5965,
7584,
6433,
287,
805,
566,
29879,
13,
13,
24561,
322,
4780,
521,
2638,
13,
13,
8517,
17796,
521,
2638,
13,
13,
3780,
9693,
411,
1226,
314,
420,
13,
13,
6729,
617,
5079,
411,
432,
2883,
412,
8266,
322,
7171,
506,
13,
13,
29879,
688,
279,
15101,
1236,
294,
411,
14225,
29899,
392,
29899,
29879,
473,
12507,
346,
13,
13,
303,
3096,
287,
376,
29890,
12535,
29908,
623,
793,
13,
13,
4187,
8489,
309,
29895,
29899,
29877,
271,
282,
4564,
6926,
411,
14294,
7254,
16344,
304,
3262,
13,
13,
29924,
293,
798,
1351,
263,
592,
284,
29973,
512,
1556,
413,
2335,
575,
29892,
20710,
798,
5989,
526,
1304,
304,
337,
354,
271,
454,
29888,
517,
874,
29892,
1835,
1835,
29883,
1398,
29892,
470,
12871,
14671,
2256,
592,
1338,
29892,
541,
29892,
4874,
29892,
20710,
798,
5989,
508,
2869,
7984,
9687,
29991,
20279,
798,
1351,
7984,
292,
3913,
2730,
391,
12871,
29892,
3907,
372,
385,
7148,
9045,
29891,
982,
304,
19012,
18655,
1849,
29892,
285,
21211,
29892,
322,
9427,
29889,
2193,
29915,
29879,
1363,
1407,
2217,
23904,
338,
4312,
29892,
577,
18254,
374,
1237,
526,
26060,
29889,
887,
508,
7984,
1316,
263,
12875,
310,
9045,
29891,
592,
1338,
297,
263,
12166,
719,
773,
278,
20710,
798,
1351,
393,
366,
1122,
2360,
12871,
701,
596,
288,
854,
1449,
29889,
2191,
271,
658,
2142,
297,
29871,
29896,
29945,
6233,
29973,
3967,
29871,
29896,
29945,
29899,
8140,
1082,
26459,
2191,
271,
4309,
2142,
29889,
15089,
331,
1943,
521,
21475,
22300,
297,
1090,
29871,
29906,
29900,
6233,
29973,
25538,
678,
21475,
1459,
4467,
273,
317,
1132,
263,
1018,
29889,
12030,
297,
3109,
1135,
5320,
6233,
29973,
887,
29915,
645,
1074,
363,
7535,
411,
323,
4347,
411,
4335,
1219,
29899,
29911,
279,
1431,
265,
23863,
346,
29889,
13,
13,
5328,
437,
20710,
798,
5989,
7984,
9687,
577,
5172,
29973,
1281,
509,
653,
304,
278,
5972,
3984,
535,
1441,
29892,
20710,
798,
5989,
1016,
29915,
29873,
7984,
9687,
515,
278,
2768,
714,
29889,
390,
1624,
29892,
896,
6584,
300,
10492,
278,
9687,
515,
1432,
5305,
577,
9687,
7984,
29879,
1568,
8473,
1135,
372,
723,
297,
263,
13807,
288,
854,
29889,
7280,
14169,
310,
20710,
798,
1351,
7984,
292,
338,
393,
9687,
29879,
1016,
29915,
29873,
12070,
29892,
577,
5941,
786,
338,
4780,
29889,
13,
13,
4986,
341,
2965,
25180,
7520,
29923,
29901,
259,
13,
19159,
292,
29892,
1370,
4056,
29892,
470,
266,
1450,
292,
9687,
411,
12871,
7371,
408,
20710,
798,
5989,
393,
4556,
4094,
13206,
21337,
297,
9687,
304,
325,
4626,
403,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
20279,
798,
1351,
288,
854,
29930,
29936,
20710,
798,
1351,
519,
12580,
3137,
29892,
715,
1078,
29892,
12917,
274,
465,
1489,
280,
270,
17006,
29892,
289,
5086,
270,
17006,
29892,
322,
5036,
7243,
13,
13,
29930,
1576,
9522,
5547,
393,
1101,
505,
1063,
9528,
773,
263,
29871,
29896,
29892,
29900,
29900,
29900,
29899,
29893,
1131,
20710,
798,
1351,
288,
854,
29889,
17278,
292,
3064,
881,
367,
10365,
287,
565,
15850,
756,
263,
6133,
470,
5224,
281,
1131,
482,
29889,
1763,
1423,
29892,
1106,
363,
263,
380,
6541,
373,
278,
3050,
29926,
1117,
470,
278,
1250,
310,
278,
20710,
798,
1351,
29889,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
960,
596,
20710,
798,
1351,
1838,
29915,
29873,
505,
263,
5731,
1218,
15284,
29892,
367,
1854,
304,
16734,
9687,
7145,
1582,
1549,
278,
20710,
798,
5555,
931,
363,
901,
1584,
7984,
292,
322,
304,
27399,
11220,
805,
1862,
988,
10311,
1319,
289,
5761,
423,
508,
10503,
573,
29889,
13,
13,
30119,
26428,
9687,
29879,
411,
263,
17343,
470,
20710,
798,
1351,
519,
715,
6288,
12244,
304,
26505,
21837,
322,
11551,
2730,
391,
545,
29889,
1932,
278,
9687,
338,
2309,
29892,
16112,
443,
11911,
372,
3448,
515,
366,
304,
5557,
21837,
12138,
29879,
29889,
960,
366,
671,
715,
6288,
12244,
29892,
772,
446,
263,
16188,
297,
278,
715,
6288,
304,
2758,
278,
21837,
304,
10169,
1434,
11077,
278,
12244,
29889,
13,
13,
30119,
3462,
9045,
29891,
12507,
778,
304,
20710,
798,
10511,
9687,
29879,
1316,
408,
678,
21475,
411,
315,
1633,
29891,
319,
11124,
2497,
349,
4778,
304,
1207,
963,
1106,
901,
13978,
573,
1951,
278,
20710,
798,
1351,
288,
854,
1838,
29915,
29873,
17354,
9687,
29889,
13,
13,
30119,
1763,
4772,
1716,
975,
15108,
292,
322,
1090,
15108,
292,
27654,
322,
282,
5059,
2202,
29892,
671,
263,
27654,
14563,
8328,
304,
1423,
1016,
18543,
29889,
15154,
278,
27654,
470,
282,
5059,
2202,
515,
278,
288,
854,
1434,
23800,
278,
14426,
29899,
949,
14563,
8328,
29889,
24505,
278,
14563,
8328,
964,
278,
4818,
29892,
470,
12003,
342,
760,
29892,
310,
278,
27654,
29892,
3907,
1854,
278,
14563,
8328,
1838,
29915,
29873,
6023,
289,
650,
470,
9950,
29889,
13,
13,
30119,
2823,
20710,
798,
5555,
15332,
25562,
29889,
13,
13,
15349,
1254,
18322,
29949,
8452,
15842,
341,
2965,
25180,
7520,
4214,
13,
13,
2008,
29874,
1181,
397,
29901,
12030,
7984,
29879,
9098,
297,
278,
20710,
798,
1351,
322,
11551,
29879,
2730,
391,
545,
29892,
577,
372,
2113,
29915,
29873,
15589,
714,
29889,
1932,
7984,
292,
9427,
411,
19309,
29892,
671,
263,
889,
1607,
304,
24765,
278,
19309,
297,
263,
2846,
7600,
304,
6260,
675,
3151,
1847,
322,
14653,
682,
482,
29889,
1152,
1900,
2582,
29892,
6755,
977,
10376,
470,
1886,
10327,
393,
526,
694,
266,
6541,
1135,
29871,
29906,
22831,
29889,
3967,
1605,
449,
411,
4989,
412,
4335,
1219,
6376,
728,
470,
1704,
747,
14471,
22639,
23239,
411,
3938,
496,
317,
1338,
29874,
29889,
13,
13,
29963,
387,
300,
1849,
29901,
350,
12535,
3104,
20452,
29892,
1316,
408,
5013,
7584,
624,
3096,
287,
1706,
566,
29879,
29892,
7984,
297,
263,
15958,
310,
278,
931,
896,
2125,
297,
278,
288,
854,
29889,
2443,
2795,
18655,
1849,
29892,
1316,
408,
4358,
617,
5079,
411,
435,
2883,
412,
8266,
322,
7455,
506,
322,
25589,
279,
317,
8971,
3938,
294,
411,
317,
16668,
29899,
392,
29899,
29903,
473,
23863,
346,
29892,
526,
10839,
363,
278,
20710,
798,
1351,
29889,
13,
13,
29943,
21211,
29901,
8561,
596,
1914,
1873,
310,
263,
5172,
29892,
9045,
29891,
15774,
376,
29883,
20838,
1358,
29908,
491,
29299,
10849,
470,
14671,
2256,
289,
568,
29899,
2311,
12785,
310,
285,
21211,
29892,
1316,
408,
9892,
1648,
29892,
1236,
496,
29892,
470,
380,
1610,
16344,
269,
29399,
29892,
322,
20710,
798,
5555,
963,
373,
1880,
2745,
7375,
322,
4964,
29889,
1987,
2246,
411,
263,
2586,
310,
9950,
29899,
9021,
3803,
2963,
322,
263,
2319,
885,
26793,
310,
9950,
29899,
9021,
14671,
2256,
343,
468,
4227,
29889,
3115,
13389,
624,
3096,
287,
376,
29933,
12535,
29908,
2401,
793,
297,
3109,
1135,
29871,
29896,
29900,
6233,
29991,
13,
13,
29954,
336,
1144,
29901,
887,
508,
7984,
2646,
1144,
29892,
1316,
408,
8227,
29887,
332,
29892,
288,
1446,
29892,
322,
19408,
29892,
1407,
9098,
297,
278,
20710,
798,
1351,
29889,
3967,
678,
21475,
322,
28126,
332,
3956,
328,
411,
383,
1187,
322,
1205,
8489,
309,
29895,
29899,
29949,
271,
349,
4564,
6926,
411,
399,
2817,
10924,
16344,
1763,
3262,
29889,
25259,
9693,
7984,
29879,
901,
1584,
368,
322,
6858,
3109,
23546,
5393,
1135,
372,
947,
373,
263,
380,
586,
300,
459,
29892,
408,
297,
25259,
9693,
411,
2155,
314,
420,
29889,
13,
13,
2277,
521,
21475,
610,
4467,
273,
22300,
13,
13,
10401,
366,
817,
263,
302,
473,
14424,
22300,
297,
3273,
1797,
29892,
445,
9953,
1318,
23994,
278,
11118,
29889,
1771,
25217,
411,
521,
21475,
322,
10849,
18655,
1849,
29892,
372,
29915,
29879,
1900,
6766,
411,
2181,
504,
29891,
3353,
29899,
3874,
262,
9679,
29879,
577,
366,
508,
12103,
701,
1432,
316,
781,
519,
5768,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29896,
29906,
29871,
1309,
778,
10814,
6393,
29892,
19309,
2222,
521,
21475,
2078,
19416,
29892,
5700,
964,
29871,
30226,
29899,
22466,
12785,
13,
13,
29906,
2319,
503,
1682,
305,
2172,
29892,
5700,
964,
29871,
30226,
29899,
22466,
12785,
13,
13,
30226,
2319,
373,
291,
29892,
3060,
2986,
13,
13,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
13,
13,
29906,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29906,
2919,
6454,
20452,
29892,
1236,
29872,
839,
322,
270,
7612,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30515,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
313,
25253,
29897,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
30226,
18002,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
30515,
18002,
658,
359,
873,
4870,
287,
521,
2593,
265,
1943,
310,
10849,
2362,
309,
13,
13,
797,
263,
29871,
29906,
29899,
339,
442,
20710,
798,
1351,
519,
274,
465,
1489,
280,
270,
728,
29892,
23546,
4208,
278,
521,
21475,
29892,
503,
1682,
305,
2172,
29892,
373,
291,
29892,
322,
17182,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29953,
6233,
29892,
23546,
5393,
2748,
4203,
1582,
1549,
313,
1552,
521,
21475,
2113,
29915,
29873,
367,
2309,
472,
445,
1298,
467,
13,
13,
855,
381,
297,
278,
2545,
386,
29892,
6454,
20452,
29892,
470,
387,
1562,
29892,
2654,
1236,
2496,
17422,
10794,
29892,
322,
1236,
2496,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29945,
6233,
29889,
624,
381,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29945,
304,
29871,
29955,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
322,
278,
18655,
1849,
526,
22707,
29889,
13,
13,
14084,
1434,
16330,
29892,
7689,
682,
280,
411,
278,
1459,
4467,
273,
322,
2362,
309,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29945,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29900,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29955,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
5868,
29902,
4198,
1164,
29909,
2287,
29903,
29901,
1763,
5700,
902,
5824,
470,
11343,
24551,
964,
263,
521,
2593,
265,
1943,
29892,
5096,
1048,
29871,
29896,
29900,
11308,
297,
263,
28539,
282,
488,
29889,
21809,
701,
278,
282,
488,
3309,
3538,
964,
263,
19932,
20396,
4995,
29889,
5293,
263,
15301,
889,
1607,
29892,
5700,
278,
20396,
4995,
4891,
3538,
304,
1653,
16835,
10076,
567,
29889,
13,
13,
2277,
521,
21475,
322,
8227,
29887,
332,
4497,
328,
411,
285,
1187,
13,
13,
4013,
25620,
10800,
273,
29899,
13453,
3837,
1133,
4497,
328,
8640,
967,
21054,
272,
1532,
29889,
739,
29915,
29879,
2107,
304,
376,
5675,
322,
2125,
29908,
363,
301,
3322,
472,
664,
470,
263,
3104,
29880,
2707,
1462,
261,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
29906,
29871,
1309,
778,
10814,
6393,
29892,
19309,
2222,
521,
21475,
2078,
19416,
29892,
599,
7962,
9950,
2313,
25600,
29892,
5700,
964,
289,
568,
29899,
2311,
12785,
13,
13,
29906,
2723,
567,
7375,
4094,
13,
13,
29896,
18002,
443,
1111,
12504,
14426,
29892,
470,
2691,
29899,
3874,
262,
29892,
8227,
29887,
332,
13,
13,
29896,
18002,
2646,
412,
6454,
20452,
29892,
12616,
287,
13,
13,
31690,
18002,
1436,
873,
3060,
2986,
2654,
373,
291,
13,
13,
29896,
30226,
6131,
1129,
787,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29896,
6131,
1129,
265,
1436,
873,
3060,
2986,
10849,
696,
12846,
653,
13,
13,
29896,
6131,
1129,
265,
867,
630,
454,
3712,
503,
342,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
313,
25253,
29897,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
30226,
18002,
2181,
25443,
4482,
29899,
29888,
271,
285,
1187,
923,
968,
13,
13,
20769,
368,
805,
764,
263,
18350,
20710,
798,
1351,
519,
12580,
29880,
411,
7984,
292,
805,
764,
29889,
20279,
798,
1351,
278,
521,
21475,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29906,
6233,
29889,
624,
381,
29889,
20279,
798,
1351,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
11015,
29892,
470,
2745,
10029,
282,
682,
297,
278,
4818,
313,
1552,
521,
21475,
674,
6773,
304,
7984,
1550,
12528,
292,
467,
360,
6038,
1532,
297,
263,
784,
3825,
29889,
17934,
304,
263,
16330,
12580,
29880,
29889,
13,
13,
797,
278,
1021,
18350,
20710,
798,
1351,
519,
12580,
29880,
29892,
23546,
4208,
278,
4094,
322,
8227,
29887,
332,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29955,
304,
29871,
29947,
6233,
29892,
470,
2745,
278,
8227,
29887,
332,
338,
925,
22707,
322,
278,
4094,
338,
17977,
2580,
29889,
17934,
304,
263,
2691,
29899,
4467,
29882,
269,
2418,
29889,
390,
262,
344,
411,
11220,
4094,
304,
12528,
6446,
29889,
360,
6038,
1532,
29889,
7106,
304,
278,
12580,
29880,
29889,
2379,
3096,
411,
263,
27350,
29889,
13,
13,
855,
381,
278,
8227,
29887,
332,
29892,
6454,
20452,
29892,
373,
291,
29892,
17182,
29892,
696,
12846,
653,
29892,
454,
3712,
503,
342,
29892,
7171,
506,
29892,
2654,
1236,
2496,
17422,
10794,
29892,
322,
15795,
4208,
411,
278,
521,
21475,
29889,
402,
2705,
23546,
297,
278,
285,
1187,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29896,
29955,
13,
13,
7827,
9950,
29871,
29896,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29896,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29941,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29906,
330,
13,
13,
7241,
495,
29871,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29906,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
1559,
747,
14471,
5807,
23239,
411,
1236,
496,
269,
1338,
29874,
13,
13,
5592,
4245,
29899,
29879,
16668,
1236,
496,
269,
1338,
29874,
26371,
2925,
278,
628,
9593,
21054,
272,
310,
2654,
5807,
23239,
297,
445,
22792,
708,
270,
728,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
30226,
18002,
269,
1338,
29874,
639,
16330,
13,
13,
29906,
18350,
1236,
14520,
29892,
1236,
29872,
839,
322,
270,
7612,
13,
13,
30226,
18350,
2654,
22623,
1236,
2496,
29892,
1375,
1133,
13,
13,
29906,
18350,
4091,
1862,
29892,
1375,
1133,
13,
13,
29896,
18350,
10849,
432,
2883,
412,
8266,
29892,
409,
5779,
322,
18130,
29879,
2313,
25600,
29892,
1375,
1133,
313,
4149,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
29896,
6131,
1129,
265,
1375,
1133,
10849,
274,
309,
424,
307,
13,
13,
29896,
30226,
734,
294,
1129,
787,
867,
630,
301,
603,
503,
342,
13,
13,
29896,
30226,
6131,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
29946,
2654,
5807,
23239,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
330,
2705,
23546,
4208,
278,
1236,
14520,
29892,
22623,
1236,
2496,
29892,
4091,
1862,
29892,
432,
2883,
412,
8266,
29892,
274,
309,
424,
307,
29892,
301,
603,
503,
342,
29892,
322,
301,
603,
3623,
625,
29889,
13,
13,
29907,
329,
9475,
29871,
29896,
29906,
29899,
22466,
25256,
310,
7984,
292,
610,
305,
358,
29889,
15484,
29871,
29896,
9427,
977,
1026,
297,
278,
4818,
310,
29871,
29896,
6862,
29889,
7488,
411,
29871,
30226,
18002,
269,
1338,
29874,
29889,
15484,
263,
1473,
6862,
975,
278,
9427,
29889,
383,
1025,
278,
12770,
310,
1716,
25256,
4208,
3196,
3064,
304,
409,
284,
278,
23912,
29889,
830,
11666,
304,
1653,
278,
9886,
23912,
29889,
13,
13,
4300,
571,
278,
23912,
304,
263,
20710,
798,
1351,
519,
29871,
29947,
29899,
22466,
6862,
289,
5086,
270,
728,
29889,
20279,
798,
1351,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29947,
6233,
29889,
10057,
3730,
3349,
278,
270,
728,
515,
278,
20710,
798,
1351,
29889,
2803,
2317,
363,
29871,
29906,
6233,
29889,
5293,
278,
260,
1475,
310,
263,
27350,
29892,
16112,
1722,
263,
18203,
3448,
515,
366,
313,
517,
5557,
21837,
12138,
29879,
467,
960,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29892,
16112,
1722,
278,
9886,
23912,
322,
9080,
29889,
960,
278,
9427,
3508,
29915,
29873,
7984,
287,
3307,
29892,
1162,
2226,
278,
18203,
322,
20710,
798,
1351,
599,
278,
23912,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
304,
29871,
29906,
6233,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29945,
29906,
13,
13,
7827,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29945,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29896,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
15774,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
315,
1307,
2190,
4214,
5300,
383,
1525,
7068,
1430,
4214,
319,
341,
2965,
25180,
7520,
29923,
438,
29963,
1430,
29901,
512,
263,
29871,
29906,
29899,
5231,
12917,
7540,
3864,
18002,
29892,
23546,
4208,
29871,
29896,
18002,
4094,
322,
3196,
454,
3712,
269,
29399,
470,
29871,
29906,
6131,
1129,
787,
310,
10849,
454,
3712,
3623,
625,
29889,
20279,
798,
1351,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29941,
304,
29871,
29946,
6233,
29892,
470,
2745,
278,
4094,
338,
1045,
6504,
29889,
2803,
278,
18002,
2317,
2768,
278,
20710,
798,
1351,
363,
29871,
29896,
29900,
6233,
29889,
15154,
372,
322,
281,
15705,
278,
2768,
310,
278,
20710,
798,
1351,
411,
5650,
304,
29893,
1379,
29889,
830,
11666,
278,
1889,
565,
5181,
29889,
13,
13,
2277,
534,
449,
411,
2646,
412,
6454,
1219,
1104,
728,
13,
13,
29924,
789,
9427,
338,
304,
2986,
411,
263,
1104,
728,
12141,
287,
491,
1506,
4901,
2117,
414,
29892,
11785,
610,
29879,
2330,
29892,
322,
2143,
690,
2790,
454,
3712,
503,
342,
29889,
887,
508,
19012,
278,
1104,
728,
701,
304,
697,
2462,
297,
6564,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
30515,
18002,
1104,
728,
639,
16330,
13,
13,
1525,
29931,
3235,
29950,
13,
13,
229,
136,
151,
18002,
2646,
412,
6454,
20452,
29892,
270,
7612,
13,
13,
30515,
18002,
1436,
873,
3060,
2986,
2654,
373,
291,
13,
13,
29941,
6131,
1129,
787,
2117,
414,
29892,
7482,
1312,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10545,
313,
20620,
29899,
29500,
29897,
610,
29879,
2330,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29906,
734,
294,
1129,
787,
867,
630,
454,
3712,
503,
342,
13,
13,
19159,
292,
805,
764,
13,
13,
29946,
534,
449,
470,
916,
286,
789,
4796,
9427,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29906,
304,
29871,
29941,
6131,
1129,
787,
10849,
454,
3712,
3623,
625,
13,
13,
30515,
734,
294,
1129,
265,
3500,
374,
1335,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
1104,
728,
2348,
1127,
10070,
29889,
3789,
17786,
29889,
13,
13,
20769,
368,
805,
764,
263,
20710,
798,
1351,
519,
12917,
274,
465,
1489,
280,
270,
728,
411,
263,
17343,
411,
7984,
292,
805,
764,
29889,
826,
3881,
278,
9427,
297,
263,
2323,
7546,
297,
278,
270,
728,
29892,
3907,
1854,
393,
738,
12003,
12785,
526,
17649,
304,
278,
7636,
310,
278,
270,
728,
29889,
24674,
265,
278,
454,
3712,
3623,
625,
975,
278,
9427,
29889,
512,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
3500,
374,
1335,
29892,
15795,
29892,
322,
1236,
2496,
29889,
14314,
682,
280,
975,
278,
9427,
29889,
13,
13,
29924,
293,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29906,
6233,
29889,
2803,
2317,
29892,
10664,
29892,
363,
29871,
29906,
6233,
29889,
10057,
3730,
443,
11911,
278,
7243,
3448,
515,
366,
313,
517,
5557,
21837,
12138,
29879,
467,
960,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29892,
6782,
304,
16330,
715,
1078,
29889,
960,
278,
9427,
3508,
29915,
29873,
7984,
287,
3307,
29892,
337,
29899,
11911,
278,
270,
728,
322,
20710,
798,
1351,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
11015,
29889,
2803,
2317,
29892,
10664,
29892,
363,
29871,
29896,
11015,
29889,
1816,
345,
411,
278,
1104,
728,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29906,
13,
13,
7827,
9950,
29871,
29955,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29955,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29955,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
260,
4347,
411,
6454,
1219,
29899,
12637,
1431,
265,
12507,
346,
13,
13,
4013,
931,
29899,
29879,
5555,
9522,
412,
5680,
263,
1766,
1099,
311,
393,
27641,
408,
263,
12507,
346,
322,
14874,
278,
260,
4347,
1886,
10327,
2730,
391,
1550,
896,
29915,
276,
20710,
798,
10511,
29889,
450,
2181,
3322,
29891,
29899,
4900,
4245,
304,
3262,
12778,
263,
7575,
12814,
304,
278,
18806,
29891,
12507,
346,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
29892,
29871,
29906,
6131,
1129,
787,
12507,
346,
29892,
322,
29871,
29906,
6131,
1129,
787,
6432,
708,
29544,
639,
16330,
13,
13,
30226,
18002,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
12507,
346,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
9913,
1431,
265,
13,
13,
29896,
734,
294,
1129,
265,
18046,
839,
4796,
4029,
643,
328,
728,
13,
13,
29896,
734,
294,
1129,
265,
360,
823,
265,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
734,
294,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
30226,
734,
294,
1129,
265,
3500,
374,
1335,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29946,
260,
4347,
1886,
10327,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
1048,
29871,
29896,
297,
305,
12003,
29892,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29941,
6131,
1129,
787,
270,
7612,
6432,
708,
13,
13,
29941,
6131,
1129,
787,
270,
7612,
7933,
22623,
1236,
2496,
13,
13,
29906,
6131,
1129,
787,
270,
7612,
6454,
1219,
13,
13,
797,
263,
29871,
29896,
30226,
29899,
339,
442,
20710,
798,
1351,
519,
274,
465,
1489,
280,
270,
728,
29892,
377,
3873,
4208,
278,
6454,
1219,
12507,
346,
29892,
9913,
1431,
265,
29892,
4029,
643,
328,
728,
29892,
1818,
538,
29892,
454,
3712,
3623,
625,
29892,
3500,
374,
1335,
29892,
15795,
29892,
322,
1236,
2496,
29889,
3462,
278,
9427,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
29900,
6233,
304,
29871,
29896,
7234,
29892,
14712,
23025,
29889,
13,
13,
29924,
293,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29946,
6233,
29892,
470,
304,
278,
7429,
1016,
18543,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
6432,
708,
29892,
22623,
1236,
2496,
29892,
322,
6454,
1219,
29889,
13,
13,
4300,
571,
278,
9427,
304,
16330,
715,
1078,
29889,
3387,
1434,
16330,
29892,
10293,
5617,
280,
278,
12507,
346,
975,
278,
9427,
29889,
14314,
682,
280,
411,
278,
6432,
708,
29544,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29946,
29900,
13,
13,
7827,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29941,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
2277,
521,
21475,
411,
907,
25934,
564,
688,
2497,
282,
4778,
13,
13,
9984,
738,
364,
15392,
4723,
11147,
4266,
491,
304,
3262,
2730,
391,
20710,
798,
10511,
521,
21475,
2078,
19416,
411,
263,
343,
468,
4227,
29899,
29886,
4778,
12507,
346,
1754,
411,
1236,
407,
708,
564,
688,
2497,
322,
5962,
394,
8315,
29879,
2012,
310,
278,
13807,
2362,
309,
322,
282,
457,
302,
8842,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
322,
29871,
29906,
6131,
1129,
787,
282,
4778,
639,
16330,
13,
13,
29946,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
13,
13,
29906,
6131,
1129,
787,
15589,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
470,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
30226,
18002,
564,
688,
2497,
13,
13,
29906,
6131,
1129,
787,
9644,
1997,
287,
394,
8315,
29879,
29892,
15589,
29899,
307,
28470,
13,
13,
29896,
2319,
7171,
506,
17184,
345,
29892,
3060,
2986,
13,
13,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
13,
13,
30226,
18002,
9950,
29899,
9021,
8656,
12311,
343,
468,
4227,
13,
13,
15666,
2496,
304,
21779,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
22908,
278,
521,
21475,
297,
263,
20710,
798,
1351,
519,
29871,
29947,
29899,
470,
29871,
29929,
29899,
22466,
4513,
470,
6862,
289,
5086,
270,
728,
411,
263,
17343,
29889,
6803,
278,
19006,
975,
278,
521,
21475,
29889,
13,
13,
29924,
293,
798,
1351,
29892,
10664,
29892,
373,
29871,
29955,
29900,
10151,
3081,
313,
27891,
1880,
29897,
363,
29871,
29955,
304,
29871,
29929,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
15154,
515,
278,
20710,
798,
1351,
29889,
2803,
2317,
363,
29871,
29945,
6233,
313,
1552,
521,
21475,
674,
6773,
304,
7984,
467,
13,
13,
6816,
273,
8000,
29892,
297,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
564,
688,
2497,
29892,
394,
8315,
29879,
29892,
322,
7171,
506,
2745,
1436,
873,
1375,
1133,
29889,
3462,
278,
1459,
4467,
273,
322,
17182,
29889,
10554,
2745,
10597,
29889,
17934,
278,
282,
4778,
304,
263,
18350,
20710,
798,
1351,
519,
12580,
29880,
29889,
624,
381,
297,
278,
343,
468,
4227,
322,
1236,
2496,
29889,
20279,
798,
1351,
373,
29871,
29946,
29900,
10151,
3081,
313,
27891,
4482,
29897,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
23546,
5393,
8951,
29889,
24674,
265,
975,
278,
521,
21475,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29896,
29906,
13,
13,
7827,
9950,
29871,
29929,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29947,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
30226,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
910,
9522,
412,
3732,
4805,
282,
4778,
29892,
607,
338,
884,
628,
14803,
411,
20710,
798,
1351,
29899,
1655,
2795,
18655,
1849,
1316,
408,
2545,
617,
5079,
29892,
5777,
352,
361,
13609,
29892,
470,
503,
1682,
305,
2172,
29889,
13,
13,
2277,
521,
21475,
411,
7537,
15816,
29899,
29881,
823,
265,
12507,
346,
13,
13,
1451,
21475,
5304,
714,
22707,
29892,
3623,
4245,
29892,
322,
2989,
310,
21054,
272,
746,
372,
29915,
29879,
4259,
287,
411,
10849,
902,
5824,
322,
1886,
2795,
373,
263,
6592,
310,
7933,
373,
1080,
29889,
319,
18806,
29891,
343,
468,
4227,
12507,
346,
304,
567,
372,
1283,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29947,
18350,
7933,
373,
1080,
29892,
10614,
17151,
2168,
13,
13,
30515,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29896,
6131,
1129,
265,
15589,
528,
261,
719,
470,
4796,
19006,
13848,
387,
279,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
610,
29879,
2330,
470,
29871,
29896,
734,
294,
1129,
265,
270,
1255,
610,
29879,
2330,
29892,
2181,
25443,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
269,
482,
470,
29871,
29896,
734,
294,
1129,
265,
270,
1255,
14051,
2580,
269,
482,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
696,
12846,
653,
470,
29871,
29896,
734,
294,
1129,
265,
270,
1255,
696,
12846,
653,
29892,
2181,
15392,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
266,
25395,
470,
29871,
29896,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
30226,
18002,
9950,
29899,
9021,
8656,
343,
468,
4227,
13,
13,
29896,
6131,
1129,
265,
360,
823,
265,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
24841,
503,
342,
13,
13,
29896,
6131,
1129,
265,
10849,
24841,
3623,
625,
13,
13,
29946,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
29892,
1652,
8606,
287,
304,
29871,
30226,
29899,
22466,
12003,
2264,
13,
13,
30226,
734,
294,
1129,
265,
3500,
374,
1335,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29896,
18350,
24841,
29892,
5700,
964,
29871,
29947,
14837,
2710,
313,
25253,
29897,
13,
13,
20769,
368,
805,
764,
263,
4091,
340,
20710,
798,
1351,
519,
29871,
29896,
30226,
29899,
339,
442,
274,
465,
1489,
280,
270,
728,
411,
7984,
292,
805,
764,
29889,
13,
13,
1433,
3881,
278,
7933,
373,
1080,
297,
263,
2323,
7546,
297,
278,
270,
728,
29889,
6803,
297,
278,
2545,
386,
322,
528,
261,
719,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
610,
29879,
2330,
29892,
269,
482,
29892,
696,
12846,
653,
29892,
322,
266,
25395,
29889,
512,
263,
5004,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
343,
468,
4227,
29892,
1818,
538,
29892,
24841,
503,
342,
29892,
24841,
3623,
625,
29892,
322,
29871,
29896,
6131,
1129,
265,
310,
278,
610,
29879,
2330,
29544,
2745,
12420,
29889,
26428,
322,
337,
1341,
4087,
403,
2745,
16330,
931,
29889,
13,
13,
29903,
558,
682,
280,
278,
9886,
610,
29879,
2330,
29544,
975,
1716,
11192,
310,
278,
521,
21475,
29889,
15484,
278,
521,
21475,
373,
278,
7933,
373,
1080,
411,
278,
10597,
2625,
701,
29889,
512,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
3500,
374,
1335,
29892,
15795,
29892,
322,
1236,
2496,
29889,
14314,
682,
280,
975,
278,
2246,
310,
278,
521,
21475,
29889,
13,
13,
29924,
293,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29947,
304,
29871,
29929,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
17934,
304,
715,
1078,
29889,
24674,
265,
278,
12507,
346,
975,
278,
521,
21475,
29889,
1816,
345,
411,
278,
24841,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29896,
13,
13,
7827,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29929,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29947,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29906,
29953,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
29871,
29896,
29945,
29899,
1195,
1082,
7013,
1989,
27654,
658,
2142,
13,
13,
29923,
854,
27654,
658,
2142,
508,
367,
1754,
297,
278,
20710,
798,
1351,
29892,
14238,
5864,
322,
931,
29892,
322,
12515,
596,
29181,
12528,
29889,
4803,
278,
13407,
931,
304,
377,
666,
701,
4358,
617,
5079,
411,
435,
2883,
412,
8266,
322,
7455,
506,
470,
25589,
279,
317,
8971,
3938,
294,
411,
317,
16668,
29899,
392,
29899,
29903,
473,
23863,
346,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29896,
22780,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
29871,
29947,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
12507,
346,
13,
13,
29896,
6131,
1129,
265,
19662,
29883,
28910,
14812,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
734,
294,
1129,
787,
26438,
13,
13,
30226,
734,
294,
1129,
265,
15795,
13,
13,
29896,
282,
618,
5962,
19309,
2222,
7013,
1989,
24207,
13,
13,
29896,
18002,
3060,
2986,
373,
291,
13,
13,
29896,
18350,
7933,
22623,
1236,
2496,
29892,
3060,
2986,
13,
13,
30226,
18002,
3060,
2986,
10545,
313,
20620,
29899,
29500,
29897,
610,
29879,
2330,
13,
13,
30226,
18002,
4996,
29899,
15108,
292,
288,
271,
1004,
284,
13,
13,
30515,
18002,
17422,
29916,
16717,
592,
284,
13,
13,
29906,
2919,
19710,
18960,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
20769,
368,
805,
764,
263,
20710,
798,
1351,
519,
29871,
29929,
29899,
22466,
5036,
7243,
411,
7984,
292,
805,
764,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
6454,
1219,
12507,
346,
29892,
19662,
29883,
28910,
14812,
12507,
346,
29892,
26438,
29892,
322,
15795,
29889,
13,
13,
797,
263,
2919,
12580,
29880,
29892,
773,
596,
6567,
470,
263,
805,
6150,
29892,
14405,
4203,
278,
6454,
1219,
12507,
346,
29544,
411,
278,
9886,
2348,
1127,
10070,
29889,
17934,
304,
278,
5036,
7243,
29889,
1383,
4085,
278,
29544,
964,
263,
29871,
29953,
29899,
22466,
29899,
8157,
9228,
411,
263,
29871,
29906,
29899,
22466,
16188,
297,
278,
7256,
29889,
1706,
949,
278,
9886,
6454,
1219,
12507,
346,
29544,
975,
278,
27654,
658,
2142,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29947,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
278,
27654,
658,
2142,
28975,
29871,
29896,
29953,
29945,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
322,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
2803,
2317,
363,
29871,
29945,
6233,
1434,
269,
506,
292,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29947,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
29955,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29953,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29945,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29906,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1383,
21430,
278,
27654,
658,
2142,
964,
263,
9228,
6511,
372,
304,
7984,
901,
1584,
368,
297,
278,
20710,
798,
1351,
322,
14874,
278,
12770,
515,
975,
15108,
292,
29889,
13,
13,
2277,
6210,
29891,
6433,
287,
805,
566,
29879,
13,
13,
1349,
968,
7062,
22741,
29899,
3293,
1921,
7176,
805,
566,
29879,
526,
10423,
411,
22707,
367,
1389,
29892,
10849,
6454,
20452,
29892,
263,
1176,
681,
5253,
310,
7933,
373,
1080,
29892,
322,
15301,
678,
287,
16702,
923,
968,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
6433,
287,
3104,
1219,
639,
16330,
13,
13,
29946,
18350,
2654,
3104,
20452,
313,
12717,
29871,
29953,
29871,
1309,
778,
1269,
29897,
13,
13,
19159,
292,
805,
764,
13,
13,
29947,
29871,
1309,
778,
4805,
29899,
14044,
5962,
367,
1389,
13,
13,
29896,
30226,
734,
294,
1129,
787,
521,
2638,
4764,
672,
13,
13,
30226,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
229,
136,
159,
734,
294,
1129,
265,
15795,
13,
13,
29896,
18002,
270,
7612,
6454,
20452,
470,
12616,
287,
2646,
412,
6454,
20452,
13,
13,
30226,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
15301,
678,
287,
16702,
923,
968,
13,
13,
29941,
18350,
7933,
373,
1080,
29892,
1436,
873,
3060,
2986,
13,
13,
30515,
18002,
9950,
29899,
9021,
269,
473,
907,
314,
313,
25253,
29897,
13,
13,
15156,
263,
27350,
29892,
9307,
346,
1269,
3104,
1219,
297,
3196,
7600,
29889,
399,
2390,
1269,
297,
263,
5650,
304,
20466,
29889,
15484,
373,
263,
2919,
20710,
798,
1351,
519,
15284,
29889,
20279,
798,
1351,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
29900,
6233,
29892,
470,
2745,
278,
260,
1475,
310,
263,
27350,
15478,
964,
1269,
3104,
1219,
2041,
714,
5948,
29889,
15154,
515,
278,
288,
854,
29889,
13,
13,
20769,
368,
805,
764,
263,
20710,
798,
1351,
519,
29871,
29929,
29899,
22466,
5036,
7243,
411,
7984,
292,
805,
764,
29889,
315,
5848,
569,
278,
367,
1389,
964,
278,
7243,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29953,
6233,
29892,
470,
2745,
694,
5520,
282,
682,
297,
278,
4818,
29892,
23546,
5393,
1432,
29871,
29906,
6233,
29889,
360,
6038,
297,
263,
784,
3825,
29889,
7106,
278,
367,
1389,
304,
278,
7243,
29889,
624,
381,
297,
278,
521,
2638,
4764,
672,
29892,
274,
9735,
29892,
322,
15795,
29889,
402,
2705,
23546,
297,
278,
6454,
20452,
29892,
678,
287,
16702,
29892,
322,
7933,
373,
1080,
29889,
13,
13,
29950,
284,
345,
278,
3104,
20452,
3309,
3538,
29889,
5293,
263,
27350,
29892,
1652,
3096,
278,
9505,
29886,
29889,
7488,
411,
278,
367,
1389,
29544,
29889,
20279,
798,
1351,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29906,
6233,
29889,
7488,
411,
278,
269,
473,
907,
314,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29941,
29955,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29941,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29900,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29896,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29896,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29906,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
4803,
2654,
470,
612,
2679,
265,
7684,
3104,
20452,
565,
366,
5821,
263,
2730,
1531,
3104,
1219,
29889,
4803,
13005,
7224,
565,
366,
5821,
263,
270,
4336,
29892,
17422,
29895,
631,
3104,
1219,
29889,
13,
13,
2277,
4996,
322,
4780,
521,
2638,
13,
13,
4013,
2560,
9522,
412,
338,
7960,
297,
6233,
29892,
322,
1556,
310,
278,
2348,
1127,
10070,
508,
367,
1476,
297,
738,
1532,
29899,
17712,
287,
282,
15328,
29889,
450,
432,
29983,
29883,
3304,
304,
3262,
12778,
263,
5412,
29892,
10029,
14225,
2181,
3322,
304,
445,
12580,
29880,
310,
2654,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
29906,
29871,
1309,
778,
4805,
29899,
14044,
5962,
367,
1389,
13,
13,
30226,
18350,
7933,
22623,
1236,
2496,
29892,
3060,
2986,
13,
13,
30226,
2319,
373,
291,
29892,
3060,
2986,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
282,
8941,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
270,
7612,
6454,
20452,
29892,
563,
22042,
13,
13,
29896,
29871,
29946,
29899,
21543,
508,
270,
7612,
7933,
521,
5475,
29892,
7482,
1312,
13,
13,
29896,
6131,
1129,
265,
521,
2638,
4764,
672,
13,
13,
29896,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
29896,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
1560,
12504,
3500,
374,
1335,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
30226,
18002,
3060,
2986,
2654,
373,
291,
13,
13,
30226,
18002,
270,
7612,
1236,
29872,
839,
432,
29983,
29883,
3304,
13,
13,
30226,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
678,
287,
16702,
923,
968,
13,
13,
20769,
368,
805,
764,
263,
29871,
29906,
29899,
339,
442,
20710,
798,
1351,
519,
274,
465,
1489,
280,
270,
728,
411,
7984,
292,
805,
764,
29889,
315,
5848,
569,
278,
367,
1389,
964,
278,
270,
728,
29889,
3462,
278,
22623,
1236,
2496,
322,
373,
291,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29947,
6233,
29892,
470,
2745,
278,
367,
1389,
338,
694,
5520,
282,
682,
297,
278,
4818,
29892,
23546,
5393,
1432,
29871,
29906,
6233,
304,
2507,
322,
2867,
701,
278,
367,
1389,
29889,
360,
6038,
1532,
297,
263,
784,
3825,
29889,
7106,
278,
367,
1389,
29544,
304,
278,
270,
728,
29889,
13,
13,
855,
381,
297,
278,
367,
550,
29892,
6454,
20452,
411,
23904,
29892,
521,
5475,
29892,
521,
2638,
4764,
672,
29892,
274,
9735,
29892,
7171,
506,
4764,
672,
29892,
470,
387,
1562,
29892,
3500,
374,
1335,
29892,
15795,
29892,
322,
1236,
2496,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
29900,
6233,
29892,
470,
2745,
278,
367,
550,
322,
18655,
1849,
526,
22707,
29892,
23546,
5393,
2748,
4203,
1582,
1549,
29889,
13,
13,
14084,
1434,
16330,
29892,
7689,
682,
280,
278,
521,
2638,
411,
278,
2654,
373,
291,
29892,
432,
29983,
29883,
3304,
29892,
322,
678,
287,
16702,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29929,
29906,
13,
13,
7827,
9950,
29871,
29953,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29941,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29955,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29900,
330,
13,
13,
7241,
495,
29871,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29929,
330,
13,
13,
14676,
262,
29871,
29941,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29941,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
435,
30175,
5454,
1529,
29901,
1932,
1236,
14067,
432,
29983,
29883,
3304,
29892,
367,
1854,
304,
3349,
278,
285,
4626,
681,
7546,
925,
1090,
278,
19309,
29889,
3938,
295,
2745,
278,
28610,
694,
5520,
3430,
1347,
29891,
29889,
13,
13,
2277,
4628,
17796,
521,
2638,
13,
13,
4013,
18655,
13956,
521,
2638,
6858,
1407,
2217,
8273,
322,
338,
7960,
297,
3109,
1135,
29871,
29941,
29900,
6233,
29892,
541,
372,
1603,
756,
393,
24064,
29892,
1472,
29899,
3601,
1050,
287,
21779,
29889,
1763,
6210,
2712,
701,
1584,
901,
29892,
15649,
758,
29899,
1859,
2986,
373,
291,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
30226,
18002,
4094,
13,
13,
29896,
18002,
3060,
2986,
373,
291,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
4628,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
1886,
8734,
6454,
20452,
29892,
563,
22042,
13,
13,
29896,
29871,
29946,
29899,
21543,
508,
3060,
2986,
7933,
521,
5475,
29892,
563,
22042,
13,
13,
29896,
6131,
1129,
265,
521,
2638,
4764,
672,
13,
13,
29906,
734,
294,
1129,
787,
26438,
13,
13,
29896,
30226,
734,
294,
1129,
787,
5962,
274,
9735,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
30642,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
15301,
678,
287,
16702,
923,
968,
13,
13,
29906,
6131,
1129,
787,
1436,
873,
3060,
2986,
10849,
432,
2883,
412,
8266,
29892,
409,
5779,
322,
18130,
29879,
2313,
25600,
313,
4149,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
22908,
278,
4094,
322,
373,
291,
297,
263,
2919,
20710,
798,
1351,
519,
12580,
29880,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29945,
6233,
29892,
470,
2745,
278,
373,
291,
338,
4964,
29889,
624,
381,
297,
278,
367,
550,
29892,
6454,
20452,
411,
23904,
29892,
521,
5475,
411,
23904,
29892,
521,
2638,
4764,
672,
29892,
26438,
29892,
322,
274,
9735,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29906,
29900,
6233,
29892,
470,
2745,
278,
373,
291,
338,
1407,
4964,
29889,
15154,
515,
278,
288,
854,
29889,
624,
381,
297,
278,
17182,
322,
15795,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
678,
287,
16702,
29892,
432,
2883,
412,
8266,
29892,
322,
274,
309,
424,
307,
29889,
14314,
682,
280,
278,
521,
2638,
411,
278,
678,
287,
16702,
29544,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29906,
29953,
13,
13,
7827,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
330,
13,
13,
29879,
397,
1974,
29871,
29941,
29945,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29896,
330,
13,
13,
7241,
495,
29871,
29955,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29896,
330,
13,
13,
14676,
262,
29871,
29896,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29896,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
18804,
278,
17182,
1156,
20710,
798,
5555,
278,
521,
2638,
8128,
1790,
7546,
310,
21054,
272,
322,
6911,
278,
916,
21054,
943,
304,
1999,
355,
29889,
13,
13,
2277,
5161,
9693,
411,
1226,
314,
420,
13,
13,
29934,
275,
9693,
338,
451,
23308,
363,
26795,
1472,
7984,
292,
322,
9126,
23546,
5393,
29889,
2973,
445,
1873,
29892,
366,
817,
871,
23546,
1432,
2846,
6233,
29892,
6820,
596,
289,
625,
567,
263,
2867,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
30642,
18002,
443,
1111,
12504,
826,
4089,
601,
19408,
13,
13,
29896,
2319,
373,
291,
29892,
3060,
2986,
13,
13,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
13,
13,
29941,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29906,
2723,
567,
270,
7612,
541,
725,
329,
10674,
1161,
13,
13,
29896,
30226,
2723,
567,
14671,
2256,
528,
14356,
1226,
314,
420,
13,
13,
29896,
18002,
14671,
2256,
3353,
29899,
17460,
26343,
13,
13,
29946,
2723,
567,
24354,
10917,
496,
13,
13,
30515,
18002,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
797,
263,
4091,
340,
20710,
798,
1351,
519,
29871,
29906,
29899,
339,
442,
274,
465,
1489,
280,
270,
728,
411,
263,
17343,
29892,
23546,
4208,
278,
19408,
29892,
373,
291,
29892,
322,
17182,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
278,
373,
291,
338,
4964,
29889,
13,
13,
15941,
278,
270,
728,
515,
278,
20710,
798,
1351,
29889,
10057,
3730,
3349,
278,
17343,
3448,
515,
366,
313,
517,
5557,
21837,
12138,
29879,
467,
624,
381,
297,
278,
2545,
386,
29892,
266,
25395,
29892,
15795,
29892,
322,
1236,
2496,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29945,
6233,
29892,
470,
2745,
1027,
1050,
292,
29889,
13,
13,
855,
381,
297,
278,
10674,
1161,
322,
1226,
314,
420,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
29945,
6233,
29892,
23546,
5393,
2748,
1432,
29871,
29945,
6233,
29889,
13,
13,
855,
381,
297,
278,
26343,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29945,
6233,
29889,
624,
381,
297,
278,
10917,
496,
322,
1459,
4467,
273,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
11015,
29892,
470,
2745,
278,
19408,
338,
22707,
322,
278,
10917,
496,
338,
281,
2782,
287,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29896,
29929,
13,
13,
7827,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29947,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
29946,
330,
13,
13,
7241,
495,
29871,
29955,
330,
13,
13,
29879,
688,
1503,
29871,
29953,
330,
13,
13,
14676,
262,
29871,
29896,
29953,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
30226,
380,
1279,
29892,
29871,
29896,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1522,
16010,
746,
11077,
263,
10664,
270,
728,
515,
278,
20710,
798,
1351,
29889,
29849,
3349,
278,
17343,
3448,
515,
366,
304,
5557,
21837,
12138,
29879,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
9033,
29933,
1955,
5971,
390,
12107,
29901,
826,
4089,
601,
19408,
338,
901,
6425,
11831,
296,
322,
756,
263,
6133,
380,
1279,
2793,
1135,
916,
4072,
310,
19408,
29892,
7709,
292,
263,
21054,
272,
1319,
322,
907,
25934,
5161,
9693,
29889,
13,
13,
2277,
2545,
617,
5079,
411,
432,
2883,
412,
8266,
322,
7171,
506,
13,
13,
29911,
1581,
29899,
29883,
3780,
29886,
2545,
617,
5079,
28189,
287,
411,
7171,
506,
29892,
432,
2883,
412,
8266,
29892,
274,
9735,
29892,
322,
301,
603,
3623,
625,
338,
263,
805,
4245,
29892,
1560,
554,
29891,
19595,
304,
4359,
738,
8490,
29899,
29924,
735,
470,
7062,
22741,
9953,
1318,
29892,
3704,
350,
9919,
12030,
323,
562,
359,
470,
21353,
15816,
29899,
29907,
309,
424,
307,
3956,
3712,
29889,
960,
366,
763,
263,
3287,
310,
12871,
29892,
5967,
278,
18130,
29879,
322,
777,
310,
278,
409,
5779,
297,
278,
432,
2883,
412,
8266,
746,
366,
1207,
445,
270,
728,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
16947,
292,
29871,
30226,
18002,
639,
16330,
13,
13,
29946,
2723,
567,
2545,
617,
5079,
23729,
1691,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29896,
18350,
10849,
432,
2883,
412,
8266,
29892,
8870,
1490,
3309,
3538,
29892,
409,
5779,
322,
18130,
29879,
2313,
25600,
29892,
16835,
368,
269,
506,
287,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
16835,
368,
269,
506,
287,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
29906,
734,
294,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
22908,
278,
2545,
617,
5079,
297,
263,
18350,
20710,
798,
1351,
519,
12580,
29880,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29906,
6233,
29892,
470,
2745,
925,
22707,
29899,
29883,
3780,
29886,
29889,
15154,
515,
278,
20710,
798,
1351,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
18350,
1661,
303,
860,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
432,
2883,
412,
8266,
322,
7171,
506,
363,
29871,
29941,
6233,
29892,
470,
2745,
278,
7171,
506,
338,
3578,
368,
3347,
9571,
322,
278,
432,
2883,
412,
8266,
16410,
304,
4964,
264,
29892,
23546,
5393,
13672,
29889,
24274,
16112,
577,
278,
7171,
506,
1838,
29915,
29873,
12138,
29889,
13,
13,
855,
381,
278,
274,
9735,
964,
278,
432,
2883,
412,
8266,
29544,
29889,
17278,
363,
29871,
29896,
11015,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
2545,
617,
5079,
29892,
301,
603,
3623,
625,
29892,
322,
15795,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29946,
29946,
13,
13,
7827,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29929,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
379,
9468,
29931,
4214,
379,
2891,
5868,
29902,
17101,
29901,
8843,
521,
5475,
1712,
288,
2719,
393,
508,
12138,
596,
19309,
29892,
17186,
29892,
322,
5076,
29889,
399,
799,
715,
6288,
15482,
1960,
470,
471,
29882,
596,
6567,
26606,
411,
14294,
29892,
577,
27580,
4094,
7389,
1156,
11415,
963,
29889,
13,
13,
2277,
26438,
15101,
1236,
294,
411,
14225,
29899,
392,
29899,
29879,
473,
12507,
346,
13,
13,
797,
925,
263,
7303,
310,
6233,
29892,
366,
508,
13389,
263,
11785,
29892,
260,
579,
29891,
2625,
270,
728,
393,
29915,
29879,
4922,
304,
9080,
411,
867,
24455,
1652,
804,
1886,
557,
470,
23546,
29899,
17283,
521,
21475,
10331,
414,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
1236,
294,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
29947,
29871,
1309,
778,
26438,
15101,
1236,
294,
29892,
17151,
2168,
13,
13,
29941,
6131,
1129,
787,
4094,
13,
13,
30515,
18002,
21783,
293,
327,
599,
29899,
29888,
9216,
9677,
13,
13,
29941,
6131,
1129,
787,
10849,
24841,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
274,
1241,
13848,
387,
279,
13,
13,
30226,
734,
294,
1129,
265,
26343,
303,
1279,
13,
13,
29896,
734,
294,
1129,
265,
3999,
420,
409,
5779,
29892,
15589,
29899,
307,
28470,
313,
25253,
29897,
13,
13,
797,
263,
18350,
20710,
798,
1351,
519,
12580,
29880,
29892,
23546,
4208,
278,
1236,
294,
322,
4094,
29889,
13,
13,
797,
263,
2319,
20710,
798,
1351,
519,
12580,
29880,
29892,
377,
3873,
4208,
278,
9886,
2348,
1127,
10070,
5174,
278,
3999,
420,
409,
5779,
2745,
278,
26343,
303,
1279,
338,
23556,
1490,
29889,
13,
13,
29924,
293,
798,
1351,
1716,
278,
1236,
294,
322,
12507,
346,
29892,
1716,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
30226,
6233,
29892,
470,
2745,
278,
1236,
294,
526,
7984,
287,
322,
278,
12507,
346,
756,
12003,
6419,
322,
338,
540,
630,
1549,
29889,
360,
6038,
278,
1236,
294,
1532,
297,
263,
784,
3825,
29889,
17934,
278,
1236,
294,
304,
16330,
270,
17006,
29889,
13,
13,
29928,
374,
5617,
280,
411,
278,
12507,
346,
29889,
14314,
682,
280,
411,
278,
3999,
420,
409,
5779,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29955,
29906,
13,
13,
7827,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29955,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
15774,
29892,
29871,
29896,
18655,
519,
13,
13,
2277,
6433,
287,
376,
29890,
12535,
29908,
623,
793,
13,
13,
3644,
366,
29915,
276,
12220,
1747,
263,
9045,
29891,
6808,
814,
29892,
1106,
694,
4340,
1135,
445,
4780,
9522,
412,
29892,
607,
1634,
15815,
278,
14294,
21054,
943,
310,
288,
854,
29899,
29890,
12535,
623,
793,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
6433,
287,
26163,
639,
16330,
13,
13,
29906,
6131,
1129,
787,
3578,
17354,
26438,
13,
13,
29906,
6131,
1129,
787,
7901,
6302,
287,
270,
1255,
274,
661,
495,
2722,
13,
13,
29906,
6131,
1129,
787,
22843,
1153,
275,
1144,
13,
13,
29896,
734,
294,
1129,
265,
5962,
274,
2559,
314,
265,
13,
13,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
13,
13,
30515,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
13,
13,
30515,
734,
294,
1129,
265,
5962,
330,
5621,
13,
13,
30515,
734,
294,
1129,
265,
5962,
599,
1028,
625,
13,
13,
29946,
2319,
6274,
1460,
7075,
29892,
11871,
2397,
29892,
470,
402,
2883,
623,
793,
29892,
8870,
1490,
29892,
28337,
2313,
25600,
13,
13,
30226,
18002,
10849,
24841,
3623,
625,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
17042,
29876,
8842,
29892,
15589,
29899,
307,
28470,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
17354,
26438,
29892,
274,
661,
495,
2722,
29892,
1153,
275,
1144,
29892,
274,
2559,
314,
265,
29892,
17182,
29892,
18254,
29885,
387,
29892,
330,
5621,
29892,
322,
599,
1028,
625,
29889,
13,
13,
22908,
278,
623,
793,
297,
263,
4091,
340,
29871,
29896,
29899,
339,
442,
20710,
798,
1351,
519,
289,
5086,
270,
728,
411,
263,
17343,
29889,
24674,
265,
278,
6433,
292,
964,
278,
623,
793,
29889,
6803,
278,
24841,
3623,
625,
2820,
278,
623,
793,
29889,
13,
13,
29924,
293,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29953,
304,
29871,
29955,
6233,
29892,
470,
2745,
278,
623,
793,
526,
4964,
29889,
13,
13,
29907,
598,
3730,
6782,
278,
623,
793,
304,
16330,
715,
1078,
29892,
10124,
278,
3623,
1575,
297,
278,
270,
728,
29889,
20279,
798,
1351,
278,
9886,
3623,
1575,
29892,
443,
11911,
287,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
278,
29544,
338,
12212,
491,
4203,
313,
517,
1048,
29871,
30515,
18002,
467,
13,
13,
14084,
1434,
16330,
29892,
10293,
5617,
280,
278,
3623,
625,
29544,
975,
278,
623,
793,
29889,
14314,
682,
280,
411,
278,
17042,
29876,
8842,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29906,
13,
13,
7827,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29929,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
29900,
330,
13,
13,
14676,
262,
29871,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
30226,
15774,
29892,
29871,
29896,
9950,
13,
13,
29924,
2965,
25180,
7520,
4214,
350,
1164,
3308,
29901,
1763,
15589,
29899,
307,
579,
302,
8842,
297,
278,
20710,
798,
1351,
29892,
9677,
963,
297,
263,
2323,
7546,
373,
263,
20710,
798,
1351,
519,
15284,
29889,
20279,
798,
1351,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
304,
29871,
29946,
6233,
29892,
470,
2745,
278,
302,
8842,
526,
5227,
629,
424,
29892,
23546,
5393,
2748,
1432,
11015,
29889,
405,
8842,
508,
12138,
9098,
29892,
577,
1423,
963,
13672,
29889,
13,
13,
2277,
541,
8489,
309,
29895,
29899,
29877,
271,
282,
4564,
6926,
411,
14294,
7254,
16344,
304,
3262,
13,
13,
1349,
682,
366,
1016,
29915,
29873,
505,
931,
304,
1207,
263,
3632,
331,
1943,
26044,
373,
4723,
3250,
286,
1398,
886,
29973,
25086,
1449,
29889,
3387,
19012,
278,
7243,
1113,
446,
10193,
14432,
310,
931,
322,
20710,
798,
1351,
5375,
2011,
1080,
10940,
366,
864,
29889,
1152,
1906,
297,
278,
3942,
1058,
1016,
29915,
29873,
763,
282,
4564,
6926,
470,
526,
21217,
1009,
1559,
5824,
29892,
1074,
278,
20279,
798,
5555,
8396,
375,
304,
1207,
385,
5375,
288,
1004,
1026,
2012,
29889,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
29871,
29896,
7243,
1113,
446,
322,
29871,
29906,
6131,
1129,
787,
304,
3262,
639,
16330,
13,
13,
29911,
4590,
29925,
4214,
13,
13,
29896,
30226,
2723,
567,
14671,
2256,
7254,
495,
2722,
313,
12717,
29871,
29947,
29871,
1309,
778,
29897,
13,
13,
29906,
6131,
1129,
787,
4094,
13,
13,
29896,
6131,
1129,
265,
3578,
17354,
26438,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
454,
3712,
503,
342,
13,
13,
29896,
6131,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
29906,
734,
294,
1129,
787,
26343,
303,
1279,
13,
13,
29896,
734,
294,
1129,
265,
1109,
2911,
6597,
13,
13,
29925,
2190,
5454,
29968,
2890,
13,
13,
29896,
18002,
4482,
29899,
29888,
271,
541,
8489,
309,
29895,
13,
13,
30226,
18002,
443,
1111,
12504,
4996,
29899,
15108,
292,
288,
271,
1004,
284,
322,
29871,
29906,
6131,
1129,
787,
2298,
29871,
29906,
734,
294,
1129,
787,
443,
1111,
12504,
4996,
29899,
15108,
292,
288,
271,
1004,
284,
29892,
13931,
671,
13,
13,
29896,
2919,
19710,
13,
13,
29906,
6131,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
30642,
18002,
3353,
29899,
29893,
354,
271,
2331,
2202,
1652,
473,
13,
13,
29906,
734,
294,
1129,
787,
3578,
17354,
26438,
13,
13,
29896,
734,
294,
1129,
265,
289,
5086,
4764,
672,
13,
13,
30226,
734,
294,
1129,
265,
289,
5086,
269,
8887,
13,
13,
30515,
734,
294,
1129,
265,
5962,
274,
2559,
314,
265,
13,
13,
30515,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
13,
13,
19159,
292,
805,
764,
13,
13,
797,
263,
18350,
20710,
798,
1351,
519,
12580,
29880,
29892,
23546,
4208,
599,
278,
304,
3262,
2348,
1127,
10070,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29906,
6233,
29889,
624,
381,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29906,
6233,
29889,
960,
4312,
29892,
20710,
798,
1351,
363,
29871,
29896,
29899,
1195,
1082,
18747,
2745,
278,
29544,
756,
12003,
6419,
322,
338,
540,
630,
1549,
29892,
23546,
5393,
1156,
1269,
7292,
29889,
960,
3907,
278,
304,
3262,
297,
6564,
29892,
4612,
322,
337,
1341,
4087,
403,
363,
701,
304,
2211,
3841,
29889,
1763,
337,
354,
271,
29892,
20710,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29941,
29900,
304,
29871,
29946,
29900,
6923,
29892,
470,
2745,
540,
630,
1549,
29889,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
377,
3873,
4208,
278,
541,
8489,
309,
29895,
29892,
29871,
30226,
18002,
288,
271,
1004,
284,
29892,
278,
19710,
29892,
322,
17182,
29889,
2803,
2317,
363,
29871,
29945,
6233,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
5004,
18350,
12580,
29880,
29892,
23546,
4208,
278,
1652,
473,
29892,
17354,
26438,
29892,
289,
5086,
4764,
672,
29892,
289,
5086,
269,
8887,
29892,
274,
2559,
314,
265,
29892,
322,
18254,
29885,
387,
29889,
13,
13,
855,
381,
278,
541,
8489,
309,
29895,
29544,
964,
278,
1652,
473,
29544,
2745,
278,
10193,
338,
925,
2730,
391,
6419,
541,
694,
1652,
473,
338,
7962,
29889,
3872,
29915,
29873,
975,
28084,
29936,
278,
10193,
1122,
367,
10029,
19703,
2272,
29889,
960,
3907,
278,
10193,
297,
6564,
29892,
4612,
322,
337,
1341,
4087,
403,
363,
701,
304,
2211,
3841,
29889,
13,
13,
2831,
1269,
7243,
1113,
446,
29892,
3578,
368,
805,
764,
263,
2319,
20710,
798,
1351,
519,
15284,
411,
7984,
292,
805,
764,
29889,
19955,
280,
29871,
30515,
18002,
10193,
11480,
278,
15284,
29892,
10029,
9677,
292,
278,
29544,
411,
278,
11979,
280,
29889,
14314,
682,
280,
29871,
29896,
734,
294,
1129,
265,
310,
278,
9886,
29871,
29906,
6131,
1129,
787,
2298,
29871,
29906,
734,
294,
1129,
787,
288,
271,
1004,
284,
975,
278,
7243,
1113,
446,
29889,
20279,
798,
1351,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29945,
29945,
6923,
304,
29871,
29896,
11015,
29892,
470,
2745,
263,
27278,
304,
720,
23945,
15478,
297,
278,
4818,
5304,
714,
5941,
29889,
24674,
265,
278,
304,
3262,
975,
278,
7243,
1113,
446,
29889,
830,
11666,
411,
278,
9886,
10193,
29892,
288,
271,
1004,
284,
29892,
322,
304,
3262,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29945,
29900,
13,
13,
7827,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
29945,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29955,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29906,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
30226,
15774,
29892,
29871,
29896,
9950,
13,
13,
29924,
2965,
25180,
7520,
4214,
350,
1164,
3308,
29901,
1763,
1207,
263,
26935,
286,
688,
288,
1004,
1026,
29892,
3578,
368,
805,
764,
263,
20710,
798,
1351,
519,
286,
688,
411,
7984,
292,
805,
764,
29889,
512,
278,
286,
688,
29892,
23546,
4208,
29871,
29946,
19710,
18960,
313,
272,
29871,
30515,
18002,
19710,
23764,
511,
29871,
29941,
6131,
1129,
787,
270,
7612,
18655,
1849,
313,
14565,
408,
22623,
1236,
2496,
29892,
373,
291,
29892,
322,
286,
1878,
8345,
511,
29871,
29906,
6131,
1129,
787,
528,
1127,
7176,
10917,
496,
29892,
322,
29871,
29896,
6131,
1129,
265,
4482,
29899,
29888,
271,
678,
287,
16702,
470,
285,
1187,
923,
968,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
11015,
29889,
624,
381,
29889,
20279,
798,
1351,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29896,
304,
29871,
29896,
30226,
6233,
29892,
470,
2745,
278,
19710,
18960,
526,
731,
29889,
13,
13,
29937,
1999,
2548,
13,
13,
1028,
262,
496,
322,
1616,
436,
6946,
28191,
13,
13,
287,
314,
420,
28191,
13,
13,
10921,
17796,
322,
696,
28470,
2654,
22623,
1236,
2496,
3165,
8366,
13,
13,
4187,
725,
329,
10674,
1161,
322,
26163,
22300,
13,
13,
29885,
524,
287,
1236,
29874,
22300,
411,
343,
468,
4227,
2381,
5168,
13,
13,
29891,
468,
4227,
12642,
29886,
496,
29877,
13,
13,
1037,
25934,
6454,
1219,
29899,
6500,
309,
22300,
13,
13,
29887,
7285,
7339,
19521,
4497,
328,
10714,
292,
13,
13,
29886,
4778,
13,
13,
307,
28470,
22623,
1236,
2496,
322,
7171,
506,
12507,
346,
13,
13,
1201,
7655,
719,
343,
468,
4227,
610,
5444,
1169,
13,
13,
284,
8315,
29892,
413,
744,
29892,
322,
7254,
16344,
10597,
583,
13,
13,
272,
927,
29899,
481,
2200,
327,
10597,
583,
13,
13,
4630,
719,
29899,
16344,
2243,
1878,
13,
13,
412,
273,
329,
541,
357,
322,
9892,
1648,
376,
625,
907,
314,
29908,
13,
13,
303,
1610,
16344,
3803,
2028,
13,
13,
3492,
1122,
671,
596,
1999,
1581,
470,
9687,
21433,
871,
746,
366,
864,
304,
377,
666,
701,
263,
14671,
2256,
13748,
29892,
541,
372,
508,
884,
1371,
366,
5948,
1207,
9045,
29891,
5807,
26514,
29892,
3669,
567,
29892,
12507,
778,
29892,
4497,
328,
10714,
886,
29892,
322,
6808,
814,
29879,
29889,
3164,
2548,
508,
367,
385,
10839,
11043,
304,
13731,
6617,
366,
470,
596,
4344,
304,
7910,
15774,
322,
18655,
519,
27430,
1363,
372,
4327,
29879,
9687,
29879,
393,
526,
443,
8302,
4447,
470,
393,
366,
1122,
505,
28305,
29889,
1126,
25531,
3623,
18499,
29892,
1999,
2548,
278,
3353,
15774,
470,
18655,
519,
11551,
29879,
278,
5713,
495,
322,
18254,
374,
296,
2793,
29889,
7311,
1999,
2548,
11071,
29879,
278,
2348,
1127,
10070,
577,
1532,
29892,
366,
508,
4870,
263,
3287,
310,
1422,
9045,
29891,
9687,
29879,
964,
697,
16330,
29892,
5256,
5281,
278,
12875,
310,
18254,
374,
1237,
366,
29915,
276,
1136,
9929,
29892,
1316,
408,
411,
23816,
719,
29899,
17104,
719,
14866,
1878,
29892,
297,
607,
366,
679,
278,
9045,
23633,
310,
2211,
1422,
285,
21211,
30003,
392,
1559,
5450,
29889,
512,
838,
8315,
29892,
476,
744,
29892,
322,
10924,
16344,
4116,
6983,
583,
29892,
366,
14405,
451,
871,
285,
21211,
322,
263,
18655,
519,
541,
884,
1146,
16129,
322,
302,
8842,
29889,
13,
13,
3664,
12220,
1537,
1048,
278,
18459,
310,
10650,
528,
14356,
1236,
294,
470,
304,
21154,
29973,
3967,
341,
524,
287,
3938,
29874,
317,
1132,
411,
612,
468,
4227,
3925,
5168,
470,
315,
1633,
29891,
4335,
1219,
29899,
9496,
309,
317,
1132,
29889,
21223,
363,
263,
982,
304,
21230,
701,
8656,
1559,
5450,
322,
6432,
708,
380,
7358,
363,
385,
8034,
470,
1156,
29899,
27041,
5807,
547,
29973,
806,
666,
701,
2155,
314,
420,
360,
666,
470,
8037,
1522,
273,
322,
1528,
28470,
4367,
10914,
3938,
2496,
13863,
8366,
29889,
20768,
263,
5172,
17803,
29973,
5806,
366,
29915,
276,
1045,
6504,
777,
3353,
29899,
29893,
354,
271,
4940,
29874,
470,
872,
329,
29948,
292,
521,
21475,
2078,
19416,
29892,
1207,
349,
4778,
470,
1528,
28470,
10914,
3938,
2496,
322,
7455,
506,
23863,
346,
304,
1925,
373,
2845,
697,
30003,
272,
1716,
29889,
14279,
1747,
1554,
304,
15523,
596,
14225,
304,
720,
29973,
1128,
1048,
3938,
273,
329,
1205,
357,
322,
10765,
1648,
376,
29902,
346,
315,
1633,
8652,
13,
13,
10358,
2548,
338,
884,
5172,
29892,
6858,
694,
12871,
29892,
322,
6511,
4780,
5941,
786,
29889,
3387,
3183,
263,
2846,
2348,
1127,
10070,
964,
596,
623,
13036,
29892,
285,
3466,
263,
4607,
363,
263,
2846,
6233,
313,
272,
29892,
297,
777,
4251,
29892,
871,
6923,
511,
322,
13389,
263,
1612,
2330,
310,
3353,
29899,
1181,
397,
1781,
2264,
29889,
2973,
1316,
5172,
2582,
29892,
727,
29915,
29879,
694,
817,
304,
1235,
445,
1224,
24285,
29181,
623,
13036,
7845,
28132,
373,
596,
6795,
3332,
29889,
13,
13,
4986,
350,
1307,
2797,
29901,
259,
13,
15156,
385,
623,
13036,
411,
1999,
3076,
304,
14405,
1023,
470,
901,
2348,
1127,
10070,
304,
6176,
263,
3153,
21054,
272,
470,
11029,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
3164,
1581,
470,
9687,
21433,
29892,
14051,
495,
805,
271,
2497,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
12391,
21994,
278,
1999,
1581,
1728,
278,
17343,
29889,
7753,
278,
19087,
5253,
310,
9687,
508,
1653,
3755,
263,
4473,
565,
278,
2246,
3508,
29915,
29873,
26130,
29889,
13,
13,
30119,
2169,
538,
2222,
310,
920,
5807,
688,
278,
17343,
338,
29892,
366,
881,
4808,
372,
1623,
1550,
278,
1999,
1581,
338,
13598,
29889,
13,
13,
30119,
29849,
5967,
5716,
363,
278,
8118,
304,
7985,
30003,
271,
3203,
697,
29899,
22585,
13284,
322,
901,
363,
1407,
16835,
470,
7375,
15617,
4841,
29889,
13,
13,
30119,
315,
329,
18655,
1849,
322,
916,
9687,
29879,
964,
12785,
304,
9025,
963,
304,
18342,
403,
2820,
278,
12995,
311,
29889,
13,
13,
30119,
1932,
3907,
10597,
583,
470,
916,
11220,
13748,
29879,
393,
1246,
363,
14890,
29892,
4417,
372,
1833,
508,
1371,
4772,
263,
16699,
708,
13748,
29889,
960,
366,
671,
14671,
2256,
15774,
29892,
366,
1122,
451,
817,
408,
1568,
14890,
29889,
13,
13,
30119,
2823,
15332,
25562,
363,
1999,
2548,
313,
18271,
4100,
2472,
373,
1999,
2548,
7375,
15617,
4841,
467,
13,
13,
2277,
10917,
496,
322,
1616,
436,
6946,
28191,
13,
13,
4013,
28191,
338,
628,
14803,
411,
2181,
11936,
18655,
1849,
470,
2181,
3322,
29891,
289,
12535,
3353,
29899,
29893,
354,
271,
282,
2028,
14837,
2710,
29889,
1152,
263,
1855,
7539,
29892,
9080,
372,
14294,
29889,
739,
29915,
29879,
1900,
27849,
278,
2462,
366,
1207,
372,
29936,
372,
29867,
304,
679,
16699,
708,
746,
337,
1341,
4087,
630,
2086,
1472,
29889,
13,
13,
6304,
29963,
2890,
29871,
29896,
29900,
891,
29871,
30515,
18002,
639,
16330,
13,
13,
29906,
2723,
567,
24354,
10917,
496,
470,
29871,
29896,
29900,
29871,
1309,
778,
14671,
2256,
3060,
2986,
10917,
496,
29892,
266,
1450,
287,
322,
269,
802,
6096,
287,
15589,
13,
13,
29896,
29906,
29871,
1309,
778,
14671,
2256,
1616,
436,
6946,
26490,
29892,
266,
1450,
287,
322,
7482,
1312,
13,
13,
29896,
18002,
9950,
29899,
9021,
8656,
12311,
343,
468,
4227,
13,
13,
30226,
18002,
1302,
1503,
873,
3060,
2986,
7933,
373,
1080,
13,
13,
29941,
6131,
1129,
787,
4482,
29899,
29888,
271,
907,
314,
923,
968,
13,
13,
29896,
6131,
1129,
265,
528,
1127,
7176,
1459,
4467,
273,
29899,
29909,
1039,
4425,
923,
968,
1999,
355,
13,
13,
29896,
734,
294,
1129,
265,
1375,
1133,
470,
2181,
15392,
7171,
506,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
599,
278,
2348,
1127,
10070,
2745,
4359,
10597,
541,
10029,
19875,
29891,
29889,
1816,
345,
7389,
470,
4612,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
304,
29871,
29941,
6199,
304,
9080,
521,
24455,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29946,
29945,
13,
13,
7827,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29953,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1763,
9080,
14294,
29892,
758,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
24674,
265,
278,
28191,
964,
263,
2919,
364,
420,
9089,
470,
2319,
274,
465,
1489,
280,
270,
728,
29889,
350,
1296,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
28191,
338,
540,
630,
1549,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
383,
1672,
29999,
1430,
10937,
1177,
2477,
29950,
29901,
4803,
263,
3104,
1219,
9597,
261,
304,
5948,
322,
26606,
269,
802,
29872,
911,
278,
2730,
391,
545,
714,
310,
14671,
2256,
10917,
496,
29889,
13,
13,
2277,
1226,
314,
420,
28191,
13,
13,
4013,
26823,
29899,
4018,
28191,
338,
10839,
408,
385,
17724,
5839,
29899,
1004,
29899,
786,
5807,
547,
411,
263,
9262,
310,
10849,
18655,
1849,
29889,
450,
20021,
21054,
943,
5101,
7148,
1532,
411,
26438,
15101,
1236,
294,
470,
10076,
567,
310,
2654,
22623,
1236,
2496,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30515,
18002,
639,
16330,
13,
13,
29896,
30226,
2723,
567,
14671,
2256,
528,
14356,
1226,
314,
420,
29892,
266,
1450,
287,
13,
13,
30226,
18002,
9950,
29899,
9021,
8656,
12311,
343,
468,
4227,
13,
13,
29906,
6131,
1129,
787,
1302,
1503,
873,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29896,
30226,
6131,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
734,
294,
1129,
787,
3578,
17354,
26438,
13,
13,
29906,
734,
294,
1129,
787,
304,
28470,
3999,
420,
17182,
13,
13,
30226,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
2348,
1127,
10070,
363,
29871,
29941,
29900,
6923,
29892,
470,
2745,
10597,
29889,
1816,
345,
7389,
470,
4612,
322,
337,
1341,
4087,
403,
363,
701,
304,
5320,
3841,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29946,
29900,
13,
13,
7827,
9950,
29871,
29953,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29896,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29896,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29896,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29896,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
2277,
4796,
17796,
322,
696,
28470,
2654,
22623,
1236,
2496,
3165,
8366,
13,
13,
9588,
28470,
7171,
506,
12778,
263,
316,
781,
2197,
18254,
1017,
21054,
272,
304,
445,
907,
25934,
3165,
8366,
29892,
1550,
696,
28470,
2654,
22623,
1236,
22437,
301,
355,
2927,
322,
263,
14225,
1560,
554,
3335,
29889,
1816,
1490,
411,
20947,
310,
2181,
3322,
29891,
10650,
12461,
29887,
583,
29892,
445,
9677,
3732,
385,
22910,
2625,
270,
728,
472,
301,
3322,
470,
263,
24064,
5807,
547,
738,
2230,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
6131,
1129,
787,
3165,
8366,
322,
29871,
30226,
18002,
18655,
1849,
639,
16330,
13,
13,
29950,
5005,
29924,
3308,
13,
13,
30226,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
302,
5301,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
696,
28470,
2654,
22623,
1236,
22437,
29892,
7482,
1312,
565,
18046,
839,
13,
13,
29906,
6131,
1129,
787,
9950,
29899,
9021,
269,
473,
907,
314,
13,
13,
29896,
30226,
734,
294,
1129,
787,
274,
1241,
13848,
387,
279,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
18046,
839,
1375,
1133,
696,
28470,
7171,
506,
13,
13,
30515,
734,
294,
1129,
265,
23904,
25158,
313,
25253,
29897,
13,
13,
29896,
30226,
734,
294,
1129,
787,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29906,
2723,
567,
18655,
1849,
29892,
1316,
408,
24354,
1559,
307,
1372,
29892,
26438,
15101,
1236,
294,
29892,
269,
506,
287,
2654,
22623,
1236,
22437,
29892,
269,
506,
287,
274,
1682,
398,
2596,
29892,
470,
263,
10296,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
3165,
8366,
2348,
1127,
10070,
5174,
278,
17182,
2745,
278,
7429,
5718,
3819,
29889,
17934,
304,
263,
2319,
12580,
29880,
29889,
624,
381,
297,
278,
17182,
29889,
1816,
345,
472,
5716,
10430,
411,
278,
18655,
1849,
470,
4612,
322,
337,
1341,
4087,
403,
363,
701,
304,
1023,
3841,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29947,
29946,
13,
13,
7827,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29941,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29896,
18655,
519,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
14491,
443,
3880,
367,
550,
297,
278,
337,
1341,
4087,
1061,
363,
701,
304,
1023,
3841,
470,
3889,
911,
963,
297,
385,
263,
2728,
523,
5639,
363,
701,
304,
697,
4098,
29889,
1394,
925,
671,
278,
2989,
508,
322,
3765,
278,
9522,
412,
29889,
13,
13,
2277,
541,
725,
329,
10674,
1161,
322,
26163,
22300,
13,
13,
26521,
4083,
6416,
756,
11977,
2253,
1135,
263,
12580,
29880,
1319,
310,
445,
5343,
29894,
3305,
22300,
29889,
1551,
291,
322,
7171,
506,
788,
263,
4048,
706,
6023,
393,
12141,
29879,
278,
14225,
2264,
310,
278,
10674,
1161,
322,
26163,
29892,
1550,
925,
263,
2586,
310,
274,
388,
4584,
4076,
263,
14294,
8341,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
18350,
373,
291,
29892,
3060,
2986,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
29941,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
470,
18655,
519,
2545,
386,
13,
13,
29906,
29946,
29871,
1309,
778,
13630,
287,
541,
725,
329,
470,
916,
13851,
10674,
1161,
13,
13,
29896,
18002,
9644,
705,
6302,
287,
26163,
3623,
625,
13,
13,
29896,
18350,
16108,
5556,
14803,
26163,
29892,
1236,
29872,
839,
322,
270,
7612,
13,
13,
30515,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
29925,
22466,
310,
274,
388,
4584,
13,
13,
29896,
734,
294,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
797,
263,
10961,
17765,
29892,
12871,
278,
17182,
975,
18350,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
363,
29871,
29945,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
13672,
29889,
13,
13,
855,
381,
297,
278,
7171,
506,
29889,
17278,
363,
29871,
29906,
6233,
29892,
470,
2745,
278,
7171,
506,
338,
5227,
629,
424,
541,
22602,
29915,
29873,
23580,
304,
17354,
29889,
13,
13,
855,
381,
297,
278,
9886,
2348,
1127,
10070,
5174,
278,
454,
3712,
3623,
625,
29889,
1771,
292,
304,
263,
1027,
1050,
29892,
1603,
975,
18350,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29906,
29900,
6233,
577,
278,
21054,
943,
1999,
355,
29892,
23546,
5393,
23025,
29889,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
313,
794,
278,
1999,
1581,
17343,
511,
1889,
278,
22300,
297,
9853,
267,
2745,
10597,
29889,
10057,
3730,
736,
278,
22300,
304,
278,
3104,
29889,
624,
381,
297,
278,
454,
3712,
3623,
625,
29889,
17278,
975,
18350,
12871,
363,
29871,
29941,
6233,
29892,
470,
2745,
7375,
29892,
23546,
5393,
23025,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29896,
29947,
13,
13,
7827,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29896,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29946,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29896,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
29871,
30226,
15774,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
350,
1307,
2797,
4214,
379,
2891,
17705,
29984,
11150,
29903,
29901,
1522,
16010,
746,
1999,
2548,
7375,
15617,
4841,
29889,
21141,
292,
278,
1999,
1581,
17343,
28057,
12871,
322,
21837,
515,
772,
3262,
1283,
278,
17343,
29889,
7849,
1999,
1581,
301,
4841,
505,
263,
4818,
4004,
393,
508,
367,
6206,
29889,
887,
508,
1584,
2058,
263,
29181,
304,
20466,
975,
278,
8718,
29889,
14893,
1999,
2548,
472,
278,
19604,
6210,
322,
7910,
304,
278,
7429,
6210,
29892,
13587,
278,
17343,
1623,
9226,
368,
29889,
960,
366,
505,
385,
5198,
4455,
29892,
470,
1361,
29882,
2495,
29892,
1999,
1581,
29892,
366,
508,
671,
372,
2012,
29889,
13,
13,
29885,
524,
287,
1236,
29874,
22300,
411,
343,
468,
4227,
2381,
5168,
13,
13,
2277,
20559,
287,
1236,
29874,
22300,
411,
343,
468,
4227,
2381,
5168,
13,
13,
29903,
16668,
7933,
1236,
294,
322,
10849,
20559,
526,
263,
4922,
1993,
297,
445,
270,
728,
29889,
319,
1652,
473,
728,
310,
907,
25934,
343,
468,
4227,
12814,
29879,
9560,
368,
411,
278,
325,
4626,
424,
7933,
22300,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29896,
29953,
29871,
1309,
778,
14671,
2256,
7933,
1236,
294,
29892,
266,
1450,
287,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
322,
29871,
29896,
30226,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
29892,
13931,
671,
13,
13,
29906,
6131,
1129,
787,
599,
29899,
15503,
4220,
1652,
473,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
13,
13,
29947,
18350,
10849,
20559,
11308,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
30515,
18002,
9950,
29899,
9021,
8656,
343,
468,
4227,
13,
13,
29896,
2319,
301,
603,
29892,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
9505,
344,
278,
1236,
294,
29892,
29871,
29896,
18002,
2545,
386,
29892,
278,
1652,
473,
29892,
322,
7171,
506,
29871,
29945,
470,
29871,
29953,
3064,
29892,
470,
2745,
278,
1236,
294,
526,
10029,
9391,
701,
29889,
10554,
278,
29544,
363,
29871,
29896,
11015,
29892,
470,
2745,
10029,
19875,
29891,
29889,
3462,
278,
20559,
29892,
15795,
29892,
322,
1236,
2496,
29889,
10554,
363,
29871,
29896,
29900,
6923,
29892,
470,
2745,
278,
20559,
338,
1436,
873,
3060,
2986,
29889,
13,
13,
797,
263,
18350,
12507,
346,
8357,
29892,
23546,
4208,
278,
1236,
29874,
29544,
322,
278,
9886,
29871,
29896,
30226,
2723,
567,
2545,
386,
29889,
1771,
292,
304,
263,
1027,
1050,
975,
18350,
29899,
9812,
12871,
29889,
17278,
363,
29871,
29906,
6233,
29892,
470,
2745,
278,
22300,
12003,
575,
29892,
23546,
5393,
23025,
29889,
4367,
24551,
278,
12871,
304,
18350,
29889,
17278,
363,
29871,
29896,
29900,
6233,
29892,
23546,
5393,
23025,
29889,
15154,
515,
278,
12871,
29889,
13,
13,
14084,
1434,
16330,
29892,
805,
6150,
29871,
29896,
6131,
1129,
265,
343,
468,
4227,
11480,
1269,
16330,
310,
22300,
29889,
5293,
263,
27278,
304,
720,
23945,
29892,
330,
2705,
8206,
372,
1549,
278,
343,
468,
4227,
304,
1653,
263,
2381,
5168,
470,
2874,
310,
596,
7348,
29889,
1816,
345,
411,
278,
301,
603,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29900,
29955,
13,
13,
7827,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29947,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29947,
330,
13,
13,
7241,
495,
29871,
29955,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
30226,
20793,
27654,
13,
13,
2277,
343,
468,
4227,
12642,
29886,
496,
29877,
13,
13,
15870,
1749,
907,
25934,
1873,
310,
445,
5972,
11220,
22300,
29889,
739,
3732,
263,
26823,
29899,
4058,
287,
301,
3322,
470,
2143,
690,
2790,
623,
300,
3950,
297,
11801,
29892,
746,
10849,
6454,
20452,
526,
472,
1009,
1436,
342,
29889,
13,
13,
6304,
29963,
2890,
29871,
29945,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29946,
2723,
567,
9950,
29899,
9021,
8656,
12311,
343,
468,
4227,
13,
13,
29906,
18350,
10107,
412,
6454,
20452,
29892,
12616,
287,
13,
13,
29941,
18350,
7933,
373,
1080,
29892,
12616,
287,
13,
13,
30515,
18002,
11942,
1647,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
7967,
1503,
873,
3060,
2986,
10849,
274,
309,
424,
307,
304,
21779,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
599,
278,
2348,
1127,
10070,
2745,
4359,
10597,
29892,
541,
411,
777,
18459,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29896,
29945,
13,
13,
7827,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29906,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29896,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29900,
330,
13,
13,
14676,
262,
29871,
29896,
29953,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
9950,
29899,
9021,
27274,
29892,
29871,
29896,
20793,
27654,
13,
13,
2277,
907,
25934,
6454,
1219,
29899,
6500,
309,
22300,
13,
13,
4013,
22300,
756,
599,
278,
21054,
272,
322,
907,
25934,
18459,
366,
5360,
1728,
599,
278,
269,
1337,
630,
9950,
30003,
392,
411,
263,
282,
3322,
310,
26823,
515,
304,
21154,
322,
367,
550,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
7027,
14299,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
270,
7612,
6454,
20452,
29892,
563,
22042,
13,
13,
29896,
29906,
29871,
1309,
778,
3578,
4964,
304,
21154,
29892,
7482,
1312,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
29896,
29899,
22466,
12785,
13,
13,
29906,
6131,
1129,
787,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
11417,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1236,
29872,
839,
13,
13,
30226,
18002,
658,
359,
873,
4870,
287,
10849,
2362,
309,
322,
29871,
30515,
18002,
658,
359,
873,
4870,
287,
10849,
2362,
309,
29892,
29081,
322,
5700,
964,
16835,
10076,
567,
29892,
13931,
671,
13,
13,
29896,
734,
294,
1129,
265,
373,
291,
4764,
672,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
30515,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
313,
25253,
29897,
13,
13,
30226,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
470,
18655,
519,
2545,
386,
13,
13,
30226,
18002,
29871,
29896,
29900,
29900,
29995,
1559,
5450,
3623,
625,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
9505,
344,
278,
367,
550,
29892,
6454,
20452,
411,
23904,
29892,
304,
21154,
29892,
6454,
1219,
11417,
29892,
322,
7171,
506,
29871,
29945,
470,
29871,
29953,
3064,
29892,
470,
2745,
278,
367,
550,
29892,
6454,
20452,
29892,
322,
7171,
506,
526,
1436,
873,
3060,
2986,
29889,
5293,
263,
14051,
495,
805,
271,
2497,
29892,
24559,
412,
278,
2625,
29889,
10554,
363,
29871,
29896,
11015,
29892,
470,
2745,
10597,
29892,
885,
2390,
292,
278,
2625,
2748,
4203,
1582,
1549,
29889,
13,
13,
2528,
29871,
30226,
18002,
2362,
309,
29892,
278,
373,
291,
4764,
672,
29892,
15795,
29892,
1236,
2496,
29892,
322,
2654,
1236,
2496,
17422,
10794,
29889,
10554,
363,
29871,
29896,
29945,
304,
29871,
29906,
29900,
6923,
29892,
470,
2745,
278,
2362,
309,
338,
3060,
2986,
29889,
6803,
964,
263,
18350,
12507,
346,
8357,
29889,
624,
381,
297,
278,
2545,
386,
322,
1559,
5450,
3623,
625,
29889,
1771,
292,
304,
263,
1027,
1050,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29945,
304,
29871,
29953,
6233,
29892,
470,
2745,
278,
22300,
338,
540,
630,
1549,
29889,
13,
13,
14084,
1434,
16330,
29892,
330,
2753,
728,
411,
278,
9886,
29871,
30515,
18002,
2362,
309,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29945,
13,
13,
7827,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29929,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29955,
330,
13,
13,
7241,
495,
29871,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29896,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29896,
30226,
20793,
27654,
13,
13,
2277,
330,
7285,
7339,
19521,
4497,
328,
10714,
292,
13,
13,
29954,
7285,
343,
468,
4227,
11217,
7646,
4177,
19521,
10714,
292,
29892,
607,
471,
2825,
297,
29871,
29896,
29929,
29906,
29941,
472,
263,
3087,
8970,
16730,
322,
4257,
1156,
263,
7124,
1708,
310,
278,
931,
29889,
910,
10714,
292,
4947,
967,
9560,
298,
434,
515,
610,
29879,
2330,
322,
270,
453,
705,
287,
29892,
411,
4805,
21054,
272,
515,
274,
1682,
2807,
322,
7933,
373,
291,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29906,
6131,
1129,
787,
639,
16330,
13,
13,
31690,
18002,
9950,
29899,
9021,
8656,
12311,
343,
468,
4227,
13,
13,
30515,
18002,
1236,
29872,
839,
29892,
16717,
287,
29892,
322,
3060,
2986,
274,
1682,
2807,
13,
13,
29906,
6131,
1129,
787,
1302,
1503,
873,
3060,
2986,
10849,
610,
29879,
2330,
13,
13,
29906,
734,
294,
1129,
787,
3060,
2986,
10849,
270,
453,
705,
287,
470,
29871,
30515,
734,
294,
1129,
265,
270,
1255,
270,
453,
705,
287,
29892,
2181,
25443,
13,
13,
29896,
18350,
7933,
373,
291,
29892,
5700,
964,
29871,
29896,
29899,
22466,
12785,
13,
13,
29896,
734,
294,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
29896,
734,
294,
1129,
265,
4796,
19006,
13848,
387,
279,
13,
13,
30515,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
30515,
734,
294,
1129,
265,
26438,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
599,
278,
2348,
1127,
10070,
29892,
885,
2390,
292,
278,
2625,
408,
5181,
29892,
2745,
4359,
10597,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
13,
13,
7827,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29947,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
12362,
13,
13,
2277,
282,
4778,
13,
13,
4013,
1224,
24285,
12507,
346,
3732,
385,
15129,
304,
3262,
363,
4940,
29874,
470,
289,
12535,
3104,
20452,
29889,
3967,
23546,
5393,
372,
964,
9950,
29899,
9021,
12311,
343,
468,
4227,
304,
1207,
263,
28191,
29889,
1763,
1735,
278,
21054,
272,
310,
445,
282,
4778,
29892,
23764,
10849,
274,
309,
424,
307,
363,
278,
2362,
309,
29889,
13,
13,
6304,
29963,
2890,
29871,
29896,
29953,
891,
29871,
29906,
6131,
1129,
787,
639,
16330,
13,
13,
29906,
2723,
567,
658,
359,
873,
4870,
287,
10849,
2362,
309,
13,
13,
30226,
18002,
282,
457,
302,
8842,
470,
17042,
29876,
8842,
29892,
15589,
29899,
307,
28470,
13,
13,
31690,
18002,
10849,
368,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
31690,
18002,
288,
9258,
17182,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
13,
13,
30515,
304,
29871,
30226,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
470,
18655,
519,
2545,
386,
313,
25253,
29897,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
599,
278,
2348,
1127,
10070,
5174,
278,
2545,
386,
2745,
10597,
29892,
23025,
885,
2390,
292,
1623,
278,
2625,
29889,
960,
278,
29544,
1838,
29915,
29873,
4337,
2645,
9068,
29892,
14205,
10293,
5617,
280,
297,
278,
2545,
386,
304,
658,
7749,
372,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29953,
29929,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
349,
4778,
508,
367,
1754,
1532,
297,
6564,
322,
337,
1341,
4087,
630,
470,
14671,
2256,
297,
385,
263,
2728,
523,
5639,
29889,
1394,
29892,
805,
6150,
17005,
2011,
1080,
964,
385,
14890,
28704,
260,
764,
322,
3889,
911,
29889,
1932,
278,
282,
4778,
338,
14671,
2256,
29892,
6782,
278,
13630,
267,
304,
263,
620,
29872,
284,
519,
715,
6288,
19548,
322,
736,
304,
278,
3889,
3298,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
360,
13207,
29899,
1672,
28938,
4214,
405,
2692,
29903,
6323,
3725,
3352,
29903,
2672,
6093,
438,
29963,
1430,
29901,
1763,
15589,
29899,
307,
579,
263,
2919,
5253,
310,
302,
8842,
470,
409,
5779,
472,
697,
931,
29892,
2058,
963,
297,
263,
4091,
340,
289,
5086,
270,
728,
29889,
1528,
579,
963,
472,
29871,
29941,
29945,
29900,
30073,
29943,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29892,
23546,
5393,
23025,
29889,
887,
508,
3889,
911,
963,
297,
385,
263,
2728,
523,
5639,
470,
620,
29872,
284,
519,
715,
6288,
3889,
3298,
19548,
1156,
12528,
292,
577,
896,
508,
367,
7960,
472,
263,
3256,
29915,
29879,
8369,
29889,
887,
1016,
29915,
29873,
1584,
817,
304,
266,
1450,
963,
1434,
773,
963,
29889,
13,
13,
2277,
696,
28470,
22623,
1236,
2496,
322,
7171,
506,
12507,
346,
13,
13,
4013,
1407,
1224,
24285,
12507,
346,
310,
696,
28470,
22623,
1236,
22437,
322,
10849,
7171,
506,
756,
263,
13182,
310,
1560,
554,
29891,
12871,
515,
278,
29830,
327,
280,
1236,
2496,
322,
274,
9735,
29889,
4803,
372,
304,
639,
29895,
701,
867,
24455,
470,
1886,
2795,
9953,
2406,
322,
18655,
1849,
29889,
739,
508,
367,
6766,
472,
5716,
10430,
470,
540,
630,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30515,
18002,
639,
16330,
13,
13,
29953,
29871,
1309,
778,
696,
28470,
2654,
22623,
1236,
22437,
29892,
7482,
1312,
565,
18046,
839,
13,
13,
29896,
18350,
29830,
327,
280,
1236,
2496,
508,
9571,
297,
594,
711,
29877,
12507,
346,
13,
13,
29906,
734,
294,
1129,
787,
594,
711,
29877,
12507,
346,
313,
3166,
29830,
327,
280,
1236,
22437,
508,
9571,
297,
594,
711,
29877,
12507,
346,
29897,
13,
13,
29906,
734,
294,
1129,
787,
289,
1338,
314,
293,
13848,
387,
279,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
29906,
6131,
1129,
787,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
599,
278,
2348,
1127,
10070,
5174,
278,
17182,
2745,
10597,
29889,
2973,
278,
10992,
1603,
2734,
29892,
14205,
10293,
5617,
280,
297,
278,
17182,
29889,
13,
13,
1762,
9080,
7375,
29892,
1671,
278,
12507,
346,
964,
263,
2319,
12507,
346,
8357,
29889,
17278,
975,
18350,
12871,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
925,
540,
630,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29947,
29941,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29947,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29896,
30226,
9950,
13,
13,
2277,
1407,
7655,
719,
343,
468,
4227,
610,
5444,
1169,
13,
13,
4013,
610,
29888,
1249,
4145,
1475,
14225,
10849,
15774,
411,
2181,
3322,
29891,
5713,
495,
29899,
4018,
274,
406,
284,
322,
20947,
310,
26823,
29889,
349,
3445,
598,
278,
304,
21154,
29544,
297,
6564,
29892,
769,
24940,
278,
610,
5444,
1169,
10940,
366,
29915,
276,
7960,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
610,
29888,
1249,
639,
16330,
13,
13,
29896,
29906,
29871,
1309,
778,
3578,
4964,
304,
21154,
29892,
7482,
1312,
322,
282,
19667,
15589,
13,
13,
29896,
18002,
364,
4692,
495,
2722,
13,
13,
29953,
29871,
1309,
778,
9950,
29899,
9021,
8656,
12311,
343,
468,
4227,
13,
13,
29906,
6131,
1129,
787,
599,
29899,
29888,
9216,
364,
4692,
16344,
9677,
13,
13,
29896,
6131,
1129,
265,
298,
4992,
13,
13,
29906,
2723,
567,
7254,
495,
2722,
29892,
4628,
495,
2722,
29892,
269,
506,
287,
298,
352,
839,
380,
1610,
495,
2722,
29892,
470,
269,
506,
287,
9892,
16397,
13,
13,
29896,
18002,
1880,
29899,
7241,
495,
274,
406,
284,
13,
13,
797,
263,
1999,
1581,
29892,
1889,
278,
304,
21154,
29892,
364,
4692,
495,
2722,
29892,
343,
468,
4227,
29892,
364,
4692,
16344,
9677,
29892,
322,
298,
4992,
363,
29871,
29906,
29900,
304,
29871,
29941,
29900,
6923,
29892,
470,
2745,
10597,
29892,
23546,
5393,
2748,
4203,
1582,
1549,
29889,
512,
1269,
610,
29888,
1249,
12917,
29892,
7546,
278,
2348,
1127,
10070,
408,
4477,
29901,
29871,
30515,
18002,
7254,
495,
2722,
29892,
29871,
30515,
18002,
304,
21154,
29544,
29892,
322,
29871,
29906,
6131,
1129,
787,
274,
406,
284,
29889,
830,
11666,
278,
15359,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29947,
13,
13,
7827,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29896,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29929,
330,
13,
13,
7241,
495,
29871,
29896,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29955,
330,
13,
13,
14676,
262,
29871,
29896,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29896,
30226,
15774,
29892,
29871,
29896,
20793,
27654,
13,
13,
2277,
394,
8315,
29892,
413,
744,
29892,
322,
7254,
16344,
10597,
583,
13,
13,
21319,
495,
2722,
12420,
411,
413,
744,
1653,
263,
27592,
3708,
552,
13748,
393,
338,
4870,
287,
411,
18254,
29878,
654,
29936,
372,
29915,
29879,
1854,
304,
3113,
16157,
29879,
322,
413,
4841,
394,
9345,
29889,
13,
13,
6304,
29963,
2890,
29871,
29906,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
30642,
18002,
9644,
705,
6302,
287,
1109,
2911,
394,
8315,
27274,
13,
13,
29906,
6131,
1129,
787,
269,
14381,
287,
394,
8315,
29879,
29892,
15589,
29899,
307,
28470,
13,
13,
29896,
18002,
10849,
470,
14671,
2256,
7254,
495,
2722,
13,
13,
229,
136,
151,
18002,
1302,
1503,
873,
3060,
2986,
413,
744,
29892,
738,
2919,
380,
1567,
2313,
25600,
13,
13,
30226,
18002,
9950,
29899,
9021,
8656,
12311,
343,
468,
4227,
13,
13,
30226,
18002,
14890,
13630,
267,
13,
13,
31690,
18002,
269,
506,
287,
10107,
412,
9892,
1648,
313,
30226,
2319,
9892,
1648,
29897,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
394,
8315,
27274,
322,
394,
8315,
29879,
2745,
10597,
29889,
3462,
278,
9886,
2348,
1127,
10070,
29889,
10554,
2745,
10597,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29953,
29900,
13,
13,
7827,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29900,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29941,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29941,
330,
13,
13,
14676,
262,
29871,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
15774,
29892,
29871,
30226,
9950,
29899,
9021,
27274,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
3164,
2548,
278,
394,
8315,
27274,
322,
394,
8315,
29879,
4208,
1434,
4417,
278,
916,
2348,
1127,
10070,
17498,
263,
1560,
29877,
1228,
7743,
3234,
29889,
13,
13,
2277,
24841,
29899,
481,
2200,
327,
10597,
583,
13,
13,
29923,
854,
565,
366,
526,
425,
312,
852,
938,
324,
261,
424,
29892,
366,
508,
1603,
13389,
445,
8261,
322,
907,
25934,
10597,
347,
29889,
10765,
16397,
29892,
24841,
3623,
625,
10484,
10492,
29892,
322,
21783,
293,
327,
452,
312,
279,
2367,
372,
5613,
14225,
2264,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29896,
885,
424,
18002,
639,
16330,
13,
13,
29896,
29906,
29871,
1309,
778,
14671,
2256,
29871,
29896,
29900,
29900,
29995,
24841,
3623,
625,
10484,
10492,
29892,
9391,
964,
521,
18801,
13,
13,
29896,
29906,
29871,
1309,
778,
29871,
29896,
29900,
29900,
29995,
21783,
293,
327,
452,
312,
279,
13,
13,
29896,
30226,
2723,
567,
4094,
13,
13,
29906,
18350,
9892,
16397,
13,
13,
30226,
734,
294,
1129,
265,
1109,
2911,
6597,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
599,
278,
2348,
1127,
10070,
2745,
10597,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29906,
13,
13,
7827,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29946,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
29947,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
15774,
13,
13,
2277,
14954,
719,
29899,
16344,
2243,
1878,
13,
13,
4013,
15774,
29899,
26940,
13748,
4947,
967,
4805,
5713,
495,
322,
3573,
29892,
3412,
411,
263,
14505,
310,
13901,
314,
1144,
29892,
515,
1559,
5450,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29896,
30515,
2723,
567,
29871,
29896,
29900,
29900,
29995,
274,
661,
16344,
3623,
625,
13,
13,
29947,
29871,
1309,
778,
14671,
2256,
9644,
705,
6302,
287,
6501,
14225,
14954,
2722,
13,
13,
29953,
29871,
1309,
778,
14671,
2256,
9644,
705,
6302,
287,
364,
4692,
495,
2722,
13,
13,
29896,
18350,
1559,
5450,
29892,
5700,
964,
521,
18801,
470,
528,
1127,
7176,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
24841,
503,
342,
13,
13,
29896,
734,
294,
1129,
265,
1109,
2911,
6597,
13,
13,
29906,
734,
294,
1129,
787,
26438,
313,
25253,
29897,
13,
13,
29896,
18002,
14890,
13630,
267,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
599,
278,
2348,
1127,
10070,
5174,
278,
14890,
13630,
267,
2745,
10597,
29889,
3462,
278,
14890,
13630,
267,
29889,
10554,
2745,
10597,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29896,
29896,
13,
13,
7827,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29947,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
29896,
330,
13,
13,
14676,
262,
29871,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
15774,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
887,
508,
3787,
738,
454,
29888,
517,
369,
2243,
1878,
297,
278,
3889,
3298,
29889,
1763,
9080,
372,
408,
263,
13748,
29892,
1235,
278,
29544,
266,
1450,
472,
5716,
10430,
363,
29871,
29896,
29945,
6233,
29889,
1394,
671,
263,
27350,
304,
24559,
412,
278,
7101,
310,
278,
14671,
2256,
2243,
1878,
322,
9080,
372,
408,
263,
3803,
2028,
363,
6808,
814,
29889,
13,
13,
2277,
1236,
273,
329,
541,
357,
322,
9892,
1648,
376,
625,
907,
314,
29908,
13,
13,
4013,
11220,
322,
907,
25934,
14671,
2256,
7539,
3743,
694,
1146,
16129,
9316,
29889,
12362,
19583,
278,
9892,
16397,
322,
769,
6820,
963,
263,
377,
5168,
297,
263,
9687,
21433,
4076,
963,
263,
5718,
3819,
2788,
304,
4964,
29899,
16349,
14890,
907,
314,
29889,
19152,
777,
9892,
1648,
269,
29399,
297,
596,
3889,
3298,
577,
366,
508,
19012,
445,
270,
728,
10940,
278,
286,
2092,
19492,
267,
29889,
1152,
263,
901,
16157,
1873,
322,
263,
577,
906,
18459,
29892,
671,
278,
13136,
325,
397,
1335,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
885,
424,
29871,
30226,
18002,
639,
16330,
13,
13,
29946,
18350,
10107,
412,
9892,
16397,
29892,
5700,
4891,
3538,
964,
29871,
30515,
29899,
22466,
269,
29399,
13,
13,
29906,
6131,
1129,
787,
1436,
873,
3060,
2986,
9644,
1997,
287,
1236,
273,
8842,
29892,
15589,
29899,
307,
28470,
13,
13,
29896,
30226,
6131,
1129,
787,
4482,
29899,
29879,
397,
1974,
1236,
273,
329,
541,
357,
313,
3844,
6983,
470,
2181,
3322,
29891,
29897,
13,
13,
29896,
304,
29871,
29941,
6131,
1129,
787,
325,
397,
1335,
313,
25253,
29897,
13,
13,
29896,
6131,
1129,
265,
298,
4992,
13,
13,
29896,
734,
294,
1129,
265,
1109,
2911,
6597,
13,
13,
30515,
734,
294,
1129,
265,
5962,
274,
2559,
314,
265,
13,
13,
30515,
734,
294,
1129,
265,
10849,
368,
867,
630,
470,
5962,
18254,
29885,
387,
13,
13,
20475,
911,
278,
9892,
1648,
269,
29399,
363,
472,
3203,
29871,
29941,
304,
29871,
29946,
6199,
304,
975,
11147,
29892,
470,
2745,
7773,
29889,
13,
13,
797,
263,
9687,
21433,
29892,
1889,
278,
9892,
16397,
2745,
896,
526,
278,
5718,
3819,
310,
4964,
29899,
16349,
14890,
907,
314,
29889,
13,
13,
2528,
278,
9886,
2348,
1127,
10070,
29889,
10554,
2745,
10597,
322,
907,
25934,
29889,
1816,
345,
7389,
470,
3889,
911,
297,
385,
263,
2728,
523,
3889,
3298,
5639,
29889,
960,
14671,
2256,
29892,
1235,
2317,
472,
5716,
10430,
363,
1048,
29871,
29945,
6233,
304,
266,
1450,
10029,
1434,
16330,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29955,
13,
13,
7827,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29946,
286,
29887,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
29900,
330,
13,
13,
14676,
262,
29871,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
15774,
29892,
29871,
29896,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
18804,
278,
325,
397,
1335,
674,
3013,
278,
376,
625,
907,
314,
29908,
263,
2217,
577,
906,
746,
372,
3889,
10947,
29889,
13,
13,
2277,
380,
1610,
16344,
3803,
2028,
13,
13,
29909,
3803,
2028,
338,
263,
12647,
29899,
29888,
307,
2256,
6808,
814,
1754,
411,
4094,
29892,
4049,
26438,
470,
263,
2560,
9878,
17827,
29892,
15774,
29892,
322,
263,
23904,
393,
12778,
21054,
272,
29892,
1316,
408,
3623,
625,
29892,
26935,
29892,
23429,
29892,
470,
19006,
29889,
910,
14225,
7539,
338,
316,
1547,
3598,
907,
25934,
5998,
372,
3743,
694,
1146,
16129,
470,
2715,
9950,
29889,
14491,
263,
9853,
297,
278,
3889,
3298,
363,
263,
6808,
814,
393,
29915,
29879,
7960,
746,
366,
526,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29896,
10256,
380,
1610,
495,
2722,
29892,
298,
352,
839,
13,
13,
30226,
18002,
599,
29899,
29888,
9216,
380,
1610,
16344,
9677,
13,
13,
29896,
6131,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
380,
1610,
495,
2722,
2745,
10597,
29889,
624,
381,
297,
278,
380,
1610,
16344,
9677,
322,
454,
3712,
3623,
625,
29889,
624,
6038,
1549,
263,
2691,
29899,
4467,
29882,
269,
2418,
964,
385,
29871,
29947,
29899,
22466,
6862,
7243,
29889,
12362,
911,
363,
1048,
29871,
29896,
7234,
29892,
470,
2745,
2243,
1878,
29891,
29889,
13,
13,
11609,
278,
29544,
304,
278,
9687,
21433,
29889,
10554,
2745,
10597,
322,
907,
25934,
29889,
7106,
304,
278,
7243,
322,
3889,
911,
1449,
2745,
7773,
29889,
13,
13,
15941,
278,
7243,
515,
278,
3889,
3298,
29889,
2803,
2317,
472,
5716,
10430,
363,
29871,
29896,
29945,
6233,
29889,
5293,
263,
27350,
29892,
24559,
412,
278,
3803,
2028,
964,
6808,
814,
270,
17006,
470,
2319,
12580,
3137,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29947,
29945,
13,
13,
7827,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29896,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29945,
330,
13,
13,
14676,
262,
29871,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
15774,
13,
13,
29937,
867,
8873,
13,
13,
29883,
1398,
322,
4628,
17796,
4497,
328,
13,
13,
845,
5632,
29886,
322,
16699,
837,
295,
265,
4497,
328,
411,
274,
1682,
2807,
29899,
28046,
325,
1099,
335,
2267,
371,
13,
13,
275,
1049,
8870,
747,
329,
411,
3500,
9010,
322,
380,
1610,
16344,
269,
1338,
29874,
13,
13,
2168,
1524,
10800,
273,
260,
4347,
413,
774,
6897,
13,
13,
29890,
9919,
9427,
260,
562,
359,
13,
13,
305,
21475,
411,
2654,
364,
4692,
16344,
14751,
911,
13,
13,
3844,
554,
29891,
521,
21475,
322,
18655,
519,
1869,
15713,
13,
13,
357,
19881,
9940,
521,
21475,
322,
18655,
519,
413,
774,
6897,
13,
13,
1579,
804,
1886,
557,
411,
20674,
436,
332,
374,
12507,
346,
13,
13,
29886,
548,
1612,
497,
1080,
411,
286,
4524,
2730,
2212,
13,
13,
344,
8929,
5096,
29879,
13,
13,
29885,
1878,
8345,
29899,
29920,
1682,
305,
2172,
2644,
359,
411,
1560,
554,
29891,
907,
655,
13,
13,
29882,
4992,
29899,
29890,
1338,
314,
293,
1506,
1558,
1379,
7689,
17718,
411,
748,
271,
923,
968,
13,
13,
915,
1691,
411,
24841,
1395,
29885,
324,
532,
13,
13,
305,
1794,
29899,
1028,
7612,
282,
457,
11548,
961,
1503,
13,
13,
3338,
8873,
338,
385,
4780,
982,
304,
7984,
4996,
29892,
9045,
29891,
592,
1338,
29889,
1632,
24455,
9687,
29879,
7984,
5172,
577,
896,
11551,
1009,
2730,
391,
545,
322,
19163,
443,
354,
4298,
29891,
285,
1446,
270,
6472,
3448,
964,
278,
867,
453,
29889,
450,
17818,
344,
29892,
1513,
12871,
8128,
263,
2181,
11936,
29892,
3347,
9571,
2181,
504,
322,
263,
2730,
391,
29892,
22707,
13290,
29892,
322,
278,
4996,
7984,
292,
16869,
366,
679,
17803,
373,
278,
1591,
297,
3273,
1797,
29889,
887,
508,
671,
278,
7101,
310,
278,
867,
453,
304,
7984,
1716,
596,
9953,
1318,
322,
2625,
270,
17006,
30003,
392,
1584,
596,
6808,
814,
29889,
13,
13,
2499,
3592,
20793,
592,
1446,
322,
282,
5059,
2202,
526,
5972,
867,
8873,
19995,
29892,
366,
508,
884,
671,
445,
9045,
29891,
7984,
292,
11043,
304,
11039,
403,
263,
12875,
310,
9687,
6471,
964,
596,
592,
1338,
29892,
3704,
7205,
1181,
397,
29892,
18655,
1849,
29892,
322,
15774,
1316,
408,
7935,
8142,
747,
329,
411,
8579,
9010,
322,
624,
1610,
16344,
317,
1338,
29874,
470,
379,
4992,
29899,
29933,
1338,
314,
293,
1771,
1558,
1379,
14314,
17718,
411,
2921,
271,
6561,
968,
29889,
1632,
8873,
23522,
714,
1316,
5412,
29892,
5613,
14225,
21054,
943,
393,
372,
29915,
29879,
263,
4922,
15130,
304,
1018,
9687,
29879,
366,
1122,
451,
505,
321,
2579,
1434,
470,
1122,
505,
28305,
1363,
366,
1016,
29915,
29873,
864,
1009,
263,
456,
294,
304,
5445,
596,
3699,
29889,
13,
13,
7083,
262,
3076,
29892,
14051,
29879,
29892,
322,
12507,
778,
526,
1781,
21054,
272,
26371,
4564,
414,
363,
867,
24455,
9687,
29879,
29889,
3387,
367,
1854,
304,
1106,
363,
1906,
393,
526,
4482,
297,
20892,
1974,
29892,
269,
1337,
630,
322,
1301,
285,
1446,
29892,
322,
2715,
26438,
29889,
14985,
29879,
527,
1595,
263,
23505,
21054,
272,
1135,
1766,
262,
3076,
541,
508,
12138,
746,
867,
24455,
29892,
577,
896,
664,
10734,
1532,
411,
9687,
29879,
393,
674,
367,
7984,
287,
411,
26377,
12871,
470,
363,
263,
3273,
931,
29892,
1316,
408,
9427,
29889,
23863,
778,
881,
367,
1925,
373,
9687,
29879,
11183,
278,
1095,
310,
867,
8873,
313,
12717,
29871,
29945,
6233,
363,
1269,
2625,
1434,
11077,
29897,
304,
5557,
963,
515,
25535,
408,
1532,
29889,
13,
13,
4986,
402,
3960,
2208,
29901,
259,
13,
1762,
7984,
9687,
373,
263,
11915,
867,
403,
731,
975,
263,
17937,
424,
12871,
2752,
1316,
408,
10489,
29892,
1302,
1338,
29892,
12646,
537,
29892,
470,
8112,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
1632,
453,
313,
1552,
9522,
5547,
297,
445,
7984,
2909,
526,
363,
385,
714,
17433,
10489,
867,
453,
511,
867,
8873,
8492,
29892,
8014,
5941,
292,
1506,
1878,
29892,
21156,
292,
1506,
1878,
267,
29892,
14426,
29899,
949,
14563,
8328,
29892,
18109,
17538,
29892,
867,
453,
289,
1278,
1691,
470,
639,
1454,
630,
867,
453,
26718,
29892,
29181,
12237,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
1763,
7744,
714,
17433,
867,
8873,
9522,
5547,
363,
263,
6795,
3332,
3765,
29899,
29879,
2618,
6958,
867,
453,
29892,
5700,
278,
7984,
292,
931,
297,
4203,
29889,
1152,
380,
586,
300,
459,
867,
453,
282,
550,
29892,
7984,
278,
9687,
5520,
1363,
1438,
282,
550,
1016,
29915,
29873,
679,
408,
7375,
408,
714,
17433,
867,
6090,
322,
9455,
29915,
29873,
10664,
29889,
4525,
526,
2498,
6865,
310,
28968,
29892,
541,
367,
1854,
304,
6505,
363,
7604,
274,
1041,
393,
12266,
278,
9687,
338,
2309,
29889,
13,
13,
30119,
315,
329,
18655,
1849,
12003,
368,
577,
896,
1016,
29915,
29873,
6416,
1549,
278,
867,
403,
29889,
15484,
408,
862,
351,
375,
322,
503,
1682,
305,
2172,
961,
1503,
639,
14081,
16311,
304,
278,
867,
1078,
470,
3244,
963,
4891,
3538,
11480,
1023,
18109,
17538,
29889,
13,
13,
30119,
4803,
18109,
17538,
29892,
867,
453,
289,
1278,
1691,
29892,
470,
639,
1454,
630,
867,
453,
26718,
363,
7968,
18655,
1849,
1316,
408,
2826,
286,
1878,
18901,
322,
14954,
719,
6454,
20452,
29889,
13,
13,
30119,
1932,
867,
8873,
263,
12875,
310,
12461,
29887,
583,
29892,
2318,
963,
5034,
304,
278,
7984,
292,
931,
896,
29915,
645,
817,
3265,
1135,
297,
697,
12849,
14928,
29889,
13,
13,
30119,
3967,
4417,
454,
3712,
14837,
2710,
304,
596,
9427,
470,
18655,
519,
413,
774,
6897,
29889,
1632,
8873,
260,
1280,
1009,
13914,
2264,
322,
12778,
7537,
15816,
21054,
272,
304,
278,
9687,
29879,
19383,
278,
18109,
556,
29889,
13,
13,
30119,
1605,
326,
322,
2313,
538,
599,
7962,
9950,
515,
282,
5059,
2202,
322,
592,
1446,
1434,
867,
8873,
29936,
445,
674,
1716,
5700,
1623,
373,
269,
1337,
630,
9950,
322,
1371,
5557,
285,
8663,
29899,
14340,
29889,
13,
13,
30119,
7605,
10814,
6393,
313,
392,
20793,
29897,
5700,
29879,
310,
521,
21475,
29892,
367,
1389,
29892,
322,
282,
548,
29892,
607,
7984,
901,
1584,
368,
29889,
13,
13,
30119,
8669,
310,
14712,
413,
774,
6897,
29892,
671,
263,
805,
271,
2497,
304,
9679,
963,
975,
29889,
13,
13,
30119,
1085,
16976,
363,
871,
278,
13622,
931,
373,
263,
9522,
412,
29936,
1766,
262,
1218,
5520,
2113,
29915,
29873,
12695,
2099,
2253,
21054,
272,
322,
1122,
2367,
278,
9687,
385,
443,
552,
13186,
18459,
29889,
13,
13,
30119,
7849,
1766,
262,
3076,
1712,
385,
22193,
30003,
14565,
408,
13848,
387,
279,
470,
7537,
15816,
3623,
625,
30003,
5747,
6911,
304,
22707,
675,
278,
9687,
322,
788,
2730,
391,
545,
29892,
577,
367,
1854,
304,
671,
263,
1661,
276,
4925,
5639,
763,
263,
12917,
470,
380,
475,
2222,
22973,
270,
728,
470,
263,
620,
29872,
284,
519,
715,
6288,
19548,
29889,
13,
13,
30119,
960,
366,
671,
7984,
292,
805,
764,
304,
3013,
9687,
515,
12070,
292,
29892,
367,
1854,
304,
805,
764,
278,
867,
403,
1434,
372,
338,
540,
630,
29889,
13,
13,
30119,
1763,
3578,
368,
17182,
263,
7375,
867,
403,
29892,
577,
557,
263,
5650,
304,
20466,
297,
4094,
29892,
769,
28191,
372,
297,
17182,
322,
4808,
372,
411,
1472,
21861,
29879,
29889,
13,
13,
30119,
1763,
5941,
278,
867,
453,
29892,
758,
354,
271,
372,
373,
1880,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
304,
12138,
1283,
1556,
310,
278,
10995,
434,
29889,
4803,
263,
867,
453,
1506,
1878,
304,
3349,
738,
454,
29888,
517,
369,
9687,
29889,
313,
3644,
366,
1016,
29915,
29873,
505,
263,
867,
453,
1506,
1878,
29892,
366,
508,
671,
263,
8287,
310,
2181,
398,
552,
29881,
9416,
29899,
29881,
329,
29891,
394,
9735,
398,
1701,
309,
4934,
411,
1472,
21861,
29879,
1846,
13,
13,
30119,
1763,
4772,
1716,
975,
15108,
292,
322,
1090,
15108,
292,
27654,
322,
282,
5059,
2202,
29892,
671,
263,
27654,
14563,
8328,
304,
1423,
1016,
18543,
29889,
15154,
278,
27654,
470,
282,
5059,
2202,
515,
278,
867,
453,
1434,
23800,
278,
14426,
29899,
949,
14563,
8328,
29889,
24505,
278,
14563,
8328,
964,
278,
4818,
29892,
470,
12003,
342,
760,
29892,
310,
278,
27654,
29892,
3907,
1854,
278,
14563,
8328,
1838,
29915,
29873,
6023,
289,
650,
470,
9950,
29889,
13,
13,
30119,
2823,
15332,
25562,
363,
867,
8873,
29889,
13,
13,
15349,
1254,
18322,
29949,
8452,
15842,
402,
3960,
2208,
4214,
13,
13,
2008,
29874,
1181,
397,
29901,
317,
1092,
6574,
29892,
8716,
417,
567,
29892,
322,
9427,
977,
10376,
470,
1886,
10327,
29892,
1316,
408,
25620,
10800,
273,
323,
4347,
476,
774,
6897,
29889,
13,
13,
29925,
5059,
2202,
29901,
8396,
6393,
5700,
29879,
29892,
1316,
408,
22707,
417,
1144,
470,
19309,
2222,
266,
1141,
29879,
470,
2078,
19416,
29892,
7984,
901,
1584,
368,
29889,
3967,
4116,
554,
29891,
678,
21475,
322,
17236,
300,
519,
7413,
15713,
29889,
13,
13,
6816,
271,
29901,
8396,
6393,
29892,
20793,
367,
1389,
5700,
29879,
3704,
2246,
8889,
417,
262,
29892,
1652,
804,
1886,
557,
29892,
1316,
408,
2379,
804,
2443,
557,
411,
678,
326,
436,
332,
374,
23863,
346,
29892,
322,
282,
548,
5700,
29879,
1316,
408,
10814,
6393,
282,
548,
521,
3554,
29892,
22707,
417,
262,
29892,
322,
1612,
497,
1080,
29892,
1316,
408,
349,
548,
3436,
497,
1080,
411,
341,
4524,
4546,
2212,
29889,
13,
13,
29963,
387,
300,
13956,
14409,
262,
29901,
922,
8929,
322,
304,
21154,
526,
1716,
15129,
27654,
29899,
9021,
26823,
8974,
393,
14169,
515,
278,
1560,
554,
29891,
21054,
272,
278,
867,
453,
527,
20895,
29889,
3967,
922,
8929,
10292,
29879,
470,
1766,
16976,
12003,
269,
29399,
310,
304,
21154,
297,
263,
21054,
272,
1319,
29892,
4482,
29899,
29879,
397,
1974,
1766,
1099,
311,
29892,
769,
867,
453,
363,
29871,
29941,
304,
29871,
29946,
6233,
373,
1269,
2625,
29889,
13,
13,
29963,
387,
300,
1849,
29901,
26206,
368,
738,
18655,
519,
508,
367,
867,
24455,
29889,
315,
329,
2919,
18655,
1849,
1316,
408,
13851,
10674,
1161,
267,
964,
521,
18801,
322,
1925,
963,
373,
18109,
17538,
313,
1867,
278,
1021,
363,
2319,
18655,
1849,
29892,
1316,
408,
2826,
286,
1878,
18901,
29892,
373,
291,
14837,
2710,
29892,
322,
14954,
719,
322,
2646,
412,
6454,
20452,
467,
1094,
862,
351,
375,
29892,
503,
1682,
305,
2172,
470,
13328,
11801,
10674,
1161,
8870,
1960,
29892,
19710,
24389,
269,
29399,
29892,
26343,
373,
278,
274,
711,
29892,
22623,
1236,
2496,
8870,
1960,
29892,
322,
2011,
711,
3156,
286,
1878,
18901,
526,
884,
2107,
867,
24455,
29889,
3967,
1554,
15668,
1316,
408,
1522,
1691,
411,
26048,
402,
1745,
324,
532,
29889,
3967,
867,
8873,
380,
332,
4518,
20447,
29891,
1395,
575,
29892,
2086,
29892,
763,
364,
4125,
457,
322,
3966,
279,
1772,
29889,
13,
13,
29943,
9216,
29901,
13329,
285,
21211,
526,
4922,
363,
278,
867,
453,
29889,
3967,
1236,
14520,
29892,
452,
312,
279,
1475,
29892,
715,
6762,
29892,
282,
457,
932,
793,
29892,
1316,
408,
678,
1794,
29899,
5592,
7612,
349,
457,
11548,
5013,
1503,
29892,
286,
4524,
267,
29892,
322,
16699,
837,
295,
265,
29892,
408,
297,
317,
1092,
6574,
322,
14269,
837,
295,
265,
3956,
328,
411,
315,
1682,
2807,
29899,
29931,
603,
478,
1099,
335,
2267,
371,
29889,
13,
13,
2277,
26343,
322,
4628,
17796,
4497,
328,
13,
13,
3338,
24455,
26343,
338,
263,
7539,
29892,
541,
445,
11785,
368,
28684,
9953,
1318,
4497,
328,
6576,
2712,
701,
263,
451,
305,
29892,
4417,
22707,
4628,
367,
550,
29892,
3623,
4245,
6454,
20452,
29892,
322,
286,
789,
439,
20135,
29595,
1111,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29946,
2919,
22827,
310,
26343,
29892,
8646,
2039,
322,
4047,
29895,
2313,
25600,
13,
13,
19159,
292,
805,
764,
13,
13,
29928,
26785,
4214,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29896,
6131,
1129,
265,
274,
1241,
13848,
387,
279,
13,
13,
29896,
6131,
1129,
265,
10849,
301,
603,
3623,
625,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
30226,
734,
294,
1129,
265,
15795,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
4628,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
18002,
2646,
412,
6454,
20452,
29892,
12616,
287,
13,
13,
30226,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29946,
29871,
1309,
778,
439,
20135,
29595,
1111,
470,
2215,
1050,
923,
968,
29892,
2181,
25443,
13,
13,
6572,
354,
271,
278,
867,
453,
373,
18350,
1880,
29889,
315,
329,
3023,
29871,
29945,
29899,
22466,
29899,
17619,
12785,
310,
394,
9735,
398,
1701,
309,
29889,
12790,
368,
805,
764,
278,
26343,
411,
7984,
292,
805,
764,
29889,
15484,
1269,
2326,
7936,
265,
635,
297,
278,
4818,
310,
263,
8424,
310,
1701,
309,
29889,
21809,
278,
1701,
309,
2820,
278,
2326,
29889,
8168,
391,
278,
10614,
304,
409,
284,
658,
359,
873,
29889,
13,
13,
3338,
453,
278,
26343,
363,
29871,
29896,
29945,
304,
29871,
29906,
29900,
6233,
29892,
470,
2745,
22707,
29899,
29883,
3780,
29886,
29892,
14712,
23025,
29889,
15154,
515,
278,
867,
453,
29889,
2803,
2317,
363,
29871,
29896,
29900,
6233,
577,
278,
26343,
1302,
3775,
10029,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
10714,
292,
2348,
1127,
10070,
29889,
853,
6312,
278,
26343,
29892,
2313,
20272,
278,
1701,
309,
29889,
315,
329,
278,
413,
824,
1379,
1283,
278,
274,
711,
29889,
512,
263,
2919,
12580,
29880,
29892,
23546,
4208,
278,
26343,
322,
278,
9886,
2348,
1127,
10070,
29889,
6803,
278,
10714,
292,
975,
278,
4497,
328,
29892,
28189,
292,
330,
2705,
304,
24296,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29900,
29941,
13,
13,
7827,
9950,
29871,
29947,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29945,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29929,
330,
13,
13,
7241,
495,
29871,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29946,
330,
13,
13,
14676,
262,
29871,
29896,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29896,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
315,
1955,
29940,
29901,
1763,
3349,
26343,
413,
824,
1379,
515,
263,
274,
711,
29892,
2058,
697,
1095,
310,
278,
274,
711,
297,
278,
16188,
297,
278,
4818,
310,
263,
260,
4003,
470,
24240,
29873,
7243,
29889,
1094,
366,
5700,
1623,
1328,
3412,
278,
274,
711,
29892,
278,
413,
824,
1379,
674,
6416,
964,
278,
7243,
29889,
13,
13,
2277,
528,
5632,
29886,
322,
16699,
837,
295,
265,
4497,
328,
411,
274,
1682,
2807,
29899,
28046,
325,
1099,
335,
2267,
371,
13,
13,
2744,
22910,
10296,
310,
805,
7612,
16699,
837,
295,
265,
29892,
22707,
528,
5632,
29886,
29892,
322,
1236,
407,
708,
564,
688,
2497,
29892,
445,
4497,
328,
338,
304,
2986,
411,
263,
10714,
292,
393,
29915,
29879,
22830,
408,
12528,
408,
263,
274,
1682,
2807,
29889,
5342,
625,
515,
263,
867,
24455,
301,
603,
12778,
263,
10029,
1560,
554,
29891,
21054,
272,
304,
278,
10714,
292,
29889,
910,
674,
367,
596,
748,
29899,
304,
4497,
328,
599,
11801,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
16699,
837,
295,
265,
281,
12864,
29892,
29871,
30226,
18002,
564,
688,
2497,
29892,
29871,
29906,
29871,
1309,
778,
528,
5632,
29886,
29892,
322,
29871,
29906,
6131,
1129,
787,
10714,
292,
639,
16330,
13,
13,
29949,
9258,
17182,
7984,
292,
805,
764,
13,
13,
29896,
2319,
301,
603,
13,
13,
30226,
18350,
274,
1682,
2807,
29892,
1236,
29872,
839,
29892,
16717,
287,
29892,
322,
5700,
964,
29871,
29896,
29899,
22466,
12785,
13,
13,
29896,
6131,
1129,
265,
298,
4992,
13,
13,
29896,
29900,
29871,
1309,
778,
10650,
18350,
528,
5632,
29886,
313,
386,
1450,
287,
565,
14671,
2256,
511,
1236,
29872,
839,
29892,
364,
1144,
287,
29892,
322,
282,
19667,
15589,
13,
13,
30226,
734,
294,
1129,
265,
521,
2638,
4764,
672,
322,
29871,
30226,
734,
294,
1129,
265,
521,
2638,
4764,
672,
29892,
13931,
671,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
29896,
4513,
22780,
310,
16699,
837,
295,
265,
313,
12717,
29871,
29896,
297,
305,
12003,
29897,
411,
364,
513,
29892,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
29906,
2723,
567,
658,
359,
873,
4870,
287,
564,
688,
2497,
13,
13,
6295,
557,
3023,
29871,
29953,
29899,
22466,
27278,
18109,
17538,
363,
472,
3203,
29871,
29896,
29900,
6233,
297,
11220,
4094,
304,
3013,
963,
515,
1373,
5393,
29892,
470,
671,
11915,
18109,
17538,
29889,
12790,
368,
805,
764,
278,
867,
453,
1153,
384,
411,
7984,
292,
805,
764,
29889,
4721,
354,
271,
278,
867,
453,
373,
18350,
1880,
29889,
13,
13,
3338,
403,
29871,
29896,
734,
294,
1129,
265,
310,
503,
342,
515,
278,
301,
603,
29889,
3789,
278,
503,
342,
17786,
29889,
8142,
345,
278,
301,
603,
29889,
13,
13,
3338,
453,
278,
301,
603,
8870,
1960,
411,
278,
5700,
11192,
1623,
363,
29871,
29906,
6233,
29892,
470,
2745,
278,
5700,
11192,
526,
3578,
22843,
17354,
322,
278,
301,
1355,
526,
540,
630,
1549,
29889,
17934,
304,
263,
15284,
29889,
2803,
12528,
363,
29871,
29945,
6233,
29889,
13,
13,
29967,
29884,
625,
278,
301,
603,
8870,
1960,
29889,
512,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
274,
1682,
2807,
29892,
298,
4992,
29892,
301,
603,
3623,
625,
29892,
322,
21676,
301,
603,
503,
342,
363,
29871,
29941,
29900,
6923,
29892,
470,
2745,
10597,
29892,
885,
2390,
292,
278,
2625,
408,
5181,
29889,
3789,
278,
10714,
292,
17786,
29889,
13,
13,
4899,
278,
528,
5632,
29886,
11480,
278,
18109,
17538,
29889,
14314,
682,
280,
29871,
30226,
734,
294,
1129,
265,
521,
2638,
4764,
672,
322,
278,
1236,
2496,
975,
1716,
11192,
310,
278,
528,
5632,
29886,
29889,
12790,
368,
805,
764,
1716,
11192,
310,
278,
528,
5632,
29886,
411,
7984,
292,
805,
764,
29889,
13,
13,
29903,
558,
682,
280,
278,
15795,
322,
278,
9886,
29871,
30226,
734,
294,
1129,
265,
521,
2638,
4764,
672,
975,
1716,
11192,
310,
278,
16699,
837,
295,
265,
29889,
12790,
368,
805,
764,
1716,
11192,
310,
278,
16699,
837,
295,
265,
411,
7984,
292,
805,
764,
29889,
13,
13,
3338,
453,
278,
528,
5632,
29886,
363,
29871,
29906,
6233,
373,
1269,
2625,
29892,
470,
2745,
282,
682,
373,
278,
5377,
29889,
1632,
453,
278,
16699,
837,
295,
265,
363,
29871,
29896,
30226,
6233,
373,
1269,
2625,
29892,
470,
2745,
372,
756,
3578,
867,
453,
17997,
322,
338,
540,
630,
1549,
29889,
17934,
278,
16699,
837,
295,
265,
304,
715,
1078,
29889,
15154,
278,
528,
5632,
29886,
515,
278,
18109,
17538,
29889,
826,
3881,
373,
278,
16699,
837,
295,
265,
29889,
13,
13,
15156,
263,
867,
453,
1153,
384,
470,
281,
554,
29899,
3293,
867,
8873,
25972,
29892,
867,
453,
278,
564,
688,
2497,
363,
29871,
29896,
29945,
304,
29871,
29906,
29900,
6923,
29892,
470,
2745,
278,
564,
688,
2497,
338,
10029,
281,
2782,
287,
29892,
23546,
5393,
13672,
411,
21861,
29879,
29889,
13,
13,
7031,
278,
528,
5632,
29886,
411,
278,
564,
688,
2497,
29889,
360,
374,
5617,
280,
278,
10714,
292,
975,
278,
4497,
328,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29929,
29906,
13,
13,
7827,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29947,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29896,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29896,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29929,
330,
13,
13,
14676,
262,
29871,
29896,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
15774,
29892,
29871,
29906,
20793,
27654,
13,
13,
2277,
11359,
8870,
747,
329,
411,
3500,
9010,
322,
380,
1610,
16344,
269,
1338,
29874,
13,
13,
3338,
8873,
26371,
2925,
15774,
29915,
29879,
5613,
14225,
2264,
491,
1559,
314,
295,
5281,
967,
26438,
29892,
1550,
867,
24455,
432,
2883,
412,
8266,
12778,
263,
1560,
554,
29891,
12871,
304,
445,
22910,
269,
1338,
29874,
29889,
24674,
22367,
975,
17422,
3459,
8870,
747,
329,
1766,
262,
630,
297,
282,
457,
11548,
3623,
625,
29892,
372,
674,
6963,
263,
21779,
310,
278,
9201,
1199,
304,
596,
2446,
2594,
19385,
434,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
30515,
18002,
269,
1338,
29874,
639,
16330,
13,
13,
30515,
18002,
29871,
29896,
29900,
29900,
29995,
282,
457,
11548,
3623,
625,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29946,
8870,
747,
329,
977,
10376,
411,
19309,
313,
12717,
29871,
29945,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
19159,
292,
805,
764,
13,
13,
30226,
2319,
3500,
9010,
29892,
409,
5779,
2313,
25600,
13,
13,
29946,
18350,
298,
352,
839,
380,
1610,
495,
2722,
13,
13,
29896,
2319,
10849,
432,
2883,
412,
8266,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
20559,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
301,
603,
503,
342,
13,
13,
29896,
6131,
1129,
265,
10849,
301,
603,
3623,
625,
13,
13,
29946,
7689,
23379,
310,
10849,
20559,
313,
25253,
29897,
13,
13,
6295,
557,
697,
29871,
29947,
29899,
22466,
27278,
18109,
556,
363,
472,
3203,
29871,
29896,
29900,
6233,
297,
11220,
4094,
304,
3013,
372,
515,
1373,
5393,
29892,
470,
671,
263,
11915,
18109,
556,
29889,
13,
13,
797,
263,
4091,
340,
12917,
289,
5086,
270,
728,
29892,
377,
3873,
4208,
278,
282,
457,
11548,
3623,
625,
322,
1236,
2496,
29889,
3462,
278,
9427,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
29900,
304,
29871,
29941,
29900,
6233,
29892,
14712,
1432,
29871,
29896,
29900,
6233,
29889,
13,
13,
6816,
273,
8000,
29892,
3578,
368,
805,
764,
263,
639,
1454,
630,
867,
453,
9869,
411,
7984,
292,
805,
764,
322,
2058,
373,
278,
867,
453,
1153,
384,
29889,
4721,
354,
271,
278,
867,
453,
373,
18350,
1880,
29889,
13,
13,
15156,
263,
15301,
889,
1607,
29892,
1207,
263,
3652,
310,
274,
1883,
845,
905,
5700,
29879,
297,
278,
3500,
9010,
29892,
1641,
16010,
451,
304,
5700,
599,
278,
982,
1549,
278,
28610,
304,
278,
1236,
295,
29889,
12790,
368,
805,
764,
278,
5700,
2625,
411,
7984,
292,
805,
764,
29889,
10480,
278,
380,
1610,
495,
2722,
11480,
278,
18109,
556,
29889,
12790,
368,
805,
764,
963,
411,
7984,
292,
805,
764,
29889,
13,
13,
20769,
368,
805,
764,
278,
432,
2883,
412,
8266,
411,
7984,
292,
805,
764,
29889,
1632,
453,
363,
29871,
29946,
304,
29871,
29945,
6233,
29892,
470,
2745,
10029,
1373,
1127,
29892,
14712,
23025,
29889,
1632,
453,
278,
3500,
9010,
411,
278,
5700,
2625,
1623,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
278,
28610,
338,
22843,
17354,
29889,
1632,
453,
278,
380,
1610,
495,
2722,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
10029,
22843,
322,
540,
630,
1549,
29892,
14712,
2748,
4203,
1582,
1549,
29889,
17934,
278,
432,
2883,
412,
8266,
29892,
3500,
9010,
29892,
322,
380,
1610,
495,
2722,
304,
263,
28967,
7613,
29889,
2803,
2317,
363,
29871,
29945,
6233,
304,
12528,
29889,
13,
13,
15156,
263,
805,
6150,
29892,
885,
26793,
714,
278,
28610,
310,
278,
3500,
9010,
29889,
17934,
304,
263,
18350,
12580,
29880,
29889,
678,
459,
278,
380,
1610,
495,
2722,
29889,
3462,
278,
380,
1610,
495,
2722,
304,
278,
3500,
9010,
29889,
3295,
7543,
278,
409,
5779,
322,
18130,
29879,
310,
278,
432,
2883,
412,
8266,
313,
4149,
17278,
29915,
29879,
323,
666,
467,
678,
459,
372,
29889,
402,
2705,
23546,
278,
432,
2883,
412,
8266,
29892,
3060,
2986,
20559,
29892,
301,
603,
503,
342,
29892,
322,
301,
603,
3623,
625,
964,
278,
3500,
9010,
29544,
29889,
13,
13,
29928,
6038,
278,
9427,
29892,
2313,
20272,
278,
1766,
1099,
311,
29889,
1632,
453,
278,
9427,
363,
29871,
29946,
304,
29871,
29945,
6233,
373,
1269,
2625,
29892,
470,
2745,
372,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
17934,
304,
715,
1078,
29889,
7488,
411,
278,
269,
1338,
29874,
29889,
402,
2753,
728,
411,
278,
7689,
23379,
310,
20559,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29896,
29947,
13,
13,
7827,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29953,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29947,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
2168,
1524,
10800,
273,
260,
4347,
413,
774,
6897,
13,
13,
2277,
1612,
1524,
10800,
273,
260,
4347,
413,
774,
6897,
13,
13,
29909,
10849,
6454,
1219,
29899,
29879,
3470,
1617,
12507,
346,
27641,
408,
263,
1766,
1099,
311,
304,
2367,
278,
413,
774,
6897,
8951,
278,
21054,
272,
29889,
1816,
345,
963,
411,
17354,
19408,
470,
3353,
29899,
29893,
354,
271,
274,
681,
29883,
681,
29889,
313,
13393,
15373,
1846,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
413,
774,
370,
639,
16330,
13,
13,
30515,
18002,
7375,
4094,
13,
13,
29925,
22466,
310,
872,
600,
1617,
313,
25253,
29897,
13,
13,
229,
136,
151,
18002,
3060,
2986,
10545,
715,
398,
313,
29934,
4125,
29897,
6454,
20452,
313,
12717,
29871,
29906,
2319,
29897,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29896,
734,
294,
1129,
265,
2654,
19006,
13848,
387,
279,
13,
13,
29896,
2319,
7171,
506,
17184,
345,
13,
13,
29896,
282,
618,
260,
4347,
1886,
10327,
29892,
364,
1144,
287,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
29896,
29906,
29871,
29896,
29899,
22466,
13630,
267,
13,
13,
29896,
18350,
373,
291,
29892,
5700,
964,
29871,
29896,
29906,
29871,
30226,
29899,
22466,
14837,
2710,
13,
13,
29896,
18350,
2654,
470,
13328,
22623,
1236,
2496,
29892,
5700,
964,
29871,
29896,
29906,
10076,
567,
13,
13,
29896,
18350,
503,
1682,
305,
2172,
29892,
5700,
4891,
3538,
964,
29871,
29896,
29906,
269,
29399,
13,
13,
19159,
292,
805,
764,
13,
13,
6295,
557,
3023,
29871,
29896,
29906,
29899,
22466,
27278,
18109,
17538,
363,
472,
3203,
29871,
29896,
29900,
6233,
297,
11220,
4094,
304,
3013,
963,
515,
1373,
5393,
29892,
470,
671,
11915,
18109,
17538,
29889,
13,
13,
797,
263,
2319,
12917,
12580,
29880,
29892,
377,
3873,
4208,
278,
7375,
4094,
322,
872,
600,
1617,
29889,
512,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
872,
600,
1617,
29544,
29892,
6454,
20452,
29892,
17182,
29892,
13848,
387,
279,
29892,
322,
7171,
506,
363,
29871,
29896,
11015,
29892,
470,
2745,
10597,
29889,
17934,
29871,
31690,
18002,
310,
278,
29544,
304,
278,
12580,
29880,
29889,
26428,
322,
337,
1341,
4087,
403,
2745,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
1434,
16330,
931,
29889,
13,
13,
2831,
1269,
413,
774,
370,
29892,
3244,
1269,
18109,
556,
411,
29871,
29941,
260,
4347,
13630,
267,
29892,
29871,
29941,
373,
291,
14837,
2710,
29892,
29871,
29941,
22623,
1236,
2496,
10076,
567,
29892,
322,
29871,
29941,
503,
1682,
305,
2172,
269,
29399,
29889,
12065,
278,
413,
774,
6897,
373,
263,
12726,
2168,
289,
5086,
9869,
29889,
1771,
1878,
599,
11192,
310,
278,
413,
774,
6897,
1176,
5794,
411,
278,
1766,
1099,
311,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29941,
29900,
6233,
304,
29871,
29896,
7234,
29889,
13,
13,
20769,
368,
805,
764,
278,
867,
453,
1153,
384,
411,
7984,
292,
805,
764,
29889,
4721,
354,
271,
278,
867,
453,
373,
18350,
1880,
29889,
13,
13,
6816,
273,
8000,
29892,
3349,
278,
21676,
872,
600,
1617,
29544,
515,
278,
337,
1341,
4087,
1061,
29889,
2803,
2317,
472,
5716,
10430,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29889,
13,
13,
20769,
368,
805,
764,
278,
413,
774,
6897,
411,
7984,
292,
805,
764,
29889,
1632,
453,
278,
413,
774,
6897,
29892,
10664,
29892,
363,
1048,
29871,
29946,
6233,
29892,
470,
2745,
278,
9427,
338,
278,
7429,
1016,
18543,
322,
278,
18655,
1849,
526,
22707,
29899,
29883,
3780,
29886,
29892,
14712,
13672,
29889,
1816,
345,
411,
278,
21676,
872,
600,
1617,
29544,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29929,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29953,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29947,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29906,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1932,
3244,
292,
278,
413,
774,
6897,
29892,
10696,
278,
503,
1682,
305,
2172,
269,
29399,
577,
896,
3804,
10029,
12151,
2645,
867,
8873,
363,
901,
1584,
7984,
292,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
476,
25752,
2882,
29903,
29901,
8669,
310,
14712,
413,
774,
6897,
29892,
366,
508,
671,
263,
11915,
805,
271,
2497,
304,
9679,
963,
975,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
16698,
4198,
29934,
1164,
29901,
887,
508,
15649,
872,
600,
1617,
297,
4764,
672,
883,
470,
408,
9717,
29936,
278,
9717,
526,
29595,
2276,
322,
901,
21054,
272,
1319,
29889,
2688,
508,
367,
19390,
29892,
541,
263,
2217,
5771,
263,
1472,
982,
29889,
6781,
1878,
963,
925,
1434,
366,
671,
963,
29889,
13,
13,
2277,
289,
9919,
9427,
260,
562,
359,
13,
13,
1576,
350,
9919,
7363,
1144,
2497,
29892,
297,
6641,
22741,
12568,
29892,
338,
13834,
363,
9427,
260,
562,
359,
29889,
14832,
750,
29881,
1698,
338,
15000,
297,
445,
9522,
412,
29892,
738,
9226,
29899,
29888,
793,
17143,
9427,
674,
664,
1532,
363,
867,
8873,
29889,
3789,
714,
278,
7984,
287,
9427,
322,
304,
3262,
2348,
1127,
10070,
322,
1235,
14332,
2048,
670,
470,
902,
1914,
260,
562,
359,
29889,
13,
13,
29946,
26996,
29963,
4214,
29903,
891,
29871,
29906,
260,
562,
359,
639,
16330,
13,
13,
29896,
734,
294,
1129,
265,
521,
2638,
4764,
672,
313,
273,
1859,
4764,
672,
16389,
29897,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29946,
750,
29881,
1698,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
19159,
292,
805,
764,
13,
13,
29947,
29871,
29953,
29899,
22466,
26343,
16263,
21338,
13,
13,
29896,
18350,
1029,
542,
912,
13,
13,
29906,
18350,
10545,
715,
398,
313,
29934,
4125,
29897,
6454,
20452,
29892,
16717,
287,
322,
270,
7612,
13,
13,
29896,
18002,
528,
1127,
7176,
364,
4125,
457,
13,
13,
30515,
18002,
269,
1338,
29874,
1147,
311,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
18350,
301,
1355,
29892,
1269,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
521,
2638,
4764,
672,
29892,
470,
387,
1562,
29892,
266,
25395,
29892,
322,
274,
9735,
29889,
624,
381,
297,
278,
17182,
29889,
1706,
949,
278,
29544,
975,
1716,
11192,
310,
278,
9427,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
29945,
304,
29871,
29906,
29900,
6233,
29889,
13,
13,
6816,
273,
8000,
758,
354,
271,
278,
867,
453,
373,
1880,
29889,
12790,
368,
805,
764,
278,
9427,
411,
7984,
292,
805,
764,
29889,
1632,
453,
278,
9427,
411,
278,
805,
25724,
2625,
1623,
363,
29871,
29945,
304,
29871,
29953,
6233,
29892,
470,
2745,
372,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
3872,
29915,
29873,
2507,
372,
975,
29889,
13,
13,
15156,
263,
11915,
805,
271,
2497,
29892,
6782,
278,
9427,
304,
263,
2919,
15284,
29889,
2803,
12528,
363,
29871,
29941,
304,
29871,
29945,
6233,
29889,
28301,
278,
9427,
964,
29871,
29896,
29899,
22466,
12785,
29889,
13,
13,
22908,
278,
9427,
373,
278,
16263,
21338,
29889,
360,
625,
278,
1029,
542,
912,
29889,
7488,
278,
9427,
411,
278,
1029,
542,
912,
29892,
6454,
20452,
29892,
364,
4125,
457,
29892,
322,
269,
1338,
29874,
29889,
1816,
345,
411,
278,
301,
603,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29955,
29945,
13,
13,
7827,
9950,
29871,
29896,
29906,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29955,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29896,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29945,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29896,
330,
13,
13,
7241,
495,
29871,
29953,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
2277,
521,
21475,
411,
2654,
364,
4692,
16344,
14751,
911,
13,
13,
19111,
29899,
12857,
304,
1925,
4208,
29892,
445,
14225,
322,
13914,
270,
728,
3913,
871,
5320,
2348,
1127,
10070,
29889,
887,
508,
505,
372,
373,
278,
1591,
297,
3109,
1135,
29871,
29941,
29900,
6233,
29892,
3907,
372,
278,
4922,
9953,
1318,
363,
263,
19587,
11801,
4646,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
30642,
18002,
599,
29899,
29888,
9216,
16717,
2222,
2654,
364,
4692,
16344,
9677,
13,
13,
29906,
6131,
1129,
787,
298,
4992,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
30515,
734,
294,
1129,
265,
274,
388,
4584,
13,
13,
29946,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
29892,
282,
7261,
304,
29871,
30226,
29899,
22466,
12003,
2264,
13,
13,
29953,
29871,
1309,
778,
2654,
364,
4692,
495,
2722,
13,
13,
20769,
368,
805,
764,
278,
867,
453,
1153,
384,
411,
7984,
292,
805,
764,
29889,
4721,
354,
271,
278,
867,
453,
373,
18350,
1880,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
364,
4692,
16344,
9677,
29892,
298,
4992,
1818,
538,
29892,
322,
274,
388,
4584,
29889,
24674,
265,
29871,
30515,
18002,
310,
278,
14751,
911,
964,
263,
5004,
2319,
12580,
29880,
29889,
3789,
17786,
29889,
12790,
368,
1506,
1878,
1716,
11192,
310,
278,
521,
21475,
411,
278,
9886,
14751,
911,
29889,
13,
13,
3338,
453,
278,
521,
21475,
363,
29871,
29945,
304,
29871,
29955,
6233,
373,
1269,
2625,
29892,
470,
2745,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
6816,
273,
8000,
29892,
788,
278,
364,
4692,
495,
2722,
304,
278,
21676,
14751,
911,
29892,
23546,
5393,
330,
2705,
304,
24296,
29889,
3387,
1434,
16330,
29892,
805,
6150,
975,
278,
521,
21475,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29946,
29906,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29941,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29955,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
29900,
330,
13,
13,
14676,
262,
29871,
29906,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
15774,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
5868,
2965,
29968,
1430,
350,
1525,
28938,
29903,
29901,
2379,
8606,
287,
521,
21475,
2078,
19416,
526,
901,
9090,
297,
12003,
2264,
577,
896,
7984,
901,
1584,
368,
29889,
2688,
884,
7984,
8473,
29892,
607,
3732,
963,
3109,
5517,
304,
15589,
714,
470,
4953,
260,
820,
29889,
13,
13,
2277,
1560,
554,
29891,
521,
21475,
322,
18655,
519,
1869,
15713,
13,
13,
4013,
22910,
9522,
412,
4893,
1869,
15713,
714,
310,
278,
288,
854,
322,
964,
278,
714,
1867,
943,
29889,
450,
7117,
526,
867,
24455,
29892,
4417,
263,
8261,
1560,
554,
3335,
304,
278,
270,
728,
29892,
607,
338,
884,
7743,
373,
278,
867,
453,
29889,
21595,
714,
596,
592,
284,
411,
263,
2560,
4497,
328,
470,
777,
4805,
867,
24455,
18655,
1849,
29889,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
697,
29871,
29941,
13105,
29871,
29946,
30226,
29899,
22466,
8424,
639,
16330,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
696,
12846,
653,
13,
13,
29896,
6131,
1129,
265,
4796,
19006,
13848,
387,
279,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29896,
282,
618,
10814,
6393,
29892,
19309,
2222,
521,
21475,
2078,
19416,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
19159,
292,
805,
764,
13,
13,
29929,
270,
1255,
3353,
29899,
3874,
262,
1869,
15713,
694,
397,
793,
13,
13,
29946,
18350,
6454,
20452,
29892,
8870,
1490,
13,
13,
29906,
18350,
503,
1682,
305,
2172,
29892,
5700,
3309,
3538,
964,
29871,
30642,
29899,
22466,
29899,
27996,
269,
29399,
13,
13,
29896,
2919,
24841,
22623,
1236,
2496,
29892,
5700,
964,
29871,
30226,
29899,
22466,
28774,
13,
13,
29896,
18350,
2654,
373,
291,
29892,
5700,
964,
29871,
30226,
29899,
22466,
269,
29399,
322,
13055,
964,
28774,
13,
13,
29896,
6131,
1129,
265,
15795,
29899,
9021,
599,
29899,
15503,
4220,
4259,
292,
1999,
355,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
29896,
29945,
29871,
1309,
778,
9950,
29899,
9021,
9597,
13536,
923,
968,
13,
13,
29896,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
286,
2112,
29920,
598,
13520,
923,
968,
13,
13,
797,
263,
4091,
340,
12917,
12580,
29880,
29892,
23546,
4208,
278,
696,
12846,
653,
29892,
13848,
387,
279,
29892,
7171,
506,
29892,
15795,
29892,
322,
1236,
2496,
29889,
3462,
278,
521,
21475,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
472,
3203,
29871,
29896,
29900,
6233,
29892,
470,
701,
304,
29871,
29947,
6199,
29892,
14712,
23025,
29889,
13,
13,
20769,
368,
805,
764,
278,
867,
453,
1153,
384,
411,
7984,
292,
805,
764,
29889,
4721,
354,
271,
278,
867,
453,
373,
18350,
1880,
29889,
13,
13,
29928,
6038,
278,
521,
21475,
29892,
2313,
20272,
278,
1766,
1099,
311,
29889,
12790,
368,
805,
764,
1716,
11192,
310,
278,
521,
21475,
411,
7984,
292,
805,
764,
29889,
1632,
453,
363,
29871,
29953,
304,
29871,
29947,
6233,
373,
1269,
2625,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
17934,
304,
263,
28967,
7613,
29889,
2803,
12528,
29889,
3189,
1503,
873,
521,
459,
278,
521,
21475,
29889,
13,
13,
6816,
273,
8000,
29892,
3578,
368,
805,
764,
1716,
11192,
310,
278,
694,
397,
793,
411,
7984,
292,
805,
764,
29889,
1632,
453,
363,
29871,
29896,
30226,
304,
29871,
29906,
6233,
373,
1269,
2625,
29892,
470,
2745,
896,
505,
22843,
29899,
29890,
4708,
867,
453,
17997,
29889,
15154,
515,
278,
867,
453,
29889,
13,
13,
22908,
278,
6454,
20452,
29892,
503,
1682,
305,
2172,
29892,
22623,
1236,
2496,
29892,
322,
373,
291,
373,
263,
289,
5086,
9869,
470,
715,
2620,
29889,
12790,
368,
805,
764,
411,
7984,
292,
805,
764,
29889,
14314,
682,
280,
411,
4203,
278,
4259,
292,
1999,
355,
29889,
9603,
975,
278,
18655,
1849,
29889,
12790,
368,
805,
764,
411,
7984,
292,
805,
764,
29889,
14314,
682,
280,
411,
278,
9886,
4259,
292,
1999,
355,
29889,
13,
13,
15156,
263,
639,
1454,
630,
867,
453,
9869,
29892,
867,
453,
278,
18655,
1849,
363,
29871,
29906,
304,
29871,
29941,
6233,
373,
1269,
2625,
29889,
15154,
515,
278,
867,
453,
29889,
512,
263,
2919,
12580,
29880,
29892,
23546,
4208,
278,
3060,
2986,
521,
21475,
322,
867,
24455,
503,
1682,
305,
2172,
29892,
22623,
1236,
2496,
29892,
322,
373,
291,
29889,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
6454,
20452,
322,
470,
387,
1562,
363,
29871,
29896,
30226,
304,
29871,
29906,
6233,
29892,
470,
2745,
278,
12507,
346,
338,
10029,
19875,
29891,
29889,
13,
13,
20769,
368,
805,
764,
263,
29871,
29896,
29941,
13105,
29871,
29929,
13105,
29871,
29906,
29899,
22466,
11915,
7243,
411,
7984,
292,
805,
764,
29889,
13,
13,
797,
278,
7243,
29892,
7546,
408,
4477,
29901,
29871,
30226,
18002,
6454,
1219,
12507,
346,
29892,
29871,
29941,
694,
397,
793,
29892,
4203,
278,
521,
21475,
29544,
29892,
4203,
278,
9597,
13536,
29892,
322,
4203,
278,
286,
2112,
29920,
598,
13520,
29889,
830,
11666,
278,
15359,
29892,
28321,
411,
278,
9886,
29871,
29941,
694,
397,
793,
29889,
1706,
949,
278,
9886,
6454,
1219,
12507,
346,
373,
2246,
29889,
26428,
278,
7243,
411,
394,
9735,
398,
1701,
309,
29889,
13,
13,
3338,
453,
29892,
10664,
29892,
363,
29871,
29906,
29900,
304,
29871,
29906,
29945,
6233,
29892,
470,
2745,
278,
286,
2112,
29920,
598,
13520,
756,
286,
2152,
287,
322,
278,
1869,
15713,
338,
540,
630,
1549,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29941,
29947,
13,
13,
7827,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
29953,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29945,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29945,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29906,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
1935,
19881,
9940,
521,
21475,
322,
18655,
519,
413,
774,
6897,
13,
13,
29967,
29884,
4245,
521,
21475,
322,
263,
12875,
310,
18655,
1849,
526,
1766,
262,
630,
297,
263,
805,
4245,
29899,
29879,
16668,
12507,
346,
1434,
1641,
867,
24455,
304,
22707,
639,
20309,
29889,
10306,
17803,
411,
678,
1794,
29899,
5592,
7612,
349,
457,
11548,
5013,
1503,
363,
6808,
814,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29906,
18109,
17538,
639,
16330,
13,
13,
29906,
30226,
6131,
1129,
787,
3578,
17354,
26438,
13,
13,
29906,
6131,
1129,
787,
528,
261,
719,
470,
10849,
24841,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
30226,
734,
294,
1129,
265,
5962,
330,
5621,
13,
13,
30226,
734,
294,
1129,
265,
7375,
521,
2638,
17182,
13,
13,
29896,
282,
618,
10814,
6393,
29892,
19309,
2222,
521,
21475,
2078,
19416,
29892,
599,
7962,
9950,
2313,
25600,
29892,
5700,
964,
29871,
29896,
29953,
29871,
29896,
30226,
29899,
22466,
13630,
267,
13,
13,
29906,
18350,
373,
1080,
29892,
5700,
964,
29871,
29946,
14837,
2710,
1269,
13,
13,
29947,
18350,
2826,
286,
1878,
18901,
13,
13,
29947,
14954,
719,
470,
2646,
412,
6454,
20452,
13,
13,
29896,
18350,
503,
1682,
305,
2172,
29892,
5700,
4891,
3538,
964,
29871,
29947,
269,
29399,
13,
13,
19159,
292,
805,
764,
13,
13,
797,
263,
4091,
340,
12917,
289,
5086,
270,
728,
29892,
377,
3873,
4208,
278,
17354,
26438,
29892,
528,
261,
719,
29892,
577,
29891,
12507,
346,
29892,
508,
2963,
17182,
29892,
330,
5621,
29892,
322,
521,
2638,
17182,
29889,
3462,
278,
521,
21475,
29892,
373,
1080,
29892,
286,
1878,
18901,
29892,
6454,
20452,
29892,
322,
503,
1682,
305,
2172,
29892,
23546,
5393,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
7234,
29892,
14712,
23025,
29889,
13,
13,
6816,
273,
8000,
29892,
577,
557,
9475,
29871,
29947,
29899,
22466,
289,
314,
833,
29877,
18109,
17538,
363,
472,
3203,
29871,
29896,
29900,
6233,
297,
11220,
4094,
304,
3013,
963,
515,
1373,
5393,
29892,
470,
671,
11915,
18109,
17538,
29889,
13,
13,
20769,
368,
805,
764,
278,
867,
453,
1153,
384,
411,
7984,
292,
805,
764,
29889,
4721,
354,
271,
278,
867,
453,
373,
1880,
29889,
13,
13,
2831,
1269,
413,
774,
370,
29892,
3244,
1269,
18109,
556,
411,
29871,
29906,
521,
21475,
13630,
267,
29892,
29871,
29896,
373,
291,
281,
12864,
29892,
29871,
29896,
286,
1878,
8345,
29892,
29871,
29896,
6454,
1219,
29892,
322,
29871,
29896,
503,
1682,
305,
2172,
22780,
29889,
1632,
453,
363,
29871,
29941,
6233,
373,
1269,
2625,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29955,
13,
13,
7827,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29941,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29896,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29947,
330,
13,
13,
14676,
262,
29871,
29906,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
1652,
804,
1886,
557,
411,
20674,
436,
332,
374,
12507,
346,
13,
13,
1451,
326,
436,
332,
374,
29892,
263,
7171,
1406,
29891,
902,
29890,
12507,
346,
29892,
338,
763,
278,
413,
3486,
786,
310,
13798,
29889,
739,
29915,
29879,
15574,
6766,
411,
599,
4072,
310,
867,
24455,
470,
696,
28470,
592,
1446,
29889,
3967,
445,
411,
263,
2625,
310,
1522,
1691,
411,
26048,
402,
1745,
324,
532,
29889,
13,
13,
29946,
26996,
29963,
4214,
29903,
891,
29871,
29941,
29871,
1309,
778,
367,
1389,
322,
29871,
29896,
6131,
1129,
265,
12507,
346,
639,
16330,
13,
13,
8132,
29965,
4741,
13,
13,
29896,
30226,
2723,
567,
10545,
313,
20620,
29899,
29500,
29897,
610,
29879,
2330,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
29906,
18350,
4091,
1862,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
29906,
6131,
1129,
787,
1302,
1503,
873,
3060,
2986,
10849,
2362,
309,
13,
13,
29906,
6131,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
29906,
6131,
1129,
787,
4094,
13,
13,
29953,
18350,
7171,
506,
17184,
1960,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
29896,
6131,
1129,
265,
1302,
1503,
873,
3060,
2986,
10849,
274,
309,
424,
307,
313,
25253,
29897,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29906,
6131,
1129,
787,
288,
9258,
17182,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
1652,
804,
1886,
557,
29892,
599,
7962,
9950,
322,
13283,
19309,
2313,
25600,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
12507,
346,
2348,
1127,
10070,
5174,
278,
17182,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
1436,
873,
3060,
2986,
29889,
3462,
278,
17182,
29892,
9505,
2976,
29871,
29906,
470,
29871,
29941,
3064,
29892,
470,
2745,
925,
10597,
29889,
6803,
4203,
278,
12507,
346,
964,
263,
2319,
12917,
12580,
29880,
29889,
26428,
322,
337,
1341,
4087,
403,
29889,
13,
13,
29925,
473,
278,
9886,
12507,
346,
964,
263,
2919,
12917,
289,
5086,
270,
728,
29889,
3462,
278,
367,
1389,
29892,
14712,
304,
24296,
29889,
830,
1341,
4087,
403,
29892,
10664,
29892,
363,
29871,
29906,
6199,
29892,
14712,
23025,
29889,
15154,
278,
270,
728,
515,
278,
337,
1341,
4087,
1061,
29889,
2803,
2317,
363,
29871,
29906,
29900,
6233,
29889,
15154,
278,
21676,
12507,
346,
515,
278,
337,
1341,
4087,
1061,
29889,
2803,
2317,
363,
29871,
29941,
29900,
6233,
29889,
13,
13,
6816,
273,
8000,
29892,
758,
354,
271,
278,
867,
453,
373,
1880,
29889,
13,
13,
29928,
6038,
278,
367,
1389,
29892,
2313,
20272,
278,
1766,
1099,
311,
29889,
1632,
453,
278,
367,
1389,
363,
29871,
29946,
304,
29871,
29945,
6233,
373,
1269,
2625,
29892,
470,
304,
278,
7429,
1016,
18543,
29889,
17934,
304,
263,
28967,
7613,
29889,
2803,
2317,
363,
29871,
29896,
29945,
6233,
1434,
16835,
368,
269,
506,
292,
29889,
1816,
345,
411,
278,
21676,
12507,
346,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29929,
29947,
13,
13,
7827,
9950,
29871,
29896,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29945,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29945,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29906,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
2277,
282,
548,
1612,
497,
1080,
411,
286,
4524,
2730,
2212,
13,
13,
29909,
13807,
1704,
747,
14471,
286,
4524,
2730,
2212,
313,
6720,
29899,
1251,
29897,
7805,
3708,
29948,
287,
286,
4524,
29889,
1632,
8873,
278,
286,
4524,
322,
3060,
3262,
372,
12778,
18459,
322,
263,
13182,
310,
25158,
304,
278,
14225,
12507,
346,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
1612,
497,
1080,
322,
29871,
29941,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
282,
548,
22707,
417,
262,
29892,
599,
7962,
9950,
2313,
25600,
29892,
5700,
7936,
265,
635,
4822,
278,
2646,
262,
964,
29871,
29896,
29906,
1612,
497,
1080,
13,
13,
29906,
6131,
1129,
787,
1375,
1133,
4091,
1862,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
301,
603,
503,
342,
13,
13,
29906,
6131,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
19159,
292,
805,
764,
13,
13,
6720,
29967,
29949,
13,
13,
29896,
18350,
286,
4524,
29892,
5700,
3309,
3538,
964,
29871,
30226,
29899,
22466,
29899,
27996,
269,
29399,
13,
13,
29896,
30226,
6131,
1129,
787,
301,
603,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29896,
2319,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
30515,
734,
294,
1129,
265,
2654,
7375,
29899,
412,
2496,
12507,
346,
13,
13,
15156,
278,
5112,
29885,
310,
596,
1361,
29892,
330,
2705,
1652,
8606,
738,
12003,
269,
29399,
310,
282,
548,
363,
901,
1584,
7984,
292,
29889,
826,
3881,
278,
282,
548,
373,
263,
2919,
12726,
2168,
289,
5086,
9869,
29889,
512,
263,
2319,
270,
728,
29892,
23546,
4208,
278,
4091,
1862,
29892,
301,
603,
503,
342,
29892,
322,
1236,
2496,
29889,
14314,
682,
280,
599,
975,
278,
282,
548,
29889,
6803,
29871,
29906,
6131,
1129,
787,
301,
603,
3623,
625,
322,
278,
17182,
373,
2246,
29889,
14314,
682,
280,
29871,
29906,
6131,
1129,
787,
274,
309,
424,
307,
599,
975,
278,
282,
548,
29889,
2803,
2317,
363,
29871,
29941,
29900,
6233,
29889,
13,
13,
6816,
273,
8000,
29892,
3578,
368,
805,
764,
278,
867,
453,
1153,
384,
411,
7984,
292,
805,
764,
29889,
4721,
354,
271,
278,
867,
453,
373,
18350,
29889,
1632,
453,
278,
286,
4524,
363,
29871,
29906,
6233,
373,
1269,
2625,
29889,
2803,
12528,
304,
5716,
10430,
29889,
4231,
873,
521,
459,
29889,
512,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
286,
4524,
322,
278,
9886,
2730,
2212,
2348,
1127,
10070,
29889,
13,
13,
3338,
453,
278,
282,
548,
29892,
10664,
29892,
363,
29871,
29946,
304,
29871,
29953,
6233,
29892,
470,
2745,
372,
28975,
29871,
29896,
29946,
29945,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
29892,
14712,
2748,
29889,
17934,
304,
715,
1078,
29889,
2803,
2317,
363,
29871,
29941,
6233,
29889,
1816,
345,
411,
278,
2730,
2212,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29953,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29945,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29945,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
15774,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
8416,
273,
5096,
29879,
13,
13,
2008,
8929,
313,
8132,
29979,
29899,
13161,
29897,
338,
263,
27654,
4561,
29892,
26823,
29899,
4018,
9687,
1754,
515,
21266,
271,
3144,
6935,
29889,
512,
445,
270,
728,
29892,
372,
29915,
29879,
7546,
287,
411,
5192,
29891,
18655,
1849,
322,
748,
29877,
1032,
286,
2112,
29920,
598,
13520,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
5096,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
696,
12846,
653,
470,
29871,
29896,
734,
294,
1129,
265,
270,
1255,
696,
12846,
653,
29892,
2181,
15392,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
2362,
309,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
19710,
24389,
29892,
5700,
964,
29871,
29947,
29871,
30226,
29899,
22466,
269,
29399,
13,
13,
29906,
18350,
13328,
11801,
10674,
1161,
29892,
1269,
5700,
964,
29871,
29896,
29953,
29871,
30226,
29899,
22466,
364,
3885,
13,
13,
29906,
18350,
2654,
22623,
1236,
22437,
29892,
1269,
5700,
964,
29871,
29946,
29871,
30226,
29899,
22466,
28774,
13,
13,
29947,
29871,
1309,
778,
8416,
273,
10076,
567,
470,
521,
18801,
29892,
282,
19667,
15589,
13,
13,
29906,
6131,
1129,
787,
10849,
454,
3712,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
13,
13,
29949,
9258,
17182,
7984,
292,
805,
764,
13,
13,
29896,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
286,
2112,
29920,
598,
13520,
923,
968,
13,
13,
30226,
18002,
1766,
262,
2518,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
511,
540,
630,
13,
13,
29946,
2319,
7689,
23379,
310,
10849,
696,
12846,
653,
313,
25253,
29897,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
3060,
2986,
696,
12846,
653,
29892,
470,
387,
1562,
29892,
2362,
309,
29892,
322,
1236,
2496,
29889,
13,
13,
1433,
3881,
278,
19710,
24389,
29892,
10674,
1161,
29892,
22623,
1236,
22437,
29892,
322,
8416,
273,
297,
263,
2323,
7546,
373,
263,
12726,
2168,
289,
5086,
9869,
29889,
360,
374,
5617,
280,
411,
4203,
278,
454,
3712,
3623,
625,
322,
17182,
29889,
14314,
682,
280,
411,
4203,
278,
696,
12846,
653,
29544,
29889,
9603,
975,
278,
18655,
1849,
322,
8416,
273,
29889,
830,
11666,
411,
278,
9886,
454,
3712,
3623,
625,
29892,
17182,
29892,
322,
696,
12846,
653,
29544,
29889,
13,
13,
20769,
368,
805,
764,
278,
867,
453,
1153,
384,
411,
7984,
292,
805,
764,
29889,
4721,
354,
271,
278,
867,
453,
373,
18350,
1880,
29889,
5293,
263,
639,
1454,
630,
867,
453,
9869,
29892,
867,
453,
278,
18655,
1849,
322,
8416,
273,
363,
29871,
29906,
304,
29871,
29941,
6233,
373,
1269,
2625,
29889,
15154,
515,
278,
867,
453,
29889,
12065,
29871,
29946,
269,
29399,
310,
19710,
24389,
373,
263,
715,
2620,
29889,
7488,
1269,
411,
29871,
29896,
22623,
1236,
2496,
9228,
29892,
29871,
29946,
10674,
1161,
364,
3885,
29892,
29871,
29941,
8416,
273,
10076,
567,
29892,
322,
29871,
29906,
6131,
1129,
787,
286,
2112,
29920,
598,
13520,
29889,
830,
11666,
278,
15359,
29889,
24674,
265,
278,
12507,
346,
975,
278,
5096,
29879,
29889,
402,
2753,
728,
411,
278,
696,
12846,
653,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29946,
29941,
13,
13,
7827,
9950,
29871,
29947,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29946,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29900,
330,
13,
13,
7241,
495,
29871,
29955,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29946,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
286,
1878,
8345,
29899,
29920,
1682,
305,
2172,
2644,
359,
411,
1560,
554,
29891,
907,
655,
13,
13,
8439,
29915,
29879,
694,
817,
304,
4459,
27719,
1048,
321,
1218,
2644,
359,
363,
17803,
746,
278,
3632,
331,
1943,
867,
24455,
16263,
2911,
521,
4512,
526,
304,
2986,
411,
12461,
29887,
583,
322,
304,
21154,
29889,
24791,
287,
411,
263,
503,
14596,
805,
625,
6837,
322,
330,
2753,
3276,
411,
263,
24777,
29899,
3293,
269,
473,
907,
314,
29892,
1438,
2644,
359,
1835,
411,
21054,
272,
29889,
22738,
304,
2758,
3307,
931,
304,
3965,
278,
304,
21154,
363,
6775,
867,
8873,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29896,
29946,
29871,
1309,
778,
3578,
4805,
29899,
29888,
3568,
470,
9226,
304,
21154,
29892,
7482,
1312,
322,
282,
19667,
15589,
13,
13,
29946,
29871,
29953,
29899,
22466,
26343,
16263,
21338,
29892,
1269,
5700,
964,
29871,
29953,
14837,
2710,
13,
13,
29906,
734,
294,
1129,
787,
5962,
274,
9735,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
313,
29924,
735,
2185,
16389,
511,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
31690,
18002,
9950,
29899,
9021,
269,
473,
907,
314,
13,
13,
29941,
6131,
1129,
787,
9950,
29899,
9021,
27274,
13,
13,
30515,
734,
294,
1129,
265,
1560,
12504,
3500,
374,
1335,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
18350,
2011,
711,
3156,
286,
1878,
8345,
26091,
29892,
5700,
964,
29871,
30226,
29899,
22466,
269,
29399,
13,
13,
29896,
18350,
503,
1682,
305,
2172,
29892,
5700,
3309,
3538,
964,
29871,
30226,
29899,
22466,
269,
29399,
13,
13,
30642,
18002,
14954,
719,
6454,
20452,
29892,
8870,
1490,
13,
13,
30226,
18002,
2181,
25443,
439,
20135,
29595,
1111,
470,
2215,
1050,
923,
968,
13,
13,
31690,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
22908,
278,
304,
21154,
373,
263,
28967,
7613,
301,
1312,
411,
3023,
15359,
310,
5650,
304,
29893,
1379,
29889,
26428,
411,
3023,
15359,
310,
5650,
304,
29893,
1379,
29889,
15484,
263,
2919,
29892,
9416,
289,
5086,
270,
728,
373,
2246,
29889,
2803,
2317,
363,
29871,
29941,
29900,
6233,
577,
278,
304,
21154,
27474,
967,
19163,
2730,
391,
545,
29892,
15270,
278,
5650,
304,
29893,
1379,
565,
5181,
29889,
13,
13,
6816,
273,
8000,
29892,
564,
3881,
278,
16263,
2911,
14837,
2710,
297,
263,
2323,
7546,
373,
263,
2919,
12726,
2168,
289,
5086,
9869,
29889,
2803,
2317,
363,
29871,
29941,
29900,
6233,
304,
29871,
29896,
7234,
29892,
470,
2745,
10029,
270,
1255,
322,
3151,
839,
29889,
17934,
304,
263,
2919,
12580,
29880,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
274,
9735,
29892,
470,
387,
1562,
29892,
322,
7171,
506,
4764,
672,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
5004,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
269,
473,
907,
314,
29892,
27274,
29892,
322,
3500,
374,
1335,
29889,
26428,
322,
337,
1341,
4087,
403,
29889,
13,
13,
20769,
368,
805,
764,
278,
867,
453,
411,
7984,
292,
805,
764,
29889,
4721,
354,
271,
278,
867,
453,
373,
18350,
29889,
13,
13,
6816,
273,
8000,
29892,
773,
5650,
304,
29893,
1379,
29892,
2373,
15589,
278,
304,
21154,
29889,
315,
329,
372,
4891,
3538,
964,
29871,
29946,
16835,
2243,
6897,
29889,
17934,
304,
278,
289,
5086,
9869,
29889,
826,
3881,
278,
286,
1878,
18901,
322,
503,
1682,
305,
2172,
297,
263,
2323,
7546,
373,
263,
5004,
2919,
12726,
2168,
289,
5086,
9869,
29889,
12790,
368,
805,
764,
278,
304,
21154,
29892,
286,
1878,
18901,
29892,
322,
503,
1682,
305,
2172,
373,
599,
11192,
411,
7984,
292,
805,
764,
29889,
14314,
682,
280,
278,
274,
9735,
29544,
975,
599,
11192,
310,
278,
304,
21154,
322,
18655,
1849,
29889,
5293,
596,
285,
292,
814,
4512,
29892,
330,
2705,
3965,
278,
29544,
577,
372,
594,
2276,
267,
304,
278,
304,
21154,
322,
18655,
1849,
29889,
13,
13,
22150,
278,
304,
21154,
3309,
3538,
577,
372,
29915,
29879,
639,
14081,
16311,
304,
278,
867,
1078,
310,
278,
867,
453,
29889,
1632,
453,
29892,
10664,
29892,
363,
29871,
29947,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
3578,
368,
3347,
9571,
29892,
14712,
2748,
4203,
1582,
1549,
29889,
15484,
278,
286,
1878,
18901,
322,
503,
1682,
305,
2172,
577,
896,
29915,
276,
639,
14081,
16311,
304,
278,
867,
1078,
310,
278,
867,
453,
29889,
1632,
453,
29892,
10664,
29892,
363,
29871,
29953,
304,
29871,
29929,
6233,
29892,
470,
2745,
3578,
368,
3347,
9571,
322,
22707,
29892,
14712,
23025,
29889,
1632,
453,
278,
16263,
2911,
14837,
2710,
29892,
10664,
29892,
363,
29871,
29945,
304,
29871,
29947,
6233,
29892,
470,
2745,
3578,
368,
2181,
11936,
29892,
14712,
23025,
29889,
17934,
278,
304,
21154,
29892,
286,
1878,
18901,
29892,
322,
503,
1682,
305,
2172,
304,
263,
28967,
7613,
29889,
17934,
278,
16263,
2911,
14837,
2710,
304,
16330,
715,
1078,
29889,
13,
13,
7967,
1503,
873,
521,
459,
278,
304,
21154,
29892,
286,
1878,
18901,
29892,
322,
503,
1682,
305,
2172,
29892,
12515,
278,
2348,
1127,
10070,
5004,
29889,
7488,
278,
16263,
2911,
14837,
2710,
411,
29892,
297,
1797,
29892,
278,
286,
1878,
18901,
29892,
503,
1682,
305,
2172,
29892,
304,
21154,
29892,
6454,
20452,
29892,
439,
20135,
29595,
1111,
29892,
322,
274,
309,
424,
307,
29889,
360,
374,
5617,
280,
411,
278,
269,
473,
907,
314,
29544,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29900,
29953,
13,
13,
7827,
9950,
29871,
29953,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29941,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29906,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29896,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29906,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
5254,
292,
278,
304,
21154,
6911,
6507,
967,
19163,
2730,
391,
545,
29892,
3907,
372,
13734,
1050,
322,
6775,
304,
867,
453,
29889,
4803,
263,
2919,
7243,
1113,
446,
2507,
261,
470,
805,
271,
2497,
304,
2507,
278,
304,
21154,
1550,
372,
867,
6090,
29889,
13,
13,
2277,
298,
4992,
29899,
29890,
1338,
314,
293,
1506,
1558,
1379,
7689,
17718,
411,
748,
271,
923,
968,
13,
13,
1576,
9914,
13914,
2264,
310,
278,
289,
1338,
314,
293,
29544,
1035,
1237,
278,
21054,
272,
310,
278,
7689,
17718,
29889,
3967,
1438,
1584,
565,
366,
1348,
366,
1016,
29915,
29873,
763,
1506,
1558,
1379,
7689,
17718,
29936,
867,
8873,
527,
20895,
263,
14225,
1560,
554,
3335,
322,
260,
1280,
278,
2586,
725,
404,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29896,
29906,
18350,
1506,
1558,
1379,
7689,
17718,
313,
12717,
29871,
29947,
29871,
1309,
778,
29897,
13,
13,
29941,
6131,
1129,
787,
289,
1338,
314,
293,
13848,
387,
279,
13,
13,
29896,
6131,
1129,
265,
298,
4992,
13,
13,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
6131,
1129,
787,
748,
271,
923,
968,
2181,
3774,
793,
470,
2181,
25443,
9950,
29899,
9021,
285,
1187,
923,
968,
13,
13,
6295,
557,
3023,
29871,
29953,
29899,
304,
29871,
29947,
29899,
22466,
27278,
18109,
17538,
363,
472,
3203,
29871,
29896,
29900,
6233,
297,
11220,
4094,
304,
3013,
963,
515,
1373,
5393,
29892,
470,
671,
11915,
18109,
17538,
29889,
13,
13,
15156,
263,
15301,
889,
1607,
29892,
17151,
278,
380,
1567,
310,
278,
1506,
1558,
1379,
7689,
17718,
29889,
21771,
1269,
1506,
1558,
1379,
7689,
449,
411,
278,
20805,
1095,
701,
29889,
315,
329,
4203,
1582,
1549,
1269,
313,
517,
1371,
963,
6425,
11831,
278,
1766,
1099,
311,
467,
13,
13,
797,
263,
2919,
4091,
340,
12917,
12580,
29880,
29892,
377,
3873,
4208,
278,
13848,
387,
279,
29892,
298,
4992,
29892,
17182,
29892,
322,
7171,
506,
29889,
3789,
17786,
29871,
29896,
6131,
1129,
265,
310,
278,
29544,
29889,
26428,
322,
337,
1341,
4087,
403,
278,
21676,
29544,
29889,
13,
13,
2528,
278,
1506,
1558,
1379,
7689,
17718,
304,
278,
1766,
1099,
311,
297,
278,
12580,
29880,
29892,
23546,
5393,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
29945,
6233,
304,
29871,
29947,
6199,
29892,
14712,
23025,
29889,
13,
13,
20769,
368,
805,
764,
278,
867,
453,
1153,
384,
411,
7984,
292,
805,
764,
29889,
4721,
354,
271,
278,
867,
453,
373,
18350,
29889,
13,
13,
29925,
631,
3277,
278,
20805,
10614,
310,
278,
1506,
1558,
1379,
7689,
17718,
937,
29892,
3244,
963,
11480,
278,
18109,
17538,
29889,
1632,
453,
29892,
10664,
29892,
363,
29871,
29906,
29900,
304,
29871,
29906,
29945,
6233,
29892,
470,
2745,
896,
526,
22843,
17354,
322,
508,
5948,
367,
9307,
1133,
411,
278,
6872,
310,
263,
15301,
889,
1607,
29892,
14712,
1432,
29871,
29945,
6233,
304,
17354,
373,
599,
11192,
29889,
13,
13,
4300,
571,
304,
263,
16330,
715,
2620,
470,
715,
1078,
29889,
360,
374,
5617,
280,
411,
278,
21676,
13848,
387,
279,
29544,
29889,
826,
3881,
278,
748,
271,
923,
968,
2181,
3774,
793,
2820,
278,
1506,
1558,
1379,
7689,
17718,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29947,
29900,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29906,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29947,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
960,
596,
4071,
2265,
1559,
2722,
1506,
1558,
1379,
7689,
17718,
373,
278,
380,
2235,
29892,
366,
508,
14383,
278,
18109,
17538,
29889,
315,
329,
4203,
1582,
1549,
1269,
7689,
449,
515,
278,
2246,
322,
1506,
1878,
278,
1766,
1099,
311,
373,
1269,
29889,
1632,
453,
408,
10624,
29892,
14712,
278,
380,
2235,
1432,
29871,
29945,
6233,
29889,
1763,
9080,
29892,
5700,
278,
867,
24455,
7689,
17718,
1283,
278,
380,
2235,
29889,
13,
13,
2277,
367,
1691,
411,
24841,
1395,
29885,
324,
532,
13,
13,
29909,
1395,
29885,
324,
532,
338,
263,
330,
2753,
728,
5491,
1754,
411,
610,
29879,
2330,
29892,
454,
3712,
503,
342,
29892,
322,
7171,
506,
29889,
910,
697,
3913,
24841,
503,
342,
29892,
4441,
567,
278,
7171,
506,
29892,
322,
12778,
394,
8315,
29879,
363,
2181,
3322,
322,
9978,
310,
24841,
304,
26371,
749,
278,
14225,
2264,
310,
278,
867,
453,
29899,
4287,
314,
295,
1891,
367,
1691,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
367,
1691,
322,
29871,
29906,
6131,
1129,
787,
1395,
29885,
324,
532,
639,
16330,
13,
13,
29949,
9258,
17182,
7984,
292,
805,
764,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
266,
25395,
470,
29871,
29896,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
29896,
282,
618,
313,
29945,
304,
29871,
29953,
18350,
29897,
367,
1691,
29892,
5700,
964,
29871,
30226,
29899,
22466,
269,
29399,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
24841,
503,
342,
13,
13,
29896,
2919,
24841,
29892,
5700,
964,
29871,
30226,
29899,
22466,
12785,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
610,
29879,
2330,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
394,
8315,
29879,
29892,
15589,
29899,
307,
28470,
13,
13,
20769,
368,
805,
764,
278,
867,
453,
1153,
384,
411,
7984,
292,
805,
764,
29889,
4721,
354,
271,
278,
867,
453,
373,
18350,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
266,
25395,
29892,
1236,
2496,
29892,
322,
15795,
29889,
12790,
368,
805,
764,
1716,
11192,
310,
278,
367,
1691,
411,
7984,
292,
805,
764,
29889,
14314,
682,
280,
278,
266,
25395,
29544,
975,
1716,
11192,
310,
278,
367,
1691,
29889,
5293,
596,
285,
292,
814,
4512,
29892,
330,
2705,
3965,
278,
29544,
577,
372,
594,
2276,
267,
304,
278,
367,
1691,
29889,
13,
13,
15156,
21861,
29879,
29892,
2058,
278,
367,
1691,
1048,
29871,
29896,
297,
305,
12435,
373,
278,
867,
453,
1153,
384,
29889,
1632,
453,
29892,
10664,
29892,
363,
29871,
29896,
29945,
6233,
29889,
9603,
975,
278,
367,
1691,
29889,
1632,
453,
29892,
10664,
29892,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
22707,
746,
9307,
1133,
411,
278,
6872,
310,
263,
889,
1607,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
9886,
2348,
1127,
10070,
29889,
13,
13,
4300,
571,
278,
367,
1691,
304,
263,
715,
2620,
29889,
7488,
411,
278,
1395,
29885,
324,
532,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29947,
29941,
13,
13,
7827,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29953,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29955,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29906,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
30226,
15774,
13,
13,
2277,
521,
1794,
29899,
1028,
7612,
282,
457,
11548,
961,
1503,
13,
13,
29956,
2817,
7560,
805,
1575,
19595,
278,
5613,
14225,
2264,
310,
278,
15774,
29889,
5556,
14803,
363,
6808,
814,
29892,
445,
282,
457,
11548,
884,
11000,
1532,
411,
867,
24455,
9427,
470,
27654,
29889,
13,
13,
29946,
26996,
29963,
4214,
29903,
891,
29871,
29906,
961,
1503,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
17354,
26438,
13,
13,
29896,
734,
294,
1129,
265,
5962,
274,
2559,
314,
265,
13,
13,
30226,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
313,
29888,
3781,
368,
867,
630,
16389,
29897,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
5962,
17184,
1960,
313,
25253,
29897,
13,
13,
29896,
18350,
282,
457,
11548,
29892,
1236,
29872,
839,
322,
1034,
287,
29892,
5700,
964,
29871,
29947,
961,
1503,
29892,
322,
282,
19667,
15589,
13,
13,
19159,
292,
805,
764,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
17354,
26438,
29892,
274,
2559,
314,
265,
29892,
18254,
29885,
387,
29892,
322,
17184,
1960,
29889,
13,
13,
6572,
354,
271,
278,
867,
453,
373,
18350,
29889,
7407,
263,
12726,
2168,
289,
5086,
9869,
470,
263,
2919,
289,
5086,
270,
728,
411,
394,
9735,
398,
1701,
309,
29889,
13,
13,
22908,
278,
282,
457,
11548,
373,
278,
1701,
309,
29889,
12790,
368,
805,
764,
278,
282,
457,
11548,
411,
7984,
292,
805,
764,
29889,
14314,
682,
280,
278,
17354,
26438,
29544,
975,
599,
11192,
310,
278,
282,
457,
11548,
29889,
5293,
596,
285,
292,
814,
4512,
29892,
330,
2705,
3965,
278,
29544,
577,
372,
594,
2276,
267,
304,
278,
282,
457,
11548,
29889,
13,
13,
22150,
278,
282,
457,
11548,
961,
1503,
3309,
3538,
577,
896,
526,
639,
14081,
16311,
304,
278,
867,
1078,
310,
278,
867,
453,
29889,
1632,
453,
363,
29871,
29947,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
1559,
314,
295,
1891,
29892,
14712,
963,
13672,
577,
896,
1016,
29915,
29873,
12138,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29906,
29929,
13,
13,
7827,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29946,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
29953,
330,
13,
13,
14676,
262,
29871,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
15774,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1152,
29703,
29892,
1784,
4071,
29883,
708,
14422,
19417,
1236,
29872,
839,
322,
1034,
287,
3353,
282,
457,
11548,
297,
278,
7738,
4004,
29889,
13,
13,
29937,
23546,
29899,
29888,
719,
292,
13,
13,
305,
8233,
521,
21475,
4497,
328,
13,
13,
11445,
1460,
7205,
1181,
397,
286,
3610,
927,
13,
13,
4776,
29899,
29885,
735,
521,
21475,
13,
13,
2083,
29885,
814,
603,
23546,
29899,
29888,
719,
13,
13,
305,
21475,
411,
9709,
29874,
7776,
17807,
322,
19408,
694,
397,
793,
13,
13,
845,
1127,
7176,
367,
1389,
411,
289,
554,
3060,
29891,
322,
1559,
307,
1372,
13,
13,
29926,
21419,
968,
23546,
29899,
29888,
719,
13,
13,
29873,
11216,
931,
282,
548,
13,
13,
572,
398,
29899,
29879,
585,
1133,
282,
548,
411,
408,
713,
18655,
1849,
13,
13,
345,
657,
13956,
285,
1255,
19408,
13,
13,
29880,
296,
2719,
411,
286,
1878,
18901,
29892,
6454,
20452,
29892,
322,
413,
744,
13,
13,
12692,
367,
550,
297,
805,
4245,
12507,
346,
13,
13,
2168,
1524,
10800,
273,
286,
1878,
18901,
322,
22623,
1236,
22437,
13,
13,
29893,
2817,
274,
2559,
314,
265,
29899,
23469,
262,
623,
793,
13,
13,
855,
381,
29899,
29888,
719,
292,
338,
263,
9045,
29891,
29892,
4996,
29892,
3438,
29899,
3200,
8802,
29892,
322,
8543,
7984,
292,
1158,
29889,
23732,
6233,
29892,
263,
18254,
768,
2738,
592,
284,
508,
367,
1925,
4208,
4866,
411,
20947,
310,
18655,
1849,
322,
263,
26823,
1316,
408,
9427,
29892,
282,
5059,
2202,
29892,
27654,
29892,
304,
21154,
29892,
470,
301,
296,
2719,
29889,
624,
381,
29899,
29888,
2722,
301,
355,
6053,
304,
3704,
901,
1135,
697,
1134,
310,
18655,
519,
297,
263,
270,
728,
29892,
1316,
408,
6991,
29885,
814,
603,
624,
381,
29899,
29943,
719,
29892,
14372,
363,
263,
12875,
310,
18254,
374,
1237,
322,
278,
15130,
304,
3160,
1422,
18655,
1849,
297,
596,
321,
1218,
3814,
29889,
887,
508,
5948,
1207,
23697,
29879,
29892,
2086,
29892,
746,
23546,
29899,
29888,
719,
292,
29889,
960,
366,
1016,
29915,
29873,
505,
2545,
617,
5079,
29892,
769,
366,
508,
788,
5777,
352,
361,
13609,
2012,
29889,
960,
366,
1016,
29915,
29873,
505,
263,
3153,
1134,
310,
286,
1878,
8345,
373,
1361,
29892,
671,
1790,
29889,
624,
381,
29899,
29888,
719,
292,
6858,
263,
9212,
310,
7375,
17182,
29892,
322,
445,
5172,
29892,
1880,
29899,
354,
271,
1158,
310,
7984,
292,
409,
1338,
297,
278,
5613,
3623,
1575,
310,
592,
1446,
322,
7205,
1181,
397,
322,
2225,
20098,
278,
18254,
374,
1237,
29892,
18459,
29892,
322,
2927,
310,
18655,
1849,
29889,
13,
13,
855,
381,
29899,
29888,
719,
292,
16688,
11314,
7823,
12875,
29892,
2086,
29889,
739,
29915,
29879,
451,
925,
363,
20021,
270,
17006,
29936,
1018,
25620,
10800,
273,
341,
1878,
18901,
322,
10914,
3938,
22437,
470,
323,
11216,
5974,
349,
548,
304,
1074,
920,
1224,
24285,
445,
1158,
508,
367,
29889,
887,
508,
1584,
7984,
15774,
297,
596,
281,
554,
29892,
1316,
408,
399,
2817,
315,
2559,
314,
265,
29899,
29934,
1759,
262,
2401,
793,
29889,
13,
13,
10401,
23906,
263,
281,
554,
29892,
1106,
363,
22004,
22973,
322,
4772,
1661,
303,
860,
24296,
886,
29892,
607,
881,
451,
367,
1304,
746,
7984,
292,
373,
1880,
12871,
29889,
10949,
773,
596,
281,
554,
29892,
366,
29915,
645,
817,
304,
376,
25682,
29908,
372,
29889,
3824,
29892,
5941,
278,
281,
554,
2768,
322,
714,
29892,
773,
263,
380,
475,
2222,
29899,
1655,
295,
885,
473,
292,
17132,
322,
20947,
310,
7375,
29892,
577,
27580,
4094,
29892,
304,
3349,
278,
3677,
381,
504,
1302,
1218,
29889,
390,
262,
344,
278,
281,
554,
1532,
322,
12871,
372,
975,
4482,
12871,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
278,
4094,
756,
3415,
26191,
630,
313,
915,
1854,
304,
9712,
309,
403,
278,
29181,
1532,
1363,
738,
9886,
1302,
1218,
1795,
20076,
285,
9351,
467,
29408,
278,
281,
554,
304,
12528,
29892,
769,
12871,
372,
975,
1880,
12871,
2745,
263,
367,
328,
310,
4094,
13700,
964,
278,
281,
554,
3415,
26191,
1078,
2629,
29871,
29896,
304,
29871,
29906,
6923,
29889,
6803,
297,
29871,
29906,
6131,
1129,
787,
1236,
273,
329,
470,
508,
2963,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
4367,
24551,
278,
12871,
304,
18350,
29889,
1763,
4340,
4259,
278,
281,
554,
29892,
7984,
29871,
30226,
18002,
269,
506,
287,
443,
412,
29872,
839,
330,
5621,
322,
697,
14928,
310,
7933,
373,
1080,
313,
29879,
506,
287,
964,
29871,
29906,
29899,
22466,
12785,
29897,
363,
29871,
29906,
29900,
6233,
29892,
470,
2745,
17354,
322,
2181,
504,
29891,
29892,
23546,
5393,
13672,
322,
773,
263,
805,
271,
2497,
304,
3965,
278,
330,
5621,
29544,
599,
975,
278,
2768,
310,
278,
281,
554,
29889,
15154,
515,
278,
12871,
29892,
2313,
20272,
278,
330,
5621,
29544,
29889,
399,
1161,
278,
281,
554,
411,
7375,
4094,
541,
694,
29559,
313,
3166,
445,
1298,
373,
29892,
366,
29915,
645,
2360,
671,
29559,
304,
471,
29882,
596,
281,
554,
467,
940,
271,
278,
281,
554,
975,
4482,
12871,
2745,
278,
4094,
3415,
26191,
1078,
29889,
1763,
5941,
278,
281,
554,
1156,
7984,
292,
29892,
671,
7375,
4094,
322,
29892,
565,
4312,
29892,
263,
1661,
370,
3417,
573,
885,
473,
292,
17132,
29889,
940,
271,
278,
5941,
287,
281,
554,
975,
4482,
12871,
2745,
6446,
15589,
29892,
304,
5557,
21580,
292,
29889,
13,
13,
5006,
29915,
29903,
379,
9806,
3446,
3235,
17067,
3210,
12916,
11144,
3148,
29965,
9818,
29979,
399,
1955,
17557,
29901,
13,
13,
29896,
29889,
349,
1525,
9606,
1299,
278,
7243,
975,
1880,
12871,
29889,
313,
1576,
7243,
338,
7375,
3307,
746,
263,
367,
328,
310,
4094,
325,
26191,
7093,
2629,
29871,
29896,
304,
29871,
29906,
6923,
310,
6958,
1846,
13,
13,
29906,
29889,
3462,
17182,
304,
278,
7375,
7243,
313,
1366,
674,
1371,
3013,
278,
17182,
515,
1560,
17223,
322,
278,
9687,
515,
12070,
292,
29897,
322,
2381,
5168,
278,
7243,
304,
367,
1854,
17182,
1302,
1446,
278,
7101,
29889,
13,
13,
29941,
29889,
624,
381,
29899,
29888,
719,
263,
456,
271,
1199,
1316,
408,
7171,
506,
322,
330,
5621,
313,
386,
968,
2348,
1127,
10070,
881,
269,
4981,
280,
408,
4720,
408,
896,
29915,
276,
2715,
467,
13,
13,
29946,
29889,
3462,
278,
26823,
297,
697,
7546,
304,
409,
279,
372,
313,
29879,
14618,
278,
26823,
338,
7984,
287,
1434,
278,
263,
456,
271,
1199,
467,
13,
13,
29945,
29889,
3462,
278,
18655,
1849,
29889,
13,
13,
29953,
29889,
9788,
29892,
27827,
738,
15617,
4841,
322,
5684,
4259,
886,
29889,
13,
13,
29955,
29889,
5806,
278,
9687,
338,
7984,
292,
29892,
367,
1854,
304,
6850,
8193,
372,
2820,
278,
7243,
21003,
29889,
13,
13,
4986,
6850,
8193,
29899,
29943,
13207,
29901,
259,
13,
1762,
9098,
7984,
2319,
12785,
310,
9687,
297,
263,
2919,
7243,
975,
1407,
1880,
12871,
1550,
21003,
322,
1506,
3873,
368,
23546,
5393,
278,
9687,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
29871,
29896,
29946,
29899,
22466,
281,
554,
470,
29871,
29896,
29906,
29899,
22466,
2071,
7324,
313,
8256,
366,
29915,
276,
7984,
292,
9687,
363,
3023,
2305,
29892,
607,
338,
278,
3619,
16330,
1353,
363,
278,
9522,
5547,
297,
445,
7984,
2909,
29892,
1438,
15786,
674,
664,
1900,
304,
4772,
11660,
8497,
278,
9687,
29936,
372,
674,
367,
22622,
304,
3013,
263,
7200,
281,
554,
470,
2071,
7324,
26018,
7375,
511,
805,
271,
15173,
29892,
27278,
13345,
787,
29892,
29181,
12237,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
7311,
23546,
29899,
29888,
719,
292,
16229,
577,
9098,
29892,
372,
29915,
29879,
1900,
304,
671,
278,
22037,
11043,
2000,
16987,
427,
2058,
29892,
607,
2794,
2534,
599,
278,
2348,
1127,
10070,
13240,
322,
17005,
1434,
366,
3380,
7984,
292,
29889,
13,
13,
30119,
17278,
297,
263,
1532,
29899,
794,
309,
630,
4038,
29889,
13,
13,
30119,
1932,
4417,
17182,
29892,
9098,
260,
2782,
278,
7243,
1250,
322,
11483,
304,
2758,
278,
17182,
304,
24296,
278,
4152,
5970,
29889,
13,
13,
30119,
960,
278,
7243,
338,
7375,
3307,
29892,
366,
29915,
645,
1074,
278,
17182,
528,
19400,
746,
366,
788,
372,
29889,
13,
13,
30119,
7370,
411,
9687,
29879,
393,
1996,
278,
27217,
7984,
292,
3064,
29892,
1316,
408,
373,
1080,
322,
1559,
307,
1372,
29892,
322,
8341,
411,
1906,
393,
817,
304,
7984,
363,
871,
263,
2846,
6233,
29889,
13,
13,
30119,
8561,
1854,
599,
278,
27654,
29892,
282,
5059,
2202,
29892,
470,
9427,
322,
18655,
1849,
526,
15589,
1434,
4417,
963,
304,
278,
281,
554,
29889,
13,
13,
30119,
3295,
7543,
599,
7962,
9950,
322,
19309,
515,
27654,
322,
282,
5059,
2202,
29889,
13,
13,
30119,
1522,
1854,
304,
11621,
363,
263,
4868,
269,
4981,
280,
10106,
278,
7984,
292,
1889,
29892,
408,
445,
6047,
674,
2649,
366,
565,
278,
7243,
338,
7375,
3307,
29889,
13,
13,
15349,
1254,
18322,
29949,
8452,
15842,
6850,
8193,
29899,
29943,
13207,
4214,
13,
13,
2008,
29874,
1181,
397,
29901,
383,
3568,
29899,
29888,
793,
17143,
9427,
1316,
408,
15234,
29892,
8870,
747,
329,
29892,
470,
2654,
5807,
23239,
29892,
408,
1532,
408,
528,
5632,
29886,
322,
23041,
8716,
417,
567,
526,
1781,
19995,
29889,
3967,
8991,
1460,
14070,
1181,
397,
341,
3610,
927,
29889,
13,
13,
29925,
5059,
2202,
29901,
8396,
6393,
29892,
19309,
2222,
521,
21475,
2078,
19416,
4808,
701,
1900,
29892,
408,
411,
8490,
29899,
29924,
735,
678,
21475,
29892,
541,
266,
1141,
29879,
508,
367,
1304,
29889,
13,
13,
6816,
271,
29901,
951,
273,
5700,
29879,
664,
1532,
29889,
3967,
1652,
804,
1886,
557,
29892,
408,
297,
1383,
1127,
7176,
1522,
1389,
411,
350,
554,
678,
12602,
322,
1704,
307,
1372,
29892,
470,
8889,
417,
262,
29892,
5962,
282,
548,
29892,
20793,
282,
548,
541,
29873,
29892,
470,
282,
548,
22707,
417,
262,
29889,
13,
13,
29963,
387,
300,
13956,
14409,
262,
29901,
323,
974,
29884,
29892,
607,
366,
29915,
645,
1284,
297,
17236,
300,
13956,
6662,
390,
625,
29892,
322,
8416,
273,
526,
5972,
18655,
13956,
3279,
1144,
15574,
1304,
297,
23546,
29899,
29888,
2722,
29889,
382,
1505,
29879,
526,
6041,
2715,
304,
270,
17006,
408,
1532,
29889,
13,
13,
29963,
387,
300,
1849,
29901,
26206,
368,
738,
18655,
519,
508,
367,
23546,
29899,
17283,
29889,
13103,
19995,
526,
2545,
617,
5079,
29892,
286,
1878,
18901,
29892,
22623,
1236,
22437,
29892,
7933,
367,
550,
29892,
1559,
307,
1372,
29892,
7776,
17807,
29892,
4094,
521,
342,
29876,
8842,
29892,
289,
314,
833,
29877,
17394,
1862,
29892,
322,
24354,
26343,
29889,
3967,
7646,
1522,
550,
297,
1706,
4245,
23863,
346,
29889,
13,
13,
305,
8233,
521,
21475,
4497,
328,
13,
13,
2277,
521,
8233,
521,
21475,
4497,
328,
13,
13,
29909,
14225,
29899,
8711,
10714,
292,
12141,
29879,
278,
3623,
4245,
521,
21475,
322,
2181,
11936,
18655,
1849,
297,
445,
23546,
29899,
17283,
4497,
328,
29889,
960,
366,
29915,
276,
2086,
9074,
14793,
304,
4480,
363,
372,
304,
521,
453,
29892,
9080,
445,
9953,
1318,
7375,
975,
1886,
2795,
17354,
19408,
29889,
13,
13,
6304,
29963,
2890,
29871,
29945,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
7375,
521,
2638,
17182,
322,
29871,
29896,
734,
294,
1129,
265,
7375,
521,
2638,
17182,
29892,
13931,
671,
13,
13,
29896,
6131,
1129,
265,
304,
28470,
3999,
420,
17182,
13,
13,
29941,
470,
29871,
29946,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
30226,
734,
294,
1129,
787,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
282,
618,
10814,
6393,
29892,
19309,
2222,
521,
21475,
2078,
19416,
29892,
599,
7962,
9950,
2313,
25600,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
30226,
29899,
22466,
13630,
267,
13,
13,
29896,
18002,
16835,
368,
269,
506,
287,
2654,
22623,
1236,
2496,
10076,
567,
13,
13,
29896,
29871,
29947,
29899,
21543,
508,
269,
506,
287,
4094,
521,
342,
29876,
8842,
29892,
7482,
1312,
322,
5700,
964,
16835,
10076,
567,
13,
13,
29953,
29871,
1309,
778,
15007,
1236,
294,
29892,
17151,
2168,
29892,
8870,
1490,
565,
2919,
13,
13,
29906,
6131,
1129,
787,
4094,
13,
13,
31690,
18002,
16835,
368,
269,
506,
287,
7933,
373,
1080,
13,
13,
29906,
6131,
1129,
787,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
6131,
1129,
265,
298,
4992,
13,
13,
29896,
6131,
1129,
265,
19408,
13848,
387,
279,
13,
13,
3868,
271,
263,
281,
554,
975,
18350,
29899,
9812,
12871,
29889,
6803,
297,
29871,
29896,
6131,
1129,
265,
521,
2638,
17182,
322,
278,
3999,
420,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
7171,
506,
322,
330,
5621,
4632,
363,
29871,
29896,
11015,
29892,
23546,
5393,
21003,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
29889,
624,
381,
297,
278,
521,
21475,
29889,
17278,
363,
29871,
29946,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
3578,
368,
3347,
9571,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
22623,
1236,
2496,
29892,
4094,
521,
342,
29876,
8842,
29892,
15007,
1236,
294,
29892,
322,
4094,
29889,
17278,
363,
29871,
29941,
6233,
29892,
470,
2745,
278,
4094,
3415,
26191,
1078,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
7933,
373,
1080,
29889,
17278,
363,
29871,
29896,
11015,
29892,
23546,
5393,
21003,
29889,
15154,
278,
281,
554,
515,
278,
12871,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
577,
29891,
12507,
346,
29892,
298,
4992,
29892,
13848,
387,
279,
29892,
322,
278,
9886,
29871,
29896,
734,
294,
1129,
265,
521,
2638,
17182,
29889,
6803,
975,
278,
521,
21475,
29544,
29892,
23546,
5393,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
472,
3203,
29871,
29906,
6199,
29892,
470,
2745,
521,
24455,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29906,
29896,
13,
13,
7827,
9950,
29871,
29929,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29947,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29955,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29941,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29947,
330,
13,
13,
14676,
262,
29871,
29906,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
29906,
30226,
20793,
27654,
13,
13,
2277,
6575,
1460,
7205,
1181,
397,
286,
3610,
927,
13,
13,
10649,
7584,
23546,
29899,
29888,
719,
292,
338,
263,
4922,
11043,
304,
1235,
278,
10849,
21054,
943,
310,
278,
6575,
29899,
29895,
790,
287,
25620,
10800,
273,
528,
457,
29889,
1816,
345,
445,
1612,
2330,
310,
14225,
8716,
417,
567,
29892,
20793,
867,
283,
546,
29892,
322,
22707,
18655,
1849,
975,
263,
6592,
310,
3353,
29899,
3874,
262,
4940,
29874,
470,
274,
681,
29883,
681,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
322,
29871,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
29892,
13931,
671,
13,
13,
29896,
2319,
503,
1682,
305,
2172,
29892,
5700,
964,
29871,
30515,
29899,
22466,
269,
29399,
13,
13,
29946,
29871,
1309,
778,
269,
506,
287,
17354,
313,
1037,
1195,
29875,
29897,
286,
1878,
18901,
13,
13,
30226,
18350,
2654,
22623,
1236,
2496,
29892,
270,
7612,
13,
13,
30226,
18350,
373,
291,
29892,
270,
7612,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
29896,
29906,
29871,
1309,
778,
867,
283,
546,
29892,
337,
2176,
728,
29892,
611,
2918,
611,
2918,
29892,
470,
4497,
3712,
977,
10376,
29892,
364,
1144,
287,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
30642,
29899,
22466,
12785,
13,
13,
29946,
29871,
1309,
778,
23041,
8716,
417,
567,
29892,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29896,
2919,
6454,
1219,
29892,
1236,
29872,
839,
322,
270,
7612,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
2362,
309,
29892,
2181,
25443,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
3868,
271,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
29871,
29896,
734,
294,
1129,
265,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
503,
1682,
305,
2172,
29892,
286,
1878,
18901,
29892,
22623,
1236,
2496,
29892,
373,
291,
29892,
322,
7171,
506,
363,
29871,
29896,
30226,
304,
29871,
29906,
30226,
6233,
29892,
470,
2745,
22707,
29899,
29883,
3780,
29886,
29892,
23546,
5393,
21003,
29889,
17934,
304,
263,
12580,
29880,
29889,
13,
13,
3868,
271,
278,
9886,
29871,
29896,
734,
294,
1129,
265,
17182,
29892,
1603,
975,
1880,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
9427,
322,
8716,
417,
567,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
330,
2705,
23546,
5393,
21003,
313,
1552,
9427,
322,
8716,
417,
567,
2113,
29915,
29873,
367,
2309,
472,
445,
1298,
467,
13,
13,
855,
381,
297,
278,
503,
1682,
305,
2172,
29544,
322,
278,
9886,
2348,
1127,
10070,
29889,
17278,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
322,
278,
8716,
417,
567,
526,
1015,
19772,
29892,
23546,
5393,
21003,
29889,
1522,
16010,
451,
304,
975,
15108,
470,
278,
8716,
417,
567,
674,
4953,
14051,
495,
29891,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29945,
29896,
13,
13,
7827,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29941,
29947,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29900,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29955,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
19696,
29899,
29885,
735,
521,
21475,
13,
13,
13555,
1766,
262,
1218,
297,
278,
11785,
21054,
943,
310,
301,
603,
29892,
521,
2638,
4764,
672,
29892,
322,
274,
9735,
29892,
3623,
4245,
521,
21475,
10907,
701,
411,
6130,
29880,
1562,
1236,
2496,
29892,
6454,
20452,
29892,
322,
923,
968,
297,
445,
4780,
270,
728,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
301,
603,
503,
342,
13,
13,
29906,
6131,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
29896,
734,
294,
1129,
265,
521,
2638,
4764,
672,
13,
13,
29896,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29896,
282,
618,
10814,
6393,
29892,
19309,
2222,
521,
21475,
2078,
19416,
29892,
599,
7962,
9950,
2313,
25600,
29892,
5700,
964,
29871,
30226,
29899,
22466,
12785,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
322,
29871,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
29892,
13931,
671,
13,
13,
29896,
2319,
2654,
373,
291,
29892,
16835,
368,
269,
506,
287,
13,
13,
30515,
18002,
3060,
2986,
6130,
29880,
1562,
1236,
2496,
313,
307,
28470,
16389,
29936,
1074,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
29896,
18002,
8870,
1490,
14954,
719,
6454,
20452,
13,
13,
30226,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
26783,
8044,
923,
968,
470,
4482,
29899,
29888,
271,
2598,
357,
1032,
5457,
923,
968,
13,
13,
797,
263,
2919,
4091,
340,
12580,
29880,
470,
263,
289,
5086,
270,
728,
29892,
377,
3873,
4208,
278,
301,
603,
503,
342,
29892,
301,
603,
3623,
625,
29892,
521,
2638,
4764,
672,
29892,
274,
9735,
29892,
15795,
29892,
322,
1236,
2496,
29889,
3462,
278,
521,
21475,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
29945,
6233,
304,
29871,
29947,
6199,
29892,
14712,
23025,
29889,
360,
6038,
278,
521,
21475,
29892,
2313,
20272,
278,
1766,
1099,
311,
29889,
4121,
372,
15589,
29889,
13,
13,
3868,
271,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
29871,
29896,
734,
294,
1129,
265,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
521,
21475,
363,
29871,
29941,
304,
29871,
29946,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29892,
23546,
5393,
21003,
29889,
17934,
304,
263,
12580,
29880,
29889,
940,
271,
278,
9886,
29871,
29896,
734,
294,
1129,
265,
17182,
29892,
1603,
975,
1880,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
373,
291,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
22707,
29899,
29883,
3780,
29886,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
6130,
29880,
1562,
29889,
17278,
363,
29871,
29896,
11015,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
521,
21475,
322,
6454,
20452,
29889,
17278,
363,
29871,
29941,
29900,
6923,
29892,
470,
2745,
278,
6454,
20452,
526,
7375,
29892,
23546,
5393,
21003,
29889,
3387,
1434,
16330,
29892,
7689,
682,
280,
411,
278,
26783,
8044,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29906,
29896,
13,
13,
7827,
9950,
29871,
29929,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29947,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29955,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29953,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29906,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
30226,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
315,
2891,
29902,
29967,
29909,
5868,
17896,
1660,
29901,
26783,
8044,
338,
263,
24777,
923,
968,
1754,
515,
21282,
29915,
29879,
470,
748,
271,
29915,
29879,
27274,
29889,
739,
1838,
29915,
29873,
286,
2152,
29892,
577,
372,
29915,
29879,
4049,
7689,
682,
839,
373,
4497,
7925,
470,
7984,
287,
270,
17006,
29889,
13,
13,
2277,
22792,
814,
603,
23546,
29899,
29888,
719,
13,
13,
4013,
9953,
1318,
338,
263,
4331,
2038,
825,
366,
29915,
29881,
1284,
373,
1556,
2125,
449,
1757,
375,
29892,
3969,
304,
278,
6124,
310,
10849,
454,
3712,
503,
342,
322,
14954,
719,
6454,
20452,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
23546,
29899,
29888,
719,
322,
29871,
30226,
18002,
19408,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
26343,
303,
1279,
322,
29871,
29896,
6131,
1129,
265,
26343,
303,
1279,
29892,
13931,
671,
13,
13,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
322,
29871,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
511,
13931,
671,
13,
13,
29896,
282,
618,
521,
21475,
10331,
414,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
29896,
30515,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
322,
29871,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
29892,
13931,
671,
13,
13,
30226,
734,
294,
1129,
265,
867,
630,
454,
3712,
503,
342,
13,
13,
30226,
18002,
443,
1111,
12504,
14426,
17354,
19408,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29906,
2723,
567,
2319,
2545,
617,
5079,
23729,
1691,
13,
13,
29896,
18002,
26438,
15101,
1236,
294,
29892,
17151,
2168,
13,
13,
29896,
18002,
14954,
719,
6454,
20452,
13,
13,
22908,
29871,
29896,
6131,
1129,
265,
26343,
303,
1279,
297,
263,
18350,
4091,
340,
12917,
270,
728,
29889,
3462,
29871,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
29892,
377,
3873,
292,
304,
23556,
345,
29889,
3462,
278,
521,
21475,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
29900,
6233,
304,
29871,
29947,
6199,
29892,
14712,
23025,
29889,
360,
6038,
278,
521,
21475,
29892,
2313,
20272,
278,
1766,
1099,
311,
29889,
4121,
372,
15589,
29889,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
377,
3873,
4208,
29871,
29896,
30515,
2723,
567,
2545,
386,
29892,
278,
454,
3712,
503,
342,
29892,
322,
278,
9886,
29871,
29896,
6131,
1129,
265,
26343,
303,
1279,
322,
29871,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
29889,
13,
13,
29925,
3445,
598,
278,
19408,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
322,
15276,
279,
457,
322,
5960,
12937,
292,
278,
9886,
29871,
29896,
18002,
2545,
386,
363,
278,
4094,
29889,
13,
13,
6816,
273,
8000,
29892,
12871,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
278,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
521,
21475,
363,
29871,
29941,
304,
29871,
29946,
6233,
373,
1269,
2625,
29892,
470,
2745,
4359,
7984,
287,
1549,
29889,
624,
381,
297,
278,
2545,
617,
5079,
29889,
17278,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
21676,
2545,
386,
29544,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29945,
6233,
29889,
624,
381,
297,
278,
1236,
294,
322,
6454,
20452,
29889,
15154,
515,
278,
12871,
29889,
2803,
2317,
363,
29871,
29941,
29900,
6923,
29889,
1816,
345,
278,
23546,
29899,
29888,
719,
975,
278,
19408,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29946,
29955,
13,
13,
7827,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29953,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29906,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
521,
21475,
411,
9709,
29874,
7776,
17807,
322,
19408,
694,
397,
793,
13,
13,
29909,
316,
781,
519,
12507,
346,
805,
7612,
411,
269,
374,
336,
5815,
322,
7901,
6302,
287,
411,
298,
4992,
1302,
1446,
263,
330,
5621,
29899,
1557,
14927,
29544,
310,
521,
21475,
29892,
19408,
694,
397,
793,
29892,
322,
10849,
18655,
1849,
297,
445,
697,
29899,
29881,
728,
592,
284,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
8132,
29965,
4741,
13,
13,
29906,
6131,
1129,
787,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
734,
294,
1129,
787,
298,
4992,
13,
13,
29896,
734,
294,
1129,
265,
8656,
19408,
13848,
387,
279,
13,
13,
30226,
734,
294,
1129,
265,
26343,
303,
1279,
13,
13,
30515,
734,
294,
1129,
265,
7375,
521,
488,
12507,
346,
313,
29879,
374,
336,
5815,
16389,
29897,
13,
13,
29946,
29871,
1309,
778,
270,
1255,
18350,
20021,
19408,
12070,
694,
397,
793,
29892,
9391,
297,
4203,
13,
13,
29896,
6131,
1129,
265,
304,
28470,
3999,
420,
17182,
13,
13,
29896,
282,
618,
10814,
6393,
19309,
2222,
521,
21475,
2078,
19416,
29892,
599,
7962,
9950,
2313,
25600,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
30226,
29899,
22466,
10076,
567,
13,
13,
29896,
30226,
6131,
1129,
787,
1375,
1133,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
18350,
2654,
22623,
1236,
2496,
29892,
3060,
2986,
13,
13,
30226,
18002,
1993,
303,
860,
29899,
2311,
1559,
5450,
10076,
567,
13,
13,
29946,
2723,
567,
16835,
368,
269,
506,
287,
9709,
29874,
7776,
17807,
13,
13,
30642,
18002,
269,
506,
287,
7933,
373,
1080,
313,
26031,
7933,
760,
871,
29897,
13,
13,
30515,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
30515,
18002,
3060,
2986,
9644,
1997,
287,
1236,
273,
8842,
29892,
15589,
29899,
307,
28470,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
12507,
346,
2348,
1127,
10070,
29889,
3789,
17786,
29889,
13,
13,
22908,
278,
694,
397,
793,
297,
263,
2919,
12580,
29880,
29889,
6803,
297,
1045,
6504,
4094,
304,
4612,
29889,
2803,
2317,
363,
29871,
29945,
304,
29871,
29955,
6233,
29892,
470,
2745,
22707,
29889,
360,
6038,
1532,
297,
263,
784,
3825,
29889,
13,
13,
6816,
273,
8000,
29892,
12871,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
278,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
521,
21475,
363,
29871,
29945,
6233,
29892,
470,
2745,
3578,
368,
3347,
9571,
29892,
23546,
5393,
13672,
29889,
17934,
304,
263,
15284,
313,
1552,
521,
21475,
2113,
29915,
29873,
367,
2309,
472,
445,
1298,
467,
13,
13,
19159,
278,
330,
5621,
4632,
363,
29871,
29941,
29900,
6923,
29892,
1603,
975,
1880,
12871,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
22623,
1236,
2496,
322,
1559,
5450,
29889,
17278,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
10029,
4964,
6419,
29892,
23546,
5393,
21003,
313,
1202,
263,
2217,
4094,
565,
278,
18655,
1849,
526,
12070,
292,
467,
624,
381,
297,
278,
7776,
17807,
29889,
17278,
363,
29871,
29896,
11015,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
7933,
373,
1080,
29892,
521,
21475,
29892,
322,
12507,
346,
29889,
17278,
363,
29871,
29896,
11015,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
322,
278,
18655,
1849,
526,
22707,
29899,
29883,
3780,
29886,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
694,
397,
793,
29889,
3387,
1434,
16330,
29892,
7689,
682,
280,
411,
278,
274,
309,
424,
307,
322,
1236,
273,
8842,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29955,
29941,
13,
13,
7827,
9950,
29871,
29896,
29896,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29896,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29953,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29906,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
390,
12107,
6850,
2965,
29968,
11698,
13668,
17101,
29901,
390,
625,
12070,
694,
397,
793,
2041,
297,
5164,
15786,
29892,
515,
16835,
12108,
293,
5481,
29899,
4561,
851,
4167,
304,
9377,
29892,
5192,
29891,
694,
397,
793,
29889,
1152,
445,
9522,
412,
29892,
1106,
363,
694,
397,
793,
393,
526,
1048,
278,
2920,
310,
805,
21705,
9890,
470,
21110,
457,
29889,
2688,
526,
3625,
297,
20021,
4266,
1017,
2791,
1691,
322,
297,
278,
20021,
263,
275,
280,
310,
777,
2428,
3502,
1691,
29889,
13,
13,
2277,
528,
1127,
7176,
367,
1389,
411,
289,
554,
3060,
29891,
322,
1559,
307,
1372,
13,
13,
4013,
338,
577,
1781,
393,
366,
1795,
864,
304,
3765,
278,
9522,
412,
322,
505,
454,
29888,
517,
874,
29889,
1152,
263,
1735,
515,
17354,
19408,
29892,
1018,
16330,
445,
9953,
1318,
975,
1790,
3353,
2646,
262,
29892,
1316,
408,
8227,
29887,
332,
470,
2215,
307,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
16947,
292,
18002,
639,
16330,
13,
13,
29941,
6131,
1129,
787,
15589,
528,
261,
719,
13,
13,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
734,
294,
1129,
787,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29906,
304,
29871,
29941,
18350,
7171,
506,
17184,
1960,
29892,
2181,
15392,
470,
1375,
1133,
13,
13,
30226,
734,
294,
1129,
265,
2654,
521,
2638,
11417,
13,
13,
29896,
282,
618,
1652,
804,
1886,
557,
29892,
599,
7962,
9950,
2313,
25600,
29892,
269,
506,
287,
4822,
278,
2646,
262,
964,
29871,
229,
136,
158,
29899,
22466,
10076,
567,
13,
13,
29896,
30226,
734,
294,
1129,
787,
508,
2963,
470,
1236,
273,
329,
17182,
322,
29871,
29896,
30226,
734,
294,
1129,
787,
508,
2963,
470,
1236,
273,
329,
17182,
313,
361,
4312,
511,
13931,
671,
13,
13,
29953,
28367,
2039,
289,
554,
3060,
29891,
29892,
16835,
368,
269,
506,
287,
13,
13,
29945,
18350,
1559,
307,
1372,
29892,
5700,
964,
1993,
303,
860,
29899,
2311,
10076,
567,
13,
13,
30226,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
367,
1389,
2545,
386,
13,
13,
29896,
6131,
1129,
265,
26343,
303,
1279,
13,
13,
29906,
6131,
1129,
787,
4094,
13,
13,
797,
263,
2919,
12917,
289,
5086,
270,
728,
29892,
23546,
4208,
278,
528,
261,
719,
29892,
577,
29891,
12507,
346,
29892,
330,
5621,
4632,
29892,
7171,
506,
29892,
322,
521,
2638,
11417,
29889,
3462,
278,
367,
1389,
29892,
14712,
304,
24296,
29889,
2803,
2317,
363,
29871,
29896,
29900,
6233,
29889,
13,
13,
29928,
6038,
278,
367,
1389,
29892,
2313,
20272,
278,
1766,
1099,
311,
29889,
4121,
372,
15589,
29889,
13,
13,
3868,
271,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
29871,
29896,
30226,
734,
294,
1129,
787,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
367,
1389,
363,
29871,
29906,
6233,
29892,
470,
2745,
925,
7984,
287,
29892,
23546,
5393,
21003,
29889,
5293,
263,
2243,
15048,
805,
6150,
29892,
6782,
278,
367,
1389,
304,
263,
15284,
29889,
13,
13,
3644,
278,
281,
554,
338,
15589,
29892,
12871,
278,
9886,
29871,
29896,
30226,
734,
294,
1129,
787,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
289,
554,
3060,
29891,
322,
1559,
307,
1372,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
367,
1389,
322,
2545,
386,
29889,
13,
13,
5531,
292,
9098,
29892,
1925,
278,
26343,
303,
1279,
297,
263,
2319,
12580,
29880,
29889,
3462,
278,
4094,
29892,
377,
3873,
292,
304,
23556,
345,
29889,
624,
381,
964,
278,
367,
1389,
29544,
29889,
17278,
363,
29871,
29896,
11015,
29892,
470,
2745,
278,
12507,
346,
12003,
575,
29892,
23546,
5393,
21003,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29945,
29953,
13,
13,
7827,
9950,
29871,
29929,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29955,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29906,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29906,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
450,
1652,
804,
1886,
557,
674,
367,
6775,
304,
22780,
565,
372,
29915,
29879,
22039,
14671,
2256,
29889,
1763,
4772,
21749,
17068,
278,
21054,
943,
29892,
266,
1450,
278,
269,
29399,
1434,
4417,
963,
304,
278,
1766,
1099,
311,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
315,
2692,
29911,
4214,
341,
14789,
1254,
2965,
29968,
29899,
14226,
6850,
3960,
7024,
29901,
319,
9619,
26496,
269,
506,
261,
338,
263,
1361,
29891,
5780,
304,
671,
746,
366,
505,
263,
3287,
310,
18655,
1849,
304,
5700,
29889,
7849,
508,
1207,
16835,
470,
12003,
269,
29399,
29892,
408,
1532,
408,
1993,
303,
860,
29899,
2311,
10076,
567,
322,
2181,
682,
280,
470,
281,
3470,
280,
5700,
29879,
29889,
13,
13,
2277,
10215,
273,
968,
23546,
29899,
29888,
719,
13,
13,
4013,
270,
728,
756,
599,
278,
21054,
943,
310,
480,
1984,
29891,
9940,
29892,
263,
10369,
270,
728,
393,
338,
5491,
7984,
287,
472,
278,
1591,
29892,
411,
599,
278,
2348,
1127,
10070,
8126,
5004,
29889,
1334,
21092,
278,
1889,
491,
23546,
29899,
29888,
719,
292,
4129,
4208,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
31690,
2723,
567,
639,
16330,
13,
13,
29955,
29871,
1309,
778,
270,
1255,
577,
2291,
313,
2423,
384,
29893,
354,
271,
29897,
694,
397,
793,
13,
13,
30226,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
367,
1389,
2545,
386,
13,
13,
30226,
18002,
15589,
528,
261,
719,
470,
10849,
24841,
3623,
625,
13,
13,
29906,
6131,
1129,
787,
3578,
17354,
26438,
13,
13,
29906,
6131,
1129,
787,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
734,
294,
1129,
787,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
304,
29871,
29896,
30226,
734,
294,
1129,
787,
7375,
521,
2638,
17182,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
282,
618,
10814,
6393,
2246,
4513,
1886,
557,
29892,
599,
7962,
9950,
2313,
25600,
29892,
282,
19667,
15589,
29892,
322,
269,
506,
287,
4822,
278,
2646,
262,
964,
10076,
567,
29871,
29906,
304,
29871,
29941,
22831,
1472,
322,
29871,
30226,
304,
29871,
29896,
297,
305,
9377,
13,
13,
29906,
2723,
567,
16835,
368,
269,
506,
287,
9709,
29874,
7776,
17807,
13,
13,
29896,
18002,
16835,
368,
269,
506,
287,
528,
29875,
277,
1296,
286,
1878,
18901,
29892,
380,
1567,
2313,
25600,
13,
13,
29896,
18002,
7936,
265,
635,
269,
506,
287,
6432,
708,
13,
13,
30226,
18002,
7936,
265,
635,
269,
506,
287,
7933,
373,
1080,
13,
13,
29896,
29871,
29947,
29899,
21543,
508,
289,
314,
833,
29877,
17394,
1862,
29892,
7482,
1312,
322,
269,
14381,
287,
13,
13,
29925,
3445,
598,
278,
577,
2291,
694,
397,
793,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
29889,
3789,
17786,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
2545,
386,
29892,
528,
261,
719,
29892,
17354,
26438,
29892,
577,
29891,
12507,
346,
29892,
330,
5621,
4632,
29892,
521,
2638,
17182,
29892,
322,
1236,
2496,
29889,
3789,
17786,
29889,
13,
13,
3868,
271,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
278,
508,
2963,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
367,
1389,
363,
29871,
29941,
304,
29871,
29946,
6233,
29892,
470,
2745,
925,
7984,
287,
29892,
23546,
5393,
21003,
29889,
5293,
263,
2243,
15048,
805,
6150,
29892,
6782,
278,
367,
1389,
304,
263,
15284,
29889,
3295,
7543,
278,
18414,
7964,
3623,
1575,
515,
278,
367,
1389,
29889,
13,
13,
19159,
278,
7776,
17807,
29892,
286,
1878,
18901,
29892,
6432,
708,
29892,
7933,
373,
1080,
29892,
322,
289,
314,
833,
29877,
17394,
1862,
363,
29871,
29941,
304,
29871,
29946,
6233,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
694,
397,
793,
29892,
367,
1389,
29892,
322,
2545,
386,
29544,
29889,
17278,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
540,
630,
1549,
29892,
23546,
5393,
13672,
29889,
1816,
345,
7389,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29953,
29955,
13,
13,
7827,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29941,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29947,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29941,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29929,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29906,
30226,
20793,
27654,
13,
13,
2277,
260,
11216,
931,
282,
548,
13,
13,
29909,
24777,
29899,
262,
1028,
2859,
270,
728,
7984,
287,
297,
263,
281,
554,
29973,
3750,
451,
29973,
450,
269,
4981,
1847,
282,
548,
322,
18655,
1849,
526,
1083,
262,
275,
1760,
310,
285,
1175,
16628,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29906,
260,
562,
359,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
521,
2638,
4764,
672,
13,
13,
29906,
734,
294,
1129,
787,
5962,
274,
9735,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29896,
282,
618,
282,
548,
22707,
417,
262,
29892,
599,
7962,
9950,
2313,
25600,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
16835,
10076,
567,
13,
13,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
29892,
29871,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
29892,
322,
29871,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
29892,
13931,
671,
13,
13,
29896,
18350,
13328,
11801,
10674,
1161,
29892,
8870,
1490,
3309,
3538,
322,
16835,
368,
269,
506,
287,
13,
13,
29896,
18002,
3060,
2986,
373,
291,
13,
13,
29906,
18350,
20367,
6391,
1236,
22437,
29892,
409,
5779,
322,
18130,
29879,
2313,
25600,
29892,
16835,
368,
269,
506,
287,
313,
4149,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
30226,
734,
294,
1129,
265,
15795,
13,
13,
29947,
29871,
29953,
29899,
22466,
26343,
16263,
21338,
13,
13,
29941,
2723,
567,
528,
1127,
7176,
364,
4125,
457,
13,
13,
30226,
18002,
9950,
29899,
9021,
269,
473,
907,
314,
313,
25253,
29897,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
23546,
4208,
278,
521,
2638,
4764,
672,
29892,
274,
9735,
29892,
322,
1236,
2496,
29889,
3462,
278,
282,
548,
29892,
23546,
5393,
304,
24296,
29889,
13,
13,
3868,
271,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
29871,
29906,
734,
294,
1129,
787,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
4203,
278,
282,
548,
363,
29871,
29906,
6233,
29892,
470,
2745,
3347,
9571,
313,
1552,
282,
548,
2113,
29915,
29873,
367,
2309,
472,
445,
1298,
511,
23546,
5393,
21003,
29889,
17934,
304,
263,
15284,
29889,
830,
11666,
278,
1889,
29889,
13,
13,
3868,
271,
278,
9886,
29871,
29906,
734,
294,
1129,
787,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
10674,
1161,
29892,
373,
291,
29892,
322,
20367,
6391,
1236,
22437,
363,
29871,
29941,
6233,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
282,
548,
29892,
738,
3623,
1575,
29892,
322,
278,
15795,
29889,
17278,
363,
29871,
29896,
11015,
29892,
470,
2745,
278,
282,
548,
338,
694,
5520,
282,
682,
297,
278,
4818,
29892,
23546,
5393,
13672,
29889,
13,
13,
29956,
2817,
278,
16263,
21338,
773,
278,
3577,
18112,
29889,
1152,
1269,
260,
11216,
29892,
1925,
29871,
229,
136,
151,
18002,
282,
548,
29544,
373,
263,
16263,
2911,
29889,
7488,
411,
278,
364,
4125,
457,
322,
269,
473,
907,
314,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29929,
29945,
13,
13,
7827,
9950,
29871,
29896,
29896,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29941,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29941,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29906,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
715,
398,
29899,
29879,
585,
1133,
282,
548,
411,
408,
713,
18655,
1849,
13,
13,
1451,
8233,
715,
398,
12507,
346,
301,
1975,
967,
12059,
368,
14225,
21054,
272,
304,
445,
270,
728,
29892,
1550,
3999,
420,
17182,
12778,
263,
18254,
1017,
21054,
272,
29889,
2973,
8348,
352,
296,
282,
548,
22707,
417,
262,
29892,
2181,
11936,
18655,
1849,
29892,
322,
20947,
310,
22707,
694,
397,
793,
29892,
445,
628,
14803,
592,
284,
508,
367,
373,
278,
1591,
297,
6233,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
23546,
29899,
29888,
719,
322,
29871,
30226,
18002,
694,
397,
793,
639,
16330,
13,
13,
29946,
29871,
1309,
778,
443,
1111,
12504,
9377,
658,
592,
262,
470,
916,
20021,
694,
397,
793,
13,
13,
30226,
304,
29871,
29896,
734,
294,
1129,
265,
304,
28470,
3999,
420,
17182,
13,
13,
29896,
6131,
1129,
265,
26343,
303,
1279,
13,
13,
30226,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
470,
4094,
13,
13,
30515,
18002,
10013,
715,
398,
12507,
346,
13,
13,
29906,
6131,
1129,
787,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
6131,
1129,
787,
8656,
19408,
13848,
387,
279,
470,
274,
1241,
13848,
387,
279,
13,
13,
29896,
6131,
1129,
265,
3578,
17354,
26438,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
282,
618,
282,
548,
22707,
417,
262,
29892,
599,
7962,
9950,
2313,
25600,
29892,
282,
19667,
15589,
29892,
322,
269,
506,
287,
964,
29871,
29906,
13105,
29871,
30515,
297,
305,
29899,
303,
374,
567,
13,
13,
29896,
29953,
29871,
1309,
778,
14671,
2256,
23546,
29899,
29888,
719,
20021,
18655,
519,
1999,
355,
13,
13,
29896,
30226,
734,
294,
1129,
787,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
2919,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
30515,
18002,
269,
14381,
287,
394,
8315,
29879,
29892,
15589,
29899,
307,
28470,
13,
13,
29925,
3445,
598,
278,
694,
397,
793,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
29889,
360,
6038,
1532,
297,
263,
784,
3825,
29889,
7106,
278,
694,
397,
793,
304,
278,
7243,
29889,
624,
381,
297,
278,
3999,
420,
17182,
29889,
3789,
17786,
29889,
13,
13,
6816,
273,
8000,
29892,
1925,
278,
26343,
303,
1279,
297,
263,
2319,
12580,
29880,
29889,
3462,
278,
2545,
386,
29892,
377,
3873,
292,
304,
23556,
345,
29889,
806,
3873,
297,
278,
715,
398,
12507,
346,
29892,
577,
29891,
12507,
346,
29892,
13848,
387,
279,
29892,
322,
17354,
26438,
29889,
3789,
17786,
29889,
13,
13,
3868,
271,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
278,
508,
2963,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
282,
548,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
694,
5520,
282,
682,
373,
278,
5377,
29892,
23546,
5393,
13672,
29889,
17934,
304,
263,
15284,
29889,
3789,
17786,
29889,
13,
13,
797,
278,
281,
554,
29892,
1603,
975,
1880,
12871,
29892,
7984,
278,
18655,
1849,
29892,
330,
5621,
4632,
29892,
322,
7171,
506,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
22707,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
282,
548,
322,
738,
18414,
7964,
3623,
1575,
29889,
17278,
363,
29871,
29896,
11015,
29889,
624,
381,
278,
715,
398,
12507,
346,
29544,
29892,
769,
23546,
372,
964,
278,
282,
548,
29544,
29889,
17278,
363,
1048,
29871,
29896,
11015,
29892,
470,
2745,
278,
12507,
346,
12003,
575,
322,
289,
431,
7586,
29892,
23546,
5393,
21003,
29889,
13,
13,
1748,
345,
278,
282,
548,
29544,
975,
278,
694,
397,
793,
29889,
14314,
682,
280,
411,
278,
394,
8315,
29879,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29947,
29955,
13,
13,
7827,
9950,
29871,
29896,
29900,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29953,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29945,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
7523,
278,
11073,
746,
366,
15649,
20021,
694,
397,
793,
29889,
3834,
505,
1407,
2217,
565,
738,
20892,
1974,
29892,
541,
4045,
505,
4359,
29871,
29945,
29900,
29900,
3533,
4481,
2232,
310,
20892,
1974,
639,
16330,
29889,
13,
13,
1254,
8193,
29899,
29943,
13207,
4214,
350,
1164,
3308,
29901,
960,
366,
29915,
276,
28967,
1250,
373,
26438,
470,
508,
29915,
29873,
1284,
715,
398,
12507,
346,
29892,
1018,
445,
2560,
23546,
29899,
29888,
719,
12507,
346,
393,
1736,
411,
8886,
738,
10296,
310,
26823,
322,
18655,
1849,
29901,
512,
263,
2319,
12580,
29880,
23546,
4208,
29871,
29906,
30226,
734,
294,
1129,
787,
8656,
19408,
13848,
387,
279,
29892,
29871,
29896,
30226,
734,
294,
1129,
787,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
511,
29871,
29896,
734,
294,
1129,
265,
1375,
1133,
7171,
506,
29892,
322,
29871,
29896,
734,
294,
1129,
265,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
29889,
13,
13,
2277,
18655,
13956,
285,
1255,
19408,
13,
13,
4013,
12461,
273,
1873,
310,
285,
1255,
19408,
4947,
263,
26823,
14505,
515,
304,
21154,
3265,
1135,
19710,
29889,
739,
3732,
263,
628,
14803,
9953,
1318,
29892,
470,
9080,
29871,
30226,
18002,
408,
263,
2625,
270,
728,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29896,
30226,
2723,
567,
443,
1111,
12504,
17354,
19408,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
1236,
273,
329,
17182,
13,
13,
29947,
29871,
1309,
778,
3578,
9226,
304,
21154,
29892,
282,
19667,
15589,
322,
2181,
25443,
13,
13,
29896,
18002,
269,
506,
287,
2826,
286,
1878,
18901,
13,
13,
29896,
18002,
15007,
1236,
294,
29892,
17151,
2168,
13,
13,
29896,
18350,
7933,
373,
291,
29892,
16835,
368,
269,
506,
287,
13,
13,
30226,
18002,
14671,
2256,
7933,
1236,
294,
29892,
266,
1450,
287,
13,
13,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
734,
294,
1129,
265,
304,
28470,
3999,
420,
17182,
13,
13,
29925,
3445,
598,
278,
19408,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
322,
15276,
279,
457,
29889,
3789,
17786,
29889,
13,
13,
3868,
271,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
278,
508,
2963,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
304,
21154,
29892,
286,
1878,
18901,
29892,
15007,
1236,
294,
29892,
322,
7933,
373,
291,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
278,
286,
1878,
18901,
526,
4964,
322,
278,
15007,
1236,
294,
322,
7933,
373,
291,
526,
10029,
281,
2782,
287,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
7933,
1236,
294,
29892,
577,
29891,
12507,
346,
29892,
322,
3999,
420,
17182,
29889,
624,
381,
297,
278,
19408,
29889,
17278,
2745,
540,
630,
1549,
29892,
23546,
5393,
21003,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29941,
29896,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29946,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29906,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29896,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29896,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
2277,
301,
296,
2719,
411,
286,
1878,
18901,
29892,
6454,
20452,
29892,
322,
413,
744,
13,
13,
29923,
279,
21155,
907,
1195,
29875,
286,
1878,
18901,
29892,
5192,
29891,
301,
296,
2719,
29892,
10849,
413,
744,
29892,
322,
3623,
4245,
6454,
20452,
1207,
263,
27654,
2222,
592,
284,
393,
29915,
29879,
1506,
25217,
411,
21054,
272,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29906,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
322,
29871,
30226,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
29892,
13931,
671,
13,
13,
29896,
18002,
270,
1255,
301,
296,
2719,
29892,
12705,
363,
25702,
322,
528,
4401,
839,
301,
296,
2719,
29892,
364,
1144,
287,
29892,
322,
7482,
1312,
13,
13,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
2319,
373,
291,
29892,
16835,
368,
269,
506,
287,
13,
13,
29947,
29871,
1309,
778,
17354,
313,
1037,
1195,
29875,
29897,
286,
1878,
18901,
29892,
16835,
368,
269,
506,
287,
13,
13,
30515,
18002,
15589,
2654,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29946,
2723,
567,
1302,
1503,
873,
3060,
2986,
413,
744,
29892,
738,
2919,
380,
1567,
322,
18130,
29879,
2313,
25600,
13,
13,
29906,
18350,
6454,
20452,
29892,
1236,
29872,
839,
322,
270,
7612,
13,
13,
29896,
734,
294,
1129,
265,
15795,
29899,
9021,
599,
29899,
15503,
4220,
4259,
292,
1999,
355,
13,
13,
30515,
18002,
269,
14381,
287,
394,
8315,
29879,
29892,
15589,
29899,
307,
28470,
13,
13,
797,
263,
18350,
12507,
346,
8357,
29892,
6963,
29871,
29906,
2723,
567,
2545,
386,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
624,
381,
297,
278,
301,
296,
2719,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29941,
29900,
6233,
29892,
470,
2745,
22707,
29889,
360,
6038,
1532,
297,
263,
2691,
29899,
4467,
29882,
269,
2418,
29889,
13,
13,
3868,
271,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
278,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
373,
291,
363,
29871,
29896,
30226,
6233,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
286,
1878,
18901,
29889,
17278,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
10029,
22843,
17354,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
19006,
29889,
17278,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
413,
744,
29889,
17278,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
281,
2782,
287,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
301,
296,
2719,
29892,
6454,
20452,
29892,
4259,
292,
1999,
355,
29892,
322,
278,
9886,
29871,
30226,
18002,
2545,
386,
29889,
17278,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
23546,
5393,
13672,
29889,
3387,
1434,
16330,
29892,
7689,
682,
280,
411,
278,
394,
8315,
29879,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29900,
29896,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29945,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29906,
330,
13,
13,
7241,
495,
29871,
29896,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29953,
330,
13,
13,
14676,
262,
29871,
29906,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29896,
30226,
20793,
27654,
13,
13,
2277,
7933,
367,
550,
297,
805,
4245,
12507,
346,
13,
13,
1349,
968,
7375,
322,
503,
14596,
7933,
367,
550,
5101,
7970,
411,
8886,
738,
23546,
29899,
17283,
270,
728,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30642,
18002,
639,
16330,
13,
13,
8132,
29965,
4741,
13,
13,
29896,
734,
294,
1129,
265,
26343,
303,
1279,
13,
13,
29941,
6131,
1129,
787,
4094,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
1236,
273,
329,
17182,
13,
13,
29896,
734,
294,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
30226,
734,
294,
1129,
265,
26438,
13,
13,
30226,
734,
294,
1129,
265,
304,
28470,
3999,
420,
17182,
13,
13,
30226,
734,
294,
1129,
265,
4796,
13848,
387,
279,
13,
13,
30226,
734,
294,
1129,
265,
15589,
528,
261,
719,
313,
25253,
29897,
13,
13,
29925,
22466,
310,
1236,
2496,
313,
10921,
16389,
29897,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
1236,
273,
329,
17182,
322,
29871,
29896,
734,
294,
1129,
265,
508,
2963,
470,
1236,
273,
329,
17182,
29892,
13931,
671,
13,
13,
29896,
29906,
29871,
1309,
778,
7933,
367,
550,
29892,
17151,
2168,
13,
13,
29906,
2319,
10849,
2654,
7375,
521,
5475,
29892,
1316,
408,
724,
661,
359,
29892,
1375,
1133,
313,
4149,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
29906,
734,
294,
1129,
787,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29906,
734,
294,
1129,
787,
1375,
1133,
7171,
506,
13,
13,
22908,
278,
26343,
303,
1279,
297,
263,
2319,
12580,
29880,
29889,
3462,
278,
4094,
29892,
23546,
5393,
304,
23556,
345,
29889,
806,
3873,
297,
278,
9886,
12507,
346,
2348,
1127,
10070,
29889,
3789,
17786,
29889,
13,
13,
3868,
271,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
29871,
29896,
734,
294,
1129,
265,
508,
2963,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
1932,
263,
281,
11936,
310,
4796,
25158,
5692,
29892,
23546,
297,
278,
7933,
367,
550,
29889,
17278,
363,
29871,
29906,
6233,
29892,
470,
2745,
4964,
6419,
29892,
23546,
5393,
21003,
29889,
5293,
263,
2243,
15048,
805,
6150,
29892,
6782,
278,
7933,
367,
550,
304,
263,
784,
3825,
29889,
13,
13,
29925,
473,
278,
9886,
29871,
29896,
734,
294,
1129,
265,
508,
2963,
17182,
964,
278,
281,
554,
29889,
624,
381,
297,
278,
521,
5475,
29892,
330,
5621,
4632,
29892,
322,
7171,
506,
29889,
17278,
363,
29871,
29896,
11015,
29892,
1603,
975,
1880,
12871,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
7933,
367,
550,
29889,
17278,
363,
29871,
29896,
11015,
29892,
23546,
5393,
21003,
29889,
8561,
263,
1532,
297,
278,
4818,
310,
278,
7933,
367,
550,
29889,
624,
381,
278,
12507,
346,
29892,
769,
1671,
372,
964,
278,
1532,
29889,
26141,
368,
23546,
278,
7933,
367,
550,
322,
12507,
346,
4208,
29889,
1932,
278,
12507,
346,
12003,
575,
29892,
3349,
515,
278,
12871,
29889,
1816,
345,
7389,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29955,
29896,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29947,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29896,
9950,
13,
13,
2277,
1612,
1524,
10800,
273,
286,
1878,
18901,
322,
22623,
1236,
22437,
13,
13,
4013,
18655,
519,
270,
728,
5680,
20947,
310,
10849,
2362,
309,
29892,
7171,
506,
29892,
322,
454,
3712,
503,
342,
29889,
887,
508,
671,
925,
697,
2927,
310,
22623,
1236,
2496,
565,
366,
29915,
29881,
763,
29892,
541,
372,
29915,
29879,
758,
698,
631,
322,
901,
21054,
272,
1319,
565,
366,
671,
3196,
11955,
29889,
1816,
345,
372,
408,
263,
2625,
270,
728,
29892,
470,
671,
372,
304,
2246,
4940,
29874,
470,
3632,
331,
1943,
282,
24990,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30642,
18002,
639,
16330,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29941,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29947,
29871,
1309,
778,
2826,
286,
1878,
18901,
29892,
16835,
368,
269,
506,
287,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
29896,
18350,
2654,
22623,
1236,
2496,
29892,
5700,
964,
16835,
10076,
567,
13,
13,
29896,
18350,
7933,
22623,
1236,
2496,
29892,
5700,
964,
16835,
10076,
567,
13,
13,
29896,
18350,
13328,
22623,
1236,
2496,
29892,
5700,
964,
16835,
10076,
567,
13,
13,
29896,
30226,
734,
294,
1129,
787,
867,
630,
454,
3712,
503,
342,
13,
13,
30226,
18002,
10849,
2362,
309,
29892,
1375,
1133,
13,
13,
15666,
2496,
304,
21779,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
3868,
271,
263,
281,
554,
975,
18350,
12871,
29889,
6803,
297,
278,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
7171,
506,
363,
29871,
29896,
11015,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
286,
1878,
18901,
322,
15795,
29889,
17278,
363,
29871,
29945,
6233,
29892,
23546,
5393,
23025,
29889,
13,
13,
797,
1037,
559,
278,
12871,
304,
1880,
29889,
624,
381,
297,
278,
22623,
1236,
22437,
29889,
17278,
363,
29871,
29955,
304,
29871,
29947,
6233,
29892,
470,
2745,
22707,
29899,
29883,
3780,
29886,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
503,
342,
29889,
17278,
363,
29871,
29896,
11015,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
2362,
309,
322,
1236,
2496,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29953,
29896,
13,
13,
7827,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29955,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29947,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
30226,
9950,
13,
13,
29893,
2817,
274,
2559,
314,
265,
29899,
23469,
262,
623,
793,
13,
13,
2277,
14294,
274,
2559,
314,
265,
29899,
23469,
262,
623,
793,
13,
13,
1576,
281,
554,
3508,
29915,
29873,
925,
363,
4048,
706,
270,
17006,
29889,
1152,
445,
14225,
23546,
29899,
17283,
6808,
814,
29892,
269,
4981,
1847,
623,
793,
526,
12420,
411,
263,
12507,
346,
393,
29915,
29879,
5227,
629,
424,
411,
274,
2559,
314,
265,
322,
18254,
29885,
387,
29889,
1816,
345,
445,
373,
967,
1914,
470,
472,
459,
263,
885,
26793,
310,
9950,
29899,
9021,
14671,
2256,
1109,
2911,
343,
468,
4227,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
3578,
470,
6501,
17354,
26438,
13,
13,
29906,
734,
294,
1129,
787,
26343,
303,
1279,
13,
13,
29896,
734,
294,
1129,
265,
5962,
274,
2559,
314,
265,
13,
13,
30515,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
313,
29888,
3781,
368,
867,
630,
16389,
29897,
13,
13,
31690,
18002,
29871,
29896,
29900,
29900,
29995,
26163,
3623,
625,
322,
29871,
229,
136,
151,
18002,
29871,
29896,
29900,
29900,
29995,
26163,
3623,
625,
29892,
13931,
671,
13,
13,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
29906,
18350,
5032,
774,
595,
29892,
9184,
19618,
29891,
29892,
470,
16108,
5556,
14803,
623,
793,
29892,
1236,
29872,
839,
565,
7429,
29892,
16835,
368,
269,
506,
287,
29892,
322,
282,
19667,
15589,
13,
13,
29906,
6131,
1129,
787,
22843,
1153,
275,
1144,
13,
13,
30515,
18002,
3060,
2986,
17042,
29876,
8842,
29892,
15589,
29899,
307,
28470,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
17354,
26438,
29892,
26343,
303,
1279,
29892,
274,
2559,
314,
265,
29892,
322,
18254,
29885,
387,
29889,
624,
381,
297,
29871,
31690,
18002,
26163,
3623,
625,
29889,
3789,
17786,
29889,
13,
13,
3868,
271,
263,
281,
554,
975,
1880,
12871,
29889,
6803,
297,
278,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
281,
554,
29889,
17278,
278,
623,
793,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
22707,
322,
3578,
368,
3347,
9571,
29892,
23546,
5393,
21003,
29889,
13,
13,
855,
381,
297,
278,
1153,
275,
1144,
322,
278,
9886,
29871,
229,
136,
151,
18002,
26163,
3623,
625,
29889,
624,
381,
297,
278,
17354,
26438,
29544,
29889,
17278,
363,
29871,
29946,
304,
29871,
29953,
6233,
29892,
470,
2745,
278,
12507,
346,
338,
12003,
6419,
29892,
23546,
5393,
21003,
29889,
3387,
1434,
16330,
29892,
7689,
682,
280,
411,
278,
17042,
29876,
8842,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29906,
13,
13,
7827,
9950,
29871,
29955,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29947,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
15774,
29892,
29871,
29896,
30226,
9950,
13,
13,
29937,
4105,
5921,
13,
13,
1028,
4245,
6635,
15161,
411,
3104,
20452,
322,
6454,
20452,
13,
13,
19284,
411,
285,
2108,
295,
29892,
6454,
20452,
29892,
322,
24841,
13,
13,
845,
5632,
29886,
322,
330,
768,
29879,
411,
1395,
575,
13,
13,
305,
21475,
411,
29871,
29946,
29900,
17184,
1960,
310,
7171,
506,
13,
13,
305,
21475,
411,
270,
1255,
715,
6762,
322,
269,
482,
13,
13,
2764,
1255,
521,
21475,
266,
1141,
29879,
13,
13,
915,
261,
29899,
2634,
3368,
367,
1389,
411,
6062,
465,
267,
13,
13,
29879,
7547,
1182,
2579,
13,
13,
273,
895,
29899,
29878,
431,
2580,
282,
548,
696,
579,
13,
13,
12257,
542,
3068,
29899,
1028,
7612,
301,
296,
2719,
322,
18655,
1849,
13,
13,
29895,
487,
273,
29899,
3293,
304,
21154,
411,
1818,
538,
1395,
575,
13,
13,
339,
1789,
29874,
411,
413,
744,
29892,
521,
860,
412,
294,
29892,
322,
285,
1187,
13,
13,
29879,
16668,
29899,
392,
29899,
29879,
473,
2654,
7776,
17807,
13,
13,
29873,
1581,
2971,
17006,
411,
454,
3712,
322,
20559,
13,
13,
387,
3174,
411,
1560,
12504,
872,
21125,
29892,
10917,
496,
29892,
322,
6454,
20452,
13,
13,
29533,
387,
661,
403,
282,
15451,
13,
13,
28183,
5921,
338,
6060,
697,
310,
278,
3203,
9985,
13698,
304,
1784,
3082,
3271,
7984,
29879,
29889,
960,
366,
6416,
964,
445,
7663,
29892,
366,
29915,
645,
4997,
2020,
366,
7359,
29915,
29873,
1898,
4105,
5921,
29548,
2748,
366,
29915,
345,
18860,
278,
628,
14803,
9687,
372,
10017,
29889,
5032,
5921,
20789,
7546,
292,
21054,
943,
297,
263,
9416,
3104,
29889,
739,
4049,
16410,
411,
263,
22778,
310,
1559,
314,
295,
1891,
27654,
470,
282,
5059,
2202,
304,
607,
902,
5824,
29892,
263,
456,
271,
1199,
29892,
322,
18655,
1849,
526,
2715,
1434,
278,
3353,
270,
728,
338,
1027,
1050,
287,
297,
263,
5227,
629,
424,
23904,
1316,
408,
19006,
29892,
367,
261,
29892,
2545,
386,
29892,
13848,
387,
279,
29892,
470,
15774,
3623,
625,
29889,
7311,
902,
5824,
322,
263,
456,
271,
1199,
526,
385,
4100,
1543,
297,
4105,
5921,
29892,
2217,
15795,
30003,
361,
738,
30003,
275,
4312,
29889,
13,
13,
2744,
1228,
14169,
310,
4105,
5921,
338,
393,
385,
4152,
592,
284,
508,
367,
7984,
287,
297,
278,
1021,
2071,
7324,
29892,
577,
366,
29915,
276,
5948,
2221,
304,
3160,
18655,
1849,
297,
596,
1667,
270,
728,
29892,
1316,
408,
411,
3879,
542,
3068,
29899,
5592,
7612,
365,
296,
2719,
322,
17236,
300,
1849,
322,
382,
1505,
29879,
411,
4116,
12504,
317,
1485,
482,
29892,
1706,
262,
496,
29892,
322,
25994,
29889,
450,
4105,
5921,
23904,
338,
4049,
1304,
304,
1207,
263,
12507,
346,
393,
26371,
2925,
278,
21054,
272,
310,
278,
270,
728,
322,
6911,
11551,
278,
18254,
374,
1237,
297,
278,
2348,
1127,
10070,
29889,
13,
13,
3644,
366,
29915,
276,
263,
7984,
1058,
1838,
29915,
29873,
864,
304,
18864,
263,
3287,
310,
931,
297,
278,
29181,
29892,
4105,
5921,
338,
385,
10839,
7984,
292,
11043,
393,
366,
29915,
645,
864,
304,
671,
1449,
322,
1449,
29889,
512,
2114,
29892,
366,
1795,
1348,
310,
263,
4105,
5921,
3104,
408,
263,
9416,
5232,
7984,
261,
1728,
263,
18665,
29889,
1126,
1568,
763,
263,
5232,
7984,
261,
29892,
278,
9687,
7984,
29879,
4482,
322,
5232,
1728,
1568,
260,
2548,
29889,
7311,
278,
270,
728,
7984,
29879,
297,
697,
2071,
7324,
29892,
5941,
786,
338,
4780,
29892,
2086,
29889,
13,
13,
28183,
5921,
1838,
29915,
29873,
1246,
363,
4922,
28750,
29892,
2845,
29889,
450,
9687,
338,
7984,
287,
330,
2705,
975,
4482,
12871,
29892,
3907,
372,
263,
18879,
4357,
1158,
29889,
13,
13,
5006,
29915,
29903,
379,
9806,
3446,
3235,
17067,
3210,
12916,
11144,
399,
1955,
17557,
29930,
29901,
13,
13,
29896,
29889,
1152,
1784,
9522,
5547,
29892,
937,
350,
1672,
16048,
278,
9687,
373,
599,
11192,
29892,
773,
263,
2319,
5253,
310,
9045,
29891,
17182,
313,
272,
7984,
292,
805,
764,
467,
1763,
437,
445,
29892,
12871,
278,
17182,
297,
278,
7243,
322,
769,
788,
278,
27654,
470,
18655,
1849,
29889,
313,
3629,
1854,
278,
9687,
338,
15589,
29936,
6467,
29892,
2730,
391,
545,
674,
4556,
372,
304,
21837,
3265,
1135,
17354,
1846,
1987,
1235,
372,
7845,
30003,
14037,
8401,
372,
30003,
29305,
278,
5970,
338,
409,
1965,
29936,
565,
366,
2507,
278,
9687,
1434,
393,
29892,
372,
674,
12070,
304,
278,
7243,
322,
278,
7101,
2113,
29915,
29873,
1559,
314,
295,
675,
29889,
9603,
304,
17354,
599,
11192,
29889,
512,
1784,
4105,
5921,
9522,
5547,
29892,
278,
27654,
338,
6206,
515,
278,
3104,
472,
445,
1298,
322,
769,
4133,
2678,
29889,
13,
13,
29906,
29889,
8084,
29892,
27827,
902,
5824,
322,
263,
456,
271,
1199,
1316,
408,
373,
291,
322,
7171,
506,
29889,
14514,
278,
902,
5824,
322,
263,
456,
271,
1199,
304,
278,
7984,
292,
931,
29936,
263,
5520,
7984,
292,
931,
6858,
16600,
12785,
577,
896,
1016,
29915,
29873,
2867,
1623,
1550,
7984,
292,
29889,
13,
13,
29941,
29889,
6850,
8193,
2672,
278,
18655,
1849,
29892,
367,
550,
29892,
322,
29914,
272,
2814,
9351,
29889,
7106,
278,
27654,
304,
278,
7243,
565,
372,
471,
6206,
8859,
29889,
13,
13,
29946,
29889,
27827,
263,
2319,
5253,
310,
23904,
29889,
313,
1576,
23904,
881,
451,
4612,
278,
27654,
29892,
9427,
29892,
470,
282,
5059,
2202,
1846,
450,
9687,
338,
330,
2705,
1027,
1050,
287,
373,
278,
380,
586,
300,
459,
470,
297,
278,
288,
854,
472,
263,
4482,
10430,
29892,
19932,
368,
10664,
29889,
13,
13,
29945,
29889,
2860,
278,
9687,
338,
7984,
287,
29892,
372,
508,
16759,
297,
278,
4105,
5921,
23904,
29889,
9038,
372,
29915,
29879,
6206,
29892,
278,
4105,
5921,
23904,
508,
367,
12212,
304,
1207,
263,
8261,
29892,
21054,
272,
1319,
12507,
346,
29889,
13,
13,
29930,
29903,
14618,
278,
1797,
310,
278,
6576,
722,
583,
13,
13,
4986,
350,
4717,
29902,
1660,
29901,
259,
13,
1762,
7984,
9687,
297,
263,
2319,
5253,
310,
23904,
373,
4482,
12871,
322,
19932,
368,
10664,
313,
265,
278,
380,
586,
300,
459,
470,
297,
278,
288,
854,
511,
4049,
3347,
1076,
372,
937,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
10173,
411,
263,
19932,
29899,
29888,
5367,
17343,
313,
14565,
408,
263,
14872,
288,
854,
470,
6483,
2071,
7324,
29897,
30003,
1552,
3104,
881,
367,
9416,
577,
408,
304,
7344,
385,
1584,
10430,
322,
2319,
3307,
304,
4808,
278,
9687,
5807,
688,
368,
29892,
411,
11192,
1880,
3307,
304,
1712,
278,
4105,
5921,
23904,
29936,
288,
854,
14563,
8328,
29936,
14426,
29899,
949,
14563,
8328,
29936,
288,
854,
22219,
29879,
322,
3104,
4808,
414,
29936,
29181,
12237,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
887,
817,
304,
505,
263,
19932,
17343,
363,
596,
3104,
304,
3013,
278,
21837,
322,
325,
481,
943,
30003,
392,
21054,
272,
30003,
5358,
304,
278,
9687,
29889,
960,
278,
3104,
17343,
3508,
29915,
29873,
5807,
688,
29892,
366,
508,
12244,
394,
9735,
398,
1701,
309,
2820,
278,
7636,
304,
409,
284,
372,
29889,
887,
508,
884,
2058,
263,
9869,
310,
7984,
292,
610,
305,
358,
29892,
263,
2217,
7200,
1135,
278,
3104,
29892,
975,
278,
2348,
1127,
10070,
29889,
5254,
1623,
2745,
372,
338,
925,
6023,
292,
278,
9687,
29892,
411,
278,
12770,
5377,
278,
3104,
29892,
769,
2246,
411,
278,
17343,
29889,
13,
13,
30119,
838,
3242,
738,
23904,
508,
367,
1304,
363,
4105,
5921,
304,
788,
967,
1914,
5412,
21054,
272,
304,
278,
270,
728,
29889,
7849,
4105,
4637,
671,
2545,
386,
470,
19006,
29892,
541,
366,
508,
884,
1018,
367,
261,
470,
274,
1241,
29892,
470,
788,
263,
8536,
1161,
310,
29871,
29896,
29900,
29900,
10151,
15774,
3623,
625,
304,
278,
3104,
29889,
512,
901,
628,
9593,
270,
17006,
29892,
4094,
338,
599,
393,
29915,
29879,
4312,
29889,
13,
13,
30119,
319,
4868,
1027,
1050,
338,
451,
2337,
4780,
304,
1072,
5987,
29892,
7148,
373,
263,
10489,
380,
586,
300,
459,
29892,
577,
1749,
9522,
5547,
1016,
29915,
29873,
2106,
472,
825,
10430,
304,
1027,
1050,
29889,
7753,
472,
278,
19604,
4444,
373,
777,
380,
586,
300,
3554,
29892,
278,
12871,
1122,
367,
2086,
17818,
344,
29892,
607,
674,
4556,
278,
23904,
304,
1045,
309,
313,
2202,
773,
263,
12138,
261,
15284,
29892,
6041,
2000,
263,
1027,
1050,
15284,
29892,
607,
6911,
2923,
1509,
278,
12871,
467,
1932,
1027,
1050,
292,
29892,
263,
289,
23232,
881,
2867,
1549,
278,
7101,
310,
278,
23904,
1432,
1473,
470,
1023,
29889,
960,
901,
289,
431,
7586,
14451,
304,
278,
7101,
29892,
769,
5224,
278,
12871,
470,
9500,
278,
3104,
304,
697,
2625,
310,
278,
12138,
261,
29889,
13,
13,
30119,
7311,
4105,
5921,
27654,
470,
282,
5059,
2202,
7984,
29879,
278,
9950,
714,
964,
278,
23904,
29892,
3380,
263,
2462,
14432,
565,
1950,
29889,
349,
3445,
598,
278,
270,
728,
29892,
769,
337,
1341,
4087,
403,
372,
975,
11147,
29889,
450,
4805,
931,
16869,
278,
21054,
943,
1999,
355,
322,
9946,
278,
521,
24455,
9950,
304,
14451,
304,
278,
2246,
322,
2898,
264,
29892,
3907,
372,
4780,
304,
3349,
29889,
13,
13,
15349,
1254,
18322,
29949,
8452,
15842,
350,
4717,
3235,
4214,
13,
13,
2008,
29874,
1181,
397,
29901,
8218,
479,
29892,
9226,
9427,
29892,
1316,
408,
8870,
747,
329,
29892,
260,
4347,
29892,
470,
4497,
3712,
29892,
664,
1532,
29889,
317,
1052,
417,
567,
322,
528,
5632,
29886,
526,
884,
5972,
19995,
322,
526,
380,
332,
4518,
3307,
304,
2317,
701,
304,
4105,
5921,
29889,
5853,
628,
9593,
977,
10376,
508,
884,
367,
4105,
3368,
29892,
408,
297,
315,
397,
411,
383,
2108,
295,
29892,
25994,
29892,
322,
26048,
470,
1706,
4245,
10459,
15161,
411,
10173,
20452,
322,
25994,
29892,
541,
278,
4105,
5921,
931,
674,
367,
20511,
304,
3013,
278,
9427,
515,
20327,
12435,
29889,
13,
13,
29925,
5059,
2202,
29901,
350,
650,
29899,
262,
12785,
664,
1900,
29892,
408,
297,
10837,
1255,
678,
21475,
498,
1141,
29879,
29892,
1363,
10814,
6393,
29892,
19309,
2222,
2078,
19416,
7984,
901,
9098,
322,
508,
15589,
714,
29889,
2398,
29892,
896,
508,
367,
4105,
3368,
8472,
29892,
408,
297,
678,
21475,
411,
29871,
29946,
29900,
27397,
1960,
310,
7455,
506,
29889,
13,
13,
6816,
271,
29901,
951,
273,
5700,
29879,
515,
278,
10150,
2301,
7799,
664,
1900,
297,
4105,
5921,
1363,
896,
526,
1880,
297,
285,
4626,
681,
26823,
29889,
3967,
278,
528,
1331,
29892,
521,
2707,
696,
19416,
29892,
322,
2246,
470,
5970,
364,
3885,
29892,
408,
297,
1522,
261,
29899,
28183,
3368,
1522,
1389,
411,
10750,
465,
267,
29889,
319,
5405,
901,
22707,
5700,
29879,
1316,
408,
8889,
417,
262,
29889,
13,
13,
29963,
387,
300,
13956,
14409,
262,
29901,
7311,
896,
6425,
11831,
21054,
943,
577,
1532,
29892,
18655,
13956,
26823,
8974,
1316,
408,
8416,
273,
29892,
1350,
412,
29882,
29892,
322,
304,
21154,
29892,
3704,
22467,
29899,
5568,
323,
974,
29884,
411,
19928,
538,
4122,
575,
29892,
526,
10839,
363,
4105,
5921,
297,
263,
21054,
272,
1319,
23904,
29889,
13,
13,
29963,
387,
300,
1849,
29901,
5032,
5921,
338,
4922,
363,
260,
820,
29892,
285,
4626,
681,
18655,
1849,
1316,
408,
1559,
307,
1372,
29892,
610,
29879,
1240,
567,
29892,
367,
1691,
29892,
6432,
708,
29892,
322,
2971,
17006,
29892,
3704,
323,
1581,
4957,
17006,
411,
8836,
265,
322,
341,
524,
29936,
541,
372,
884,
1736,
1532,
411,
19710,
24389,
29892,
454,
14541,
29892,
5777,
352,
361,
13609,
29892,
2545,
617,
5079,
29892,
1395,
575,
29892,
322,
7776,
17807,
29892,
1316,
408,
317,
16668,
29899,
392,
29899,
29903,
473,
4367,
315,
8846,
482,
29889,
22415,
1076,
278,
18655,
1849,
1559,
314,
295,
7093,
278,
29746,
1503,
322,
12778,
14225,
2264,
29892,
7984,
292,
963,
14205,
975,
4482,
12871,
14874,
963,
22707,
29892,
322,
773,
925,
263,
2319,
5253,
310,
23904,
14953,
1078,
278,
21054,
943,
29889,
13,
13,
29943,
9216,
29901,
5032,
895,
15774,
322,
9080,
372,
408,
263,
2625,
270,
728,
29892,
263,
6808,
814,
29892,
470,
408,
760,
310,
263,
4497,
328,
29889,
7197,
19995,
526,
1236,
14520,
29892,
715,
6762,
29892,
623,
793,
29892,
322,
282,
15451,
29892,
1316,
408,
14351,
387,
661,
403,
349,
15451,
29889,
13,
13,
2277,
805,
4245,
6635,
15161,
411,
3104,
20452,
322,
6454,
20452,
13,
13,
29911,
1581,
3104,
1219,
14837,
2710,
29892,
805,
4245,
521,
5475,
29892,
322,
14225,
2646,
412,
6454,
20452,
1653,
263,
4048,
706,
2967,
363,
628,
9593,
6635,
15161,
977,
10376,
29889,
1816,
345,
445,
9953,
1318,
297,
4091,
340,
22300,
12580,
3137,
577,
366,
508,
13389,
599,
278,
2545,
386,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
29896,
18002,
3104,
1219,
29544,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
322,
29871,
29896,
6131,
1129,
265,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
511,
13931,
671,
13,
13,
29896,
282,
618,
2654,
3104,
20452,
29892,
12616,
287,
13,
13,
30226,
18002,
3060,
2986,
373,
291,
13,
13,
29896,
18350,
6130,
29880,
1562,
1236,
2496,
29892,
409,
5779,
322,
18130,
29879,
2313,
25600,
29892,
3060,
2986,
313,
4149,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
30515,
734,
294,
1129,
265,
15795,
322,
29871,
30515,
734,
294,
1129,
265,
15795,
29892,
13931,
671,
13,
13,
29896,
18002,
2646,
412,
6454,
20452,
13,
13,
30226,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29946,
6635,
15161,
470,
6928,
481,
423,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
30515,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
797,
263,
2919,
29892,
9416,
2071,
7324,
29892,
12871,
29871,
29896,
6131,
1129,
265,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
3104,
20452,
29892,
373,
291,
29892,
6130,
29880,
1562,
29892,
322,
29871,
30515,
734,
294,
1129,
265,
15795,
29892,
10664,
29892,
363,
1048,
29871,
29955,
6233,
29892,
470,
2745,
278,
3104,
20452,
526,
925,
22707,
29899,
29883,
3780,
29886,
29892,
23546,
5393,
23025,
29889,
13,
13,
855,
381,
297,
278,
6454,
20452,
322,
2545,
386,
29889,
15484,
278,
9427,
297,
278,
29544,
29889,
1771,
292,
304,
263,
1045,
309,
29892,
1603,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29896,
29906,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
360,
374,
5617,
280,
411,
278,
9886,
29871,
29896,
6131,
1129,
265,
17182,
29889,
14314,
682,
280,
411,
278,
274,
309,
424,
307,
29892,
1236,
2496,
29892,
322,
278,
9886,
29871,
30515,
734,
294,
1129,
265,
15795,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29955,
29906,
13,
13,
7827,
9950,
29871,
29896,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29953,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29953,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29955,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29946,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
15234,
411,
285,
2108,
295,
29892,
6454,
20452,
29892,
322,
24841,
13,
13,
28183,
5921,
338,
263,
4922,
11043,
363,
7984,
292,
592,
11156,
9427,
763,
15234,
1363,
278,
4105,
5921,
23904,
14874,
278,
9427,
2730,
391,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
30642,
18002,
285,
2108,
295,
29544,
639,
16330,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29896,
30226,
2723,
567,
3060,
2986,
373,
291,
13,
13,
29896,
18350,
285,
2108,
295,
8227,
29890,
29892,
8870,
1490,
4891,
3538,
29892,
769,
5700,
3309,
3538,
964,
16835,
269,
29399,
13,
13,
29941,
2919,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
270,
7612,
6454,
20452,
29892,
563,
22042,
13,
13,
30515,
18002,
4094,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
24841,
503,
342,
13,
13,
30515,
18002,
10849,
24841,
3623,
625,
13,
13,
29906,
734,
294,
1129,
787,
3060,
2986,
10849,
266,
25395,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29946,
15234,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
797,
263,
2919,
29892,
9416,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
363,
1048,
29871,
29941,
6233,
29892,
470,
2745,
6763,
304,
4964,
264,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
285,
2108,
295,
29889,
17278,
363,
29871,
29896,
11015,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
7171,
506,
29889,
17278,
363,
29871,
29941,
29900,
6923,
29892,
23546,
5393,
21003,
29889,
13,
13,
855,
381,
297,
278,
6454,
20452,
411,
23904,
29892,
4094,
29892,
24841,
3623,
625,
29892,
322,
266,
25395,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29946,
304,
29871,
29945,
6233,
29892,
470,
2745,
278,
285,
2108,
295,
338,
4359,
22707,
29889,
13,
13,
855,
381,
297,
278,
24841,
503,
342,
322,
1236,
2496,
29889,
15484,
278,
9427,
297,
278,
29544,
29889,
3439,
1050,
29892,
10664,
29892,
363,
29871,
29953,
304,
29871,
29929,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29900,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29900,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29955,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29906,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
528,
5632,
29886,
322,
330,
768,
29879,
411,
1395,
575,
13,
13,
4013,
301,
14643,
1873,
310,
263,
14234,
22037,
28281,
366,
1016,
29915,
29873,
505,
304,
4105,
895,
1395,
575,
363,
263,
1472,
931,
29889,
319,
872,
329,
29948,
411,
263,
3273,
4105,
895,
14874,
963,
11785,
322,
2181,
11936,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29906,
29871,
1309,
778,
528,
5632,
29886,
29892,
29871,
229,
136,
151,
18002,
18655,
519,
29544,
29892,
322,
29871,
30226,
18002,
330,
768,
29879,
639,
16330,
13,
13,
29941,
269,
29399,
7013,
1989,
9922,
535,
29892,
3060,
2986,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29896,
30226,
2723,
567,
3060,
2986,
373,
1080,
13,
13,
29896,
30515,
2723,
567,
3060,
2986,
2654,
22623,
1236,
22437,
13,
13,
29906,
2723,
567,
3060,
2986,
5321,
538,
1395,
575,
313,
1384,
260,
820,
380,
1567,
2313,
25600,
511,
1818,
538,
1395,
575,
29892,
2507,
666,
1395,
575,
29892,
470,
24354,
413,
744,
13,
13,
29896,
6131,
1129,
265,
274,
1241,
13848,
387,
279,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
470,
18655,
519,
2545,
386,
13,
13,
30515,
18002,
15589,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29906,
734,
294,
1129,
787,
3060,
2986,
10849,
266,
25395,
13,
13,
29896,
29906,
29871,
1309,
778,
10650,
18350,
528,
5632,
29886,
313,
386,
1450,
287,
565,
14671,
2256,
511,
1236,
29872,
839,
29892,
364,
1144,
287,
29892,
322,
282,
19667,
15589,
13,
13,
29896,
734,
294,
1129,
265,
28838,
29899,
3293,
7375,
29899,
412,
2496,
12507,
346,
13,
13,
30226,
18002,
443,
1111,
12504,
4996,
29899,
15108,
292,
330,
768,
29879,
13,
13,
797,
263,
14872,
288,
854,
29892,
7984,
278,
9922,
535,
975,
18350,
12871,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
3347,
9571,
29892,
23546,
5393,
13672,
29889,
6803,
297,
278,
17182,
29889,
624,
381,
297,
278,
373,
1080,
29889,
17278,
363,
29871,
29941,
6233,
29892,
470,
2745,
278,
373,
291,
16410,
304,
4964,
264,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
22623,
1236,
22437,
29889,
17278,
363,
29871,
29896,
11015,
29892,
470,
2745,
10029,
4964,
6419,
29892,
23546,
5393,
23025,
29889,
13,
13,
855,
381,
297,
278,
1395,
575,
29889,
17278,
363,
29871,
29906,
6233,
29892,
470,
2745,
11785,
7933,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
13848,
387,
279,
29889,
1771,
292,
304,
263,
1045,
309,
29889,
624,
381,
297,
278,
2545,
386,
29892,
19006,
29892,
322,
266,
25395,
29889,
7106,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29955,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
278,
1395,
575,
526,
22707,
29899,
29883,
3780,
29886,
29889,
3462,
278,
528,
5632,
29886,
29889,
17278,
29892,
10664,
29892,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
282,
682,
373,
278,
5377,
29889,
624,
381,
297,
278,
7375,
29899,
412,
2496,
12507,
346,
29889,
25065,
29892,
19012,
278,
330,
768,
29879,
773,
278,
3577,
18112,
29889,
24674,
265,
964,
4091,
340,
16330,
12580,
3137,
29889,
7488,
411,
278,
528,
5632,
29886,
29544,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29941,
29896,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
29896,
29945,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29946,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29953,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29896,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29906,
20793,
27654,
13,
13,
2277,
521,
21475,
411,
29871,
29946,
29900,
17184,
1960,
310,
7171,
506,
13,
13,
3644,
366,
29915,
276,
15041,
1048,
599,
393,
7171,
506,
29892,
1016,
29915,
29873,
367,
29991,
1094,
278,
521,
21475,
4105,
4637,
297,
278,
288,
854,
29892,
577,
947,
278,
7171,
506,
29892,
6820,
372,
263,
14225,
21054,
272,
322,
4964,
18459,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
639,
16330,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29953,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
13,
13,
29946,
29900,
18350,
7171,
506,
17184,
1960,
313,
3166,
29871,
29941,
304,
29871,
29946,
15883,
29897,
13,
13,
30226,
18002,
15589,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29896,
30226,
734,
294,
1129,
787,
10849,
266,
25395,
470,
29871,
30226,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
31690,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
29892,
565,
4312,
29892,
322,
29871,
30515,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
470,
4094,
29892,
13931,
671,
13,
13,
29906,
6131,
1129,
787,
4796,
3353,
29899,
29893,
354,
271,
1652,
473,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29906,
29945,
30073,
29943,
29889,
512,
263,
14872,
288,
854,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
521,
21475,
363,
29871,
29906,
6233,
373,
1269,
2625,
29892,
470,
2745,
3347,
9571,
29889,
3462,
278,
7171,
506,
29889,
17278,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
3578,
368,
3347,
9571,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
19006,
322,
266,
25395,
29889,
1771,
292,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
15154,
515,
278,
12871,
29889,
13,
13,
29933,
1296,
29892,
10664,
29892,
363,
29871,
29906,
29945,
304,
29871,
29941,
29900,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
17934,
278,
521,
21475,
322,
7171,
506,
304,
263,
715,
2620,
29889,
26428,
304,
3013,
14294,
29889,
6803,
278,
7984,
292,
23904,
964,
263,
7540,
3864,
18002,
29889,
3462,
3307,
310,
278,
29871,
31690,
18002,
2545,
386,
304,
5645,
29871,
29896,
18002,
29889,
7106,
278,
23904,
304,
278,
3104,
29889,
1771,
292,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
4367,
24551,
278,
12871,
304,
18350,
29889,
12065,
278,
1652,
473,
297,
263,
12580,
29880,
29889,
3462,
278,
9886,
29871,
30515,
18002,
2545,
386,
29892,
23546,
5393,
304,
23556,
345,
29889,
624,
381,
964,
278,
7984,
292,
23904,
29889,
17278,
363,
29871,
29946,
304,
29871,
29945,
6233,
29892,
470,
2745,
12003,
6419,
29892,
23546,
5393,
21003,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29953,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29946,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29947,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29906,
29953,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
910,
9522,
412,
3913,
263,
3287,
310,
7171,
506,
29892,
577,
1106,
363,
22637,
310,
3353,
1236,
29872,
839,
7171,
506,
297,
278,
7738,
4004,
310,
596,
4071,
29883,
708,
3787,
304,
4078,
7535,
931,
322,
7225,
29889,
13,
13,
2277,
521,
21475,
411,
270,
1255,
715,
6762,
322,
269,
482,
13,
13,
29909,
13182,
310,
14225,
2264,
515,
270,
1255,
15774,
6411,
2925,
278,
18806,
310,
360,
823,
265,
1818,
538,
322,
7248,
2586,
725,
404,
310,
269,
482,
297,
445,
3578,
368,
4259,
287,
270,
728,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
322,
29871,
30515,
18002,
18655,
1849,
322,
15774,
639,
16330,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
322,
29871,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
29892,
13931,
671,
13,
13,
29946,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
13,
13,
29896,
18350,
373,
291,
29892,
16835,
368,
269,
506,
287,
13,
13,
29896,
2919,
1559,
5450,
29892,
16835,
368,
269,
506,
287,
13,
13,
30226,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29946,
18350,
270,
1255,
715,
6762,
29892,
12616,
287,
13,
13,
29896,
6131,
1129,
265,
1302,
7989,
29899,
3874,
262,
360,
823,
265,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
14051,
2580,
269,
482,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
797,
263,
2919,
29892,
9416,
29892,
1661,
303,
860,
2071,
7324,
29892,
12871,
29871,
29896,
734,
294,
1129,
265,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
521,
21475,
363,
29871,
29906,
6233,
373,
1269,
2625,
29892,
470,
2745,
3347,
9571,
29889,
17934,
304,
263,
2919,
15284,
29889,
13,
13,
797,
278,
1021,
2071,
7324,
29892,
1603,
975,
18350,
29899,
9812,
12871,
29892,
12871,
278,
9886,
29871,
29906,
734,
294,
1129,
787,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
322,
1559,
5450,
363,
1048,
29871,
29941,
6233,
29892,
23546,
5393,
13672,
29889,
13,
13,
855,
381,
297,
278,
9886,
2348,
1127,
10070,
29889,
1771,
292,
304,
263,
1045,
309,
29889,
3462,
278,
521,
21475,
29892,
14712,
304,
24296,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29896,
29900,
304,
29871,
29896,
29906,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
17934,
278,
521,
21475,
304,
263,
715,
2620,
29889,
13,
13,
797,
1037,
559,
278,
12871,
304,
18350,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
1952,
309,
363,
29871,
29906,
6233,
29892,
470,
2745,
278,
373,
291,
29544,
338,
10029,
12003,
6419,
29892,
23546,
5393,
23025,
29889,
24674,
265,
975,
278,
521,
21475,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29955,
29929,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29955,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29896,
330,
13,
13,
7241,
495,
29871,
29953,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
29941,
330,
13,
13,
14676,
262,
29871,
29906,
29953,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
15774,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
3151,
1255,
521,
21475,
266,
1141,
29879,
13,
13,
8942,
1050,
292,
521,
21475,
266,
1141,
29879,
297,
263,
805,
7612,
6454,
1219,
29899,
1111,
535,
329,
12507,
346,
17498,
429,
13574,
21054,
272,
411,
2217,
7225,
29889,
1816,
345,
278,
3151,
719,
411,
17354,
2362,
29885,
2219,
19408,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
266,
1141,
322,
29871,
29896,
18002,
18655,
1849,
639,
16330,
13,
13,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
13,
13,
29896,
2919,
373,
291,
29892,
8870,
1490,
29892,
769,
5700,
964,
29871,
30642,
29899,
22466,
14837,
2710,
13,
13,
29896,
6131,
1129,
265,
1375,
1133,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29906,
30226,
734,
294,
1129,
787,
3151,
719,
4764,
672,
13,
13,
29941,
2919,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
30226,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
270,
7612,
6454,
20452,
29892,
563,
22042,
13,
13,
30226,
18002,
301,
568,
1302,
535,
329,
27274,
13,
13,
30226,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29946,
289,
650,
29899,
262,
29892,
19309,
2222,
521,
21475,
266,
1141,
29879,
313,
12717,
29871,
29945,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
13,
13,
29906,
18350,
14225,
3104,
20452,
29892,
1236,
29872,
839,
322,
13630,
287,
13,
13,
29906,
2723,
567,
3060,
2986,
17251,
17729,
521,
538,
29892,
260,
820,
380,
1567,
2313,
25600,
13,
13,
31690,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
797,
263,
14872,
288,
854,
29892,
12871,
278,
17182,
975,
18350,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
363,
29871,
29941,
6233,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
330,
5621,
4632,
29892,
3151,
719,
4764,
672,
29892,
7171,
506,
29892,
322,
274,
9735,
29889,
17278,
363,
29871,
29941,
29900,
6923,
29892,
23546,
5393,
21003,
29889,
13,
13,
855,
381,
297,
278,
6454,
20452,
411,
23904,
29892,
1302,
535,
329,
27274,
29892,
322,
2545,
386,
29889,
1771,
292,
304,
263,
1045,
309,
29889,
3462,
278,
521,
21475,
322,
14225,
3104,
20452,
29889,
7106,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29896,
29945,
6233,
29889,
9603,
975,
278,
521,
21475,
29889,
624,
381,
297,
278,
521,
538,
29889,
17278,
29892,
10664,
29892,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
4300,
571,
278,
521,
21475,
322,
18655,
1849,
304,
263,
16330,
12580,
29880,
29889,
1771,
292,
278,
12507,
346,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
1952,
309,
363,
29871,
29941,
304,
29871,
29945,
6233,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
274,
309,
424,
307,
29889,
6803,
278,
12507,
346,
975,
599,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29946,
29953,
13,
13,
7827,
9950,
29871,
29896,
29906,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29947,
29953,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29929,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29900,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
2277,
367,
261,
29899,
2634,
3368,
367,
1389,
411,
6062,
465,
267,
13,
13,
29911,
1581,
367,
1389,
338,
7984,
287,
376,
677,
322,
5232,
29908,
297,
263,
2343,
29891,
10296,
310,
367,
261,
29892,
6062,
465,
267,
29892,
6454,
20452,
29892,
322,
22623,
1236,
2496,
29892,
411,
925,
263,
13182,
310,
503,
8377,
29891,
1818,
538,
29889,
3967,
372,
975,
3353,
29899,
3874,
262,
29892,
694,
29899,
29891,
28387,
694,
397,
793,
470,
4482,
29899,
29888,
271,
286,
25936,
3104,
20452,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
30642,
18002,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
30226,
24261,
10814,
6393,
5970,
4513,
1886,
557,
29892,
8870,
1490,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
1886,
8734,
6454,
20452,
29892,
563,
22042,
13,
13,
29953,
29871,
1309,
778,
3578,
367,
261,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29906,
18350,
7933,
22623,
1236,
22437,
29892,
3060,
2986,
13,
13,
29896,
30226,
2723,
567,
3060,
2986,
373,
1080,
13,
13,
29906,
734,
294,
1129,
787,
270,
1255,
2362,
309,
29892,
2181,
25443,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29906,
6131,
1129,
787,
6501,
6062,
465,
267,
13,
13,
29896,
6131,
1129,
265,
13328,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
30226,
734,
294,
1129,
265,
15795,
13,
13,
797,
263,
14872,
288,
854,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
4203,
278,
367,
1389,
363,
29871,
29906,
6233,
373,
1269,
2625,
29892,
470,
2745,
3347,
9571,
29889,
17934,
278,
367,
1389,
304,
263,
15284,
29889,
830,
11666,
411,
278,
9886,
367,
1389,
29889,
13,
13,
855,
381,
297,
278,
9886,
2348,
1127,
10070,
5174,
278,
15795,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
7106,
278,
367,
1389,
322,
738,
18414,
7964,
3623,
1575,
304,
278,
14872,
288,
854,
29892,
24795,
1623,
3578,
368,
577,
393,
278,
367,
1389,
338,
22039,
10664,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29906,
304,
29871,
29906,
30226,
6199,
29892,
470,
2745,
278,
367,
1389,
338,
1407,
22707,
322,
20327,
12435,
746,
9307,
1133,
411,
263,
27350,
29889,
5293,
1023,
363,
2039,
29892,
528,
1127,
278,
367,
1389,
29889,
624,
381,
297,
278,
15795,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29946,
29906,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29896,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29955,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29945,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29929,
330,
13,
13,
14676,
262,
29871,
29906,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
269,
7547,
1182,
2579,
13,
13,
3629,
1854,
304,
3814,
14432,
363,
445,
5972,
14225,
29899,
392,
29899,
29879,
473,
5332,
270,
728,
393,
674,
8343,
263,
19174,
470,
3867,
20947,
310,
454,
29888,
517,
874,
29892,
1363,
278,
367,
1389,
1766,
262,
1078,
363,
1023,
304,
2211,
3841,
1434,
7984,
292,
29889,
1334,
29915,
345,
2715,
696,
28470,
2654,
22623,
1236,
22437,
363,
2927,
322,
263,
5400,
3252,
391,
29889,
13,
13,
6304,
29963,
2890,
29871,
29896,
29906,
891,
29871,
29941,
29871,
1309,
778,
367,
1389,
639,
16330,
13,
13,
29896,
30226,
2723,
567,
15589,
2654,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29896,
30226,
2723,
567,
2654,
19006,
13848,
387,
279,
13,
13,
29896,
18002,
4094,
13,
13,
29906,
18350,
1559,
307,
1372,
29892,
269,
506,
287,
13,
13,
29896,
18350,
373,
291,
29892,
269,
506,
287,
13,
13,
29953,
3353,
17184,
1960,
13,
13,
29946,
4628,
1236,
2496,
29883,
1398,
29879,
29892,
2181,
15392,
773,
263,
5758,
279,
322,
282,
342,
280,
13,
13,
29906,
18350,
270,
1255,
23041,
11308,
13,
13,
30226,
734,
294,
1129,
265,
1559,
21694,
409,
5779,
13,
13,
30515,
734,
294,
1129,
265,
5962,
1034,
29875,
3825,
13,
13,
29896,
29871,
29941,
29899,
29886,
618,
10814,
6393,
367,
1389,
364,
3427,
696,
579,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
19159,
292,
805,
764,
13,
13,
30226,
18002,
2181,
15392,
4482,
29899,
29888,
271,
12773,
414,
29876,
2547,
313,
12717,
29871,
29955,
29897,
13,
13,
29955,
29871,
1309,
778,
3060,
2986,
696,
28470,
2654,
22623,
1236,
22437,
29892,
7482,
1312,
565,
18046,
839,
13,
13,
797,
263,
18350,
12507,
346,
8357,
29892,
23546,
4208,
278,
19006,
29892,
13848,
387,
279,
29892,
4094,
29892,
1559,
307,
1372,
29892,
373,
291,
29892,
17184,
1960,
29892,
1236,
2496,
29883,
1398,
29879,
29892,
23041,
11308,
29892,
1559,
21694,
409,
5779,
29892,
322,
1034,
29875,
3825,
29889,
1771,
292,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29945,
6233,
29889,
15154,
515,
278,
12871,
29889,
2803,
2317,
2745,
12528,
29889,
13,
13,
15156,
263,
27350,
29892,
9307,
346,
278,
367,
1389,
599,
975,
29889,
17934,
304,
263,
2919,
12580,
29880,
470,
289,
5086,
270,
728,
29889,
13,
13,
29925,
473,
278,
1766,
1099,
311,
975,
278,
367,
1389,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
1023,
304,
2211,
3841,
29892,
14712,
23025,
29889,
13,
13,
29928,
6038,
278,
367,
1389,
29892,
620,
29530,
278,
1766,
1099,
311,
29889,
4121,
278,
367,
1389,
15589,
411,
5650,
304,
29893,
1379,
29889,
13,
13,
20769,
368,
805,
764,
263,
14872,
288,
854,
411,
7984,
292,
805,
764,
29889,
940,
271,
975,
18350,
29899,
9812,
12871,
29889,
17278,
278,
367,
1389,
363,
29871,
29896,
29900,
6233,
29892,
14712,
304,
17354,
372,
373,
599,
11192,
29889,
6803,
297,
278,
1766,
1099,
311,
29889,
1771,
292,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
1952,
309,
363,
29871,
29945,
6233,
313,
1366,
2731,
307,
952,
10311,
1319,
289,
5761,
423,
467,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29906,
6199,
29892,
470,
2745,
278,
367,
1389,
338,
22707,
29889,
17934,
278,
367,
1389,
304,
263,
28967,
7613,
29889,
2803,
2317,
363,
29871,
29896,
29900,
6233,
1434,
269,
506,
292,
29889,
13,
13,
6816,
273,
8000,
29892,
5312,
262,
278,
7984,
292,
23904,
1549,
263,
2691,
29899,
4467,
29882,
269,
2418,
470,
784,
3825,
7180,
975,
263,
12580,
29880,
29889,
3295,
7543,
278,
899,
4841,
29889,
4971,
326,
1283,
278,
9950,
322,
736,
278,
23904,
304,
278,
14872,
288,
854,
29889,
624,
381,
297,
278,
12773,
414,
29876,
2547,
322,
696,
28470,
1236,
22437,
29889,
17278,
975,
18350,
12871,
363,
29871,
29896,
29900,
6233,
29892,
470,
2745,
289,
431,
29890,
368,
29892,
23546,
5393,
13672,
29889,
1816,
345,
411,
278,
367,
1389,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29953,
29946,
13,
13,
7827,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29947,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
29953,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
2277,
385,
895,
29899,
29878,
431,
2580,
282,
548,
696,
579,
13,
13,
28183,
5921,
16869,
278,
282,
548,
7984,
304,
22707,
29892,
3623,
4245,
639,
20309,
322,
6425,
11831,
599,
278,
21054,
943,
515,
278,
14051,
322,
278,
7984,
292,
23904,
29889,
317,
16668,
322,
263,
456,
2454,
385,
895,
16717,
29892,
607,
338,
1304,
297,
278,
14051,
29892,
338,
263,
4509,
310,
278,
610,
29879,
2330,
3942,
393,
8128,
278,
758,
24130,
424,
21054,
272,
297,
4628,
12736,
368,
367,
550,
29889,
11647,
297,
7513,
4049,
923,
29893,
373,
278,
409,
5779,
1156,
263,
592,
284,
304,
16226,
1009,
4697,
602,
322,
7901,
6302,
1009,
16172,
29889,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
29871,
29941,
29871,
1309,
778,
282,
548,
639,
16330,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
385,
895,
409,
5779,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29896,
29871,
29906,
29899,
29886,
618,
10814,
6393,
282,
548,
658,
262,
696,
579,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
30642,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
30226,
18002,
15589,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29896,
18350,
373,
291,
29892,
3060,
2986,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
6131,
1129,
265,
270,
1255,
610,
29879,
2330,
29892,
2181,
25443,
13,
13,
30515,
18002,
9950,
29899,
9021,
269,
473,
907,
314,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
266,
25395,
29892,
470,
387,
1562,
29892,
385,
895,
409,
5779,
29892,
322,
1236,
2496,
29889,
14314,
682,
280,
599,
975,
278,
282,
548,
29889,
5293,
596,
285,
292,
814,
4512,
29892,
330,
2705,
3965,
278,
29544,
577,
372,
594,
2276,
267,
304,
278,
282,
548,
29889,
13,
13,
797,
263,
14872,
288,
854,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
282,
548,
363,
29871,
29941,
29900,
6233,
29892,
14712,
304,
17354,
373,
599,
11192,
29889,
17934,
304,
263,
15284,
29889,
13,
13,
855,
381,
278,
2545,
386,
322,
19006,
964,
278,
14872,
288,
854,
29892,
885,
2390,
292,
304,
766,
29880,
17979,
738,
3347,
9571,
9978,
29889,
624,
381,
278,
373,
291,
29892,
7171,
506,
29892,
322,
610,
29879,
2330,
964,
278,
2545,
386,
29544,
29889,
15484,
278,
282,
548,
1250,
297,
278,
3104,
29889,
1771,
292,
278,
2545,
386,
29544,
304,
263,
1045,
309,
29892,
1603,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
304,
4482,
29889,
17278,
29892,
10664,
29892,
363,
29871,
29906,
6199,
29892,
470,
2745,
278,
282,
548,
338,
22707,
29889,
13,
13,
4300,
571,
278,
282,
548,
304,
263,
28967,
7613,
29889,
2803,
2317,
363,
29871,
29896,
29945,
304,
29871,
29906,
29900,
6233,
1434,
269,
506,
292,
29889,
13,
13,
6816,
273,
8000,
29892,
7910,
278,
12871,
304,
18350,
1880,
322,
6963,
278,
12507,
346,
304,
263,
1045,
309,
29889,
1952,
309,
2745,
12212,
491,
1048,
4203,
29889,
4367,
24551,
278,
12871,
304,
4482,
322,
1235,
278,
12507,
346,
12528,
10029,
29889,
24674,
265,
777,
310,
278,
12507,
346,
964,
278,
269,
473,
907,
314,
313,
1366,
26830,
3151,
29881,
1847,
511,
769,
23546,
278,
269,
473,
907,
314,
29544,
964,
278,
12507,
346,
29889,
17278,
363,
29871,
29896,
11015,
29892,
23546,
5393,
21003,
29889,
24674,
265,
975,
278,
269,
506,
287,
282,
548,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29929,
29946,
13,
13,
7827,
9950,
29871,
29929,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29953,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29953,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
2277,
3036,
542,
3068,
29899,
1028,
7612,
301,
296,
2719,
322,
18655,
1849,
13,
13,
4013,
5192,
29891,
18655,
13956,
1886,
29893,
338,
1854,
304,
15523,
29892,
411,
592,
11156,
19710,
24389,
29892,
14225,
22623,
1236,
2496,
29892,
22707,
7776,
17807,
29892,
322,
715,
3427,
301,
296,
2719,
29889,
450,
14294,
1999,
355,
310,
805,
1575,
3732,
372,
4922,
363,
263,
521,
9403,
11005,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29896,
18350,
373,
291,
29892,
3060,
2986,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
2319,
19710,
24389,
29892,
270,
7612,
13,
13,
30226,
2319,
2654,
7776,
17807,
29892,
16835,
368,
269,
506,
287,
13,
13,
29896,
18350,
2654,
22623,
1236,
2496,
29892,
3060,
2986,
13,
13,
29896,
18002,
270,
1255,
301,
296,
2719,
29892,
12705,
363,
25702,
322,
528,
4401,
839,
301,
296,
2719,
29892,
364,
1144,
287,
29892,
322,
7482,
1312,
13,
13,
29896,
734,
294,
1129,
265,
2181,
15392,
1034,
29875,
3825,
409,
5779,
313,
272,
5962,
1034,
29875,
3825,
29897,
13,
13,
29896,
734,
294,
1129,
265,
2181,
15392,
274,
9735,
409,
5779,
313,
272,
5962,
274,
9735,
29897,
13,
13,
30226,
734,
294,
1129,
265,
2181,
15392,
385,
895,
409,
5779,
13,
13,
29946,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
13,
13,
30226,
18002,
10849,
274,
309,
424,
307,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
29896,
2319,
454,
3712,
29892,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
797,
263,
2919,
29892,
9416,
12507,
346,
8357,
470,
14872,
288,
854,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
363,
1048,
29871,
29941,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
7171,
506,
29889,
17278,
363,
29871,
29941,
29900,
6923,
29892,
23546,
5393,
23025,
29889,
13,
13,
855,
381,
297,
278,
19710,
24389,
29892,
7776,
17807,
29892,
322,
22623,
1236,
2496,
29889,
17278,
363,
29871,
29945,
304,
29871,
29953,
6233,
29892,
470,
2745,
278,
19710,
24389,
338,
3578,
368,
22843,
17354,
322,
278,
7776,
17807,
322,
22623,
1236,
2496,
526,
22707,
29892,
23546,
5393,
13672,
29889,
13,
13,
855,
381,
297,
278,
301,
296,
2719,
29892,
1034,
29875,
3825,
409,
5779,
29892,
274,
9735,
409,
5779,
29892,
322,
385,
895,
409,
5779,
29889,
6803,
297,
278,
2545,
386,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29906,
29945,
304,
29871,
29941,
29900,
6233,
29892,
470,
2745,
278,
301,
296,
2719,
322,
18655,
1849,
526,
22707,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
274,
309,
424,
307,
29889,
17278,
363,
29871,
29941,
6233,
29892,
23546,
5393,
23025,
29889,
1816,
345,
411,
278,
454,
3712,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29953,
29946,
13,
13,
7827,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29953,
330,
13,
13,
7241,
495,
29871,
29896,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29906,
330,
13,
13,
14676,
262,
29871,
29896,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29941,
18655,
519,
29892,
29871,
29896,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
15600,
3308,
29950,
4214,
317,
2227,
27266,
29901,
6781,
21616,
596,
1914,
805,
1575,
322,
409,
5779,
12778,
901,
21054,
272,
1135,
773,
278,
758,
2057,
2924,
29889,
450,
1900,
5780,
363,
445,
338,
263,
5758,
279,
322,
282,
342,
280,
29892,
541,
565,
366,
1016,
29915,
29873,
505,
697,
29892,
366,
508,
2181,
1878,
278,
409,
5779,
1546,
1023,
13345,
787,
29889,
20360,
29892,
9677,
963,
297,
263,
2323,
7546,
373,
263,
28967,
7613,
322,
3965,
963,
411,
278,
2625,
310,
263,
14547,
29915,
29879,
889,
1607,
12995,
311,
29892,
470,
9679,
975,
963,
411,
263,
27777,
12534,
29889,
13,
13,
2277,
413,
487,
273,
29899,
3293,
304,
21154,
411,
1818,
538,
1395,
575,
13,
13,
4002,
29886,
568,
967,
429,
13574,
21054,
943,
29892,
445,
9953,
1318,
338,
4780,
304,
19012,
322,
278,
2348,
1127,
10070,
526,
3625,
297,
1556,
4071,
29883,
708,
14422,
29889,
323,
974,
29884,
1232,
267,
967,
18742,
2264,
746,
1027,
1050,
287,
411,
20021,
4259,
886,
29892,
15301,
1146,
10344,
2971,
728,
29892,
322,
1236,
407,
708,
1818,
538,
1395,
575,
29889,
1816,
345,
372,
373,
967,
1914,
470,
975,
17354,
19408,
304,
577,
557,
701,
278,
2545,
386,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
304,
21154,
322,
29871,
30226,
18002,
1395,
575,
29544,
639,
16330,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
13,
13,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
6131,
1129,
265,
288,
858,
261,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
6131,
1129,
265,
3578,
17354,
26438,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
734,
294,
1129,
265,
1375,
1133,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
734,
294,
1129,
265,
304,
28470,
3999,
420,
17182,
13,
13,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
29947,
2723,
567,
1302,
1503,
873,
3060,
2986,
1818,
538,
1395,
575,
29892,
380,
1567,
322,
18130,
29879,
2313,
25600,
13,
13,
29947,
18350,
7933,
373,
1080,
29892,
16835,
368,
269,
506,
287,
13,
13,
29947,
29871,
1309,
778,
1146,
10344,
2971,
728,
29892,
1236,
29872,
839,
322,
5700,
964,
29871,
30515,
29899,
22466,
269,
29399,
313,
12717,
29871,
29896,
2319,
2971,
728,
29897,
13,
13,
29896,
29906,
29871,
1309,
778,
3578,
4805,
29899,
29888,
3568,
304,
21154,
29892,
7482,
1312,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
29896,
29899,
22466,
269,
29399,
13,
13,
29906,
734,
294,
1129,
787,
3999,
420,
409,
5779,
29892,
15589,
29899,
307,
28470,
313,
25253,
29897,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
2545,
386,
29892,
577,
29891,
12507,
346,
29892,
288,
858,
261,
12507,
346,
29892,
17354,
26438,
29892,
7171,
506,
29892,
330,
5621,
4632,
29892,
322,
3999,
420,
17182,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
2919,
29892,
9416,
29892,
6483,
2071,
7324,
29892,
12871,
278,
508,
2963,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
1395,
575,
322,
7933,
373,
1080,
363,
29871,
29941,
304,
29871,
29946,
6233,
29892,
470,
2745,
278,
1395,
575,
526,
281,
2782,
287,
29892,
23546,
5393,
23025,
29889,
13,
13,
1433,
3881,
278,
2971,
728,
269,
29399,
297,
263,
2323,
7546,
373,
2246,
310,
278,
1395,
575,
29544,
29889,
826,
3881,
278,
304,
21154,
269,
29399,
297,
263,
2323,
7546,
373,
278,
2971,
728,
269,
29399,
29889,
13,
13,
29925,
473,
297,
3307,
310,
278,
2545,
386,
29544,
304,
2041,
4203,
1582,
701,
278,
304,
21154,
29889,
1771,
292,
304,
263,
1027,
1050,
29892,
1603,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29896,
29900,
6233,
313,
1217,
23546,
5393,
4312,
467,
13,
13,
15156,
263,
2243,
15048,
805,
6150,
29892,
6782,
278,
304,
21154,
322,
18655,
1849,
304,
4091,
340,
16330,
12580,
3137,
29889,
19955,
280,
278,
2545,
386,
975,
599,
29889,
14314,
682,
280,
411,
278,
3999,
420,
409,
5779,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29896,
13,
13,
7827,
9950,
29871,
29953,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29946,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29900,
330,
13,
13,
7241,
495,
29871,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29929,
330,
13,
13,
14676,
262,
29871,
29896,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29896,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
21330,
23328,
1164,
390,
3035,
3235,
29950,
29901,
910,
2919,
20021,
2971,
728,
756,
263,
14225,
29892,
10849,
21054,
272,
29889,
7849,
3464,
515,
29871,
29953,
304,
29871,
29896,
29945,
22831,
1472,
411,
19309,
393,
338,
2845,
4796,
470,
4628,
29889,
960,
366,
505,
4805,
29892,
671,
372,
10650,
297,
4497,
7925,
29892,
696,
579,
1146,
10344,
13630,
267,
411,
916,
3876,
18655,
1849,
29892,
470,
788,
777,
304,
596,
2446,
23546,
29899,
29888,
719,
29889,
13,
13,
2277,
439,
1789,
29874,
411,
413,
744,
29892,
521,
860,
412,
294,
29892,
322,
285,
1187,
13,
13,
29911,
1581,
1395,
575,
286,
292,
280,
411,
1652,
3096,
29891,
439,
1789,
29874,
29892,
907,
25934,
521,
860,
412,
294,
29892,
322,
15301,
285,
1187,
297,
445,
1667,
270,
728,
393,
29915,
29879,
577,
2989,
310,
21054,
943,
322,
1426,
1973,
393,
366,
29915,
276,
5517,
304,
6523,
1554,
716,
297,
1432,
289,
568,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30642,
18002,
413,
744,
29544,
322,
29871,
30642,
18002,
439,
1789,
29874,
639,
16330,
13,
13,
29896,
18002,
443,
1111,
12504,
439,
1789,
29874,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
13,
13,
30226,
18002,
270,
7612,
373,
291,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
521,
860,
412,
294,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
13,
13,
29946,
29871,
1309,
778,
3060,
2986,
413,
744,
29892,
738,
2919,
380,
1567,
2313,
25600,
313,
12717,
29871,
29946,
2723,
567,
19932,
368,
4870,
287,
29897,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
31690,
18002,
2181,
25443,
9950,
29899,
9021,
285,
1187,
923,
968,
13,
13,
29925,
3445,
598,
278,
439,
1789,
29874,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
29889,
17934,
304,
263,
18350,
12580,
29880,
29889,
2379,
3096,
411,
263,
27350,
29889,
3789,
17786,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2919,
29892,
9416,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
363,
29871,
29941,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
7171,
506,
29889,
17278,
363,
29871,
29896,
29945,
6923,
29892,
23546,
5393,
21003,
29889,
13,
13,
855,
381,
297,
278,
521,
860,
412,
294,
322,
2545,
386,
29889,
1771,
292,
304,
263,
1045,
309,
29892,
1603,
975,
18350,
29899,
9812,
12871,
29889,
624,
381,
297,
278,
413,
744,
29889,
7106,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29947,
6233,
29892,
470,
2745,
278,
413,
744,
338,
4964,
6419,
29892,
23546,
5393,
23025,
29889,
15154,
515,
278,
12871,
29889,
624,
381,
297,
278,
15795,
29889,
13,
13,
29903,
1129,
265,
278,
439,
1789,
29874,
11480,
263,
16330,
715,
2620,
470,
715,
1078,
29889,
7488,
411,
278,
521,
860,
412,
29874,
29544,
29889,
14314,
682,
280,
411,
278,
285,
1187,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29941,
29953,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29929,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
29941,
330,
13,
13,
7241,
495,
29871,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29896,
29953,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29896,
20793,
27654,
13,
13,
2277,
14225,
29899,
392,
29899,
29879,
473,
2654,
7776,
17807,
13,
13,
4013,
13807,
5332,
322,
3330,
6392,
2625,
270,
728,
11000,
7970,
411,
282,
548,
29889,
450,
5232,
4105,
5921,
3732,
278,
7776,
17807,
22707,
322,
14225,
29892,
322,
4076,
278,
21054,
943,
20947,
310,
931,
304,
286,
4743,
322,
1999,
355,
29889,
1816,
345,
372,
7375,
470,
11220,
29889,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
2919,
373,
291,
29892,
16835,
368,
269,
506,
287,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
2654,
7776,
17807,
29892,
1034,
287,
322,
16835,
368,
269,
506,
287,
313,
12717,
29871,
29947,
2723,
567,
29897,
13,
13,
29896,
18002,
29871,
29896,
29900,
29900,
29995,
26163,
3623,
625,
13,
13,
30515,
18002,
9226,
368,
4870,
287,
17354,
26438,
13,
13,
30515,
18002,
274,
1241,
13848,
387,
279,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
30226,
734,
294,
1129,
265,
5962,
274,
2559,
314,
265,
13,
13,
30515,
734,
294,
1129,
265,
5962,
17184,
1960,
13,
13,
29906,
2919,
6274,
1460,
7075,
623,
793,
29892,
1236,
29872,
839,
565,
7429,
322,
3060,
2986,
13,
13,
797,
263,
2919,
29892,
9416,
12507,
346,
8357,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
363,
29871,
29941,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
7776,
17807,
29889,
17278,
363,
29871,
29941,
304,
29871,
29945,
6233,
29892,
470,
2745,
278,
7776,
17807,
338,
281,
2782,
287,
29892,
23546,
5393,
13672,
29889,
13,
13,
855,
381,
297,
278,
9886,
2348,
1127,
10070,
5174,
278,
623,
793,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29896,
7234,
29892,
23546,
5393,
13672,
29889,
13,
13,
855,
381,
297,
278,
623,
793,
29889,
17278,
29892,
10664,
29892,
363,
29871,
29906,
29900,
304,
29871,
29941,
29900,
6233,
29892,
470,
2745,
278,
623,
793,
526,
4964,
322,
278,
7776,
17807,
338,
1407,
22707,
29892,
23546,
5393,
13672,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29896,
29900,
13,
13,
7827,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29941,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29947,
330,
13,
13,
14676,
262,
29871,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
15774,
29892,
29871,
29896,
18655,
519,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
910,
270,
728,
674,
21779,
1584,
2253,
278,
2446,
2462,
29889,
13,
13,
2277,
22707,
2971,
17006,
411,
454,
3712,
322,
20559,
13,
13,
9908,
17006,
526,
278,
4049,
29899,
957,
6914,
287,
13444,
267,
310,
278,
3876,
3942,
29889,
306,
13996,
29886,
6270,
322,
2989,
310,
13901,
9103,
315,
29892,
896,
4953,
577,
906,
322,
7901,
1308,
746,
7984,
287,
29892,
3907,
963,
263,
628,
14803,
18708,
363,
738,
2560,
696,
28470,
282,
548,
470,
521,
21475,
9953,
1318,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
30226,
18002,
1436,
873,
3060,
2986,
2654,
373,
291,
13,
13,
29906,
2723,
567,
2971,
17006,
29892,
17151,
2168,
322,
8870,
1490,
3309,
3538,
13,
13,
30515,
18002,
4094,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
454,
3712,
503,
342,
13,
13,
29906,
6131,
1129,
787,
10849,
454,
3712,
3623,
625,
13,
13,
29906,
734,
294,
1129,
787,
26438,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
20559,
13,
13,
797,
263,
18350,
29892,
9416,
12507,
346,
8357,
29892,
12871,
278,
17182,
975,
18350,
29899,
677,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
363,
29871,
29945,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
23025,
29889,
13,
13,
855,
381,
297,
278,
2971,
17006,
29889,
17278,
363,
29871,
29896,
11015,
29889,
624,
381,
297,
278,
4094,
29892,
454,
3712,
3623,
625,
29892,
26438,
29892,
322,
15795,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29946,
6233,
29892,
470,
2745,
278,
2971,
17006,
526,
925,
22707,
29899,
29883,
3780,
29886,
29889,
15154,
515,
278,
12871,
29889,
13,
13,
855,
381,
297,
278,
20559,
322,
454,
3712,
503,
342,
29889,
2803,
2317,
363,
29871,
29896,
29900,
6233,
304,
9080,
14294,
470,
29871,
29906,
29945,
304,
29871,
29941,
29900,
6233,
304,
9080,
472,
5716,
10430,
29889,
1394,
4612,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
7234,
304,
9080,
521,
24455,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29929,
13,
13,
7827,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29929,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29955,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29896,
30226,
20793,
27654,
29892,
29871,
29896,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
951,
29888,
517,
369,
2971,
17006,
1207,
263,
260,
579,
29891,
322,
22910,
6124,
304,
738,
4497,
328,
29889,
13,
13,
387,
3174,
411,
1560,
12504,
872,
21125,
29892,
10917,
496,
29892,
322,
6454,
20452,
13,
13,
2277,
29808,
411,
1560,
12504,
872,
21125,
29892,
10917,
496,
29892,
322,
6454,
20452,
13,
13,
4013,
503,
14596,
26044,
270,
728,
884,
3732,
385,
15129,
3578,
301,
3322,
470,
17803,
29889,
450,
18655,
1849,
17346,
278,
1560,
554,
3335,
310,
278,
872,
21125,
322,
278,
1236,
407,
708,
7375,
12507,
346,
29889,
313,
13393,
15373,
1846,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
19710,
322,
29871,
30226,
18002,
872,
21125,
29544,
639,
16330,
13,
13,
30226,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
322,
29871,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
29892,
13931,
671,
13,
13,
29946,
29871,
1309,
778,
4482,
29899,
29888,
271,
1560,
12504,
7013,
1989,
872,
21125,
29892,
3209,
886,
2313,
25600,
29892,
270,
7612,
13,
13,
29946,
2919,
29808,
13,
13,
30515,
18002,
4094,
13,
13,
29896,
18002,
658,
359,
873,
4870,
287,
10917,
496,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
29896,
18002,
2646,
412,
6454,
20452,
29892,
12616,
287,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
10545,
313,
20620,
29899,
29500,
29897,
610,
29879,
2330,
470,
1436,
873,
3060,
2986,
7933,
373,
1080,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29906,
734,
294,
1129,
787,
286,
789,
28838,
29899,
3293,
7375,
29899,
412,
2496,
12507,
346,
13,
13,
797,
263,
2919,
29892,
9416,
29892,
1661,
303,
860,
2071,
7324,
29892,
12871,
29871,
30226,
734,
294,
1129,
265,
17182,
975,
18350,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
872,
21125,
363,
29871,
29945,
6233,
29892,
470,
2745,
6763,
304,
17354,
3578,
368,
29892,
23546,
5393,
23025,
29889,
17934,
304,
263,
2319,
15284,
29889,
13,
13,
6816,
273,
8000,
29892,
26755,
278,
29808,
964,
263,
12580,
29880,
29889,
3872,
29915,
29873,
16646,
963,
29889,
4367,
24551,
278,
12871,
304,
18350,
4482,
29889,
512,
278,
1021,
2071,
7324,
29892,
12871,
278,
9886,
29871,
29896,
6131,
1129,
265,
17182,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
317,
7459,
278,
29808,
29892,
697,
472,
263,
931,
29892,
964,
278,
2071,
7324,
29889,
17278,
363,
29871,
29896,
11015,
29889,
402,
2705,
1671,
278,
4094,
964,
278,
2071,
7324,
313,
1333,
4153,
975,
278,
29808,
467,
14314,
682,
280,
278,
29808,
411,
278,
872,
21125,
29892,
10917,
496,
29892,
6454,
20452,
29892,
610,
29879,
2330,
29892,
1236,
2496,
29892,
322,
7375,
29899,
412,
2496,
12507,
346,
29889,
17278,
29892,
10664,
29892,
363,
29871,
29941,
304,
29871,
29946,
6233,
29892,
470,
2745,
278,
19710,
18960,
526,
7984,
287,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29953,
29947,
13,
13,
7827,
9950,
29871,
29896,
29896,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
29900,
29896,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29953,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29896,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29896,
30226,
20793,
27654,
29892,
29871,
29896,
9950,
13,
13,
2277,
8280,
387,
661,
403,
282,
15451,
13,
13,
29943,
3781,
282,
15451,
330,
2705,
1027,
1050,
297,
18806,
29891,
29899,
29879,
16668,
8280,
387,
661,
403,
3623,
625,
2745,
896,
29915,
276,
13394,
13405,
11687,
22707,
29892,
769,
263,
13182,
310,
10849,
24841,
503,
342,
322,
1109,
2911,
12778,
269,
3021,
4695,
362,
29889,
1174,
2212,
29891,
445,
1410,
2782,
29899,
9021,
6808,
814,
14294,
29892,
472,
5716,
10430,
29892,
470,
521,
24455,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
282,
799,
4203,
322,
29871,
29896,
6131,
1129,
265,
12507,
346,
639,
16330,
13,
13,
29906,
2919,
9226,
10211,
29883,
470,
12245,
13650,
282,
15451,
313,
12717,
29871,
29896,
282,
618,
511,
1236,
29872,
839,
29892,
8870,
1490,
29892,
322,
1034,
287,
13,
13,
30226,
18002,
29871,
29896,
29900,
29900,
29995,
8280,
387,
661,
403,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
26438,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
24841,
503,
342,
13,
13,
29896,
734,
294,
1129,
265,
1109,
2911,
6597,
13,
13,
22150,
278,
282,
15451,
411,
278,
5700,
2625,
1623,
297,
263,
18350,
29892,
9416,
2071,
7324,
411,
263,
17343,
29889,
6803,
297,
278,
8280,
387,
661,
403,
3623,
625,
29889,
14314,
682,
280,
278,
26438,
975,
278,
282,
15451,
29889,
1771,
292,
304,
263,
1045,
309,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29906,
29900,
6233,
29892,
470,
2745,
278,
282,
15451,
526,
22707,
29892,
14712,
963,
975,
2748,
4203,
1582,
1549,
29889,
17934,
304,
715,
1078,
470,
12580,
3137,
29889,
13,
13,
29933,
5393,
278,
8280,
387,
661,
403,
3623,
625,
29544,
304,
263,
1045,
309,
975,
18350,
29899,
9812,
12871,
29889,
1952,
309,
363,
29871,
29896,
11015,
29892,
470,
2745,
12212,
491,
4203,
313,
517,
1048,
29871,
30226,
18002,
467,
15154,
515,
278,
12871,
29889,
13,
13,
855,
381,
297,
278,
24841,
503,
342,
322,
1109,
2911,
29889,
24674,
265,
278,
12507,
346,
975,
278,
282,
15451,
29889,
1816,
345,
278,
282,
15451,
14294,
29892,
1235,
963,
12528,
363,
29871,
29941,
29900,
6233,
304,
9080,
472,
5716,
10430,
29892,
470,
4612,
322,
337,
1341,
4087,
403,
963,
363,
29871,
29896,
7234,
304,
9080,
521,
24455,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29900,
29900,
13,
13,
7827,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29953,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29929,
330,
13,
13,
14676,
262,
29871,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
15774,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1522,
1854,
304,
671,
9226,
282,
15451,
470,
596,
6808,
814,
674,
367,
286,
1878,
29891,
29889,
13,
13,
29937,
1886,
16958,
13,
13,
2168,
1524,
10800,
273,
9427,
1886,
29893,
13,
13,
629,
283,
546,
322,
872,
21125,
1886,
29893,
13,
13,
15135,
271,
9093,
29899,
305,
21475,
1886,
29893,
13,
13,
305,
21475,
297,
6454,
1219,
29899,
29893,
457,
12507,
346,
13,
13,
915,
1389,
26072,
870,
29891,
13,
13,
12257,
542,
3068,
367,
1389,
1886,
29893,
411,
5227,
629,
424,
274,
681,
29883,
681,
13,
13,
1655,
557,
8697,
1886,
29893,
13,
13,
11125,
415,
713,
6095,
13,
13,
1004,
271,
2222,
274,
465,
283,
1026,
13,
13,
1971,
15788,
3803,
2255,
13,
13,
29887,
7879,
29899,
29888,
3781,
7548,
271,
283,
1924,
13,
13,
272,
927,
29899,
29895,
790,
287,
11801,
285,
21211,
13,
13,
3644,
366,
763,
304,
7984,
697,
29899,
29881,
728,
592,
1338,
29892,
769,
1886,
16958,
338,
385,
10839,
11043,
363,
366,
29889,
12030,
29892,
27654,
29892,
282,
5059,
2202,
29892,
470,
367,
550,
508,
5948,
367,
12420,
411,
18655,
1849,
297,
263,
3104,
304,
1207,
17803,
29889,
2443,
557,
8697,
2443,
29893,
322,
1632,
283,
546,
322,
317,
1485,
482,
2443,
29893,
526,
6455,
310,
9522,
5547,
393,
1510,
920,
5948,
445,
508,
367,
2309,
29889,
319,
19932,
29899,
29888,
5367,
4612,
373,
278,
1886,
29893,
3104,
6260,
7093,
3415,
481,
12418,
29892,
322,
278,
2148,
575,
362,
8429,
2768,
10017,
263,
1583,
29899,
29890,
579,
292,
1889,
304,
3013,
278,
9687,
2730,
391,
1550,
7714,
292,
297,
278,
18254,
374,
1237,
29889,
13,
13,
7789,
16958,
338,
385,
10839,
982,
304,
679,
17803,
7984,
292,
1550,
366,
29915,
276,
2599,
1554,
1683,
29889,
739,
6858,
2217,
8570,
1550,
445,
9914,
5232,
29899,
15108,
292,
1158,
1027,
13269,
9687,
297,
967,
1914,
3623,
1575,
3412,
411,
263,
23904,
1316,
408,
2545,
386,
470,
19006,
29889,
2178,
366,
817,
338,
263,
9416,
3104,
411,
263,
17343,
322,
9045,
29891,
2348,
1127,
10070,
29889,
13,
13,
5006,
29915,
29903,
379,
9806,
3446,
3235,
17067,
3210,
12916,
11144,
399,
1955,
17557,
29930,
29901,
13,
13,
29896,
29889,
350,
1672,
16048,
278,
27654,
470,
282,
5059,
2202,
313,
1366,
4331,
338,
14993,
2986,
297,
7205,
1181,
397,
270,
17006,
304,
4772,
975,
15108,
292,
467,
1763,
437,
445,
29892,
758,
354,
271,
278,
3104,
1434,
3347,
1076,
278,
2348,
1127,
10070,
29889,
3462,
278,
27654,
470,
282,
5059,
2202,
29892,
769,
1235,
372,
7845,
30003,
14037,
8401,
372,
30003,
29305,
278,
5970,
338,
409,
1965,
29936,
565,
366,
2507,
278,
9687,
1434,
393,
29892,
372,
674,
12070,
304,
278,
3104,
322,
278,
7101,
2113,
29915,
29873,
1559,
314,
295,
675,
29889,
13,
13,
29906,
29889,
16698,
2692,
30062,
278,
902,
5824,
322,
263,
456,
271,
1199,
29889,
14514,
278,
902,
5824,
322,
263,
456,
271,
1199,
304,
278,
7984,
292,
931,
29936,
263,
5520,
7984,
292,
931,
6858,
16600,
12785,
577,
896,
1016,
29915,
29873,
2867,
1623,
322,
766,
14146,
403,
1550,
7984,
292,
29889,
317,
18560,
963,
937,
411,
7984,
292,
805,
764,
470,
263,
2586,
310,
17182,
363,
278,
1556,
21054,
272,
29889,
13,
13,
29941,
29889,
624,
381,
297,
278,
18655,
1849,
29892,
367,
550,
29892,
322,
29914,
272,
2814,
9351,
29889,
13,
13,
29946,
29889,
27827,
278,
23904,
313,
517,
4612,
278,
9687,
6446,
29897,
322,
1235,
278,
9687,
1027,
1050,
29892,
10664,
29892,
2745,
372,
29915,
29879,
22707,
29889,
13,
13,
29930,
29903,
14618,
278,
1797,
310,
278,
6576,
722,
583,
13,
13,
4986,
317,
4330,
29956,
29901,
259,
13,
1762,
7984,
9687,
10664,
411,
23904,
322,
1027,
1050,
287,
14205,
297,
263,
19932,
368,
10664,
3104,
29892,
5491,
363,
263,
1472,
3785,
310,
931,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
10173,
411,
263,
19932,
29899,
29888,
5367,
17343,
313,
14565,
408,
263,
14872,
288,
854,
470,
2071,
7324,
411,
17343,
470,
12507,
346,
8357,
411,
17343,
30003,
1552,
3104,
881,
367,
9416,
304,
1320,
2666,
278,
12871,
1584,
368,
322,
7344,
385,
1584,
10430,
29936,
372,
29915,
29879,
884,
1900,
304,
671,
263,
380,
475,
2222,
22973,
470,
385,
397,
1891,
394,
9735,
398,
470,
427,
420,
839,
4320,
29899,
381,
265,
7243,
746,
7984,
292,
411,
22193,
293,
9687,
29879,
763,
6454,
20452,
470,
7537,
15816,
304,
4772,
4969,
766,
2780,
287,
9687,
29879,
322,
263,
1539,
497,
293,
21779,
511,
29181,
12237,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
7311,
1886,
16958,
27654,
470,
282,
5059,
2202,
7984,
29879,
278,
9950,
714,
964,
278,
12507,
346,
29892,
3380,
263,
2462,
14432,
29892,
565,
1950,
29889,
349,
3445,
598,
278,
270,
728,
29892,
769,
337,
1341,
4087,
403,
372,
975,
11147,
29889,
450,
4805,
931,
16869,
278,
21054,
943,
1999,
355,
322,
9946,
278,
521,
24455,
9950,
304,
14451,
304,
278,
2246,
322,
2898,
264,
29892,
3907,
372,
4780,
304,
3349,
29889,
13,
13,
30119,
5399,
278,
3104,
3785,
1711,
304,
367,
1854,
393,
278,
23904,
338,
1603,
21653,
278,
9687,
6446,
29889,
960,
4312,
29892,
788,
777,
5684,
23904,
304,
3013,
278,
9687,
10664,
29889,
13,
13,
30119,
319,
4868,
1027,
1050,
338,
451,
2337,
4780,
304,
1072,
5987,
29892,
7148,
373,
263,
10489,
380,
586,
300,
459,
29892,
577,
1749,
9522,
5547,
1016,
29915,
29873,
2106,
472,
825,
10430,
304,
1027,
1050,
29889,
7753,
472,
278,
19604,
4444,
373,
777,
380,
586,
300,
3554,
29892,
278,
12871,
1122,
367,
2086,
17818,
344,
29892,
607,
674,
4556,
278,
23904,
304,
1045,
309,
29889,
13,
13,
15349,
1254,
18322,
29949,
8452,
15842,
317,
4330,
29956,
4214,
13,
13,
2008,
29874,
1181,
397,
29901,
26206,
368,
738,
1134,
310,
9427,
470,
7205,
1181,
397,
508,
367,
1304,
297,
263,
1886,
29893,
29889,
1205,
29892,
408,
411,
916,
5232,
29899,
15108,
292,
3519,
29892,
278,
9427,
470,
7205,
1181,
397,
338,
5491,
2715,
11183,
278,
1095,
310,
278,
7984,
292,
931,
29892,
408,
297,
25620,
10800,
273,
12030,
2443,
29893,
29889,
13,
13,
29925,
5059,
2202,
29901,
838,
3242,
738,
760,
310,
278,
521,
21475,
508,
367,
1886,
8734,
29889,
8198,
261,
29892,
260,
820,
261,
17952,
526,
1900,
480,
1573,
363,
1886,
16958,
322,
526,
5491,
301,
24025,
376,
303,
809,
292,
521,
860,
575,
1213,
3967,
4335,
271,
9093,
29899,
1451,
21475,
2443,
29893,
29892,
607,
3913,
10814,
6393,
29892,
19309,
2222,
521,
21475,
266,
1141,
29879,
29889,
13,
13,
6816,
271,
29901,
450,
5232,
7984,
292,
22707,
7093,
260,
820,
261,
5700,
29879,
310,
27654,
29892,
408,
297,
3879,
542,
3068,
1522,
1389,
2443,
29893,
411,
7347,
629,
424,
315,
681,
29883,
681,
29892,
541,
20793,
5962,
27654,
338,
884,
4049,
1886,
8734,
297,
521,
23285,
29889,
13,
13,
29963,
387,
300,
13956,
14409,
262,
29901,
1522,
550,
322,
301,
296,
2719,
526,
3619,
297,
1886,
5652,
2820,
278,
3186,
29889,
3967,
12892,
713,
23004,
470,
278,
13430,
273,
270,
728,
29892,
7102,
15788,
6274,
2255,
29892,
607,
671,
285,
879,
367,
550,
322,
302,
5301,
367,
550,
29892,
8307,
29889,
13,
13,
29963,
387,
300,
1849,
29901,
7849,
18655,
1849,
4808,
701,
1532,
30003,
11884,
901,
628,
9593,
19995,
1316,
408,
278,
503,
1682,
305,
2172,
29892,
19710,
24389,
29892,
373,
1080,
29892,
22623,
1236,
22437,
29892,
322,
6454,
20452,
297,
263,
22037,
7548,
271,
283,
1924,
29889,
3967,
2191,
271,
2222,
13088,
283,
1026,
322,
19906,
29899,
29943,
3781,
17450,
271,
283,
1924,
29889,
13,
13,
29943,
9216,
29901,
383,
3781,
12565,
285,
21211,
29892,
1316,
408,
21783,
293,
1862,
29892,
14954,
2722,
29892,
1236,
14520,
29892,
322,
715,
6762,
29892,
526,
278,
22037,
7348,
29892,
408,
297,
26048,
29899,
29968,
790,
287,
13329,
383,
21211,
29892,
541,
270,
1255,
285,
21211,
508,
884,
367,
1886,
8734,
29889,
13,
13,
2277,
1612,
1524,
10800,
273,
9427,
1886,
29893,
13,
13,
3112,
1838,
29915,
29873,
2125,
1472,
304,
8273,
322,
7984,
445,
13016,
292,
541,
3578,
1886,
29893,
29892,
577,
372,
29915,
29879,
263,
2107,
7348,
363,
263,
4996,
11801,
17803,
297,
607,
366,
508,
1584,
671,
263,
10849,
503,
1682,
305,
2172,
515,
596,
1914,
16423,
470,
596,
4723,
355,
17487,
304,
278,
2215,
13269,
29915,
9999,
29889,
450,
1886,
29893,
29915,
29879,
1407,
286,
789,
9427,
21054,
272,
881,
25530,
1584,
304,
2305,
1058,
9455,
29915,
29873,
5491,
7205,
1181,
397,
658,
874,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
16947,
292,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29896,
18350,
18130,
310,
6432,
708,
29892,
3060,
2986,
13,
13,
29896,
18350,
1559,
5450,
29892,
3060,
2986,
13,
13,
29896,
2319,
373,
291,
29892,
3060,
2986,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
29906,
30226,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
270,
7612,
6454,
20452,
29892,
563,
22042,
13,
13,
29906,
6131,
1129,
787,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
11417,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29896,
18350,
503,
1682,
305,
2172,
29892,
3060,
2986,
13,
13,
29896,
29906,
29871,
1309,
778,
6928,
481,
423,
470,
916,
286,
789,
4796,
9427,
977,
10376,
29892,
364,
1144,
287,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
29896,
29899,
22466,
13630,
267,
13,
13,
797,
263,
2919,
29892,
9416,
12507,
346,
8357,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
6432,
708,
29892,
1559,
5450,
29892,
373,
291,
29892,
322,
7171,
506,
363,
29871,
29945,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
13672,
29889,
13,
13,
855,
381,
297,
278,
2545,
386,
29892,
6454,
20452,
411,
23904,
29892,
6454,
1219,
11417,
29892,
266,
25395,
29892,
15795,
29892,
322,
1236,
2496,
29889,
1771,
292,
304,
263,
1045,
309,
29892,
1603,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29947,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
278,
18655,
1849,
526,
1407,
22707,
322,
278,
373,
291,
338,
1407,
4964,
29892,
411,
694,
2181,
11936,
2264,
9886,
29889,
13,
13,
855,
381,
297,
278,
503,
1682,
305,
2172,
29889,
17278,
363,
29871,
29941,
6233,
29892,
470,
2745,
4359,
22707,
29899,
29883,
3780,
29886,
29892,
23546,
5393,
23025,
29889,
13,
13,
855,
381,
297,
278,
9427,
29889,
17278,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
372,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29953,
29946,
13,
13,
7827,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29955,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29906,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29906,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
29906,
30226,
20793,
27654,
13,
13,
2277,
867,
283,
546,
322,
872,
21125,
1886,
29893,
13,
13,
4013,
10029,
1560,
554,
29891,
1886,
29893,
5680,
867,
283,
546,
29892,
521,
860,
412,
294,
29892,
322,
7013,
1989,
872,
21125,
29889,
951,
5555,
278,
977,
10376,
3353,
322,
11979,
1847,
278,
1886,
29893,
373,
2246,
3732,
363,
385,
19232,
29892,
5400,
24329,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
13,
13,
29953,
29871,
1309,
778,
4482,
29899,
29888,
271,
14225,
470,
7375,
10545,
7013,
1989,
470,
521,
21475,
872,
21125,
29892,
3209,
886,
2313,
25600,
29892,
5700,
964,
29871,
29896,
29899,
22466,
269,
29399,
13,
13,
29906,
18350,
1559,
307,
1372,
29892,
270,
7612,
13,
13,
29896,
18350,
373,
291,
29892,
3060,
2986,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
29871,
29906,
29947,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
270,
7612,
6454,
20452,
29892,
563,
22042,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
521,
860,
412,
294,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
470,
521,
21475,
2545,
386,
13,
13,
30226,
18002,
528,
261,
719,
29892,
15589,
2654,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
511,
470,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
13,
13,
29953,
2723,
567,
3060,
2986,
5321,
538,
1395,
575,
29892,
738,
2919,
380,
1567,
2313,
25600,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29946,
867,
283,
546,
470,
2654,
5807,
23239,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
797,
263,
2919,
29892,
9416,
12507,
346,
8357,
470,
14872,
288,
854,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
4367,
24551,
278,
12871,
304,
18350,
29889,
17278,
278,
872,
21125,
363,
29871,
29941,
304,
29871,
29945,
6233,
29892,
470,
2745,
3578,
368,
3347,
9571,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
1559,
307,
1372,
322,
373,
291,
29889,
17278,
363,
1048,
29871,
29941,
6233,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
7171,
506,
29889,
17278,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
5227,
629,
424,
29892,
23546,
5393,
13672,
29889,
13,
13,
855,
381,
297,
278,
6454,
20452,
411,
23904,
29892,
521,
860,
412,
294,
29892,
2545,
386,
29892,
322,
528,
261,
719,
29889,
1771,
292,
304,
263,
1045,
309,
29889,
19295,
1474,
23546,
297,
278,
5321,
538,
1395,
575,
322,
1236,
2496,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29896,
29900,
6233,
29892,
23546,
5393,
13672,
29889,
402,
2705,
2058,
278,
9427,
297,
278,
1886,
29893,
29889,
3439,
1050,
29892,
10664,
29892,
363,
29871,
29945,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
13,
13,
15156,
263,
805,
271,
2497,
29892,
16112,
6782,
278,
9427,
304,
4091,
340,
16330,
12580,
3137,
29889,
19955,
280,
278,
5321,
538,
1395,
575,
29544,
975,
278,
9427,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29946,
29896,
29953,
13,
13,
7827,
9950,
29871,
29929,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29945,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29945,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29896,
330,
13,
13,
7241,
495,
29871,
29896,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29906,
330,
13,
13,
14676,
262,
29871,
29941,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
380,
1279,
29892,
29871,
29946,
18655,
519,
29892,
29871,
29946,
20793,
27654,
13,
13,
2277,
6454,
271,
9093,
29899,
305,
21475,
1886,
29893,
13,
13,
21599,
271,
453,
359,
313,
517,
7184,
29899,
801,
29899,
4330,
29923,
29899,
1148,
29879,
29897,
788,
263,
10849,
29892,
454,
3712,
4561,
21054,
272,
304,
445,
24777,
1886,
29893,
29892,
1550,
5516,
29874,
4023,
1099,
29892,
263,
26343,
1652,
473,
1900,
2998,
363,
967,
671,
297,
21308,
2122,
29892,
12003,
575,
278,
270,
728,
29889,
3938,
22437,
29892,
26343,
29892,
322,
274,
309,
424,
307,
4513,
714,
445,
16424,
1886,
29893,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29896,
31690,
2723,
567,
639,
16330,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29896,
30515,
24261,
10814,
6393,
29892,
19309,
2222,
521,
21475,
266,
1141,
29879,
29892,
599,
7962,
9950,
2313,
25600,
29892,
5700,
964,
29871,
29896,
30226,
29899,
22466,
12785,
13,
13,
29896,
2919,
373,
291,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
29945,
2919,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29906,
18350,
20367,
6391,
1236,
22437,
29892,
409,
5779,
322,
18130,
29879,
2313,
25600,
29892,
3060,
2986,
13,
13,
29896,
2919,
2654,
22623,
1236,
2496,
29892,
3060,
2986,
13,
13,
29896,
29906,
29871,
1309,
778,
18350,
6454,
271,
453,
359,
29892,
3500,
708,
8646,
2039,
2313,
25600,
29892,
3060,
2986,
13,
13,
29896,
30226,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29896,
6131,
1129,
265,
5962,
274,
9735,
13,
13,
29929,
29871,
1309,
778,
14671,
2256,
3353,
29899,
17460,
26343,
13,
13,
29941,
6131,
1129,
787,
304,
29871,
30515,
18002,
5516,
29874,
4023,
1099,
13,
13,
30226,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
797,
263,
14872,
288,
854,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
521,
21475,
363,
29871,
29945,
304,
29871,
29947,
6233,
29892,
470,
2745,
3578,
368,
3347,
9571,
29892,
23546,
5393,
23025,
29889,
313,
3629,
1854,
304,
1235,
278,
521,
21475,
409,
279,
1434,
23546,
5393,
1846,
13,
13,
29934,
6085,
346,
278,
12871,
304,
18350,
29889,
17278,
278,
373,
291,
363,
29871,
29941,
304,
29871,
29946,
6233,
29892,
470,
2745,
6763,
304,
4964,
264,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
7171,
506,
29889,
17278,
363,
29871,
29941,
29900,
6923,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
20367,
6391,
1236,
22437,
322,
22623,
1236,
2496,
29889,
17278,
363,
29871,
29941,
6233,
29892,
470,
2745,
6763,
304,
4964,
264,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
6454,
271,
453,
359,
29892,
2545,
386,
29892,
322,
274,
9735,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1045,
309,
29892,
10664,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29906,
29900,
6233,
29892,
23546,
5393,
23025,
29889,
13,
13,
855,
381,
297,
278,
26343,
29889,
3439,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29896,
29900,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
322,
278,
18655,
1849,
526,
22707,
29889,
13,
13,
22908,
278,
5516,
29874,
4023,
1099,
297,
263,
2319,
12580,
29880,
29889,
806,
3873,
297,
1048,
29871,
30515,
18002,
310,
278,
2545,
386,
515,
278,
1886,
29893,
304,
1653,
263,
12003,
11417,
29889,
624,
381,
278,
5516,
29874,
4023,
1099,
29544,
964,
278,
1886,
29893,
29889,
3439,
1050,
363,
29871,
29945,
6233,
29892,
470,
2745,
278,
1886,
29893,
338,
10029,
12003,
6419,
29889,
624,
381,
297,
278,
274,
309,
424,
307,
29889,
1816,
345,
278,
1886,
29893,
297,
4091,
340,
12580,
3137,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29953,
29941,
13,
13,
7827,
9950,
29871,
29896,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29947,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29946,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29947,
330,
13,
13,
14676,
262,
29871,
29906,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29906,
30226,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
323,
6488,
1299,
24071,
3267,
29901,
4335,
271,
453,
359,
1106,
763,
2319,
7933,
6454,
20452,
29892,
541,
896,
505,
263,
18806,
29891,
29892,
10029,
22193,
293,
21779,
29889,
14542,
852,
2898,
29899,
29888,
793,
17143,
15774,
29889,
3295,
7543,
278,
8646,
2039,
322,
471,
29882,
278,
6454,
271,
453,
359,
1532,
1434,
773,
963,
29889,
1763,
3787,
963,
29892,
5967,
278,
8646,
2039,
373,
322,
337,
1341,
4087,
403,
278,
6454,
271,
453,
359,
297,
263,
5650,
19548,
363,
701,
304,
697,
4098,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
8622,
29874,
4023,
1099,
338,
3625,
297,
3600,
8357,
293,
4266,
1017,
2791,
1691,
322,
297,
278,
3600,
8357,
293,
263,
275,
280,
310,
1556,
2428,
3502,
1691,
29889,
960,
372,
29915,
29879,
443,
16515,
29892,
366,
508,
23764,
697,
1436,
873,
3060,
2986,
29871,
29953,
29899,
22466,
26343,
16263,
2911,
470,
29871,
30515,
18002,
2181,
15392,
289,
12535,
9644,
1997,
287,
26343,
16263,
2911,
521,
4512,
29889,
624,
381,
278,
16263,
2911,
12785,
470,
2181,
15392,
521,
4512,
1492,
964,
278,
1886,
29893,
304,
12003,
264,
372,
29889,
13,
13,
2277,
521,
21475,
297,
6454,
1219,
29899,
29893,
457,
12507,
346,
13,
13,
21823,
19006,
322,
278,
3623,
625,
515,
6454,
20452,
526,
278,
10819,
297,
278,
1886,
16958,
23904,
363,
445,
10545,
29899,
262,
1028,
2859,
270,
728,
29889,
2688,
3041,
1509,
278,
521,
21475,
411,
21054,
272,
322,
2730,
391,
545,
29892,
322,
1653,
263,
21054,
272,
1319,
12507,
346,
29889,
1816,
345,
975,
3353,
29899,
3874,
262,
274,
681,
29883,
681,
304,
577,
557,
701,
1432,
5768,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
322,
885,
424,
29871,
29896,
30226,
2723,
567,
12507,
346,
639,
16330,
13,
13,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
18350,
373,
291,
29892,
270,
7612,
13,
13,
29896,
18350,
7933,
22623,
1236,
2496,
29892,
270,
7612,
13,
13,
29947,
29871,
1309,
778,
2826,
286,
1878,
18901,
29892,
269,
506,
287,
13,
13,
29906,
734,
294,
1129,
787,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
29906,
734,
294,
1129,
787,
270,
1255,
610,
29879,
2330,
29892,
2181,
25443,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29946,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
13,
13,
29896,
29871,
29896,
29946,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
270,
7612,
6454,
20452,
29892,
563,
22042,
13,
13,
29896,
30515,
2723,
567,
4094,
13,
13,
30226,
18002,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29896,
6131,
1129,
265,
6454,
1219,
11417,
13,
13,
797,
263,
2919,
29892,
9416,
2071,
7324,
470,
14872,
288,
854,
29892,
12871,
278,
17182,
975,
18350,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
322,
22623,
1236,
2496,
363,
29871,
29941,
304,
29871,
29945,
6233,
29892,
470,
2745,
6763,
304,
4964,
264,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
286,
1878,
18901,
29889,
17278,
363,
29871,
29945,
304,
29871,
29955,
6233,
29892,
470,
2745,
6763,
304,
4964,
264,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
470,
387,
1562,
29892,
610,
29879,
2330,
29892,
322,
7171,
506,
29889,
17278,
363,
29871,
29896,
11015,
29889,
13,
13,
22150,
278,
521,
21475,
297,
278,
2071,
7324,
29889,
624,
381,
297,
278,
6454,
20452,
411,
23904,
29892,
4094,
29892,
19006,
29892,
322,
6454,
1219,
11417,
29889,
512,
1037,
559,
278,
12871,
304,
18350,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
13,
13,
29934,
6085,
346,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29941,
29900,
304,
29871,
29941,
29945,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29906,
29906,
13,
13,
7827,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29945,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29941,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29947,
330,
13,
13,
14676,
262,
29871,
29906,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
22717,
7428,
1001,
4214,
29901,
319,
2319,
289,
23232,
881,
2867,
1549,
278,
7101,
310,
278,
23904,
1432,
1473,
470,
1023,
29889,
960,
901,
289,
431,
7586,
14451,
304,
278,
7101,
29892,
769,
5224,
278,
12871,
470,
9500,
278,
3104,
304,
697,
2625,
310,
278,
12138,
261,
29889,
13,
13,
2277,
367,
1389,
26072,
870,
29891,
13,
13,
4013,
8261,
29892,
5192,
29891,
1886,
29893,
515,
3444,
29915,
29879,
11202,
870,
29891,
5120,
338,
697,
310,
278,
4234,
29915,
29879,
1556,
13834,
270,
17006,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29941,
269,
29399,
7013,
1989,
9922,
535,
29892,
3060,
2986,
13,
13,
29896,
282,
618,
10814,
6393,
2246,
4513,
1886,
557,
29892,
599,
7962,
9950,
2313,
25600,
29892,
5700,
964,
29871,
30226,
29899,
22466,
13630,
267,
13,
13,
29896,
18002,
3060,
2986,
373,
291,
13,
13,
29946,
2919,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
6131,
1129,
265,
3578,
23131,
15276,
279,
457,
13,
13,
29906,
6131,
1129,
787,
599,
29899,
15503,
4220,
1652,
473,
13,
13,
29896,
30226,
2723,
567,
15589,
2654,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29896,
18002,
1302,
1503,
873,
3060,
2986,
1559,
307,
1372,
13,
13,
29896,
18002,
282,
799,
29880,
373,
1080,
29892,
266,
1450,
287,
565,
14671,
2256,
13,
13,
29947,
29871,
1309,
778,
521,
14623,
1808,
29892,
528,
29875,
277,
1296,
313,
303,
1567,
2313,
25600,
511,
17354,
313,
1037,
1195,
29875,
511,
470,
2826,
286,
1878,
18901,
29892,
470,
263,
10296,
313,
1111,
1503,
873,
3060,
2986,
565,
2919,
29897,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
367,
1389,
2545,
386,
29892,
2298,
901,
565,
4312,
13,
13,
30226,
18002,
4094,
13,
13,
30515,
18002,
315,
3811,
562,
470,
1506,
13910,
313,
25253,
29897,
13,
13,
29896,
6131,
1129,
265,
6501,
17354,
26438,
13,
13,
29896,
6131,
1129,
265,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
11417,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
696,
12846,
653,
29892,
2181,
15392,
13,
13,
29896,
6131,
1129,
265,
2298,
29871,
29896,
734,
294,
1129,
265,
3060,
2986,
10849,
266,
25395,
13,
13,
797,
263,
14872,
288,
854,
29892,
7984,
278,
9922,
535,
975,
18350,
12871,
363,
29871,
29945,
6233,
29892,
23546,
5393,
23025,
29889,
17934,
304,
263,
2319,
15284,
301,
1312,
411,
5650,
304,
29893,
1379,
29889,
13,
13,
797,
1037,
559,
278,
12871,
304,
18350,
1880,
29889,
512,
278,
1021,
3104,
29892,
7984,
4203,
278,
367,
1389,
363,
29871,
29945,
304,
29871,
29955,
6233,
29892,
470,
2745,
3347,
9571,
29892,
23546,
5393,
23025,
29889,
313,
3629,
1854,
304,
1235,
278,
367,
1389,
409,
279,
1434,
23546,
5393,
1846,
17934,
304,
263,
2919,
15284,
29889,
830,
11666,
411,
278,
9886,
367,
1389,
29889,
13,
13,
29934,
6085,
346,
278,
12871,
304,
18350,
29889,
17278,
278,
373,
291,
29892,
7171,
506,
29892,
322,
15276,
279,
457,
363,
29871,
29945,
6233,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
1652,
473,
29889,
624,
381,
297,
278,
9922,
535,
29892,
367,
1389,
29892,
322,
278,
9886,
2348,
1127,
10070,
5174,
278,
266,
25395,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29896,
30226,
6199,
29892,
470,
2745,
278,
367,
1389,
338,
22707,
29892,
23546,
5393,
23025,
322,
4417,
901,
2545,
386,
304,
16079,
368,
4612,
278,
367,
1389,
29544,
565,
5181,
29889,
3387,
1434,
16330,
29892,
7689,
682,
280,
411,
278,
266,
25395,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29906,
29906,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29896,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29906,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29953,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29900,
330,
13,
13,
14676,
262,
29871,
29941,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29941,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
12257,
542,
3068,
367,
1389,
1886,
29893,
411,
5227,
629,
424,
274,
681,
29883,
681,
13,
13,
2277,
3036,
542,
3068,
367,
1389,
1886,
29893,
411,
5227,
629,
424,
274,
681,
29883,
681,
13,
13,
29907,
681,
29883,
681,
338,
4049,
6766,
408,
263,
2625,
270,
728,
411,
1886,
8734,
470,
4105,
3368,
9953,
2406,
29889,
512,
445,
9522,
412,
29892,
372,
29915,
29879,
7984,
287,
297,
263,
1886,
4183,
25972,
393,
29915,
29879,
7180,
297,
278,
1021,
3104,
411,
278,
367,
1389,
322,
805,
1575,
577,
278,
2646,
262,
338,
628,
293,
2486,
21054,
4395,
1550,
372,
1886,
2232,
29889,
313,
13393,
15373,
1846,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
29871,
29896,
16947,
292,
18002,
639,
16330,
13,
13,
29896,
30226,
734,
294,
1129,
787,
3578,
23131,
15276,
279,
457,
13,
13,
29896,
30226,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
30226,
282,
618,
20793,
1886,
29893,
27654,
29892,
599,
7962,
9950,
2313,
25600,
29892,
5700,
964,
29871,
29896,
29899,
22466,
13630,
267,
13,
13,
29896,
2919,
373,
291,
29892,
269,
506,
287,
13,
13,
29896,
734,
294,
1129,
265,
1236,
2496,
13,
13,
30226,
734,
294,
1129,
265,
5962,
330,
5621,
13,
13,
30226,
734,
294,
1129,
265,
5962,
7013,
1050,
293,
13,
13,
29925,
22466,
310,
872,
600,
1617,
313,
25253,
29897,
13,
13,
29947,
29871,
1309,
778,
443,
1111,
12504,
3353,
29899,
29893,
354,
271,
274,
681,
29883,
681,
13,
13,
29896,
18002,
4094,
13,
13,
29906,
6131,
1129,
787,
1153,
275,
1144,
13,
13,
29906,
6131,
1129,
787,
282,
457,
302,
8842,
29892,
15589,
29899,
307,
28470,
13,
13,
29941,
18350,
1559,
307,
1372,
29892,
12616,
287,
13,
13,
29906,
18350,
3104,
20452,
29892,
1236,
29872,
839,
322,
12616,
287,
13,
13,
29906,
18350,
2507,
4512,
29892,
1236,
29872,
839,
322,
12616,
287,
13,
13,
29906,
18350,
503,
1682,
305,
2172,
29892,
269,
506,
287,
13,
13,
30226,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
521,
860,
412,
294,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
797,
263,
2919,
10961,
17765,
29892,
12871,
278,
15276,
279,
457,
322,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
367,
1389,
363,
29871,
29945,
6233,
29892,
470,
2745,
3347,
9571,
29892,
23546,
5393,
23025,
29889,
313,
3629,
1854,
304,
1235,
278,
367,
1389,
409,
279,
1434,
23546,
5393,
1846,
13,
13,
855,
381,
297,
278,
373,
291,
29892,
1236,
2496,
29892,
330,
5621,
29892,
7013,
1050,
293,
29892,
322,
872,
600,
1617,
29889,
624,
381,
297,
3307,
4094,
304,
4612,
278,
367,
1389,
29544,
491,
472,
3203,
29871,
29906,
22831,
29889,
1771,
292,
304,
263,
1027,
1050,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29945,
6233,
29889,
13,
13,
6816,
273,
8000,
29892,
1925,
278,
274,
681,
29883,
681,
297,
263,
2919,
12580,
29880,
29889,
317,
677,
368,
1671,
297,
278,
4094,
29892,
263,
2217,
472,
263,
931,
29892,
14051,
10549,
278,
274,
681,
29883,
681,
1546,
596,
6567,
304,
3349,
599,
278,
301,
17204,
322,
304,
26606,
2730,
8244,
278,
274,
681,
29883,
681,
29889,
313,
10310,
29915,
29873,
679,
278,
274,
681,
29883,
681,
577,
5086,
7990,
1846,
624,
381,
297,
278,
1153,
275,
1144,
322,
282,
457,
302,
8842,
29889,
13,
13,
3542,
263,
784,
14128,
1821,
1886,
4183,
25972,
411,
270,
1160,
6419,
923,
267,
687,
29880,
720,
470,
263,
5941,
29892,
270,
1160,
6419,
270,
728,
304,
20466,
29889,
24674,
265,
278,
274,
681,
29883,
681,
29544,
964,
278,
923,
267,
687,
29880,
720,
301,
2827,
29936,
1016,
29915,
29873,
4870,
372,
29889,
15484,
278,
1886,
4183,
297,
278,
10961,
17765,
313,
1552,
1027,
1050,
292,
367,
1389,
29544,
9242,
19540,
278,
1886,
4183,
467,
17278,
29892,
10664,
29892,
363,
29871,
29896,
7234,
29892,
330,
2705,
23546,
5393,
278,
274,
681,
29883,
681,
1432,
29871,
29896,
29900,
6233,
313,
517,
3013,
372,
1652,
3096,
29891,
322,
1371,
372,
7984,
1584,
368,
467,
13,
13,
29907,
598,
3730,
3349,
278,
1886,
4183,
25972,
515,
278,
3104,
29889,
3789,
17786,
29889,
13,
13,
855,
381,
278,
1559,
307,
1372,
29892,
3104,
20452,
29892,
322,
2507,
4512,
964,
278,
1886,
29893,
29889,
17278,
29892,
10664,
29892,
363,
29871,
29906,
29900,
6233,
29889,
624,
381,
297,
263,
2217,
1045,
6504,
4094,
565,
278,
1886,
29893,
3430,
15589,
29889,
624,
381,
297,
278,
503,
1682,
305,
2172,
322,
521,
860,
412,
294,
29889,
17278,
29892,
10664,
29892,
363,
29871,
29906,
29900,
6233,
29889,
624,
381,
297,
278,
15795,
29889,
13,
13,
29924,
618,
278,
274,
681,
29883,
681,
297,
278,
4818,
310,
263,
2919,
715,
2620,
29889,
5293,
263,
2243,
15048,
805,
6150,
29892,
3349,
278,
18655,
1849,
515,
278,
1886,
29893,
29889,
826,
3881,
963,
322,
278,
367,
1389,
2820,
278,
274,
681,
29883,
681,
29889,
1816,
345,
278,
2545,
386,
297,
263,
8310,
29891,
13006,
373,
278,
2625,
470,
10293,
5617,
280,
372,
975,
278,
274,
681,
29883,
681,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29947,
29896,
13,
13,
7827,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
29947,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29900,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29947,
330,
13,
13,
7241,
495,
29871,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29896,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29896,
20793,
27654,
13,
13,
2277,
1886,
557,
8697,
1886,
29893,
13,
13,
29909,
2560,
1766,
1099,
311,
322,
925,
263,
2586,
310,
7013,
1989,
9922,
535,
788,
263,
4802,
14505,
310,
21054,
272,
304,
445,
13807,
367,
1389,
1886,
29893,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29896,
282,
618,
10814,
6393,
2246,
8889,
417,
262,
1886,
557,
29892,
599,
7962,
9950,
2313,
25600,
29892,
5700,
964,
29871,
29896,
29899,
22466,
13630,
267,
13,
13,
29896,
2919,
2654,
373,
291,
29892,
269,
506,
287,
964,
16835,
28774,
13,
13,
29896,
18002,
3578,
367,
261,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
2181,
15392,
13,
13,
29896,
18350,
270,
1255,
23041,
20447,
13,
13,
29896,
22780,
7013,
1989,
9922,
535,
29892,
1375,
1133,
13,
13,
29906,
2723,
567,
8870,
1490,
24354,
1559,
307,
1372,
13,
13,
29906,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
266,
25395,
470,
29871,
29896,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
29896,
6131,
1129,
265,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
11417,
13,
13,
30226,
734,
294,
1129,
265,
3500,
374,
1335,
13,
13,
15666,
2496,
304,
21779,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29953,
2319,
2654,
3104,
20452,
29892,
12616,
287,
13,
13,
29896,
18002,
3353,
282,
799,
29880,
373,
1080,
29892,
266,
1450,
287,
565,
14671,
2256,
13,
13,
29941,
6131,
1129,
787,
599,
29899,
15503,
4220,
1652,
473,
13,
13,
29941,
304,
29871,
29946,
6131,
1129,
787,
11220,
4094,
13,
13,
797,
263,
2919,
4091,
340,
12917,
270,
728,
29892,
23546,
4208,
278,
367,
1389,
29892,
2654,
373,
291,
29892,
367,
261,
29892,
7171,
506,
29892,
322,
23041,
20447,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
472,
3203,
29871,
29941,
6199,
29892,
23546,
5393,
23025,
29889,
13,
13,
29928,
6038,
278,
367,
1389,
29892,
2313,
20272,
278,
2654,
373,
291,
29892,
7171,
506,
29892,
322,
23041,
20447,
29892,
322,
620,
29530,
278,
23904,
29889,
13,
13,
3868,
271,
263,
2919,
29892,
9416,
1661,
303,
860,
2071,
7324,
975,
18350,
12871,
29889,
3462,
278,
367,
1389,
322,
9922,
535,
29889,
17278,
363,
29871,
29945,
6233,
29892,
470,
2745,
278,
367,
1389,
338,
3347,
9571,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
1559,
307,
1372,
29892,
2545,
386,
29892,
266,
25395,
29892,
6454,
1219,
11417,
29892,
3500,
374,
1335,
29892,
1236,
2496,
29892,
322,
278,
21676,
23904,
515,
278,
1766,
1099,
311,
29889,
960,
5181,
29892,
1671,
297,
3307,
4094,
304,
4612,
278,
367,
1389,
29544,
29889,
1771,
292,
304,
263,
1045,
309,
29889,
1952,
309,
363,
29871,
29945,
6233,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29896,
30226,
6199,
29889,
13,
13,
855,
381,
297,
278,
3104,
20452,
322,
282,
799,
29880,
373,
1080,
29889,
17278,
29892,
10664,
29892,
363,
29871,
29941,
29900,
304,
29871,
29946,
29900,
6233,
29889,
13,
13,
22908,
278,
1652,
473,
297,
263,
2319,
12580,
29880,
29889,
3462,
278,
4094,
29892,
377,
3873,
292,
304,
23556,
345,
29889,
317,
677,
368,
23546,
278,
1652,
473,
29544,
964,
278,
1886,
29893,
29889,
17278,
363,
29871,
29945,
6233,
29892,
470,
2745,
12003,
6419,
29892,
23546,
5393,
13672,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29900,
29955,
13,
13,
7827,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29945,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29929,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29941,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29941,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
5524,
415,
713,
6095,
13,
13,
3629,
550,
310,
1784,
17690,
505,
1063,
263,
652,
300,
653,
380,
481,
280,
297,
12892,
1951,
278,
1374,
2518,
1148,
29879,
29490,
29889,
3118,
25448,
9953,
1318,
338,
6095,
29892,
470,
285,
879,
367,
550,
1027,
1050,
287,
304,
1653,
263,
12003,
29892,
4048,
706,
1886,
29893,
29889,
7370,
577,
5086,
278,
270,
1255,
367,
550,
297,
278,
7250,
29892,
322,
896,
29915,
645,
367,
7960,
304,
7984,
363,
17803,
29889,
1816,
345,
278,
1886,
29893,
411,
14294,
3353,
29899,
29893,
354,
271,
282,
2028,
18423,
322,
263,
4497,
328,
310,
274,
1682,
398,
2596,
322,
6454,
20452,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
16947,
292,
18002,
639,
16330,
13,
13,
29906,
2723,
567,
270,
1255,
285,
879,
367,
550,
470,
6501,
2654,
26397,
3801,
367,
550,
29892,
12705,
363,
25702,
322,
528,
4401,
839,
367,
550,
29892,
364,
1144,
287,
29892,
322,
7482,
1312,
13,
13,
29906,
6131,
1129,
787,
288,
9258,
17182,
13,
13,
29896,
6131,
1129,
265,
5962,
274,
9735,
13,
13,
29941,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
2319,
14928,
10545,
313,
20620,
29899,
29500,
29897,
610,
29879,
2330,
29892,
3060,
2986,
13,
13,
29896,
6131,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
797,
263,
18350,
29892,
9416,
12507,
346,
8357,
29892,
577,
557,
278,
367,
550,
363,
29871,
29947,
6199,
297,
11220,
4094,
304,
4612,
491,
472,
3203,
29871,
29906,
22831,
29889,
10726,
278,
4094,
3196,
3064,
29892,
565,
1950,
29889,
390,
262,
344,
322,
270,
6038,
278,
367,
550,
297,
263,
784,
3825,
29889,
7106,
963,
304,
278,
7243,
29889,
6803,
297,
10849,
4094,
304,
4612,
29889,
624,
381,
297,
278,
17182,
29892,
274,
9735,
29892,
322,
7171,
506,
29889,
3439,
1050,
29892,
10664,
29892,
363,
29871,
29946,
29945,
6233,
29892,
470,
2745,
278,
367,
550,
526,
22707,
29892,
23546,
5393,
23025,
29889,
13,
13,
855,
381,
297,
278,
610,
29879,
2330,
29892,
454,
3712,
3623,
625,
29892,
322,
15795,
29889,
3439,
1050,
29892,
10664,
29892,
363,
29871,
29941,
29900,
6233,
29892,
470,
2745,
777,
310,
278,
367,
550,
3380,
304,
2867,
1623,
29892,
25391,
263,
907,
25934,
2967,
363,
278,
1791,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29941,
29900,
13,
13,
7827,
9950,
29871,
29947,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29953,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29953,
330,
13,
13,
7241,
495,
29871,
29896,
29929,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29906,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
380,
1279,
29892,
29871,
29906,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
951,
29888,
517,
874,
526,
628,
14803,
746,
337,
354,
630,
29889,
23004,
313,
1552,
11504,
11173,
362,
338,
4203,
1582,
1546,
376,
1181,
324,
29908,
322,
376,
8159,
4968,
884,
2000,
6095,
1612,
1280,
29892,
338,
4049,
6766,
363,
26044,
29892,
6041,
411,
263,
285,
1255,
470,
1045,
2356,
19710,
29889,
13,
13,
2277,
27654,
2222,
274,
465,
283,
1026,
13,
13,
29909,
15662,
5176,
274,
465,
283,
1026,
29892,
4257,
1156,
385,
2326,
6098,
2519,
3104,
2000,
263,
274,
465,
1772,
29892,
338,
263,
1886,
29893,
310,
4796,
367,
550,
322,
592,
1446,
29889,
1670,
526,
408,
1784,
6910,
310,
445,
1886,
29893,
408,
727,
526,
7984,
29879,
1058,
1207,
372,
29889,
910,
1873,
2225,
20098,
278,
2428,
29890,
29892,
5232,
29899,
3601,
1050,
287,
21054,
272,
310,
278,
1886,
29893,
541,
2703,
1169,
278,
27654,
29889,
7311,
445,
3913,
270,
1255,
367,
550,
29892,
367,
1854,
304,
731,
17786,
931,
304,
7984,
470,
577,
557,
963,
29889,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29947,
29871,
1309,
778,
270,
1255,
7027,
14299,
367,
550,
470,
916,
270,
1255,
4796,
367,
550,
29892,
12705,
363,
25702,
322,
528,
4401,
839,
367,
550,
29892,
364,
1144,
287,
29892,
322,
7482,
1312,
13,
13,
29947,
29871,
1309,
778,
270,
1255,
4628,
367,
550,
29892,
12705,
363,
25702,
322,
528,
4401,
839,
367,
550,
29892,
364,
1144,
287,
29892,
322,
7482,
1312,
13,
13,
29953,
2723,
567,
4094,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
30226,
2723,
567,
3060,
2986,
1559,
307,
1372,
13,
13,
29896,
30226,
2723,
567,
3060,
2986,
6432,
708,
13,
13,
29896,
2919,
373,
291,
29892,
3060,
2986,
13,
13,
29896,
2919,
7933,
22623,
1236,
2496,
29892,
3060,
2986,
13,
13,
29946,
18350,
7171,
506,
17184,
1960,
29892,
2181,
15392,
470,
1375,
1133,
13,
13,
29896,
30515,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
13,
13,
29896,
29871,
29947,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
12507,
346,
13,
13,
30226,
18002,
15589,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
30515,
18002,
6062,
465,
267,
13,
13,
29906,
18350,
270,
1255,
23041,
11308,
13,
13,
29896,
30226,
734,
294,
1129,
787,
270,
1255,
285,
2108,
295,
409,
5779,
29892,
2181,
15392,
13,
13,
30226,
304,
29871,
30642,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
13,
13,
30226,
734,
294,
1129,
265,
15795,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
797,
263,
14872,
288,
854,
29892,
23546,
4208,
278,
7027,
14299,
367,
550,
29892,
4628,
367,
550,
29892,
322,
4094,
29889,
1771,
292,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29906,
6233,
29892,
23546,
5393,
23025,
29889,
15154,
515,
278,
12871,
29889,
2803,
2317,
29892,
10664,
29892,
363,
29871,
29896,
7234,
29889,
390,
262,
344,
322,
270,
6038,
278,
367,
550,
297,
263,
784,
3825,
29889,
360,
719,
278,
14872,
288,
854,
411,
5650,
304,
29893,
1379,
29889,
13,
13,
2816,
29892,
297,
263,
2919,
12580,
29880,
29892,
23546,
4208,
1716,
4072,
310,
367,
550,
322,
278,
4094,
29889,
2803,
2317,
29892,
10664,
29892,
363,
29871,
29953,
304,
29871,
29947,
6199,
470,
975,
11147,
29889,
2860,
278,
367,
550,
505,
577,
12535,
29892,
29053,
344,
322,
270,
6038,
963,
297,
263,
784,
3825,
29889,
13,
13,
20769,
368,
805,
764,
278,
14872,
288,
854,
411,
7984,
292,
805,
764,
29889,
17278,
278,
1559,
307,
1372,
29892,
6432,
708,
29892,
373,
291,
29892,
22623,
1236,
2496,
29892,
322,
7171,
506,
975,
18350,
12871,
363,
29871,
29906,
29900,
6233,
29892,
470,
2745,
278,
1559,
307,
1372,
29892,
6432,
708,
29892,
322,
22623,
1236,
2496,
526,
22707,
322,
278,
373,
291,
338,
1407,
4964,
29892,
23546,
5393,
23025,
29889,
13,
13,
855,
381,
297,
278,
367,
550,
322,
278,
9886,
2348,
1127,
10070,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29906,
30226,
304,
29871,
29941,
6199,
29892,
470,
2745,
278,
367,
550,
526,
22707,
29892,
4417,
4094,
565,
5181,
322,
23546,
5393,
23025,
29889,
3295,
7543,
278,
23041,
11308,
1434,
16330,
278,
1886,
29893,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29946,
29946,
13,
13,
7827,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29929,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29955,
330,
13,
13,
7241,
495,
29871,
29896,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29900,
330,
13,
13,
14676,
262,
29871,
29896,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29896,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
2443,
16958,
338,
1304,
10106,
278,
3186,
322,
338,
2998,
491,
1784,
1422,
2983,
29901,
3444,
29915,
29879,
274,
465,
283,
1026,
29892,
7548,
271,
283,
1924,
29892,
367,
1389,
289,
473,
2543,
29582,
29892,
322,
16380,
453,
370,
1759,
344,
29936,
14198,
653,
29915,
29879,
330,
5059,
1161,
29936,
28838,
29915,
29879,
330,
398,
833,
29936,
278,
4275,
5933,
29915,
29879,
521,
2638,
378,
1559,
484,
29936,
13772,
21260,
423,
29915,
29879,
270,
5801,
16699,
29936,
322,
7513,
29915,
29879,
3151,
2722,
526,
599,
6455,
310,
1886,
5652,
29889,
13,
13,
2277,
1277,
15788,
3803,
2255,
13,
13,
4013,
18655,
13956,
13430,
273,
1886,
29893,
3732,
263,
5192,
29891,
592,
284,
297,
278,
6416,
29892,
746,
10849,
282,
3427,
9089,
338,
297,
4259,
29889,
450,
304,
28470,
282,
3427,
9089,
16717,
304,
3262,
12778,
263,
7575,
2181,
3322,
29889,
960,
366,
29915,
276,
773,
541,
725,
329,
10674,
1161,
29892,
304,
579,
278,
409,
5779,
408,
366,
723,
278,
282,
3427,
9089,
409,
5779,
29892,
470,
15649,
10650,
282,
3427,
9089,
409,
5779,
322,
1101,
278,
18112,
297,
278,
9522,
412,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
1886,
29893,
322,
29871,
29896,
6131,
1129,
265,
282,
3427,
9089,
409,
5779,
639,
16330,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
5036,
29899,
3293,
282,
3427,
9089,
29892,
1236,
29872,
839,
322,
8870,
1490,
29892,
470,
29871,
29941,
2723,
567,
13630,
287,
541,
725,
329,
10674,
1161,
13,
13,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
322,
29871,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
29892,
13931,
671,
13,
13,
29896,
734,
294,
1129,
265,
15795,
29899,
9021,
599,
29899,
15503,
4220,
4259,
292,
1999,
355,
13,
13,
30226,
2319,
373,
291,
29892,
3060,
2986,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29906,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
29879,
694,
29899,
29879,
1997,
29899,
23959,
302,
5301,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29906,
2723,
567,
14671,
2256,
3353,
29899,
17460,
26343,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
2362,
309,
29892,
2181,
25443,
13,
13,
29896,
734,
294,
1129,
265,
3500,
374,
1335,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
13,
13,
15156,
263,
805,
6150,
29892,
885,
26793,
714,
278,
282,
3427,
9089,
409,
5779,
29889,
390,
262,
344,
278,
409,
5779,
297,
263,
784,
3825,
29892,
2313,
20272,
278,
6031,
29889,
4121,
278,
409,
5779,
15589,
411,
5650,
304,
29893,
1379,
29889,
17934,
963,
304,
263,
1661,
303,
860,
289,
5086,
7243,
29889,
360,
374,
5617,
280,
29871,
29896,
734,
294,
1129,
265,
17182,
975,
278,
409,
5779,
29889,
14314,
682,
280,
278,
4259,
292,
1999,
355,
975,
278,
409,
5779,
29892,
23546,
5393,
304,
14405,
29889,
350,
1296,
363,
29871,
29941,
29900,
6233,
29892,
470,
2745,
22843,
17354,
29892,
23546,
5393,
1432,
29871,
29896,
29900,
6233,
29889,
13,
13,
6816,
273,
8000,
29892,
5700,
278,
282,
3427,
9089,
964,
29871,
30642,
29899,
22466,
13630,
267,
29889,
13,
13,
797,
263,
2919,
29892,
9416,
12507,
346,
8357,
470,
263,
14872,
288,
854,
29892,
12871,
278,
9886,
29871,
29896,
734,
294,
1129,
265,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
363,
29871,
29941,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
13672,
29889,
13,
13,
855,
381,
297,
278,
7171,
506,
29889,
17278,
363,
29871,
29941,
29900,
6923,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
9886,
2348,
1127,
10070,
29892,
3704,
278,
282,
3427,
9089,
13630,
267,
29889,
1771,
292,
304,
263,
1027,
1050,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29906,
29900,
6233,
29892,
470,
2745,
278,
282,
3427,
9089,
338,
22707,
29889,
19955,
280,
964,
16330,
12580,
3137,
29889,
14314,
682,
280,
1269,
16330,
411,
29871,
29896,
6131,
1129,
265,
282,
3427,
9089,
409,
5779,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29953,
29906,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29953,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29953,
29906,
330,
13,
13,
7241,
495,
29871,
29896,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29941,
330,
13,
13,
14676,
262,
29871,
29896,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29946,
380,
1279,
29892,
29871,
29896,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
450,
9886,
282,
3427,
9089,
409,
5779,
508,
367,
6087,
297,
385,
263,
2728,
523,
5639,
472,
5716,
10430,
363,
701,
304,
697,
4723,
470,
14671,
2256,
297,
385,
263,
2728,
523,
3889,
3298,
5639,
363,
701,
304,
1023,
7378,
29889,
13,
13,
2277,
16423,
29899,
29888,
3781,
7548,
271,
283,
1924,
13,
13,
4013,
22037,
5176,
270,
728,
5491,
7805,
19710,
24389,
29892,
10674,
1161,
29892,
322,
6454,
1219,
1886,
8734,
297,
288,
9258,
17182,
411,
20947,
310,
7171,
506,
322,
902,
5824,
29889,
910,
1873,
26830,
278,
5253,
310,
17182,
322,
12778,
263,
2586,
310,
2545,
386,
304,
6963,
714,
278,
21054,
943,
310,
278,
18655,
1849,
29889,
17450,
271,
283,
1924,
508,
367,
6766,
7375,
29892,
11220,
29892,
470,
472,
5716,
10430,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
13,
13,
30226,
2319,
19710,
24389,
470,
29871,
29896,
18350,
10369,
19710,
24389,
29892,
3060,
2986,
13,
13,
29896,
18350,
503,
1682,
305,
2172,
29892,
3060,
2986,
13,
13,
30226,
18350,
13328,
22623,
1236,
2496,
29892,
3060,
2986,
13,
13,
30226,
2319,
2654,
373,
291,
29892,
3060,
2986,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
18350,
6454,
1219,
29892,
1236,
29872,
839,
322,
3060,
2986,
13,
13,
30226,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
2362,
309,
13,
13,
30515,
18002,
528,
10511,
29892,
528,
1127,
7176,
29892,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
797,
263,
2919,
29892,
9416,
12507,
346,
8357,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
19710,
24389,
363,
29871,
29945,
304,
29871,
29953,
6233,
29892,
470,
2745,
3578,
22843,
17354,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
503,
1682,
305,
2172,
29892,
22623,
1236,
2496,
29892,
373,
291,
29892,
322,
7171,
506,
29889,
17278,
363,
29871,
29941,
304,
29871,
29946,
6233,
29892,
470,
2745,
278,
22623,
1236,
2496,
338,
22707,
29899,
29883,
3780,
29886,
322,
278,
373,
291,
338,
4964,
29892,
23546,
5393,
23025,
29889,
13,
13,
855,
381,
297,
278,
6454,
1219,
29892,
2545,
386,
29892,
15795,
29892,
322,
1236,
2496,
29889,
1771,
292,
304,
263,
1027,
1050,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
18655,
1849,
526,
22707,
29892,
23546,
5393,
23025,
29889,
13,
13,
15941,
515,
278,
12871,
29889,
624,
381,
297,
278,
2362,
309,
29889,
3387,
1434,
16330,
29892,
330,
2753,
728,
411,
278,
1459,
4467,
273,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29953,
29929,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29953,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29947,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
24972,
7520,
3352,
349,
1718,
2303,
29903,
2190,
29901,
7849,
4071,
29883,
708,
14422,
19417,
521,
18801,
470,
14837,
2710,
310,
1459,
4467,
273,
923,
968,
29889,
739,
5491,
756,
263,
23505,
21779,
1135,
278,
758,
29899,
629,
630,
2924,
29892,
577,
263,
2319,
5253,
12778,
4802,
21054,
272,
29889,
4803,
263,
18655,
519,
1236,
7367,
304,
528,
1351,
1283,
16835,
269,
29399,
29889,
13,
13,
2277,
24841,
29899,
29895,
790,
287,
11801,
285,
21211,
13,
13,
26772,
10631,
310,
11801,
29915,
29879,
289,
792,
29891,
491,
9098,
1886,
16958,
596,
25448,
18240,
310,
10849,
285,
21211,
297,
263,
14225,
322,
805,
4245,
6837,
310,
26163,
3623,
625,
29892,
24841,
503,
342,
29892,
322,
274,
2559,
314,
265,
29889,
739,
29915,
29879,
628,
14803,
321,
2579,
14294,
470,
521,
24455,
363,
26044,
29892,
6808,
814,
29892,
470,
1584,
408,
263,
2625,
270,
728,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29906,
24261,
1236,
14520,
29892,
452,
312,
279,
1475,
29892,
21783,
293,
1862,
29892,
715,
6762,
29892,
470,
14954,
2722,
29892,
470,
263,
10296,
313,
12717,
29871,
29946,
2723,
567,
29897,
13,
13,
30226,
18002,
29871,
29896,
29900,
29900,
29995,
26163,
3623,
625,
13,
13,
29999,
342,
310,
29871,
29896,
18350,
24841,
29892,
5700,
964,
10076,
567,
470,
867,
630,
13,
13,
29896,
274,
2559,
314,
265,
12070,
313,
12717,
29871,
29941,
22831,
1472,
29897,
13,
13,
29896,
6131,
1129,
265,
17354,
26438,
13,
13,
29896,
6131,
1129,
265,
24841,
29899,
29888,
4112,
4395,
619,
802,
332,
29892,
1316,
408,
6265,
1085,
11697,
313,
25253,
29897,
13,
13,
30515,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
313,
29888,
3781,
368,
867,
630,
16389,
29897,
13,
13,
15666,
295,
322,
22754,
278,
15774,
29892,
28967,
278,
7200,
15774,
29892,
1316,
408,
1236,
14520,
29892,
964,
321,
18919,
29879,
322,
8870,
1747,
470,
12616,
292,
278,
7968,
15774,
29892,
1316,
408,
21783,
293,
1862,
322,
14954,
2722,
29889,
13,
13,
797,
263,
18350,
29892,
9416,
12507,
346,
8357,
29892,
23546,
4208,
278,
15774,
322,
278,
9886,
2348,
1127,
10070,
29889,
1771,
292,
304,
263,
1045,
309,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
15774,
338,
22707,
322,
278,
12507,
346,
756,
12003,
6419,
29892,
23546,
5393,
13672,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29896,
29945,
13,
13,
7827,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29947,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
15774,
13,
13,
29937,
1886,
11500,
13,
13,
386,
1794,
29899,
3293,
521,
21475,
3104,
303,
860,
414,
13,
13,
546,
4090,
713,
439,
1789,
29874,
4497,
328,
13,
13,
19585,
3712,
297,
7933,
23429,
13,
13,
1376,
481,
423,
23912,
411,
1616,
436,
23195,
13,
13,
29885,
1558,
1379,
7984,
287,
297,
19006,
13,
13,
303,
3096,
287,
9709,
29874,
7776,
17807,
9679,
29879,
411,
24841,
29899,
3460,
261,
12507,
346,
13,
13,
517,
21154,
297,
7933,
373,
291,
2545,
386,
13,
13,
915,
261,
29899,
1557,
14927,
521,
21475,
411,
12461,
29887,
583,
13,
13,
14625,
21305,
29899,
272,
927,
2545,
617,
5079,
13,
13,
2409,
2592,
7933,
367,
550,
411,
394,
8315,
29879,
13,
13,
29885,
11925,
18655,
1849,
411,
330,
5621,
13,
13,
386,
1794,
14225,
19408,
411,
286,
4524,
13,
13,
7789,
11500,
338,
697,
310,
278,
1900,
5837,
363,
9687,
29879,
304,
11551,
1009,
2927,
322,
19905,
1009,
18254,
374,
1237,
29889,
2648,
24099,
278,
1886,
11500,
23904,
322,
4417,
805,
1575,
322,
263,
456,
271,
1199,
29892,
366,
508,
3041,
1509,
1886,
2795,
9687,
411,
628,
9593,
21054,
272,
29936,
363,
901,
17818,
344,
21054,
272,
29892,
788,
263,
456,
271,
1199,
1316,
408,
7171,
506,
322,
373,
291,
304,
278,
9687,
3528,
470,
5101,
278,
9687,
411,
263,
628,
14803,
12507,
346,
29889,
7311,
21837,
1301,
25534,
12871,
304,
9687,
901,
29497,
1135,
2845,
1045,
6504,
4094,
470,
7375,
4799,
29892,
1886,
11500,
338,
697,
310,
278,
4996,
342,
7984,
292,
13698,
29892,
3907,
372,
10839,
363,
278,
19587,
7984,
29889,
23732,
6233,
366,
508,
505,
263,
9045,
29891,
592,
284,
470,
2625,
270,
728,
373,
278,
1591,
29889,
13,
13,
7789,
11500,
338,
10839,
363,
18655,
1849,
29889,
887,
508,
3013,
372,
2560,
491,
4417,
738,
10849,
18655,
519,
304,
263,
1886,
4183,
25972,
29892,
470,
366,
508,
18864,
263,
2846,
4805,
6233,
304,
1207,
5260,
21305,
29899,
29949,
3881,
4358,
617,
5079,
4259,
287,
411,
7537,
15816,
322,
266,
25395,
470,
341,
11925,
17236,
300,
1849,
411,
402,
5621,
427,
29308,
411,
7171,
506,
322,
454,
3712,
29889,
13,
13,
3047,
1886,
11500,
29892,
366,
508,
11039,
403,
901,
2646,
1144,
964,
596,
652,
300,
29936,
445,
11043,
3732,
963,
3578,
322,
1652,
3096,
29891,
29889,
3967,
2431,
4090,
713,
751,
1789,
29874,
3956,
328,
304,
1074,
920,
2560,
372,
338,
29889,
887,
508,
427,
4018,
596,
652,
300,
1584,
4340,
491,
4417,
5181,
2703,
2442,
29899,
29941,
29879,
411,
9427,
1316,
408,
3956,
3712,
297,
7646,
1920,
29874,
29889,
13,
13,
29924,
520,
1886,
11500,
338,
2309,
491,
24421,
278,
9687,
297,
263,
289,
314,
833,
29877,
1886,
4183,
470,
784,
14128,
1821,
11915,
470,
4047,
293,
650,
25972,
8872,
2760,
975,
1027,
1050,
292,
23904,
29936,
278,
9687,
338,
7984,
287,
491,
9914,
7375,
325,
26191,
29889,
350,
314,
833,
29877,
21837,
414,
29892,
11399,
635,
1304,
297,
20021,
7984,
292,
29892,
526,
8688,
304,
6216,
297,
263,
281,
554,
29892,
541,
896,
508,
884,
664,
297,
777,
7200,
12507,
13300,
550,
29889,
2688,
508,
884,
367,
5096,
287,
373,
2246,
310,
1269,
916,
29892,
577,
366,
508,
16949,
21837,
901,
1135,
697,
9687,
472,
263,
931,
29889,
887,
508,
671,
278,
289,
314,
833,
29877,
21837,
414,
304,
21837,
9687,
29879,
411,
1422,
7984,
292,
3064,
29892,
11077,
278,
15359,
408,
1269,
9687,
338,
7743,
29889,
20360,
29892,
784,
14128,
1821,
470,
4047,
293,
650,
21837,
414,
526,
11071,
29892,
297,
4548,
6270,
29892,
322,
4780,
304,
5941,
29889,
2688,
6216,
964,
263,
12875,
310,
282,
1862,
29892,
541,
896,
4049,
508,
29915,
29873,
4808,
408,
1568,
9687,
408,
508,
278,
289,
314,
833,
29877,
21837,
414,
29889,
13,
13,
29943,
2092,
7984,
287,
427,
3500,
453,
866,
29892,
470,
427,
15603,
297,
263,
18203,
310,
7984,
292,
610,
305,
358,
470,
394,
9735,
398,
1701,
309,
322,
7984,
287,
297,
278,
288,
854,
29892,
338,
884,
263,
883,
310,
1886,
11500,
393,
3913,
278,
9687,
29879,
29915,
1914,
3623,
1575,
304,
7984,
29889,
910,
1158,
3732,
11910,
2761,
322,
5941,
786,
263,
15101,
29892,
297,
6124,
304,
27032,
385,
13978,
573,
24329,
29892,
411,
1269,
2022,
2805,
670,
470,
902,
1914,
18203,
30003,
4716,
508,
367,
7333,
1891,
2729,
373,
278,
4538,
261,
29915,
29879,
5821,
2063,
29889,
13,
13,
4986,
317,
4330,
5194,
29901,
259,
13,
1762,
7984,
9687,
773,
21837,
29892,
5491,
297,
263,
289,
314,
833,
29877,
1886,
4183,
470,
1886,
4183,
25972,
975,
1045,
6504,
470,
1027,
1050,
292,
4094,
297,
263,
10664,
7243,
29892,
470,
427,
15603,
297,
7984,
292,
610,
305,
358,
470,
394,
9735,
398,
1701,
309,
313,
5203,
408,
427,
3500,
453,
866,
511,
14372,
278,
9687,
304,
7984,
297,
967,
1914,
3623,
1575,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
1530,
14128,
1821,
11915,
470,
4047,
293,
650,
1886,
4183,
25972,
29892,
289,
314,
833,
29877,
1886,
4183,
29892,
2071,
7324,
29892,
281,
554,
29892,
470,
12507,
346,
8357,
313,
2541,
17343,
29892,
565,
773,
263,
784,
14128,
1821,
1886,
4183,
25972,
511,
7984,
292,
610,
305,
358,
470,
394,
9735,
398,
1701,
309,
29892,
29181,
12237,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
1932,
1886,
11500,
373,
278,
380,
586,
300,
459,
29892,
1207,
1854,
278,
9687,
269,
1169,
2038,
278,
4094,
322,
3508,
29915,
29873,
1014,
1050,
3192,
29889,
13,
13,
30119,
4803,
16835,
29892,
2821,
29892,
470,
5578,
1682,
296,
15617,
4841,
29892,
1316,
408,
4094,
29892,
2545,
386,
29892,
19006,
29892,
470,
367,
261,
29889,
319,
5405,
9570,
29891,
15617,
4841,
1316,
408,
27274,
29892,
607,
674,
3151,
29881,
280,
29892,
322,
12003,
15617,
4841,
1316,
408,
6454,
1219,
12507,
346,
29892,
607,
508,
12138,
29889,
13,
13,
30119,
960,
366,
817,
304,
21837,
1554,
363,
901,
1135,
29871,
29896,
29945,
470,
29871,
29906,
29900,
6233,
29892,
367,
1854,
304,
1423,
278,
3233,
310,
23904,
23025,
29889,
6975,
777,
4805,
23904,
1045,
6504,
297,
263,
5004,
3104,
470,
413,
1803,
280,
322,
788,
278,
7375,
23904,
565,
4312,
313,
915,
1854,
304,
788,
278,
23904,
304,
278,
3104,
322,
451,
304,
278,
9687,
467,
13,
13,
30119,
1932,
7984,
292,
1554,
427,
3500,
453,
866,
29892,
671,
7984,
292,
610,
305,
358,
3265,
1135,
394,
9735,
398,
1701,
309,
565,
366,
29915,
276,
1985,
411,
10712,
22193,
293,
2348,
1127,
10070,
1316,
408,
13848,
387,
279,
29892,
6454,
20452,
29892,
6454,
1219,
12507,
346,
29892,
322,
7537,
15816,
285,
21211,
29892,
607,
674,
7657,
304,
278,
1701,
309,
29889,
13,
13,
30119,
450,
17343,
310,
263,
289,
314,
833,
29877,
1886,
4183,
674,
6425,
11831,
19163,
2730,
391,
545,
29892,
3265,
1135,
10293,
3262,
372,
1250,
11480,
278,
9687,
746,
278,
17343,
338,
26239,
313,
4716,
508,
21749,
1082,
278,
21054,
272,
467,
13,
13,
30119,
1932,
1886,
11500,
304,
21154,
29892,
8158,
278,
7101,
577,
393,
278,
21054,
943,
674,
6584,
300,
10492,
278,
304,
21154,
2253,
29889,
13,
13,
30119,
17236,
300,
1849,
881,
6216,
297,
263,
2323,
7546,
297,
278,
1886,
4183,
25972,
304,
4772,
777,
14171,
975,
1111,
12504,
1550,
4045,
526,
1090,
1111,
12504,
29889,
13,
13,
30119,
7849,
18655,
1849,
881,
367,
1886,
2795,
925,
2745,
22707,
29899,
29883,
3780,
29886,
29889,
1763,
1243,
29892,
4635,
278,
6872,
310,
263,
610,
292,
889,
1607,
964,
278,
12003,
342,
760,
29936,
565,
278,
889,
1607,
28103,
263,
2217,
17711,
29892,
769,
278,
18655,
1849,
526,
1886,
2795,
6284,
29889,
13,
13,
30119,
2443,
2795,
9687,
29879,
881,
367,
6766,
7389,
1156,
7984,
292,
1363,
896,
508,
4953,
14051,
495,
29891,
322,
15589,
408,
896,
12528,
29889,
13,
13,
30119,
319,
4868,
1027,
1050,
338,
451,
2337,
4780,
304,
1072,
5987,
29892,
7148,
373,
263,
10489,
380,
586,
300,
459,
29892,
577,
1749,
9522,
5547,
1016,
29915,
29873,
2106,
472,
825,
10430,
304,
1027,
1050,
29889,
7753,
472,
278,
19604,
4444,
373,
777,
380,
586,
300,
3554,
29892,
278,
12871,
1122,
367,
2086,
17818,
344,
29892,
607,
674,
4556,
278,
23904,
304,
1045,
309,
29889,
1932,
1027,
1050,
292,
29892,
263,
2319,
289,
23232,
881,
2867,
1549,
278,
7101,
310,
278,
23904,
1432,
1473,
470,
1023,
29889,
960,
901,
289,
431,
7586,
14451,
304,
278,
7101,
29892,
769,
5224,
278,
12871,
470,
9500,
278,
3104,
304,
697,
2625,
310,
278,
12138,
261,
29889,
13,
13,
30119,
1763,
4772,
1716,
975,
15108,
292,
322,
1090,
15108,
292,
27654,
322,
282,
5059,
2202,
29892,
671,
263,
27654,
14563,
8328,
304,
1423,
1016,
18543,
29889,
15154,
278,
27654,
470,
282,
5059,
2202,
515,
278,
12871,
1434,
23800,
278,
14426,
29899,
949,
14563,
8328,
29889,
24505,
278,
14563,
8328,
964,
278,
4818,
29892,
470,
12003,
342,
760,
29892,
310,
278,
27654,
29892,
3907,
1854,
278,
14563,
8328,
1838,
29915,
29873,
6023,
289,
650,
470,
9950,
29889,
13,
13,
15349,
1254,
18322,
29949,
8452,
15842,
317,
4330,
5194,
4214,
13,
13,
2008,
29874,
1181,
397,
29901,
1383,
514,
15161,
322,
22707,
977,
10376,
1316,
408,
6635,
15161,
470,
6928,
481,
423,
526,
15129,
19995,
29892,
408,
297,
323,
309,
481,
423,
18744,
1691,
411,
3012,
436,
23195,
29889,
13,
13,
29925,
5059,
2202,
29901,
5556,
9593,
5700,
29879,
29892,
1316,
408,
7013,
1989,
1612,
497,
1080,
470,
521,
21475,
2078,
19416,
29892,
526,
10839,
29892,
408,
297,
1522,
261,
29899,
29903,
1760,
287,
678,
21475,
411,
17236,
29887,
583,
29889,
1394,
671,
5962,
521,
21475,
24207,
297,
624,
3096,
287,
8344,
29874,
315,
8846,
482,
21809,
29879,
411,
26048,
29899,
29954,
5621,
23863,
346,
29889,
13,
13,
29963,
387,
300,
13956,
14409,
262,
29901,
2443,
11500,
480,
1169,
22707,
9687,
29879,
393,
7984,
9098,
29892,
3704,
304,
21154,
29936,
1018,
323,
974,
29884,
297,
7646,
1551,
291,
4358,
386,
29889,
13,
13,
29963,
387,
300,
1849,
29901,
838,
3242,
599,
18655,
1849,
14169,
515,
1886,
11500,
29892,
7148,
1906,
393,
526,
18180,
22707,
29892,
1316,
408,
1559,
307,
1372,
29892,
408,
862,
351,
375,
29892,
7933,
367,
550,
29892,
322,
2654,
3104,
20452,
29889,
3967,
8836,
2592,
7646,
1522,
550,
411,
838,
8315,
29879,
322,
341,
11925,
17236,
300,
1849,
411,
402,
5621,
29892,
607,
7805,
1559,
307,
1372,
29892,
5777,
352,
361,
13609,
29892,
322,
26438,
15101,
1236,
294,
29889,
13,
13,
2277,
266,
1794,
29899,
3293,
521,
21475,
3104,
303,
860,
414,
13,
13,
29931,
331,
549,
26771,
322,
274,
309,
424,
307,
2367,
1438,
2217,
9741,
263,
13182,
310,
498,
1794,
21054,
272,
29889,
450,
2560,
652,
3262,
12507,
346,
29892,
1754,
411,
724,
12776,
1236,
2496,
29892,
8128,
385,
2715,
16267,
363,
1438,
2307,
29899,
29881,
2926,
568,
2586,
267,
29889,
910,
9522,
412,
27641,
5948,
565,
366,
864,
304,
9080,
1438,
3104,
303,
860,
414,
408,
385,
623,
300,
3950,
472,
596,
2446,
11705,
292,
29889,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
29871,
29941,
3104,
303,
860,
414,
639,
16330,
13,
13,
3738,
2208,
4214,
13,
13,
29947,
29871,
1309,
778,
5962,
19309,
2222,
521,
21475,
24207,
13,
13,
30515,
18002,
1375,
1133,
4094,
521,
342,
29876,
8842,
29892,
7482,
1312,
13,
13,
29906,
6131,
1129,
787,
1407,
1436,
873,
1375,
1133,
9336,
549,
26771,
13,
13,
29906,
6131,
1129,
787,
1375,
1133,
7933,
373,
1080,
313,
12692,
760,
871,
29897,
13,
13,
29906,
6131,
1129,
787,
1375,
1133,
10849,
274,
309,
424,
307,
13,
13,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
734,
294,
1129,
265,
26438,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
30515,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
13,
13,
29896,
2919,
19710,
4796,
13,
13,
29896,
6131,
1129,
265,
4094,
29892,
29871,
30226,
18002,
4094,
29892,
322,
29871,
30226,
18002,
4094,
29892,
13931,
671,
13,
13,
29906,
29946,
20668,
265,
11463,
22437,
29892,
266,
1450,
287,
565,
14671,
2256,
13,
13,
29896,
30226,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
322,
29871,
29896,
30226,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
29892,
13931,
671,
13,
13,
8132,
29965,
4741,
13,
13,
31690,
18002,
8656,
19408,
13848,
387,
279,
13,
13,
29906,
6131,
1129,
787,
1993,
303,
860,
29899,
2311,
10076,
567,
310,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
2319,
10849,
724,
12776,
1236,
2496,
29892,
16835,
368,
269,
506,
287,
313,
4149,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
797,
263,
2919,
12580,
29880,
29892,
773,
596,
6567,
470,
263,
805,
6150,
29892,
14405,
278,
27523,
2348,
1127,
10070,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
19710,
4796,
322,
29871,
29896,
6131,
1129,
265,
4094,
29889,
13,
13,
1433,
3881,
278,
20668,
265,
11463,
22437,
297,
263,
2323,
7546,
373,
263,
2919,
289,
5086,
9869,
29889,
7407,
263,
5004,
2919,
289,
5086,
9869,
411,
7984,
292,
610,
305,
358,
29889,
13,
13,
22908,
278,
2919,
12580,
29880,
29892,
289,
5086,
9869,
411,
278,
20668,
265,
11463,
22437,
29892,
2319,
12580,
29880,
29892,
322,
289,
5086,
9869,
411,
7984,
292,
610,
305,
358,
297,
263,
1948,
29892,
11470,
29899,
1220,
13460,
29889,
13,
13,
22150,
263,
885,
424,
6131,
1129,
265,
310,
27523,
297,
278,
4818,
310,
1269,
14476,
29889,
1771,
1878,
278,
19710,
4796,
29544,
2820,
278,
12770,
310,
697,
14476,
29889,
402,
1624,
278,
26995,
322,
12534,
305,
963,
4208,
472,
278,
2246,
29892,
3907,
1854,
599,
278,
12770,
526,
409,
7943,
29889,
15484,
278,
3104,
303,
6541,
373,
278,
289,
5086,
9869,
411,
278,
7984,
292,
610,
305,
358,
313,
1552,
610,
305,
358,
674,
3013,
278,
3104,
303,
860,
414,
515,
12070,
292,
304,
278,
289,
5086,
9869,
1550,
896,
2317,
467,
830,
11666,
411,
278,
9886,
11463,
22437,
29892,
3948,
9776,
577,
278,
3104,
303,
860,
414,
1016,
29915,
29873,
6023,
29889,
13,
13,
797,
263,
2919,
1661,
303,
860,
2071,
7324,
29892,
12871,
29871,
29896,
30226,
734,
294,
1129,
787,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
15484,
4203,
278,
3104,
303,
860,
414,
297,
278,
2071,
7324,
577,
896,
1016,
29915,
29873,
6023,
29889,
17278,
363,
29871,
29906,
6233,
29892,
470,
2745,
278,
5970,
29879,
526,
3347,
9571,
29889,
6803,
29871,
30226,
18002,
4094,
964,
278,
2071,
7324,
29889,
2443,
314,
278,
3104,
303,
860,
414,
29892,
10664,
29892,
363,
1048,
29871,
29941,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
746,
366,
5700,
263,
3104,
303,
6541,
297,
4203,
29889,
5293,
263,
805,
271,
2497,
29892,
6782,
304,
263,
14294,
16330,
715,
2620,
29889,
830,
11666,
411,
278,
9886,
29871,
29896,
30226,
734,
294,
1129,
787,
17182,
29892,
3104,
303,
860,
414,
29892,
322,
29871,
30226,
18002,
4094,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
20710,
798,
1351,
519,
12580,
29880,
29892,
23546,
4208,
278,
12507,
346,
2348,
1127,
10070,
29889,
20279,
798,
1351,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29941,
29900,
6923,
29889,
1816,
345,
278,
12507,
346,
411,
278,
3104,
303,
860,
414,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29941,
29900,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29900,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29953,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29896,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
11060,
29924,
20614,
4717,
1799,
29901,
3878,
339,
2705,
1304,
297,
317,
449,
15879,
20021,
2723,
275,
1475,
29892,
9336,
549,
26771,
12778,
263,
454,
3712,
4561,
21054,
272,
304,
9687,
29879,
29889,
8836,
549,
26771,
881,
505,
263,
15509,
304,
18350,
7933,
380,
2235,
322,
263,
15509,
13328,
304,
4359,
4796,
3876,
1095,
29889,
3295,
7543,
278,
8227,
29890,
322,
11420,
11308,
322,
671,
871,
278,
5970,
29871,
29941,
304,
29871,
29945,
22831,
310,
278,
6426,
380,
2235,
29889,
8836,
549,
26771,
508,
367,
1476,
297,
20021,
2791,
1691,
322,
297,
278,
7738,
4004,
310,
1784,
4071,
29883,
708,
14422,
29889,
13,
13,
2277,
639,
4090,
713,
439,
1789,
29874,
4497,
328,
13,
13,
797,
445,
18655,
13956,
9953,
1318,
4497,
328,
29892,
263,
11785,
274,
309,
424,
307,
29899,
28046,
10714,
292,
3578,
368,
1302,
1446,
263,
2927,
1319,
1999,
355,
310,
2431,
4090,
713,
380,
481,
793,
3704,
439,
1789,
29874,
29892,
367,
550,
29892,
26343,
29892,
22623,
1236,
22437,
29892,
322,
6454,
20452,
29889,
2443,
11500,
278,
439,
1789,
29874,
3732,
278,
2646,
1144,
3578,
322,
1652,
3096,
29891,
322,
338,
1532,
7088,
278,
4805,
931,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29928,
26785,
4214,
13,
13,
30515,
18002,
10849,
301,
603,
3623,
625,
13,
13,
29941,
6131,
1129,
787,
10849,
24841,
3623,
625,
13,
13,
29941,
6131,
1129,
787,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29896,
30226,
6131,
1129,
787,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29896,
734,
294,
1129,
265,
5962,
1034,
29875,
3825,
13,
13,
29896,
734,
294,
1129,
265,
298,
4992,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29903,
1964,
3035,
13,
13,
29896,
18002,
4094,
13,
13,
30226,
18002,
443,
1111,
12504,
439,
1789,
29874,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
7027,
14299,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29929,
29871,
1309,
778,
14671,
2256,
3353,
29899,
17460,
26343,
29892,
266,
1450,
287,
13,
13,
29896,
18350,
6454,
1219,
29892,
3060,
2986,
13,
13,
30642,
18002,
16835,
368,
269,
506,
287,
1223,
18054,
20629,
22623,
1236,
22437,
313,
12717,
29871,
29946,
29897,
13,
13,
29896,
2319,
373,
291,
29892,
8870,
1490,
322,
16835,
368,
269,
506,
287,
13,
13,
31690,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29906,
2919,
2898,
29899,
833,
2356,
29808,
29892,
1269,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
10714,
292,
2348,
1127,
10070,
29889,
26428,
322,
337,
1341,
4087,
403,
29889,
13,
13,
797,
263,
2919,
12507,
346,
8357,
29892,
6963,
29871,
29896,
18002,
4094,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
624,
381,
297,
278,
439,
1789,
29874,
29889,
17278,
363,
29871,
29896,
29900,
6233,
29892,
470,
2745,
278,
439,
1789,
29874,
338,
22039,
7984,
287,
29889,
360,
6038,
297,
263,
2691,
29899,
4467,
29882,
269,
2418,
29889,
390,
262,
344,
411,
11220,
4094,
304,
12528,
29889,
360,
6038,
1532,
29889,
17934,
278,
439,
1789,
29874,
304,
263,
784,
14128,
1821,
1886,
4183,
25972,
29889,
13,
13,
797,
278,
1021,
2919,
7243,
29892,
6963,
29871,
29896,
297,
305,
310,
4094,
304,
263,
1045,
309,
975,
18350,
12871,
29889,
15484,
278,
1886,
4183,
25972,
297,
278,
7243,
29889,
8561,
1854,
278,
4094,
1838,
29915,
29873,
6023,
278,
5970,
310,
278,
1886,
4183,
29889,
26428,
278,
25972,
411,
263,
5941,
29892,
900,
7176,
270,
728,
304,
20466,
29889,
17278,
278,
439,
1789,
29874,
29892,
10664,
29892,
363,
29871,
29896,
29900,
6233,
29892,
470,
2745,
22707,
29889,
15154,
515,
278,
12871,
29889,
2379,
3096,
411,
263,
27350,
29889,
13,
13,
4300,
571,
278,
439,
1789,
29874,
304,
263,
2919,
16330,
12580,
29880,
29889,
624,
381,
297,
278,
9886,
4497,
328,
2348,
1127,
10070,
5174,
278,
29808,
29889,
6803,
278,
10714,
292,
975,
278,
4497,
328,
29892,
28189,
292,
304,
24296,
29889,
402,
2753,
728,
411,
278,
29808,
29889,
1816,
345,
7389,
470,
4612,
322,
337,
1341,
4087,
403,
363,
1048,
29871,
29906,
6199,
304,
9080,
521,
24455,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29945,
29955,
13,
13,
7827,
9950,
29871,
29896,
29900,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29929,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29947,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
29953,
330,
13,
13,
7241,
495,
29871,
29896,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29896,
330,
13,
13,
14676,
262,
29871,
29896,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29896,
20793,
27654,
29892,
29871,
29896,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
960,
366,
5821,
29892,
366,
508,
23764,
694,
29899,
29879,
1997,
29899,
23959,
4628,
367,
550,
470,
2431,
4090,
713,
367,
550,
29892,
884,
2998,
408,
639,
29884,
1562,
367,
550,
470,
24777,
13328,
367,
550,
29892,
363,
278,
7027,
14299,
367,
550,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
660,
29965,
1177,
29949,
29909,
29901,
3455,
616,
368,
7984,
292,
278,
439,
1789,
29874,
297,
1045,
6504,
4094,
322,
769,
1886,
11500,
372,
14874,
278,
2646,
262,
515,
14171,
286,
1878,
29891,
29889,
751,
1789,
29874,
338,
8072,
7984,
287,
746,
372,
338,
22707,
322,
263,
21577,
3151,
839,
4796,
3244,
11176,
2710,
515,
278,
2646,
262,
29889,
13,
13,
2277,
4497,
3712,
297,
7933,
23429,
13,
13,
25627,
4497,
3712,
330,
2705,
1886,
2232,
304,
639,
20309,
373,
263,
6592,
310,
16835,
368,
269,
506,
287,
10849,
301,
603,
29889,
7646,
23429,
3041,
3880,
411,
4628,
1236,
2496,
29883,
1398,
29879,
338,
278,
1886,
11500,
23904,
29889,
319,
14225,
368,
2930,
12150,
12507,
346,
310,
7933,
373,
1080,
29892,
577,
29891,
29892,
298,
4992,
29892,
322,
901,
301,
603,
8341,
267,
278,
270,
728,
29889,
349,
1466,
445,
411,
263,
3353,
2646,
262,
1316,
408,
17354,
19408,
470,
439,
1789,
29874,
322,
8836,
2592,
7646,
1522,
550,
411,
838,
8315,
29879,
304,
4866,
596,
592,
284,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
29953,
2323,
29899,
643,
1747,
289,
810,
310,
7933,
23429,
13,
13,
29896,
6131,
1129,
265,
4628,
1236,
2496,
29883,
1398,
29879,
313,
25253,
29897,
13,
13,
29946,
2723,
567,
7375,
4094,
322,
29871,
29896,
18002,
7375,
4094,
313,
361,
4312,
511,
13931,
671,
13,
13,
29945,
18350,
301,
1355,
29892,
16835,
368,
269,
506,
287,
13,
13,
29946,
4497,
3712,
977,
10376,
411,
19309,
313,
12717,
29871,
29945,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
8132,
29965,
4741,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
2319,
7171,
506,
17184,
345,
29892,
1436,
873,
1375,
1133,
13,
13,
30515,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
313,
25253,
29897,
13,
13,
30515,
18002,
390,
583,
1847,
470,
916,
18350,
29899,
29879,
16668,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
470,
29871,
30515,
18002,
29871,
29896,
29900,
29900,
29995,
26163,
3623,
625,
13,
13,
30515,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
470,
18655,
519,
2545,
386,
13,
13,
29896,
304,
29871,
29906,
6131,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
298,
4992,
13,
13,
30226,
734,
294,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
18350,
7933,
373,
291,
313,
26031,
322,
3578,
7933,
5633,
871,
511,
16835,
368,
269,
506,
287,
7936,
265,
635,
13,
13,
22908,
278,
23429,
289,
810,
322,
1236,
2496,
29883,
1398,
29879,
297,
263,
18350,
12917,
12580,
29880,
29889,
6803,
297,
29871,
29946,
2723,
567,
7375,
4094,
29889,
2443,
1022,
29892,
10664,
29892,
363,
29871,
29945,
304,
29871,
29953,
6233,
29889,
13,
13,
6816,
273,
8000,
29892,
1196,
263,
2919,
289,
314,
833,
29877,
470,
784,
14128,
1821,
1886,
4183,
25972,
411,
278,
301,
603,
269,
29399,
29892,
975,
433,
3262,
963,
2745,
896,
6446,
4612,
278,
5970,
29889,
15484,
278,
9427,
977,
10376,
373,
278,
301,
603,
269,
29399,
29892,
29250,
963,
472,
3203,
29871,
29896,
297,
305,
12435,
29889,
13,
13,
797,
517,
263,
2071,
7324,
470,
281,
554,
2919,
3307,
304,
4808,
278,
1886,
4183,
29892,
1671,
278,
23429,
29544,
304,
263,
10809,
310,
1048,
29871,
29906,
22831,
29889,
960,
4312,
29892,
1671,
297,
777,
470,
599,
310,
278,
9886,
29871,
29896,
18002,
4094,
29889,
1771,
292,
304,
263,
1027,
1050,
975,
18350,
12871,
29889,
13,
13,
22908,
278,
1886,
4183,
297,
278,
2071,
7324,
29889,
8561,
1854,
278,
23904,
1838,
29915,
29873,
6023,
278,
5970,
310,
278,
1886,
4183,
29889,
960,
773,
263,
289,
314,
833,
29877,
1886,
4183,
29892,
4612,
372,
411,
278,
17343,
29889,
960,
773,
263,
784,
14128,
1821,
1886,
4183,
25972,
29892,
19932,
368,
4612,
278,
2071,
7324,
29889,
3439,
1050,
363,
29871,
29945,
304,
29871,
29955,
6233,
29892,
470,
2745,
278,
9427,
338,
7984,
287,
304,
278,
7429,
1016,
18543,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12507,
346,
8357,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
7171,
506,
322,
2654,
1236,
2496,
17422,
10794,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
5227,
629,
424,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
19006,
322,
2545,
386,
29889,
1771,
292,
304,
263,
1045,
309,
29889,
1952,
309,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
23546,
5393,
21003,
29889,
624,
381,
297,
278,
301,
603,
3623,
625,
29892,
298,
4992,
29892,
322,
577,
29891,
12507,
346,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29941,
304,
29871,
29945,
6233,
29892,
470,
2745,
12003,
6419,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
7933,
373,
1080,
29889,
13,
13,
4300,
571,
278,
9427,
304,
715,
1078,
29889,
360,
374,
5617,
280,
411,
278,
12507,
346,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29955,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29896,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29953,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
6928,
481,
423,
23912,
411,
1616,
436,
23195,
13,
13,
29956,
336,
3262,
9687,
297,
7984,
292,
610,
305,
358,
322,
7984,
292,
278,
23912,
297,
278,
288,
854,
3732,
363,
4473,
29899,
9021,
1886,
11500,
322,
2225,
20098,
599,
1906,
301,
375,
8802,
3623,
1575,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
229,
136,
151,
18002,
1616,
436,
6946,
29544,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
18350,
9336,
787,
29892,
1269,
5700,
964,
29871,
29946,
269,
29399,
13,
13,
29946,
6928,
481,
423,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
13,
13,
29896,
29871,
29896,
29946,
29899,
21543,
508,
12616,
287,
1616,
436,
6946,
26490,
29892,
7482,
1312,
322,
1302,
1503,
873,
3060,
2986,
13,
13,
29896,
18002,
2646,
412,
6454,
20452,
29892,
12616,
287,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
31690,
18002,
2181,
25443,
9950,
29899,
9021,
285,
1187,
923,
968,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29906,
29945,
30073,
29943,
29889,
13,
13,
29907,
329,
9475,
29871,
29896,
29906,
29899,
22466,
29899,
17619,
12785,
310,
7984,
292,
610,
305,
358,
29889,
12790,
368,
805,
764,
697,
2625,
310,
1269,
6862,
411,
7984,
292,
805,
764,
29889,
15484,
29871,
29906,
454,
3712,
269,
29399,
297,
278,
4818,
310,
278,
805,
25724,
2625,
310,
3023,
310,
278,
25256,
29889,
15484,
278,
9427,
373,
278,
454,
3712,
269,
29399,
29889,
14314,
682,
280,
278,
470,
387,
1562,
322,
2654,
1236,
2496,
17422,
10794,
975,
278,
9427,
29889,
7488,
411,
278,
1616,
436,
23195,
322,
6454,
20452,
29889,
15484,
697,
310,
278,
9886,
25256,
411,
278,
805,
25724,
2625,
1623,
975,
1269,
16330,
29889,
383,
1025,
278,
12770,
310,
1716,
610,
305,
358,
12785,
4208,
304,
409,
284,
278,
23912,
11592,
368,
29889,
17934,
304,
263,
2919,
289,
5086,
9869,
29889,
13,
13,
29933,
1296,
278,
23912,
363,
29871,
29896,
29906,
6233,
29889,
5293,
278,
260,
1475,
310,
263,
27350,
29892,
16112,
1722,
263,
18203,
3448,
515,
366,
29889,
960,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
278,
27350,
29892,
16112,
1722,
278,
9886,
23912,
322,
9080,
29889,
960,
278,
9427,
3508,
29915,
29873,
7984,
287,
3307,
29892,
1162,
2226,
278,
1722,
18203,
322,
6773,
289,
5086,
599,
278,
23912,
363,
1048,
29871,
29906,
6233,
29889,
13,
13,
14084,
1434,
16330,
29892,
10293,
5617,
280,
278,
9427,
322,
18655,
1849,
411,
278,
17182,
29889,
14314,
682,
280,
411,
278,
285,
1187,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29947,
13,
13,
7827,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29955,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29946,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29947,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29906,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
23885,
1379,
7984,
287,
297,
19006,
13,
13,
7967,
579,
284,
25620,
10800,
273,
1236,
459,
793,
505,
330,
14044,
287,
6473,
15161,
515,
278,
7205,
363,
321,
787,
29889,
1222,
4752,
373,
278,
23150,
472,
4482,
260,
680,
29892,
23885,
1379,
892,
4780,
5839,
886,
30003,
29874,
8348,
352,
296,
286,
943,
295,
363,
278,
17173,
29891,
322,
263,
23279,
592,
284,
363,
278,
6460,
29889,
910,
2560,
270,
728,
22981,
278,
628,
9593,
21054,
272,
310,
23885,
1379,
472,
1009,
1900,
29889,
2973,
3353,
29899,
3874,
262,
18423,
304,
12103,
701,
278,
2545,
386,
322,
263,
20447,
29891,
6501,
7933,
4497,
328,
29892,
372,
3732,
263,
3578,
541,
302,
473,
14424,
592,
284,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29941,
29871,
1309,
778,
23885,
1379,
639,
16330,
13,
13,
29906,
6131,
1129,
787,
3578,
23131,
15276,
279,
457,
13,
13,
29941,
18350,
4091,
1862,
29892,
3060,
2986,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
29896,
18002,
15589,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
470,
29871,
30642,
18002,
4094,
2298,
29871,
29941,
6131,
1129,
787,
10849,
454,
3712,
3623,
625,
13,
13,
29896,
18350,
270,
1255,
23041,
20447,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29896,
30226,
24261,
10849,
27021,
25600,
322,
364,
1144,
287,
18350,
23885,
1379,
13,
13,
797,
263,
2919,
10961,
17765,
29892,
286,
2152,
278,
15276,
279,
457,
975,
18350,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
4091,
1862,
322,
7171,
506,
363,
29871,
29945,
6233,
29892,
470,
2745,
4964,
6419,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
19006,
29892,
23041,
20447,
29892,
266,
25395,
29892,
322,
1236,
2496,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
624,
381,
297,
278,
23885,
1379,
29889,
4367,
24551,
278,
12871,
304,
4482,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29945,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
278,
6473,
29879,
1722,
29889,
15154,
515,
278,
12871,
29889,
3295,
7543,
278,
23041,
20447,
29889,
13,
13,
15156,
263,
2243,
15048,
805,
6150,
29892,
6782,
278,
23885,
1379,
304,
263,
16330,
12580,
29880,
29889,
3295,
7543,
738,
393,
7359,
29915,
29873,
6496,
29889,
24674,
265,
777,
310,
278,
7984,
292,
23904,
975,
278,
23885,
1379,
29889,
1816,
345,
7389,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29896,
29929,
13,
13,
7827,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
29947,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29896,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29896,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29906,
20793,
27654,
13,
13,
2277,
6433,
287,
9709,
29874,
7776,
17807,
9679,
29879,
411,
24841,
29899,
3460,
261,
12507,
346,
13,
13,
29940,
14274,
7776,
17807,
11308,
2094,
2226,
263,
2730,
391,
322,
22707,
20021,
29899,
1028,
7612,
521,
21475,
27523,
29889,
450,
3578,
322,
4799,
29891,
9679,
29879,
526,
316,
781,
519,
746,
652,
2986,
297,
263,
282,
686,
296,
12507,
346,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29906,
9679,
29879,
322,
29871,
29896,
6131,
1129,
265,
12507,
346,
639,
16330,
13,
13,
29896,
18350,
24841,
29892,
16835,
368,
269,
506,
287,
13,
13,
29947,
2919,
9709,
29874,
7776,
17807,
11308,
13,
13,
29896,
282,
618,
5962,
19309,
2222,
521,
21475,
24207,
13,
13,
30226,
18002,
7984,
287,
17354,
19408,
13,
13,
29896,
2919,
19710,
29892,
3578,
368,
367,
2579,
13,
13,
29906,
6131,
1129,
787,
1375,
1133,
10849,
610,
29879,
2330,
13,
13,
29896,
6131,
1129,
265,
1375,
1133,
4091,
327,
13,
13,
29896,
6131,
1129,
265,
1436,
873,
1375,
1133,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29906,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
470,
4094,
13,
13,
8132,
29965,
4741,
13,
13,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
29946,
470,
29871,
29945,
18350,
7933,
373,
1080,
29892,
16835,
368,
269,
506,
287,
313,
30226,
18002,
29897,
13,
13,
29906,
6131,
1129,
787,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29906,
6131,
1129,
787,
867,
630,
24841,
503,
342,
13,
13,
31690,
18002,
10849,
24841,
3623,
625,
13,
13,
29896,
734,
294,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
3542,
278,
5970,
310,
263,
2919,
289,
314,
833,
29877,
1886,
4183,
411,
278,
24841,
269,
29399,
29892,
975,
433,
3262,
963,
2745,
896,
6446,
4612,
278,
5970,
29889,
3789,
17786,
29889,
13,
13,
29924,
293,
798,
1351,
278,
7776,
17807,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29941,
6233,
29892,
470,
2745,
4964,
6419,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2919,
12580,
29880,
29892,
2181,
15563,
278,
521,
21475,
29889,
3462,
278,
19408,
29892,
19710,
29892,
610,
29879,
2330,
29892,
4091,
327,
29892,
1375,
1133,
330,
5621,
4632,
29892,
322,
1236,
2496,
29889,
5293,
596,
6567,
470,
263,
805,
6150,
29892,
14405,
278,
2348,
1127,
10070,
29889,
13,
13,
22908,
278,
7776,
17807,
11308,
373,
263,
12151,
7101,
411,
278,
20805,
1095,
11183,
366,
29889,
4121,
15589,
565,
4312,
29889,
15484,
29871,
30515,
18002,
310,
278,
521,
21475,
29544,
373,
1269,
20447,
11183,
278,
2967,
310,
278,
20447,
29889,
383,
1025,
278,
12770,
310,
278,
11308,
304,
278,
4818,
577,
896,
10029,
25457,
29889,
24428,
304,
3013,
278,
7776,
17807,
9679,
29879,
12558,
19932,
29892,
9679,
701,
515,
278,
20805,
1095,
29889,
13,
13,
4300,
571,
278,
9679,
29879,
411,
278,
409,
314,
2625,
1623,
304,
278,
1886,
4183,
29889,
323,
523,
368,
4612,
278,
1886,
4183,
29889,
13,
13,
797,
517,
263,
2919,
2071,
7324,
470,
263,
281,
554,
393,
29915,
29879,
2919,
3307,
304,
4808,
278,
1886,
4183,
5807,
688,
368,
29892,
1671,
278,
2545,
386,
304,
263,
10809,
310,
1048,
29871,
29906,
22831,
29889,
1771,
292,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
4367,
24551,
278,
12871,
304,
263,
1027,
1050,
29889,
15484,
278,
1886,
4183,
297,
278,
2071,
7324,
29889,
8561,
1854,
278,
2545,
386,
1838,
29915,
29873,
6023,
278,
5970,
310,
278,
1886,
4183,
29889,
3439,
1050,
363,
29871,
29896,
29900,
304,
29871,
29896,
29906,
6233,
29892,
470,
2745,
278,
521,
21475,
28975,
29871,
29896,
29953,
29945,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
29889,
17934,
278,
9679,
29879,
304,
715,
1078,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
18350,
12507,
346,
8357,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
7933,
373,
1080,
322,
867,
630,
330,
5621,
4632,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
5227,
629,
424,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
9886,
2348,
1127,
10070,
29889,
1771,
292,
304,
263,
1045,
309,
29892,
1603,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29945,
304,
29871,
29947,
6233,
29892,
470,
2745,
278,
12507,
346,
16410,
304,
12003,
264,
29892,
23546,
5393,
13672,
29889,
13,
13,
14084,
1434,
16330,
29892,
10293,
5617,
280,
278,
7776,
17807,
9679,
29879,
411,
278,
12507,
346,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29941,
29906,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
29896,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29900,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29941,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
304,
21154,
297,
7933,
373,
291,
2545,
386,
13,
13,
10401,
372,
29915,
29879,
1886,
2795,
29892,
304,
21154,
7415,
4964,
322,
2653,
600,
29891,
3265,
1135,
923,
12822,
29889,
910,
2560,
10223,
362,
338,
19595,
287,
491,
278,
18806,
29891,
454,
3712,
322,
12059,
280,
373,
291,
21054,
943,
310,
278,
2545,
386,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
22780,
304,
21154,
322,
29871,
29941,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
29896,
29953,
29871,
1309,
778,
3578,
4805,
29899,
29888,
3568,
304,
21154,
29892,
7482,
1312,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
29946,
269,
29399,
13,
13,
29946,
304,
29871,
29945,
18350,
9336,
787,
29892,
16835,
368,
269,
506,
287,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29946,
470,
29871,
29945,
18350,
7933,
373,
1080,
29892,
269,
506,
287,
313,
30226,
18002,
29897,
13,
13,
29896,
2919,
4091,
327,
29892,
1375,
1133,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
30515,
18002,
15589,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29906,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
2298,
29871,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
18655,
519,
2545,
386,
313,
361,
4312,
29897,
13,
13,
30515,
18002,
3060,
2986,
10849,
610,
29879,
2330,
13,
13,
29906,
6131,
1129,
787,
298,
4992,
13,
13,
22908,
278,
304,
21154,
373,
263,
28967,
7613,
301,
1312,
411,
3023,
15359,
310,
5650,
304,
29893,
1379,
29889,
26428,
411,
3023,
15359,
310,
5650,
304,
29893,
1379,
29889,
15484,
263,
2919,
29892,
9416,
289,
5086,
270,
728,
373,
2246,
29889,
2803,
2317,
363,
29871,
29941,
29900,
6233,
577,
278,
304,
21154,
27474,
967,
19163,
2730,
391,
545,
29892,
15270,
278,
5650,
304,
29893,
1379,
565,
5181,
29889,
13,
13,
3542,
278,
5970,
310,
263,
2919,
289,
314,
833,
29877,
1886,
4183,
411,
278,
454,
3712,
269,
29399,
29892,
975,
433,
3262,
963,
2745,
896,
6446,
4612,
278,
5970,
29889,
15484,
278,
304,
21154,
373,
278,
454,
3712,
269,
29399,
29889,
26428,
19932,
368,
411,
278,
1886,
4183,
17343,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
18350,
12507,
346,
8357,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
7933,
373,
1080,
29892,
4091,
327,
29892,
322,
7171,
506,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
5227,
629,
424,
29889,
624,
381,
297,
278,
19006,
29889,
17278,
363,
29871,
29896,
304,
29871,
29906,
6233,
313,
1217,
23546,
5393,
4312,
467,
624,
381,
297,
29871,
29906,
2723,
567,
2545,
386,
29892,
278,
610,
29879,
2330,
29892,
322,
298,
4992,
29889,
1771,
292,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29945,
304,
29871,
29947,
6233,
29892,
470,
2745,
10029,
12003,
6419,
29889,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
313,
794,
278,
1999,
1581,
17343,
511,
1889,
278,
2545,
386,
29544,
2745,
10597,
29889,
13,
13,
29925,
473,
278,
2545,
386,
29544,
964,
263,
2071,
7324,
470,
281,
554,
2919,
3307,
304,
4808,
278,
1886,
4183,
29889,
1771,
292,
304,
263,
1027,
1050,
975,
18350,
12871,
29889,
13,
13,
22908,
278,
1886,
4183,
297,
278,
2071,
7324,
29889,
8561,
1854,
278,
23904,
1838,
29915,
29873,
6023,
278,
5970,
310,
278,
1886,
4183,
29889,
3439,
1050,
363,
29871,
29955,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
278,
304,
21154,
338,
14294,
322,
2653,
600,
29891,
29889,
10057,
3730,
6782,
278,
1886,
4183,
304,
263,
12726,
2168,
289,
5086,
9869,
29889,
10057,
3730,
3349,
278,
17343,
3448,
515,
366,
313,
517,
5557,
21837,
12138,
29879,
467,
13,
13,
797,
1037,
559,
278,
12871,
304,
18350,
1880,
29889,
1771,
292,
278,
2545,
386,
29544,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29945,
6233,
29892,
470,
2745,
278,
29544,
338,
12212,
491,
1048,
4203,
313,
517,
29871,
30642,
18002,
467,
13,
13,
4300,
571,
278,
304,
21154,
304,
715,
1078,
470,
4091,
340,
12580,
3137,
29889,
24674,
265,
278,
2545,
386,
29544,
975,
278,
304,
21154,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29929,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29929,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29955,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29900,
330,
13,
13,
14676,
262,
29871,
29896,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29896,
30226,
20793,
27654,
13,
13,
2277,
367,
261,
29899,
1557,
14927,
521,
21475,
411,
12461,
29887,
583,
13,
13,
3644,
366,
763,
367,
261,
29899,
3068,
867,
24455,
521,
21475,
29892,
366,
674,
5360,
445,
9522,
412,
29889,
12790,
367,
261,
338,
760,
310,
278,
1886,
11500,
23904,
322,
527,
29890,
1041,
278,
521,
21475,
322,
18655,
1849,
411,
21054,
272,
1550,
896,
7984,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
322,
29871,
30226,
18002,
18655,
1849,
639,
16330,
13,
13,
29896,
29906,
29871,
1309,
778,
3578,
367,
261,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29896,
18002,
4094,
13,
13,
30226,
18002,
3060,
2986,
10849,
610,
29879,
2330,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
270,
453,
705,
287,
29892,
2181,
25443,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29946,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
1652,
8606,
287,
304,
29871,
30226,
29899,
22466,
12003,
2264,
13,
13,
29896,
18350,
13328,
11801,
10674,
1161,
29892,
5700,
4891,
3538,
964,
29871,
30226,
29899,
22466,
269,
29399,
13,
13,
29896,
18350,
1559,
5450,
29892,
269,
506,
287,
4891,
3538,
13,
13,
30226,
18002,
2545,
617,
5079,
23729,
1691,
13,
13,
29896,
18350,
10545,
715,
398,
313,
29934,
4125,
29897,
6454,
1219,
29892,
16835,
368,
269,
506,
287,
13,
13,
797,
263,
2919,
12507,
346,
8357,
25890,
411,
263,
784,
14128,
1821,
1886,
4183,
25972,
29892,
23546,
4208,
278,
367,
261,
322,
4094,
29889,
8561,
1854,
278,
23904,
1838,
29915,
29873,
6023,
278,
5970,
310,
278,
1886,
4183,
29889,
1771,
292,
304,
263,
1027,
1050,
975,
18350,
29899,
9812,
12871,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
610,
29879,
2330,
29892,
270,
453,
705,
287,
29892,
15795,
29892,
322,
1236,
2496,
29889,
14314,
682,
280,
975,
1716,
11192,
310,
278,
521,
21475,
29889,
13,
13,
1433,
3881,
278,
521,
21475,
297,
263,
2323,
7546,
297,
278,
1886,
4183,
25972,
29889,
826,
3881,
278,
18655,
1849,
2820,
278,
521,
21475,
29889,
2443,
314,
29892,
10664,
29892,
363,
29871,
29896,
29896,
304,
29871,
29896,
29906,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
322,
278,
18655,
1849,
526,
22707,
29889,
15154,
515,
278,
12871,
29889,
10057,
3730,
443,
11911,
278,
7243,
3448,
515,
366,
313,
517,
5557,
21837,
12138,
29879,
467,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29945,
29945,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29900,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29906,
29953,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1152,
263,
285,
8463,
261,
24329,
29892,
376,
1245,
29899,
7582,
29908,
278,
1559,
5450,
29889,
7370,
491,
28967,
1549,
278,
1559,
5450,
472,
263,
29871,
29946,
29945,
29899,
12163,
929,
10696,
472,
697,
1095,
29889,
21809,
278,
1559,
5450,
263,
12616,
2507,
29889,
8561,
1790,
29871,
29946,
29945,
29899,
12163,
929,
5700,
29889,
830,
11666,
278,
1889,
2745,
278,
1559,
5450,
338,
6446,
5700,
964,
281,
12864,
29899,
845,
10501,
12785,
29889,
13,
13,
2277,
17042,
21305,
29899,
272,
927,
2545,
617,
5079,
13,
13,
4013,
9522,
412,
338,
599,
1048,
10849,
2348,
1127,
10070,
30003,
6729,
617,
5079,
29892,
24841,
3623,
625,
322,
503,
342,
29892,
322,
266,
25395,
30003,
11242,
777,
2181,
3322,
515,
15589,
29899,
307,
28470,
17042,
29876,
8842,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29947,
29871,
1309,
778,
2545,
617,
5079,
23729,
1691,
13,
13,
30226,
734,
294,
1129,
265,
867,
630,
24841,
503,
342,
13,
13,
29906,
6131,
1129,
787,
10849,
24841,
3623,
625,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29896,
734,
294,
1129,
265,
10849,
266,
25395,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
30515,
18002,
3060,
2986,
17042,
29876,
8842,
29892,
15589,
29899,
307,
28470,
13,
13,
20876,
263,
2919,
12507,
346,
8357,
411,
4094,
304,
263,
10809,
310,
29871,
29896,
297,
305,
29889,
15484,
263,
784,
14128,
1821,
1886,
4183,
25972,
297,
278,
7243,
29889,
8561,
1854,
278,
4094,
1838,
29915,
29873,
6023,
278,
5970,
310,
278,
1886,
4183,
29889,
1771,
292,
278,
4094,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
12065,
278,
2545,
617,
5079,
297,
278,
1886,
4183,
29889,
2443,
314,
29892,
10664,
29892,
363,
29871,
29945,
304,
29871,
29953,
6233,
29892,
470,
2745,
22707,
29899,
29883,
3780,
29886,
29889,
15154,
515,
278,
12871,
29889,
10057,
3730,
443,
11911,
278,
7243,
3448,
515,
366,
313,
517,
5557,
21837,
12138,
29879,
467,
360,
6038,
278,
2545,
617,
5079,
1532,
297,
263,
784,
3825,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
18350,
12580,
29880,
29892,
377,
3873,
4208,
278,
9886,
2348,
1127,
10070,
5174,
278,
17042,
29876,
8842,
29889,
13,
13,
15156,
21861,
29879,
470,
263,
2243,
15048,
805,
6150,
29892,
6782,
278,
2545,
617,
5079,
304,
278,
12580,
29880,
29889,
3462,
278,
17042,
29876,
8842,
29892,
23546,
5393,
304,
24296,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29929,
29896,
13,
13,
7827,
9950,
29871,
29955,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29929,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29953,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29896,
30226,
9950,
13,
13,
2277,
9336,
2592,
7933,
367,
550,
411,
394,
8315,
29879,
13,
13,
1576,
301,
3598,
21779,
310,
454,
3712,
322,
263,
1835,
310,
10849,
610,
29879,
2330,
788,
278,
4922,
1035,
1237,
304,
10849,
7933,
367,
550,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29947,
29871,
1309,
778,
7933,
367,
550,
29892,
17151,
2168,
29892,
5700,
964,
29871,
29896,
30226,
29899,
304,
29871,
29906,
29899,
22466,
12785,
313,
12717,
29871,
29906,
2723,
567,
29897,
13,
13,
29906,
6131,
1129,
787,
269,
506,
287,
394,
8315,
29879,
29892,
15589,
29899,
307,
28470,
13,
13,
29896,
6131,
1129,
265,
1375,
1133,
10849,
610,
29879,
2330,
13,
13,
30226,
734,
294,
1129,
265,
867,
630,
454,
3712,
503,
342,
13,
13,
29896,
734,
294,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
20876,
263,
2919,
12507,
346,
8357,
411,
4094,
304,
263,
10809,
310,
29871,
29896,
297,
305,
29889,
15484,
263,
784,
14128,
1821,
1886,
4183,
25972,
297,
278,
7243,
29889,
8561,
1854,
278,
4094,
1838,
29915,
29873,
6023,
278,
5970,
310,
278,
1886,
4183,
29889,
1771,
292,
278,
4094,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
12065,
278,
7933,
367,
550,
297,
278,
1886,
4183,
29889,
2443,
314,
29892,
10664,
29892,
363,
29871,
29941,
304,
29871,
29945,
6233,
29892,
470,
2745,
22707,
29899,
29883,
3780,
29886,
29889,
15154,
515,
278,
12871,
29889,
10057,
3730,
443,
11911,
278,
7243,
3448,
515,
366,
313,
517,
5557,
21837,
12138,
29879,
467,
360,
6038,
278,
7933,
367,
550,
1532,
297,
263,
784,
3825,
29889,
13,
13,
15156,
21861,
29879,
29892,
6782,
278,
7933,
367,
550,
304,
263,
16330,
12580,
29880,
29889,
14314,
682,
280,
411,
278,
9886,
2348,
1127,
10070,
29892,
23546,
5393,
330,
2705,
304,
24296,
29889,
1816,
345,
7389,
363,
278,
1900,
18459,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29945,
13,
13,
7827,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
360,
13207,
29899,
1672,
28938,
4214,
405,
2692,
29903,
2672,
319,
18581,
6227,
1307,
29911,
29901,
360,
719,
29899,
307,
579,
292,
302,
8842,
23522,
714,
1009,
21054,
272,
29889,
12065,
278,
302,
8842,
297,
263,
2323,
7546,
297,
385,
443,
7979,
1463,
2071,
7324,
29889,
360,
719,
29899,
307,
579,
975,
18350,
12871,
363,
1048,
29871,
29946,
6233,
29892,
470,
2745,
925,
5227,
629,
424,
29892,
23546,
5393,
13672,
322,
21217,
16112,
577,
896,
1016,
29915,
29873,
12138,
29889,
15154,
278,
2071,
7324,
515,
278,
12871,
304,
5040,
278,
7984,
292,
1889,
29889,
13,
13,
2277,
12849,
18655,
1849,
411,
330,
5621,
13,
13,
15156,
454,
3712,
3623,
625,
408,
278,
1886,
11500,
23904,
527,
20895,
263,
3578,
29892,
7537,
15816,
29891,
21054,
272,
304,
445,
2560,
18655,
519,
270,
728,
29889,
5169,
295,
3889,
304,
23764,
6514,
18655,
1849,
366,
505,
373,
1361,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
30515,
18002,
10849,
454,
3712,
3623,
625,
13,
13,
29896,
18002,
269,
506,
287,
1559,
307,
1372,
13,
13,
29906,
2723,
567,
5777,
352,
361,
13609,
23729,
1691,
13,
13,
29896,
18002,
26438,
15101,
1236,
294,
29892,
17151,
2168,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
8870,
1490,
13,
13,
29896,
29871,
29896,
30226,
29899,
22466,
8424,
1236,
29872,
839,
330,
5621,
4632,
29892,
5700,
964,
1993,
303,
860,
29899,
2311,
10076,
567,
13,
13,
29925,
473,
278,
454,
3712,
3623,
625,
964,
263,
2919,
12507,
346,
8357,
29889,
3462,
4094,
304,
6963,
278,
23904,
304,
263,
10809,
310,
29871,
29896,
297,
305,
29889,
15484,
263,
784,
14128,
1821,
1886,
4183,
25972,
297,
278,
7243,
29889,
8561,
1854,
278,
23904,
1838,
29915,
29873,
6023,
278,
5970,
310,
278,
1886,
4183,
29889,
1771,
292,
278,
23904,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
512,
278,
1886,
4183,
29892,
7546,
29892,
297,
1797,
29892,
278,
1559,
307,
1372,
29892,
5777,
352,
361,
13609,
29892,
1236,
294,
29892,
7171,
506,
29892,
322,
330,
5621,
4632,
29889,
2443,
314,
29892,
10664,
29892,
363,
29871,
29945,
304,
29871,
29955,
6233,
29892,
470,
2745,
278,
18655,
1849,
526,
22707,
29899,
29883,
3780,
29886,
29889,
15154,
515,
278,
12871,
29889,
10057,
3730,
443,
11911,
278,
7243,
3448,
515,
366,
313,
517,
5557,
21837,
12138,
29879,
467,
360,
6038,
278,
18655,
1849,
1532,
297,
263,
784,
3825,
29892,
2313,
20272,
278,
7984,
292,
23904,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29929,
13,
13,
7827,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29947,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
13,
13,
2277,
266,
1794,
14225,
19408,
411,
286,
4524,
13,
13,
4013,
6808,
814,
338,
5972,
297,
498,
1794,
12374,
1934,
29892,
322,
363,
1781,
2769,
29889,
1522,
1854,
304,
15649,
14225,
19408,
313,
15189,
2000,
12070,
29891,
19408,
511,
408,
278,
4943,
2924,
2113,
29915,
29873,
664,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
16947,
292,
29871,
31690,
18002,
19408,
322,
29871,
30515,
18002,
286,
4524,
639,
16330,
13,
13,
30642,
18002,
443,
1111,
12504,
498,
1794,
29899,
3293,
14225,
19408,
13,
13,
31690,
18002,
301,
568,
1302,
535,
329,
27274,
470,
29871,
30515,
18002,
9950,
29899,
9021,
27274,
322,
29871,
30515,
734,
294,
1129,
265,
1302,
535,
329,
6597,
13,
13,
29896,
6131,
1129,
265,
3578,
17354,
26438,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
29896,
18350,
286,
4524,
29892,
16835,
368,
269,
506,
287,
13,
13,
29946,
7689,
23379,
310,
10849,
20559,
13,
13,
22908,
278,
19408,
297,
263,
18350,
12580,
29880,
29889,
6803,
297,
3307,
4094,
304,
4612,
278,
19408,
491,
472,
3203,
29871,
29896,
297,
305,
29889,
2803,
2317,
29892,
10664,
29892,
363,
29871,
29947,
304,
29871,
29896,
29906,
6199,
29889,
13,
13,
13555,
278,
19408,
756,
577,
12535,
29892,
5700,
263,
8607,
310,
7984,
292,
610,
305,
358,
304,
6216,
2768,
263,
289,
314,
833,
29877,
470,
784,
14128,
1821,
1886,
4183,
25972,
29889,
5293,
263,
27350,
29892,
9307,
346,
278,
5650,
3196,
3064,
29889,
15484,
278,
5650,
297,
278,
1886,
4183,
29889,
13,
13,
797,
263,
12507,
346,
8357,
470,
281,
554,
2919,
3307,
304,
4808,
278,
1886,
4183,
29892,
788,
4094,
304,
263,
10809,
310,
29871,
29906,
22831,
29889,
15484,
278,
1886,
4183,
297,
278,
7243,
29889,
8561,
1854,
278,
4094,
1838,
29915,
29873,
6023,
278,
5970,
310,
278,
1886,
4183,
29889,
1771,
292,
304,
263,
1027,
1050,
975,
18350,
12871,
29889,
13,
13,
6816,
273,
8000,
29892,
270,
6038,
278,
19408,
29892,
2313,
20272,
278,
577,
5086,
4094,
29889,
17934,
278,
19408,
304,
278,
1886,
4183,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29946,
29945,
6233,
29892,
470,
2745,
278,
19408,
338,
22707,
313,
1217,
23546,
5393,
4312,
467,
5399,
278,
4094,
3233,
23025,
29892,
4417,
901,
565,
4312,
29889,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
23546,
4208,
278,
1302,
535,
329,
27274,
29892,
17354,
26438,
29892,
322,
15795,
2745,
278,
17354,
26438,
338,
23556,
1490,
29889,
624,
381,
297,
278,
19408,
29889,
402,
2753,
728,
411,
278,
286,
4524,
322,
20559,
7689,
23379,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29896,
29896,
13,
13,
7827,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29945,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
29955,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29945,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29896,
15774,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
498,
1794,
29899,
3293,
14225,
19408,
338,
6041,
2000,
12070,
29891,
470,
3144,
329,
262,
681,
19408,
1363,
310,
278,
5718,
3819,
29889,
1094,
411,
916,
19408,
29892,
372,
29915,
29879,
3144,
6935,
29899,
9021,
29889,
739,
29915,
29879,
5239,
297,
20021,
2791,
1691,
322,
297,
278,
20021,
4004,
310,
777,
4071,
29883,
708,
14422,
29889,
13,
13,
29937,
772,
9733,
13,
13,
19284,
297,
7933,
3151,
719,
2545,
386,
13,
13,
12692,
23429,
8870,
747,
329,
411,
24354,
10917,
496,
13,
13,
26215,
11548,
322,
330,
5621,
611,
2918,
611,
2918,
13,
13,
19585,
3712,
411,
454,
3712,
29899,
13405,
29883,
1253,
12507,
346,
13,
13,
29882,
4992,
287,
4497,
3712,
411,
805,
7612,
298,
4992,
311,
29893,
269,
1338,
29874,
13,
13,
20752,
15816,
23429,
6928,
481,
423,
13,
13,
2409,
265,
521,
21475,
411,
270,
453,
12507,
346,
13,
13,
305,
21475,
322,
18655,
1849,
411,
266,
25395,
29899,
1557,
14927,
2545,
386,
13,
13,
1173,
267,
29891,
1722,
29899,
2161,
19710,
11982,
16416,
267,
13,
13,
7543,
314,
290,
29899,
272,
927,
715,
6762,
13,
13,
3703,
2911,
29899,
7192,
3880,
282,
15451,
13,
13,
9837,
9733,
338,
263,
2560,
982,
304,
19012,
592,
1338,
29892,
7148,
628,
9593,
9687,
29879,
763,
9427,
322,
29808,
29889,
3929,
9733,
23522,
4094,
470,
263,
21054,
272,
1319,
772,
9733,
23904,
29892,
1316,
408,
19006,
29892,
2545,
386,
29892,
15774,
3623,
625,
29892,
470,
23429,
29892,
304,
263,
1045,
309,
322,
769,
330,
2705,
1027,
13269,
278,
9687,
2745,
2309,
29892,
607,
6911,
11551,
278,
9687,
29915,
29879,
8267,
322,
2730,
391,
545,
29889,
8512,
278,
23904,
947,
2041,
304,
263,
1045,
309,
472,
937,
29892,
772,
9733,
9273,
29915,
29873,
367,
9613,
411,
7984,
292,
491,
1045,
6504,
29889,
3929,
3791,
9687,
338,
7984,
287,
901,
14205,
29892,
322,
278,
23904,
4049,
7415,
263,
260,
579,
29891,
2967,
363,
263,
12507,
346,
29892,
607,
2794,
366,
11551,
599,
278,
9687,
29915,
29879,
13901,
314,
1144,
322,
1375,
261,
1338,
29889,
13,
13,
29911,
2859,
310,
278,
1021,
2030,
521,
21475,
270,
17006,
29973,
3929,
9733,
338,
263,
2107,
7984,
292,
1158,
363,
3041,
4746,
521,
21475,
2078,
19416,
411,
23864,
310,
21054,
272,
1550,
12515,
963,
2730,
391,
322,
22707,
29889,
3967,
8836,
265,
678,
21475,
411,
360,
453,
23863,
346,
29889,
20768,
304,
788,
901,
15774,
304,
596,
652,
300,
29973,
3967,
772,
9733,
372,
29892,
408,
297,
6556,
2911,
29899,
25433,
3880,
349,
15451,
29892,
297,
607,
278,
15774,
1027,
13269,
297,
4796,
19006,
1754,
5227,
629,
424,
411,
24841,
503,
342,
29892,
274,
2559,
314,
265,
29892,
322,
1109,
2911,
29889,
13,
13,
2744,
1228,
14169,
363,
19587,
3271,
7984,
29879,
338,
393,
772,
9733,
338,
5172,
322,
1838,
29915,
29873,
1996,
1568,
6567,
29899,
265,
931,
29892,
408,
278,
9687,
338,
6153,
1407,
2217,
297,
278,
7243,
29889,
887,
1016,
29915,
29873,
817,
1568,
901,
1135,
263,
3104,
411,
263,
17343,
322,
9045,
29891,
2348,
1127,
10070,
304,
1925,
263,
18254,
768,
2738,
772,
3791,
592,
284,
373,
278,
1591,
29889,
13,
13,
5006,
29915,
29903,
379,
9806,
3446,
3235,
17067,
3210,
12916,
11144,
399,
1955,
17557,
29901,
13,
13,
29896,
29889,
4803,
263,
7243,
393,
338,
925,
2919,
3307,
304,
1712,
278,
9687,
366,
864,
304,
7984,
541,
6483,
3307,
304,
788,
278,
5253,
310,
23904,
4312,
29889,
3462,
902,
5824,
29892,
263,
456,
271,
1199,
29892,
322,
805,
1575,
29892,
1316,
408,
7171,
506,
29892,
373,
1080,
29892,
274,
2559,
314,
265,
380,
7358,
29892,
10849,
330,
5621,
29892,
7537,
15816,
1236,
1379,
29892,
23041,
11308,
29892,
5881,
314,
290,
2532,
29879,
29892,
1236,
2496,
29883,
1398,
29879,
29892,
470,
3353,
17184,
1960,
29889,
13,
13,
29906,
29889,
8084,
29892,
16079,
368,
27092,
29924,
1001,
1692,
278,
9687,
297,
278,
1027,
1050,
292,
23904,
29892,
322,
7984,
372,
411,
263,
4612,
29889,
8218,
914,
9687,
29879,
29892,
1316,
408,
3353,
9427,
29892,
881,
367,
2715,
304,
278,
7243,
297,
278,
6763,
322,
540,
630,
3412,
411,
278,
23904,
29889,
4116,
12572,
9687,
29879,
29892,
1316,
408,
9427,
977,
10376,
29892,
29808,
29892,
322,
521,
21475,
2078,
19416,
29892,
881,
367,
2715,
1156,
278,
23904,
338,
7375,
29889,
13,
13,
29941,
29889,
2860,
278,
9687,
338,
7984,
287,
29892,
5195,
6720,
12064,
372,
515,
278,
7243,
313,
29874,
2243,
15048,
805,
6150,
470,
805,
271,
2497,
1736,
1900,
467,
1816,
345,
372,
411,
278,
2545,
386,
470,
10032,
278,
9886,
23904,
313,
311,
1037,
559,
278,
7977,
491,
1045,
6504,
278,
23904,
19328,
29897,
304,
1207,
263,
21054,
272,
1319,
12507,
346,
29889,
13,
13,
4986,
21521,
2477,
29950,
29901,
259,
13,
1762,
7984,
9687,
330,
2705,
5198,
414,
287,
297,
1027,
1050,
292,
23904,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
4971,
7324,
470,
14872,
288,
854,
411,
17343,
29892,
12507,
346,
8357,
411,
17343,
29892,
2243,
15048,
805,
6150,
470,
805,
271,
2497,
29892,
29181,
12237,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
19152,
263,
3802,
10977,
373,
278,
772,
9733,
23904,
29892,
607,
881,
2360,
6159,
263,
1045,
309,
1156,
278,
9687,
756,
1063,
2715,
29889,
739,
29915,
29879,
263,
1781,
2969,
304,
3013,
278,
17343,
263,
4758,
313,
267,
25009,
565,
366,
1016,
29915,
29873,
505,
12917,
3104,
301,
4841,
29897,
577,
366,
508,
6505,
393,
278,
23904,
3508,
29915,
29873,
1045,
6504,
29889,
960,
366,
1016,
29915,
29873,
505,
263,
17343,
29892,
671,
263,
4513,
8424,
310,
7984,
292,
610,
305,
358,
5700,
304,
6216,
278,
3104,
29889,
450,
610,
305,
358,
674,
26505,
777,
21837,
541,
1235,
3307,
714,
577,
278,
4094,
1838,
29915,
29873,
1045,
309,
29889,
13,
13,
30119,
8512,
366,
508,
671,
4094,
408,
278,
23904,
29892,
366,
508,
884,
671,
29871,
29896,
29900,
29900,
10151,
15774,
3623,
625,
29892,
23429,
29892,
19006,
29892,
470,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
2545,
386,
304,
3041,
1509,
278,
9687,
411,
21054,
272,
29889,
530,
22193,
29892,
1316,
408,
13848,
387,
279,
29892,
19006,
29892,
470,
454,
3712,
3623,
625,
29892,
508,
367,
2715,
304,
278,
772,
9733,
23904,
304,
1371,
9226,
701,
278,
3279,
1144,
297,
278,
9687,
29889,
13,
13,
30119,
739,
29915,
29879,
1820,
304,
671,
9090,
29899,
2311,
12785,
577,
393,
4129,
7984,
29879,
1584,
368,
472,
278,
1021,
931,
29889,
13,
13,
30119,
319,
4868,
1027,
1050,
338,
451,
2337,
4780,
304,
1072,
5987,
29892,
7148,
373,
263,
10489,
380,
586,
300,
459,
29892,
577,
1749,
9522,
5547,
1016,
29915,
29873,
2106,
472,
825,
10430,
304,
1027,
1050,
29889,
7753,
472,
278,
19604,
4444,
373,
777,
380,
586,
300,
3554,
29892,
278,
12871,
1122,
367,
2086,
17818,
344,
29892,
607,
674,
4556,
278,
23904,
304,
1045,
309,
29889,
1932,
1027,
1050,
292,
29892,
263,
2319,
289,
23232,
881,
2867,
1549,
278,
7101,
310,
278,
23904,
1432,
1473,
470,
1023,
29889,
960,
901,
289,
431,
7586,
14451,
304,
278,
7101,
29892,
769,
5224,
278,
12871,
470,
671,
263,
12138,
261,
15284,
29892,
6041,
2000,
263,
1027,
1050,
15284,
29892,
304,
2923,
1509,
278,
12871,
29889,
13,
13,
15349,
1254,
18322,
29949,
8452,
15842,
21521,
2477,
29950,
4214,
13,
13,
2008,
29874,
1181,
397,
29901,
450,
2730,
391,
29892,
9914,
12871,
338,
4922,
363,
3353,
9427,
322,
977,
10376,
29936,
1018,
21353,
15816,
1920,
29874,
323,
309,
481,
423,
322,
349,
457,
11548,
322,
402,
5621,
10082,
29875,
10082,
29875,
29889,
13,
13,
29925,
5059,
2202,
29901,
3929,
9733,
14874,
3353,
521,
860,
575,
322,
521,
21475,
2078,
19416,
515,
15589,
292,
714,
29892,
408,
297,
678,
21475,
322,
17236,
300,
1849,
411,
498,
25395,
29899,
29903,
1760,
287,
4358,
386,
29889,
13,
13,
29963,
387,
300,
13956,
14409,
262,
29901,
3929,
3791,
29808,
526,
263,
22037,
322,
508,
367,
1304,
297,
263,
12875,
310,
270,
17006,
29892,
3704,
6561,
267,
29891,
4673,
29899,
23360,
382,
1505,
8564,
16416,
267,
29889,
13,
13,
29943,
9216,
29901,
3929,
3791,
15774,
3732,
263,
628,
14803,
29892,
19232,
6808,
814,
29889,
3967,
12565,
285,
21211,
1316,
408,
1236,
14520,
29892,
452,
312,
279,
1475,
29892,
282,
15451,
29892,
21783,
293,
1862,
29892,
322,
14954,
2722,
29892,
408,
1532,
408,
2537,
29879,
29892,
282,
457,
932,
793,
29892,
322,
715,
6762,
29892,
408,
297,
9160,
314,
290,
29899,
29949,
3881,
1858,
6762,
29889,
13,
13,
2277,
15234,
297,
7933,
3151,
719,
2545,
386,
13,
13,
1576,
301,
3598,
21054,
943,
310,
498,
26517,
639,
1004,
403,
445,
8261,
29899,
29873,
579,
292,
9953,
1318,
29892,
607,
3743,
498,
1794,
3151,
719,
11417,
322,
263,
26054,
437,
344,
310,
301,
603,
29889,
1816,
345,
372,
411,
263,
7933,
18655,
519,
1316,
408,
24354,
289,
554,
3060,
29891,
322,
17354,
19408,
470,
17354,
19408,
694,
397,
793,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
29896,
18002,
2545,
386,
639,
16330,
13,
13,
29946,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
322,
29871,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
313,
361,
4312,
511,
13931,
671,
13,
13,
29896,
6131,
1129,
265,
867,
630,
301,
603,
503,
342,
13,
13,
29941,
6131,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
498,
1794,
7933,
3151,
719,
11417,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29906,
18350,
4091,
1862,
29892,
1375,
1133,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
29946,
15234,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29906,
18350,
7933,
373,
1080,
29892,
16835,
368,
269,
506,
287,
7936,
265,
635,
13,
13,
29896,
6131,
1129,
265,
1375,
1133,
10849,
274,
309,
424,
307,
470,
29871,
30515,
18002,
2362,
309,
521,
2593,
265,
1943,
313,
1349,
1794,
2362,
309,
16389,
29897,
13,
13,
29896,
18350,
301,
603,
29892,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
377,
3873,
4208,
29871,
29946,
2723,
567,
2545,
386,
29892,
278,
301,
603,
503,
342,
29892,
301,
603,
3623,
625,
29892,
322,
3151,
719,
11417,
29889,
13,
13,
797,
263,
2919,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
4091,
1862,
322,
7171,
506,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
2545,
386,
29544,
29889,
4367,
24551,
278,
12871,
304,
18350,
29889,
17278,
29892,
10664,
29892,
2745,
925,
1045,
6504,
29889,
13,
13,
29954,
2705,
2058,
278,
9427,
297,
278,
2545,
386,
29544,
29889,
960,
5181,
29892,
1671,
297,
3307,
310,
278,
9886,
29871,
29896,
18002,
2545,
386,
304,
16079,
368,
4612,
278,
9427,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29955,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
13,
13,
4300,
571,
278,
9427,
304,
16330,
12580,
3137,
29889,
19955,
280,
278,
2545,
386,
975,
278,
9427,
29889,
14314,
682,
280,
411,
278,
7933,
373,
1080,
322,
274,
309,
424,
307,
29889,
1816,
345,
411,
278,
301,
603,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29946,
29953,
13,
13,
7827,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29900,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
7933,
23429,
8870,
747,
329,
411,
24354,
10917,
496,
13,
13,
2528,
292,
7933,
23429,
304,
278,
772,
9733,
23904,
26371,
2925,
278,
20021,
21054,
943,
393,
3041,
1509,
445,
270,
728,
29889,
1763,
3262,
278,
10650,
10917,
496,
411,
278,
7375,
9427,
322,
278,
23429,
29544,
7984,
29879,
372,
925,
3307,
29892,
1492,
297,
278,
12580,
29880,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
29892,
29871,
29896,
18002,
10917,
496,
29892,
322,
29871,
30226,
18002,
2545,
386,
639,
16330,
13,
13,
29906,
2723,
567,
4094,
13,
13,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
734,
294,
1129,
265,
1375,
1133,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
734,
294,
1129,
265,
304,
28470,
3999,
420,
17182,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29896,
2323,
29899,
643,
1747,
19548,
310,
7933,
23429,
313,
2541,
263,
4055,
16389,
29897,
13,
13,
29946,
8870,
747,
329,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
1048,
29871,
29896,
297,
305,
12003,
29892,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29946,
2723,
567,
658,
359,
873,
4870,
287,
24354,
10917,
496,
13,
13,
29906,
18350,
7933,
373,
1080,
29892,
16835,
368,
269,
506,
287,
13,
13,
29906,
734,
294,
1129,
787,
3999,
420,
409,
5779,
29892,
15589,
29899,
307,
28470,
13,
13,
797,
263,
4091,
340,
12507,
346,
8357,
29892,
23546,
4208,
278,
4094,
29892,
577,
29891,
12507,
346,
29892,
330,
5621,
4632,
29892,
3999,
420,
17182,
29892,
7171,
506,
29892,
322,
1236,
2496,
29889,
3462,
278,
23429,
19548,
29892,
27697,
278,
4055,
13958,
975,
278,
2625,
310,
278,
7243,
29889,
1771,
292,
304,
263,
1027,
1050,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29945,
6233,
29892,
470,
2745,
278,
23429,
19548,
756,
1886,
1022,
287,
29889,
3295,
7543,
278,
23429,
19548,
29889,
512,
1037,
559,
278,
12871,
304,
18350,
29889,
17278,
29892,
10664,
29892,
2745,
925,
1045,
6504,
29889,
13,
13,
29954,
2705,
2058,
278,
9427,
297,
278,
23429,
29544,
29889,
960,
5181,
29892,
1671,
297,
3307,
7375,
4094,
304,
16079,
368,
4612,
278,
9427,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29896,
29900,
304,
29871,
29896,
29896,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
13,
13,
22908,
278,
10917,
496,
297,
16330,
12580,
3137,
29889,
15484,
278,
9427,
373,
278,
10917,
496,
29889,
14314,
682,
280,
411,
278,
7933,
373,
1080,
29889,
19955,
280,
278,
2545,
386,
975,
599,
29889,
14314,
682,
280,
411,
278,
3999,
420,
409,
5779,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29953,
29896,
13,
13,
7827,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29941,
29953,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29947,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
2277,
282,
457,
11548,
322,
330,
5621,
611,
2918,
611,
2918,
13,
13,
29909,
1224,
24285,
322,
286,
789,
368,
21054,
4395,
9427,
2998,
491,
967,
26901,
713,
1024,
29892,
611,
2918,
611,
2918,
338,
263,
5613,
411,
278,
21881,
20021,
21054,
943,
310,
282,
457,
11548,
322,
330,
5621,
29889,
1816,
345,
445,
411,
17354,
19408,
470,
577,
2291,
694,
397,
793,
304,
577,
557,
701,
278,
285,
582,
537,
2545,
386,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
29896,
18002,
282,
457,
11548,
29544,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29906,
18350,
1559,
307,
1372,
29892,
16835,
368,
269,
506,
287,
7936,
265,
635,
13,
13,
29896,
18350,
2654,
22623,
1236,
2496,
29892,
16835,
368,
269,
506,
287,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29906,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
322,
29871,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
259,
13,
29879,
397,
1974,
521,
21475,
2545,
386,
313,
361,
4312,
511,
13931,
671,
13,
13,
29896,
6131,
1129,
265,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29946,
2723,
567,
3060,
2986,
282,
457,
11548,
313,
29896,
29899,
22466,
12785,
29897,
13,
13,
29946,
611,
2918,
611,
2918,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
30515,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29941,
18350,
7933,
373,
1080,
29892,
16835,
368,
269,
506,
287,
7936,
265,
635,
313,
12692,
5633,
871,
29897,
13,
13,
797,
263,
2919,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
1559,
307,
1372,
29892,
22623,
1236,
2496,
29892,
322,
7171,
506,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
278,
1559,
307,
1372,
322,
22623,
1236,
2496,
526,
22707,
29899,
29883,
3780,
29886,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
29871,
29906,
2723,
567,
2545,
386,
322,
278,
330,
5621,
4632,
29889,
4367,
24551,
278,
12871,
304,
18350,
29889,
17278,
29892,
10664,
29892,
2745,
925,
1045,
6504,
29889,
13,
13,
855,
381,
297,
278,
282,
457,
11548,
29889,
402,
2705,
2058,
278,
9427,
297,
278,
2545,
386,
29544,
29889,
960,
5181,
29892,
1671,
297,
3307,
310,
278,
9886,
29871,
29896,
18002,
2545,
386,
304,
16079,
368,
4612,
278,
9427,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29945,
304,
29871,
29955,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
13,
13,
4300,
571,
278,
9427,
304,
16330,
12580,
3137,
29889,
19955,
280,
278,
2545,
386,
29544,
975,
278,
9427,
29889,
14314,
682,
280,
411,
278,
274,
309,
424,
307,
322,
7933,
373,
1080,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29945,
29906,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29947,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29955,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29929,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
15774,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
4497,
3712,
411,
454,
3712,
29899,
13405,
29883,
1253,
12507,
346,
13,
13,
2308,
328,
17658,
6766,
11220,
29892,
445,
1510,
29891,
4497,
3712,
270,
728,
338,
18018,
2437,
11407,
746,
14294,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
30515,
18002,
9950,
29899,
9021,
8656,
12311,
343,
468,
4227,
13,
13,
30515,
18002,
3578,
1122,
11586,
895,
13,
13,
29906,
6131,
1129,
787,
1436,
873,
3060,
2986,
4094,
29883,
1253,
470,
610,
29879,
2330,
13,
13,
29896,
6131,
1129,
265,
16835,
368,
269,
506,
287,
7933,
373,
1080,
470,
521,
3145,
13,
13,
29896,
6131,
1129,
265,
867,
630,
454,
3712,
503,
342,
13,
13,
29925,
22466,
310,
1236,
2496,
313,
10921,
16389,
29897,
13,
13,
29906,
18350,
18130,
29879,
310,
6432,
708,
29892,
269,
506,
287,
13,
13,
29896,
18350,
373,
291,
29892,
269,
506,
287,
13,
13,
29896,
18350,
1559,
5450,
29892,
269,
506,
287,
13,
13,
29906,
269,
29399,
454,
3712,
29892,
1048,
29871,
30515,
297,
305,
12003,
13,
13,
29896,
18350,
270,
1255,
23041,
20447,
13,
13,
29941,
4628,
1236,
2496,
29883,
1398,
29879,
13,
13,
29896,
30642,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29896,
18002,
15589,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
19309,
2222,
4497,
3712,
977,
1026,
29892,
1048,
29871,
29896,
297,
305,
12003,
29892,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
30515,
734,
294,
1129,
265,
3500,
374,
1335,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
343,
468,
4227,
29892,
1122,
11586,
895,
29892,
4094,
29883,
1253,
29892,
7933,
373,
1080,
29892,
454,
3712,
503,
342,
29892,
322,
1236,
2496,
29889,
26428,
322,
337,
1341,
4087,
403,
29889,
13,
13,
22908,
278,
6432,
708,
29892,
373,
291,
29892,
1559,
5450,
29892,
454,
3712,
269,
29399,
29892,
23041,
20447,
29892,
322,
1236,
2496,
29883,
1398,
29879,
297,
263,
2919,
2071,
7324,
29889,
6803,
297,
278,
2545,
386,
322,
19006,
29889,
17278,
29892,
10664,
29892,
975,
18350,
29899,
9812,
12871,
2745,
925,
1045,
6504,
29889,
13,
13,
29954,
2705,
2058,
278,
9427,
297,
278,
2545,
386,
29544,
29889,
960,
5181,
29892,
1671,
297,
3307,
7375,
4094,
304,
16079,
368,
4612,
278,
9427,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29947,
304,
29871,
29896,
29906,
6233,
29892,
470,
2745,
278,
9427,
338,
278,
7429,
1016,
18543,
29889,
5293,
263,
2243,
15048,
805,
271,
2497,
29892,
6782,
278,
9427,
304,
263,
15284,
29889,
4121,
278,
9427,
15589,
411,
5650,
304,
29893,
1379,
29889,
3295,
7543,
278,
23904,
29889,
13,
13,
1748,
345,
278,
9427,
14294,
470,
12244,
372,
297,
715,
6288,
12244,
470,
394,
9735,
398,
1701,
309,
322,
337,
1341,
4087,
403,
363,
29871,
29941,
304,
29871,
29906,
29946,
6199,
304,
9080,
521,
24455,
29889,
3387,
1434,
16330,
29892,
5700,
278,
9427,
964,
3023,
12785,
29889,
14314,
682,
280,
411,
278,
3500,
374,
1335,
29889,
1816,
345,
278,
12507,
346,
373,
278,
2625,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29896,
29953,
13,
13,
7827,
9950,
29871,
29947,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29947,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29941,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
29953,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
960,
366,
5821,
29892,
366,
508,
23764,
337,
2176,
728,
29892,
7205,
12760,
29892,
470,
1601,
29895,
15161,
977,
10376,
363,
278,
4497,
3712,
29889,
13,
13,
2277,
298,
4992,
287,
4497,
3712,
411,
805,
7612,
298,
4992,
311,
29893,
269,
1338,
29874,
13,
13,
1576,
15409,
310,
772,
9733,
9427,
338,
393,
278,
9427,
27111,
2730,
391,
322,
628,
9593,
29889,
379,
4992,
322,
301,
603,
3623,
625,
2367,
445,
772,
9733,
23904,
263,
14225,
29899,
392,
29899,
29879,
473,
21779,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
31690,
18002,
269,
1338,
29874,
639,
16330,
13,
13,
29903,
1964,
8132,
13,
13,
29896,
30226,
6131,
1129,
787,
298,
4992,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
301,
603,
503,
342,
13,
13,
29896,
734,
294,
1129,
265,
10849,
301,
603,
3623,
625,
13,
13,
229,
136,
158,
304,
29871,
30515,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
13,
13,
29896,
18002,
3060,
2986,
298,
4992,
311,
29893,
9232,
265,
13,
13,
31690,
18002,
1436,
873,
3060,
2986,
2654,
22623,
1236,
2496,
13,
13,
30515,
18002,
269,
506,
287,
7933,
373,
1080,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29906,
2723,
567,
4094,
13,
13,
30515,
18002,
269,
506,
287,
7933,
373,
1080,
313,
10921,
322,
3578,
7933,
5633,
29897,
13,
13,
29941,
6131,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
29906,
6131,
1129,
787,
298,
4992,
13,
13,
29946,
4497,
3712,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
23546,
4208,
29871,
29896,
30226,
6131,
1129,
787,
298,
4992,
29892,
29871,
29896,
734,
294,
1129,
265,
301,
603,
3623,
625,
29892,
322,
278,
2654,
1236,
2496,
17422,
10794,
29889,
402,
2705,
23546,
297,
278,
9886,
269,
1338,
29874,
2348,
1127,
10070,
29892,
3704,
278,
301,
603,
503,
342,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
18350,
2071,
7324,
29892,
23546,
4208,
278,
4094,
322,
278,
9886,
29871,
30515,
18002,
7933,
373,
1080,
29892,
29871,
29941,
6131,
1129,
787,
301,
603,
3623,
625,
29892,
322,
29871,
29906,
6131,
1129,
787,
298,
4992,
29889,
17278,
29892,
10664,
29892,
975,
18350,
29899,
9812,
12871,
2745,
925,
1045,
6504,
29889,
13,
13,
29954,
2705,
2058,
278,
9427,
297,
278,
772,
9733,
23904,
29889,
960,
5181,
29892,
1671,
297,
3307,
7375,
4094,
304,
16079,
368,
4612,
278,
9427,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29953,
304,
29871,
29947,
6233,
29892,
470,
2745,
278,
9427,
338,
278,
7429,
1016,
18543,
29889,
5293,
263,
2243,
15048,
805,
271,
2497,
29892,
6782,
304,
16330,
715,
1078,
29889,
3295,
7543,
278,
772,
9733,
23904,
29889,
1816,
345,
278,
9427,
411,
278,
269,
1338,
29874,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29929,
29946,
13,
13,
7827,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29929,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29906,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
15774,
29892,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
7537,
15816,
23429,
6928,
481,
423,
13,
13,
4013,
14225,
322,
4048,
706,
9427,
270,
728,
4947,
263,
21954,
437,
344,
310,
7537,
15816,
515,
10849,
24841,
503,
342,
322,
3623,
625,
29892,
408,
1532,
408,
7537,
15816,
29899,
29888,
4112,
4395,
23429,
29889,
1816,
345,
411,
1886,
2795,
12461,
29887,
583,
29892,
1316,
408,
5260,
21305,
29899,
29949,
3881,
4358,
617,
5079,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
29946,
2323,
29899,
643,
1747,
289,
810,
310,
7537,
15816,
23429,
13,
13,
29941,
2723,
567,
7375,
4094,
29892,
29871,
29896,
18002,
7375,
4094,
313,
361,
4312,
511,
322,
29871,
29896,
6131,
1129,
265,
4094,
29892,
13931,
671,
13,
13,
29896,
6131,
1129,
265,
3578,
470,
6501,
17354,
26438,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29906,
18350,
4091,
1862,
29892,
3060,
2986,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29906,
6131,
1129,
787,
867,
630,
24841,
503,
342,
13,
13,
31690,
304,
29871,
30226,
18002,
10849,
24841,
3623,
625,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29946,
6928,
481,
423,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29896,
6131,
1129,
265,
26343,
303,
1279,
13,
13,
29896,
6131,
1129,
265,
1375,
1133,
10849,
610,
29879,
2330,
13,
13,
29896,
18350,
454,
3712,
29892,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
22908,
278,
23429,
289,
810,
297,
263,
29871,
29946,
29899,
5231,
12917,
7540,
3864,
18002,
29889,
6803,
297,
29871,
29941,
2723,
567,
7375,
4094,
29889,
2443,
1022,
29892,
10664,
29892,
363,
29871,
29946,
304,
29871,
29945,
6233,
29889,
3295,
7543,
278,
23429,
289,
810,
29889,
624,
381,
297,
278,
17354,
26438,
29889,
13,
13,
797,
263,
2919,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
4091,
1862,
322,
7171,
506,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
23429,
29544,
29892,
24841,
503,
342,
29892,
24841,
3623,
625,
29892,
322,
1236,
2496,
29889,
4367,
24551,
278,
12871,
304,
18350,
29889,
17278,
29892,
10664,
29892,
2745,
925,
1045,
6504,
29889,
13,
13,
29954,
2705,
2058,
278,
9427,
297,
278,
23429,
29544,
29889,
960,
5181,
29892,
1671,
297,
3307,
310,
278,
29871,
29896,
18002,
7375,
4094,
304,
16079,
368,
4612,
278,
9427,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29946,
304,
29871,
29945,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
13,
13,
3047,
449,
14712,
1283,
278,
12871,
29892,
6782,
278,
9427,
304,
715,
1078,
29889,
26428,
278,
9427,
658,
359,
873,
411,
394,
9735,
398,
1701,
309,
304,
3013,
14294,
29889,
13,
13,
22908,
278,
26343,
303,
1279,
297,
263,
2319,
12580,
29880,
29889,
3462,
278,
9886,
29871,
29896,
6131,
1129,
265,
4094,
29892,
23546,
5393,
304,
23556,
345,
29889,
19295,
1474,
788,
304,
278,
12507,
346,
29892,
377,
3873,
292,
2745,
372,
16410,
304,
12003,
264,
29889,
1771,
292,
925,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29941,
304,
29871,
29945,
6233,
29892,
377,
3873,
292,
13672,
29889,
13,
13,
29903,
1129,
265,
278,
12507,
346,
975,
278,
9427,
29889,
14314,
682,
280,
411,
278,
610,
29879,
2330,
29889,
1816,
345,
411,
278,
454,
3712,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29947,
29896,
13,
13,
7827,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29955,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29953,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29900,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29906,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
2379,
618,
261,
29892,
2654,
5807,
23239,
29892,
470,
916,
4072,
310,
17422,
3459,
4796,
9427,
1122,
367,
5960,
277,
3860,
363,
278,
6928,
481,
423,
29889,
13,
13,
2277,
454,
3712,
521,
21475,
411,
270,
453,
12507,
346,
13,
13,
8809,
1979,
366,
526,
263,
2420,
625,
470,
385,
18860,
7984,
29892,
366,
29915,
645,
5360,
278,
23205,
310,
445,
325,
4626,
10835,
21054,
4395,
270,
728,
29889,
1816,
345,
372,
411,
17354,
19408,
470,
2215,
307,
29892,
3412,
411,
596,
25448,
18655,
519,
29889,
1394,
9080,
278,
2730,
391,
322,
22707,
521,
21475,
975,
263,
4497,
328,
310,
6501,
29892,
20447,
29891,
1395,
575,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
29896,
30226,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
30226,
18002,
15589,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29896,
2319,
454,
3712,
29892,
16835,
368,
269,
506,
287,
13,
13,
29896,
734,
294,
1129,
265,
270,
453,
409,
5779,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29946,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
29892,
1652,
8606,
287,
304,
29871,
30642,
29899,
22466,
12003,
2264,
13,
13,
8132,
29965,
4741,
13,
13,
30226,
18002,
9950,
29899,
9021,
8656,
12311,
343,
468,
4227,
13,
13,
29906,
734,
294,
1129,
787,
3060,
2986,
10849,
270,
453,
705,
287,
13,
13,
30226,
734,
294,
1129,
265,
867,
630,
454,
3712,
503,
342,
13,
13,
29896,
734,
294,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29896,
18350,
454,
3712,
29892,
16835,
368,
269,
506,
287,
13,
13,
29946,
7689,
23379,
310,
10849,
270,
453,
705,
287,
313,
303,
1567,
17151,
2168,
304,
278,
1238,
493,
708,
304,
567,
29897,
13,
13,
797,
263,
2919,
29892,
4091,
340,
12507,
346,
8357,
29892,
23546,
4208,
278,
2545,
386,
29892,
19006,
29892,
454,
3712,
269,
29399,
29892,
270,
453,
409,
5779,
29892,
470,
387,
1562,
29892,
322,
1236,
2496,
29889,
1771,
292,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29945,
6233,
29889,
13,
13,
22150,
278,
521,
21475,
297,
278,
2545,
386,
29544,
29889,
960,
5181,
29892,
788,
3307,
7375,
4094,
304,
16079,
368,
4612,
278,
521,
21475,
29889,
512,
1037,
559,
278,
12871,
304,
18350,
1880,
322,
736,
304,
263,
1027,
1050,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29947,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
12507,
346,
2348,
1127,
10070,
29889,
13,
13,
15156,
263,
2243,
15048,
805,
6150,
470,
805,
271,
2497,
29892,
6782,
278,
7984,
287,
521,
21475,
304,
263,
28967,
7613,
29889,
3295,
7543,
278,
772,
9733,
23904,
29889,
315,
329,
278,
521,
21475,
7936,
265,
635,
4822,
278,
2646,
262,
964,
12003,
269,
29399,
29889,
17934,
304,
715,
1078,
29889,
24674,
265,
278,
12507,
346,
975,
278,
521,
21475,
29889,
402,
2753,
728,
411,
278,
9886,
454,
3712,
269,
29399,
322,
7689,
23379,
310,
270,
453,
705,
287,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29946,
29929,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29953,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29906,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
30226,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
450,
12507,
346,
508,
367,
13240,
701,
304,
2211,
3841,
297,
6564,
29889,
26428,
322,
337,
1341,
4087,
403,
372,
2745,
4312,
29889,
13,
13,
2277,
521,
21475,
322,
18655,
1849,
411,
266,
25395,
29899,
1557,
14927,
2545,
386,
13,
13,
29909,
772,
3791,
521,
21475,
24207,
6766,
411,
22707,
18655,
1849,
338,
278,
3171,
310,
23205,
29892,
27697,
278,
10849,
2348,
1127,
10070,
528,
457,
1549,
29889,
1816,
345,
445,
297,
263,
12580,
29880,
29892,
763,
263,
22300,
470,
1886,
29893,
29892,
304,
13389,
599,
278,
13016,
292,
29892,
5227,
629,
424,
2545,
386,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
322,
29871,
29896,
18002,
18655,
1849,
322,
2545,
386,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
13,
13,
29906,
18350,
454,
14541,
29892,
16835,
368,
269,
506,
287,
313,
10921,
5633,
871,
29897,
13,
13,
29906,
18350,
18130,
29879,
310,
6432,
708,
29892,
16835,
368,
269,
506,
287,
7936,
265,
635,
13,
13,
29946,
2723,
567,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
322,
29871,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
313,
361,
4312,
511,
13931,
671,
13,
13,
29906,
2319,
1559,
307,
1372,
29892,
16835,
368,
269,
506,
287,
7936,
265,
635,
13,
13,
29896,
18350,
2654,
3104,
1219,
29892,
12616,
287,
322,
16835,
368,
269,
506,
287,
13,
13,
29941,
7689,
23379,
310,
10849,
266,
25395,
13,
13,
29946,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
13,
13,
29947,
29871,
1309,
778,
3060,
2986,
413,
744,
29892,
260,
820,
380,
1567,
2313,
25600,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
797,
263,
2919,
12507,
346,
8357,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
454,
14541,
322,
6432,
708,
363,
29871,
29941,
304,
29871,
29945,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
13672,
29889,
13,
13,
855,
381,
297,
29871,
29946,
2723,
567,
2545,
386,
29892,
278,
1559,
307,
1372,
29892,
3104,
1219,
29892,
322,
266,
25395,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29945,
6233,
29889,
15484,
278,
521,
21475,
297,
278,
2545,
386,
29544,
29889,
960,
5181,
29892,
1671,
297,
3307,
310,
278,
9886,
29871,
29896,
18002,
2545,
386,
304,
16079,
368,
4612,
278,
521,
21475,
29889,
512,
1037,
559,
278,
12871,
304,
18350,
1880,
322,
736,
304,
263,
1027,
1050,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29946,
304,
29871,
29945,
6233,
313,
1552,
521,
21475,
2113,
29915,
29873,
367,
2309,
472,
445,
1298,
467,
5293,
263,
2243,
15048,
805,
6150,
29892,
2313,
538,
278,
266,
25395,
29889,
13,
13,
2528,
278,
413,
744,
29889,
17278,
363,
29871,
29941,
6233,
29892,
470,
2745,
278,
413,
744,
338,
925,
22707,
322,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
15156,
263,
2243,
15048,
805,
6150,
470,
805,
271,
2497,
29892,
6782,
278,
521,
21475,
304,
263,
28967,
7613,
29889,
315,
329,
7936,
265,
635,
4822,
278,
2646,
262,
964,
12003,
269,
29399,
29889,
17934,
304,
12580,
3137,
29889,
19955,
280,
278,
18655,
1849,
322,
2545,
386,
975,
278,
521,
21475,
29889,
14314,
682,
280,
411,
278,
1236,
2496,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29955,
29947,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29947,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29941,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29941,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29941,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
11060,
29923,
17557,
29901,
1763,
19012,
454,
14541,
29892,
5700,
1283,
322,
2313,
538,
278,
16778,
373,
278,
4796,
8227,
29890,
29889,
315,
329,
1283,
278,
260,
820,
261,
6501,
7933,
11308,
29889,
960,
366,
6398,
29892,
366,
508,
4078,
1438,
304,
1207,
10961,
29889,
8142,
345,
278,
454,
1416,
3309,
3538,
29889,
1987,
5700,
278,
8870,
1960,
4891,
3538,
964,
16835,
269,
29399,
29889,
17934,
278,
269,
29399,
304,
263,
2319,
784,
3825,
29889,
390,
262,
344,
963,
1532,
1090,
11220,
4094,
29889,
360,
6038,
963,
1532,
29889,
960,
5181,
29892,
12312,
278,
1889,
304,
5941,
1283,
599,
278,
11982,
29891,
330,
768,
29889,
13,
13,
2277,
923,
267,
29891,
1722,
29899,
2161,
19710,
11982,
16416,
267,
13,
13,
5894,
3647,
368,
772,
3791,
29808,
526,
4780,
304,
19012,
29892,
3907,
963,
385,
10839,
26044,
363,
1906,
297,
263,
12166,
719,
29889,
2266,
896,
2246,
2181,
11936,
304,
28470,
3353,
29899,
3874,
262,
4223,
286,
3096,
262,
8870,
1960,
29892,
1550,
263,
923,
267,
29891,
289,
17192,
314,
295,
12507,
346,
260,
583,
278,
270,
728,
4208,
29889,
450,
29808,
322,
12507,
346,
526,
18018,
260,
579,
29891,
746,
6766,
975,
1886,
2795,
470,
872,
329,
29948,
287,
10917,
496,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
11982,
16416,
639,
16330,
13,
13,
30226,
18002,
9950,
29899,
9021,
27274,
13,
13,
29906,
734,
294,
1129,
787,
599,
29899,
15503,
4220,
1652,
473,
13,
13,
30226,
734,
294,
1129,
265,
288,
9258,
17182,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
274,
388,
4584,
313,
25253,
29897,
13,
13,
31690,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
678,
287,
16702,
923,
968,
13,
13,
29941,
2723,
567,
4094,
13,
13,
29896,
734,
294,
1129,
265,
4796,
13848,
387,
279,
13,
13,
29946,
2919,
29808,
29892,
26755,
287,
964,
5004,
2319,
12580,
3137,
470,
2723,
567,
13,
13,
29906,
3353,
29899,
3874,
262,
4223,
286,
3096,
1144,
313,
677,
342,
20892,
1974,
3625,
511,
8870,
1490,
322,
304,
28470,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
27274,
29892,
1652,
473,
29892,
17182,
29892,
1236,
2496,
29892,
18254,
29885,
387,
29892,
322,
274,
388,
4584,
29889,
512,
263,
2319,
12507,
346,
8357,
29892,
6963,
278,
29544,
304,
263,
1027,
1050,
975,
18350,
29899,
9812,
12871,
29889,
3439,
1050,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
12003,
6419,
29892,
377,
3873,
292,
13672,
29889,
15154,
515,
278,
12871,
29889,
13,
13,
2528,
278,
678,
287,
16702,
29892,
23546,
5393,
2745,
286,
2152,
287,
29889,
26428,
304,
3013,
14294,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
4091,
340,
12507,
346,
8357,
29892,
6963,
278,
4094,
322,
13848,
387,
279,
304,
925,
2400,
278,
1045,
6504,
1298,
313,
29896,
29946,
29900,
30073,
29943,
304,
29871,
29896,
29947,
29900,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
416,
21577,
289,
431,
7586,
1122,
883,
472,
278,
5970,
310,
278,
7243,
29892,
541,
896,
2113,
29915,
29873,
2867,
278,
7101,
310,
278,
4094,
29889,
15484,
263,
3765,
7546,
310,
5650,
304,
29893,
1379,
373,
263,
2919,
15284,
29889,
13,
13,
15156,
263,
5941,
18350,
29899,
2311,
377,
3873,
29892,
9098,
322,
330,
2705,
23546,
278,
4094,
304,
1653,
263,
2381,
5168,
297,
278,
4818,
310,
278,
7243,
29889,
10057,
3730,
269,
3466,
697,
310,
278,
29808,
964,
278,
2381,
5168,
29889,
5293,
263,
805,
6150,
29892,
330,
2705,
23546,
278,
4094,
2820,
278,
19710,
363,
29871,
29896,
29900,
6923,
304,
1371,
278,
19710,
4796,
12244,
2820,
278,
343,
28387,
29889,
17278,
363,
29871,
29906,
304,
29871,
29946,
6233,
29892,
470,
2745,
278,
4796,
338,
6446,
731,
322,
278,
343,
28387,
338,
278,
7429,
1016,
18543,
29889,
5293,
263,
2243,
15048,
805,
6150,
29892,
6782,
278,
19710,
304,
278,
5650,
304,
20466,
29889,
830,
11666,
411,
278,
9886,
29808,
29889,
13,
13,
14084,
1434,
16330,
29892,
1925,
278,
4223,
286,
3096,
262,
8870,
1960,
373,
715,
1078,
411,
278,
5700,
11192,
701,
29889,
7488,
1269,
286,
3096,
262,
4203,
411,
385,
19710,
29889,
24674,
265,
278,
12507,
346,
975,
278,
29808,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29953,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
29947,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29953,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29955,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29896,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29896,
30226,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1152,
2715,
7604,
25530,
322,
21054,
272,
29892,
2246,
1269,
11982,
16416,
411,
263,
12534,
305,
310,
10849,
368,
5962,
1236,
2496,
29892,
3500,
374,
1335,
29892,
470,
3060,
2986,
10849,
902,
5824,
313,
305,
3145,
29892,
266,
25395,
29892,
470,
387,
1562,
29892,
2362,
309,
29892,
322,
696,
12846,
653,
526,
2107,
19995,
467,
13,
13,
2277,
5881,
314,
290,
29899,
272,
927,
715,
6762,
13,
13,
29909,
456,
2454,
5881,
314,
290,
4076,
1438,
772,
3791,
715,
6762,
263,
8359,
573,
805,
4245,
29899,
29879,
16668,
21054,
272,
29889,
1816,
345,
278,
15774,
14294,
470,
521,
24455,
29892,
7432,
470,
411,
263,
885,
26793,
310,
9950,
29899,
9021,
14671,
2256,
1109,
2911,
343,
468,
4227,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29906,
715,
398,
8870,
1960,
639,
16330,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
24841,
503,
342,
13,
13,
29906,
30226,
2723,
567,
10849,
24841,
3623,
625,
322,
29871,
29896,
18002,
10849,
24841,
3623,
625,
313,
361,
4312,
29897,
13,
13,
30226,
18002,
24841,
619,
802,
332,
29892,
1316,
408,
6265,
1085,
11697,
313,
25253,
29897,
13,
13,
29896,
6131,
1129,
265,
26438,
13,
13,
29896,
6131,
1129,
265,
2181,
15392,
5881,
314,
290,
2532,
29879,
313,
12717,
29871,
29941,
304,
29871,
29946,
2532,
29879,
29897,
13,
13,
29946,
18350,
715,
6762,
29892,
8870,
1490,
13,
13,
797,
263,
18350,
12507,
346,
8357,
29892,
23546,
4208,
29871,
29906,
30226,
2723,
567,
24841,
3623,
625,
29892,
278,
619,
802,
332,
29892,
26438,
29892,
5881,
314,
290,
29892,
322,
24841,
503,
342,
29889,
1771,
292,
304,
263,
1027,
1050,
975,
18350,
12871,
29892,
23546,
5393,
2745,
278,
26438,
338,
23556,
1490,
29889,
13,
13,
29954,
2705,
2058,
278,
715,
6762,
297,
278,
24841,
3623,
625,
29544,
29889,
960,
5181,
29892,
1671,
297,
3307,
310,
278,
9886,
29871,
29896,
18002,
24841,
3623,
625,
304,
16079,
368,
4612,
278,
715,
6762,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1027,
1050,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29945,
304,
29871,
29955,
6233,
29892,
470,
2745,
278,
715,
6762,
526,
925,
22707,
746,
9307,
1133,
411,
278,
6872,
310,
263,
15301,
889,
1607,
29892,
23546,
5393,
13672,
29889,
13,
13,
15156,
263,
2243,
15048,
805,
6150,
29892,
6782,
278,
715,
6762,
304,
6808,
814,
270,
17006,
29889,
13,
13,
797,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
278,
24841,
3623,
625,
29544,
304,
263,
1045,
309,
29889,
1952,
309,
363,
29871,
29896,
29900,
304,
29871,
29896,
29906,
6233,
29892,
470,
2745,
12212,
491,
4203,
313,
517,
1048,
29871,
29896,
30226,
2723,
567,
511,
23546,
5393,
21003,
29889,
5293,
263,
2691,
29899,
4467,
29882,
269,
2418,
29892,
5312,
262,
278,
12507,
346,
29892,
2313,
20272,
278,
899,
4841,
29889,
24674,
265,
278,
12507,
346,
975,
278,
715,
6762,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29946,
29896,
13,
13,
7827,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29941,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
29947,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
15774,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
501,
8485,
297,
5186,
5633,
29892,
263,
10296,
310,
274,
2559,
314,
265,
322,
17184,
1960,
470,
274,
2559,
314,
265,
322,
18254,
29885,
387,
508,
23764,
363,
5881,
314,
290,
29889,
512,
445,
9522,
412,
29892,
671,
29871,
29896,
274,
2559,
314,
265,
12070,
313,
12717,
29871,
29941,
22831,
1472,
29897,
322,
29871,
30515,
734,
294,
1129,
265,
3353,
17184,
1960,
2012,
310,
278,
5881,
314,
290,
2532,
29879,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
315,
17011,
5194,
6488,
29901,
9160,
314,
290,
2532,
29879,
526,
5972,
297,
2522,
392,
262,
485,
713,
29892,
7560,
29892,
322,
12311,
7984,
292,
29889,
2688,
505,
263,
3273,
528,
761,
2834,
322,
881,
367,
6087,
297,
385,
263,
2728,
523,
5639,
297,
278,
3889,
3298,
29889,
1632,
618,
5881,
314,
290,
1232,
267,
967,
3104,
3819,
1407,
9098,
29892,
577,
6755,
278,
2532,
29879,
10940,
1950,
29889,
13,
13,
2277,
1109,
2911,
29899,
7192,
3880,
282,
15451,
13,
13,
29963,
273,
2911,
322,
282,
15451,
1207,
263,
18356,
368,
5101,
29892,
7148,
746,
278,
15774,
338,
330,
2705,
1027,
1050,
287,
322,
6766,
411,
263,
12003,
12507,
346,
1754,
515,
278,
274,
2559,
314,
265,
29899,
1557,
14927,
772,
9733,
23904,
29889,
1816,
345,
14294,
470,
521,
24455,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
282,
799,
4203,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
29896,
18002,
390,
583,
1847,
470,
916,
18350,
29899,
29879,
16668,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
30226,
18002,
4094,
13,
13,
29906,
30226,
6131,
1129,
787,
26438,
13,
13,
29896,
274,
2559,
314,
265,
12070,
313,
12717,
29871,
29941,
22831,
1472,
29897,
13,
13,
29999,
342,
310,
29871,
30226,
18350,
24841,
29892,
5700,
964,
10076,
567,
13,
13,
29896,
734,
294,
1129,
265,
1109,
2911,
6597,
13,
13,
29906,
18350,
9226,
10211,
29883,
470,
12245,
13650,
282,
15451,
29892,
1236,
29872,
839,
29892,
8870,
1490,
29892,
322,
1034,
287,
13,
13,
797,
263,
18350,
12507,
346,
8357,
29892,
377,
3873,
4208,
599,
278,
2348,
1127,
10070,
5174,
278,
282,
15451,
29889,
1771,
292,
304,
263,
1045,
309,
975,
18350,
29899,
9812,
12871,
29889,
1952,
309,
363,
29871,
29945,
6233,
29892,
470,
2745,
278,
26438,
338,
23556,
1490,
29892,
23546,
5393,
13672,
29889,
13,
13,
29954,
2705,
2058,
278,
282,
15451,
297,
278,
19006,
29544,
29889,
960,
5181,
29892,
1671,
297,
3307,
7375,
4094,
304,
16079,
368,
4612,
278,
282,
15451,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
22039,
10664,
29892,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
6872,
310,
263,
15301,
889,
1607,
15478,
964,
263,
282,
799,
5304,
714,
5948,
29889,
13,
13,
15156,
263,
2243,
15048,
805,
6150,
29892,
6782,
278,
282,
15451,
304,
715,
1078,
29889,
3295,
7543,
278,
274,
2559,
314,
265,
12070,
322,
24841,
503,
342,
515,
278,
12507,
346,
29889,
13,
13,
8942,
1050,
278,
12507,
346,
363,
29871,
29896,
29906,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
12212,
491,
4203,
313,
517,
1048,
29871,
30226,
18002,
511,
23546,
5393,
21003,
29889,
24674,
265,
975,
278,
282,
15451,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29900,
29947,
13,
13,
7827,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29941,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29955,
330,
13,
13,
14676,
262,
29871,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
15774,
29892,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1152,
263,
25871,
21054,
272,
29892,
1235,
278,
282,
15451,
12528,
297,
278,
772,
9733,
23904,
29889,
26428,
322,
337,
1341,
4087,
403,
975,
11147,
29889,
1816,
345,
521,
24455,
29892,
470,
3349,
515,
278,
337,
1341,
4087,
1061,
322,
1235,
2317,
363,
1048,
29871,
29896,
7234,
304,
9080,
472,
5716,
10430,
29889,
13,
13,
29937,
2545,
6504,
13,
13,
29893,
2817,
5777,
26892,
4497,
328,
411,
304,
21154,
376,
7283,
449,
787,
29908,
13,
13,
2634,
13170,
713,
8870,
747,
329,
13,
13,
637,
711,
3156,
29899,
29873,
4347,
9232,
1372,
13,
13,
29879,
16668,
322,
18806,
29891,
8716,
417,
567,
13,
13,
305,
21475,
322,
7933,
373,
291,
413,
774,
6897,
13,
13,
29879,
16668,
322,
805,
4245,
24103,
303,
7358,
13,
13,
1971,
5231,
457,
27654,
2135,
29879,
13,
13,
29879,
381,
417,
262,
1886,
557,
411,
907,
25934,
4029,
643,
328,
728,
12507,
346,
13,
13,
13650,
24551,
29899,
6312,
2243,
11376,
13,
13,
637,
711,
3156,
282,
4981,
294,
13,
13,
29890,
4708,
287,
304,
21154,
411,
289,
554,
3060,
29891,
13,
13,
2774,
790,
521,
538,
322,
2381,
790,
923,
968,
285,
12123,
532,
13,
13,
6729,
2356,
1701,
2356,
6454,
20452,
13,
13,
3874,
412,
29888,
9216,
411,
2181,
3322,
29891,
330,
5621,
13,
13,
1576,
6210,
322,
23205,
310,
2545,
6504,
30003,
392,
278,
2114,
393,
288,
9852,
2041,
1592,
16242,
411,
263,
4240,
29899,
262,
2545,
3955,
30003,
5675,
372,
263,
19192,
322,
2560,
982,
304,
19012,
9045,
29891,
592,
1338,
29889,
1724,
338,
2545,
6504,
29973,
25086,
310,
372,
408,
24081,
680,
29899,
3204,
867,
8873,
29892,
411,
278,
9687,
373,
278,
5970,
322,
278,
1652,
420,
470,
540,
1218,
1543,
373,
2246,
29889,
3387,
1048,
3099,
393,
366,
508,
867,
453,
508,
367,
2545,
2356,
29889,
887,
508,
2545,
309,
1784,
18254,
768,
2738,
9687,
29879,
29892,
3704,
7205,
1181,
397,
29892,
18655,
1849,
29892,
322,
1584,
15774,
29892,
1316,
408,
297,
16078,
713,
8142,
747,
329,
29892,
4358,
2356,
28532,
2356,
25994,
29892,
322,
4989,
412,
29888,
9216,
411,
6781,
3322,
29891,
402,
5621,
29889,
13,
13,
1576,
1880,
12871,
310,
2545,
6504,
10017,
263,
2181,
11936,
29892,
3347,
9571,
2181,
504,
373,
9427,
29892,
27654,
29892,
322,
282,
5059,
2202,
322,
263,
2730,
391,
29892,
22707,
13290,
1550,
14372,
19163,
269,
1337,
630,
9950,
304,
270,
6472,
3448,
964,
278,
2545,
3955,
7243,
29889,
450,
17818,
344,
29892,
1513,
12871,
7984,
29879,
9687,
5172,
322,
1559,
314,
295,
7093,
372,
29892,
6820,
372,
263,
8359,
573,
21054,
272,
29889,
13,
13,
4986,
350,
1672,
6227,
29901,
259,
13,
1762,
7984,
9687,
4153,
1090,
263,
12871,
2752,
297,
385,
12646,
470,
10489,
288,
854,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
4358,
3955,
7243,
322,
1153,
384,
29892,
2545,
3955,
29899,
11177,
289,
5086,
26718,
29892,
288,
854,
8017,
2071,
7324,
29892,
288,
854,
22219,
29879,
322,
3104,
4808,
414,
29892,
288,
854,
14563,
8328,
29892,
14426,
29899,
949,
14563,
8328,
29892,
29181,
12237,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
512,
12646,
288,
9852,
29892,
278,
2545,
3955,
338,
2337,
472,
278,
2246,
29889,
512,
10489,
288,
9852,
29892,
2545,
22058,
508,
367,
2845,
472,
278,
2246,
470,
297,
263,
5004,
7482,
556,
1090,
278,
288,
854,
29889,
960,
366,
505,
263,
304,
1901,
288,
854,
29892,
366,
1556,
5517,
505,
263,
2545,
3955,
727,
29892,
2086,
29889,
13,
13,
30119,
20627,
9687,
1090,
278,
540,
1218,
1543,
363,
1900,
2582,
29892,
5731,
1218,
372,
408,
5181,
304,
1584,
368,
7984,
278,
9687,
29915,
29879,
7101,
29889,
13,
13,
30119,
22738,
393,
565,
263,
9522,
412,
1580,
11057,
263,
5418,
515,
278,
12871,
29892,
372,
2794,
278,
1353,
310,
22831,
515,
278,
540,
1218,
1543,
304,
278,
2246,
310,
278,
9687,
366,
526,
2545,
6504,
29892,
451,
304,
278,
2246,
310,
278,
2545,
3955,
1153,
384,
29889,
1094,
263,
5751,
310,
28968,
29892,
9687,
881,
367,
7180,
1048,
29871,
29946,
22831,
515,
278,
540,
1218,
1543,
304,
4772,
25535,
29889,
13,
13,
30119,
7849,
288,
9852,
2041,
411,
263,
2545,
3955,
7243,
322,
1153,
384,
29892,
541,
565,
366,
1016,
29915,
29873,
505,
263,
2545,
3955,
7243,
29892,
769,
366,
508,
671,
738,
599,
29899,
2527,
284,
7243,
29889,
13,
13,
30119,
1763,
1207,
5941,
786,
6775,
29892,
1196,
278,
2545,
3955,
7243,
411,
394,
9735,
398,
1701,
309,
29889,
13,
13,
30119,
1605,
326,
322,
2313,
538,
599,
7962,
9950,
515,
282,
5059,
2202,
322,
592,
1446,
1434,
2545,
6504,
29936,
445,
674,
1716,
5700,
1623,
373,
269,
1337,
630,
9950,
322,
1371,
5557,
285,
8663,
29899,
14340,
29889,
13,
13,
30119,
4803,
5224,
29899,
29879,
397,
1974,
1766,
262,
3076,
322,
14751,
10947,
408,
1532,
408,
15795,
29899,
9021,
14051,
29879,
304,
788,
21054,
272,
29889,
13,
13,
30119,
1763,
4772,
1716,
975,
15108,
292,
322,
1090,
15108,
292,
27654,
322,
282,
5059,
2202,
29892,
671,
263,
27654,
14563,
8328,
304,
1423,
1016,
18543,
29889,
15154,
278,
27654,
470,
282,
5059,
2202,
515,
278,
288,
854,
1434,
23800,
278,
14426,
29899,
949,
14563,
8328,
29889,
24505,
278,
14563,
8328,
964,
278,
4818,
29892,
470,
12003,
342,
760,
29892,
310,
278,
27654,
29892,
3907,
1854,
278,
14563,
8328,
1838,
29915,
29873,
6023,
289,
650,
470,
9950,
29889,
13,
13,
30119,
2823,
2545,
6504,
15332,
25562,
29889,
13,
13,
15349,
1254,
18322,
29949,
8452,
15842,
350,
1672,
6227,
4214,
13,
13,
2008,
29874,
1181,
397,
29901,
12030,
977,
10376,
322,
1886,
10327,
29892,
528,
5632,
29886,
29892,
322,
8716,
417,
567,
29892,
408,
297,
317,
16668,
322,
27378,
29891,
317,
1052,
417,
567,
29889,
13,
13,
29925,
5059,
2202,
29901,
678,
21475,
24207,
8870,
1960,
313,
15933,
29899,
262,
470,
10814,
6393,
511,
408,
297,
678,
21475,
322,
7646,
1551,
291,
476,
774,
6897,
29936,
521,
21475,
22707,
417,
1144,
29936,
7013,
1989,
5700,
10376,
29936,
322,
7013,
1989,
22707,
417,
1144,
29889,
13,
13,
6816,
271,
29901,
323,
1581,
367,
1389,
5700,
29879,
29892,
1316,
408,
2246,
8889,
417,
262,
29892,
408,
297,
6290,
417,
262,
2443,
557,
411,
315,
1633,
29891,
6912,
643,
328,
728,
23863,
346,
29892,
1652,
804,
1886,
557,
29892,
322,
367,
1389,
22707,
417,
262,
29936,
282,
548,
5700,
29879,
1316,
408,
282,
548,
521,
3554,
322,
22707,
417,
262,
1612,
497,
1080,
29889,
13,
13,
29963,
387,
300,
1849,
29901,
1094,
862,
351,
375,
29892,
6454,
1219,
8870,
1960,
29892,
373,
291,
14837,
2710,
470,
269,
29399,
29892,
503,
1682,
305,
2172,
29892,
13328,
11801,
10674,
1161,
29892,
19710,
24389,
269,
29399,
29892,
322,
2011,
711,
3156,
286,
1878,
18901,
29892,
1316,
408,
3371,
711,
3156,
349,
4981,
294,
29889,
13,
13,
29943,
9216,
29901,
3938,
14520,
29892,
452,
312,
279,
1475,
29892,
715,
6762,
29892,
282,
457,
932,
793,
29892,
286,
4524,
267,
29892,
322,
2646,
412,
29888,
9216,
29892,
1316,
408,
4989,
412,
29888,
9216,
411,
6781,
3322,
29891,
402,
5621,
29889,
13,
13,
2277,
14294,
5777,
26892,
4497,
328,
411,
304,
21154,
376,
7283,
449,
787,
29908,
13,
13,
29933,
2546,
17652,
2545,
6504,
278,
11343,
24551,
4076,
445,
4497,
328,
263,
14294,
29892,
304,
579,
29891,
21054,
272,
322,
263,
577,
906,
18459,
29889,
29524,
29886,
29892,
4259,
287,
304,
21154,
15028,
297,
363,
13807,
2181,
449,
787,
297,
263,
26800,
541,
628,
14803,
982,
29889,
1763,
2507,
445,
964,
385,
9953,
1318,
29892,
925,
788,
20793,
454,
29888,
517,
369,
521,
21475,
470,
7013,
1989,
29892,
7984,
287,
1728,
15795,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29949,
9258,
17182,
7984,
292,
805,
764,
13,
13,
29946,
29871,
1309,
778,
3578,
4805,
29899,
29888,
3568,
304,
21154,
29892,
7482,
1312,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
30226,
29899,
22466,
13630,
267,
13,
13,
30226,
734,
294,
1129,
265,
15795,
29899,
9021,
599,
29899,
15503,
4220,
4259,
292,
1999,
355,
322,
29871,
30226,
734,
294,
1129,
265,
15795,
29899,
9021,
599,
29899,
15503,
4220,
4259,
292,
1999,
355,
29892,
13931,
671,
13,
13,
29928,
26785,
4214,
13,
13,
29906,
6131,
1129,
787,
4796,
19006,
13848,
387,
279,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
13,
13,
29896,
6131,
1129,
265,
360,
823,
265,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
734,
294,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
734,
294,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
29896,
18350,
2343,
310,
364,
4125,
457,
29892,
8870,
1490,
3309,
3538,
13,
13,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
229,
136,
158,
304,
29871,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
263,
2545,
3955,
7243,
322,
1153,
384,
411,
7984,
292,
805,
764,
29889,
13,
13,
1433,
3881,
278,
304,
21154,
297,
263,
2323,
7546,
373,
278,
2545,
3955,
1153,
384,
29889,
12790,
368,
805,
764,
278,
2246,
310,
278,
13630,
267,
411,
7984,
292,
805,
764,
29889,
14314,
682,
280,
29871,
30226,
734,
294,
1129,
265,
4259,
292,
1999,
355,
975,
278,
304,
21154,
29889,
4358,
309,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29945,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
22843,
17354,
313,
12344,
16112,
577,
278,
304,
21154,
1838,
29915,
29873,
12138,
467,
15154,
515,
278,
288,
854,
29889,
402,
2705,
23546,
278,
304,
21154,
29889,
12790,
368,
805,
764,
411,
7984,
292,
805,
764,
29889,
14314,
682,
280,
411,
278,
9886,
29871,
30226,
734,
294,
1129,
265,
4259,
292,
1999,
355,
29889,
4358,
309,
363,
29871,
29945,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
22843,
17354,
313,
12344,
16112,
577,
278,
304,
21154,
1838,
29915,
29873,
12138,
467,
17934,
304,
263,
15284,
29889,
3789,
17786,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2919,
12580,
29880,
29892,
377,
3873,
4208,
278,
10714,
292,
2348,
1127,
10070,
29889,
3789,
17786,
29889,
13,
13,
22908,
278,
364,
4125,
457,
411,
278,
5700,
11192,
701,
373,
278,
2545,
3955,
7243,
29889,
12790,
368,
805,
764,
411,
7984,
292,
805,
764,
29889,
4358,
309,
1048,
29871,
29953,
22831,
515,
278,
12871,
363,
29871,
29896,
304,
29871,
29906,
6233,
373,
1269,
2625,
29892,
470,
2745,
22843,
17354,
29889,
17934,
304,
263,
28967,
7613,
29889,
678,
459,
964,
289,
568,
29899,
2311,
12785,
29889,
13,
13,
2528,
278,
364,
4125,
457,
29892,
1459,
4467,
273,
29892,
322,
1236,
2496,
304,
278,
10714,
292,
29892,
28189,
292,
304,
24296,
29889,
14314,
682,
280,
411,
278,
304,
21154,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29947,
29896,
13,
13,
7827,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29947,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29953,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
30226,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
12065,
1259,
278,
10714,
292,
297,
278,
12580,
29880,
937,
322,
769,
4417,
278,
4497,
328,
451,
871,
27401,
373,
5941,
786,
29892,
372,
884,
1320,
5026,
278,
10714,
292,
901,
1584,
368,
746,
278,
4497,
328,
338,
28189,
287,
29892,
14372,
366,
304,
671,
3109,
29889,
13,
13,
2277,
4105,
13170,
713,
8870,
747,
329,
13,
13,
29943,
3568,
29892,
592,
11156,
8870,
747,
329,
15028,
701,
1532,
304,
278,
8261,
29892,
8437,
29891,
21054,
272,
310,
26935,
29892,
1550,
454,
3712,
3623,
625,
12778,
263,
3578,
10849,
2264,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
639,
16330,
13,
13,
29896,
30226,
734,
294,
1129,
787,
14426,
26935,
3803,
2540,
13,
13,
29896,
6131,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
29906,
6131,
1129,
787,
3578,
23131,
15276,
279,
457,
29892,
286,
2152,
287,
13,
13,
30226,
734,
294,
1129,
265,
373,
291,
4764,
672,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
8870,
747,
329,
470,
916,
9226,
9427,
1886,
557,
29892,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
30226,
734,
294,
1129,
787,
3060,
2986,
10849,
610,
29879,
2330,
13,
13,
22908,
278,
26935,
3803,
2540,
297,
263,
4091,
340,
289,
5086,
270,
728,
29889,
3462,
278,
454,
3712,
3623,
625,
29892,
23546,
5393,
304,
23556,
345,
29889,
624,
381,
297,
278,
15276,
279,
457,
322,
373,
291,
4764,
672,
29889,
17934,
29871,
29906,
734,
294,
1129,
787,
310,
278,
1766,
1099,
311,
304,
263,
2319,
12580,
29880,
29889,
3789,
17786,
29889,
3462,
278,
9427,
304,
278,
1766,
1099,
311,
297,
278,
289,
5086,
270,
728,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29941,
29900,
6233,
29892,
14712,
2748,
4203,
1582,
1549,
29889,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
278,
2545,
3955,
7243,
322,
1153,
384,
411,
7984,
292,
805,
764,
29889,
13,
13,
29928,
6038,
278,
9427,
29892,
2313,
20272,
278,
1766,
1099,
311,
29889,
4358,
309,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29946,
304,
29871,
29945,
6233,
29889,
15154,
515,
278,
288,
854,
29889,
13,
13,
29907,
598,
3730,
2507,
975,
278,
9427,
29889,
1771,
1878,
278,
2246,
411,
278,
21676,
1766,
1099,
311,
29889,
4358,
309,
363,
29871,
29946,
304,
29871,
29945,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
3387,
1434,
16330,
29892,
7689,
682,
280,
411,
278,
610,
29879,
2330,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29900,
29947,
13,
13,
7827,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29953,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29947,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29900,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29906,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
2277,
2011,
711,
3156,
29899,
29873,
4347,
9232,
1372,
13,
13,
29909,
26561,
22037,
5771,
770,
29891,
297,
1438,
269,
3021,
4695,
630,
260,
4347,
9232,
1372,
29889,
315,
1633,
29891,
260,
4347,
4497,
328,
338,
805,
638,
287,
411,
7933,
373,
1080,
29892,
4091,
327,
29892,
322,
1559,
307,
1372,
29892,
769,
282,
2356,
11480,
592,
11156,
2011,
711,
3156,
286,
1878,
8345,
26091,
322,
304,
2986,
411,
1023,
17690,
310,
923,
968,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
6433,
287,
286,
1878,
8345,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
29871,
29946,
29889,
29945,
29899,
21543,
508,
29879,
1407,
4482,
20892,
1974,
7773,
27234,
562,
487,
260,
4347,
29892,
4870,
287,
297,
4094,
29892,
7482,
1312,
322,
17422,
17713,
13,
13,
31690,
18002,
528,
1127,
7176,
1559,
5450,
13,
13,
29906,
304,
29871,
29941,
18350,
7933,
373,
1080,
29892,
269,
506,
287,
13,
13,
29896,
2919,
4091,
327,
29892,
1375,
1133,
13,
13,
30515,
18002,
3578,
1122,
11586,
895,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
322,
29871,
30515,
734,
294,
1129,
265,
1236,
2496,
29892,
13931,
671,
13,
13,
29946,
29871,
29946,
29899,
22466,
2011,
711,
3156,
286,
1878,
8345,
26091,
13,
13,
30515,
18002,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
30226,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
678,
287,
16702,
923,
968,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
7407,
263,
2919,
29892,
9416,
29899,
29881,
329,
29891,
12726,
2168,
289,
5086,
9869,
411,
394,
9735,
398,
1701,
309,
29889,
12790,
368,
805,
764,
278,
1701,
309,
411,
7984,
292,
805,
764,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
773,
263,
27350,
29892,
23546,
4208,
278,
260,
4347,
29892,
1559,
5450,
29892,
7933,
373,
1080,
29892,
322,
4091,
327,
29889,
624,
381,
297,
278,
1122,
11586,
895,
322,
29871,
30515,
734,
294,
1129,
265,
1236,
2496,
29889,
13,
13,
1433,
3881,
278,
286,
1878,
8345,
26091,
297,
263,
2323,
7546,
373,
278,
289,
5086,
9869,
411,
278,
20805,
11192,
701,
29889,
14314,
682,
280,
278,
9886,
29871,
30515,
734,
294,
1129,
265,
1236,
2496,
975,
278,
286,
1878,
18901,
29889,
4358,
309,
1048,
29871,
29953,
22831,
515,
278,
12871,
363,
29871,
29945,
304,
29871,
29947,
6233,
29892,
470,
2745,
896,
3380,
304,
4964,
264,
29889,
15154,
515,
278,
288,
854,
29889,
13,
13,
20876,
278,
286,
1878,
18901,
411,
278,
260,
4347,
29544,
29889,
14314,
682,
280,
411,
278,
1459,
4467,
273,
29889,
7488,
411,
278,
678,
287,
16702,
29889,
4358,
309,
1048,
29871,
29953,
22831,
515,
278,
12871,
363,
29871,
29906,
304,
29871,
29946,
6233,
29892,
470,
2745,
278,
923,
21523,
526,
286,
2152,
287,
322,
3578,
368,
3347,
9571,
322,
278,
260,
4347,
29544,
338,
7375,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29946,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29941,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29945,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29955,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
14225,
322,
18806,
29891,
8716,
417,
567,
13,
13,
25433,
3880,
411,
278,
14294,
386,
310,
3151,
719,
4764,
672,
29892,
263,
298,
4992,
29899,
21969,
538,
12507,
346,
12141,
29879,
278,
14225,
2264,
310,
8716,
417,
567,
297,
445,
9953,
1318,
393,
29915,
29879,
2560,
304,
1207,
541,
7500,
411,
4280,
21054,
272,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29906,
29871,
1309,
778,
8716,
417,
567,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
6131,
1129,
787,
298,
4992,
13,
13,
29906,
6131,
1129,
787,
13328,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
30226,
734,
294,
1129,
265,
3151,
719,
4764,
672,
13,
13,
30226,
734,
294,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
29896,
29906,
29871,
1309,
778,
7205,
8716,
417,
567,
29892,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29896,
18350,
454,
3712,
29892,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
263,
2545,
3955,
7243,
411,
7984,
292,
805,
764,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
298,
4992,
29892,
1818,
538,
29892,
3151,
719,
4764,
672,
29892,
322,
454,
3712,
3623,
625,
29889,
13,
13,
1433,
3881,
278,
8716,
417,
567,
297,
263,
2323,
7546,
297,
278,
7243,
29889,
1771,
1878,
411,
278,
298,
4992,
29544,
29889,
4358,
309,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29945,
304,
29871,
29947,
6233,
29892,
470,
2745,
3347,
9571,
29889,
1816,
345,
411,
278,
454,
3712,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29929,
29955,
13,
13,
7827,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29896,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29906,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29929,
330,
13,
13,
14676,
262,
29871,
29896,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29906,
20793,
27654,
13,
13,
2277,
521,
21475,
322,
7933,
373,
291,
413,
774,
6897,
13,
13,
1576,
413,
774,
6897,
297,
445,
9522,
412,
526,
1083,
262,
275,
1760,
310,
278,
867,
24455,
413,
774,
6897,
2998,
408,
343,
557,
18382,
393,
526,
5239,
373,
278,
19756,
310,
5546,
29892,
515,
274,
5708,
393,
740,
1407,
1568,
763,
1906,
393,
19417,
7375,
26361,
297,
1570,
3088,
4412,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29906,
18109,
17538,
639,
16330,
13,
13,
1529,
29934,
1177,
29909,
2287,
13,
13,
30515,
18002,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
30226,
6131,
1129,
787,
26438,
470,
298,
4992,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
734,
294,
1129,
265,
1375,
1133,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
29896,
30226,
24261,
10814,
6393,
29892,
19309,
2222,
521,
21475,
2078,
19416,
29892,
599,
7962,
9950,
2313,
25600,
29892,
5700,
964,
29871,
29906,
29946,
29871,
29896,
29899,
22466,
13630,
267,
13,
13,
29896,
18350,
14928,
310,
7933,
373,
1080,
313,
12692,
760,
871,
511,
5700,
4891,
3538,
964,
29871,
29906,
29946,
29871,
29896,
29899,
22466,
12785,
13,
13,
19159,
292,
805,
764,
13,
13,
797,
263,
4091,
340,
12917,
270,
728,
29892,
377,
3873,
4208,
278,
1766,
1099,
311,
2348,
1127,
10070,
29889,
3462,
278,
521,
21475,
322,
7933,
373,
1080,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29941,
29900,
6233,
29892,
14712,
23025,
29889,
13,
13,
6816,
273,
8000,
29892,
577,
557,
17680,
29871,
29947,
29899,
22466,
27278,
18109,
17538,
297,
11220,
4094,
363,
472,
3203,
29871,
29896,
29900,
6233,
304,
3013,
963,
515,
1373,
5393,
29892,
470,
671,
11915,
18109,
17538,
29889,
13,
13,
29928,
6038,
278,
521,
21475,
322,
7933,
373,
1080,
29892,
2313,
20272,
278,
1766,
1099,
311,
29889,
12440,
403,
3244,
292,
278,
521,
21475,
13630,
267,
322,
7933,
373,
291,
12785,
11480,
278,
18109,
17538,
29889,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
263,
2545,
3955,
7243,
411,
7984,
292,
805,
764,
29889,
826,
3881,
278,
18109,
17538,
297,
263,
2323,
7546,
297,
278,
7243,
29889,
4358,
309,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29941,
6233,
373,
1269,
2625,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29946,
29953,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29929,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
7791,
29979,
16698,
29965,
4741,
29901,
1522,
1854,
304,
1423,
278,
3533,
4481,
2232,
310,
20892,
1974,
639,
16330,
373,
278,
18254,
29878,
654,
17099,
9451,
1434,
366,
20590,
577,
29891,
12507,
346,
29889,
6298,
558,
5921,
368,
29892,
777,
1506,
4167,
310,
4943,
577,
29891,
12507,
346,
1122,
1712,
3109,
20892,
1974,
1135,
777,
1506,
4167,
393,
526,
301,
24025,
376,
4366,
29908,
577,
29891,
12507,
346,
29889,
13,
13,
2277,
14225,
322,
805,
4245,
24103,
303,
7358,
13,
13,
2831,
263,
1735,
515,
521,
21475,
2078,
19416,
29892,
1018,
24103,
303,
7358,
393,
505,
1063,
1766,
262,
630,
297,
10849,
301,
603,
3623,
625,
322,
263,
2586,
310,
577,
29891,
12507,
346,
29889,
4358,
6504,
1559,
314,
295,
7093,
278,
29746,
1503,
29892,
322,
263,
805,
4245,
298,
4992,
29899,
21969,
538,
12507,
346,
12778,
278,
2186,
6023,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29906,
24103,
303,
7358,
322,
29871,
29896,
885,
424,
6131,
1129,
265,
12507,
346,
639,
16330,
13,
13,
29906,
6131,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
30226,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
29947,
521,
21475,
24103,
303,
7358,
313,
12717,
29871,
29945,
29871,
1309,
778,
1269,
511,
19309,
322,
599,
7962,
9950,
2313,
25600,
13,
13,
19159,
292,
805,
764,
13,
13,
8132,
29965,
4741,
13,
13,
29906,
6131,
1129,
787,
298,
4992,
13,
13,
29896,
6131,
1129,
265,
13328,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
734,
294,
1129,
265,
10849,
301,
603,
3623,
625,
13,
13,
29896,
734,
294,
1129,
265,
7375,
521,
488,
12507,
346,
313,
29879,
374,
336,
5815,
16389,
29897,
13,
13,
797,
263,
18350,
4091,
340,
12917,
289,
5086,
270,
728,
29892,
377,
3873,
4208,
278,
301,
603,
3623,
625,
29892,
577,
29891,
12507,
346,
29892,
322,
17182,
29889,
3462,
278,
521,
21475,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29896,
304,
29871,
29906,
29946,
6199,
29892,
14712,
23025,
29889,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
263,
2545,
3955,
7243,
322,
1153,
384,
411,
7984,
292,
805,
764,
29889,
13,
13,
29928,
6038,
278,
521,
21475,
29892,
2313,
20272,
278,
1766,
1099,
311,
29889,
4358,
309,
278,
521,
21475,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29906,
29900,
304,
29871,
29906,
29945,
6233,
29892,
470,
2745,
694,
5520,
282,
682,
297,
278,
4818,
29892,
14712,
23025,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
12507,
346,
2348,
1127,
10070,
29889,
3387,
1434,
16330,
29892,
10293,
5617,
280,
278,
12507,
346,
975,
278,
521,
21475,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29941,
29896,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
29953,
29947,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29896,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29900,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29929,
330,
13,
13,
14676,
262,
29871,
29941,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29946,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
5195,
6720,
29963,
4214,
21521,
13309,
5659,
29979,
18581,
1177,
29901,
1763,
3349,
282,
5059,
2202,
19309,
5948,
29892,
330,
6472,
278,
19309,
411,
5650,
304,
29893,
1379,
29889,
450,
304,
29893,
1379,
3013,
596,
23915,
515,
20662,
3262,
1550,
366,
29915,
276,
28420,
29889,
13,
13,
2277,
1277,
5231,
457,
27654,
2135,
29879,
13,
13,
1576,
2646,
1144,
310,
19408,
12070,
714,
310,
278,
27654,
2135,
29879,
763,
1277,
5231,
457,
439,
6090,
29991,
12790,
264,
701,
445,
26397,
29899,
552,
5832,
25448,
491,
773,
5962,
7013,
1989,
24207,
322,
17354,
19408,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29946,
27654,
2135,
29879,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
30226,
18002,
443,
1111,
12504,
14426,
17354,
19408,
13,
13,
29896,
282,
618,
5962,
19309,
2222,
7013,
1989,
24207,
13,
13,
30515,
18002,
3060,
2986,
373,
291,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
10545,
4259,
292,
29892,
2181,
25443,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29906,
2723,
567,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
12507,
346,
13,
13,
30226,
18002,
3060,
2986,
7933,
22623,
1236,
2496,
13,
13,
30226,
734,
294,
1129,
265,
521,
2638,
4764,
672,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
278,
2545,
3955,
7243,
322,
1153,
384,
411,
7984,
292,
805,
764,
29889,
13,
13,
29925,
3445,
598,
278,
19408,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
322,
15276,
279,
457,
29889,
13,
13,
797,
263,
2919,
12580,
29880,
29892,
773,
263,
805,
6150,
470,
596,
6567,
29892,
14405,
278,
19408,
29892,
7013,
1989,
29892,
373,
291,
29892,
10545,
4259,
292,
29892,
17182,
29892,
322,
1236,
2496,
29889,
1383,
4085,
964,
29871,
29896,
29953,
27654,
2135,
29879,
29889,
17934,
963,
304,
278,
2545,
3955,
1153,
384,
29889,
13,
13,
29857,
309,
1048,
29871,
29953,
22831,
515,
278,
12871,
363,
29871,
29953,
304,
29871,
29947,
6233,
29892,
14712,
23025,
2745,
3347,
9571,
1584,
368,
373,
599,
11192,
313,
1552,
27654,
2135,
29879,
2113,
29915,
29873,
367,
2309,
472,
445,
1298,
467,
512,
263,
18350,
12507,
346,
8357,
29892,
23546,
4208,
278,
6454,
1219,
12507,
346,
29892,
22623,
1236,
2496,
29892,
322,
521,
2638,
4764,
672,
29889,
1771,
292,
304,
263,
1045,
309,
975,
18350,
29899,
9812,
12871,
29889,
402,
2705,
23546,
297,
278,
27654,
2135,
29879,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29906,
29900,
6233,
29892,
330,
2705,
23546,
5393,
23025,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29906,
29941,
13,
13,
7827,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29955,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29929,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29953,
330,
13,
13,
14676,
262,
29871,
29941,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
24972,
3301,
4214,
22986,
1299,
29933,
1964,
8547,
29901,
1763,
1371,
1207,
596,
27654,
2135,
29879,
9090,
297,
2159,
322,
8267,
29892,
671,
263,
2319,
14890,
907,
314,
885,
26793,
470,
278,
2919,
1095,
310,
263,
9232,
265,
8287,
261,
304,
885,
26793,
714,
278,
5962,
7013,
1989,
29544,
29889,
4803,
596,
3889,
1361,
304,
4513,
278,
304,
567,
29889,
13,
13,
2277,
8889,
417,
262,
1886,
557,
411,
907,
25934,
4029,
643,
328,
728,
12507,
346,
13,
13,
1576,
503,
292,
310,
4029,
643,
328,
728,
322,
360,
823,
265,
1818,
538,
338,
263,
4922,
1701,
309,
363,
8348,
352,
296,
8889,
417,
262,
1886,
557,
393,
29915,
29879,
1063,
1766,
262,
1218,
363,
29871,
29906,
29946,
6199,
297,
263,
13394,
13405,
292,
6837,
310,
289,
1338,
314,
293,
13848,
387,
279,
322,
19662,
29883,
28910,
14812,
12507,
346,
29889,
2193,
1021,
1999,
355,
21054,
943,
278,
6454,
20452,
393,
2545,
309,
19963,
278,
367,
1389,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
367,
1389,
29892,
29871,
29896,
6454,
1219,
4203,
29892,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
29896,
6131,
1129,
265,
19662,
29883,
28910,
14812,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
6131,
1129,
265,
289,
1338,
314,
293,
13848,
387,
279,
13,
13,
30226,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
10814,
6393,
8889,
417,
262,
1886,
557,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
19159,
292,
805,
764,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
29906,
18350,
6454,
20452,
29892,
8870,
1490,
4891,
3538,
13,
13,
8132,
29965,
4741,
13,
13,
30226,
18002,
9950,
29899,
9021,
269,
473,
907,
314,
13,
13,
29906,
6131,
1129,
787,
867,
630,
1236,
29872,
839,
4029,
643,
328,
728,
13,
13,
29906,
6131,
1129,
787,
4094,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29906,
734,
294,
1129,
787,
1302,
7989,
29899,
3874,
262,
360,
823,
265,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
797,
263,
2919,
29892,
4091,
340,
12917,
289,
5086,
270,
728,
29892,
377,
3873,
4208,
278,
19662,
29883,
28910,
14812,
12507,
346,
29892,
13848,
387,
279,
29892,
7171,
506,
4764,
672,
29892,
322,
1236,
2496,
29889,
3789,
17786,
29871,
29896,
6131,
1129,
265,
310,
278,
1766,
1099,
311,
29889,
26428,
322,
337,
1341,
4087,
403,
278,
21676,
1766,
1099,
311,
29889,
3462,
278,
367,
1389,
304,
278,
1766,
1099,
311,
297,
278,
289,
5086,
270,
728,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
1048,
29871,
29906,
29946,
6199,
29892,
14712,
23025,
29889,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
263,
2545,
3955,
7243,
322,
1153,
384,
411,
7984,
292,
805,
764,
29889,
13,
13,
855,
381,
29871,
30515,
734,
294,
1129,
265,
15795,
964,
278,
21676,
1766,
1099,
311,
29889,
13,
13,
29928,
6038,
278,
367,
1389,
29892,
2313,
20272,
278,
1766,
1099,
311,
297,
278,
289,
5086,
270,
728,
29889,
4358,
309,
278,
367,
1389,
322,
6454,
20452,
411,
278,
5700,
2625,
701,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29941,
6233,
29889,
9603,
975,
278,
367,
1389,
29889,
1771,
1878,
278,
367,
1389,
322,
6454,
20452,
411,
278,
21676,
1766,
1099,
311,
29889,
4358,
309,
363,
29871,
29941,
304,
29871,
29945,
6233,
29892,
470,
2745,
278,
367,
1389,
338,
278,
7429,
1016,
18543,
29889,
17934,
278,
6454,
20452,
304,
715,
1078,
29889,
17934,
278,
367,
1389,
304,
263,
28967,
7613,
29889,
2803,
2317,
363,
29871,
29941,
6233,
1434,
16835,
368,
269,
506,
292,
7936,
265,
635,
4822,
278,
2646,
262,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
12507,
346,
2348,
1127,
10070,
29889,
1816,
345,
411,
278,
367,
1389,
322,
6454,
20452,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29941,
29945,
13,
13,
7827,
9950,
29871,
29947,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29945,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29947,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29900,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29906,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
11343,
24551,
29899,
6312,
2243,
11376,
13,
13,
1576,
367,
1389,
29891,
21054,
272,
310,
1438,
20021,
29899,
1028,
7612,
26072,
414,
12814,
29879,
1532,
411,
278,
14225,
29899,
8711,
330,
2753,
728,
310,
528,
1127,
7176,
1559,
307,
1372,
322,
498,
1794,
521,
2638,
12507,
346,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29906,
2243,
11376,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
282,
618,
4805,
29899,
14044,
5962,
367,
1389,
13,
13,
29896,
29871,
29947,
29899,
21543,
508,
4094,
521,
342,
29876,
8842,
29892,
7482,
1312,
322,
3060,
2986,
13,
13,
29906,
6131,
1129,
787,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
29906,
19864,
29890,
11343,
24551,
11308,
13,
13,
30515,
18002,
498,
1794,
14225,
521,
2638,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
18350,
1559,
307,
1372,
29892,
528,
1127,
7176,
313,
12717,
29871,
30642,
18002,
29897,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
263,
2545,
3955,
7243,
322,
1153,
384,
411,
7984,
292,
805,
764,
29889,
13,
13,
29907,
5848,
569,
278,
367,
1389,
964,
263,
2919,
12580,
29880,
29889,
3462,
278,
4094,
521,
342,
29876,
8842,
29892,
577,
29891,
12507,
346,
29892,
7171,
506,
29892,
322,
330,
5621,
4632,
29889,
5293,
596,
6567,
470,
263,
805,
6150,
29892,
14405,
278,
2348,
1127,
10070,
29889,
1383,
4085,
964,
17680,
29871,
30226,
29899,
22466,
26563,
313,
12717,
29871,
29896,
30226,
734,
294,
1129,
787,
1269,
467,
2379,
8606,
964,
282,
1131,
583,
29889,
13,
13,
29857,
309,
278,
282,
1131,
583,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29941,
6233,
29892,
470,
2745,
3347,
9571,
29889,
9603,
975,
278,
282,
1131,
583,
29889,
4358,
309,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
896,
6036,
29871,
29896,
29953,
29900,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
29889,
13,
13,
22150,
278,
11343,
24551,
373,
263,
12151,
7101,
29889,
15484,
263,
2373,
1017,
297,
278,
4818,
310,
1269,
20447,
29889,
24674,
265,
278,
521,
2638,
12507,
346,
11480,
1269,
2373,
1017,
29889,
14314,
682,
280,
411,
278,
1559,
307,
1372,
29889,
383,
1025,
278,
11192,
310,
278,
11343,
24551,
975,
278,
282,
1131,
583,
29889,
5356,
545,
411,
263,
27278,
304,
720,
23945,
29892,
565,
7429,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29945,
29896,
13,
13,
7827,
9950,
29871,
29946,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29946,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29906,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29896,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29906,
20793,
27654,
13,
13,
2277,
2011,
711,
3156,
282,
4981,
294,
13,
13,
4013,
9522,
412,
338,
4922,
363,
263,
27654,
2222,
27822,
470,
408,
263,
9045,
29891,
23764,
373,
282,
24990,
4646,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
282,
24990,
639,
16330,
13,
13,
29949,
9258,
17182,
7984,
292,
805,
764,
13,
13,
29946,
18350,
2011,
711,
3156,
286,
1878,
18901,
13,
13,
29896,
734,
294,
1129,
265,
15795,
29899,
9021,
599,
29899,
15503,
4220,
4259,
292,
1999,
355,
13,
13,
29896,
18002,
508,
9571,
694,
29899,
29879,
1997,
29899,
23959,
508,
18437,
2172,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
6131,
1129,
265,
289,
1338,
314,
293,
13848,
387,
279,
13,
13,
30515,
18002,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
12507,
346,
13,
13,
30515,
18002,
658,
359,
873,
4870,
287,
10849,
2362,
309,
13,
13,
29896,
18002,
696,
28470,
2654,
22623,
1236,
22437,
29892,
7482,
1312,
565,
18046,
839,
29892,
16835,
368,
269,
506,
287,
13,
13,
29896,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
286,
2112,
29920,
598,
13520,
923,
968,
13,
13,
30515,
18002,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
278,
2545,
3955,
7243,
411,
7984,
292,
805,
764,
29889,
13,
13,
20769,
368,
805,
764,
1716,
11192,
310,
278,
286,
1878,
18901,
411,
7984,
292,
805,
764,
29889,
14314,
682,
280,
278,
4259,
292,
1999,
355,
975,
1716,
11192,
29889,
4358,
309,
1048,
29871,
29953,
22831,
515,
278,
12871,
363,
29871,
29896,
304,
29871,
29906,
6233,
373,
1269,
2625,
29892,
470,
2745,
22843,
17354,
29889,
15154,
515,
278,
288,
854,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
367,
550,
322,
13848,
387,
279,
29889,
13,
13,
797,
1269,
286,
1878,
8345,
2117,
29892,
7546,
408,
4477,
29901,
29871,
29896,
6131,
1129,
265,
6454,
1219,
12507,
346,
29892,
29871,
29896,
6131,
1129,
265,
2362,
309,
29892,
29871,
30515,
18002,
17796,
29544,
29892,
322,
29871,
30515,
18002,
696,
28470,
1236,
22437,
29889,
14314,
682,
280,
411,
278,
286,
2112,
29920,
598,
13520,
322,
1459,
4467,
273,
29889,
4358,
309,
1048,
29871,
29953,
22831,
515,
278,
12871,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
278,
27523,
338,
540,
630,
1549,
322,
278,
923,
21523,
526,
286,
2152,
287,
322,
3578,
22843,
17354,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29945,
29941,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29946,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29945,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29896,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29896,
30226,
20793,
27654,
13,
13,
29933,
1672,
6227,
4214,
350,
1164,
3308,
29901,
1763,
696,
579,
596,
1914,
1236,
22437,
29892,
758,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
263,
2545,
3955,
7243,
322,
1153,
384,
411,
288,
9258,
17182,
7984,
292,
805,
764,
29889,
12065,
278,
7429,
1353,
310,
3353,
22623,
1236,
22437,
313,
272,
521,
5475,
29897,
373,
278,
1153,
384,
29889,
4358,
309,
278,
1236,
22437,
29871,
29941,
304,
29871,
29946,
22831,
515,
278,
12871,
2745,
896,
526,
4359,
6446,
4628,
29892,
14712,
963,
304,
1373,
1584,
368,
29889,
12065,
278,
1236,
22437,
297,
263,
2919,
12580,
29880,
322,
4612,
372,
411,
715,
6288,
12244,
29889,
2803,
2317,
363,
29871,
29906,
29900,
304,
29871,
29941,
29900,
6233,
29889,
1932,
278,
1236,
22437,
526,
12528,
29892,
22780,
963,
297,
4203,
3309,
3538,
29892,
322,
3349,
278,
380,
1567,
29892,
409,
5779,
29892,
322,
18130,
29879,
313,
1454,
521,
5475,
29892,
1074,
17278,
29915,
29879,
323,
666,
467,
402,
2705,
1236,
295,
1283,
278,
19309,
29892,
773,
596,
23915,
470,
14051,
10549,
278,
1236,
22437,
1546,
5650,
304,
29893,
1379,
29889,
3295,
7543,
278,
19309,
29889,
960,
366,
6398,
29892,
29053,
344,
278,
1236,
22437,
304,
3349,
777,
310,
278,
9978,
310,
1373,
1127,
19309,
393,
3933,
29889,
13,
13,
2277,
3347,
9571,
304,
21154,
411,
289,
554,
3060,
29891,
13,
13,
29857,
2356,
304,
21154,
4893,
373,
11785,
20021,
21054,
943,
746,
372,
29915,
29879,
3041,
3880,
411,
263,
29544,
310,
7537,
15816,
322,
577,
29891,
29892,
769,
6766,
411,
263,
2181,
11936,
18655,
519,
322,
263,
12507,
346,
393,
12778,
925,
263,
2217,
2586,
310,
14225,
322,
12871,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
22780,
304,
21154,
322,
29871,
30226,
18002,
289,
554,
3060,
29891,
639,
16330,
13,
13,
29896,
29953,
29871,
1309,
778,
3578,
9226,
304,
21154,
29892,
7482,
1312,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
29946,
269,
29399,
13,
13,
30226,
18002,
10849,
24841,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
6131,
1129,
265,
3578,
470,
6501,
17354,
26438,
13,
13,
29896,
734,
294,
1129,
265,
304,
28470,
3999,
420,
17182,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
322,
29871,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
29892,
13931,
671,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
29896,
734,
294,
1129,
265,
498,
1794,
14225,
2654,
521,
2638,
12507,
346,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1436,
873,
1375,
1133,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
30226,
24261,
24354,
289,
554,
3060,
29891,
29892,
15883,
8870,
1490,
3309,
3538,
13,
13,
22908,
278,
304,
21154,
373,
263,
28967,
7613,
301,
1312,
411,
3023,
15359,
310,
5650,
304,
29893,
1379,
29889,
26428,
411,
3023,
15359,
310,
5650,
304,
29893,
1379,
29889,
15484,
263,
2919,
29892,
9416,
289,
5086,
270,
728,
373,
2246,
29889,
2803,
2317,
363,
29871,
29941,
29900,
6233,
577,
278,
304,
21154,
27474,
967,
19163,
2730,
391,
545,
29892,
15270,
278,
5650,
304,
29893,
1379,
565,
5181,
29889,
13,
13,
797,
263,
29871,
29896,
29941,
13105,
29871,
29929,
13105,
29871,
29906,
29899,
22466,
12917,
289,
5086,
270,
728,
29892,
377,
3873,
4208,
278,
24841,
3623,
625,
29892,
577,
29891,
12507,
346,
29892,
17354,
26438,
29892,
3999,
420,
17182,
29892,
29871,
29896,
734,
294,
1129,
265,
508,
2963,
17182,
29892,
330,
5621,
4632,
29892,
521,
2638,
12507,
346,
29892,
322,
7171,
506,
29889,
15484,
278,
304,
21154,
269,
29399,
297,
278,
270,
728,
29889,
2803,
2317,
363,
29871,
29906,
29900,
6233,
29892,
14712,
2748,
4203,
1582,
1549,
29889,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
7407,
263,
9416,
29899,
29881,
329,
29891,
12726,
2168,
289,
5086,
9869,
411,
394,
9735,
398,
1701,
309,
29889,
12790,
368,
805,
764,
278,
1701,
309,
411,
7984,
292,
805,
764,
29889,
13,
13,
29928,
6038,
278,
304,
21154,
29892,
620,
29530,
278,
1766,
1099,
311,
29889,
5293,
263,
2243,
15048,
805,
271,
2497,
29892,
6782,
278,
304,
21154,
304,
278,
289,
5086,
9869,
29889,
4358,
309,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29947,
304,
29871,
29896,
29900,
6233,
373,
1269,
2625,
29892,
470,
2745,
263,
6483,
22843,
17354,
29889,
17934,
304,
715,
1078,
29889,
26428,
304,
3013,
14294,
29889,
13,
13,
22908,
278,
289,
554,
3060,
29891,
373,
278,
289,
5086,
9869,
29889,
360,
374,
5617,
280,
411,
278,
9886,
29871,
29906,
734,
294,
1129,
787,
508,
2963,
17182,
29892,
14712,
304,
24296,
29889,
4358,
309,
1048,
29871,
29953,
22831,
515,
278,
12871,
363,
29871,
29953,
6233,
373,
1269,
2625,
29892,
470,
2745,
278,
11308,
526,
10029,
1373,
1127,
322,
278,
380,
1567,
526,
22707,
29899,
29883,
3780,
29886,
29889,
1816,
345,
411,
278,
304,
21154,
29889,
24674,
265,
278,
21676,
1766,
1099,
311,
975,
599,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29945,
29947,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29953,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29941,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29929,
330,
13,
13,
14676,
262,
29871,
29896,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29896,
30226,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
29933,
1672,
6227,
4214,
350,
1164,
3308,
29901,
350,
554,
3060,
29891,
3508,
29915,
29873,
278,
871,
18655,
519,
393,
260,
579,
267,
867,
24455,
470,
696,
28470,
746,
372,
29915,
29879,
2545,
2356,
29889,
1763,
376,
24561,
29899,
307,
579,
29908,
18655,
1849,
29892,
671,
4802,
521,
18801,
310,
2898,
29891,
18655,
1849,
1316,
408,
2545,
617,
5079,
29892,
5777,
352,
361,
13609,
29892,
22623,
1236,
22437,
29892,
373,
291,
29892,
286,
1878,
18901,
29892,
19710,
24389,
29892,
470,
503,
1682,
305,
2172,
29889,
323,
2209,
411,
263,
2319,
5253,
310,
288,
9258,
470,
330,
2390,
968,
287,
17182,
470,
3578,
368,
805,
764,
411,
288,
9258,
17182,
805,
764,
29892,
769,
7689,
682,
280,
411,
15795,
29899,
9021,
454,
3712,
1236,
2496,
470,
1790,
15795,
29899,
9021,
4259,
292,
6837,
29889,
1706,
949,
278,
18655,
1849,
297,
263,
2323,
7546,
373,
263,
2919,
289,
5086,
9869,
29889,
4358,
309,
2745,
278,
7429,
1016,
18543,
29892,
14712,
1432,
29871,
29945,
6233,
29889,
3462,
278,
7984,
287,
18655,
1849,
304,
596,
25448,
4940,
29874,
270,
728,
29892,
671,
963,
304,
2246,
282,
24990,
29892,
260,
2707,
963,
964,
11982,
16416,
267,
29892,
470,
1235,
963,
12528,
322,
28189,
963,
411,
4497,
328,
1395,
575,
29889,
13,
13,
2277,
2381,
790,
521,
538,
322,
2381,
790,
923,
968,
285,
12123,
532,
13,
13,
29923,
2579,
7375,
470,
11220,
29892,
263,
285,
12123,
532,
338,
263,
4996,
29892,
1224,
24285,
9953,
1318,
363,
263,
28834,
293,
2462,
29889,
887,
508,
1018,
916,
902,
5824,
322,
923,
21523,
363,
12875,
29889,
4803,
6514,
1395,
575,
470,
454,
29888,
517,
369,
18655,
1849,
366,
505,
373,
1361,
2012,
310,
278,
26182,
521,
538,
29889,
1816,
345,
411,
3353,
29899,
3874,
262,
304,
579,
363,
26044,
470,
263,
2625,
310,
696,
28470,
3104,
20452,
363,
17803,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
281,
12864,
639,
16330,
13,
13,
29906,
2919,
29808,
29892,
13055,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29906,
18350,
4091,
1862,
29892,
1375,
1133,
13,
13,
29896,
282,
618,
3060,
2986,
26182,
521,
538,
29892,
260,
820,
380,
1567,
2313,
25600,
29892,
470,
29871,
29896,
282,
618,
24354,
10917,
496,
13,
13,
229,
136,
151,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
26182,
923,
968,
13,
13,
29896,
734,
294,
1129,
265,
3060,
2986,
10849,
266,
25395,
470,
29871,
30515,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
29896,
734,
294,
1129,
265,
1375,
1133,
10849,
610,
29879,
2330,
313,
25253,
29897,
13,
13,
30515,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
313,
29888,
3781,
368,
867,
630,
16389,
29897,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
13,
13,
797,
263,
18350,
24907,
12580,
29880,
29892,
773,
385,
12646,
6837,
261,
373,
1880,
6210,
29892,
16646,
278,
19710,
18960,
2745,
4964,
1236,
10327,
883,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
2319,
288,
854,
8017,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
4091,
1862,
363,
29871,
29906,
6233,
29892,
470,
2745,
4964,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
521,
538,
297,
9853,
267,
29892,
4417,
901,
408,
1269,
9853,
28292,
1372,
29889,
17278,
363,
29871,
29945,
304,
29871,
29955,
6233,
29892,
470,
2745,
278,
23904,
756,
3415,
26191,
630,
29892,
23546,
5393,
21003,
29889,
15154,
515,
278,
12871,
29889,
14314,
682,
280,
411,
278,
26182,
923,
968,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
19710,
343,
324,
2039,
29892,
266,
25395,
29892,
610,
29879,
2330,
29892,
18254,
29885,
387,
29892,
322,
1236,
2496,
29889,
383,
1025,
278,
29544,
964,
278,
19710,
18960,
29892,
1999,
2548,
2745,
694,
13328,
12243,
10327,
3933,
29889,
13,
13,
5592,
949,
278,
19710,
29544,
975,
278,
26182,
923,
968,
29892,
1560,
29877,
6046,
278,
2246,
29889,
4358,
309,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29945,
304,
29871,
29953,
6233,
29892,
470,
2745,
278,
285,
12123,
532,
338,
731,
322,
925,
9226,
313,
1552,
285,
12123,
532,
1838,
29915,
29873,
432,
335,
6234,
746,
278,
2071,
7324,
338,
330,
2705,
528,
9424,
467,
315,
329,
964,
29871,
29946,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29896,
29945,
13,
13,
7827,
9950,
29871,
29953,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29929,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29906,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29955,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29896,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29896,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
438,
29963,
1430,
8618,
9800,
4214,
319,
18581,
6227,
1307,
29911,
29901,
887,
508,
288,
854,
8017,
263,
2071,
7324,
491,
28489,
278,
4386,
411,
394,
9735,
398,
1701,
309,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
382,
26788,
12317,
1806,
2890,
29901,
7753,
263,
2323,
5768,
310,
19710,
343,
28387,
674,
5557,
19710,
18960,
515,
25391,
1236,
10327,
746,
367,
2579,
29892,
577,
5004,
29808,
1407,
16112,
29889,
3115,
29892,
1434,
367,
1218,
278,
19710,
18960,
29892,
1207,
1854,
896,
526,
11220,
322,
278,
12580,
29880,
322,
367,
10412,
526,
1532,
521,
24455,
29889,
450,
11220,
2264,
674,
11157,
278,
25806,
322,
7977,
310,
278,
367,
2579,
18960,
29889,
13,
13,
2277,
2545,
2356,
1701,
2356,
6454,
20452,
13,
13,
4013,
2625,
270,
728,
338,
263,
25448,
29892,
7148,
297,
11801,
746,
6454,
20452,
526,
472,
1009,
19224,
29889,
1334,
4505,
278,
1108,
310,
975,
29890,
4708,
287,
304,
3262,
491,
14712,
1283,
278,
2545,
3955,
322,
21653,
278,
6454,
20452,
411,
394,
9735,
398,
1701,
309,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
6454,
1219,
4203,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
734,
294,
1129,
787,
270,
1255,
2362,
309,
29892,
2181,
25443,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29896,
30226,
734,
294,
1129,
787,
1302,
7989,
29899,
3874,
262,
360,
823,
265,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
734,
294,
1129,
265,
274,
1241,
13848,
387,
279,
13,
13,
29906,
2919,
6454,
20452,
29892,
8870,
1490,
4891,
3538,
13,
13,
29906,
6131,
1129,
787,
3353,
29899,
29893,
354,
271,
282,
804,
29877,
313,
29967,
21419,
968,
29899,
3293,
18423,
2181,
3774,
29879,
29897,
13,
13,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
12790,
368,
805,
764,
278,
2545,
3955,
7243,
322,
1153,
384,
411,
7984,
292,
805,
764,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
2362,
309,
29892,
17182,
29892,
1818,
538,
29892,
322,
13848,
387,
279,
29889,
24674,
265,
11480,
278,
5700,
2625,
310,
278,
6454,
20452,
29889,
13,
13,
797,
263,
5004,
2319,
12580,
29880,
29892,
23546,
4208,
278,
282,
804,
29877,
322,
1459,
4467,
273,
29889,
14314,
682,
280,
975,
278,
6454,
20452,
29889,
13,
13,
29857,
309,
278,
6454,
20452,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29896,
11015,
29892,
470,
2745,
278,
304,
3262,
338,
22843,
17354,
29892,
21217,
16112,
577,
372,
1838,
29915,
29873,
12138,
29889,
9603,
1283,
278,
2545,
3955,
29889,
26428,
278,
6454,
20452,
411,
394,
9735,
398,
1701,
309,
29889,
2803,
2317,
19540,
278,
2545,
3955,
363,
29871,
29947,
6233,
29892,
470,
2745,
278,
6454,
20452,
526,
22707,
746,
9307,
1133,
411,
263,
27350,
29889,
15154,
515,
278,
288,
854,
29889,
2803,
2317,
363,
29871,
29896,
29900,
6233,
1434,
16330,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29945,
29947,
13,
13,
7827,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29947,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29953,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
30226,
9950,
13,
13,
2277,
2646,
412,
29888,
9216,
411,
2181,
3322,
29891,
330,
5621,
13,
13,
29950,
4992,
322,
10901,
303,
497,
1891,
330,
5621,
883,
263,
2181,
11936,
29892,
805,
4245,
29899,
29879,
16668,
2181,
504,
2788,
304,
278,
2924,
1476,
373,
2181,
5000,
1506,
30095,
29880,
1318,
29892,
260,
11500,
278,
13914,
2264,
310,
2646,
412,
29888,
9216,
297,
445,
5400,
2125,
373,
385,
2030,
2317,
1609,
29889,
910,
6808,
814,
884,
3732,
385,
15129,
6124,
304,
26044,
470,
1506,
3322,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
2646,
412,
29888,
9216,
4203,
639,
16330,
13,
13,
29906,
6131,
1129,
787,
1436,
873,
1375,
1133,
10901,
303,
497,
1891,
330,
5621,
313,
12717,
29871,
29941,
304,
29871,
29946,
12785,
29897,
13,
13,
30515,
734,
294,
1129,
265,
5962,
274,
2559,
314,
265,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
313,
29888,
3781,
368,
867,
630,
16389,
29897,
13,
13,
29906,
18350,
2646,
412,
29888,
9216,
29892,
8870,
1490,
4891,
3538,
13,
13,
29896,
6131,
1129,
265,
2298,
29871,
29896,
734,
294,
1129,
265,
298,
4992,
13,
13,
6572,
354,
271,
278,
2545,
3955,
29889,
7407,
263,
289,
5086,
9869,
411,
394,
9735,
398,
1701,
309,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
330,
5621,
29892,
274,
2559,
314,
265,
29892,
322,
18254,
29885,
387,
29889,
13,
13,
29907,
329,
263,
16835,
22780,
515,
278,
5970,
310,
1269,
2646,
412,
29888,
9216,
4203,
304,
3013,
372,
27357,
29889,
17934,
963,
599,
304,
278,
289,
5086,
9869,
29889,
360,
374,
5617,
280,
278,
298,
4992,
975,
278,
5700,
2625,
310,
1269,
4203,
29889,
5293,
278,
1250,
310,
263,
805,
6150,
29892,
9677,
278,
298,
4992,
29889,
14314,
682,
280,
278,
330,
5621,
29544,
975,
278,
298,
4992,
29889,
13,
13,
29857,
309,
278,
2646,
412,
29888,
9216,
1048,
29871,
29946,
22831,
515,
278,
12871,
363,
29871,
29945,
304,
29871,
29955,
6233,
29892,
470,
2745,
22843,
17354,
29889,
24274,
16112,
577,
896,
1016,
29915,
29873,
12138,
29889,
15154,
515,
278,
288,
854,
29889,
2803,
12528,
10029,
1434,
16330,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29947,
29955,
13,
13,
7827,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29941,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29947,
330,
13,
13,
14676,
262,
29871,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
15774,
29892,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
18016,
3301,
29923,
15860,
29965,
1806,
29901,
4989,
412,
29888,
9216,
508,
16254,
411,
263,
1353,
310,
13589,
800,
29892,
3704,
1784,
5192,
13589,
1475,
29889,
1522,
1854,
304,
1423,
411,
596,
11619,
470,
1374,
2817,
562,
391,
565,
366,
2125,
738,
13589,
362,
29892,
322,
23764,
1023,
2919,
6283,
295,
470,
6916,
297,
445,
9522,
412,
29892,
565,
5181,
29889,
13,
13,
29933,
1672,
6227,
4214,
350,
1164,
3308,
29901,
5901,
285,
21211,
526,
884,
628,
14803,
746,
1559,
314,
295,
1891,
491,
278,
2545,
3955,
29889,
3967,
2545,
6504,
282,
457,
11548,
28774,
29892,
286,
4524,
269,
29399,
29892,
470,
1236,
496,
8870,
1960,
29892,
769,
28967,
963,
701,
322,
4417,
963,
304,
263,
269,
1338,
29874,
470,
263,
2625,
270,
728,
29889,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
13494,
3277,
1269,
2646,
412,
29888,
9216,
4203,
964,
263,
508,
1076,
14631,
17343,
3719,
674,
1371,
3013,
963,
13714,
1550,
896,
526,
2545,
6504,
29889,
13,
13,
29937,
696,
579,
292,
13,
13,
307,
28470,
9232,
265,
22300,
322,
289,
1338,
314,
293,
10293,
5617,
280,
13,
13,
915,
300,
322,
2215,
307,
4497,
328,
411,
748,
271,
923,
968,
13,
13,
9813,
29899,
17283,
6635,
15161,
975,
409,
1965,
10917,
496,
13,
13,
19585,
3712,
411,
907,
25934,
29830,
327,
280,
29899,
272,
927,
12507,
346,
13,
13,
2276,
29890,
29899,
307,
28470,
521,
21475,
13,
13,
305,
21475,
411,
1616,
436,
23195,
322,
6454,
20452,
13,
13,
2409,
265,
29899,
5397,
506,
7013,
1989,
22707,
417,
262,
13,
13,
29879,
485,
706,
367,
1389,
22707,
417,
262,
13,
13,
6500,
309,
282,
548,
22707,
417,
262,
411,
4628,
17796,
269,
1338,
29874,
13,
13,
29886,
548,
696,
579,
411,
18655,
1849,
13,
13,
305,
860,
412,
294,
411,
503,
1682,
305,
2172,
29892,
1236,
22437,
29892,
322,
373,
291,
13,
13,
294,
862,
351,
375,
411,
652,
13022,
325,
1099,
335,
2267,
371,
13,
13,
517,
28470,
5777,
352,
361,
13609,
322,
7171,
506,
13,
13,
2409,
2592,
902,
2580,
3104,
20452,
13,
13,
4632,
18655,
519,
1612,
2330,
13,
13,
29882,
4992,
287,
380,
1610,
495,
2722,
411,
394,
8315,
29879,
13,
13,
9588,
579,
292,
2225,
20098,
278,
18254,
374,
1237,
297,
9687,
1550,
427,
5403,
3277,
278,
21054,
943,
322,
1426,
1973,
29889,
1152,
18655,
1849,
322,
285,
21211,
29892,
445,
7984,
292,
1158,
23522,
714,
1009,
5613,
29746,
1503,
29892,
14953,
1218,
322,
12838,
9215,
1009,
21054,
943,
322,
6820,
963,
263,
7901,
1308,
21779,
29889,
1152,
7205,
1181,
397,
29892,
282,
5059,
2202,
29892,
322,
27654,
29892,
278,
1880,
12871,
270,
2722,
278,
25591,
310,
278,
9687,
29892,
4969,
263,
2181,
3322,
29891,
29892,
1559,
314,
295,
1891,
18459,
1550,
10124,
278,
2768,
2730,
391,
322,
8348,
352,
296,
29889,
13,
13,
9588,
579,
292,
338,
3763,
2309,
297,
278,
288,
854,
1090,
1880,
12871,
29889,
910,
1158,
3913,
278,
15589,
12871,
310,
385,
288,
854,
304,
7984,
9687,
29892,
607,
338,
2175,
443,
11911,
287,
577,
393,
372,
2113,
29915,
29873,
21837,
29889,
1932,
591,
1348,
310,
696,
579,
292,
29892,
7013,
1989,
322,
592,
1446,
2041,
304,
3458,
1363,
696,
579,
292,
338,
6200,
1900,
363,
22707,
9687,
29879,
322,
7200,
5700,
29879,
310,
27654,
29892,
282,
5059,
2202,
29892,
322,
9427,
29892,
1316,
408,
3353,
521,
860,
575,
470,
7013,
8149,
29892,
282,
548,
470,
367,
1389,
22707,
417,
262,
29892,
3353,
9427,
29892,
470,
12003,
9427,
977,
10376,
29889,
3967,
3942,
13016,
270,
17006,
1316,
408,
2439,
29890,
29899,
9588,
28470,
678,
21475,
322,
349,
548,
1528,
579,
411,
17236,
300,
1849,
29889,
887,
29915,
645,
884,
1284,
9522,
5547,
393,
674,
1371,
366,
5503,
4940,
278,
9985,
3704,
1528,
28470,
6286,
265,
317,
1132,
322,
350,
1338,
314,
293,
360,
374,
5617,
280,
322,
1522,
300,
322,
8413,
307,
3956,
328,
411,
2921,
271,
6561,
968,
29889,
13,
13,
4986,
16641,
28938,
29901,
259,
13,
1762,
7984,
9687,
297,
278,
288,
854,
297,
263,
4091,
340,
443,
11911,
287,
7243,
472,
6238,
3698,
5491,
6133,
1135,
289,
5086,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
1528,
579,
292,
7243,
322,
1153,
384,
29892,
12726,
2168,
289,
5086,
9869,
29892,
288,
854,
22219,
29879,
322,
3104,
4808,
414,
29892,
288,
854,
14563,
8328,
29892,
14426,
29899,
949,
14563,
8328,
29892,
21156,
292,
1506,
1878,
29892,
29181,
12237,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
7311,
696,
579,
292,
6858,
278,
288,
854,
304,
671,
1880,
12871,
29892,
367,
1854,
596,
288,
854,
338,
5941,
304,
6260,
675,
1560,
17223,
29889,
21141,
278,
4038,
1532,
29892,
8718,
5417,
322,
773,
596,
29181,
27096,
13524,
408,
5181,
29889,
13,
13,
30119,
4001,
278,
6238,
3698,
310,
1556,
288,
9852,
526,
451,
1208,
4626,
630,
3721,
29892,
1423,
278,
13600,
310,
15850,
411,
385,
288,
854,
14563,
8328,
322,
2845,
505,
278,
288,
854,
337,
1052,
4626,
630,
565,
372,
29915,
29879,
982,
1283,
470,
10365,
278,
696,
579,
292,
10430,
16205,
29889,
13,
13,
30119,
11190,
278,
931,
304,
758,
354,
271,
278,
288,
854,
29936,
6257,
411,
263,
7375,
288,
854,
674,
1371,
278,
9687,
17354,
6284,
29889,
25453,
7984,
29879,
1597,
854,
368,
29892,
322,
901,
14205,
29892,
746,
4687,
297,
263,
11220,
288,
854,
29889,
13,
13,
30119,
960,
773,
263,
11549,
519,
394,
9735,
398,
696,
579,
292,
7243,
29892,
367,
1854,
372,
29915,
29879,
380,
332,
4518,
3307,
304,
2304,
278,
7688,
310,
278,
9687,
29889,
13,
13,
30119,
1763,
696,
579,
18655,
1849,
29892,
5700,
963,
304,
263,
9090,
2159,
322,
9677,
963,
297,
263,
2323,
7546,
373,
263,
12726,
2168,
289,
5086,
9869,
304,
9801,
1571,
3347,
1076,
29889,
13,
13,
30119,
960,
366,
1016,
29915,
29873,
505,
263,
696,
579,
292,
1153,
384,
29892,
366,
508,
2058,
263,
6592,
310,
12003,
368,
269,
506,
287,
18655,
1849,
1316,
408,
373,
1080,
470,
3104,
20452,
373,
278,
5970,
310,
278,
7243,
322,
731,
278,
27654,
470,
282,
5059,
2202,
373,
2246,
29889,
13,
13,
30119,
1152,
3353,
17952,
29892,
2313,
538,
408,
1568,
9950,
408,
366,
508,
1434,
696,
579,
292,
29892,
541,
5967,
278,
19309,
373,
2745,
278,
282,
5059,
2202,
338,
7984,
287,
29889,
3295,
7543,
278,
19309,
1434,
16330,
29889,
13,
13,
30119,
960,
366,
29915,
276,
696,
579,
292,
263,
3353,
11199,
29892,
1925,
372,
297,
278,
288,
854,
21152,
937,
29889,
450,
1250,
310,
278,
288,
854,
338,
278,
298,
1501,
342,
760,
29892,
322,
6501,
27654,
4893,
5520,
304,
7984,
29889,
13,
13,
30119,
1763,
4772,
1716,
975,
15108,
292,
322,
1090,
15108,
292,
27654,
322,
282,
5059,
2202,
29892,
671,
385,
14426,
29899,
949,
27654,
14563,
8328,
304,
1423,
1016,
18543,
29889,
15154,
278,
27654,
470,
282,
5059,
2202,
515,
278,
288,
854,
1434,
23800,
278,
14563,
8328,
29892,
322,
4635,
372,
964,
278,
4818,
29892,
470,
12003,
342,
760,
29892,
310,
278,
27654,
29892,
3907,
1854,
278,
14563,
8328,
1838,
29915,
29873,
6023,
289,
650,
470,
9950,
29889,
13,
13,
30119,
5399,
278,
7463,
10430,
310,
696,
28470,
282,
5059,
2202,
470,
27654,
1156,
1048,
2211,
29899,
17823,
386,
29879,
310,
278,
3001,
7829,
7984,
292,
931,
29892,
769,
1432,
29871,
29945,
304,
29871,
29896,
29900,
6233,
1156,
393,
304,
4772,
975,
15108,
292,
29889,
13,
13,
30119,
2803,
27654,
470,
282,
5059,
2202,
2317,
472,
5716,
10430,
363,
1048,
29871,
29945,
304,
29871,
29896,
29900,
6233,
746,
372,
5304,
714,
310,
278,
288,
854,
304,
8341,
278,
7984,
292,
1889,
322,
2758,
278,
2301,
2841,
18755,
414,
304,
26681,
29892,
3907,
278,
27654,
901,
22707,
322,
19912,
372,
304,
11551,
967,
3623,
1575,
29889,
4673,
278,
288,
854,
3050,
871,
746,
5181,
29889,
7569,
931,
278,
3050,
338,
6496,
29892,
12871,
3966,
11603,
322,
278,
10430,
310,
278,
288,
854,
338,
5224,
287,
29892,
4417,
304,
278,
7984,
292,
931,
29889,
1932,
366,
437,
1722,
278,
3050,
29892,
12566,
7535,
515,
278,
3966,
21430,
12871,
29892,
607,
508,
12138,
29889,
13,
13,
15349,
1254,
18322,
29949,
8452,
15842,
16641,
28938,
4214,
13,
13,
2008,
29874,
1181,
397,
29901,
1528,
579,
292,
338,
1900,
480,
1573,
304,
2919,
528,
5632,
29886,
470,
8716,
417,
567,
29892,
3353,
9427,
29892,
322,
266,
6541,
977,
10376,
313,
1454,
1342,
29892,
4497,
3712,
29892,
15234,
29892,
322,
260,
4347,
511,
1316,
408,
3956,
3712,
411,
315,
1633,
29891,
678,
666,
327,
280,
29899,
29949,
3881,
23863,
346,
29889,
13,
13,
29925,
5059,
2202,
29901,
806,
1772,
17952,
313,
305,
860,
575,
29892,
7013,
8149,
29892,
3748,
298,
575,
511,
1316,
408,
678,
21475,
411,
3012,
436,
23195,
322,
25994,
29892,
526,
263,
22037,
7348,
29892,
541,
366,
508,
884,
696,
579,
7013,
1989,
2078,
19416,
470,
22707,
417,
1144,
29892,
408,
297,
8836,
265,
29899,
29954,
279,
506,
26459,
323,
1581,
417,
262,
29889,
13,
13,
6816,
271,
29901,
14542,
852,
22707,
5700,
29879,
1316,
408,
367,
1389,
1652,
804,
1886,
557,
29892,
22707,
417,
262,
29892,
322,
8889,
417,
262,
29936,
282,
548,
22707,
417,
262,
29892,
1316,
408,
4886,
309,
349,
548,
323,
1581,
417,
262,
411,
6054,
1522,
273,
317,
1338,
29874,
29892,
322,
282,
548,
658,
262,
29889,
13,
13,
29963,
387,
300,
13956,
14409,
262,
29901,
1152,
263,
18655,
13956,
9953,
1318,
29892,
1018,
304,
21154,
322,
916,
18655,
13956,
3279,
1144,
408,
1532,
408,
678,
860,
412,
294,
411,
796,
1682,
305,
2172,
29892,
3938,
22437,
29892,
322,
1551,
291,
29889,
13,
13,
29963,
387,
300,
1849,
29901,
624,
332,
4518,
3876,
18655,
1849,
29892,
1316,
408,
278,
367,
1691,
297,
1522,
300,
322,
8413,
307,
3956,
328,
411,
2921,
271,
6561,
968,
29892,
1559,
307,
1372,
29892,
2971,
17006,
29892,
610,
29879,
1240,
567,
29892,
2507,
4512,
29892,
322,
3104,
20452,
4953,
9560,
368,
14225,
746,
696,
28470,
29889,
3967,
773,
445,
11043,
411,
18655,
1849,
366,
505,
528,
1000,
3448,
515,
470,
393,
366,
1016,
29915,
29873,
12891,
6755,
29892,
1316,
408,
2545,
617,
5079,
29892,
5777,
352,
361,
13609,
29892,
1506,
1558,
1379,
7689,
17718,
29892,
408,
862,
351,
375,
29892,
13851,
10674,
1161,
29892,
6454,
20452,
29892,
470,
285,
2108,
295,
29889,
1528,
579,
292,
596,
18655,
1849,
1716,
3347,
1983,
322,
1559,
314,
295,
7093,
963,
29892,
20794,
714,
1009,
5613,
14225,
2264,
29889,
1932,
696,
28470,
29892,
7171,
506,
7415,
1568,
7901,
1308,
322,
2316,
672,
29889,
1528,
28470,
7171,
506,
508,
367,
1304,
297,
12507,
778,
470,
652,
567,
29892,
470,
1018,
372,
599,
373,
967,
1914,
408,
263,
9677,
363,
3353,
29899,
3874,
262,
18423,
29889,
13,
13,
29943,
9216,
29901,
1528,
579,
292,
508,
4327,
15774,
964,
263,
14294,
29892,
13016,
292,
6808,
814,
29889,
3967,
715,
6762,
29892,
21783,
293,
1862,
29892,
1236,
14520,
29892,
282,
457,
932,
793,
29892,
282,
15451,
29892,
623,
793,
29892,
9892,
16397,
29892,
322,
380,
1610,
495,
2722,
29892,
1316,
408,
379,
4992,
287,
624,
1610,
495,
2722,
411,
838,
8315,
29879,
29889,
13,
13,
2277,
696,
28470,
9232,
265,
22300,
322,
289,
1338,
314,
293,
10293,
5617,
280,
13,
13,
4013,
3252,
391,
373,
15774,
22300,
4145,
1475,
278,
14225,
2264,
310,
5107,
284,
6648,
411,
4048,
706,
373,
291,
322,
2545,
386,
29889,
1528,
579,
292,
278,
9232,
265,
14953,
1078,
967,
22792,
708,
21054,
272,
29889,
360,
374,
5617,
839,
411,
263,
286,
4743,
289,
1338,
314,
293,
14751,
911,
29892,
278,
6575,
842,
29899,
272,
927,
22300,
338,
263,
1510,
7864,
2496,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29953,
2723,
567,
13630,
287,
5107,
284,
6648,
313,
3166,
1048,
29871,
29896,
18350,
29897,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
30642,
18002,
3060,
2986,
14225,
373,
291,
29892,
1316,
408,
18895,
19627,
29892,
22209,
29875,
29892,
470,
438,
578,
317,
16668,
13,
13,
29896,
734,
294,
1129,
265,
1375,
1133,
1236,
29872,
839,
330,
5621,
4632,
13,
13,
30515,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
30515,
734,
294,
1129,
265,
5962,
274,
2559,
314,
265,
13,
13,
29928,
1161,
310,
274,
388,
4584,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
470,
18655,
519,
2545,
386,
13,
13,
30226,
18002,
9950,
29899,
9021,
4203,
29899,
392,
29899,
24498,
13,
13,
30515,
18002,
289,
1338,
314,
293,
13848,
387,
279,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29906,
29945,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
2919,
12726,
2168,
289,
5086,
9869,
411,
7984,
292,
805,
764,
29889,
826,
3881,
278,
5107,
284,
6648,
297,
263,
2323,
7546,
373,
278,
289,
5086,
9869,
29889,
1528,
579,
363,
29871,
29906,
29900,
304,
29871,
29906,
29945,
6233,
29892,
470,
2745,
278,
12770,
3380,
304,
17354,
29889,
15154,
515,
278,
288,
854,
29889,
2803,
2317,
2745,
12528,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
18350,
1661,
303,
860,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
373,
291,
363,
1048,
29871,
29945,
6233,
29892,
470,
2745,
3578,
368,
3347,
9571,
29892,
23546,
5393,
13672,
29889,
624,
381,
297,
278,
330,
5621,
4632,
29892,
274,
9735,
29892,
274,
2559,
314,
265,
29892,
322,
274,
388,
4584,
29889,
17278,
363,
29871,
29941,
29900,
6923,
29892,
470,
2745,
5227,
629,
424,
29892,
23546,
5393,
21003,
29889,
13,
13,
797,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
5107,
284,
6648,
322,
738,
18414,
7964,
3623,
1575,
363,
29871,
29896,
11015,
29892,
470,
2745,
10597,
29889,
3462,
278,
2545,
386,
322,
373,
291,
29544,
29889,
10554,
2745,
10597,
29889,
6803,
297,
278,
4203,
29899,
392,
29899,
24498,
29889,
10554,
363,
29871,
29941,
29900,
6923,
304,
29871,
29896,
11015,
29892,
470,
2745,
1999,
2760,
29889,
1816,
345,
472,
5716,
10430,
470,
4612,
322,
337,
1341,
4087,
403,
363,
29871,
29906,
6199,
304,
9080,
521,
24455,
29889,
13,
13,
14084,
1434,
16330,
29892,
297,
263,
2319,
12507,
346,
8357,
29892,
6963,
278,
13848,
387,
279,
304,
263,
1045,
309,
975,
18350,
29899,
9812,
12871,
29889,
17278,
363,
29871,
29941,
29900,
6923,
304,
29871,
29896,
11015,
29892,
470,
2745,
278,
13848,
387,
279,
338,
9878,
582,
2272,
322,
12212,
491,
4359,
4203,
313,
517,
1048,
29871,
29906,
6131,
1129,
787,
467,
360,
374,
5617,
280,
278,
22300,
411,
278,
13848,
387,
279,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29945,
29896,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29947,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29900,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
29946,
330,
13,
13,
14676,
262,
29871,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
15774,
29892,
29871,
30226,
9950,
29899,
9021,
27274,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
887,
29915,
345,
3595,
696,
28470,
282,
3427,
9089,
322,
6575,
1731,
261,
409,
5779,
29892,
541,
1258,
366,
1073,
366,
508,
884,
696,
579,
9232,
265,
409,
5779,
29973,
390,
262,
344,
322,
15589,
278,
409,
5779,
515,
263,
5107,
284,
6648,
29892,
298,
4992,
311,
29893,
9232,
265,
29892,
470,
16699,
837,
295,
265,
29889,
12790,
368,
805,
764,
411,
288,
9258,
17182,
7984,
292,
805,
764,
29889,
1706,
949,
278,
409,
5779,
373,
263,
289,
5086,
9869,
322,
696,
579,
472,
29871,
29941,
29906,
29945,
30073,
29943,
363,
1048,
29871,
29896,
29945,
6233,
29892,
470,
2745,
3347,
9571,
29889,
13,
13,
2277,
367,
300,
322,
2215,
307,
4497,
328,
411,
748,
271,
923,
968,
13,
13,
29903,
14618,
2998,
408,
278,
5637,
310,
599,
2646,
1144,
29892,
2215,
307,
338,
385,
12297,
12875,
310,
21266,
271,
21633,
297,
278,
25620,
10800,
273,
29889,
2973,
967,
1880,
26823,
322,
5713,
495,
2793,
29892,
445,
18254,
1017,
2646,
262,
11000,
9560,
368,
411,
14225,
696,
28470,
367,
1691,
322,
18806,
29891,
748,
271,
923,
968,
363,
263,
27523,
4497,
328,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29896,
30226,
24261,
367,
1691,
411,
1395,
575,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
322,
29871,
29906,
6131,
1129,
787,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
511,
13931,
671,
13,
13,
29896,
2919,
4091,
327,
29892,
1375,
1133,
13,
13,
29941,
2723,
567,
4094,
13,
13,
30642,
18002,
443,
1111,
12504,
2215,
307,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
30515,
18002,
2298,
29871,
29896,
6131,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
29906,
6131,
1129,
787,
298,
4992,
13,
13,
29896,
2319,
7171,
506,
17184,
345,
29892,
1436,
873,
1375,
1133,
13,
13,
29906,
29871,
1309,
778,
4964,
748,
271,
923,
968,
29892,
2181,
25443,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29900,
29900,
30073,
29943,
29889,
13,
13,
2308,
326,
278,
1395,
575,
322,
16778,
515,
278,
367,
1691,
29889,
830,
1341,
4087,
403,
278,
1395,
575,
29889,
13,
13,
22908,
278,
367,
1691,
373,
263,
2919,
8424,
310,
394,
9735,
398,
1701,
309,
29889,
383,
1025,
278,
1701,
309,
975,
278,
367,
1691,
29889,
315,
5632,
29886,
278,
12770,
304,
409,
284,
278,
18203,
29889,
1528,
579,
363,
29871,
29946,
29945,
6233,
29892,
470,
2745,
278,
367,
1691,
526,
22707,
746,
9307,
1133,
411,
263,
27350,
29889,
15154,
515,
278,
288,
854,
29889,
3789,
17786,
304,
12528,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
18350,
12507,
346,
8357,
29892,
12871,
29871,
29906,
734,
294,
1129,
787,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
4091,
327,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
23546,
5393,
21003,
29889,
6803,
297,
278,
4094,
29889,
512,
1037,
559,
278,
12871,
304,
1880,
322,
6963,
304,
263,
1045,
309,
29889,
624,
381,
297,
278,
2215,
307,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
2215,
307,
338,
22707,
29889,
360,
6038,
1532,
297,
263,
2691,
29899,
4467,
29882,
269,
2418,
29889,
17934,
278,
2215,
307,
29544,
304,
263,
2919,
12580,
29880,
29889,
2379,
3096,
411,
263,
27350,
29889,
624,
381,
297,
278,
1236,
2496,
29889,
3789,
17786,
304,
12528,
29889,
13,
13,
29954,
2705,
1236,
295,
1283,
278,
367,
300,
2071,
1144,
29889,
315,
329,
278,
367,
1691,
964,
29871,
29896,
29899,
22466,
12785,
29889,
624,
381,
964,
278,
2215,
307,
29544,
29889,
13,
13,
1349,
262,
368,
22780,
278,
367,
300,
1395,
575,
29889,
624,
381,
964,
278,
2215,
307,
29544,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
454,
3712,
3623,
625,
29892,
298,
4992,
29892,
7171,
506,
29892,
322,
278,
9886,
29871,
29906,
6131,
1129,
787,
17182,
29889,
360,
374,
5617,
280,
975,
278,
4497,
328,
29892,
28189,
292,
304,
24296,
29889,
17934,
304,
16330,
715,
1078,
29889,
14314,
682,
280,
411,
278,
748,
271,
923,
968,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29945,
29941,
13,
13,
7827,
9950,
29871,
29896,
29906,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29955,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29945,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
29896,
330,
13,
13,
7241,
495,
29871,
29955,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29929,
330,
13,
13,
14676,
262,
29871,
29896,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29941,
18655,
519,
29892,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
30226,
20793,
27654,
29892,
29871,
29906,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1763,
19012,
445,
270,
728,
697,
2462,
297,
6564,
29892,
7984,
278,
2215,
307,
322,
367,
1691,
408,
10624,
29889,
26428,
322,
337,
1341,
4087,
403,
16949,
29892,
577,
278,
367,
1691,
1016,
29915,
29873,
380,
475,
278,
2215,
307,
29889,
3387,
1434,
16330,
29892,
19012,
278,
10714,
292,
322,
24940,
278,
4497,
328,
29889,
13,
13,
1672,
28938,
4214,
350,
1164,
3308,
29901,
1528,
579,
292,
2646,
1144,
29892,
1316,
408,
2215,
307,
29892,
439,
1789,
29874,
29892,
8227,
29887,
332,
29892,
470,
19408,
29892,
1434,
7984,
292,
963,
23522,
714,
1009,
5613,
18254,
1017,
21054,
272,
322,
3273,
575,
1009,
7984,
292,
3064,
29889,
4721,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
1706,
949,
278,
2646,
1144,
373,
263,
289,
5086,
9869,
297,
263,
2323,
7546,
29889,
1528,
579,
363,
29871,
29896,
29900,
304,
29871,
29941,
29900,
6233,
313,
9278,
261,
2646,
1144,
763,
439,
1789,
29874,
322,
2691,
29899,
3874,
262,
8227,
29887,
332,
674,
2125,
3109,
931,
1135,
7200,
2646,
1144,
1316,
408,
19408,
322,
2215,
307,
511,
470,
2745,
5227,
629,
424,
322,
6763,
304,
3578,
368,
17354,
29892,
23546,
5393,
1432,
29871,
29906,
304,
29871,
29945,
6233,
29889,
14491,
278,
1302,
29877,
839,
2646,
1144,
297,
385,
263,
2728,
523,
5639,
297,
278,
282,
15328,
470,
337,
1341,
4087,
1061,
363,
701,
304,
697,
4098,
29889,
13,
13,
2277,
288,
854,
29899,
17283,
6635,
15161,
975,
409,
1965,
10917,
496,
13,
13,
9588,
579,
292,
18423,
287,
9687,
29879,
373,
263,
758,
354,
630,
289,
5086,
9869,
4076,
963,
263,
2181,
11936,
2181,
504,
29892,
607,
338,
920,
445,
26343,
1004,
284,
29899,
1111,
630,
6635,
15161,
4947,
577,
2181,
3322,
29891,
29889,
450,
758,
354,
630,
9869,
884,
696,
19416,
18655,
1849,
322,
9427,
9098,
29889,
450,
9427,
338,
2309,
297,
263,
11013,
773,
445,
1158,
29892,
322,
278,
10259,
1384,
292,
10917,
496,
508,
367,
7960,
297,
1023,
6233,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
30226,
18002,
10917,
496,
639,
16330,
13,
13,
31690,
18002,
599,
29899,
15503,
4220,
1652,
473,
13,
13,
30226,
18002,
4482,
29899,
29888,
271,
541,
8489,
309,
29895,
13,
13,
30226,
18002,
26343,
1004,
284,
13,
13,
29906,
734,
294,
1129,
787,
3500,
374,
1335,
13,
13,
29896,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
313,
29954,
7285,
16389,
29897,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29946,
6635,
15161,
470,
6928,
481,
423,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
29947,
2723,
567,
658,
359,
873,
4870,
287,
24354,
10917,
496,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
270,
453,
705,
287,
13,
13,
22908,
263,
2919,
29892,
9416,
29899,
29881,
329,
29891,
12726,
2168,
289,
5086,
9869,
373,
278,
7256,
288,
854,
1153,
384,
29889,
4721,
354,
271,
278,
288,
854,
304,
29871,
29946,
29906,
29945,
30073,
29943,
29889,
13,
13,
22908,
278,
1652,
473,
297,
263,
18350,
4091,
340,
270,
728,
29889,
6803,
278,
541,
8489,
309,
29895,
964,
263,
5004,
18350,
4091,
340,
270,
728,
29889,
512,
263,
4654,
18350,
4091,
340,
270,
728,
29892,
23546,
4208,
278,
26343,
1004,
284,
29892,
3500,
374,
1335,
29892,
7171,
506,
4764,
672,
29892,
322,
470,
387,
1562,
29889,
10057,
3730,
3349,
278,
289,
5086,
9869,
515,
278,
288,
854,
29889,
360,
374,
5617,
280,
411,
278,
17182,
29889,
13,
13,
2697,
278,
270,
17006,
322,
289,
5086,
9869,
297,
263,
1948,
29892,
11470,
29899,
1220,
13460,
29889,
14314,
682,
280,
278,
1236,
2496,
322,
15795,
975,
278,
9427,
29889,
360,
666,
278,
9427,
297,
278,
1652,
473,
29892,
769,
297,
278,
541,
8489,
309,
29895,
29892,
322,
7146,
297,
278,
26343,
1004,
284,
29544,
29892,
14712,
304,
24296,
472,
1269,
4331,
322,
330,
2705,
528,
5086,
1283,
738,
19163,
29889,
5293,
596,
285,
292,
814,
4512,
29892,
330,
2705,
3965,
278,
1302,
1218,
577,
372,
594,
2276,
267,
304,
278,
9427,
29889,
15484,
278,
9427,
373,
278,
758,
354,
630,
289,
5086,
9869,
29889,
13,
13,
9588,
579,
363,
29871,
29947,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
17934,
278,
9427,
304,
263,
2919,
15284,
29889,
26428,
304,
3013,
14294,
29889,
13,
13,
22908,
278,
10917,
496,
373,
278,
289,
5086,
9869,
29889,
14314,
682,
280,
278,
270,
453,
705,
287,
975,
278,
10917,
496,
29889,
1528,
579,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
278,
10917,
496,
338,
16079,
368,
281,
2782,
287,
29889,
17934,
304,
715,
1078,
29889,
1816,
345,
278,
9427,
373,
278,
10917,
496,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29941,
29906,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29955,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29929,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29896,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
380,
1279,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1763,
4772,
1370,
15702,
596,
289,
5086,
9869,
29892,
671,
263,
9416,
29899,
29881,
329,
29891,
289,
5086,
9869,
29892,
1316,
408,
278,
10257,
29899,
3293,
12726,
2168,
9869,
282,
550,
393,
526,
17644,
3625,
988,
289,
5086,
282,
550,
526,
5239,
29889,
13,
13,
1672,
28938,
4214,
350,
1164,
3308,
29901,
3872,
29915,
29873,
4046,
7535,
304,
26343,
1004,
284,
29892,
18423,
2181,
3774,
29879,
29892,
470,
282,
804,
29877,
746,
366,
864,
2181,
11936,
29899,
1111,
630,
9427,
29892,
521,
21475,
29892,
470,
18655,
1849,
29889,
9267,
916,
9687,
29879,
526,
628,
14803,
2748,
19356,
964,
2181,
3774,
29879,
29889,
3967,
3876,
18655,
519,
521,
4512,
470,
4799,
29899,
1129,
2986,
1835,
29883,
1398,
19356,
964,
2181,
3774,
29879,
29892,
15589,
29899,
307,
28470,
443,
1111,
12504,
288,
271,
1004,
284,
29892,
439,
1789,
29874,
17422,
10794,
29892,
470,
439,
1789,
29874,
393,
756,
1063,
7984,
287,
773,
278,
3577,
18112,
322,
769,
289,
12535,
472,
29871,
29941,
29955,
29945,
30073,
29943,
363,
29871,
29896,
29945,
304,
29871,
29906,
29945,
6233,
29892,
470,
2745,
2181,
11936,
29889,
13,
13,
2277,
4497,
3712,
411,
907,
25934,
29830,
327,
280,
29899,
272,
927,
12507,
346,
13,
13,
29909,
805,
4245,
29830,
327,
280,
12507,
346,
411,
11486,
310,
14225,
29899,
29873,
442,
7537,
15816,
12169,
8348,
352,
296,
4497,
3712,
964,
1554,
6683,
562,
1070,
29889,
1528,
579,
292,
14874,
278,
9427,
22707,
322,
2730,
391,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29946,
4497,
3712,
977,
10376,
411,
19309,
313,
12717,
29871,
29945,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29896,
6131,
1129,
265,
10849,
301,
603,
3623,
625,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
30226,
734,
294,
1129,
265,
594,
711,
29877,
12507,
346,
322,
29871,
30515,
304,
29871,
30226,
734,
294,
1129,
265,
594,
711,
29877,
12507,
346,
313,
3166,
29830,
327,
280,
1236,
22437,
508,
9571,
297,
594,
711,
29877,
12507,
346,
511,
13931,
671,
13,
13,
30226,
734,
294,
1129,
265,
867,
630,
24841,
503,
342,
13,
13,
229,
136,
151,
18002,
10849,
24841,
3623,
625,
13,
13,
29906,
734,
294,
1129,
787,
26343,
303,
1279,
13,
13,
30226,
18350,
29830,
327,
280,
1236,
2496,
313,
3166,
29830,
327,
280,
1236,
22437,
508,
9571,
297,
594,
711,
29877,
12507,
346,
511,
1375,
1133,
13,
13,
30226,
734,
294,
1129,
265,
26438,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
30515,
18002,
9950,
29899,
9021,
4203,
29899,
392,
29899,
24498,
13,
13,
30515,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29896,
18350,
301,
603,
29892,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29900,
29900,
30073,
29943,
29889,
7407,
263,
2919,
29892,
9416,
29899,
29881,
329,
29891,
289,
5086,
9869,
411,
394,
9735,
398,
1701,
309,
29889,
12790,
368,
805,
764,
278,
1701,
309,
411,
7984,
292,
805,
764,
29889,
13,
13,
22908,
278,
9427,
373,
278,
289,
5086,
9869,
411,
278,
19309,
2625,
1623,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
301,
603,
3623,
625,
29892,
17182,
29892,
322,
29871,
30226,
734,
294,
1129,
265,
594,
711,
29877,
12507,
346,
29889,
1771,
1878,
278,
29544,
975,
278,
2246,
310,
278,
9427,
29889,
1528,
579,
363,
29871,
29906,
29900,
6233,
29892,
470,
2745,
278,
7429,
1016,
18543,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
9687,
21433,
470,
1999,
1581,
29892,
1889,
278,
24841,
3623,
625,
29892,
26343,
303,
1279,
29892,
29830,
327,
280,
1236,
2496,
29892,
26438,
29892,
15795,
29892,
322,
278,
9886,
29871,
30515,
304,
29871,
30226,
734,
294,
1129,
265,
594,
711,
29877,
12507,
346,
2745,
10597,
29889,
6803,
964,
263,
2319,
12507,
346,
8357,
29889,
1771,
292,
304,
263,
1045,
309,
975,
18350,
29899,
9812,
12871,
29889,
1952,
309,
363,
29871,
29906,
6233,
29892,
470,
2745,
12003,
6419,
322,
12212,
491,
4203,
313,
517,
1048,
29871,
31690,
18002,
467,
15154,
515,
278,
12871,
29889,
13,
13,
12024,
2317,
363,
29871,
29941,
6233,
29892,
470,
2745,
10029,
1302,
29877,
839,
29889,
13,
13,
8809,
3873,
297,
278,
4203,
29899,
392,
29899,
24498,
322,
24841,
503,
342,
29889,
24674,
265,
278,
12507,
346,
11480,
715,
1078,
29889,
15484,
278,
9427,
373,
278,
12507,
346,
29889,
14314,
682,
280,
411,
278,
274,
309,
424,
307,
29889,
1816,
345,
411,
278,
301,
603,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29929,
29929,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29906,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29929,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29945,
330,
13,
13,
14676,
262,
29871,
29906,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
15774,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
902,
29890,
29899,
307,
28470,
521,
21475,
13,
13,
3782,
16385,
373,
696,
579,
292,
723,
367,
4866,
1728,
263,
22037,
696,
579,
521,
21475,
9522,
412,
29889,
8402,
363,
5320,
304,
4832,
6199,
310,
1766,
262,
1218,
931,
304,
2758,
278,
4259,
886,
304,
639,
1004,
403,
278,
27654,
322,
2367,
372,
278,
7472,
21054,
272,
29889,
951,
1351,
278,
19309,
373,
278,
521,
21475,
1550,
372,
696,
19416,
304,
3013,
278,
27654,
4805,
2730,
391,
29892,
541,
367,
1854,
304,
3349,
372,
1434,
16330,
29889,
1152,
385,
4780,
2625,
270,
728,
29892,
1018,
1094,
862,
351,
375,
411,
360,
823,
265,
478,
1099,
335,
2267,
371,
29889,
3387,
1835,
278,
408,
862,
351,
375,
297,
278,
288,
854,
746,
278,
521,
21475,
338,
4359,
2309,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
639,
16330,
13,
13,
29896,
30226,
734,
294,
1129,
787,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
2362,
309,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
15795,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
511,
470,
304,
21779,
13,
13,
29896,
29871,
29906,
30226,
29899,
304,
29871,
29941,
29899,
29886,
618,
521,
21475,
29892,
599,
7962,
9950,
29892,
18873,
29892,
322,
330,
1821,
1372,
2313,
25600,
13,
13,
29906,
18350,
373,
1080,
29892,
8870,
1490,
13,
13,
29896,
18350,
454,
3712,
29892,
5700,
964,
14837,
2710,
13,
13,
29896,
2919,
270,
1255,
23041,
20447,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
30226,
18002,
15589,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
29906,
6131,
1129,
787,
3578,
23131,
15276,
279,
457,
29892,
286,
2152,
287,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
266,
25395,
29892,
2362,
309,
29892,
15795,
29892,
322,
1236,
2496,
29889,
14985,
278,
29544,
975,
278,
5377,
310,
278,
521,
21475,
322,
297,
278,
521,
21475,
18346,
537,
29889,
12065,
278,
373,
1080,
29892,
454,
3712,
29892,
23041,
20447,
29892,
322,
7171,
506,
297,
278,
18346,
537,
29889,
5293,
29181,
3252,
457,
29892,
22134,
278,
21152,
4208,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29945,
304,
29871,
29953,
6199,
29889,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29906,
29945,
30073,
29943,
29889,
13,
13,
22150,
278,
521,
21475,
411,
278,
24207,
2625,
701,
373,
263,
1153,
384,
297,
263,
1661,
303,
860,
696,
579,
292,
7243,
29889,
6803,
278,
19006,
322,
15276,
279,
457,
975,
278,
521,
21475,
29889,
17934,
304,
278,
288,
854,
411,
278,
21152,
14870,
278,
1250,
310,
278,
288,
854,
29889,
1528,
579,
363,
29871,
29896,
7234,
304,
29871,
29896,
7234,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
521,
21475,
28975,
29871,
29896,
29953,
29945,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
29892,
21156,
292,
2748,
4203,
1582,
1549,
29889,
450,
521,
21475,
881,
367,
22843,
17354,
322,
967,
3623,
1575,
881,
1065,
2821,
746,
278,
266,
1141,
338,
9307,
1133,
411,
278,
6872,
310,
263,
15301,
889,
1607,
29889,
15154,
515,
278,
288,
854,
29889,
2803,
2317,
29892,
658,
359,
873,
10664,
29892,
363,
29871,
29945,
6233,
29889,
13,
13,
4300,
571,
278,
521,
21475,
304,
263,
16330,
715,
2620,
29889,
3295,
7543,
278,
3252,
457,
29889,
3295,
7543,
278,
373,
1080,
29892,
454,
3712,
29892,
23041,
20447,
29892,
322,
7171,
506,
29889,
3295,
7543,
278,
19309,
1434,
1559,
1747,
278,
521,
21475,
29889,
13,
13,
1762,
1207,
8310,
29891,
29892,
2071,
326,
322,
2313,
538,
278,
9950,
515,
278,
7984,
292,
23904,
297,
278,
696,
579,
292,
7243,
29889,
6803,
278,
9886,
23904,
964,
263,
2319,
12507,
346,
8357,
29889,
1771,
292,
304,
263,
1045,
309,
975,
18350,
29899,
9812,
12871,
29889,
1952,
309,
363,
29871,
29945,
6233,
29892,
23546,
5393,
23025,
29889,
1816,
345,
411,
278,
521,
21475,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29941,
29929,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29900,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29906,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
2277,
521,
21475,
411,
1616,
436,
23195,
322,
6454,
20452,
13,
13,
29909,
2560,
696,
579,
521,
21475,
508,
367,
6766,
472,
738,
931,
29892,
363,
738,
10039,
29889,
910,
697,
12141,
29879,
278,
14294,
29892,
6575,
1460,
21054,
943,
310,
25549,
29889,
739,
29915,
29879,
696,
28470,
411,
1616,
436,
6946,
26490,
29892,
6454,
20452,
29892,
4091,
1862,
29892,
13386,
3145,
29892,
322,
7171,
506,
29892,
599,
289,
14139,
297,
10849,
454,
3712,
3623,
625,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
322,
29871,
31690,
18002,
18655,
1849,
639,
16330,
13,
13,
30515,
18002,
25364,
314,
532,
13386,
3145,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29929,
29871,
1309,
778,
14671,
2256,
1616,
436,
6946,
26490,
29892,
266,
1450,
287,
322,
7482,
1312,
13,
13,
29947,
2919,
4091,
1862,
29892,
8870,
1490,
13,
13,
29953,
18350,
10545,
715,
398,
313,
29934,
4125,
29897,
6454,
20452,
29892,
12616,
287,
13,
13,
29896,
18350,
7171,
506,
8227,
29890,
29892,
17184,
1960,
13055,
13,
13,
29941,
6131,
1129,
787,
10849,
454,
3712,
3623,
625,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
696,
12846,
653,
470,
29871,
29906,
734,
294,
1129,
787,
270,
1255,
696,
12846,
653,
29892,
2181,
15392,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
266,
25395,
470,
29871,
29906,
734,
294,
1129,
787,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
322,
29871,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
272,
304,
21779,
511,
13931,
671,
13,
13,
29896,
18002,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
29896,
29871,
29906,
30226,
29899,
304,
29871,
29941,
29899,
29886,
618,
521,
21475,
29892,
599,
7962,
9950,
29892,
18873,
29892,
322,
330,
1821,
1372,
2313,
25600,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
13,
13,
22908,
278,
13386,
3145,
297,
263,
2919,
696,
579,
292,
7243,
29889,
5293,
278,
1250,
310,
263,
805,
6150,
29892,
10029,
2181,
1878,
963,
29889,
624,
381,
278,
1616,
436,
23195,
29892,
4091,
1862,
29892,
6454,
20452,
29892,
322,
7171,
506,
964,
278,
13386,
3145,
29889,
6803,
278,
454,
3712,
3623,
625,
322,
17182,
975,
278,
1616,
436,
6946,
29544,
29892,
23546,
5393,
304,
24296,
29889,
14314,
682,
280,
411,
278,
696,
12846,
653,
29892,
266,
25395,
29892,
15795,
29892,
322,
29871,
30515,
734,
294,
1129,
265,
1236,
2496,
29889,
6803,
297,
278,
2545,
386,
29889,
350,
1296,
29892,
10664,
29892,
363,
29871,
29906,
29900,
6233,
29889,
13,
13,
6816,
273,
8000,
29892,
7689,
682,
280,
278,
9886,
29871,
30515,
734,
294,
1129,
265,
1236,
2496,
975,
278,
5377,
310,
278,
521,
21475,
322,
14051,
372,
964,
278,
521,
21475,
18346,
537,
29889,
5293,
29181,
3252,
457,
29892,
22134,
278,
21152,
4208,
29889,
13,
13,
797,
1037,
559,
278,
288,
854,
10430,
304,
29871,
29946,
29906,
29945,
30073,
29943,
29889,
15154,
278,
7243,
515,
278,
288,
854,
29889,
15484,
278,
521,
21475,
297,
278,
7243,
29889,
17934,
304,
278,
288,
854,
411,
278,
521,
21475,
29915,
29879,
21152,
14870,
278,
1250,
310,
278,
288,
854,
29889,
1528,
579,
29892,
10664,
29892,
363,
29871,
29906,
29945,
6233,
29892,
21156,
292,
23025,
411,
278,
7243,
3623,
1575,
313,
1202,
263,
2217,
4094,
565,
5181,
467,
13,
13,
9588,
579,
278,
521,
21475,
29892,
443,
11911,
287,
29892,
363,
29871,
29946,
29900,
6233,
304,
29871,
29896,
7234,
29892,
470,
2745,
372,
28975,
29871,
29896,
29953,
29945,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
29889,
450,
19309,
881,
367,
22843,
17354,
322,
2181,
11936,
29892,
322,
278,
3623,
1575,
881,
1065,
2821,
746,
278,
266,
1141,
338,
9307,
1133,
411,
263,
15301,
889,
1607,
29889,
15154,
515,
278,
288,
854,
29889,
2803,
2317,
29892,
658,
359,
873,
10664,
29892,
363,
29871,
29945,
6233,
29889,
13,
13,
4300,
571,
278,
521,
21475,
304,
263,
16330,
715,
2620,
29889,
3295,
7543,
278,
3252,
457,
29889,
5293,
263,
2243,
15048,
805,
6150,
29892,
6782,
29871,
29947,
310,
278,
7171,
506,
17184,
1960,
304,
263,
9687,
21433,
470,
1999,
1581,
29889,
17934,
278,
1616,
436,
23195,
29892,
4091,
1862,
29892,
6454,
20452,
29892,
13386,
3145,
29892,
322,
278,
9886,
7171,
506,
304,
278,
715,
2620,
29892,
3948,
9776,
278,
18655,
1849,
2820,
278,
521,
21475,
29889,
26428,
304,
3013,
14294,
29889,
3295,
7543,
278,
19309,
1434,
1559,
1747,
278,
521,
21475,
29889,
13,
13,
1762,
19012,
278,
12507,
346,
29892,
2071,
326,
322,
2313,
538,
278,
9950,
515,
278,
7984,
292,
23904,
297,
278,
696,
579,
292,
7243,
29889,
3462,
278,
822,
19667,
23904,
304,
278,
7171,
506,
297,
278,
9687,
21433,
470,
1999,
1581,
29889,
10554,
2745,
10597,
29892,
21749,
17068,
411,
263,
2217,
4094,
565,
5181,
29889,
1816,
345,
411,
278,
521,
21475,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29900,
29929,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29929,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29941,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29941,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
454,
3712,
29899,
5397,
506,
7013,
1989,
22707,
417,
262,
13,
13,
1576,
7013,
1989,
696,
19416,
472,
459,
263,
376,
22282,
29908,
310,
10849,
1559,
307,
1372,
297,
278,
7243,
29892,
21156,
292,
1906,
1559,
307,
1372,
411,
8261,
3623,
1575,
322,
6820,
963,
263,
6483,
29892,
592,
11156,
21054,
272,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
7013,
1989,
322,
29871,
29906,
1559,
307,
1372,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29947,
18350,
1559,
307,
1372,
29892,
29871,
29896,
297,
305,
310,
1395,
575,
2175,
373,
565,
278,
1559,
307,
1372,
526,
4123,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
7013,
1989,
22707,
417,
262,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
13,
13,
29906,
734,
294,
1129,
787,
867,
630,
454,
3712,
503,
342,
13,
13,
29941,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29900,
29900,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
4091,
340,
696,
579,
292,
7243,
411,
7984,
292,
805,
764,
29889,
13,
13,
1433,
3881,
278,
1559,
307,
1372,
297,
263,
2323,
7546,
297,
278,
7243,
29889,
826,
3881,
278,
7013,
1989,
373,
278,
1559,
307,
1372,
29889,
1771,
1878,
278,
17182,
975,
278,
7013,
1989,
322,
738,
1559,
307,
1372,
393,
9455,
29915,
29873,
1090,
278,
7013,
1989,
29889,
512,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
454,
3712,
503,
342,
322,
7171,
506,
29889,
14314,
682,
280,
975,
1716,
11192,
310,
278,
7013,
1989,
29889,
14314,
682,
280,
278,
1236,
2496,
322,
15795,
975,
278,
7013,
1989,
322,
1559,
307,
1372,
29889,
13,
13,
9588,
579,
363,
29871,
29941,
29900,
6233,
29889,
9603,
975,
278,
1559,
307,
1372,
313,
19562,
29915,
645,
367,
3347,
9571,
373,
278,
5970,
467,
13,
13,
9588,
579,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
7013,
1989,
28975,
29871,
29896,
29953,
29945,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
322,
278,
1559,
307,
1372,
526,
22707,
29889,
15154,
515,
278,
288,
854,
29889,
17934,
278,
7013,
1989,
304,
263,
28967,
7613,
29889,
2803,
2317,
29892,
658,
359,
873,
10664,
29892,
363,
29871,
29945,
6233,
1434,
269,
506,
292,
29889,
1816,
345,
278,
1559,
307,
1372,
411,
278,
7013,
1989,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29900,
29929,
13,
13,
7827,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29906,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29945,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29955,
330,
13,
13,
14676,
262,
29871,
29906,
29929,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
4048,
706,
367,
1389,
22707,
417,
262,
13,
13,
29909,
14051,
310,
7171,
506,
322,
263,
6023,
310,
266,
25395,
526,
599,
393,
29915,
29879,
4312,
304,
1035,
296,
278,
16424,
21054,
272,
310,
367,
1389,
22707,
417,
262,
29889,
5806,
278,
367,
1389,
338,
1791,
292,
29892,
366,
508,
1207,
1094,
862,
351,
375,
411,
360,
823,
265,
478,
1099,
335,
2267,
371,
322,
505,
4129,
373,
278,
1591,
472,
2748,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
367,
1389,
639,
16330,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
367,
1389,
22707,
417,
262,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
29941,
18350,
7171,
506,
17184,
1960,
29892,
2181,
15392,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
511,
470,
304,
21779,
13,
13,
29946,
470,
29871,
29945,
7689,
23379,
310,
10849,
266,
25395,
470,
29871,
29896,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
13,
13,
29896,
18350,
373,
291,
29892,
269,
506,
287,
13,
13,
29906,
18350,
1559,
307,
1372,
29892,
16835,
368,
269,
506,
287,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29906,
29945,
30073,
29943,
29889,
13,
13,
15156,
29181,
3252,
457,
29892,
22134,
278,
367,
1389,
297,
2211,
470,
3023,
7600,
304,
1371,
372,
3013,
967,
8267,
2645,
696,
579,
292,
29889,
13,
13,
29934,
431,
278,
7171,
506,
599,
975,
278,
367,
1389,
29889,
14314,
682,
280,
411,
278,
1236,
2496,
29889,
12065,
278,
367,
1389,
297,
263,
1661,
303,
860,
696,
579,
292,
7243,
29889,
826,
3881,
278,
266,
25395,
373,
278,
367,
1389,
29889,
360,
374,
5617,
280,
411,
278,
17182,
29889,
15484,
278,
373,
291,
322,
1559,
307,
1372,
2820,
278,
367,
1389,
29889,
13,
13,
9588,
579,
363,
29871,
29941,
29900,
304,
29871,
29946,
29900,
6233,
29892,
470,
2745,
278,
367,
1389,
338,
278,
7429,
1016,
18543,
29889,
15154,
515,
278,
288,
854,
29889,
14314,
682,
280,
411,
278,
15795,
29889,
2803,
2317,
29892,
658,
359,
873,
10664,
29892,
363,
29871,
29896,
29900,
6233,
29889,
3295,
7543,
278,
3252,
457,
29889,
498,
262,
368,
22780,
278,
367,
1389,
7936,
265,
635,
4822,
278,
2646,
262,
29889,
1816,
345,
411,
278,
373,
291,
322,
1559,
307,
1372,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29900,
29929,
13,
13,
7827,
9950,
29871,
29947,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29906,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29955,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
2362,
309,
282,
548,
22707,
417,
262,
411,
4628,
17796,
269,
1338,
29874,
13,
13,
29943,
3781,
2362,
309,
322,
6454,
20452,
21054,
272,
1716,
278,
282,
548,
322,
278,
5192,
29891,
269,
1338,
29874,
297,
445,
25782,
292,
9953,
1318,
29889,
317,
5897,
738,
454,
29888,
517,
369,
282,
548,
964,
10076,
567,
322,
7546,
963,
2768,
26343,
16263,
21338,
411,
278,
269,
1338,
29874,
304,
1207,
260,
579,
29891,
260,
562,
359,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
282,
548,
322,
29871,
30226,
18002,
269,
1338,
29874,
639,
16330,
13,
13,
1529,
29934,
1177,
29909,
2287,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
29892,
16717,
287,
6454,
1219,
13,
13,
29906,
6131,
1129,
787,
1375,
1133,
10849,
2362,
309,
13,
13,
29896,
6131,
1129,
265,
10849,
301,
603,
3623,
625,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
282,
548,
22707,
417,
262,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
19159,
292,
805,
764,
13,
13,
29903,
1964,
8132,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
4628,
367,
550,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
30226,
18002,
3060,
2986,
29892,
16717,
287,
6454,
1219,
13,
13,
29896,
18350,
7933,
373,
291,
29892,
269,
506,
287,
13,
13,
29906,
6131,
1129,
787,
1375,
1133,
10849,
2362,
309,
13,
13,
29896,
6131,
1129,
265,
1375,
1133,
10849,
274,
309,
424,
307,
13,
13,
29896,
6131,
1129,
265,
10849,
301,
603,
3623,
625,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
2831,
278,
1766,
1099,
311,
29892,
1925,
29871,
29906,
6131,
1129,
787,
6454,
1219,
297,
263,
18350,
12917,
289,
5086,
270,
728,
29889,
5293,
278,
1250,
310,
263,
27278,
805,
6150,
29892,
330,
2705,
3965,
373,
278,
12785,
304,
19702,
895,
963,
322,
6507,
777,
310,
1009,
3623,
625,
29889,
624,
381,
297,
278,
9886,
1766,
1099,
311,
2348,
1127,
10070,
29889,
13,
13,
2528,
278,
282,
548,
29892,
14712,
304,
24296,
29889,
26428,
322,
337,
1341,
4087,
403,
363,
29871,
29941,
29900,
6233,
29892,
14712,
2748,
4203,
1582,
1549,
29889,
13,
13,
6816,
273,
8000,
29892,
758,
354,
271,
278,
288,
854,
304,
29871,
29946,
29906,
29945,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
696,
579,
292,
7243,
322,
1153,
384,
411,
7984,
292,
805,
764,
29889,
13,
13,
29928,
6038,
278,
282,
548,
29892,
2313,
20272,
278,
1766,
1099,
311,
29889,
17934,
278,
282,
548,
304,
278,
1153,
384,
29892,
260,
2707,
292,
278,
10614,
1090,
565,
896,
526,
16835,
29889,
1528,
579,
363,
29871,
29906,
29900,
304,
29871,
29906,
29945,
6233,
29892,
470,
2745,
278,
282,
548,
28975,
29871,
29896,
29946,
29945,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
29889,
17934,
304,
263,
28967,
7613,
29889,
2803,
2317,
363,
29871,
29941,
6233,
1434,
28967,
4891,
3538,
964,
269,
29399,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
18350,
12580,
29880,
29892,
23546,
4208,
278,
269,
1338,
29874,
2348,
1127,
10070,
29889,
2803,
2317,
472,
5716,
10430,
363,
29871,
29945,
6233,
577,
278,
21054,
943,
1999,
355,
29889,
1816,
345,
411,
278,
282,
548,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29896,
29929,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29929,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29929,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29941,
30226,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
17067,
1254,
4214,
360,
1164,
1430,
29923,
1799,
8079,
22986,
1299,
29901,
1763,
4772,
1716,
975,
15108,
292,
322,
1090,
15108,
292,
596,
27654,
29892,
671,
263,
27654,
14563,
8328,
304,
1423,
1016,
18543,
29889,
15154,
278,
27654,
515,
278,
288,
854,
1434,
23800,
278,
14426,
29899,
949,
14563,
8328,
29889,
24505,
278,
14563,
8328,
964,
278,
4818,
29892,
470,
12003,
342,
760,
29892,
310,
278,
27654,
29892,
3907,
1854,
278,
14563,
8328,
1838,
29915,
29873,
6023,
289,
650,
470,
9950,
29889,
13,
13,
2277,
282,
548,
696,
579,
411,
18655,
1849,
13,
13,
26222,
366,
679,
445,
4780,
29899,
517,
29899,
465,
6967,
17803,
297,
278,
288,
854,
29892,
366,
508,
26681,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
282,
548,
322,
29871,
30226,
18002,
18655,
1849,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
6131,
1129,
265,
14671,
2256,
29871,
29896,
29900,
29900,
29995,
26163,
3623,
625,
10484,
10492,
29892,
266,
1450,
287,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
10814,
6393,
4818,
29899,
7582,
282,
548,
658,
262,
696,
579,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
29896,
30226,
734,
294,
1129,
787,
3578,
17354,
26438,
13,
13,
29896,
30226,
734,
294,
1129,
787,
7171,
506,
4764,
672,
13,
13,
29896,
30226,
734,
294,
1129,
787,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
29896,
30226,
734,
294,
1129,
787,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
29896,
30226,
734,
294,
1129,
787,
3500,
374,
1335,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29906,
2319,
2654,
3104,
20452,
29892,
5700,
964,
29871,
30226,
29899,
22466,
13630,
267,
13,
13,
30226,
18002,
24354,
1559,
307,
1372,
13,
13,
30226,
18002,
289,
568,
29899,
2311,
12785,
310,
5777,
352,
361,
13609,
23729,
1691,
13,
13,
30226,
2319,
503,
1682,
305,
2172,
29892,
5700,
964,
29871,
30226,
29899,
22466,
13630,
267,
13,
13,
30515,
2319,
2654,
373,
291,
29892,
5700,
964,
29871,
30226,
29899,
22466,
12785,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29906,
29945,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
29871,
29896,
29941,
13105,
29871,
29929,
13105,
29871,
29906,
29899,
22466,
289,
5086,
270,
728,
411,
7984,
292,
805,
764,
29889,
13,
13,
27680,
278,
26163,
3623,
625,
10484,
10492,
599,
975,
278,
282,
548,
29889,
512,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
17354,
26438,
29892,
7171,
506,
4764,
672,
29892,
470,
387,
1562,
29892,
266,
25395,
29892,
3500,
374,
1335,
29892,
322,
1236,
2496,
29889,
3789,
17786,
29871,
29896,
734,
294,
1129,
265,
310,
278,
29544,
29889,
14314,
682,
280,
278,
9886,
29544,
599,
975,
278,
282,
548,
29889,
17934,
278,
282,
548,
304,
278,
7243,
29889,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
23546,
4208,
278,
3104,
20452,
29892,
1559,
307,
1372,
29892,
5777,
352,
361,
13609,
29892,
503,
1682,
305,
2172,
29892,
373,
291,
29892,
322,
21676,
29871,
29896,
734,
294,
1129,
265,
17354,
26438,
29544,
29889,
15484,
2820,
278,
282,
548,
29889,
12790,
368,
805,
764,
278,
282,
548,
322,
18655,
1849,
411,
7984,
292,
805,
764,
29889,
13,
13,
9588,
579,
363,
29871,
29941,
29945,
304,
29871,
29946,
29900,
6233,
470,
2745,
278,
282,
548,
28975,
29871,
29896,
29946,
29945,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
29889,
15154,
515,
278,
288,
854,
29889,
2803,
2317,
29892,
658,
359,
873,
10664,
29892,
363,
29871,
29941,
6233,
1434,
28967,
278,
282,
548,
4891,
3538,
964,
269,
29399,
29889,
1816,
345,
411,
278,
18655,
1849,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29896,
29900,
13,
13,
7827,
9950,
29871,
29953,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29955,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29946,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29953,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
521,
860,
412,
294,
411,
503,
1682,
305,
2172,
29892,
1236,
22437,
29892,
322,
373,
291,
13,
13,
4013,
2927,
1319,
9953,
1318,
30003,
2541,
7933,
503,
1682,
305,
2172,
29892,
2654,
322,
24841,
22623,
1236,
22437,
29892,
14954,
719,
6454,
20452,
29892,
322,
15007,
29899,
10921,
285,
1187,
923,
968,
30003,
3068,
367,
6766,
14294,
470,
472,
5716,
10430,
29889,
1528,
579,
292,
23522,
714,
278,
14225,
2264,
310,
278,
18655,
1849,
322,
12778,
8261,
2264,
304,
278,
21054,
272,
310,
278,
521,
860,
412,
294,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29906,
18350,
503,
1682,
305,
2172,
29892,
8870,
1490,
3309,
3538,
29892,
5700,
964,
29871,
29896,
30226,
29899,
22466,
12785,
13,
13,
29896,
2919,
2654,
22623,
1236,
2496,
29892,
5700,
964,
29871,
29896,
30226,
29899,
22466,
12785,
13,
13,
29896,
2919,
24841,
22623,
1236,
2496,
29892,
5700,
964,
29871,
29896,
30226,
29899,
22466,
12785,
13,
13,
29896,
2319,
2654,
373,
291,
29892,
5700,
964,
29871,
29896,
29899,
22466,
14837,
2710,
13,
13,
29896,
30226,
6131,
1129,
787,
3060,
2986,
10849,
696,
12846,
653,
13,
13,
29941,
2919,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29896,
29871,
29896,
29945,
29889,
29945,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
521,
860,
412,
294,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
29896,
30226,
2723,
567,
14954,
719,
6454,
20452,
13,
13,
30226,
18002,
2181,
25443,
4482,
29899,
29888,
271,
285,
1187,
923,
968,
313,
12717,
29871,
29906,
29871,
1309,
778,
29897,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29906,
29945,
30073,
29943,
29889,
13,
13,
797,
263,
2919,
12580,
29880,
29892,
23546,
4208,
278,
503,
1682,
305,
2172,
29892,
22623,
1236,
22437,
29892,
373,
291,
29892,
696,
12846,
653,
29892,
322,
7171,
506,
29889,
3462,
278,
17182,
29892,
23546,
5393,
304,
24296,
29889,
826,
3881,
297,
263,
2323,
7546,
373,
263,
2919,
29892,
9416,
29899,
29881,
329,
29891,
12726,
2168,
289,
5086,
9869,
29889,
1528,
579,
363,
29871,
29906,
29900,
6233,
29889,
624,
381,
29889,
13,
13,
7031,
411,
278,
521,
860,
412,
294,
322,
6454,
20452,
29889,
1528,
579,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
503,
1682,
305,
2172,
322,
22623,
1236,
22437,
526,
22707,
29892,
278,
373,
291,
338,
4964,
29892,
322,
278,
521,
860,
412,
294,
526,
3578,
368,
3347,
9571,
29889,
3387,
1434,
16330,
29892,
7689,
682,
280,
411,
278,
285,
1187,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29941,
29945,
13,
13,
7827,
9950,
29871,
29953,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29929,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29945,
330,
13,
13,
7241,
495,
29871,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29900,
330,
13,
13,
14676,
262,
29871,
29896,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
30226,
380,
1279,
29892,
29871,
29941,
18655,
519,
29892,
29871,
29896,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
16641,
1660,
1529,
13207,
29901,
1763,
521,
459,
696,
12846,
653,
5948,
29892,
1925,
278,
11308,
297,
263,
2319,
18002,
470,
12580,
29880,
29889,
5293,
885,
790,
943,
470,
29181,
1183,
1503,
29892,
5807,
666,
278,
7689,
23379,
964,
2319,
12785,
29889,
13,
13,
2277,
408,
862,
351,
375,
411,
652,
13022,
325,
1099,
335,
2267,
371,
13,
13,
4013,
4780,
2625,
270,
728,
5771,
28138,
411,
2439,
29890,
29899,
9588,
28470,
678,
21475,
29889,
7370,
10223,
292,
278,
2348,
1127,
10070,
746,
278,
521,
21475,
5771,
297,
278,
288,
854,
322,
769,
1716,
270,
17006,
508,
8341,
4208,
29892,
577,
393,
17803,
674,
367,
7960,
491,
278,
931,
366,
731,
278,
1591,
29889,
3872,
29915,
29873,
671,
14671,
2256,
408,
862,
351,
375,
363,
445,
9522,
412,
29889,
739,
2113,
29915,
29873,
4808,
701,
1532,
322,
674,
4953,
286,
1878,
29891,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29953,
961,
1503,
639,
16330,
13,
13,
29906,
29946,
18350,
408,
862,
351,
375,
961,
1503,
29892,
17151,
2168,
13,
13,
19159,
292,
805,
764,
13,
13,
30515,
734,
294,
1129,
265,
867,
630,
454,
3712,
503,
342,
13,
13,
29896,
6131,
1129,
265,
10849,
454,
3712,
3623,
625,
13,
13,
29896,
6131,
1129,
265,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
30642,
734,
294,
1129,
265,
360,
823,
265,
1818,
538,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
30226,
734,
294,
1129,
265,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
15666,
2496,
304,
21779,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29906,
29945,
30073,
29943,
29889,
13,
13,
1433,
3881,
278,
408,
862,
351,
375,
297,
263,
2323,
7546,
373,
263,
2919,
29892,
9416,
29899,
29881,
329,
29891,
289,
5086,
9869,
29889,
12790,
368,
805,
764,
278,
408,
862,
351,
375,
411,
7984,
292,
805,
764,
29889,
1528,
579,
363,
29871,
29896,
29906,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
22707,
29899,
29883,
3780,
29886,
322,
3578,
368,
3347,
9571,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
9886,
2348,
1127,
10070,
29889,
13,
13,
1748,
345,
445,
2625,
270,
728,
7375,
29892,
472,
5716,
10430,
29892,
470,
521,
24455,
29889,
3387,
1434,
16330,
29892,
10293,
5617,
280,
411,
278,
325,
1099,
335,
2267,
371,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29896,
13,
13,
7827,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29941,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
13,
13,
2277,
304,
28470,
5777,
352,
361,
13609,
322,
7171,
506,
13,
13,
29940,
329,
29885,
387,
12778,
263,
2586,
310,
14225,
2264,
1550,
2654,
1236,
2496,
17422,
10794,
6963,
805,
625,
304,
5777,
352,
361,
13609,
29892,
4327,
292,
445,
15311,
18655,
519,
964,
263,
26959,
519,
2625,
270,
728,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30642,
18002,
639,
16330,
13,
13,
29896,
282,
618,
29871,
29896,
29899,
22466,
5777,
352,
361,
13609,
23729,
1691,
313,
3166,
29871,
29896,
18350,
2343,
310,
5777,
352,
361,
13609,
29897,
13,
13,
29896,
30226,
2723,
567,
3060,
2986,
373,
291,
13,
13,
29947,
18350,
7171,
506,
17184,
1960,
13,
13,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
322,
29871,
29896,
6131,
1129,
265,
508,
2963,
470,
26343,
17182,
29892,
13931,
671,
13,
13,
29896,
30226,
734,
294,
1129,
787,
26438,
13,
13,
30515,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
13,
13,
30515,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29945,
29900,
29900,
30073,
29943,
29889,
7407,
263,
2919,
29892,
9416,
29899,
29881,
329,
29891,
289,
5086,
9869,
411,
394,
9735,
398,
1701,
309,
29889,
13,
13,
1433,
3881,
278,
5777,
352,
361,
13609,
29892,
373,
291,
29892,
322,
7171,
506,
297,
263,
2323,
7546,
373,
278,
289,
5086,
9869,
29889,
360,
374,
5617,
280,
29871,
29896,
6131,
1129,
265,
17182,
975,
599,
29889,
1528,
579,
363,
29871,
29896,
29906,
6233,
29889,
624,
381,
29889,
1528,
579,
363,
29871,
29941,
6233,
29892,
470,
2745,
278,
5777,
352,
361,
13609,
322,
373,
291,
526,
22707,
29899,
29883,
3780,
29886,
322,
278,
7171,
506,
338,
4964,
29889,
15154,
515,
278,
288,
854,
29889,
13,
13,
29928,
374,
5617,
280,
411,
278,
9886,
29871,
29896,
6131,
1129,
265,
17182,
29889,
14314,
682,
280,
411,
278,
9886,
2348,
1127,
10070,
29889,
3872,
29915,
29873,
23546,
29889,
383,
1025,
278,
12770,
310,
278,
1701,
309,
304,
278,
4818,
304,
4612,
278,
18655,
1849,
322,
7171,
506,
6446,
29889,
383,
1025,
4208,
304,
19932,
368,
409,
284,
29889,
2803,
2317,
363,
29871,
29945,
6233,
577,
278,
21054,
943,
1999,
355,
322,
278,
18655,
1849,
6507,
777,
310,
1009,
3623,
1575,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29906,
29947,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29896,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29945,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29953,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
18655,
519,
29892,
29871,
29896,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1522,
1854,
304,
5700,
599,
278,
23729,
1691,
1048,
278,
1021,
2159,
29889,
13,
13,
1672,
28938,
4214,
350,
1164,
3308,
29901,
960,
366,
13389,
278,
7171,
506,
297,
445,
9522,
412,
541,
723,
884,
763,
304,
1018,
372,
411,
916,
9687,
29879,
29892,
696,
579,
263,
3353,
8227,
29890,
313,
272,
901,
1135,
697,
29897,
472,
2748,
29901,
4721,
354,
271,
278,
288,
854,
304,
29871,
29946,
29900,
29900,
30073,
29943,
29889,
15484,
263,
2919,
7171,
506,
8227,
29890,
373,
394,
9735,
398,
1701,
309,
29889,
317,
5897,
1283,
322,
2313,
538,
278,
2246,
310,
278,
7171,
506,
29889,
360,
374,
5617,
280,
278,
8227,
29890,
411,
29871,
30226,
734,
294,
1129,
265,
288,
9258,
17182,
29889,
7488,
411,
263,
7689,
335,
310,
266,
25395,
470,
696,
12846,
653,
29889,
383,
1025,
278,
1701,
309,
701,
304,
2094,
2226,
278,
7171,
506,
322,
409,
284,
278,
12770,
29889,
1528,
579,
363,
29871,
29946,
29945,
6233,
29892,
470,
2745,
4964,
29889,
13,
13,
2277,
9336,
2592,
902,
2580,
3104,
20452,
13,
13,
2308,
328,
3245,
10545,
4259,
886,
679,
263,
6575,
1460,
14505,
515,
454,
3712,
1236,
2496,
304,
2367,
1438,
3104,
20452,
263,
25620,
10800,
273,
17422,
381,
29889,
2688,
5101,
1532,
411,
8886,
738,
289,
12535,
470,
696,
28470,
9953,
1318,
29892,
541,
526,
7148,
1781,
411,
8836,
265,
29899,
29954,
279,
506,
26459,
323,
1581,
417,
262,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29946,
3104,
20452,
639,
16330,
13,
13,
29896,
29953,
2319,
2654,
3104,
20452,
313,
12717,
29871,
29896,
282,
618,
511,
282,
19667,
1407,
15589,
411,
5650,
304,
29893,
1379,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
734,
294,
1129,
787,
288,
9258,
17182,
313,
17833,
10636,
5359,
16389,
29897,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
610,
29879,
2330,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
15795,
29899,
9021,
454,
3712,
1236,
2496,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29900,
29900,
30073,
29943,
29889,
13,
13,
22908,
278,
3104,
20452,
373,
263,
9416,
29899,
29881,
329,
29891,
1661,
303,
860,
12726,
2168,
289,
5086,
9869,
29889,
12790,
368,
805,
764,
963,
411,
7984,
292,
805,
764,
29889,
13,
13,
9588,
579,
363,
29871,
29941,
29900,
6233,
29892,
470,
2745,
22707,
746,
9307,
1133,
411,
263,
27350,
29889,
13,
13,
15941,
278,
289,
5086,
9869,
515,
278,
288,
854,
29889,
360,
374,
5617,
280,
278,
3104,
20452,
411,
278,
17182,
29892,
23546,
5393,
304,
24296,
29889,
14314,
682,
280,
278,
9886,
2348,
1127,
10070,
975,
278,
3104,
20452,
29892,
23546,
5393,
304,
24296,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29900,
29896,
13,
13,
7827,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29953,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29947,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
960,
366,
508,
29915,
29873,
5948,
1284,
29871,
29896,
29899,
21543,
3104,
20452,
29892,
366,
508,
671,
9475,
29871,
29906,
29899,
21543,
3104,
20452,
2012,
29889,
3387,
8870,
345,
963,
4891,
3538,
29889,
13,
13,
2277,
3876,
18655,
519,
1612,
2330,
13,
13,
24933,
1711,
6766,
297,
13851,
29892,
445,
270,
728,
5680,
8437,
29891,
21054,
943,
393,
748,
1532,
411,
3099,
515,
1834,
29887,
4357,
7013,
1989,
304,
1886,
10327,
373,
278,
867,
453,
29889,
887,
508,
884,
23764,
916,
3876,
18655,
1849,
29892,
1316,
408,
367,
1691,
29892,
1559,
307,
1372,
29892,
470,
364,
329,
370,
26712,
29889,
13,
13,
6304,
29963,
2890,
29871,
29896,
29900,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29941,
2319,
2507,
4512,
29892,
1236,
29872,
839,
322,
5700,
964,
321,
18919,
29879,
13,
13,
29896,
29906,
2971,
17006,
29892,
17151,
2168,
322,
12616,
287,
13,
13,
29896,
29906,
282,
799,
29880,
373,
1080,
29892,
1236,
29872,
839,
13,
13,
29906,
18350,
610,
29879,
1240,
567,
29892,
1236,
29872,
839,
322,
5700,
4891,
3538,
964,
29871,
29896,
29899,
22466,
269,
29399,
13,
13,
29896,
29906,
18350,
7171,
506,
17184,
1960,
13,
13,
29896,
30226,
6131,
1129,
787,
288,
9258,
17182,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
15666,
2496,
304,
21779,
13,
13,
29896,
30226,
734,
294,
1129,
787,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
10849,
610,
29879,
2330,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29900,
29900,
30073,
29943,
29889,
7407,
263,
2919,
29892,
9416,
29899,
29881,
329,
29891,
12726,
2168,
289,
5086,
9869,
411,
394,
9735,
398,
1701,
309,
29889,
13,
13,
22908,
278,
2507,
4512,
29892,
2971,
17006,
29892,
373,
1080,
29892,
610,
29879,
1240,
567,
29892,
322,
7171,
506,
297,
263,
2919,
12580,
29880,
29889,
360,
374,
5617,
280,
411,
278,
17182,
29889,
14314,
682,
280,
278,
15795,
322,
1236,
2496,
975,
278,
18655,
1849,
322,
7171,
506,
29892,
23546,
5393,
304,
24296,
1532,
29889,
826,
3881,
278,
18655,
1849,
322,
7171,
506,
297,
263,
2323,
7546,
373,
278,
289,
5086,
9869,
29889,
13,
13,
9588,
579,
363,
29871,
29941,
29900,
6233,
29892,
470,
2745,
22707,
322,
6763,
304,
17354,
29892,
23546,
5393,
23025,
29889,
15154,
278,
289,
5086,
9869,
515,
278,
288,
854,
29889,
14314,
682,
280,
278,
470,
387,
1562,
975,
599,
29889,
13,
13,
9588,
579,
363,
29871,
29896,
29900,
6233,
29889,
3387,
1434,
16330,
29892,
7689,
682,
280,
411,
278,
610,
29879,
2330,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29945,
29900,
13,
13,
7827,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29947,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
13,
13,
2277,
298,
4992,
287,
380,
1610,
495,
2722,
411,
394,
8315,
29879,
13,
13,
4013,
6808,
814,
10017,
967,
1914,
8261,
29892,
628,
293,
2486,
14225,
12507,
346,
408,
278,
298,
4992,
29899,
24477,
5617,
839,
380,
1610,
495,
2722,
7984,
29889,
450,
269,
506,
287,
394,
8315,
29879,
696,
579,
411,
278,
7655,
2722,
2645,
278,
1833,
2846,
6233,
304,
6483,
264,
1009,
21054,
272,
29889,
1174,
2212,
29891,
445,
18254,
1017,
15774,
15319,
7432,
29892,
975,
9950,
29899,
9021,
343,
468,
4227,
29892,
470,
975,
3353,
29899,
3874,
262,
281,
3470,
793,
363,
26044,
470,
1506,
3322,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29941,
2723,
567,
298,
352,
839,
380,
1610,
495,
2722,
29892,
282,
19667,
15589,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
6131,
1129,
787,
2298,
29871,
29906,
734,
294,
1129,
787,
298,
4992,
13,
13,
30515,
18002,
269,
506,
287,
394,
8315,
29879,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29900,
29900,
30073,
29943,
29889,
7407,
263,
2919,
29892,
9416,
29899,
29881,
329,
29891,
12726,
2168,
289,
5086,
9869,
411,
394,
9735,
398,
1701,
309,
29889,
13,
13,
1433,
3881,
278,
380,
1610,
495,
2722,
297,
263,
2323,
7546,
373,
278,
289,
5086,
9869,
29889,
12790,
368,
805,
764,
411,
7984,
292,
805,
764,
29889,
1528,
579,
363,
29871,
29896,
29941,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
22707,
322,
925,
6763,
304,
6501,
264,
10029,
29889,
360,
374,
5617,
280,
411,
278,
298,
4992,
29889,
1528,
579,
363,
29871,
29947,
6233,
29889,
13,
13,
29934,
6085,
346,
278,
12871,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
14314,
682,
280,
278,
394,
8315,
29879,
975,
322,
2820,
278,
380,
1610,
495,
2722,
29889,
350,
1296,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
278,
394,
8315,
29879,
526,
22843,
29889,
24274,
16112,
577,
278,
394,
8315,
29879,
322,
298,
4992,
1016,
29915,
29873,
12138,
29889,
17934,
278,
289,
5086,
9869,
304,
263,
12528,
292,
1153,
384,
29889,
2803,
2317,
363,
29871,
29896,
29900,
6233,
1434,
16330,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29896,
29900,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29896,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29955,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
15774,
29892,
29871,
29896,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
6850,
4717,
29956,
13635,
3960,
2890,
29901,
3872,
29915,
29873,
505,
263,
380,
1610,
16344,
298,
913,
261,
29973,
4803,
263,
4943,
13748,
292,
380,
1610,
2012,
29889,
3387,
1369,
472,
278,
5970,
310,
278,
7655,
719,
322,
5503,
278,
380,
1610,
7812,
1549,
278,
4818,
304,
278,
20805,
29889,
13,
13,
1672,
28938,
4214,
350,
1164,
3308,
29901,
960,
366,
13389,
696,
28470,
302,
8842,
763,
278,
394,
8315,
29879,
297,
445,
9522,
412,
29892,
1018,
15589,
29899,
307,
579,
292,
263,
7200,
5253,
304,
505,
373,
1361,
29889,
4721,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
1706,
949,
278,
302,
8842,
313,
1859,
2986,
470,
3353,
29897,
373,
263,
289,
5086,
9869,
297,
263,
2323,
7546,
29889,
1528,
579,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
5227,
629,
424,
29892,
23546,
5393,
23025,
313,
12344,
16112,
577,
896,
1016,
29915,
29873,
12138,
467,
14491,
278,
1302,
29877,
839,
302,
8842,
297,
385,
263,
2728,
523,
5639,
297,
278,
3889,
3298,
363,
701,
304,
697,
1629,
29889,
13,
13,
29937,
289,
5086,
13,
13,
2409,
265,
29899,
6500,
309,
8870,
747,
329,
411,
21110,
457,
13,
13,
19585,
3712,
411,
298,
4992,
29899,
29890,
1338,
314,
293,
14751,
911,
13,
13,
1376,
481,
423,
411,
282,
3427,
9089,
16717,
2181,
504,
322,
282,
457,
11548,
29899,
485,
542,
912,
269,
1338,
29874,
13,
13,
6500,
309,
521,
21475,
13,
13,
2168,
1524,
10800,
273,
521,
21475,
411,
286,
1878,
18901,
322,
1616,
436,
23195,
13,
13,
1171,
293,
16853,
29899,
3293,
521,
21475,
9679,
29899,
14340,
13,
13,
13148,
287,
21800,
2185,
274,
465,
1489,
280,
13,
13,
1195,
29875,
27654,
658,
5989,
13,
13,
29886,
548,
22707,
417,
262,
6433,
287,
411,
10917,
496,
29892,
282,
457,
302,
8842,
29892,
322,
6575,
29899,
29881,
1255,
6454,
20452,
13,
13,
303,
3096,
287,
521,
388,
866,
10674,
1161,
13,
13,
1028,
262,
496,
1869,
15713,
13,
13,
517,
21154,
411,
24841,
322,
696,
12846,
653,
14751,
911,
13,
13,
1037,
1772,
19710,
24389,
13,
13,
1173,
267,
29891,
413,
744,
521,
4512,
13,
13,
29879,
16668,
3104,
1219,
285,
2722,
411,
3151,
719,
652,
3262,
12507,
346,
13,
13,
562,
1398,
10674,
1161,
6433,
287,
411,
274,
661,
16344,
29899,
18082,
7176,
439,
1789,
29874,
13,
13,
26902,
16702,
923,
968,
2529,
18423,
13,
13,
17536,
29899,
1173,
968,
439,
436,
267,
13,
13,
29872,
8995,
1236,
496,
2181,
11936,
13,
13,
29933,
5086,
338,
697,
310,
278,
1556,
9985,
7984,
292,
13698,
304,
1556,
3271,
7984,
29879,
29889,
739,
29915,
29879,
408,
2560,
408,
14712,
373,
278,
288,
854,
322,
14372,
278,
15589,
12871,
304,
7984,
278,
9687,
29889,
910,
1158,
14874,
9687,
2730,
391,
322,
21054,
272,
1319,
1728,
817,
292,
304,
788,
738,
443,
354,
4298,
29891,
269,
1337,
630,
9950,
29889,
350,
5086,
5491,
6858,
9078,
6567,
29899,
265,
931,
470,
8570,
29936,
727,
29915,
29879,
694,
817,
304,
2507,
9687,
29879,
975,
29892,
23546,
963,
13672,
29892,
470,
3013,
385,
10977,
373,
278,
270,
728,
29889,
887,
14405,
2348,
1127,
10070,
29892,
1925,
963,
297,
263,
289,
5086,
21239,
29892,
2058,
372,
297,
278,
288,
854,
29892,
731,
278,
12237,
29892,
322,
1235,
278,
9687,
7984,
1550,
366,
748,
373,
304,
437,
1554,
1683,
2745,
17803,
338,
7960,
29889,
13,
13,
10401,
366,
1348,
1048,
289,
5086,
29892,
825,
9687,
29879,
2041,
304,
3458,
30003,
29890,
949,
29892,
21046,
29892,
322,
274,
9498,
6544,
29973,
450,
9914,
12871,
310,
278,
288,
854,
451,
871,
286,
2495,
29879,
21054,
943,
541,
508,
884,
3867,
2181,
11936,
1426,
1973,
29892,
3907,
4359,
738,
9687,
21779,
885,
5848,
415,
2738,
29892,
3704,
9427,
29892,
282,
5059,
2202,
29892,
18655,
1849,
29892,
322,
304,
21154,
29889,
13999,
304,
696,
579,
292,
29892,
289,
5086,
5491,
20789,
5224,
6238,
3698,
322,
7968,
12785,
310,
27654,
29892,
1316,
408,
278,
521,
21475,
2078,
19416,
1304,
297,
25620,
10800,
273,
678,
21475,
411,
341,
1878,
18901,
322,
3012,
436,
23195,
29892,
470,
9427,
977,
10376,
29892,
1316,
408,
3956,
3712,
411,
379,
4992,
29899,
29933,
1338,
314,
293,
19798,
911,
29889,
350,
5086,
508,
884,
2507,
2919,
18655,
1849,
29892,
1316,
408,
3353,
470,
8870,
1490,
10674,
1161,
29892,
964,
22707,
29892,
8348,
352,
296,
1226,
1821,
12580,
3137,
411,
10135,
352,
681,
5445,
886,
29892,
1316,
408,
7255,
1398,
317,
339,
1161,
624,
3096,
287,
411,
315,
661,
16344,
29899,
855,
566,
7176,
751,
1789,
29874,
29889,
739,
508,
286,
326,
293,
278,
2181,
11936,
429,
357,
18930,
310,
285,
1255,
9687,
29879,
29892,
408,
297,
6561,
267,
29891,
476,
744,
678,
4512,
470,
317,
16668,
10173,
1219,
383,
2722,
411,
10837,
719,
4671,
3262,
23863,
346,
29889,
1126,
29892,
310,
3236,
29892,
372,
29915,
29879,
4922,
363,
22037,
3942,
7853,
3246,
1316,
408,
341,
2172,
2191,
271,
4309,
5989,
322,
1706,
262,
496,
7413,
15713,
29889,
13,
13,
4986,
350,
29909,
6059,
29901,
259,
13,
1762,
7984,
9687,
297,
385,
288,
854,
1728,
1513,
14060,
545,
304,
263,
1652,
420,
29892,
18830,
372,
411,
15589,
12871,
29889,
13,
13,
24183,
669,
11243,
666,
358,
2448,
19226,
29901,
438,
854,
14563,
8328,
29892,
14426,
29899,
949,
14563,
8328,
29892,
288,
854,
22219,
29879,
322,
3104,
4808,
414,
29892,
12917,
289,
5086,
270,
17006,
29892,
11915,
289,
5086,
282,
550,
29892,
289,
5086,
26718,
313,
5632,
2168,
322,
443,
5632,
2168,
511,
658,
2142,
7243,
29892,
286,
3096,
262,
282,
550,
29892,
8014,
1153,
384,
29892,
29181,
12237,
13,
13,
29911,
5690,
29903,
29901,
13,
13,
30119,
4001,
278,
6238,
3698,
310,
1556,
288,
9852,
526,
451,
1208,
4626,
630,
3721,
29892,
1423,
278,
13600,
310,
15850,
411,
385,
288,
854,
14563,
8328,
322,
2845,
505,
278,
288,
854,
337,
1052,
4626,
630,
565,
372,
29915,
29879,
982,
1283,
470,
10365,
278,
289,
5086,
10430,
16205,
29889,
13,
13,
30119,
1522,
1854,
304,
758,
354,
271,
278,
288,
854,
29936,
372,
29915,
29879,
7088,
278,
4480,
29889,
960,
366,
679,
2411,
271,
993,
322,
1925,
9687,
964,
278,
288,
854,
1434,
372,
756,
7450,
278,
1571,
10430,
29892,
366,
29915,
276,
5517,
304,
1095,
701,
411,
1597,
854,
368,
7984,
287,
9687,
393,
22602,
29915,
29873,
3347,
9571,
6284,
29889,
25453,
884,
7984,
29879,
8473,
565,
372,
29915,
29879,
4687,
472,
278,
1959,
10430,
29889,
1126,
777,
9687,
29879,
29892,
763,
1906,
1754,
411,
8007,
579,
29892,
289,
5086,
269,
8887,
29892,
470,
289,
5086,
4764,
672,
29892,
2113,
29915,
29873,
14451,
6284,
565,
896,
29915,
276,
1925,
297,
263,
11220,
288,
854,
1363,
1906,
2348,
1127,
10070,
7657,
7389,
304,
12871,
29889,
13,
13,
30119,
1763,
758,
354,
271,
278,
288,
854,
901,
9098,
29892,
671,
278,
2545,
3955,
4444,
363,
263,
2846,
6233,
1434,
21293,
304,
278,
3734,
288,
854,
10430,
29889,
13,
13,
30119,
739,
29915,
29879,
1900,
304,
5967,
278,
288,
854,
3050,
5764,
408,
1568,
408,
1950,
29889,
4673,
292,
372,
16869,
714,
278,
12871,
322,
4482,
414,
278,
10430,
297,
278,
288,
854,
29892,
607,
508,
1121,
297,
1597,
854,
7984,
292,
322,
5520,
7984,
292,
3064,
29889,
13,
13,
30119,
4803,
263,
27654,
14563,
8328,
304,
1423,
278,
1016,
18543,
310,
27654,
322,
282,
5059,
2202,
29889,
15154,
278,
9687,
515,
278,
288,
854,
1434,
23800,
278,
14426,
29899,
949,
14563,
8328,
29889,
24505,
278,
14563,
8328,
964,
278,
4818,
29892,
470,
12003,
342,
760,
29892,
310,
278,
27654,
29892,
3907,
1854,
278,
14563,
8328,
1838,
29915,
29873,
6023,
289,
650,
470,
9950,
29889,
13,
13,
30119,
9603,
278,
288,
854,
373,
1550,
366,
29915,
276,
11705,
292,
322,
758,
3262,
596,
2348,
1127,
10070,
29892,
577,
372,
674,
367,
7960,
746,
366,
526,
29889,
3834,
288,
9852,
508,
2125,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
304,
6159,
278,
7429,
10430,
29889,
13,
13,
2277,
454,
3712,
29899,
6500,
309,
8870,
747,
329,
411,
21110,
457,
13,
13,
29911,
1581,
521,
18801,
310,
8870,
747,
329,
17763,
280,
297,
18254,
1017,
3353,
29899,
3874,
262,
21110,
457,
3412,
411,
2181,
11936,
2545,
617,
5079,
322,
14225,
696,
28470,
2654,
22623,
1236,
2496,
29892,
1550,
263,
907,
25934,
12507,
346,
1302,
1446,
1269,
289,
568,
310,
445,
316,
781,
519,
274,
465,
1489,
280,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
30226,
2723,
567,
639,
16330,
13,
13,
29946,
29871,
1309,
778,
270,
1255,
3353,
29899,
3874,
262,
21110,
457,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
2723,
567,
2545,
617,
5079,
23729,
1691,
29892,
1999,
14588,
287,
13,
13,
29896,
18002,
696,
28470,
2654,
22623,
1236,
22437,
29892,
7482,
1312,
565,
18046,
839,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
30226,
18002,
658,
359,
873,
4870,
287,
10849,
2362,
309,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
29896,
282,
618,
8870,
747,
329,
977,
10376,
29892,
364,
1144,
287,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
30642,
29899,
22466,
12785,
13,
13,
29896,
18002,
9950,
29899,
9021,
4203,
29899,
392,
29899,
24498,
13,
13,
29896,
30226,
6131,
1129,
787,
599,
29899,
15503,
4220,
1652,
473,
13,
13,
29896,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
29896,
734,
294,
1129,
265,
867,
630,
454,
3712,
503,
342,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
29925,
3445,
598,
278,
4940,
29874,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
29889,
360,
6038,
1532,
297,
263,
784,
3825,
29889,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
12790,
368,
805,
764,
385,
29871,
29896,
29896,
13105,
29871,
29955,
13105,
29871,
29906,
29899,
22466,
12917,
289,
5086,
270,
728,
411,
7984,
292,
805,
764,
29889,
13,
13,
797,
278,
289,
5086,
270,
728,
29892,
23546,
4208,
278,
4940,
29874,
29892,
2545,
617,
5079,
29892,
696,
28470,
1236,
22437,
29892,
322,
2362,
309,
29889,
826,
3881,
278,
9427,
297,
263,
2323,
7546,
373,
278,
4940,
29874,
29544,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
9886,
2348,
1127,
10070,
5174,
278,
1459,
4467,
273,
29889,
6803,
975,
278,
9427,
322,
4940,
29874,
29544,
29889,
350,
1296,
29892,
10664,
29892,
363,
29871,
29906,
29945,
6233,
29892,
470,
2745,
278,
9427,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
14314,
682,
280,
411,
278,
1459,
4467,
273,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29947,
29929,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29955,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29955,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29953,
330,
13,
13,
7241,
495,
29871,
29945,
330,
13,
13,
29879,
688,
1503,
29871,
29953,
330,
13,
13,
14676,
262,
29871,
29941,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
30226,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
350,
29931,
2190,
3210,
4214,
29901,
1763,
1999,
14588,
2545,
617,
5079,
470,
916,
18655,
1849,
29892,
5445,
263,
12507,
346,
8357,
2211,
29899,
19252,
2989,
310,
4094,
29889,
1771,
292,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
1952,
309,
278,
2545,
617,
5079,
363,
29871,
29896,
304,
29871,
29906,
6233,
29892,
470,
2745,
3578,
368,
7984,
287,
29889,
360,
6038,
278,
2545,
617,
5079,
322,
23359,
1014,
14634,
372,
297,
14890,
4094,
304,
5040,
278,
7984,
292,
1889,
29889,
13,
13,
2277,
4497,
3712,
411,
298,
4992,
29899,
29890,
1338,
314,
293,
14751,
911,
13,
13,
11403,
2560,
2348,
1127,
10070,
5517,
304,
367,
1476,
297,
596,
29181,
304,
1653,
263,
14225,
322,
4048,
706,
14751,
911,
363,
4497,
3712,
29889,
22948,
420,
409,
5779,
788,
18459,
304,
445,
9953,
1318,
393,
29915,
29879,
1854,
304,
4953,
263,
3942,
25448,
29889,
1932,
278,
9427,
338,
7984,
287,
29892,
1925,
382,
8995,
3938,
496,
29524,
29886,
297,
278,
288,
854,
304,
505,
263,
14294,
29892,
628,
14803,
6808,
814,
1156,
17803,
338,
2309,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
30226,
6131,
1129,
787,
3578,
1122,
11586,
895,
13,
13,
29896,
30226,
6131,
1129,
787,
289,
1338,
314,
293,
13848,
387,
279,
13,
13,
29896,
6131,
1129,
265,
298,
4992,
13,
13,
29896,
30226,
734,
294,
1129,
787,
3999,
420,
409,
5779,
13,
13,
30642,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30642,
734,
294,
1129,
265,
288,
9258,
17182,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
29946,
4497,
3712,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29955,
29945,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
4091,
340,
289,
5086,
270,
728,
411,
7984,
292,
805,
764,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
1122,
11586,
895,
322,
13848,
387,
279,
2745,
10597,
29889,
806,
3873,
297,
278,
9886,
2348,
1127,
10070,
5174,
278,
9427,
29889,
13,
13,
22908,
278,
9427,
297,
278,
289,
5086,
270,
728,
29889,
12790,
368,
9677,
278,
1122,
11586,
895,
29544,
975,
278,
2246,
322,
11192,
310,
278,
9427,
29889,
13,
13,
29933,
1296,
363,
29871,
29896,
29945,
304,
29871,
29906,
29900,
6233,
29892,
470,
2745,
278,
9427,
338,
7984,
287,
304,
278,
7429,
1016,
18543,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29900,
29946,
13,
13,
7827,
9950,
29871,
29947,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29945,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29906,
29945,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29955,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29953,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
6928,
481,
423,
411,
282,
3427,
9089,
16717,
2181,
504,
322,
282,
457,
11548,
29899,
485,
542,
912,
269,
1338,
29874,
13,
13,
29925,
3427,
9089,
409,
5779,
2367,
263,
2181,
11936,
2181,
3322,
322,
18254,
1017,
21054,
272,
304,
445,
9427,
270,
728,
29892,
1550,
907,
25934,
1029,
542,
912,
12778,
8261,
2264,
304,
278,
805,
4245,
29899,
29879,
16668,
15774,
269,
1338,
29874,
393,
18509,
583,
372,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
9427,
322,
29871,
31690,
18002,
269,
1338,
29874,
639,
16330,
13,
13,
29943,
3235,
29950,
13,
13,
30515,
18002,
599,
29899,
15503,
4220,
1652,
473,
13,
13,
29906,
2919,
19710,
18960,
13,
13,
30515,
18002,
1436,
873,
3060,
2986,
9644,
1997,
287,
528,
14356,
282,
3427,
9089,
409,
5779,
29892,
15589,
29899,
307,
28470,
313,
12717,
29871,
29906,
29871,
1309,
778,
29897,
13,
13,
30515,
18002,
3353,
29899,
29893,
354,
271,
282,
804,
29877,
313,
29967,
21419,
968,
29899,
3293,
18423,
2181,
3774,
29879,
29897,
13,
13,
29896,
734,
294,
1129,
265,
3500,
374,
1335,
13,
13,
29946,
6928,
481,
423,
977,
10376,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
364,
1144,
287,
322,
282,
19667,
15589,
13,
13,
29903,
1964,
8132,
13,
13,
29896,
29871,
29947,
29899,
21543,
508,
282,
457,
11548,
10668,
14836,
297,
1009,
1914,
3623,
625,
29892,
7482,
1312,
13,
13,
29896,
18350,
1029,
542,
912,
29892,
3060,
2986,
13,
13,
30515,
18002,
1436,
873,
3060,
2986,
2654,
373,
291,
13,
13,
30515,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29906,
6131,
1129,
787,
1436,
873,
3060,
2986,
10849,
432,
2883,
412,
8266,
29892,
409,
5779,
322,
18130,
29879,
2313,
25600,
313,
4149,
17278,
29915,
29879,
323,
666,
29897,
13,
13,
29896,
304,
29871,
29906,
6131,
1129,
787,
10849,
301,
603,
3623,
625,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29900,
29900,
30073,
29943,
29889,
13,
13,
22908,
278,
1652,
473,
297,
263,
18350,
4091,
340,
270,
728,
29889,
512,
263,
5004,
18350,
4091,
340,
270,
728,
29892,
377,
3873,
278,
19710,
18960,
2745,
1701,
25934,
29889,
512,
263,
4654,
18350,
4091,
340,
270,
728,
29892,
23546,
4208,
278,
282,
3427,
9089,
409,
5779,
29892,
282,
804,
29877,
29892,
322,
3500,
374,
1335,
29889,
360,
666,
278,
9427,
297,
278,
1652,
473,
29892,
769,
297,
278,
19710,
18960,
29892,
322,
7146,
297,
278,
282,
3427,
9089,
16717,
29544,
29892,
14712,
304,
24296,
472,
1269,
4331,
322,
330,
2705,
528,
5086,
1283,
738,
19163,
29889,
5293,
596,
285,
292,
814,
4512,
29892,
330,
2705,
3965,
278,
29544,
577,
372,
594,
2276,
267,
304,
278,
9427,
29889,
15484,
278,
9427,
373,
263,
289,
5086,
9869,
29889,
13,
13,
29934,
6085,
346,
278,
288,
854,
10430,
304,
29871,
29941,
29955,
29945,
30073,
29943,
29889,
350,
1296,
278,
9427,
363,
29871,
29896,
29906,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
372,
17422,
10794,
5948,
746,
9528,
411,
263,
27350,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
330,
2705,
23546,
4208,
278,
269,
1338,
29874,
2348,
1127,
10070,
29889,
1816,
345,
278,
9427,
304,
2986,
411,
278,
269,
1338,
29874,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29941,
29896,
13,
13,
7827,
9950,
29871,
29896,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29955,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29929,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29945,
330,
13,
13,
7241,
495,
29871,
29953,
330,
13,
13,
29879,
688,
1503,
29871,
29947,
330,
13,
13,
14676,
262,
29871,
29941,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
30226,
15774,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
30226,
20793,
27654,
13,
13,
2277,
2362,
309,
521,
21475,
13,
13,
29933,
5086,
278,
521,
21475,
411,
967,
19309,
373,
6911,
3013,
278,
27654,
2730,
391,
322,
22707,
29889,
450,
19309,
884,
3965,
267,
278,
2362,
309,
29892,
3500,
374,
1335,
29892,
322,
454,
3712,
19932,
368,
2750,
278,
27654,
577,
372,
508,
577,
557,
701,
1009,
21054,
943,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
30226,
734,
294,
1129,
265,
3500,
374,
1335,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
29946,
289,
650,
29899,
262,
521,
21475,
24207,
8870,
1960,
411,
19309,
29892,
599,
7962,
9950,
2313,
25600,
13,
13,
29906,
304,
29871,
29941,
6131,
1129,
787,
10849,
454,
3712,
3623,
625,
13,
13,
29947,
18350,
10849,
2362,
309,
11308,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29955,
29945,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
29871,
29929,
29899,
22466,
12917,
289,
5086,
270,
728,
411,
7984,
292,
805,
764,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
3500,
374,
1335,
322,
1236,
2496,
29889,
13,
13,
29954,
2705,
8206,
1250,
278,
19309,
515,
697,
8424,
310,
521,
21475,
29892,
10124,
372,
10959,
472,
697,
1095,
322,
1641,
16010,
451,
304,
734,
279,
372,
29889,
14314,
682,
280,
697,
29899,
17823,
386,
310,
278,
454,
3712,
3623,
625,
322,
697,
29899,
17823,
386,
310,
278,
3500,
374,
1335,
29544,
975,
278,
19884,
27654,
29889,
826,
3881,
29871,
29906,
2362,
309,
11308,
373,
2246,
29889,
349,
913,
278,
19309,
1250,
964,
2058,
29892,
21653,
278,
2362,
309,
11308,
29889,
17934,
304,
278,
289,
5086,
270,
728,
411,
278,
19309,
2625,
701,
29889,
830,
11666,
411,
278,
9886,
521,
21475,
29889,
13,
13,
29933,
1296,
363,
29871,
29941,
29900,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
3295,
7543,
278,
19309,
29889,
3387,
1434,
16330,
29892,
7689,
682,
280,
278,
521,
21475,
411,
278,
15795,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29941,
29947,
13,
13,
7827,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29953,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29947,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
330,
13,
13,
7241,
495,
29871,
29900,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29906,
29945,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
20793,
27654,
13,
13,
2277,
1612,
1524,
10800,
273,
521,
21475,
411,
286,
1878,
18901,
322,
1616,
436,
23195,
13,
13,
29967,
29884,
4245,
521,
21475,
338,
289,
12535,
304,
639,
20309,
411,
22707,
286,
1878,
18901,
29892,
18806,
29891,
1616,
436,
6946,
26490,
29892,
322,
14225,
6454,
20452,
304,
1653,
278,
14294,
21054,
943,
310,
278,
25620,
10800,
273,
29889,
1816,
345,
975,
17354,
19408,
470,
3353,
29899,
3874,
262,
470,
2502,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
521,
21475,
639,
16330,
13,
13,
30226,
18002,
599,
29899,
15503,
4220,
1652,
473,
13,
13,
29946,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
13,
13,
29906,
6131,
1129,
787,
288,
9258,
17182,
13,
13,
29947,
29871,
1309,
778,
269,
506,
287,
2826,
286,
1878,
18901,
13,
13,
29896,
29871,
29953,
29899,
21543,
14631,
1766,
262,
630,
1616,
436,
6946,
26490,
29892,
7482,
1312,
13,
13,
29906,
2723,
567,
3060,
2986,
6454,
20452,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
511,
470,
304,
21779,
13,
13,
30226,
18002,
15589,
528,
261,
719,
470,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
521,
21475,
2545,
386,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
13,
13,
22908,
278,
1652,
473,
297,
263,
18350,
4091,
340,
270,
728,
29889,
360,
666,
278,
521,
21475,
297,
278,
1652,
473,
29892,
14712,
304,
24296,
322,
330,
2705,
528,
5086,
1283,
738,
19163,
29889,
17934,
304,
263,
2919,
15284,
29889,
13,
13,
797,
263,
2919,
1661,
303,
860,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
29899,
9812,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
521,
21475,
363,
29871,
29906,
6233,
373,
1269,
2625,
29892,
470,
2745,
3578,
368,
3347,
9571,
29889,
17934,
304,
385,
29871,
29896,
29896,
13105,
29871,
29955,
13105,
29871,
29906,
29899,
22466,
289,
5086,
270,
728,
29889,
15484,
278,
286,
1878,
18901,
322,
1616,
436,
23195,
2820,
278,
521,
21475,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
6454,
20452,
29892,
7171,
506,
29892,
470,
387,
1562,
29892,
322,
1236,
2496,
29889,
6803,
975,
278,
521,
21475,
29892,
286,
1878,
18901,
29892,
322,
1616,
436,
23195,
29889,
350,
1296,
363,
29871,
29906,
29945,
6233,
29889,
15154,
515,
278,
288,
854,
322,
23546,
297,
278,
528,
261,
719,
29889,
350,
1296,
363,
29871,
29945,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29906,
29946,
13,
13,
7827,
9950,
29871,
29896,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29955,
29941,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29953,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29896,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29947,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29906,
18655,
519,
29892,
29871,
29941,
20793,
27654,
29892,
29871,
30226,
9950,
13,
13,
2277,
767,
293,
16853,
29899,
3293,
521,
21475,
9679,
29899,
14340,
13,
13,
797,
445,
10849,
2125,
373,
263,
22037,
270,
728,
29892,
591,
5191,
278,
13807,
4940,
29874,
23131,
267,
411,
521,
21475,
2078,
19416,
393,
505,
1063,
1652,
8606,
287,
304,
9679,
2820,
263,
907,
25934,
29892,
902,
2580,
27523,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
9679,
29899,
786,
639,
16330,
13,
13,
30642,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
30642,
734,
294,
1129,
265,
270,
1255,
2362,
309,
29892,
2181,
25443,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
1766,
3418,
314,
29892,
2181,
25443,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
511,
470,
304,
21779,
13,
13,
29896,
18002,
4094,
13,
13,
29896,
29871,
29953,
29899,
21543,
508,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
11417,
13,
13,
29896,
18350,
7171,
506,
17184,
345,
29892,
1375,
1133,
13,
13,
29946,
10814,
6393,
29892,
19309,
2222,
521,
21475,
24207,
8870,
1960,
313,
12717,
29871,
29946,
29871,
1309,
778,
1269,
511,
599,
7962,
9950,
2313,
25600,
29892,
1652,
8606,
287,
304,
29871,
30515,
29899,
22466,
12003,
2264,
13,
13,
29946,
29871,
1309,
778,
9950,
29899,
9021,
9597,
13536,
923,
968,
13,
13,
29906,
29871,
1309,
778,
528,
1127,
7176,
470,
867,
630,
4482,
29899,
29888,
271,
286,
2112,
29920,
598,
13520,
923,
968,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
470,
387,
1562,
29892,
2362,
309,
29892,
1766,
3418,
314,
29892,
322,
1236,
2496,
29889,
512,
263,
2319,
12507,
346,
8357,
29892,
23546,
4208,
278,
4094,
29892,
6454,
1219,
11417,
29892,
7171,
506,
29892,
322,
29871,
29896,
30226,
734,
294,
1129,
787,
310,
278,
470,
387,
1562,
29544,
29889,
1771,
292,
304,
263,
1045,
309,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29896,
29900,
6233,
29892,
23546,
5393,
23025,
29889,
13,
13,
22150,
278,
521,
21475,
373,
263,
12151,
7101,
29889,
512,
263,
5004,
2319,
12580,
29880,
29892,
23546,
4208,
278,
9597,
13536,
322,
278,
9886,
470,
387,
1562,
29544,
29889,
24674,
265,
11480,
278,
4818,
310,
1269,
521,
21475,
24207,
29889,
21809,
701,
12736,
368,
29899,
1245,
3114,
29889,
13,
13,
5592,
949,
4203,
278,
6454,
1219,
11417,
29544,
297,
385,
29871,
29896,
29896,
13105,
29871,
29955,
13105,
29871,
29906,
29899,
22466,
289,
5086,
270,
728,
29889,
15484,
278,
9679,
29899,
14340,
373,
278,
6454,
1219,
11417,
29544,
29889,
24674,
265,
278,
9886,
29544,
975,
278,
521,
21475,
29889,
14314,
682,
280,
411,
278,
286,
2112,
29920,
598,
13520,
29889,
350,
1296,
363,
29871,
29946,
29945,
6233,
29892,
470,
2745,
278,
521,
21475,
338,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29896,
29953,
13,
13,
7827,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29947,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29941,
29896,
29946,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29900,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29953,
330,
13,
13,
14676,
262,
29871,
29941,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
18655,
519,
29892,
29871,
29946,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
6732,
383,
29931,
1299,
29911,
1430,
4214,
5868,
2965,
29968,
1430,
350,
1525,
28938,
29903,
29901,
12065,
263,
521,
21475,
24207,
411,
278,
10597,
2625,
701,
1546,
1023,
12785,
310,
715,
6288,
12244,
29889,
2973,
278,
10597,
2625,
310,
263,
27654,
4439,
1026,
470,
263,
9416,
7243,
29892,
1652,
8606,
278,
521,
21475,
304,
278,
7429,
12003,
2264,
29889,
1522,
16010,
451,
304,
734,
279,
278,
27654,
29889,
13,
13,
2277,
7546,
287,
21800,
2185,
274,
465,
1489,
280,
13,
13,
29909,
7689,
2784,
310,
10849,
301,
603,
3623,
625,
338,
278,
4922,
28321,
6023,
363,
445,
274,
465,
1489,
280,
29892,
607,
338,
263,
1361,
29891,
982,
304,
671,
454,
29888,
517,
369,
521,
21475,
29889,
960,
366,
1016,
29915,
29873,
505,
738,
7984,
287,
521,
21475,
24207,
373,
1361,
29892,
1074,
278,
17278,
29915,
29879,
323,
666,
363,
263,
4996,
982,
304,
19012,
777,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
18002,
639,
16330,
13,
13,
29896,
29900,
29871,
1309,
778,
14671,
2256,
17354,
19408,
13,
13,
29896,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
29896,
6131,
1129,
265,
288,
9258,
17182,
13,
13,
29896,
29871,
29946,
29899,
21543,
508,
3060,
2986,
7933,
521,
5475,
29892,
563,
22042,
13,
13,
30515,
18002,
3060,
2986,
10849,
274,
309,
424,
307,
13,
13,
29896,
30226,
2723,
567,
13630,
287,
7984,
287,
19309,
2222,
521,
21475,
24207,
29892,
7984,
287,
1728,
15795,
313,
12717,
29871,
29955,
30226,
29871,
1309,
778,
7984,
287,
29897,
13,
13,
30226,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
29871,
29946,
29899,
1173,
968,
24777,
1999,
355,
13,
13,
29896,
18350,
301,
603,
29892,
5700,
964,
29871,
29946,
14837,
2710,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
13,
13,
29925,
3445,
598,
278,
19408,
773,
278,
3577,
18112,
29889,
17934,
304,
263,
18350,
12580,
29880,
29889,
624,
381,
278,
274,
9735,
964,
278,
7984,
287,
19408,
29889,
1706,
949,
278,
19408,
29544,
297,
385,
29871,
29947,
29899,
22466,
6862,
289,
5086,
7243,
29889,
360,
374,
5617,
280,
411,
278,
17182,
29889,
5293,
278,
1250,
310,
263,
805,
6150,
29892,
10597,
278,
7101,
29889,
24674,
265,
278,
521,
5475,
975,
278,
29544,
29889,
7488,
411,
29892,
297,
1797,
29892,
278,
274,
309,
424,
307,
29892,
521,
21475,
29892,
322,
923,
968,
29889,
13,
13,
29933,
1296,
29892,
10664,
29892,
363,
29871,
29896,
29945,
6233,
29892,
470,
2745,
278,
923,
968,
756,
286,
2152,
287,
29889,
13,
13,
1748,
345,
411,
278,
301,
603,
14837,
2710,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29946,
29906,
13,
13,
7827,
9950,
29871,
29947,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29945,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29953,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29947,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29906,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29941,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1152,
9098,
7984,
287,
521,
21475,
304,
671,
297,
445,
9522,
412,
29892,
2313,
538,
599,
278,
7962,
9950,
515,
29871,
29896,
29900,
29871,
1309,
778,
310,
10814,
6393,
29892,
19309,
2222,
521,
21475,
2078,
19416,
29889,
315,
329,
278,
521,
21475,
964,
289,
568,
29899,
2311,
12785,
29889,
12790,
368,
805,
764,
263,
2319,
2071,
7324,
411,
7984,
292,
805,
764,
29889,
940,
271,
975,
18350,
29899,
9812,
12871,
29889,
17278,
278,
521,
21475,
363,
29871,
29941,
304,
29871,
29946,
6233,
29892,
470,
2745,
694,
5520,
282,
682,
297,
278,
4818,
29892,
23546,
5393,
21003,
29889,
13,
13,
2277,
20629,
27654,
658,
5989,
13,
13,
29924,
5086,
1438,
2323,
29899,
643,
1747,
27654,
658,
5989,
27401,
7984,
292,
931,
29892,
322,
896,
29915,
276,
521,
1698,
29899,
8159,
310,
12461,
29887,
583,
29892,
577,
896,
29915,
276,
4805,
9045,
29891,
29892,
2086,
29889,
16913,
1584,
901,
931,
491,
4662,
21435,
278,
9522,
412,
322,
3889,
19583,
278,
429,
10678,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
27654,
658,
2142,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
30226,
18002,
694,
29899,
29879,
1997,
29899,
23959,
413,
3486,
786,
13,
13,
29906,
734,
294,
1129,
787,
19662,
29883,
28910,
14812,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
29896,
282,
618,
4805,
29899,
14044,
5962,
367,
1389,
13,
13,
229,
136,
151,
18002,
3353,
29899,
29893,
354,
271,
282,
804,
29877,
313,
29967,
21419,
968,
29899,
3293,
18423,
2181,
3774,
29879,
29897,
13,
13,
30226,
18002,
3060,
2986,
7933,
373,
1080,
13,
13,
30226,
18002,
270,
7612,
7933,
22623,
1236,
2496,
13,
13,
30226,
18002,
270,
7612,
2654,
22623,
1236,
2496,
13,
13,
30226,
18002,
3353,
29899,
17460,
26343,
29892,
266,
1450,
287,
565,
14671,
2256,
13,
13,
29906,
2919,
19710,
18960,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
7407,
263,
289,
5086,
9869,
411,
394,
9735,
398,
1701,
309,
29889,
12790,
368,
805,
764,
278,
1701,
309,
411,
7984,
292,
805,
764,
29889,
3789,
17786,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
413,
3486,
786,
29892,
19662,
29883,
28910,
14812,
12507,
346,
29892,
322,
15795,
29889,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
773,
596,
6567,
470,
263,
805,
6150,
29892,
14405,
278,
367,
1389,
29892,
282,
804,
29877,
29892,
7933,
373,
1080,
29892,
22623,
1236,
22437,
29892,
26343,
29892,
19710,
18960,
29892,
322,
29871,
30515,
18002,
310,
278,
413,
3486,
786,
29544,
2745,
925,
1999,
2760,
29889,
4910,
680,
278,
29544,
964,
3023,
5633,
29889,
17934,
963,
304,
278,
289,
5086,
9869,
29889,
1383,
4085,
964,
3023,
29871,
29941,
13105,
29871,
29946,
13105,
29871,
29896,
29899,
22466,
658,
5989,
29889,
350,
1296,
363,
29871,
29941,
29945,
304,
29871,
29946,
29900,
6233,
29889,
15154,
515,
278,
288,
854,
29889,
13,
13,
29903,
1129,
265,
278,
9886,
413,
3486,
786,
29544,
975,
278,
658,
5989,
29889,
350,
1296,
363,
29871,
29906,
304,
29871,
29946,
6233,
29892,
470,
2745,
278,
27654,
658,
5989,
6036,
29871,
29896,
29953,
29900,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
322,
526,
694,
5520,
282,
682,
297,
278,
4818,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29953,
29953,
13,
13,
7827,
9950,
29871,
29953,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29906,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29946,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29896,
330,
13,
13,
14676,
262,
29871,
29941,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29941,
30226,
20793,
27654,
13,
13,
29886,
548,
22707,
417,
262,
6433,
287,
411,
10917,
496,
29892,
282,
457,
302,
8842,
29892,
322,
6575,
29899,
29881,
1255,
6454,
20452,
13,
13,
2277,
282,
548,
22707,
417,
262,
6433,
287,
411,
10917,
496,
29892,
282,
457,
302,
8842,
29892,
322,
6575,
29899,
29881,
1255,
6454,
20452,
13,
13,
4013,
19232,
1667,
270,
728,
338,
1854,
304,
21210,
746,
278,
282,
548,
338,
269,
506,
287,
1722,
304,
10320,
284,
967,
9560,
29892,
11785,
27523,
29889,
739,
1122,
1106,
12092,
29892,
541,
372,
29915,
29879,
2560,
304,
19012,
29889,
317,
16668,
6575,
29899,
29881,
1255,
6454,
20452,
29892,
8437,
29891,
10917,
496,
29892,
322,
2181,
3322,
29891,
282,
457,
302,
8842,
3867,
263,
20695,
12814,
304,
696,
12846,
653,
29899,
1557,
14927,
282,
548,
29889,
6975,
596,
288,
854,
437,
3765,
13360,
491,
289,
5086,
7255,
1398,
317,
339,
1161,
624,
3096,
287,
411,
315,
661,
16344,
29899,
855,
566,
7176,
751,
1789,
29874,
472,
278,
1021,
931,
29889,
313,
13393,
15373,
1846,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29941,
29871,
1309,
778,
282,
548,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
30226,
18002,
15589,
29899,
4058,
287,
6575,
29899,
29881,
1255,
6454,
20452,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
29871,
29896,
29899,
29886,
618,
282,
548,
22707,
417,
262,
29892,
599,
7962,
9950,
2313,
25600,
29892,
541,
357,
29888,
2957,
322,
1652,
8606,
287,
304,
29871,
29896,
29899,
22466,
12003,
2264,
13,
13,
29906,
6131,
1129,
787,
282,
457,
302,
8842,
29892,
15589,
29899,
307,
28470,
13,
13,
29896,
6131,
1129,
265,
3060,
2986,
10849,
696,
12846,
653,
322,
29871,
29896,
6131,
1129,
265,
3060,
2986,
10849,
696,
12846,
653,
29892,
13931,
671,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
322,
29871,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
29892,
13931,
671,
13,
13,
29946,
2723,
567,
658,
359,
873,
4870,
287,
24354,
10917,
496,
13,
13,
29933,
5393,
29871,
29896,
18002,
4094,
304,
263,
1045,
309,
29889,
12065,
278,
6454,
20452,
297,
263,
2319,
12580,
29880,
29889,
6803,
297,
278,
1045,
6504,
4094,
29889,
2803,
2317,
363,
29871,
29896,
29900,
6233,
29892,
470,
2745,
4964,
6419,
29889,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29955,
29945,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
12726,
2168,
289,
5086,
9869,
411,
7984,
292,
805,
764,
29889,
13,
13,
29928,
6038,
278,
6454,
20452,
29892,
2313,
20272,
278,
577,
5086,
4094,
29889,
317,
802,
29872,
911,
963,
304,
3349,
738,
19163,
4094,
29889,
3189,
1503,
873,
521,
459,
278,
6454,
20452,
29889,
13,
13,
29931,
388,
278,
6496,
282,
548,
373,
263,
28967,
7613,
29889,
14314,
682,
280,
278,
6454,
20452,
322,
282,
457,
302,
8842,
3309,
3538,
975,
4203,
310,
278,
282,
548,
29889,
14314,
682,
280,
29871,
29896,
6131,
1129,
265,
696,
12846,
653,
29892,
278,
15795,
29892,
322,
29871,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
975,
278,
6454,
1219,
29544,
29889,
826,
3881,
278,
10917,
496,
297,
263,
2323,
7546,
373,
2246,
29889,
383,
1025,
278,
4203,
411,
694,
27523,
975,
278,
916,
4203,
29889,
5293,
29181,
3252,
457,
29892,
22134,
278,
282,
548,
472,
29871,
29906,
29899,
22466,
18747,
304,
11592,
372,
29889,
17934,
278,
282,
548,
304,
278,
289,
5086,
9869,
29889,
12790,
368,
805,
764,
278,
282,
548,
411,
7984,
292,
805,
764,
29889,
14314,
682,
280,
411,
278,
9886,
29871,
29896,
6131,
1129,
265,
696,
12846,
653,
322,
29871,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
29889,
13,
13,
29933,
1296,
363,
29871,
29946,
29900,
6233,
29892,
470,
2745,
278,
282,
548,
28975,
29871,
29896,
29946,
29945,
30073,
29943,
373,
385,
14426,
29899,
949,
14563,
8328,
29889,
13,
13,
4300,
571,
278,
282,
548,
304,
263,
5941,
28967,
7613,
29889,
3295,
7543,
278,
3252,
457,
29889,
2803,
2317,
363,
29871,
29941,
6233,
1434,
269,
506,
292,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29953,
29953,
13,
13,
7827,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29953,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29896,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29953,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29906,
330,
13,
13,
14676,
262,
29871,
29906,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
6433,
287,
521,
388,
866,
10674,
1161,
13,
13,
1576,
9505,
29886,
310,
278,
521,
388,
866,
10674,
1161,
338,
2730,
391,
322,
260,
579,
267,
763,
263,
4891,
1546,
385,
26163,
322,
263,
274,
1682,
2807,
29889,
450,
1820,
304,
445,
9522,
412,
338,
451,
304,
975,
15108,
278,
18655,
519,
27523,
29889,
450,
22707,
29899,
29883,
3780,
29886,
18459,
338,
760,
310,
278,
21192,
310,
278,
7743,
270,
728,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
10674,
1161,
4203,
639,
16330,
13,
13,
29906,
18350,
521,
388,
866,
10674,
1161,
313,
12717,
29871,
29896,
282,
618,
3001,
29897,
13,
13,
29896,
734,
294,
1129,
265,
508,
2963,
470,
26343,
17182,
13,
13,
29906,
18350,
18130,
29879,
310,
6432,
708,
29892,
270,
7612,
13,
13,
29906,
18350,
1559,
307,
1372,
29892,
270,
7612,
13,
13,
29896,
18350,
373,
291,
29892,
270,
7612,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
29945,
29871,
1309,
778,
14671,
2256,
577,
29891,
2181,
3774,
793,
29892,
266,
1450,
287,
13,
13,
29906,
18350,
10545,
715,
398,
313,
29934,
4125,
29897,
6454,
20452,
29892,
270,
7612,
13,
13,
29906,
18350,
7933,
373,
1080,
29892,
16835,
368,
269,
506,
287,
13,
13,
30515,
734,
294,
1129,
265,
270,
1255,
266,
25395,
29892,
2181,
25443,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
30515,
18002,
3353,
29899,
29893,
354,
271,
282,
804,
29877,
313,
29967,
21419,
968,
29899,
3293,
18423,
2181,
3774,
29879,
29897,
13,
13,
29896,
6131,
1129,
265,
2298,
29871,
29896,
734,
294,
1129,
265,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
22908,
278,
10674,
1161,
297,
263,
18350,
12507,
346,
8357,
322,
5445,
278,
7243,
411,
3307,
11220,
4094,
304,
4612,
491,
29871,
29906,
22831,
29889,
1771,
292,
304,
263,
1045,
309,
975,
1880,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
363,
29871,
29941,
29900,
6233,
29892,
470,
2745,
278,
10674,
1161,
338,
22707,
746,
9307,
1133,
411,
278,
6872,
310,
263,
15301,
889,
1607,
29889,
15154,
515,
278,
7243,
322,
715,
19440,
964,
263,
12580,
29880,
310,
14890,
4094,
304,
5040,
278,
7984,
292,
1889,
29889,
2803,
12528,
29889,
13,
13,
10401,
278,
10674,
1161,
338,
12528,
29892,
8870,
345,
372,
3309,
3538,
29889,
3295,
7543,
278,
409,
5779,
29889,
5293,
263,
805,
6150,
470,
9232,
265,
8287,
261,
29892,
885,
26793,
714,
278,
9505,
29886,
29892,
10124,
263,
29871,
30226,
29899,
22466,
5139,
310,
278,
6473,
599,
278,
982,
2820,
29889,
678,
459,
278,
9505,
29886,
322,
731,
17786,
29889,
15484,
278,
6473,
29879,
411,
278,
5700,
11192,
701,
373,
263,
12726,
2168,
289,
5086,
9869,
29889,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29955,
29945,
30073,
29943,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
12871,
29889,
17278,
278,
6432,
708,
29892,
1559,
307,
1372,
29892,
373,
291,
29892,
322,
7171,
506,
363,
29871,
29906,
304,
29871,
29941,
6233,
29892,
470,
2745,
22707,
29899,
29883,
3780,
29886,
313,
9176,
29915,
29873,
975,
15108,
467,
624,
381,
297,
278,
577,
29891,
2181,
3774,
793,
29892,
6454,
20452,
29892,
7933,
373,
1080,
29892,
266,
25395,
29892,
15795,
29892,
1236,
2496,
29892,
322,
21676,
10674,
1161,
9505,
29886,
29889,
17278,
363,
29871,
29941,
29900,
6923,
29889,
13,
13,
29903,
1129,
265,
278,
577,
29891,
2181,
15563,
29544,
964,
278,
10674,
1161,
6473,
29879,
29889,
14314,
682,
280,
411,
278,
282,
804,
29877,
322,
1459,
4467,
273,
29889,
13,
13,
29933,
1296,
363,
29871,
29896,
29945,
304,
29871,
29906,
29900,
6233,
29892,
470,
2745,
540,
630,
1549,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29946,
29906,
13,
13,
7827,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29947,
29900,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29906,
330,
13,
13,
7241,
495,
29871,
29955,
330,
13,
13,
29879,
688,
1503,
29871,
29947,
330,
13,
13,
14676,
262,
29871,
29896,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29941,
18655,
519,
29892,
29871,
29896,
20793,
27654,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
960,
366,
508,
29915,
29873,
1284,
521,
388,
866,
10674,
1161,
29892,
366,
508,
671,
13328,
11801,
10674,
1161,
470,
503,
1682,
305,
2172,
2012,
29889,
8142,
345,
278,
10674,
1161,
3309,
3538,
29889,
317,
1111,
459,
714,
278,
9505,
29886,
29892,
10124,
263,
29871,
30515,
29899,
22466,
5139,
310,
278,
6473,
599,
278,
982,
2820,
29889,
360,
625,
278,
9505,
29886,
29889,
3789,
17786,
29889,
15484,
278,
6473,
29879,
411,
278,
5700,
11192,
1623,
297,
263,
18350,
12917,
289,
5086,
270,
728,
29889,
20279,
798,
1351,
29892,
10664,
29892,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29946,
304,
29871,
29953,
6233,
29892,
470,
2745,
925,
22707,
29889,
15154,
515,
278,
20710,
798,
1351,
29889,
853,
11911,
278,
270,
728,
16112,
304,
4772,
21837,
12138,
29879,
29889,
1019,
3947,
408,
10624,
29889,
13,
13,
2277,
10917,
496,
1869,
15713,
13,
13,
4013,
9045,
631,
1873,
310,
263,
22037,
270,
728,
1045,
19416,
2211,
17690,
310,
923,
968,
363,
263,
1869,
15713,
411,
1602,
328,
296,
21054,
272,
541,
3109,
20892,
1974,
322,
269,
1337,
630,
9950,
29889,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
697,
29871,
29946,
13105,
29871,
29941,
30226,
29899,
22466,
8424,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
282,
618,
270,
1255,
3353,
29899,
3874,
262,
1869,
15713,
694,
397,
793,
13,
13,
30515,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
286,
2112,
29920,
598,
13520,
923,
968,
322,
29871,
29896,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
286,
2112,
29920,
598,
13520,
923,
968,
29892,
13931,
671,
13,
13,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
322,
29871,
30515,
18002,
2298,
29871,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
29892,
13931,
671,
13,
13,
29941,
2723,
567,
3060,
2986,
10917,
496,
13,
13,
29906,
2723,
567,
9950,
29899,
9021,
9597,
13536,
923,
968,
13,
13,
29946,
2723,
567,
805,
21705,
9890,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
29871,
29896,
29941,
13105,
29871,
29929,
13105,
29871,
29906,
29899,
22466,
289,
5086,
270,
728,
411,
7984,
292,
805,
764,
29889,
13,
13,
29925,
3445,
598,
278,
694,
397,
793,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
29889,
360,
6038,
1532,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
29871,
30515,
18002,
286,
2112,
29920,
598,
13520,
322,
29871,
29906,
6131,
1129,
787,
1459,
4467,
273,
29889,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
23546,
4208,
278,
10917,
496,
29892,
9597,
13536,
923,
968,
29892,
322,
278,
9886,
29871,
29896,
18002,
286,
2112,
29920,
598,
13520,
322,
29871,
30515,
18002,
2298,
29871,
29906,
6131,
1129,
787,
1459,
4467,
273,
29889,
13,
13,
5592,
949,
29871,
29896,
18002,
310,
278,
805,
21705,
9890,
12507,
346,
297,
263,
16835,
7546,
297,
278,
289,
5086,
270,
728,
29889,
826,
3881,
1048,
697,
29899,
22585,
310,
278,
694,
397,
793,
297,
263,
2323,
7546,
373,
278,
12507,
346,
29889,
1706,
949,
4203,
278,
9597,
13536,
923,
968,
29544,
975,
278,
694,
397,
793,
29889,
830,
11666,
278,
15359,
29889,
7488,
278,
1473,
7546,
310,
9597,
13536,
923,
968,
411,
29871,
29896,
18002,
12507,
346,
29892,
9677,
292,
372,
964,
263,
16835,
7546,
29889,
826,
3881,
278,
9886,
694,
397,
793,
373,
2246,
29889,
1706,
949,
278,
9886,
12507,
346,
975,
278,
694,
397,
793,
29889,
14314,
682,
280,
411,
278,
286,
2112,
29920,
598,
13520,
29544,
29889,
350,
1296,
363,
29871,
29941,
29900,
304,
29871,
29946,
29900,
6233,
29889,
15154,
515,
278,
288,
854,
29889,
2803,
2317,
363,
29871,
29896,
29900,
304,
29871,
29896,
29945,
6233,
1434,
269,
506,
292,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29941,
29946,
29945,
13,
13,
7827,
9950,
29871,
29945,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
29945,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29941,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29945,
29906,
330,
13,
13,
7241,
495,
29871,
29947,
330,
13,
13,
29879,
688,
1503,
29871,
29929,
330,
13,
13,
14676,
262,
29871,
29906,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29941,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29906,
20793,
27654,
13,
13,
2277,
304,
21154,
411,
24841,
322,
696,
12846,
653,
14751,
911,
13,
13,
29911,
574,
29891,
322,
14225,
29892,
1438,
24841,
29899,
29887,
21051,
287,
304,
21154,
269,
29399,
526,
263,
2107,
23764,
363,
9427,
470,
521,
21475,
746,
366,
29915,
276,
304,
3262,
263,
4497,
328,
470,
3907,
263,
11982,
16416,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29906,
269,
29399,
639,
16330,
13,
13,
29941,
29906,
29871,
1309,
778,
3578,
9226,
304,
21154,
29892,
7482,
1312,
29892,
282,
19667,
15589,
29892,
322,
5700,
964,
29871,
29947,
269,
29399,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
6131,
1129,
787,
867,
630,
24841,
503,
342,
13,
13,
30226,
18002,
10849,
24841,
3623,
625,
13,
13,
29906,
6131,
1129,
787,
24841,
1766,
5156,
1943,
313,
25253,
29897,
13,
13,
29906,
6131,
1129,
787,
577,
29891,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29906,
6131,
1129,
787,
8656,
19408,
13848,
387,
279,
13,
13,
29906,
6131,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
29906,
734,
294,
1129,
787,
1436,
873,
1375,
1133,
10849,
696,
12846,
653,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
313,
29888,
3781,
368,
5962,
16389,
511,
470,
304,
21779,
13,
13,
22908,
278,
304,
21154,
373,
263,
28967,
7613,
301,
1312,
411,
3023,
15359,
310,
5650,
304,
29893,
1379,
29889,
26428,
372,
411,
3023,
15359,
310,
5650,
304,
29893,
1379,
29889,
15484,
263,
2919,
29892,
9416,
289,
5086,
270,
728,
373,
2246,
29889,
2803,
2317,
363,
29871,
29941,
29900,
6233,
577,
278,
304,
21154,
27474,
967,
19163,
2730,
391,
545,
29892,
15270,
278,
5650,
304,
29893,
1379,
565,
5181,
29889,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
29871,
29896,
29941,
13105,
29871,
29929,
13105,
29871,
29906,
29899,
22466,
289,
5086,
270,
728,
411,
7984,
292,
805,
764,
29889,
13,
13,
797,
278,
289,
5086,
270,
728,
29892,
377,
3873,
4208,
278,
9886,
2348,
1127,
10070,
29889,
3462,
278,
304,
21154,
29892,
14712,
304,
24296,
29889,
826,
3881,
278,
269,
29399,
297,
1023,
4206,
29892,
975,
433,
3262,
278,
269,
29399,
565,
5181,
29889,
350,
1296,
363,
29871,
29946,
29945,
6233,
304,
29871,
29896,
7234,
29892,
470,
2745,
22843,
17354,
29892,
21156,
292,
23025,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29906,
29900,
29955,
13,
13,
7827,
9950,
29871,
29896,
29896,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29945,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29955,
29941,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29947,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
29900,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29941,
20793,
27654,
13,
13,
2277,
907,
1772,
19710,
24389,
13,
13,
2525,
4561,
967,
315,
1175,
348,
22618,
29892,
6760,
1772,
2723,
275,
457,
338,
21054,
272,
1319,
541,
451,
805,
4245,
29889,
2266,
29892,
19710,
24389,
338,
7546,
287,
411,
6454,
1219,
12507,
346,
29892,
769,
7743,
411,
263,
2181,
3322,
29891,
304,
3262,
29889,
13,
13,
6304,
29963,
2890,
29871,
29896,
29900,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29906,
6131,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
30515,
18002,
269,
506,
287,
2826,
286,
1878,
18901,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
373,
291,
13,
13,
29906,
6131,
1129,
787,
3060,
2986,
7933,
22623,
1236,
2496,
13,
13,
29906,
2723,
567,
508,
9571,
694,
29899,
29879,
1997,
29899,
23959,
1886,
8734,
6454,
20452,
470,
3060,
2986,
6454,
20452,
29892,
7482,
1312,
13,
13,
15666,
2496,
304,
21779,
313,
29888,
3781,
368,
5962,
16389,
29897,
13,
13,
29896,
18350,
19710,
24389,
29892,
269,
506,
287,
470,
13630,
287,
13,
13,
19159,
292,
805,
764,
13,
13,
30226,
18002,
8656,
15589,
18423,
2181,
3774,
29879,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
29896,
6131,
1129,
265,
3578,
23131,
15276,
279,
457,
13,
13,
797,
263,
18350,
2071,
7324,
29892,
12871,
278,
17182,
975,
4482,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
286,
1878,
18901,
29892,
373,
291,
29892,
322,
22623,
1236,
2496,
363,
29871,
29945,
6233,
29892,
470,
2745,
278,
286,
1878,
18901,
322,
373,
291,
526,
4964,
322,
278,
22623,
1236,
2496,
338,
22707,
29892,
23546,
5393,
23025,
29889,
624,
381,
297,
278,
6454,
20452,
322,
1236,
2496,
29889,
3439,
1050,
363,
29871,
29941,
29900,
6233,
29892,
23546,
5393,
23025,
29889,
13,
13,
22908,
278,
19710,
24389,
297,
263,
2919,
12507,
346,
8357,
322,
5445,
411,
3307,
4094,
304,
4612,
29889,
1771,
292,
304,
263,
1045,
309,
975,
18350,
29899,
9812,
12871,
29889,
1952,
309,
363,
29871,
29896,
29900,
6233,
29889,
360,
6038,
1532,
297,
263,
784,
3825,
29889,
3789,
17786,
29889,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
12790,
368,
805,
764,
385,
29871,
29896,
29896,
13105,
29871,
29955,
13105,
29871,
29906,
29899,
22466,
289,
5086,
270,
728,
411,
7984,
292,
805,
764,
29889,
13,
13,
22908,
4203,
278,
19710,
24389,
297,
278,
270,
728,
29889,
24674,
265,
4203,
278,
12507,
346,
975,
278,
19710,
24389,
29889,
830,
11666,
278,
15359,
29889,
14314,
682,
280,
411,
278,
18423,
2181,
3774,
29879,
29889,
360,
327,
411,
278,
15276,
279,
457,
29889,
350,
1296,
363,
29871,
29941,
29900,
6233,
29892,
470,
2745,
289,
431,
21435,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29955,
29929,
13,
13,
7827,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29945,
29953,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29896,
29900,
330,
13,
13,
7241,
495,
29871,
29941,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29906,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29896,
18655,
519,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
960,
366,
5821,
29892,
23764,
29871,
29896,
30226,
2919,
13328,
11801,
10674,
1161,
363,
278,
19710,
24389,
29889,
13,
13,
2277,
923,
267,
29891,
413,
744,
521,
4512,
13,
13,
1123,
496,
363,
263,
16330,
310,
1438,
2181,
11936,
521,
4512,
408,
263,
2625,
304,
263,
11982,
16416,
470,
491,
6053,
408,
263,
9045,
29891,
5807,
547,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29949,
9258,
17182,
7984,
292,
805,
764,
13,
13,
29896,
14928,
413,
744,
313,
12717,
29871,
29946,
29871,
1309,
778,
511,
18130,
29879,
2313,
25600,
322,
11308,
10146,
470,
5700,
964,
29871,
29906,
29899,
22466,
12785,
13,
13,
29896,
6131,
1129,
265,
3999,
420,
409,
5779,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
1375,
1133,
7171,
506,
470,
7171,
506,
4764,
672,
13,
13,
29896,
734,
294,
1129,
265,
270,
1255,
1375,
1133,
373,
291,
470,
373,
291,
4764,
672,
13,
13,
30226,
734,
294,
1129,
265,
1560,
12504,
3500,
374,
1335,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29955,
29945,
30073,
29943,
29889,
12065,
263,
8014,
27716,
1153,
384,
373,
263,
12726,
2168,
289,
5086,
9869,
29889,
12790,
368,
805,
764,
278,
1153,
384,
411,
7984,
292,
805,
764,
29889,
13,
13,
1433,
3881,
278,
413,
744,
297,
263,
2323,
7546,
373,
278,
1153,
384,
29889,
12790,
368,
805,
764,
278,
413,
744,
411,
7984,
292,
805,
764,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
9886,
2348,
1127,
10070,
5174,
278,
1459,
4467,
273,
29889,
14314,
682,
280,
975,
278,
413,
744,
29889,
350,
1296,
363,
29871,
29906,
29947,
304,
29871,
29941,
29900,
6233,
29892,
470,
2745,
278,
413,
744,
338,
2181,
11936,
322,
278,
12770,
526,
3347,
9571,
29889,
14314,
682,
280,
411,
278,
1459,
4467,
273,
29889,
350,
1296,
363,
29871,
29896,
11015,
29892,
470,
2745,
278,
1459,
4467,
273,
756,
286,
2152,
287,
29889,
13,
13,
15941,
278,
289,
5086,
9869,
515,
278,
288,
854,
29889,
2803,
2317,
363,
29871,
29945,
6233,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29946,
29945,
13,
13,
7827,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29906,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29946,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29900,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
18655,
519,
29892,
29871,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
4525,
521,
4512,
508,
367,
6087,
297,
385,
263,
2728,
523,
5639,
363,
701,
304,
5320,
3841,
29889,
13,
13,
5688,
29968,
4214,
350,
1164,
3308,
29901,
960,
366,
13389,
413,
744,
521,
4512,
29892,
1018,
3907,
521,
4512,
714,
310,
1506,
1558,
1379,
7689,
17718,
29889,
922,
862,
403,
10849,
1506,
1558,
1379,
7689,
17718,
964,
11308,
322,
1925,
373,
263,
289,
5086,
9869,
297,
263,
2323,
7546,
29889,
12790,
368,
805,
764,
411,
7984,
292,
805,
764,
470,
28189,
411,
263,
2319,
5253,
310,
288,
9258,
17182,
29889,
350,
1296,
472,
29871,
29941,
29945,
29900,
30073,
29943,
363,
29871,
29955,
304,
29871,
29896,
29900,
6233,
29892,
470,
2745,
2181,
11936,
29889,
13,
13,
2277,
14225,
3104,
1219,
285,
2722,
411,
3151,
719,
652,
3262,
12507,
346,
13,
13,
1349,
968,
526,
4129,
285,
2722,
881,
367,
30003,
29883,
3780,
29886,
373,
278,
5377,
322,
22707,
373,
278,
2768,
29889,
2688,
29915,
276,
3300,
2859,
411,
263,
3578,
368,
7901,
6302,
287,
29892,
907,
25934,
3151,
719,
12507,
346,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
285,
2722,
322,
29871,
29906,
6131,
1129,
787,
12507,
346,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29906,
2319,
14225,
3104,
20452,
313,
12717,
29871,
29896,
282,
618,
3001,
511,
1236,
29872,
839,
322,
5700,
964,
29871,
29946,
13105,
29871,
30515,
13105,
29871,
30515,
29899,
22466,
10076,
567,
13,
13,
29896,
734,
294,
1129,
265,
7171,
506,
4764,
672,
13,
13,
29896,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
30515,
734,
294,
1129,
265,
1236,
2496,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
8132,
29965,
4741,
13,
13,
30226,
18002,
9950,
29899,
9021,
8656,
343,
468,
4227,
13,
13,
29906,
734,
294,
1129,
787,
3578,
17354,
26438,
13,
13,
30226,
734,
294,
1129,
265,
3151,
719,
4764,
672,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29946,
29900,
29900,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
289,
5086,
9869,
411,
7984,
292,
805,
764,
29889,
13,
13,
22908,
278,
14225,
3104,
20452,
373,
278,
289,
5086,
9869,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
7171,
506,
4764,
672,
29892,
274,
9735,
29892,
1236,
2496,
29892,
322,
15795,
29889,
14314,
682,
280,
975,
278,
14225,
3104,
20452,
29892,
23546,
5393,
304,
24296,
29889,
826,
3881,
297,
263,
2323,
7546,
373,
278,
289,
5086,
9869,
29889,
12790,
368,
805,
764,
278,
285,
2722,
411,
7984,
292,
805,
764,
29889,
13,
13,
29934,
6085,
346,
278,
288,
854,
10430,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
350,
1296,
278,
285,
2722,
363,
29871,
29946,
29900,
304,
29871,
29946,
29945,
6233,
29892,
470,
2745,
22843,
17354,
373,
278,
5377,
322,
22707,
373,
278,
2768,
29892,
14712,
2748,
4203,
1582,
1549,
29889,
13,
13,
6816,
273,
8000,
29892,
297,
263,
2319,
12580,
29880,
29892,
377,
3873,
4208,
278,
12507,
346,
2348,
1127,
10070,
29889,
1816,
345,
411,
278,
285,
2722,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29906,
29929,
13,
13,
7827,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29896,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29953,
29896,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29947,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29929,
330,
13,
13,
14676,
262,
29871,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
13,
13,
5688,
29968,
4214,
350,
1164,
3308,
29901,
28272,
18655,
1849,
29892,
3704,
14225,
3104,
20452,
29892,
508,
884,
367,
289,
12535,
964,
2181,
11936,
521,
4512,
29889,
498,
262,
368,
22780,
738,
10296,
310,
3876,
18655,
1849,
1316,
408,
367,
1691,
29892,
1559,
307,
1372,
29892,
610,
29879,
1240,
567,
29892,
14225,
3104,
20452,
29892,
432,
29983,
29883,
3304,
29892,
2971,
17006,
29892,
470,
1146,
10344,
2971,
17006,
29889,
826,
3881,
297,
263,
2323,
7546,
373,
263,
289,
5086,
9869,
29889,
12790,
368,
805,
764,
411,
7984,
292,
805,
764,
470,
1506,
1878,
411,
263,
2319,
5253,
310,
288,
9258,
17182,
29889,
350,
1296,
472,
29871,
29941,
29945,
29900,
30073,
29943,
363,
29871,
29896,
29906,
304,
29871,
29896,
29945,
6233,
29892,
470,
2745,
2181,
11936,
29889,
13,
13,
562,
1398,
10674,
1161,
6433,
287,
411,
274,
661,
16344,
29899,
18082,
7176,
439,
1789,
29874,
13,
13,
2277,
1274,
1398,
10674,
1161,
6433,
287,
411,
274,
661,
16344,
29899,
18082,
7176,
439,
1789,
29874,
13,
13,
3492,
29915,
645,
2289,
6416,
363,
445,
1120,
1227,
284,
270,
728,
29892,
607,
338,
289,
12535,
297,
22950,
577,
393,
599,
278,
2348,
1127,
10070,
7984,
304,
639,
20309,
29889,
313,
13393,
15373,
1846,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
29896,
6433,
287,
10674,
1161,
12616,
639,
16330,
13,
13,
29896,
2319,
1274,
1398,
10674,
1161,
313,
12717,
29871,
29896,
282,
618,
511,
12616,
287,
29892,
409,
5779,
322,
6031,
2313,
25600,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
18350,
373,
291,
29892,
1302,
1503,
873,
3060,
2986,
13,
13,
29906,
734,
294,
1129,
787,
508,
2963,
470,
26343,
17182,
13,
13,
29896,
29871,
21543,
3060,
2986,
13209,
550,
13,
13,
30515,
18002,
443,
1111,
12504,
439,
1789,
29874,
29892,
364,
1144,
287,
322,
7482,
1312,
13,
13,
30515,
18002,
7901,
6302,
287,
270,
1255,
274,
661,
495,
2722,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
5962,
274,
9735,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
15795,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29955,
29945,
30073,
29943,
29889,
13,
13,
3542,
263,
289,
5086,
9869,
411,
394,
9735,
398,
1701,
309,
29889,
12065,
278,
10674,
1161,
439,
13868,
411,
278,
5700,
11192,
701,
373,
278,
289,
5086,
9869,
29889,
12790,
368,
805,
764,
278,
10674,
1161,
411,
7984,
292,
805,
764,
29889,
350,
1296,
363,
29871,
29896,
29945,
6233,
29889,
15154,
515,
278,
288,
854,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
23546,
4208,
278,
373,
291,
322,
17182,
29889,
826,
3881,
278,
373,
291,
2820,
278,
10674,
1161,
29889,
350,
1296,
363,
29871,
29906,
29900,
6233,
29889,
14314,
682,
280,
278,
13209,
550,
975,
278,
373,
291,
29889,
350,
1296,
363,
29871,
29945,
6233,
29892,
470,
2745,
278,
13209,
550,
526,
3347,
9571,
313,
12344,
16112,
577,
896,
1016,
29915,
29873,
12138,
467,
13,
13,
6816,
273,
8000,
29892,
19012,
278,
439,
1789,
29874,
773,
278,
3577,
18112,
29892,
2703,
5367,
278,
15795,
29889,
2379,
3096,
411,
263,
27350,
29889,
13,
13,
4300,
571,
278,
10674,
1161,
304,
715,
1078,
29889,
624,
381,
278,
373,
291,
29544,
964,
278,
439,
1789,
29874,
29889,
624,
381,
297,
278,
9886,
2348,
1127,
10070,
29889,
24674,
265,
964,
278,
10674,
1161,
18346,
1907,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29929,
13,
13,
7827,
9950,
29871,
29947,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29946,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29955,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29953,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29900,
330,
13,
13,
14676,
262,
29871,
29941,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29896,
380,
1279,
29892,
29871,
30226,
15774,
29892,
29871,
29896,
18655,
519,
29892,
29871,
29896,
30226,
9950,
13,
13,
3217,
8949,
29915,
29903,
323,
5690,
29901,
1152,
6775,
12616,
292,
29892,
671,
263,
27350,
304,
9307,
346,
278,
3353,
10674,
1161,
297,
3196,
7600,
29892,
769,
20710,
798,
1351,
372,
373,
29871,
29896,
29900,
29900,
10151,
3081,
313,
9812,
29897,
363,
29871,
29906,
6233,
29889,
450,
12871,
674,
639,
1004,
403,
278,
10674,
1161,
322,
4964,
264,
372,
263,
2586,
29889,
10057,
3730,
6782,
372,
304,
263,
28967,
7613,
29889,
2803,
372,
12528,
363,
1048,
29871,
29941,
6233,
29892,
470,
2745,
372,
29915,
29879,
4780,
304,
4386,
29889,
13,
13,
2277,
521,
287,
16702,
923,
968,
2529,
18423,
13,
13,
29943,
280,
384,
287,
411,
678,
287,
16702,
923,
968,
322,
12059,
368,
21054,
4395,
411,
1818,
538,
29892,
269,
29399,
310,
445,
5192,
29891,
658,
2142,
526,
278,
4922,
18096,
363,
263,
12580,
29880,
310,
1886,
11500,
22300,
29889,
3967,
263,
22780,
411,
315,
1633,
29891,
4335,
1219,
29899,
9496,
309,
317,
1132,
29889,
13,
13,
6304,
29963,
2890,
29871,
29947,
891,
29871,
29896,
22780,
639,
16330,
13,
13,
31690,
18002,
269,
506,
287,
7933,
373,
1080,
13,
13,
30515,
18002,
4094,
13,
13,
29906,
18350,
7171,
506,
17184,
1960,
29892,
1375,
1133,
13,
13,
30515,
18002,
9950,
29899,
9021,
27274,
13,
13,
29896,
734,
294,
1129,
265,
26438,
13,
13,
30515,
734,
294,
1129,
265,
15795,
13,
13,
30226,
18002,
599,
29899,
15503,
4220,
1652,
473,
29892,
29871,
29906,
2723,
567,
599,
29899,
15503,
4220,
1652,
473,
29892,
322,
29871,
29906,
304,
29871,
29941,
6131,
1129,
787,
599,
29899,
15503,
4220,
1652,
473,
29892,
13931,
671,
13,
13,
29896,
29871,
30515,
29899,
21543,
3577,
6136,
15589,
8007,
579,
13,
13,
29896,
734,
294,
1129,
265,
15589,
1818,
538,
13,
13,
29896,
2919,
19710,
13,
13,
31690,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
15301,
678,
287,
16702,
923,
968,
13,
13,
19159,
292,
805,
764,
13,
13,
797,
263,
2319,
12507,
346,
8357,
29892,
23546,
4208,
278,
7933,
373,
1080,
29892,
4094,
29892,
322,
7171,
506,
29889,
1771,
292,
304,
263,
1045,
309,
975,
18350,
29899,
9812,
12871,
29889,
4367,
24551,
278,
12871,
322,
1027,
1050,
29892,
10664,
29892,
363,
29871,
29945,
6233,
29889,
624,
381,
297,
278,
27274,
29892,
26438,
29892,
322,
15795,
29889,
940,
271,
470,
12528,
278,
29544,
304,
29871,
29896,
29906,
29900,
30073,
29943,
304,
29871,
29896,
29941,
29900,
30073,
29943,
313,
1509,
385,
14426,
29899,
949,
14563,
8328,
304,
1423,
467,
13,
13,
797,
263,
18350,
24907,
12580,
29880,
29892,
14405,
29871,
30226,
18002,
1652,
473,
29892,
278,
8007,
579,
29892,
322,
1818,
538,
29889,
3462,
278,
7933,
373,
291,
29544,
322,
19710,
29889,
18573,
411,
385,
12646,
6837,
261,
373,
4482,
304,
18350,
6210,
363,
29871,
29941,
29900,
6923,
29892,
885,
2390,
292,
278,
2625,
310,
278,
12580,
29880,
29889,
18573,
373,
1880,
6210,
363,
29871,
29941,
6233,
29889,
5293,
263,
805,
6150,
29892,
23546,
297,
278,
678,
287,
16702,
322,
408,
1568,
310,
278,
29871,
29906,
2723,
567,
1652,
473,
408,
1950,
29889,
13,
13,
15156,
278,
9886,
29871,
29906,
304,
29871,
29941,
6131,
1129,
787,
1652,
473,
29892,
3578,
368,
1652,
473,
263,
12151,
7101,
29889,
476,
484,
328,
278,
270,
820,
363,
29871,
29953,
304,
29871,
29947,
6233,
29892,
4417,
3307,
310,
278,
9886,
1652,
473,
304,
1207,
263,
17768,
2486,
380,
2593,
270,
820,
393,
29915,
29879,
10597,
322,
560,
6288,
29889,
1383,
4085,
964,
263,
8287,
29889,
5293,
7984,
292,
805,
764,
29892,
3578,
368,
805,
764,
263,
2919,
12580,
29880,
322,
263,
8424,
310,
715,
6288,
12244,
2919,
3307,
304,
4612,
278,
2246,
310,
278,
12580,
29880,
29889,
17934,
278,
270,
820,
304,
278,
12580,
29880,
29892,
14712,
2748,
304,
24296,
599,
11192,
411,
278,
7984,
292,
805,
764,
29889,
26428,
278,
12580,
29880,
411,
278,
715,
6288,
12244,
411,
278,
805,
25724,
2625,
1623,
29889,
2803,
278,
270,
820,
14451,
297,
263,
14294,
29892,
18195,
29899,
9021,
2058,
313,
12717,
29871,
29947,
29945,
30073,
29943,
29897,
2745,
3765,
29881,
297,
21610,
313,
12717,
29871,
29896,
30226,
6199,
467,
13,
13,
29925,
3322,
1623,
278,
270,
820,
29889,
9603,
278,
270,
820,
714,
11480,
263,
3578,
368,
1652,
14076,
7101,
29889,
4910,
680,
278,
270,
820,
964,
29871,
29896,
29953,
5186,
12785,
29889,
21809,
1269,
8424,
964,
263,
8287,
29889,
13,
13,
5592,
764,
385,
29871,
29947,
13105,
29871,
29946,
13105,
29871,
29906,
29899,
22466,
658,
2142,
7243,
411,
7984,
292,
805,
764,
29889,
826,
3881,
278,
270,
820,
26563,
297,
278,
7243,
29889,
26428,
411,
263,
5941,
270,
728,
304,
20466,
29889,
2803,
14451,
297,
263,
14294,
29892,
18195,
29899,
9021,
2058,
313,
12717,
29871,
29947,
29945,
30073,
29943,
29897,
2745,
8886,
3765,
29881,
297,
21610,
313,
12717,
29871,
29946,
29945,
6233,
467,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29955,
29945,
30073,
29943,
29889,
853,
11911,
278,
18423,
29889,
350,
1296,
363,
29871,
29941,
29945,
304,
29871,
29946,
29900,
6233,
29892,
470,
2745,
278,
18423,
338,
17354,
322,
10083,
298,
2952,
746,
260,
17280,
373,
278,
5970,
313,
5992,
372,
515,
278,
7243,
304,
1243,
445,
467,
13,
13,
4300,
571,
278,
18423,
304,
263,
12528,
292,
1153,
384,
29889,
2803,
12528,
1434,
269,
506,
292,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29906,
13,
13,
7827,
9950,
29871,
29896,
29889,
29945,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29906,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29896,
29896,
29947,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29941,
29906,
330,
13,
13,
7241,
495,
29871,
29906,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
330,
13,
13,
14676,
262,
29871,
29955,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
380,
1279,
13,
13,
2277,
2211,
29899,
1173,
968,
439,
436,
267,
13,
13,
1349,
968,
12461,
12053,
29899,
18082,
7176,
2181,
504,
2222,
439,
436,
267,
526,
2428,
2560,
304,
1207,
29889,
13,
13,
6304,
29963,
2890,
29871,
29953,
891,
29871,
29896,
439,
4070,
639,
16330,
13,
13,
19159,
292,
805,
764,
13,
13,
29896,
734,
294,
1129,
265,
288,
9258,
17182,
13,
13,
29896,
18002,
3060,
2986,
2545,
617,
5079,
23729,
1691,
13,
13,
30226,
18002,
528,
1127,
7176,
1559,
5450,
13,
13,
30226,
18002,
528,
1127,
7176,
503,
1682,
305,
2172,
13,
13,
29906,
18350,
7933,
373,
1080,
29892,
16835,
368,
269,
506,
287,
13,
13,
29896,
30226,
2723,
567,
19710,
23764,
13,
13,
30226,
18002,
9950,
29899,
9021,
4203,
29899,
392,
29899,
24498,
13,
13,
30515,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
286,
2112,
29920,
598,
13520,
923,
968,
13,
13,
30515,
18002,
528,
1127,
7176,
4482,
29899,
29888,
271,
678,
287,
16702,
923,
968,
13,
13,
29906,
6131,
1129,
787,
528,
1127,
7176,
470,
867,
630,
1459,
4467,
273,
923,
968,
13,
13,
30226,
734,
294,
1129,
265,
270,
1255,
470,
387,
1562,
29892,
2181,
25443,
13,
13,
229,
136,
158,
734,
294,
1129,
265,
1236,
2496,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29945,
29900,
30073,
29943,
29889,
12790,
368,
805,
764,
263,
29871,
29953,
29899,
5231,
286,
3096,
262,
7243,
411,
7984,
292,
805,
764,
470,
671,
29871,
29953,
2723,
567,
310,
263,
3918,
29871,
29896,
29906,
29899,
5231,
286,
3096,
262,
7243,
29889,
383,
453,
278,
4069,
2723,
567,
411,
4094,
29889,
13,
13,
797,
263,
18350,
2071,
7324,
29892,
12871,
278,
17182,
975,
18350,
12871,
29892,
2381,
381,
1847,
304,
24296,
278,
5970,
29889,
17278,
278,
2545,
617,
5079,
29892,
1559,
5450,
29892,
503,
1682,
305,
2172,
29892,
322,
7933,
373,
1080,
363,
29871,
29906,
304,
29871,
29941,
6233,
29889,
24674,
265,
964,
278,
286,
3096,
262,
2723,
567,
29889,
13,
13,
797,
263,
18350,
12580,
29880,
29892,
377,
3873,
4208,
278,
9886,
2348,
1127,
10070,
29889,
19955,
280,
278,
19710,
23764,
29544,
964,
278,
286,
3096,
262,
2723,
567,
29889,
13,
13,
29933,
1296,
363,
29871,
29906,
29945,
304,
29871,
29906,
29947,
6233,
29892,
470,
2745,
263,
27278,
304,
720,
23945,
15478,
297,
278,
4818,
310,
263,
439,
4070,
5304,
714,
5941,
29889,
17934,
278,
7243,
304,
263,
12528,
292,
1153,
384,
29889,
2803,
2317,
363,
29871,
29896,
29900,
6233,
29889,
5293,
263,
16835,
805,
271,
2497,
470,
12151,
889,
1607,
29892,
658,
7749,
278,
11192,
310,
278,
439,
436,
267,
29889,
1816,
345,
14294,
29889,
830,
1341,
4087,
403,
454,
29888,
517,
874,
297,
385,
263,
2728,
523,
5639,
363,
701,
304,
5320,
3841,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29947,
29929,
13,
13,
7827,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29896,
29889,
29900,
330,
13,
13,
305,
324,
4156,
324,
29871,
29946,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29906,
29946,
29929,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29955,
330,
13,
13,
7241,
495,
29871,
29896,
330,
13,
13,
29879,
688,
1503,
29871,
29946,
330,
13,
13,
14676,
262,
29871,
29896,
29896,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
30226,
380,
1279,
29892,
29871,
29896,
30226,
20793,
27654,
13,
13,
2277,
4780,
1236,
496,
2181,
11936,
13,
13,
4013,
6808,
814,
8496,
29915,
29873,
367,
6775,
304,
19012,
29892,
322,
278,
2582,
526,
316,
781,
519,
29889,
4803,
10849,
1236,
14520,
746,
896,
29915,
276,
297,
4259,
29892,
541,
3013,
777,
14671,
2256,
6743,
373,
1361,
363,
746,
896,
29915,
276,
451,
29889,
910,
338,
263,
6808,
814,
366,
29915,
645,
864,
304,
1207,
1449,
322,
1449,
29889,
13,
13,
6304,
29963,
2890,
29871,
29946,
891,
29871,
30226,
18002,
639,
16330,
13,
13,
29946,
18350,
1236,
14520,
29892,
1236,
29872,
839,
322,
269,
506,
287,
29892,
470,
29871,
29906,
2723,
567,
14671,
2256,
9644,
705,
6302,
287,
1236,
496,
269,
29399,
29892,
266,
1450,
287,
13,
13,
30226,
734,
294,
1129,
265,
5962,
274,
2559,
314,
265,
322,
29871,
30226,
734,
294,
1129,
265,
5962,
274,
2559,
314,
265,
29892,
13931,
671,
13,
13,
30226,
734,
294,
1129,
265,
26343,
303,
1279,
13,
13,
30226,
18002,
443,
1111,
12504,
288,
271,
1004,
284,
13,
13,
29941,
6131,
1129,
787,
3060,
2986,
13209,
550,
13,
13,
29906,
6131,
1129,
787,
3578,
23131,
15276,
279,
457,
13,
13,
29896,
6131,
1129,
265,
3578,
17354,
26438,
13,
13,
30226,
734,
294,
1129,
265,
5962,
18254,
29885,
387,
13,
13,
30515,
734,
294,
1129,
265,
5962,
330,
5621,
13,
13,
6572,
354,
271,
278,
288,
854,
304,
29871,
29941,
29955,
29945,
30073,
29943,
29889,
13,
13,
22908,
278,
1236,
14520,
297,
263,
1661,
303,
860,
29871,
29947,
29899,
470,
29871,
29929,
29899,
22466,
6862,
289,
5086,
7243,
29889,
624,
381,
297,
29871,
30226,
734,
294,
1129,
265,
274,
2559,
314,
265,
322,
278,
26343,
303,
1279,
29889,
13,
13,
797,
263,
2319,
12580,
29880,
29892,
773,
263,
27350,
29892,
23546,
4208,
278,
9886,
2348,
1127,
10070,
29892,
3704,
278,
9886,
29871,
30226,
734,
294,
1129,
265,
274,
2559,
314,
265,
29889,
14314,
682,
280,
975,
278,
1236,
14520,
29889,
13,
13,
29933,
1296,
363,
29871,
29941,
29900,
304,
29871,
29946,
29900,
6233,
29892,
470,
2745,
278,
304,
3262,
338,
22843,
17354,
322,
278,
1236,
14520,
526,
540,
630,
1549,
29889,
1816,
345,
7389,
29889,
13,
13,
546,
16330,
13,
13,
1052,
3842,
29871,
29896,
29955,
29896,
13,
13,
7827,
9950,
29871,
29955,
29889,
29900,
330,
13,
13,
29879,
1337,
630,
9950,
29871,
29900,
29889,
29945,
330,
13,
13,
3286,
9950,
29871,
29900,
29889,
29900,
330,
13,
13,
22678,
6948,
1337,
630,
9950,
29871,
29906,
29889,
29900,
330,
13,
13,
3712,
1309,
29879,
1337,
630,
9950,
29871,
29941,
29889,
29945,
330,
13,
13,
305,
324,
4156,
324,
29871,
29900,
286,
29887,
13,
13,
29879,
397,
1974,
29871,
29946,
29955,
286,
29887,
13,
13,
4287,
833,
29882,
2941,
29878,
1078,
29871,
29906,
29953,
330,
13,
13,
7241,
495,
29871,
29946,
330,
13,
13,
29879,
688,
1503,
29871,
29896,
29953,
330,
13,
13,
14676,
262,
29871,
29946,
330,
13,
13,
29881,
2035,
653,
429,
25990,
29901,
29871,
29906,
916,
1559,
833,
29882,
2941,
10492,
29892,
29871,
29896,
30226,
9950,
13,
13,
29937,
263,
5192,
29899,
354,
4298,
29891,
282,
15328,
13,
13,
9598,
26819,
9045,
29891,
380,
481,
793,
373,
1361,
3732,
7984,
292,
9045,
29891,
592,
1338,
472,
3271,
6775,
322,
901,
19192,
29889,
3872,
29915,
29873,
1235,
278,
1472,
1051,
2313,
283,
6617,
366,
29936,
1556,
310,
1438,
4452,
9455,
29915,
29873,
639,
728,
519,
470,
505,
263,
12558,
1472,
528,
761,
2834,
577,
366,
508,
1274,
1548,
963,
975,
931,
304,
2048,
701,
596,
282,
15328,
29889,
960,
366,
3013,
777,
9045,
29891,
2362,
1199,
297,
1269,
7663,
29892,
366,
29915,
645,
505,
901,
3987,
363,
7984,
292,
18254,
768,
2738,
592,
1338,
472,
3271,
29889,
512,
2114,
29892,
366,
29915,
645,
367,
2221,
304,
19012,
1556,
310,
278,
9522,
5547,
297,
445,
3143,
411,
278,
2348,
1127,
10070,
10534,
297,
596,
1532,
29899,
17712,
287,
337,
1341,
4087,
1061,
29892,
3889,
3298,
29892,
322,
282,
15328,
29936,
363,
1784,
916,
270,
17006,
29892,
366,
29915,
645,
817,
871,
263,
2846,
5684,
4452,
515,
278,
3787,
29889,
13,
13,
29943,
1525,
7068,
13,
13,
30119,
7171,
506,
13,
13,
30119,
330,
5621,
4632,
13,
13,
30119,
9336,
787,
13,
13,
30119,
301,
1355,
13,
13,
30119,
373,
1080,
13,
13,
30119,
470,
6916,
13,
13,
30119,
4091,
1862,
13,
13,
30119,
5164,
521,
5475,
13,
13,
22051,
6093,
23788,
1367,
1692,
13,
13,
30119,
29808,
13,
13,
30119,
19710,
23764,
13,
13,
30119,
9950,
29899,
9021,
470,
4482,
29899,
29888,
271,
285,
1187,
923,
968,
13,
13,
30119,
9950,
29899,
9021,
4203,
29899,
392,
29899,
24498,
13,
13,
30119,
9950,
29899,
9021,
27274,
13,
13,
30119,
9950,
29899,
9021,
9597,
13536,
923,
968,
13,
13,
30119,
9950,
29899,
9021,
269,
473,
907,
314,
13,
13,
30119,
9950,
29899,
9021,
8656,
343,
468,
4227,
13,
13,
30119,
9950,
29899,
9021,
8656,
12311,
343,
468,
4227,
13,
13,
30119,
3578,
1122,
11586,
895,
13,
13,
30119,
3578,
23131,
15276,
279,
457,
13,
13,
30119,
4482,
29899,
29888,
271,
541,
8489,
309,
29895,
13,
13,
30119,
4482,
29899,
29888,
271,
678,
287,
16702,
923,
968,
13,
13,
30119,
4482,
29899,
29888,
271,
286,
2112,
29920,
598,
13520,
923,
968,
13,
13,
30119,
1459,
4467,
273,
923,
968,
29892,
528,
10511,
29892,
528,
1127,
7176,
29892,
470,
867,
630,
13,
13,
30119,
439,
20135,
29595,
1111,
470,
2215,
1050,
923,
968,
13,
13,
22051,
6093,
383,
21661,
29999,
1001,
13,
13,
30119,
1223,
18054,
285,
21211,
322,
7655,
2722,
13,
13,
30119,
1223,
18054,
18655,
1849,
1728,
2715,
12507,
778,
13,
13,
30119,
17354,
19408,
13,
13,
30119,
521,
21475,
2078,
19416,
13,
13,
30119,
4805,
29899,
14044,
5962,
367,
1389,
13,
13,
30119,
9427,
977,
10376,
13,
13,
30119,
5962,
19309,
2222,
521,
21475,
24207,
13,
13,
30119,
5962,
19309,
2222,
7013,
1989,
24207,
13,
13,
30119,
20793,
1886,
10327,
322,
521,
3554,
13,
13,
30119,
8416,
273,
13,
13,
30119,
577,
29891,
2181,
3774,
793,
13,
13,
30119,
304,
21154,
13,
13,
30119,
7013,
1989,
9922,
535,
13,
13,
22051,
6093,
349,
2190,
5659,
29979,
313,
29940,
1164,
13171,
3235,
29950,
6181,
29903,
29897,
13,
13,
29934,
1575,
313,
21803,
443,
25682,
287,
29897,
13,
13,
30119,
826,
4089,
601,
19408,
13,
13,
30119,
14426,
322,
29914,
272,
4943,
17354,
19408,
13,
13,
3629,
550,
322,
2814,
9351,
13,
13,
30119,
270,
1255,
367,
550,
29892,
1236,
294,
29892,
322,
301,
296,
2719,
13,
13,
30119,
694,
29899,
29879,
1997,
29899,
23959,
508,
9571,
4628,
367,
550,
13,
13,
30119,
694,
29899,
29879,
1997,
29899,
23959,
508,
9571,
508,
18437,
2172,
367,
550,
13,
13,
30119,
694,
29899,
29879,
1997,
29899,
23959,
508,
9571,
521,
860,
412,
294,
13,
13,
30119,
694,
29899,
29879,
1997,
29899,
23959,
508,
9571,
26397,
3801,
367,
550,
13,
13,
30119,
694,
29899,
29879,
1997,
29899,
23959,
508,
9571,
302,
5301,
367,
550,
13,
13,
7228,
1254,
3289,
5300,
402,
4717,
1177,
29903,
13,
13,
30119,
1223,
18054,
3353,
29899,
3874,
262,
322,
427,
4018,
287,
4940,
294,
29892,
3704,
1869,
15713,
694,
397,
793,
13,
13,
30119,
2594,
2330,
13,
13,
30119,
26343,
16263,
21338,
13,
13,
30119,
2215,
307,
13,
13,
30119,
14426,
29892,
470,
2691,
29899,
3874,
262,
29892,
8227,
29887,
332,
13,
13,
30119,
4996,
29899,
15108,
292,
288,
271,
1004,
284,
13,
13,
30119,
439,
1789,
29874,
13,
13,
30119,
3353,
29899,
29893,
354,
271,
274,
681,
29883,
681,
13,
13,
4986,
29924,
1299,
29949,
13756,
14849,
1783,
29903,
13,
13,
30119,
15589,
29899,
4058,
287,
6575,
29899,
29881,
1255,
6454,
20452,
13,
13,
30119,
694,
29899,
29879,
1997,
29899,
23959,
270,
7612,
29892,
1886,
8734,
29892,
2181,
15392,
29892,
322,
3353,
6454,
20452,
13,
13,
30119,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
11417,
13,
13,
30119,
694,
29899,
29879,
1997,
29899,
23959,
6454,
1219,
12507,
346,
13,
13,
30119,
805,
21705,
9890,
12507,
346,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
8353,
29979,
21947,
29949,
8452,
13,
13,
30119,
6136,
15589,
8007,
579,
13,
13,
30119,
289,
5086,
4764,
672,
13,
13,
30119,
289,
5086,
269,
8887,
13,
13,
30119,
26343,
1004,
284,
13,
13,
30119,
26343,
303,
1279,
13,
13,
30119,
1652,
473,
29901,
599,
29899,
15503,
4220,
29892,
3353,
29899,
29893,
354,
271,
29892,
4796,
3353,
29899,
29893,
354,
271,
29892,
322,
3353,
29899,
29893,
354,
271,
2331,
2202,
13,
13,
30119,
7933,
23429,
289,
810,
13,
13,
30119,
8656,
15589,
18423,
2181,
3774,
29879,
13,
13,
30119,
15795,
29899,
9021,
14426,
16380,
12794,
29901,
521,
21475,
322,
367,
1389,
13,
13,
30119,
26438,
29901,
3803,
7964,
29892,
3578,
17354,
29892,
6501,
17354,
29892,
322,
378,
20309,
414,
29915,
13,
13,
30119,
3353,
29899,
29893,
354,
271,
282,
804,
29877,
313,
29967,
21419,
968,
29899,
3293,
18423,
2181,
3774,
29879,
29897,
13,
13,
29907,
2190,
29940,
3352,
5300,
350,
2891,
29911,
20566,
13756,
14849,
1783,
29903,
13,
13,
30119,
29871,
29896,
29900,
29900,
29995,
15774,
3623,
1575,
13,
13,
30119,
10814,
6393,
29892,
19309,
2222,
4497,
3712,
508,
9571,
470,
297,
282,
3222,
267,
313,
677,
342,
20892,
1974,
3625,
29897,
13,
13,
30119,
508,
9571,
1407,
4482,
20892,
1974,
260,
4347,
29892,
4870,
287,
297,
4094,
13,
13,
30119,
508,
9571,
4094,
521,
342,
29876,
8842,
13,
13,
30119,
9950,
29899,
9021,
29892,
4482,
29899,
29879,
397,
1974,
2545,
386,
29879,
29901,
521,
21475,
29892,
367,
1389,
29892,
322,
29914,
272,
18655,
519,
13,
13,
30119,
285,
21211,
508,
9571,
297,
4094,
411,
694,
26438,
2715,
746,
1950,
470,
297,
1009,
1914,
3623,
625,
13,
13,
30119,
7171,
506,
29901,
1375,
1133,
29892,
3060,
2986,
29892,
470,
3353,
17184,
1960,
13,
13,
30119,
330,
5621,
4632,
29892,
1375,
1133,
13,
13,
30119,
7933,
521,
5475,
13,
13,
30119,
25364,
314,
532,
13386,
3145,
13,
13,
30119,
3578,
367,
261,
13,
13,
30119,
694,
29899,
29879,
1997,
29899,
23959,
508,
9571,
18655,
1849,
13,
13,
30119,
2654,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
30119,
696,
28470,
2654,
22623,
1236,
22437,
13,
13,
30119,
528,
261,
719,
313,
1333,
7984,
292,
528,
261,
719,
29897,
13,
13,
30119,
9644,
705,
6302,
287,
623,
793,
585,
346,
13,
13,
30119,
4796,
19006,
313,
15227,
470,
1661,
284,
1111,
5391,
293,
29897,
13,
13,
3217,
8949,
4214,
438,
6227,
29903,
13,
13,
30119,
508,
2963,
470,
26343,
17182,
13,
13,
30119,
7984,
292,
805,
764,
29879,
13,
13,
30119,
288,
9258,
17182,
13,
13,
30119,
1236,
273,
329,
17182,
13,
13,
30119,
304,
28470,
3999,
420,
17182,
13,
13,
29924,
3235,
4741,
2208,
2190,
29923,
29949,
3308,
13,
13,
30119,
599,
29899,
29888,
9216,
9677,
29879,
13,
13,
30119,
270,
1255,
285,
21211,
29892,
3704,
1153,
275,
1144,
29892,
274,
661,
495,
2722,
29892,
21783,
293,
1862,
29892,
322,
715,
6762,
313,
21803,
1906,
411,
278,
3203,
2715,
26438,
29897,
13,
13,
30119,
298,
4992,
13,
13,
30119,
4482,
29899,
29879,
397,
1974,
1236,
273,
329,
541,
357,
13,
13,
30119,
6062,
465,
267,
13,
13,
30119,
8296,
2910,
280,
9878,
17827,
13,
13,
30119,
9644,
1997,
287,
302,
8842,
29892,
3704,
394,
8315,
29879,
29892,
17042,
29876,
8842,
29892,
1236,
273,
8842,
29892,
13209,
550,
29892,
322,
282,
457,
302,
8842,
13,
13,
30119,
409,
5779,
29892,
3704,
3999,
420,
29892,
385,
895,
29892,
1559,
21694,
29892,
285,
2108,
295,
29892,
322,
282,
3427,
9089,
313,
6948,
1997,
287,
29897,
13,
13,
6007,
4571,
13780,
29903,
313,
3210,
29949,
29949,
1660,
11247,
8851,
1254,
7791,
4571,
5005,
16884,
29909,
6227,
6181,
29897,
13,
13,
30119,
29830,
327,
280,
1236,
22437,
508,
9571,
297,
594,
711,
29877,
12507,
346,
13,
13,
30119,
7375,
521,
2638,
17182,
13,
13,
30119,
1818,
3163,
13,
13,
30119,
694,
29899,
29879,
1997,
29899,
23959,
413,
3486,
786,
13,
13,
30119,
2654,
7375,
29899,
412,
2496,
12507,
346,
13,
13,
30119,
577,
29891,
12507,
346,
13,
13,
30119,
498,
1794,
14225,
521,
2638,
12507,
346,
13,
13,
30119,
13848,
387,
1503,
29892,
3704,
274,
1241,
29892,
289,
1338,
314,
293,
29892,
2654,
19006,
29892,
4796,
19006,
29892,
322,
8656,
19408,
13,
13,
30119,
19662,
29883,
28910,
14812,
12507,
346,
13,
13,
29903,
2227,
27266,
5300,
3725,
29909,
3094,
4214,
29903,
13,
13,
30119,
4628,
1236,
2496,
13,
13,
30119,
274,
388,
4584,
13,
13,
30119,
521,
2638,
4764,
672,
13,
13,
30119,
2181,
15392,
2654,
1236,
2496,
17422,
10794,
13,
13,
30119,
3151,
719,
4764,
672,
13,
13,
30119,
270,
1255,
902,
5824,
29892,
3704,
470,
387,
1562,
29892,
2362,
309,
29892,
266,
25395,
29892,
696,
12846,
653,
29892,
270,
453,
705,
287,
29892,
610,
29879,
2330,
29892,
269,
482,
29892,
23041,
11308,
29892,
322,
872,
600,
1617,
13,
13,
30119,
15589,
1818,
538,
13,
13,
30119,
7171,
506,
4764,
672,
13,
13,
30119,
5962,
805,
1575,
29892,
3704,
274,
2559,
314,
265,
29892,
330,
5621,
29892,
18254,
29885,
387,
29892,
599,
1028,
625,
29892,
274,
9735,
29892,
1034,
29875,
3825,
29892,
3500,
374,
1335,
29892,
1560,
12504,
3500,
374,
1335,
29892,
322,
7013,
1050,
293,
13,
13,
30119,
373,
291,
4764,
672,
13,
13,
30119,
15795,
13,
13,
30119,
15795,
29899,
9021,
4259,
292,
1999,
1975,
29892,
3704,
599,
29899,
15503,
4220,
29892,
6760,
1772,
470,
315,
1175,
348,
29892,
10545,
29892,
322,
454,
3712,
1236,
2496,
13,
13,
30119,
1109,
2911,
6597,
13,
13,
29937,
7984,
292,
21083,
322,
8492,
2362,
1199,
13,
13,
20576,
5265,
2190,
27266,
13,
13,
30119,
1999,
1581,
13,
13,
30119,
9687,
21433,
13,
13,
30119,
867,
453,
313,
449,
17433,
29897,
13,
13,
30119,
20710,
798,
1351,
13,
13,
30119,
288,
854,
13,
13,
30119,
5232,
7984,
261,
13,
13,
30119,
380,
586,
300,
459,
13,
13,
4986,
5607,
29903,
13,
13,
30119,
21156,
292,
1506,
1878,
267,
13,
13,
30119,
3800,
867,
1008,
13,
13,
30119,
508,
1015,
759,
13,
13,
30119,
7537,
15816,
337,
4183,
13,
13,
30119,
784,
3825,
13,
13,
30119,
7984,
292,
610,
305,
358,
313,
272,
394,
9735,
398,
1701,
309,
29897,
13,
13,
30119,
28967,
1045,
3163,
363,
18655,
1849,
29892,
592,
1446,
29892,
322,
282,
5059,
2202,
13,
13,
30119,
2691,
29899,
4467,
29882,
269,
2418,
13,
13,
30119,
867,
453,
8492,
3704,
8014,
5941,
292,
1506,
1878,
13,
13,
30119,
14426,
29899,
949,
14563,
8328,
13,
13,
30119,
29181,
1183,
1503,
13,
13,
30119,
29181,
3252,
457,
13,
13,
30119,
889,
3145,
29901,
1559,
1747,
29892,
14547,
29915,
29879,
29892,
610,
292,
29892,
20877,
9154,
29892,
269,
506,
292,
29892,
724,
29878,
630,
29892,
19725,
13,
13,
30119,
11979,
280,
13,
13,
30119,
9619,
26496,
13,
13,
30119,
7540,
3864,
2723,
567,
13,
13,
30119,
7540,
3864,
13345,
787,
13,
13,
30119,
24907,
12580,
3137,
313,
29050,
29897,
13,
13,
30119,
288,
854,
22219,
29879,
322,
3104,
4808,
414,
13,
13,
30119,
288,
854,
14563,
8328,
13,
13,
30119,
1236,
7367,
13,
13,
30119,
364,
4692,
867,
1008,
13,
13,
30119,
18109,
17538,
313,
2527,
284,
470,
27278,
29892,
289,
314,
833,
29877,
29897,
13,
13,
30119,
2243,
15048,
805,
6150,
13,
13,
30119,
805,
271,
15173,
313,
15227,
322,
2243,
15048,
29892,
14051,
495,
322,
11915,
29897,
13,
13,
30119,
12237,
13,
13,
30119,
21861,
29879,
13,
13,
30119,
377,
3873,
13,
13,
30119,
8014,
1153,
384,
13,
13,
30119,
27278,
13345,
787,
13,
13,
3217,
8949,
12982,
1525,
13,
13,
30119,
289,
5086,
270,
17006,
29892,
12917,
313,
29929,
29899,
22466,
6862,
322,
29871,
29896,
29896,
13105,
29871,
29955,
13105,
29871,
29906,
29899,
22466,
29897,
13,
13,
30119,
289,
5086,
282,
550,
29892,
11915,
313,
29947,
29899,
22466,
6862,
29897,
13,
13,
30119,
289,
5086,
26718,
313,
5632,
2168,
322,
443,
5632,
2168,
29892,
2545,
3955,
29899,
11177,
29897,
13,
13,
30119,
2545,
3955,
7243,
322,
1153,
384,
13,
13,
30119,
14872,
288,
854,
411,
17343,
13,
13,
30119,
2071,
7324,
29879,
411,
301,
4841,
29901,
2319,
313,
29947,
29899,
22466,
29892,
288,
854,
8017,
511,
18350,
313,
29896,
29900,
29899,
22466,
511,
2919,
313,
29896,
29906,
29899,
22466,
29897,
13,
13,
30119,
282,
1862,
411,
301,
4841,
13,
13,
30119,
658,
2142,
7243,
313,
29947,
13105,
29871,
29946,
13105,
29871,
29906,
29899,
22466,
29897,
13,
13,
30119,
20710,
798,
1351,
519,
12580,
3137,
29892,
715,
1078,
29892,
274,
465,
1489,
280,
270,
17006,
411,
301,
4841,
313,
29896,
30226,
29899,
339,
442,
322,
29871,
29906,
29899,
339,
442,
511,
289,
5086,
270,
17006,
313,
29947,
29899,
470,
29871,
29929,
29899,
22466,
4513,
470,
6862,
511,
5036,
7243,
313,
29929,
29899,
22466,
29897,
13,
13,
30119,
286,
3096,
262,
7243,
313,
29896,
29906,
29899,
5231,
29897,
13,
13,
30119,
364,
420,
11335,
13,
13,
30119,
696,
579,
292,
7243,
322,
1153,
384,
13,
13,
30119,
12507,
13300,
550,
411,
301,
4841,
29901,
2319,
313,
29906,
29899,
339,
442,
511,
18350,
313,
29946,
29899,
339,
442,
511,
2919,
313,
29953,
29899,
339,
442,
29897,
13,
13,
30119,
289,
314,
833,
29877,
1886,
4183,
470,
784,
14128,
1821,
11915,
470,
4047,
293,
650,
1886,
4183,
25972,
13,
13,
30119,
281,
554,
313,
29896,
29946,
29899,
22466,
29897,
13,
13,
29937,
29181,
322,
9687,
15332,
2362,
1199,
13,
13,
24647,
1001,
1964,
18322,
13668,
317,
5098,
2544,
29979,
13,
13,
7504,
3278,
304,
278,
3303,
3900,
10317,
310,
27051,
545,
313,
3308,
7698,
511,
1438,
526,
278,
3023,
15281,
6865,
304,
3013,
9687,
9109,
29901,
13,
13,
29907,
1307,
2190,
29901,
399,
24943,
379,
2190,
8452,
5300,
317,
4574,
29943,
2477,
2890,
438,
7818,
1430,
29889,
13,
13,
30119,
399,
1161,
6567,
411,
29559,
322,
14294,
4094,
363,
29871,
29906,
29900,
6923,
1434,
322,
1156,
11415,
9687,
29889,
13,
13,
30119,
4803,
7375,
29892,
577,
27580,
4094,
322,
5650,
304,
29893,
1379,
470,
5941,
13950,
29879,
304,
281,
15705,
701,
29181,
28001,
470,
805,
6090,
29889,
399,
1161,
13950,
29879,
297,
7375,
4094,
297,
278,
471,
2790,
4933,
29889,
13,
13,
30119,
399,
1161,
28967,
1045,
3163,
29892,
270,
17006,
29892,
889,
3145,
29892,
322,
6795,
3332,
29879,
411,
7375,
29892,
577,
27580,
4094,
1156,
10223,
292,
1269,
9687,
2944,
322,
1434,
366,
748,
373,
304,
278,
2446,
2944,
29889,
13,
13,
1660,
16320,
3040,
29901,
360,
1164,
29915,
29911,
315,
1672,
1799,
29899,
22412,
5194,
1177,
3040,
29889,
13,
13,
30119,
15484,
10650,
27654,
29892,
282,
5059,
2202,
29892,
322,
7205,
1181,
397,
297,
22637,
470,
409,
7943,
715,
6288,
289,
810,
304,
5557,
1009,
3623,
1575,
29892,
607,
1122,
1712,
10311,
1319,
289,
5761,
423,
29892,
515,
10293,
3262,
11480,
916,
9687,
29879,
1716,
297,
596,
4071,
29883,
708,
7774,
322,
297,
596,
337,
1341,
4087,
1061,
470,
3889,
3298,
29889,
13,
13,
30119,
2718,
339,
333,
393,
471,
1304,
304,
1766,
16976,
10650,
27654,
29892,
282,
5059,
2202,
29892,
470,
7205,
1181,
397,
881,
451,
367,
1304,
408,
263,
21156,
292,
12507,
346,
470,
373,
7984,
287,
9687,
29879,
6521,
372,
338,
1045,
2356,
925,
1434,
773,
304,
8174,
738,
10311,
1319,
289,
5761,
423,
29889,
13,
13,
30119,
12391,
2058,
7984,
287,
9687,
1250,
373,
278,
1021,
15284,
470,
28967,
7613,
393,
9251,
4934,
10650,
9687,
29889,
13,
13,
30119,
960,
1950,
29892,
2874,
403,
697,
28967,
7613,
363,
10849,
7738,
322,
18423,
322,
263,
5004,
697,
363,
10650,
27654,
29892,
282,
5059,
2202,
29892,
322,
7205,
1181,
397,
29889,
29849,
671,
263,
5941,
28967,
7613,
29889,
13,
13,
3217,
8949,
29901,
4810,
8949,
7495,
6093,
390,
22530,
17067,
3580,
1001,
1299,
11499,
29889,
13,
13,
11403,
263,
9687,
14563,
8328,
15478,
964,
278,
12003,
342,
760,
310,
278,
9687,
313,
9176,
29915,
29873,
1235,
372,
6023,
289,
650,
467,
17278,
9687,
29879,
2745,
896,
505,
7450,
278,
1494,
9109,
9212,
7463,
6238,
3698,
29901,
13,
13,
30119,
2178,
367,
1389,
29892,
282,
548,
29892,
301,
1117,
29892,
322,
2453,
284,
1886,
10327,
29892,
521,
3554,
29892,
322,
696,
19416,
304,
263,
9212,
7463,
10430,
310,
29871,
29896,
29946,
29945,
30073,
29943,
29889,
29408,
278,
27654,
304,
1791,
363,
472,
3203,
29871,
29941,
6233,
29889,
13,
13,
30119,
2178,
5962,
367,
1389,
29892,
282,
548,
29892,
301,
1117,
29892,
322,
2453,
284,
304,
385,
7463,
10430,
310,
29871,
29896,
29953,
29900,
30073,
29943,
29889,
13,
13,
30119,
2178,
282,
5059,
2202,
29892,
3704,
5962,
282,
5059,
2202,
29892,
304,
385,
7463,
10430,
310,
29871,
29896,
29953,
29945,
30073,
29943,
29889,
13,
13,
3210,
24071,
29901,
5195,
29943,
3960,
17070,
3040,
349,
3491,
7982,
16786,
29889,
13,
13,
30119,
830,
1341,
4087,
403,
639,
728,
519,
9687,
2629,
29871,
29906,
6199,
313,
262,
278,
11801,
5700,
445,
1623,
304,
29871,
29896,
7234,
467,
13,
13,
30119,
830,
1341,
4087,
403,
470,
3889,
911,
454,
29888,
517,
874,
2629,
29871,
29906,
6199,
313,
262,
278,
11801,
5700,
445,
1623,
304,
29871,
29896,
7234,
467,
3295,
7543,
738,
9687,
2175,
714,
8724,
445,
3474,
29889,
13,
13,
30119,
1522,
1854,
596,
337,
1341,
4087,
1061,
338,
731,
472,
322,
7344,
292,
263,
10430,
310,
29871,
29946,
29900,
30073,
29943,
470,
2400,
322,
278,
3889,
3298,
472,
29871,
29900,
30073,
29943,
470,
2400,
29889,
2598,
2105,
411,
385,
623,
13036,
14563,
8328,
29889,
13,
13,
3217,
8949,
4214,
317,
5098,
6670,
29979,
2672,
6093,
350,
1307,
2797,
1001,
6323,
18322,
13668,
13756,
23524,
1955,
13,
13,
10401,
10594,
7375,
15617,
4841,
964,
596,
1999,
1581,
470,
9687,
21433,
29892,
671,
278,
1494,
15332,
1410,
10652,
1475,
29901,
13,
13,
30119,
29849,
671,
263,
17343,
746,
773,
263,
1999,
1581,
470,
9687,
21433,
29889,
13,
13,
30119,
10554,
7375,
15617,
4841,
297,
9853,
267,
29889,
13,
13,
30119,
21141,
278,
17343,
577,
278,
21837,
508,
10169,
29889,
13,
13,
30119,
26428,
278,
1722,
4038,
411,
263,
29181,
304,
20466,
304,
5557,
805,
764,
292,
29889,
13,
13,
30119,
3872,
29915,
29873,
975,
5589,
596,
1999,
1581,
29936,
2337,
5967,
5716,
363,
13184,
310,
596,
2348,
1127,
10070,
29889,
3164,
355,
278,
29544,
297,
9853,
267,
565,
4312,
29889,
13,
13,
3217,
8949,
4214,
317,
5098,
6670,
29979,
501,
2797,
1001,
6093,
350,
1672,
6227,
1001,
13,
13,
29857,
6504,
338,
385,
17818,
344,
11043,
1363,
372,
3913,
1880,
6238,
3698,
304,
7984,
9687,
29889,
10306,
1438,
15332,
1410,
10652,
1475,
746,
773,
596,
2545,
3955,
29901,
13,
13,
30119,
12391,
5967,
278,
5716,
1550,
2545,
6504,
29889,
24274,
9687,
16112,
29892,
1363,
372,
508,
748,
515,
3347,
9571,
304,
12138,
287,
1407,
9098,
29889,
13,
13,
30119,
5399,
596,
288,
854,
29915,
29879,
12271,
29915,
29879,
12219,
304,
8161,
3692,
278,
3050,
881,
367,
5764,
470,
2175,
263,
4758,
1550,
2545,
6504,
29889,
13,
13,
30119,
21141,
278,
4038,
1532,
29892,
7148,
565,
366,
505,
385,
12646,
288,
854,
29889,
317,
572,
271,
2153,
373,
278,
12646,
1302,
2719,
508,
4556,
25158,
29889,
13,
13,
30119,
960,
366,
29915,
276,
773,
7984,
2519,
916,
1135,
278,
2545,
3955,
7243,
313,
8256,
3347,
1076,
263,
274,
465,
1489,
280,
29892,
363,
1342,
511,
367,
1854,
278,
270,
728,
508,
4386,
1880,
12871,
29889,
319,
5405,
773,
12917,
282,
550,
29892,
607,
508,
26755,
470,
20887,
29889,
13,
13,
30119,
25453,
29879,
393,
526,
694,
901,
1135,
29871,
29896,
304,
29871,
29896,
30226,
22831,
12003,
526,
1900,
363,
2545,
6504,
29892,
1363,
871,
278,
7101,
310,
278,
9687,
338,
7984,
287,
29936,
278,
12871,
2113,
29915,
29873,
6584,
300,
10492,
278,
9687,
3307,
304,
7984,
278,
4818,
310,
266,
6541,
9687,
29879,
29889,
13,
13,
30119,
1763,
4772,
285,
8663,
29899,
14340,
29892,
1016,
29915,
29873,
1671,
1766,
262,
3076,
322,
12507,
778,
975,
278,
9687,
1550,
2545,
6504,
372,
29889,
13,
13,
3217,
8949,
4214,
317,
5098,
6670,
29979,
6732,
6093,
402,
3960,
2208,
13,
13,
7504,
3278,
304,
278,
3148,
7698,
29892,
321,
1218,
17768,
403,
26999,
310,
867,
24455,
592,
1446,
29892,
282,
5059,
2202,
29892,
322,
9427,
7984,
287,
30003,
14037,
1373,
5393,
30003,
517,
263,
9109,
10430,
947,
451,
18593,
263,
9045,
1108,
29889,
10306,
1438,
15332,
1410,
10652,
1475,
746,
773,
596,
867,
453,
29901,
13,
13,
30119,
15642,
29873,
873,
266,
1450,
27654,
322,
282,
5059,
2202,
1434,
867,
8873,
577,
372,
7984,
29879,
901,
1584,
368,
29889,
4803,
278,
337,
1341,
4087,
1061,
363,
5232,
29892,
9109,
266,
1450,
292,
470,
266,
1450,
409,
7943,
9741,
297,
11220,
4094,
29889,
1152,
4996,
261,
266,
1450,
292,
29892,
366,
508,
671,
278,
20710,
798,
1351,
304,
822,
17627,
565,
278,
9687,
674,
367,
867,
24455,
7389,
29889,
13,
13,
30119,
29849,
1766,
16976,
9687,
297,
278,
337,
1341,
4087,
1061,
29892,
451,
373,
278,
6795,
29889,
13,
13,
30119,
29849,
671,
263,
5941,
21156,
292,
1506,
1878,
304,
4772,
640,
314,
3381,
29889,
13,
13,
30119,
1932,
5622,
9687,
1283,
278,
867,
453,
29892,
671,
263,
5941,
715,
2620,
29889,
12065,
1259,
7984,
287,
9687,
373,
278,
1021,
715,
2620,
393,
4934,
10650,
27654,
470,
282,
5059,
2202,
1033,
640,
9103,
403,
372,
515,
278,
10311,
1319,
289,
5761,
423,
297,
278,
10650,
27654,
3623,
1575,
29889,
13,
13,
30119,
512,
7375,
14826,
313,
27215,
29871,
29929,
29900,
30073,
29943,
511,
1016,
29915,
29873,
1235,
9687,
7845,
714,
363,
901,
1135,
29871,
29896,
7234,
29889,
13,
13,
30119,
17278,
9687,
304,
263,
9109,
9212,
7463,
10430,
304,
8174,
10311,
1319,
289,
5761,
423,
313,
4149,
376,
19159,
304,
278,
1492,
10430,
2564,
2191,
271,
322,
282,
5059,
2202,
373,
263,
867,
453,
4049,
3347,
1983,
1407,
5172,
373,
278,
5377,
29889,
4803,
385,
14426,
29899,
949,
14563,
8328,
304,
367,
1854,
278,
9687,
756,
7450,
263,
9109,
9212,
7463,
10430,
29889,
13,
13,
30119,
1932,
773,
263,
10489,
867,
453,
29892,
4772,
1880,
6238,
3698,
29889,
25453,
393,
338,
7984,
287,
373,
1880,
12871,
363,
5520,
23704,
310,
931,
1122,
7738,
18500,
9714,
1559,
16381,
468,
575,
29889,
315,
329,
1283,
738,
1373,
1127,
313,
8399,
593,
470,
4628,
29897,
5633,
1434,
321,
1218,
29889,
13,
13,
3217,
8949,
4214,
317,
5098,
6670,
29979,
2672,
6093,
341,
2965,
25180,
7520,
29923,
13,
13,
29924,
293,
798,
5989,
526,
19192,
322,
9109,
623,
492,
2925,
746,
1304,
6284,
29889,
10306,
1438,
15332,
1410,
10652,
1475,
746,
773,
596,
20710,
798,
1351,
29901,
13,
13,
30119,
826,
3881,
9687,
1584,
368,
297,
263,
20710,
798,
1351,
519,
270,
728,
322,
788,
777,
23904,
565,
4312,
29889,
26428,
278,
270,
728,
411,
263,
20710,
798,
1351,
29899,
11177,
17343,
470,
715,
6288,
12244,
29936,
658,
7749,
470,
9712,
278,
17343,
470,
12244,
304,
1235,
21837,
10169,
29889,
450,
2730,
391,
12871,
393,
338,
2825,
674,
1371,
8174,
10311,
1319,
289,
5761,
423,
322,
9801,
9090,
7984,
292,
29889,
13,
13,
30119,
20279,
798,
1351,
288,
9852,
508,
7984,
1597,
854,
368,
322,
5967,
376,
29883,
1025,
805,
1862,
29908,
988,
10311,
1319,
289,
5761,
423,
508,
10503,
573,
29892,
577,
23546,
470,
16734,
9687,
7145,
1582,
1549,
278,
7984,
292,
931,
304,
27399,
1438,
29889,
13,
13,
30119,
1932,
22039,
7984,
292,
9687,
297,
278,
20710,
798,
1351,
304,
8341,
373,
278,
867,
453,
470,
297,
278,
288,
854,
29892,
367,
1854,
304,
6782,
278,
20710,
798,
10511,
9687,
304,
278,
916,
12871,
2752,
7389,
29889,
12391,
22039,
7984,
9687,
322,
3787,
372,
363,
2678,
671,
29889,
13,
13,
30119,
15154,
9687,
515,
4870,
6751,
1434,
822,
17627,
292,
372,
297,
278,
20710,
798,
1351,
29889,
13,
13,
30119,
4803,
871,
7984,
2519,
393,
338,
12012,
2955,
363,
671,
297,
278,
20710,
798,
1351,
288,
854,
29889,
402,
605,
29892,
5147,
314,
293,
29892,
322,
599,
715,
579,
1199,
881,
367,
301,
24025,
363,
20710,
798,
1351,
671,
29889,
13,
13,
30119,
20279,
798,
1351,
519,
715,
6288,
11463,
567,
29892,
281,
1165,
5650,
29892,
7984,
292,
289,
810,
29892,
7984,
292,
610,
305,
358,
29892,
322,
4796,
20710,
798,
1351,
29899,
11177,
5650,
304,
29893,
1379,
881,
367,
9109,
304,
671,
29889,
3872,
29915,
29873,
1235,
715,
6288,
12244,
6023,
9687,
2645,
20710,
798,
5555,
29936,
372,
1122,
286,
2152,
29889,
13,
13,
30119,
450,
1494,
881,
6058,
367,
1304,
297,
278,
20710,
798,
1351,
29901,
715,
6288,
8635,
22637,
1316,
408,
15276,
279,
457,
23131,
29879,
29892,
2125,
29899,
449,
22637,
29892,
322,
916,
697,
29899,
2230,
29899,
1509,
22637,
29889,
4525,
508,
1370,
29886,
470,
286,
2152,
29892,
10075,
10805,
10311,
1319,
22233,
29879,
304,
454,
496,
964,
278,
9687,
29889,
3115,
29892,
2360,
671,
16835,
715,
6288,
8635,
289,
810,
29892,
17354,
5650,
470,
715,
6288,
4071,
29883,
708,
289,
810,
29892,
19656,
29892,
394,
9735,
398,
1701,
309,
29892,
470,
11915,
470,
1701,
314,
22637,
29889,
13,
13,
30119,
12391,
21994,
278,
20710,
798,
1351,
565,
372,
338,
5625,
4063,
297,
738,
982,
29892,
1316,
408,
9391,
3050,
409,
1338,
470,
23819,
301,
905,
267,
29889,
3872,
29915,
29873,
21994,
263,
20710,
798,
1351,
746,
372,
29915,
29879,
4069,
29892,
408,
445,
508,
18658,
278,
13290,
29889,
13,
13,
3217,
8949,
4214,
317,
5098,
6670,
29979,
2672,
6093,
317,
27998,
4810,
8949,
1001,
13,
13,
1576,
1513,
12871,
515,
278,
8182,
384,
29892,
3309,
29891,
7984,
292,
3064,
29892,
322,
21837,
2825,
2629,
278,
19932,
368,
10664,
5639,
14405,
304,
8174,
289,
5761,
423,
322,
1207,
5232,
7984,
292,
263,
9109,
1889,
363,
7984,
292,
1584,
373,
278,
4482,
4444,
29889,
10306,
1438,
15332,
1410,
10652,
1475,
746,
773,
596,
5232,
7984,
261,
29901,
13,
13,
30119,
1522,
2763,
9985,
411,
596,
7984,
261,
29915,
29879,
10430,
3464,
577,
366,
508,
22931,
7984,
292,
3064,
7913,
2486,
29889,
17278,
292,
6238,
3698,
310,
10340,
515,
1422,
12012,
332,
414,
13100,
29892,
322,
9826,
29915,
29879,
7984,
414,
1122,
7984,
7375,
357,
1135,
9642,
4733,
29936,
596,
4933,
1122,
7984,
263,
2217,
7375,
357,
470,
12528,
261,
1135,
278,
6056,
29889,
960,
393,
29915,
29879,
278,
1206,
29892,
278,
4328,
1122,
6602,
451,
871,
278,
2551,
310,
263,
9522,
412,
541,
884,
278,
15332,
310,
278,
9687,
29889,
13,
13,
30119,
1763,
1243,
278,
7984,
292,
10430,
310,
596,
7984,
261,
29892,
1018,
445,
29901,
383,
453,
278,
8182,
384,
697,
29899,
24498,
304,
1023,
29899,
22585,
29879,
2989,
310,
5716,
29899,
12863,
1535,
4094,
322,
12871,
278,
4094,
29892,
10664,
29892,
373,
4482,
363,
29871,
29947,
6199,
29889,
853,
11911,
322,
7389,
1243,
278,
4094,
10430,
411,
385,
14426,
29899,
949,
14563,
8328,
29889,
313,
2865,
9098,
1363,
278,
10430,
674,
5768,
746,
278,
17343,
338,
10425,
1846,
960,
278,
10430,
338,
6133,
1135,
29871,
29896,
29947,
29945,
30073,
29943,
29892,
596,
7984,
261,
6057,
7375,
29892,
322,
366,
881,
7984,
9687,
29879,
363,
10029,
3109,
931,
1135,
13622,
29889,
960,
372,
338,
5224,
29892,
9687,
29879,
1122,
451,
6159,
385,
19967,
339,
403,
7984,
292,
10430,
9098,
3307,
363,
15332,
29889,
313,
3644,
596,
7984,
261,
338,
451,
540,
1218,
304,
263,
9109,
10430,
29892,
366,
881,
2050,
15270,
372,
1846,
10790,
4279,
884,
674,
6602,
596,
7984,
261,
29915,
29879,
4180,
29892,
577,
6623,
596,
28750,
5034,
304,
278,
12012,
9945,
29915,
29879,
11994,
29889,
13,
13,
30119,
498,
1450,
14671,
2256,
9687,
29879,
29892,
7148,
27654,
322,
282,
5059,
2202,
29892,
297,
278,
1424,
5525,
470,
20710,
798,
1351,
30003,
4187,
451,
472,
5716,
10430,
30003,
11083,
366,
1925,
963,
297,
278,
7984,
261,
29889,
25022,
2256,
2348,
1127,
10070,
674,
3013,
278,
7463,
10430,
5224,
1135,
372,
881,
367,
29892,
322,
278,
8118,
310,
278,
8182,
384,
1122,
451,
6159,
1880,
29899,
264,
820,
6238,
3698,
304,
7984,
6284,
29889,
13,
13,
30119,
1763,
5557,
10311,
1319,
289,
5761,
423,
515,
6674,
5890,
29892,
1016,
29915,
29873,
5967,
9687,
373,
278,
14294,
470,
1283,
4444,
297,
596,
5232,
7984,
261,
363,
901,
1135,
29871,
29906,
6199,
29889,
13,
13,
30119,
960,
366,
12326,
393,
596,
7984,
261,
756,
1063,
1283,
363,
901,
1135,
29871,
29906,
6199,
1363,
310,
263,
3081,
714,
482,
29892,
2313,
538,
278,
9687,
297,
278,
8182,
384,
29889,
13,
13,
30119,
3872,
29915,
29873,
337,
354,
271,
454,
29888,
517,
874,
297,
278,
8182,
384,
1363,
289,
5761,
423,
508,
6548,
297,
278,
931,
372,
4893,
363,
278,
9687,
304,
6159,
263,
9109,
10430,
29889,
8669,
29892,
337,
354,
271,
9687,
297,
263,
20710,
798,
1351,
470,
373,
278,
380,
994,
29889,
13,
13,
30119,
15154,
9687,
29879,
515,
278,
8182,
384,
1434,
337,
1341,
4087,
1218,
963,
29889,
450,
8182,
384,
338,
2086,
12003,
304,
2758,
9687,
29879,
304,
12528,
9098,
3307,
304,
5557,
289,
5761,
423,
14321,
29889,
13,
13,
29937,
9687,
6471,
322,
7829,
3348,
886,
13,
13,
1762,
679,
278,
18254,
374,
1237,
366,
817,
29892,
278,
3082,
17778,
7993,
5052,
1975,
393,
366,
8569,
596,
652,
300,
373,
285,
21211,
29892,
18655,
1849,
29892,
3353,
2646,
1144,
29892,
4482,
29899,
29888,
271,
1146,
16129,
9316,
29892,
282,
5059,
2202,
29892,
9427,
29892,
322,
302,
8842,
29892,
1550,
4046,
292,
2654,
27654,
322,
29746,
653,
9687,
29879,
322,
367,
369,
1179,
29889,
9267,
652,
1691,
6216,
445,
4766,
29892,
3704,
278,
360,
24943,
313,
29928,
2035,
653,
28268,
14520,
304,
22303,
9665,
10700,
2673,
29897,
321,
1218,
3814,
515,
278,
3086,
5827,
2667,
310,
15202,
322,
652,
1691,
7829,
491,
278,
3148,
7698,
322,
278,
3082,
17778,
7993,
29889,
450,
360,
24943,
652,
300,
8128,
278,
6588,
13622,
1353,
310,
3348,
886,
310,
1269,
6996,
9687,
2318,
29892,
607,
526,
2729,
373,
14218,
1208,
7661,
938,
1296,
322,
19138,
1891,
373,
278,
1494,
8727,
29889,
450,
1353,
310,
3348,
886,
393,
338,
1492,
363,
366,
674,
13100,
8679,
373,
596,
1208,
272,
293,
4225,
29889,
1932,
17394,
3262,
29892,
7252,
18254,
29878,
654,
17099,
7243,
1379,
322,
1106,
363,
278,
9316,
393,
526,
19604,
297,
20892,
1974,
29892,
269,
1337,
630,
9950,
29892,
322,
1301,
9950,
29892,
322,
393,
1016,
29915,
29873,
505,
2715,
29746,
1503,
29889,
13,
13,
6304,
29963,
4214,
5195,
3217,
7428,
11794,
8098,
29903,
6770,
315,
1964,
1955,
8673,
11060,
29963,
6670,
13,
13,
5800,
13668,
15345,
891,
29871,
29896,
29892,
29953,
29900,
29900,
315,
1964,
1955,
29059,
891,
29871,
29906,
29892,
29900,
29900,
29900,
315,
1964,
1955,
29059,
891,
16698,
3580,
1307,
26996,
29963,
4214,
22717,
29999,
2890,
259,
13,
5634,
29989,
5634,
29989,
5634,
29989,
5634,
259,
13,
12064,
7194,
6181,
29903,
259,
13,
29923,
271,
263,
12875,
310,
11955,
322,
4072,
29889,
891,
29871,
29941,
304,
29871,
29946,
3348,
886,
639,
2462,
891,
29871,
29946,
304,
29871,
29945,
3348,
886,
639,
2462,
891,
29871,
29896,
18002,
10650,
20447,
29891,
18655,
519,
259,
13,
30226,
18002,
5700,
29899,
786,
10650,
470,
7984,
287,
18655,
519,
259,
13,
30226,
18002,
18655,
519,
3623,
625,
259,
13,
15860,
29965,
1806,
29903,
259,
13,
29923,
271,
263,
12875,
310,
11955,
322,
4072,
29889,
891,
29871,
29946,
3348,
886,
639,
2462,
891,
29871,
29946,
304,
29871,
29945,
3348,
886,
639,
2462,
891,
29871,
29896,
18350,
15774,
259,
13,
30515,
18002,
270,
1255,
15774,
259,
13,
30226,
18002,
10849,
29892,
14671,
2256,
29892,
470,
508,
9571,
15774,
259,
13,
30226,
18002,
15774,
3623,
625,
259,
13,
3738,
13635,
29899,
29934,
2965,
29950,
399,
8187,
1307,
402,
4717,
1177,
29903,
259,
13,
15954,
852,
3353,
2646,
1144,
363,
472,
3203,
4203,
596,
3348,
886,
29889,
891,
29871,
29953,
3348,
886,
639,
2462,
891,
29871,
29953,
304,
29871,
29947,
3348,
886,
639,
2462,
891,
29871,
29896,
22780,
18423,
259,
13,
29896,
288,
29920,
15589,
274,
406,
284,
313,
3198,
18254,
29878,
654,
3858,
363,
18002,
20398,
29897,
259,
13,
30226,
18002,
7984,
287,
19408,
29892,
4940,
29874,
29892,
470,
274,
406,
284,
259,
13,
29943,
1299,
29899,
29943,
21661,
29892,
29871,
29896,
29995,
383,
1299,
29892,
5300,
365,
9806,
29899,
29943,
1299,
21330,
8193,
29979,
13756,
14849,
1783,
29903,
259,
13,
15954,
852,
9950,
29899,
9021,
746,
1950,
322,
7252,
20892,
1974,
11174,
304,
6755,
278,
19604,
29889,
891,
29871,
29906,
304,
29871,
29941,
3348,
886,
639,
2462,
891,
29871,
29906,
304,
29871,
29941,
3348,
886,
639,
2462,
891,
29871,
29896,
18002,
9950,
29899,
9021,
470,
4482,
29899,
29888,
271,
27274,
259,
13,
29896,
18002,
9950,
29899,
9021,
470,
4482,
29899,
29888,
271,
343,
468,
4227,
259,
13,
29896,
30226,
288,
29920,
9950,
29899,
9021,
470,
4482,
29899,
29888,
271,
923,
968,
259,
13,
29943,
3235,
29950,
29930,
259,
13,
15954,
852,
1197,
20850,
8261,
297,
2703,
2442,
29899,
29941,
9950,
1017,
1274,
4841,
29889,
891,
29871,
29953,
288,
29920,
313,
1111,
12504,
29897,
639,
4723,
891,
29871,
29953,
288,
29920,
313,
1111,
12504,
29897,
639,
4723,
891,
29871,
29941,
288,
29920,
7984,
287,
9427,
29892,
1316,
408,
4497,
3712,
322,
534,
449,
259,
13,
16033,
1177,
1307,
1799,
21521,
13309,
5659,
29979,
5300,
11060,
2190,
22986,
1299,
29903,
259,
13,
15954,
852,
20793,
322,
4805,
29899,
14044,
29889,
891,
29871,
29941,
304,
29871,
29953,
288,
29920,
313,
1111,
12504,
29897,
639,
2462,
891,
27898,
1135,
29871,
29953,
288,
29920,
313,
1111,
12504,
29897,
639,
2462,
891,
29871,
29941,
288,
29920,
7984,
287,
282,
5059,
2202,
470,
27654,
259,
13,
1307,
29954,
29965,
2303,
29903,
29892,
405,
2692,
29903,
29892,
5300,
3725,
3352,
29903,
259,
13,
15954,
852,
9644,
1997,
287,
9316,
29889,
891,
29871,
29941,
304,
29871,
29946,
3348,
886,
639,
4723,
891,
29871,
29946,
304,
29871,
29945,
3348,
886,
639,
4723,
891,
29871,
30226,
18002,
270,
1255,
367,
550,
470,
1236,
294,
259,
13,
31690,
18002,
470,
29871,
29896,
30226,
288,
29920,
302,
8842,
259,
13,
29906,
260,
29890,
1028,
1236,
273,
329,
541,
357,
259,
13,
29906,
260,
29890,
1028,
470,
29871,
30226,
288,
29920,
409,
5779,
259,
13,
29943,
1299,
29903,
5300,
438,
6227,
29903,
259,
13,
11403,
23904,
18655,
519,
288,
2719,
313,
14565,
408,
288,
9258,
29892,
508,
2963,
29892,
470,
26343,
29897,
322,
7984,
292,
805,
764,
29879,
470,
3578,
23131,
15276,
279,
1475,
1556,
4049,
29889,
14542,
852,
9316,
411,
278,
19604,
5253,
310,
20892,
1974,
29889,
891,
29871,
29906,
3348,
886,
639,
2462,
891,
29871,
29906,
304,
29871,
29941,
3348,
886,
639,
2462,
891,
29871,
29896,
260,
1028,
3578,
23131,
15276,
279,
457,
259,
13,
29896,
260,
29890,
1028,
3578,
1122,
11586,
895,
259,
13,
29896,
260,
1028,
18655,
519,
17182,
259,
13,
29896,
260,
29890,
1028,
4943,
470,
29871,
29906,
260,
29890,
1028,
4482,
29899,
29888,
271,
4497,
328,
10714,
292,
313,
29888,
271,
29899,
9021,
10714,
292,
947,
451,
2302,
408,
263,
16330,
541,
947,
1712,
1208,
3842,
29897,
259,
13,
29903,
8851,
2544,
29903,
5300,
11033,
2287,
29928,
20134,
29954,
1718,
29903,
891,
29871,
29900,
3348,
886,
639,
4723,
891,
29871,
29945,
470,
28145,
3348,
886,
639,
4723,
891,
29871,
29896,
260,
29890,
1028,
26438,
259,
13,
29896,
260,
29890,
1028,
12736,
368,
470,
14322,
259,
13,
30226,
18002,
7319,
6878,
259,
13,
29896,
18002,
454,
3712,
1943,
13,
13,
29930,
3644,
366,
526,
15041,
1048,
278,
2778,
2764,
29891,
297,
9427,
322,
6473,
15161,
29892,
6456,
393,
278,
9045,
5161,
2039,
515,
2778,
2764,
29891,
14060,
545,
8839,
373,
278,
5253,
310,
7205,
1181,
397,
321,
2579,
322,
278,
3233,
310,
2778,
2764,
29891,
297,
278,
5375,
9427,
29889,
512,
1556,
4251,
29892,
278,
23633,
310,
9427,
714,
705,
1141,
278,
5161,
2039,
29889,
1152,
901,
4902,
29892,
6493,
7821,
29889,
23057,
29889,
990,
470,
7821,
29889,
29888,
1388,
29889,
13513,
29889,
13,
13,
29937,
1048,
278,
9522,
5547,
13,
13,
29923,
2477,
29950,
5195,
8426,
4162,
297,
278,
3143,
7805,
263,
18254,
29878,
3245,
7418,
577,
366,
508,
11097,
920,
393,
270,
728,
23994,
411,
596,
652,
300,
653,
4225,
29889,
4525,
1410,
10652,
1475,
674,
2367,
366,
777,
4902,
373,
920,
278,
3483,
952,
267,
892,
12833,
29889,
13,
13,
30119,
7806,
7418,
338,
363,
263,
2323,
16330,
29936,
330,
2753,
17006,
470,
13136,
2348,
1127,
10070,
526,
451,
5134,
6521,
11682,
29889,
13,
13,
30119,
7311,
310,
278,
1784,
3651,
9701,
29892,
278,
18254,
374,
296,
1819,
4944,
881,
367,
5545,
26368,
29889,
1932,
2537,
3864,
2011,
1080,
29892,
6456,
393,
278,
16330,
15786,
526,
26368,
884,
29889,
13,
13,
30119,
1932,
2348,
1127,
993,
3987,
526,
9904,
29892,
278,
937,
697,
338,
29537,
287,
29889,
1932,
263,
3464,
310,
5253,
338,
2183,
29892,
278,
6588,
338,
29537,
287,
29889,
13,
13,
30119,
2630,
1041,
916,
1135,
285,
1446,
526,
28240,
304,
278,
20471,
3353,
1353,
29889,
383,
271,
1819,
526,
28240,
304,
278,
20471,
4203,
14961,
29889,
7311,
310,
278,
4513,
292,
29892,
1819,
363,
269,
1337,
630,
29892,
1301,
29892,
1601,
1309,
29879,
1337,
630,
29892,
322,
15680,
6948,
1337,
630,
285,
1446,
1122,
451,
788,
701,
304,
278,
5253,
4318,
363,
3001,
9950,
995,
29889,
13,
13,
30119,
2178,
278,
9522,
5547,
526,
29537,
287,
773,
9644,
1997,
287,
470,
4482,
29899,
29879,
397,
1974,
2348,
1127,
10070,
10940,
1950,
29889,
512,
777,
4251,
29892,
591,
1246,
363,
443,
5014,
287,
9687,
29879,
470,
694,
29899,
29879,
1997,
29899,
23959,
322,
4482,
29899,
29879,
397,
1974,
9316,
29892,
769,
788,
1591,
15795,
805,
4362,
368,
363,
21054,
272,
29889,
13,
13,
30119,
1334,
6084,
508,
2963,
29892,
26343,
29892,
322,
288,
9258,
288,
2719,
297,
1438,
9522,
5547,
29892,
541,
366,
508,
884,
671,
916,
5192,
29899,
354,
4298,
29891,
9644,
1337,
630,
288,
2719,
29892,
1316,
408,
872,
600,
13609,
29892,
577,
29891,
14471,
29892,
322,
6575,
1731,
261,
29889,
13,
13,
30119,
2191,
1446,
526,
29537,
287,
408,
20793,
29892,
411,
599,
7962,
9950,
2313,
25600,
29889,
2630,
1041,
363,
5962,
367,
1389,
526,
2729,
373,
20793,
27654,
393,
338,
29871,
29929,
29945,
10151,
9950,
3889,
29889,
13,
13,
30119,
1932,
27654,
29892,
282,
5059,
2202,
29892,
470,
7205,
1181,
397,
338,
1766,
262,
630,
322,
278,
1766,
1099,
311,
338,
2313,
25600,
29892,
278,
7418,
7805,
599,
310,
278,
20892,
1974,
515,
278,
1766,
1099,
311,
541,
5642,
310,
278,
916,
18254,
374,
1237,
515,
372,
29889,
13,
13,
30119,
960,
27231,
5391,
338,
1304,
297,
263,
7984,
287,
270,
728,
29892,
591,
12678,
393,
1556,
310,
278,
27231,
5391,
1208,
3842,
3415,
26191,
403,
408,
278,
9687,
7984,
29879,
29889,
13,
13,
30119,
7311,
3234,
3858,
292,
297,
278,
9999,
6689,
508,
13100,
322,
1735,
9098,
29892,
591,
671,
278,
10035,
4958,
376,
29888,
271,
29899,
9021,
29908,
322,
376,
677,
29899,
29888,
271,
29908,
10106,
304,
4772,
14679,
29889,
13,
13,
30119,
1334,
671,
278,
29759,
1403,
800,
330,
363,
14961,
322,
286,
29887,
363,
3533,
335,
2572,
29889,
13,
13,
29937,
2380,
13,
13,
29933,
1025,
9282,
12266,
9522,
412,
756,
263,
15373,
297,
2927,
4635,
29889,
13,
13,
29937,
319,
13,
13,
932,
793,
13,
13,
6246,
725,
329,
317,
339,
1161,
322,
12113,
317,
1132,
13,
13,
855,
3096,
287,
376,
29933,
12535,
29908,
2401,
793,
13,
13,
29903,
16668,
29899,
392,
29899,
29903,
473,
4367,
315,
8846,
482,
13,
13,
29956,
2817,
315,
2559,
314,
265,
29899,
29934,
1759,
262,
2401,
793,
29892,
29871,
29945,
29889,
29896,
13,
13,
442,
436,
23195,
13,
13,
1451,
21475,
411,
3012,
436,
23195,
322,
25994,
13,
13,
19302,
1524,
10800,
273,
678,
21475,
411,
341,
1878,
18901,
322,
3012,
436,
23195,
13,
13,
5592,
262,
496,
322,
3012,
436,
6946,
360,
666,
13,
13,
29911,
309,
481,
423,
18744,
1691,
411,
3012,
436,
23195,
13,
13,
2887,
862,
351,
375,
411,
360,
823,
265,
478,
1099,
335,
2267,
371,
13,
13,
29937,
350,
13,
13,
29890,
5086,
29892,
1048,
13,
13,
29933,
273,
1648,
322,
3938,
273,
329,
1205,
357,
376,
29902,
346,
315,
1633,
1699,
13,
13,
6500,
309,
13,
13,
9496,
309,
678,
21475,
13,
13,
9496,
309,
349,
548,
323,
1581,
417,
262,
411,
6054,
1522,
273,
317,
1338,
29874,
13,
13,
29907,
1633,
29891,
4335,
1219,
29899,
9496,
309,
317,
1132,
13,
13,
29931,
9857,
29899,
9496,
309,
8142,
747,
329,
411,
365,
6202,
457,
13,
13,
29925,
4778,
13,
13,
11700,
13,
13,
9496,
309,
349,
548,
323,
1581,
417,
262,
411,
6054,
1522,
273,
317,
1338,
29874,
13,
13,
18700,
1522,
273,
678,
2638,
13,
13,
1451,
860,
412,
294,
411,
796,
1682,
305,
2172,
29892,
3938,
22437,
29892,
322,
1551,
291,
13,
13,
29907,
1398,
322,
6054,
1522,
273,
3956,
328,
13,
13,
29907,
1633,
29891,
4335,
1219,
29899,
9496,
309,
317,
1132,
13,
13,
3853,
314,
420,
360,
666,
13,
13,
29923,
28779,
713,
23004,
13,
13,
24599,
1522,
550,
297,
1706,
4245,
23863,
346,
13,
13,
29950,
398,
8366,
322,
17236,
12053,
7413,
15713,
21809,
29899,
29965,
567,
13,
13,
10512,
713,
17236,
300,
519,
317,
1132,
411,
8413,
307,
13,
13,
29931,
331,
2592,
7646,
1522,
550,
411,
838,
8315,
29879,
13,
13,
6816,
271,
2222,
13088,
283,
1026,
13,
13,
5894,
4090,
713,
751,
1789,
29874,
3956,
328,
13,
13,
29925,
272,
15788,
6274,
2255,
13,
13,
2290,
711,
3156,
349,
4981,
294,
13,
13,
2182,
860,
322,
382,
8995,
678,
2638,
13,
13,
2182,
1789,
29874,
411,
476,
744,
29892,
678,
860,
412,
294,
29892,
322,
383,
1187,
13,
13,
29934,
275,
9693,
411,
2155,
314,
420,
13,
13,
21823,
1522,
273,
322,
1528,
28470,
4367,
10914,
3938,
2496,
13863,
8366,
13,
13,
29918,
4149,
884,
29918,
301,
296,
2719,
13,
13,
915,
1389,
13,
13,
3629,
1389,
11202,
870,
29891,
13,
13,
3629,
261,
29899,
28183,
3368,
1522,
1389,
411,
10750,
465,
267,
13,
13,
8754,
804,
2443,
557,
411,
678,
326,
436,
332,
374,
23863,
346,
13,
13,
29967,
21419,
968,
624,
381,
29899,
29943,
719,
13,
13,
29931,
1803,
24551,
29899,
29956,
2390,
14866,
11376,
13,
13,
29924,
1943,
3055,
2379,
804,
2443,
557,
13,
13,
6816,
271,
2135,
317,
1132,
411,
1706,
262,
496,
322,
1459,
4467,
273,
13,
13,
29924,
2172,
2191,
271,
4309,
5989,
13,
13,
28581,
542,
3068,
1522,
1389,
2443,
29893,
411,
7347,
629,
424,
315,
681,
29883,
681,
29892,
29871,
29955,
29889,
29896,
13,
13,
4373,
24777,
2191,
271,
4309,
2142,
13,
13,
2182,
860,
322,
382,
8995,
678,
2638,
13,
13,
29934,
359,
331,
653,
2443,
557,
4116,
1228,
287,
297,
1551,
1080,
13,
13,
29903,
7547,
1182,
2579,
13,
13,
29903,
485,
706,
1522,
1389,
323,
1581,
417,
262,
13,
13,
2713,
1127,
7176,
1522,
1389,
411,
350,
554,
678,
12602,
322,
1704,
307,
1372,
13,
13,
29903,
381,
417,
262,
2443,
557,
411,
315,
1633,
29891,
6912,
643,
328,
728,
23863,
346,
13,
13,
10649,
7584,
624,
3096,
287,
1706,
566,
29879,
13,
13,
7789,
557,
8697,
2443,
29893,
13,
13,
3629,
300,
322,
8413,
307,
3956,
328,
411,
2921,
271,
6561,
968,
13,
13,
3629,
1691,
411,
26048,
402,
1745,
324,
532,
13,
13,
2204,
21043,
29892,
1985,
411,
13,
13,
9539,
495,
2722,
13,
13,
2499,
8315,
29892,
476,
744,
29892,
322,
10924,
16344,
4116,
6983,
583,
13,
13,
6246,
8489,
309,
29895,
29899,
29949,
271,
349,
4564,
6926,
411,
399,
2817,
10924,
16344,
1763,
3262,
13,
13,
29963,
708,
29899,
17104,
719,
612,
468,
4227,
1459,
5444,
1169,
13,
13,
29890,
554,
3060,
29891,
13,
13,
29933,
4708,
287,
323,
974,
29884,
411,
350,
554,
678,
12602,
13,
13,
2713,
1127,
7176,
1522,
1389,
411,
350,
554,
678,
12602,
322,
1704,
307,
1372,
13,
13,
2634,
5921,
29892,
1048,
13,
13,
6729,
617,
5079,
13,
13,
29857,
617,
5079,
411,
435,
2883,
412,
8266,
322,
7455,
506,
13,
13,
29931,
9857,
29899,
9496,
309,
8142,
747,
329,
411,
365,
6202,
457,
13,
13,
11139,
29885,
814,
603,
624,
381,
29899,
29943,
719,
13,
13,
29956,
284,
21305,
29899,
29949,
3881,
4358,
617,
5079,
13,
13,
6729,
6504,
29892,
1048,
13,
13,
12432,
1558,
1379,
14314,
17718,
29892,
379,
4992,
29899,
29933,
1338,
314,
293,
29892,
411,
2921,
271,
6561,
968,
13,
13,
29937,
315,
13,
13,
29883,
8846,
482,
13,
13,
1451,
21475,
411,
8344,
29874,
315,
8846,
482,
322,
390,
625,
1939,
397,
793,
13,
13,
29967,
21419,
968,
624,
381,
29899,
29943,
719,
13,
13,
855,
3096,
287,
8344,
29874,
315,
8846,
482,
21809,
29879,
411,
26048,
29899,
29954,
5621,
23863,
346,
13,
13,
29903,
16668,
29899,
392,
29899,
29903,
473,
4367,
315,
8846,
482,
13,
13,
29918,
4149,
884,
29918,
289,
554,
3060,
29891,
13,
13,
7543,
314,
290,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
8179,
307,
1372,
322,
350,
554,
678,
12602,
29892,
1383,
1127,
7176,
1522,
1389,
411,
13,
13,
1113,
352,
361,
13609,
13,
13,
29924,
11925,
17236,
300,
1849,
411,
402,
5621,
13,
13,
1762,
28470,
9243,
352,
361,
13609,
322,
7455,
506,
13,
13,
1451,
287,
16702,
6561,
968,
8042,
350,
949,
13,
13,
1173,
968,
13,
13,
1451,
287,
16702,
6561,
968,
8042,
350,
949,
13,
13,
26856,
267,
29891,
4673,
29899,
23360,
382,
1505,
8564,
16416,
267,
13,
13,
29907,
327,
8044,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
2517,
293,
16853,
29899,
5568,
678,
21475,
21809,
29899,
29965,
567,
13,
13,
2177,
4467,
273,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
2290,
711,
3156,
349,
4981,
294,
13,
13,
2290,
711,
3156,
29899,
29911,
4347,
6286,
1372,
13,
13,
12636,
554,
29891,
678,
21475,
322,
17236,
300,
519,
7413,
15713,
13,
13,
5592,
262,
496,
7413,
15713,
13,
13,
10840,
790,
678,
538,
322,
26182,
6561,
968,
383,
12123,
532,
13,
13,
28575,
29899,
26856,
968,
751,
436,
267,
13,
13,
1451,
261,
719,
29899,
17104,
719,
14866,
1878,
13,
13,
305,
21475,
13,
13,
9496,
309,
678,
21475,
13,
13,
3629,
261,
29899,
29903,
1760,
287,
678,
21475,
411,
17236,
29887,
583,
13,
13,
1030,
19416,
29892,
7984,
29915,
29879,
25562,
373,
29892,
29871,
29946,
29889,
29896,
29892,
29871,
29896,
29906,
29889,
29896,
13,
13,
1451,
21475,
322,
28126,
332,
3956,
328,
411,
383,
1187,
13,
13,
1451,
21475,
322,
7646,
1551,
291,
476,
774,
6897,
13,
13,
1451,
21475,
322,
17236,
300,
1849,
411,
498,
25395,
29899,
29903,
1760,
287,
4358,
386,
13,
13,
1451,
21475,
315,
21566,
6082,
411,
349,
5427,
13,
13,
1451,
21475,
297,
4335,
1219,
29899,
29956,
457,
23863,
346,
13,
13,
1451,
21475,
476,
555,
29874,
13,
13,
1451,
21475,
1459,
4467,
273,
317,
1132,
13,
13,
1451,
21475,
411,
3012,
436,
23195,
322,
25994,
13,
13,
1451,
21475,
411,
21353,
15816,
29899,
29928,
823,
265,
23863,
346,
13,
13,
1451,
21475,
411,
315,
1633,
29891,
319,
11124,
2497,
349,
4778,
13,
13,
1451,
21475,
411,
360,
1255,
1858,
6762,
322,
317,
482,
13,
13,
1451,
21475,
411,
29871,
29946,
29900,
27397,
1960,
310,
7455,
506,
13,
13,
1451,
21475,
411,
8344,
29874,
315,
8846,
482,
322,
390,
625,
1939,
397,
793,
13,
13,
1451,
21475,
411,
4367,
390,
4692,
16344,
19798,
911,
13,
13,
1451,
488,
273,
678,
21475,
322,
17236,
300,
519,
2443,
29893,
13,
13,
1451,
8233,
678,
21475,
3956,
328,
29892,
29871,
29945,
29889,
29896,
13,
13,
23902,
1255,
678,
21475,
498,
1141,
29879,
13,
13,
18650,
29890,
29899,
9588,
28470,
678,
21475,
13,
13,
14420,
287,
24777,
13088,
1489,
280,
13,
13,
29931,
9857,
678,
21475,
411,
360,
453,
23863,
346,
13,
13,
2517,
293,
16853,
29899,
5568,
678,
21475,
21809,
29899,
29965,
567,
13,
13,
19302,
1524,
10800,
273,
678,
21475,
411,
341,
1878,
18901,
322,
3012,
436,
23195,
13,
13,
12636,
554,
29891,
678,
21475,
322,
17236,
300,
519,
7413,
15713,
13,
13,
855,
3096,
287,
8344,
29874,
315,
8846,
482,
21809,
29879,
411,
26048,
29899,
29954,
5621,
23863,
346,
13,
13,
11139,
29885,
814,
603,
624,
381,
29899,
29943,
719,
13,
13,
29903,
16668,
322,
1706,
4245,
4942,
398,
303,
7358,
13,
13,
29911,
13613,
29891,
9940,
678,
21475,
322,
17236,
300,
519,
476,
774,
6897,
13,
13,
26887,
29899,
29924,
735,
678,
21475,
13,
13,
1349,
1794,
29899,
5568,
678,
21475,
10173,
303,
860,
414,
13,
13,
21599,
271,
9093,
29899,
1451,
21475,
2443,
29893,
13,
13,
305,
2593,
265,
3076,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
305,
2638,
13,
13,
18700,
1522,
273,
678,
2638,
13,
13,
2182,
860,
322,
382,
8995,
678,
2638,
13,
13,
15108,
29915,
29879,
25562,
13,
13,
1433,
4089,
601,
19408,
13,
13,
2204,
14588,
292,
18655,
1849,
13,
13,
2204,
2548,
7375,
15617,
4841,
13,
13,
7543,
314,
290,
13,
13,
305,
21475,
2078,
19416,
29892,
29871,
29946,
29889,
29896,
29892,
29871,
29896,
29906,
29889,
29896,
13,
13,
305,
2593,
265,
3076,
13,
13,
14941,
292,
263,
20710,
798,
1351,
288,
854,
13,
13,
29883,
1398,
13,
13,
29907,
327,
8044,
923,
968,
13,
13,
9832,
1772,
470,
315,
1175,
348,
4259,
292,
1999,
355,
13,
13,
7283,
21616,
805,
1575,
13,
13,
7582,
1259,
1993,
303,
860,
29899,
2311,
10076,
567,
13,
13,
1388,
10344,
2971,
728,
13,
13,
29881,
719,
29899,
307,
579,
292,
302,
8842,
29892,
29871,
29941,
29889,
29896,
29892,
29871,
29947,
29889,
29896,
13,
13,
387,
29887,
18960,
13,
13,
29888,
307,
2256,
10917,
496,
13,
13,
5397,
314,
5516,
2883,
13,
13,
3874,
412,
29888,
9216,
13,
13,
3179,
1847,
7375,
521,
5475,
13,
13,
29926,
29983,
29883,
3304,
13,
13,
446,
29890,
6897,
13,
13,
280,
14541,
13,
13,
2409,
549,
26771,
13,
13,
9813,
8017,
292,
263,
2071,
7324,
13,
13,
339,
1789,
29874,
13,
13,
1745,
21081,
282,
5059,
2202,
19309,
13,
13,
11674,
12070,
694,
397,
793,
13,
13,
307,
579,
292,
6130,
29880,
1562,
1236,
22437,
13,
13,
1883,
331,
653,
13,
13,
29879,
3470,
1617,
13,
13,
845,
21430,
27654,
2135,
29879,
13,
13,
845,
10511,
1459,
4467,
273,
13,
13,
578,
29891,
12507,
346,
13,
13,
303,
1610,
495,
2722,
13,
13,
13424,
1016,
18543,
310,
27654,
13,
13,
15135,
271,
453,
359,
13,
13,
29883,
1398,
13,
13,
15108,
29915,
29879,
6872,
373,
13,
13,
29907,
1398,
322,
6054,
1522,
273,
3956,
328,
13,
13,
5894,
4090,
713,
751,
1789,
29874,
3956,
328,
13,
13,
29925,
272,
15788,
6274,
2255,
13,
13,
9832,
1772,
470,
315,
1175,
348,
4259,
292,
1999,
355,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29937,
360,
13,
13,
29881,
4512,
13,
13,
3853,
314,
420,
360,
666,
13,
13,
5592,
262,
496,
322,
3012,
436,
6946,
360,
666,
13,
13,
21823,
1522,
273,
322,
1528,
28470,
4367,
10914,
3938,
2496,
13863,
8366,
13,
13,
7707,
19363,
13,
13,
2499,
8315,
29892,
476,
744,
29892,
322,
10924,
16344,
4116,
6983,
583,
13,
13,
1451,
261,
719,
29899,
17104,
719,
14866,
1878,
13,
13,
29949,
3881,
29899,
29909,
558,
293,
327,
4116,
6983,
583,
13,
13,
29937,
382,
13,
13,
387,
29887,
24389,
13,
13,
9832,
1772,
382,
1505,
24389,
13,
13,
29954,
7879,
29899,
29943,
3781,
17450,
271,
283,
1924,
13,
13,
28581,
542,
3068,
29899,
5592,
7612,
365,
296,
2719,
322,
17236,
300,
1849,
13,
13,
2008,
8929,
10292,
29879,
13,
13,
387,
3174,
13,
13,
26856,
267,
29891,
4673,
29899,
23360,
382,
1505,
8564,
16416,
267,
13,
13,
29923,
1505,
29879,
411,
4116,
12504,
317,
1485,
482,
29892,
1706,
262,
496,
29892,
322,
25994,
29892,
29871,
29953,
29889,
29896,
13,
13,
387,
29887,
18960,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
10840,
790,
678,
538,
322,
26182,
6561,
968,
383,
12123,
532,
13,
13,
1686,
666,
358,
322,
8492,
13,
13,
29937,
383,
13,
13,
15641,
307,
13,
13,
3629,
300,
322,
8413,
307,
3956,
328,
411,
2921,
271,
6561,
968,
13,
13,
10512,
713,
17236,
300,
519,
317,
1132,
411,
8413,
307,
13,
13,
29943,
2108,
295,
29892,
25994,
29892,
322,
26048,
29892,
315,
397,
411,
13,
13,
15161,
13,
13,
29933,
9919,
12030,
323,
562,
359,
13,
13,
29933,
388,
283,
402,
398,
833,
13,
13,
29933,
9504,
20548,
8142,
747,
329,
13,
13,
8179,
747,
14471,
22639,
23239,
411,
3938,
496,
317,
1338,
29874,
13,
13,
29907,
277,
15816,
29899,
29907,
309,
424,
307,
3956,
3712,
13,
13,
29907,
277,
15816,
1920,
29874,
323,
309,
481,
423,
13,
13,
29907,
397,
297,
7646,
10837,
719,
4358,
386,
13,
13,
29907,
397,
411,
383,
2108,
295,
29892,
25994,
29892,
322,
26048,
13,
13,
24599,
1920,
29874,
8142,
747,
329,
411,
26835,
1706,
262,
496,
13,
13,
3338,
283,
546,
322,
317,
1485,
482,
2443,
29893,
13,
13,
29950,
4992,
287,
3956,
3712,
411,
1706,
7612,
379,
4992,
311,
29893,
317,
1338,
29874,
13,
13,
3624,
1049,
8142,
747,
329,
411,
8579,
9010,
322,
624,
1610,
16344,
317,
1338,
29874,
13,
13,
29931,
9857,
29899,
9496,
309,
8142,
747,
329,
411,
365,
6202,
457,
13,
13,
19302,
1524,
10800,
273,
12030,
2443,
29893,
13,
13,
19302,
1524,
10800,
273,
323,
4347,
476,
774,
6897,
29892,
29871,
29946,
29889,
29896,
13,
13,
29949,
854,
29899,
29943,
1255,
10459,
15161,
975,
922,
1965,
1706,
262,
496,
13,
13,
29925,
457,
11548,
322,
402,
5621,
10082,
29875,
10082,
29875,
13,
13,
2290,
711,
3156,
29899,
29911,
4347,
6286,
1372,
13,
13,
20392,
3712,
297,
7646,
1920,
29874,
13,
13,
20392,
3712,
411,
315,
1633,
29891,
678,
666,
327,
280,
29899,
29949,
3881,
23863,
346,
13,
13,
20392,
3712,
411,
379,
4992,
29899,
29933,
1338,
314,
293,
19798,
911,
13,
13,
20392,
3712,
411,
8836,
265,
29899,
29956,
1008,
29883,
1253,
23863,
346,
13,
13,
5592,
4245,
10459,
15161,
411,
10173,
20452,
322,
25994,
13,
13,
29903,
348,
1460,
14070,
1181,
397,
341,
3610,
927,
13,
13,
29911,
309,
481,
423,
18744,
1691,
411,
3012,
436,
23195,
13,
13,
29911,
309,
481,
423,
411,
349,
3427,
9089,
922,
287,
6781,
504,
322,
349,
457,
11548,
29899,
12810,
542,
912,
317,
1338,
29874,
13,
13,
2308,
449,
411,
4989,
412,
4335,
1219,
6376,
728,
13,
13,
29911,
4347,
411,
4335,
1219,
29899,
29911,
279,
1431,
265,
23863,
346,
13,
13,
1181,
397,
6471,
322,
16330,
6907,
800,
13,
13,
1181,
397,
15332,
2362,
1199,
13,
13,
29943,
12123,
532,
29892,
26182,
678,
538,
322,
26182,
6561,
968,
13,
13,
29888,
9216,
13,
13,
29949,
3881,
29899,
29968,
790,
287,
13329,
383,
21211,
13,
13,
29918,
4149,
884,
2702,
285,
21211,
29918,
13,
13,
29937,
402,
13,
13,
5397,
314,
5516,
2883,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
5397,
506,
13,
13,
1451,
21475,
411,
29871,
29946,
29900,
27397,
1960,
310,
7455,
506,
13,
13,
8754,
804,
2443,
557,
411,
678,
326,
436,
332,
374,
23863,
346,
13,
13,
9588,
28470,
10914,
3938,
2496,
322,
7455,
506,
23863,
346,
13,
13,
1762,
28470,
9243,
352,
361,
13609,
322,
7455,
506,
13,
13,
3460,
261,
13,
13,
29954,
336,
412,
29888,
9216,
411,
6781,
3322,
29891,
402,
5621,
13,
13,
29924,
11925,
17236,
300,
1849,
411,
402,
5621,
13,
13,
3874,
1144,
13,
13,
3629,
300,
322,
8413,
307,
3956,
328,
411,
2921,
271,
6561,
968,
13,
13,
6246,
8489,
309,
29895,
29899,
29949,
271,
349,
4564,
6926,
411,
399,
2817,
10924,
16344,
1763,
3262,
13,
13,
1451,
21475,
322,
28126,
332,
3956,
328,
411,
383,
1187,
13,
13,
10512,
713,
17236,
300,
519,
317,
1132,
411,
8413,
307,
13,
13,
29903,
485,
706,
365,
296,
309,
2443,
29893,
411,
2043,
6381,
13,
13,
29903,
1092,
6574,
322,
402,
768,
29879,
411,
4122,
575,
13,
13,
29918,
4149,
884,
29918,
439,
1789,
29874,
29936,
19408,
13,
13,
29954,
661,
2028,
29892,
624,
1610,
16344,
13,
13,
3874,
412,
29888,
9216,
13,
13,
15108,
29915,
29879,
6872,
373,
13,
13,
29954,
336,
412,
29888,
9216,
411,
6781,
3322,
29891,
402,
5621,
13,
13,
7979,
575,
13,
13,
1451,
21475,
411,
315,
1633,
29891,
319,
11124,
2497,
349,
4778,
13,
13,
23902,
1255,
678,
21475,
498,
1141,
29879,
13,
13,
29968,
487,
273,
29899,
5568,
323,
974,
29884,
411,
19928,
538,
4122,
575,
13,
13,
29931,
1803,
24551,
29899,
29956,
2390,
14866,
11376,
13,
13,
29903,
1092,
6574,
322,
402,
768,
29879,
411,
4122,
575,
13,
13,
10840,
790,
678,
538,
322,
26182,
6561,
968,
383,
12123,
532,
13,
13,
29956,
2817,
9243,
26892,
3956,
328,
411,
323,
974,
29884,
376,
29907,
14608,
787,
1699,
13,
13,
29918,
4149,
884,
29918,
413,
744,
29936,
10917,
496,
13,
13,
629,
8873,
29892,
1048,
13,
13,
29954,
768,
29879,
322,
317,
1092,
6574,
411,
4122,
575,
13,
13,
29937,
379,
13,
13,
354,
4298,
29891,
301,
7004,
1508,
13,
13,
23057,
29899,
354,
4298,
29891,
282,
15328,
380,
481,
793,
13,
13,
8711,
15617,
4841,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29937,
435,
13,
13,
29926,
29983,
29883,
3304,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29937,
476,
13,
13,
29895,
744,
13,
13,
2499,
8315,
29892,
476,
744,
29892,
322,
10924,
16344,
4116,
6983,
583,
13,
13,
26856,
267,
29891,
476,
744,
678,
4512,
13,
13,
29931,
296,
2719,
411,
341,
1878,
18901,
29892,
25994,
29892,
322,
476,
744,
13,
13,
2182,
1789,
29874,
411,
476,
744,
29892,
678,
860,
412,
294,
29892,
322,
383,
1187,
13,
13,
446,
29890,
6897,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29937,
365,
13,
13,
280,
14541,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29931,
9857,
678,
21475,
411,
360,
453,
23863,
346,
13,
13,
29931,
9857,
29899,
29954,
279,
506,
26459,
323,
1581,
417,
262,
13,
13,
2409,
549,
26771,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29931,
331,
2592,
7646,
1522,
550,
411,
838,
8315,
29879,
13,
13,
29880,
296,
2719,
13,
13,
29931,
296,
2719,
411,
341,
1878,
18901,
29892,
25994,
29892,
322,
476,
744,
13,
13,
28581,
542,
3068,
29899,
5592,
7612,
365,
296,
2719,
322,
17236,
300,
1849,
13,
13,
29903,
485,
706,
365,
296,
309,
2443,
29893,
411,
2043,
6381,
13,
13,
29937,
341,
13,
13,
29885,
4524,
13,
13,
29925,
548,
3436,
497,
1080,
411,
341,
4524,
4546,
2212,
13,
13,
1349,
1794,
317,
16668,
390,
625,
411,
341,
4524,
13,
13,
1004,
271,
13,
13,
13424,
1016,
18543,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29918,
4149,
884,
29918,
367,
1389,
29936,
282,
548,
13,
13,
1004,
271,
2135,
29879,
13,
13,
15108,
29915,
29879,
6872,
373,
13,
13,
6816,
271,
2135,
317,
1132,
411,
1706,
262,
496,
322,
1459,
4467,
273,
13,
13,
29925,
272,
5231,
457,
2191,
271,
2135,
29879,
13,
13,
1004,
271,
658,
2142,
13,
13,
29896,
29945,
29899,
8140,
1082,
26459,
2191,
271,
4309,
2142,
13,
13,
29924,
2172,
2191,
271,
4309,
5989,
13,
13,
4373,
24777,
2191,
271,
4309,
2142,
13,
13,
12873,
265,
13,
13,
29950,
4992,
287,
3956,
3712,
411,
1706,
7612,
379,
4992,
311,
29893,
317,
1338,
29874,
13,
13,
9588,
28470,
6286,
265,
317,
1132,
322,
350,
1338,
314,
293,
360,
374,
5617,
280,
13,
13,
29903,
1092,
6574,
322,
14269,
837,
295,
265,
3956,
328,
411,
315,
1682,
2807,
29899,
29931,
603,
478,
1099,
335,
2267,
371,
13,
13,
13076,
798,
1351,
288,
9852,
13,
13,
14941,
292,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
15108,
292,
411,
13,
13,
29885,
1878,
18901,
13,
13,
29931,
296,
2719,
411,
341,
1878,
18901,
29892,
25994,
29892,
322,
476,
744,
13,
13,
19302,
1524,
10800,
273,
678,
21475,
411,
341,
1878,
18901,
322,
3012,
436,
23195,
13,
13,
19302,
1524,
10800,
273,
341,
1878,
18901,
322,
10914,
3938,
22437,
13,
13,
29924,
1878,
8345,
29899,
29999,
1682,
305,
2172,
3975,
359,
411,
4116,
554,
29891,
6760,
655,
13,
13,
2290,
711,
3156,
349,
4981,
294,
13,
13,
2290,
711,
3156,
29899,
29911,
4347,
6286,
1372,
13,
13,
29937,
405,
13,
13,
29940,
496,
359,
29892,
341,
1878,
8345,
29899,
29999,
1682,
305,
2172,
29892,
411,
4116,
554,
29891,
6760,
655,
13,
13,
1217,
397,
793,
13,
13,
1451,
21475,
411,
8344,
29874,
315,
8846,
482,
322,
390,
625,
1939,
397,
793,
13,
13,
29967,
21419,
968,
624,
381,
29899,
29943,
719,
13,
13,
3247,
398,
29899,
29903,
585,
1133,
349,
548,
411,
20021,
17236,
300,
1849,
13,
13,
11674,
12070,
694,
397,
793,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
21305,
29878,
3245,
3483,
952,
267,
13,
13,
29876,
8842,
13,
13,
2499,
8315,
29892,
476,
744,
29892,
322,
10924,
16344,
4116,
6983,
583,
13,
13,
29881,
719,
29899,
307,
579,
292,
29892,
7984,
29915,
29879,
25562,
373,
29892,
29871,
29941,
29889,
29896,
29892,
29871,
29947,
29889,
29896,
13,
13,
29956,
284,
21305,
29899,
29949,
3881,
4358,
617,
5079,
13,
13,
29937,
438,
13,
13,
29949,
271,
29899,
6246,
8489,
309,
29895,
349,
4564,
6926,
411,
399,
2817,
10924,
16344,
1763,
3262,
13,
13,
272,
6916,
13,
13,
3629,
1691,
411,
26048,
402,
1745,
324,
532,
13,
13,
13200,
314,
290,
29899,
29949,
3881,
1858,
6762,
13,
13,
29907,
277,
15816,
29899,
29907,
309,
424,
307,
3956,
3712,
13,
13,
29907,
397,
411,
383,
2108,
295,
29892,
25994,
29892,
322,
26048,
13,
13,
29949,
3881,
29899,
29909,
558,
293,
327,
4116,
6983,
583,
13,
13,
29949,
3881,
29899,
29968,
790,
287,
13329,
383,
21211,
13,
13,
20392,
3712,
411,
315,
1633,
29891,
678,
666,
327,
280,
29899,
29949,
3881,
23863,
346,
13,
13,
855,
3096,
287,
8344,
29874,
315,
8846,
482,
21809,
29879,
411,
26048,
29899,
29954,
5621,
23863,
346,
13,
13,
29911,
974,
29884,
411,
26048,
322,
5678,
331,
653,
19798,
911,
13,
13,
29956,
284,
21305,
29899,
29949,
3881,
4358,
617,
5079,
13,
13,
29937,
349,
13,
13,
29925,
4564,
6926,
29892,
1205,
8489,
309,
29895,
29899,
29949,
271,
29892,
411,
399,
2817,
10924,
16344,
1763,
3262,
13,
13,
29925,
481,
9010,
322,
624,
1610,
16344,
317,
1338,
29874,
29892,
7935,
8142,
747,
329,
411,
13,
13,
2177,
5444,
1169,
29892,
18064,
2292,
719,
612,
468,
4227,
13,
13,
29886,
5427,
13,
13,
1451,
21475,
315,
21566,
6082,
411,
349,
5427,
13,
13,
29950,
398,
8366,
322,
17236,
12053,
7413,
15713,
21809,
29899,
29965,
567,
13,
13,
29931,
9857,
29899,
9496,
309,
8142,
747,
329,
411,
365,
6202,
457,
13,
13,
12636,
554,
29891,
678,
21475,
322,
17236,
300,
519,
7413,
15713,
13,
13,
5592,
262,
496,
7413,
15713,
13,
13,
29918,
4149,
884,
29918,
694,
397,
793,
13,
13,
412,
14520,
13,
13,
8179,
747,
14471,
22639,
23239,
411,
3938,
496,
317,
1338,
29874,
13,
13,
29923,
8995,
3938,
496,
315,
374,
567,
13,
13,
15666,
273,
329,
1205,
357,
322,
10765,
1648,
376,
29902,
346,
315,
1633,
1699,
13,
13,
412,
1503,
13,
13,
29925,
290,
387,
661,
403,
349,
15451,
13,
13,
29963,
273,
2911,
29899,
25433,
3880,
349,
15451,
13,
13,
412,
294,
13,
13,
1451,
21475,
476,
555,
29874,
13,
13,
29924,
524,
287,
3938,
29874,
317,
1132,
411,
612,
468,
4227,
3925,
5168,
29892,
29871,
29941,
29889,
29896,
13,
13,
29903,
688,
279,
317,
8971,
3938,
294,
411,
317,
16668,
29899,
392,
29899,
29903,
473,
23863,
346,
13,
13,
412,
22437,
13,
13,
29857,
617,
5079,
411,
435,
2883,
412,
8266,
322,
7455,
506,
13,
13,
1451,
388,
866,
317,
339,
1161,
322,
3938,
2496,
13088,
1489,
280,
13,
13,
1451,
860,
412,
294,
411,
796,
1682,
305,
2172,
29892,
3938,
22437,
29892,
322,
1551,
291,
13,
13,
24599,
1522,
550,
297,
1706,
4245,
23863,
346,
13,
13,
8711,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
19302,
1524,
10800,
273,
341,
1878,
18901,
322,
10914,
3938,
22437,
13,
13,
4373,
24777,
2191,
271,
4309,
2142,
13,
13,
29886,
711,
29880,
1562,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
9588,
28470,
10914,
3938,
2496,
322,
7455,
506,
23863,
346,
13,
13,
20392,
3712,
411,
315,
1633,
29891,
678,
666,
327,
280,
29899,
29949,
3881,
23863,
346,
13,
13,
29911,
11216,
5974,
349,
548,
13,
13,
26887,
29899,
29924,
735,
678,
21475,
13,
13,
21823,
1522,
273,
322,
1528,
28470,
4367,
10914,
3938,
2496,
13863,
8366,
13,
13,
29925,
4778,
13,
13,
26215,
11548,
13,
13,
1451,
1794,
29899,
5592,
7612,
349,
457,
11548,
5013,
1503,
13,
13,
29925,
457,
11548,
322,
402,
5621,
10082,
29875,
10082,
29875,
13,
13,
29911,
309,
481,
423,
411,
349,
3427,
9089,
922,
287,
6781,
504,
322,
349,
457,
11548,
29899,
12810,
542,
912,
317,
1338,
29874,
13,
13,
572,
6762,
13,
13,
13200,
314,
290,
29899,
29949,
3881,
1858,
6762,
13,
13,
1451,
21475,
411,
360,
1255,
1858,
6762,
322,
317,
482,
13,
13,
1129,
9733,
29892,
1048,
13,
13,
7713,
6381,
29892,
9583,
706,
365,
296,
309,
2443,
29893,
411,
13,
13,
29925,
290,
387,
661,
403,
349,
15451,
13,
13,
29886,
548,
13,
13,
2744,
895,
29899,
29934,
431,
2580,
349,
548,
1528,
579,
13,
13,
9496,
309,
349,
548,
323,
1581,
417,
262,
411,
6054,
1522,
273,
317,
1338,
29874,
13,
13,
3247,
398,
29899,
29903,
585,
1133,
349,
548,
411,
20021,
17236,
300,
1849,
13,
13,
29925,
548,
3436,
497,
1080,
411,
341,
4524,
4546,
2212,
13,
13,
29925,
548,
1528,
579,
411,
17236,
300,
1849,
13,
13,
29925,
548,
323,
1581,
417,
262,
624,
3096,
287,
411,
1706,
262,
496,
29892,
349,
457,
405,
8842,
29892,
322,
8991,
29899,
29928,
1255,
25994,
29892,
29871,
29896,
29906,
29889,
29896,
13,
13,
29911,
11216,
5974,
349,
548,
13,
13,
17765,
20452,
13,
13,
29931,
331,
2592,
2439,
2580,
10173,
20452,
13,
13,
10649,
7584,
624,
3096,
287,
1706,
566,
29879,
13,
13,
5592,
4245,
10459,
15161,
411,
10173,
20452,
322,
25994,
13,
13,
29918,
4149,
884,
29918,
14225,
3104,
20452,
13,
13,
29925,
327,
303,
860,
414,
29892,
498,
1794,
29899,
5568,
678,
21475,
13,
13,
29886,
5059,
2202,
13,
13,
808,
262,
29892,
11077,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29918,
4149,
884,
29918,
521,
21475,
29936,
7013,
1989,
13,
13,
29937,
660,
13,
13,
2182,
436,
267,
29892,
12753,
29899,
26856,
968,
13,
13,
339,
1789,
29874,
13,
13,
10644,
1398,
317,
339,
1161,
624,
3096,
287,
411,
315,
661,
16344,
29899,
855,
566,
7176,
751,
1789,
29874,
29892,
29871,
29896,
29906,
29889,
29896,
13,
13,
15108,
29915,
29879,
6872,
373,
13,
13,
5894,
4090,
713,
751,
1789,
29874,
3956,
328,
13,
13,
2182,
1789,
29874,
411,
476,
744,
29892,
678,
860,
412,
294,
29892,
322,
383,
1187,
13,
13,
29937,
390,
13,
13,
3665,
17006,
13,
13,
1388,
10344,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29968,
487,
273,
29899,
5568,
323,
974,
29884,
411,
19928,
538,
4122,
575,
13,
13,
10303,
17236,
300,
519,
3436,
2330,
13,
13,
29911,
1581,
4957,
17006,
411,
8836,
265,
322,
341,
524,
13,
13,
3417,
29886,
495,
2722,
13,
13,
1451,
261,
719,
29899,
17104,
719,
14866,
1878,
13,
13,
1451,
21475,
411,
4367,
390,
4692,
16344,
19798,
911,
13,
13,
29963,
708,
2292,
719,
612,
468,
4227,
1459,
5444,
1169,
13,
13,
11674,
13,
13,
1433,
4089,
601,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
14420,
287,
24777,
13088,
1489,
280,
13,
13,
29925,
272,
5231,
457,
2191,
271,
2135,
29879,
13,
13,
29934,
275,
9693,
411,
2155,
314,
420,
13,
13,
11139,
29885,
814,
603,
624,
381,
29899,
29943,
719,
13,
13,
1349,
1794,
317,
16668,
390,
625,
411,
341,
4524,
13,
13,
29963,
387,
300,
13956,
6662,
390,
625,
13,
13,
307,
579,
292,
29892,
1048,
13,
13,
1883,
331,
653,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29937,
317,
13,
13,
29879,
3470,
1617,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
20392,
328,
360,
1253,
292,
29892,
12311,
4177,
19521,
13,
13,
19585,
7925,
13,
13,
3629,
300,
322,
8413,
307,
3956,
328,
411,
2921,
271,
6561,
968,
13,
13,
1451,
21475,
322,
28126,
332,
3956,
328,
411,
383,
1187,
13,
13,
1451,
8233,
678,
21475,
3956,
328,
29892,
29871,
29945,
29889,
29896,
13,
13,
29907,
1398,
322,
6054,
1522,
273,
3956,
328,
13,
13,
5894,
4090,
713,
751,
1789,
29874,
3956,
328,
13,
13,
29903,
1092,
6574,
322,
14269,
837,
295,
265,
3956,
328,
411,
315,
1682,
2807,
29899,
29931,
603,
478,
1099,
335,
2267,
371,
13,
13,
29956,
2817,
9243,
26892,
3956,
328,
411,
323,
974,
29884,
376,
29907,
14608,
787,
1699,
13,
13,
29903,
392,
16416,
267,
29892,
6561,
267,
29891,
4673,
29899,
23360,
382,
1505,
13,
13,
29903,
585,
346,
29892,
1528,
28470,
10914,
3938,
2496,
322,
7455,
506,
13,
13,
29879,
1485,
1179,
13,
13,
29923,
1505,
29879,
411,
4116,
12504,
317,
1485,
482,
29892,
1706,
262,
496,
29892,
322,
25994,
29892,
29871,
29953,
29889,
29896,
13,
13,
3338,
283,
546,
322,
317,
1485,
482,
2443,
29893,
13,
13,
344,
5779,
29892,
15589,
29899,
307,
579,
292,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
2008,
8929,
10292,
29879,
13,
13,
15903,
15161,
13,
13,
29933,
388,
283,
402,
398,
833,
13,
13,
29924,
1558,
1379,
17278,
287,
297,
399,
457,
13,
13,
29903,
1092,
6574,
322,
402,
768,
29879,
411,
4122,
575,
13,
13,
29903,
1092,
6574,
322,
14269,
837,
295,
265,
3956,
328,
411,
315,
1682,
2807,
29899,
29931,
603,
478,
1099,
335,
2267,
371,
13,
13,
29903,
348,
1460,
14070,
1181,
397,
341,
3610,
927,
13,
13,
29903,
16668,
322,
27378,
29891,
317,
1052,
417,
567,
13,
13,
808,
7324,
29879,
29892,
288,
854,
8017,
292,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
16973,
11376,
29892,
365,
1803,
24551,
29899,
29956,
2390,
13,
13,
28544,
7984,
414,
29892,
7984,
292,
411,
13,
13,
3844,
6983,
583,
13,
13,
2499,
8315,
29892,
476,
744,
29892,
322,
10924,
16344,
4116,
6983,
583,
13,
13,
29949,
3881,
29899,
29909,
558,
293,
327,
4116,
6983,
583,
13,
13,
29879,
4410,
13,
13,
6246,
725,
329,
317,
339,
1161,
322,
12113,
317,
1132,
13,
13,
1451,
21475,
1459,
4467,
273,
317,
1132,
13,
13,
29907,
1633,
29891,
4335,
1219,
29899,
9496,
309,
317,
1132,
13,
13,
10512,
713,
17236,
300,
519,
317,
1132,
411,
8413,
307,
13,
13,
6816,
271,
2135,
317,
1132,
411,
1706,
262,
496,
322,
1459,
4467,
273,
13,
13,
29924,
524,
287,
3938,
29874,
317,
1132,
411,
612,
468,
4227,
3925,
5168,
29892,
29871,
29941,
29889,
29896,
13,
13,
9588,
28470,
6286,
265,
317,
1132,
322,
350,
1338,
314,
293,
360,
374,
5617,
280,
13,
13,
29979,
468,
4227,
15853,
29886,
496,
29877,
13,
13,
578,
29891,
12507,
346,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
1028,
1575,
29892,
2181,
21616,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
1028,
262,
496,
13,
13,
29923,
1505,
29879,
411,
4116,
12504,
317,
1485,
482,
29892,
1706,
262,
496,
29892,
322,
25994,
29892,
29871,
29953,
29889,
29896,
13,
13,
29888,
307,
2256,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
24599,
1920,
29874,
8142,
747,
329,
411,
26835,
1706,
262,
496,
13,
13,
6816,
271,
2135,
317,
1132,
411,
1706,
262,
496,
322,
1459,
4467,
273,
13,
13,
29949,
854,
29899,
29943,
1255,
10459,
15161,
975,
922,
1965,
1706,
262,
496,
13,
13,
29925,
548,
323,
1581,
417,
262,
624,
3096,
287,
411,
1706,
262,
496,
29892,
349,
457,
405,
8842,
29892,
322,
8991,
29899,
29928,
1255,
25994,
29892,
29871,
29896,
29906,
29889,
29896,
13,
13,
29934,
275,
9693,
411,
2155,
314,
420,
13,
13,
5592,
262,
496,
322,
3012,
436,
6946,
360,
666,
13,
13,
5592,
262,
496,
7413,
15713,
13,
13,
26613,
1161,
13,
13,
10644,
1398,
317,
339,
1161,
624,
3096,
287,
411,
315,
661,
16344,
29899,
855,
566,
7176,
751,
1789,
29874,
29892,
29871,
29896,
29906,
29889,
29896,
13,
13,
6246,
725,
329,
317,
339,
1161,
322,
12113,
317,
1132,
13,
13,
1451,
388,
866,
317,
339,
1161,
322,
3938,
2496,
13088,
1489,
280,
13,
13,
29925,
272,
15788,
6274,
2255,
13,
13,
29934,
275,
9693,
411,
2155,
314,
420,
13,
13,
2008,
8929,
10292,
29879,
13,
13,
855,
3096,
287,
678,
388,
866,
317,
339,
1161,
13,
13,
29918,
4149,
884,
29918,
503,
1682,
305,
2172,
13,
13,
1655,
11500,
29892,
1048,
13,
13,
303,
809,
292,
29892,
1048,
13,
13,
303,
809,
29879,
13,
13,
29933,
388,
283,
402,
398,
833,
13,
13,
3629,
1389,
11202,
870,
29891,
13,
13,
1451,
488,
273,
678,
21475,
322,
17236,
300,
519,
2443,
29893,
13,
13,
29923,
28779,
713,
23004,
13,
13,
3338,
283,
546,
322,
317,
1485,
482,
2443,
29893,
13,
13,
6816,
271,
2222,
13088,
283,
1026,
13,
13,
19302,
1524,
10800,
273,
12030,
2443,
29893,
13,
13,
28581,
542,
3068,
1522,
1389,
2443,
29893,
411,
7347,
629,
424,
315,
681,
29883,
681,
29892,
29871,
29955,
29889,
29896,
13,
13,
29925,
272,
15788,
6274,
2255,
13,
13,
29903,
485,
706,
365,
296,
309,
2443,
29893,
411,
2043,
6381,
13,
13,
7789,
557,
8697,
2443,
29893,
13,
13,
21599,
271,
9093,
29899,
1451,
21475,
2443,
29893,
13,
13,
303,
381,
29899,
29888,
719,
292,
29892,
1048,
13,
13,
303,
1610,
495,
2722,
13,
13,
15108,
29915,
29879,
6872,
373,
13,
13,
29950,
4992,
287,
624,
1610,
495,
2722,
411,
838,
8315,
29879,
13,
13,
3624,
1049,
8142,
747,
329,
411,
8579,
9010,
322,
624,
1610,
16344,
317,
1338,
29874,
13,
13,
855,
1610,
16344,
6274,
2028,
13,
13,
29903,
688,
279,
317,
8971,
3938,
294,
411,
317,
16668,
29899,
392,
29899,
29903,
473,
23863,
346,
13,
13,
29879,
16668,
3104,
20452,
13,
13,
23902,
1255,
678,
21475,
498,
1141,
29879,
13,
13,
29903,
2438,
22741,
317,
16668,
10173,
20452,
13,
13,
29903,
16668,
10173,
1219,
383,
2722,
411,
10837,
719,
4671,
3262,
23863,
346,
13,
13,
10840,
790,
678,
538,
322,
26182,
6561,
968,
383,
12123,
532,
13,
13,
29937,
323,
13,
13,
21229,
359,
13,
13,
29933,
9919,
12030,
323,
562,
359,
13,
13,
29911,
11216,
5974,
349,
548,
13,
13,
517,
21154,
13,
13,
29933,
4708,
287,
323,
974,
29884,
411,
350,
554,
678,
12602,
13,
13,
29907,
1633,
29891,
4335,
1219,
29899,
9496,
309,
317,
1132,
13,
13,
29968,
487,
273,
29899,
5568,
323,
974,
29884,
411,
19928,
538,
4122,
575,
13,
13,
29924,
1878,
8345,
29899,
29999,
1682,
305,
2172,
3975,
359,
411,
4116,
554,
29891,
6760,
655,
13,
13,
29911,
974,
29884,
297,
7646,
1551,
291,
4358,
386,
13,
13,
29911,
974,
29884,
411,
26048,
322,
5678,
331,
653,
19798,
911,
13,
13,
29963,
387,
300,
13956,
6662,
390,
625,
13,
13,
29963,
708,
2292,
719,
612,
468,
4227,
1459,
5444,
1169,
13,
13,
29956,
2817,
9243,
26892,
3956,
328,
411,
323,
974,
29884,
376,
29907,
14608,
787,
1699,
13,
13,
15135,
271,
453,
359,
13,
13,
15108,
29915,
29879,
6872,
373,
13,
13,
21599,
271,
9093,
29899,
1451,
21475,
2443,
29893,
13,
13,
15135,
20452,
13,
13,
29857,
2356,
28532,
2356,
25994,
13,
13,
1451,
21475,
297,
4335,
1219,
29899,
29956,
457,
23863,
346,
13,
13,
1451,
21475,
411,
3012,
436,
23195,
322,
25994,
13,
13,
29907,
397,
411,
383,
2108,
295,
29892,
25994,
29892,
322,
26048,
13,
13,
29907,
1633,
29891,
4335,
1219,
29899,
9496,
309,
317,
1132,
13,
13,
9832,
1772,
382,
1505,
24389,
13,
13,
29923,
1505,
29879,
411,
4116,
12504,
317,
1485,
482,
29892,
1706,
262,
496,
29892,
322,
25994,
29892,
29871,
29953,
29889,
29896,
13,
13,
29931,
296,
2719,
411,
341,
1878,
18901,
29892,
25994,
29892,
322,
476,
744,
13,
13,
5592,
4245,
10459,
15161,
411,
10173,
20452,
322,
25994,
13,
13,
26887,
29899,
29924,
735,
678,
21475,
13,
13,
2308,
449,
411,
4989,
412,
4335,
1219,
6376,
728,
13,
13,
29911,
4347,
411,
4335,
1219,
29899,
29911,
279,
1431,
265,
23863,
346,
13,
13,
29979,
468,
4227,
15853,
29886,
496,
29877,
13,
13,
29873,
441,
21338,
13,
13,
29933,
9919,
12030,
323,
562,
359,
13,
13,
29924,
1878,
8345,
29899,
29999,
1682,
305,
2172,
3975,
359,
411,
4116,
554,
29891,
6760,
655,
13,
13,
29911,
11216,
5974,
349,
548,
13,
13,
29873,
332,
1989,
13,
13,
29896,
29945,
29899,
8140,
1082,
26459,
2191,
271,
4309,
2142,
13,
13,
29931,
9857,
29899,
29954,
279,
506,
26459,
323,
1581,
417,
262,
13,
13,
29925,
272,
5231,
457,
2191,
271,
2135,
29879,
13,
13,
29918,
4149,
884,
29918,
872,
375,
1179,
13,
13,
29937,
478,
13,
13,
345,
657,
1849,
13,
13,
3629,
261,
29899,
29903,
1760,
287,
678,
21475,
411,
17236,
29887,
583,
13,
13,
1451,
21475,
322,
17236,
300,
1849,
411,
498,
25395,
29899,
29903,
1760,
287,
4358,
386,
13,
13,
1451,
488,
273,
678,
21475,
322,
17236,
300,
519,
2443,
29893,
13,
13,
7582,
1259,
1993,
303,
860,
29899,
2311,
10076,
567,
29892,
7984,
29915,
29879,
6872,
373,
13,
13,
29950,
398,
8366,
322,
17236,
12053,
7413,
15713,
21809,
29899,
29965,
567,
13,
13,
10512,
713,
17236,
300,
519,
317,
1132,
411,
8413,
307,
13,
13,
29924,
11925,
17236,
300,
1849,
411,
402,
5621,
13,
13,
3247,
398,
29899,
29903,
585,
1133,
349,
548,
411,
20021,
17236,
300,
1849,
13,
13,
29925,
548,
1528,
579,
411,
17236,
300,
1849,
13,
13,
10303,
17236,
300,
519,
3436,
2330,
13,
13,
12636,
554,
29891,
678,
21475,
322,
17236,
300,
519,
7413,
15713,
13,
13,
29911,
13613,
29891,
9940,
678,
21475,
322,
17236,
300,
519,
476,
774,
6897,
13,
13,
29963,
387,
300,
13956,
6662,
390,
625,
13,
13,
29918,
4149,
884,
2702,
18655,
1849,
29918,
13,
13,
345,
657,
13956,
9953,
2406,
13,
13,
18700,
1522,
273,
678,
2638,
13,
13,
29933,
4708,
287,
323,
974,
29884,
411,
350,
554,
678,
12602,
13,
13,
1451,
860,
412,
294,
411,
796,
1682,
305,
2172,
29892,
3938,
22437,
29892,
322,
1551,
291,
13,
13,
29923,
28779,
713,
23004,
13,
13,
29950,
398,
8366,
322,
17236,
12053,
7413,
15713,
21809,
29899,
29965,
567,
13,
13,
29968,
487,
273,
29899,
5568,
323,
974,
29884,
411,
19928,
538,
4122,
575,
13,
13,
29931,
296,
2719,
411,
341,
1878,
18901,
29892,
25994,
29892,
322,
476,
744,
13,
13,
6816,
271,
2222,
13088,
283,
1026,
13,
13,
28581,
542,
3068,
29899,
5592,
7612,
365,
296,
2719,
322,
17236,
300,
1849,
13,
13,
29924,
1878,
8345,
29899,
29999,
1682,
305,
2172,
3975,
359,
411,
4116,
554,
29891,
6760,
655,
13,
13,
29925,
272,
15788,
6274,
2255,
13,
13,
2290,
711,
3156,
349,
4981,
294,
13,
13,
2182,
1789,
29874,
411,
476,
744,
29892,
678,
860,
412,
294,
29892,
322,
383,
1187,
13,
13,
29934,
275,
9693,
411,
2155,
314,
420,
13,
13,
29903,
485,
706,
365,
296,
309,
2443,
29893,
13,
13,
2008,
8929,
10292,
29879,
13,
13,
5592,
262,
496,
7413,
15713,
13,
13,
855,
3096,
287,
678,
388,
866,
317,
339,
1161,
13,
13,
29911,
974,
29884,
297,
7646,
1551,
291,
4358,
386,
13,
13,
29911,
974,
29884,
411,
26048,
322,
5678,
331,
653,
19798,
911,
13,
13,
29963,
387,
300,
13956,
6662,
390,
625,
13,
13,
29937,
612,
13,
13,
29891,
468,
4227,
13,
13,
29954,
7285,
4177,
19521,
3956,
328,
360,
1253,
292,
13,
13,
29963,
708,
2292,
719,
612,
468,
4227,
1459,
5444,
1169,
13,
13,
29979,
468,
4227,
15853,
29886,
496,
29877,
13,
13,
29937,
796,
13,
13,
29920,
1682,
305,
2172,
13,
13,
1451,
860,
412,
294,
411,
796,
1682,
305,
2172,
29892,
3938,
22437,
29892,
322,
1551,
291,
13,
13,
29954,
7879,
29899,
29943,
3781,
17450,
271,
283,
1924,
13,
13,
29924,
1878,
8345,
29899,
29999,
1682,
305,
2172,
3975,
359,
411,
4116,
554,
29891,
6760,
655,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
AMSA Council
From the 14th to the 16th of March the President of MANDUS (Bella Williams), Chris Lemon (NSWMSC representative) and myself (AMSA representative) represented the University of Notre Dame Sydney at our first AMSA council.
It was an extremely full agenda and raised many pertinent issues currently facing medical students around Australia. The major policies that were discussed and debated included internship availability, students mental health and wellbeing, fee deregulation, quality of clinical placements, funding of medical schools and the recent increase in the number of medical students Australia wide and how to manage this. There was also discussion around the introduction of a sexual harassment policy to be potentially implemented at the next council in July. It was a great experience and voting on behalf of the students and representing the University on many issues facing student currently and in future. It was also a fantastic opportunity to network with many other medical school representatives the views of UNDS with them all. I look forward to the next council! | [
1,
319,
4345,
29909,
8831,
13,
13,
4591,
278,
29871,
29896,
29946,
386,
304,
278,
29871,
29896,
29953,
386,
310,
4779,
278,
7178,
310,
341,
9468,
3308,
313,
29933,
3547,
11648,
511,
12821,
8836,
265,
313,
3059,
29956,
4345,
29907,
21097,
29897,
322,
6142,
313,
29909,
4345,
29909,
21097,
29897,
9875,
278,
3014,
310,
24337,
360,
420,
16198,
472,
1749,
937,
319,
4345,
29909,
18701,
29889,
13,
13,
3112,
471,
385,
14154,
2989,
946,
8395,
322,
10425,
1784,
13499,
8946,
5626,
5279,
14870,
16083,
8041,
2820,
8314,
29889,
450,
4655,
24833,
393,
892,
15648,
322,
2553,
630,
5134,
2836,
3527,
20847,
3097,
29892,
8041,
19119,
9045,
322,
1532,
915,
292,
29892,
27684,
589,
387,
2785,
29892,
11029,
310,
24899,
936,
2174,
29883,
4110,
29892,
5220,
292,
310,
16083,
12462,
322,
278,
7786,
7910,
297,
278,
1353,
310,
16083,
8041,
8314,
9377,
322,
920,
304,
10933,
445,
29889,
1670,
471,
884,
10679,
2820,
278,
18707,
310,
263,
18287,
4023,
465,
358,
8898,
304,
367,
19998,
8762,
472,
278,
2446,
18701,
297,
5468,
29889,
739,
471,
263,
2107,
7271,
322,
28931,
373,
2306,
3131,
310,
278,
8041,
322,
15783,
278,
3014,
373,
1784,
5626,
14870,
8368,
5279,
322,
297,
5434,
29889,
739,
471,
884,
263,
13568,
6288,
15130,
304,
3564,
411,
1784,
916,
16083,
3762,
2755,
5056,
278,
8386,
310,
501,
2797,
29903,
411,
963,
599,
29889,
306,
1106,
6375,
304,
278,
2446,
18701,
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
] |
418 N.E.2d 1190 (1981)
George SNIHUROWYCZ, Defendant-Appellant,
v.
AAMCO TRANSMISSIONS, Inc., Plaintiff-Appellee.
No. 3-1079A280.
Court of Appeals of Indiana, Third District.
April 6, 1981.
Gordon A. Etzler, F. Joseph Jaskowiak, Hoeppner, Wagner & Evans, Valparaiso, for defendant-appellant.
John P. McQuillan, Spangler, Jennings, Spangler & Dougherty, P.C., Merrillville, for plaintiff-appellee.
GARRARD, Judge.
On December 15, 1975, AAMCO Transmissions, Inc. entered a franchise agreement with George S. Snihurowycz. For the next several years, Snihurowycz operated an AAMCO center in Valparaiso, Indiana. However, on March 30, 1979 AAMCO notified Snihurowycz that it was terminating the franchise agreement. Shortly thereafter, this suit was initiated. On September 18, 1977, at the request of AAMCO, the Porter Superior Court issued an injunction against Snihurowycz ordering him to discontinue use of the AAMCO name in operating his business. In addition, the court ordered Snihurowycz to deposit with the clerk of the court $6,000 due AAMCO in franchise fees which he had withheld from the company.
Snihurowycz appeals the trial court's order, arguing that:
*1191 1. AAMCO, in light of IC XX-X-XX-XX, lacked capacity to seek an injunction in Indiana;
2. The injunction was contrary to law, since AAMCO had failed to comply with IC 23-2-2.7-3, in terminating his franchise; and
3. The order requiring him to deposit $6,000 with the clerk of the court is contrary to law, since it constitutes a "prejudgment order of attachment" in violation of IC XX-X-XX-X.
I.
AAMCO filed its suit against Snihurowycz on May 24, 1979. As an affirmative defense, Snihurowycz asserted that pursuant to IC XX-X-XX-XX, AAMCO lacked capacity to prosecute the action in Indiana because it was "a foreign corporation transacting business in [the] state without procuring a certificate of admission." On appeal, Snihurowycz again raises the issue.
IC XX-X-XX-XX provides:
"Penalties No foreign corporation transacting business in this state without procuring a certificate of admission or, if such a certificate has been procured, after its certificate of admission has been withdrawn or revoked, shall maintain any suit, action or proceeding in any of the courts of this state upon any demand, whether arising out of contract or tort; and every such corporation so transacting business shall be liable by reason thereof to a penalty of not exceeding ten thousand dollars [$10,000], to be recovered in any court of competent jurisdiction in an action to be begun and prosecuted by the attorney-general in any county in which such business was transacted.
If any foreign corporation shall transact business in this state without procuring a certificate of admission, or, if a certificate has been procured, after its certificate has been withdrawn or revoked, or shall transact any business not authorized by such certificate, such corporation shall not be entitled to maintain any suit or action at law or in equity upon any claim, legal or equitable, whether arising out of contract or tort, in any court in this state; and it shall be the duty of the attorney-general, upon being advised that any foreign corporation is so transacting business in this state, to bring action in the circuit or superior court of Marion County for an injunction to restrain it from transacting such unauthorized business and for the annulment of its certificate of admission if one has been procured.
Any agent of any foreign corporation who shall transact for such corporation any business in this state before it shall have procured a certificate of admission or after its certificate shall have been withdrawn or revoked, shall be deemed guilty of a misdemeanor and upon conviction thereof shall be fined in any amount not exceeding one hundred dollars [$100] for each and every such offense."
AAMCO admits it is a foreign corporation, and that it did not procure a certificate of admission. The company vigorously denies it was transacting business in Indiana within the meaning of the statute. However, we need not decide the point because we believe Snihurowycz waived his right to contest AAMCO's capacity to bring the suit by accepting the trial court's jurisdiction over the case.
When AAMCO filed its suit against Snihurowycz, a similar action, filed by the CHAAMCO Service Corporation, was already pending. On July 12, 1979, Snihurowycz petitioned to have the two suits consolidated, and when the petition was granted, he agreed to a stipulation providing:
"Defendant having filed Motion to Consolidate, parties now agree that proceedings in Cause No. 79-PSC-1509 to [be] transferred to Cause No. 79-PSC-1057 and that Aamco Transmissions, Inc., be listed as co-plaintiff in Cause No. 79-PSC-1057, and that the Court in Cause No. 79-PSC-1057, shall have jurisdiction over the parties Chaamco Service Corp., Aamco Transmission, Inc. and George Snihurowycz.
/s/ Raymond D. Kickbush, Judge
Porter Superior Court"
*1192 We said in Wildwood Park Community Ass'n. v. Fort Wayne (1979), Ind. App., 396 N.E.2d 678, that:
"The legal capacity of a party to prosecute its claim is a matter which affects the trial court's jurisdiction over the particular case not its jurisdiction over the subject matter. Board of Trustees, Etc. v. City of Fort Wayne (1978), Ind., 375 N.E.2d 1112, 1117; Farley v. Farley (1973), 157 Ind. App. 385, 300 N.E.2d 375, 383. Unlike subject matter jurisdiction, which cannot be waived by a party and may be raised, sua sponte, by the court, jurisdiction over the particular case may be waived by the failure to make a specific and timely objection. Board of Trustees, Etc. v. City of Fort Wayne, supra; Decatur County R.E. Mem. Corp. v. Public Service Co. (1971), 150 Ind. App. 193, 275 N.E.2d 857, 860."
By stipulating that the trial court had jurisdiction over AAMCO and himself, Snihurowycz waived his right to contest the company's legal capacity to bring the suit.
II.
Snihurowycz argues the trial court should not have issued an injunction at AAMCO's request because the company violated IC 23-2-2.7-3, which provides:
"Termination or nonrenewal Notice. Unless otherwise provided in the agreement, any termination of a franchise or election not to renew a franchise must be made on at least ninety [90] days' notice."
The argument is without merit. There is no evidence AAMCO violated the statute. As Snihurowycz admits, the company terminated his franchise pursuant to Paragraph 18(a) in the franchise agreement, which provides:
"This agreement shall immediately terminate upon receipt by licensee of written notice of termination...."
Thus, the agreement did "otherwise provide" for termination, and AAMCO was not required to give Snihurowycz 90 days' notice. There is no requirement, as appellant suggests, that the alternative provided in the agreement guarantee at least some advance notice if the 90 day period is to be avoided.
III.
At the preliminary injunction hearing, Snihurowycz admitted he had not paid at least $6,000 due AAMCO in franchise fees. In response, the court issued the following order:
"9. Defendant will deposit with the Clerk of the Court the sum of money in the amount of approximately $6,000.00 which defendant has testified that he has withheld from Aamco as franchise fees, and which defendant testified he has accumulated and kept in his name."
Snihurowycz maintains the order was "contrary to law" because it represents a "prejudgment order of attachment, contrary to the requirements of IC XX-X-XX-X." We agree.
The order clearly is one of attachment, which may be defined as "an involuntary dispossession of the defendant prior to any adjudication of the rights of the plaintiff, that is, a seizure in advance of trial and judgment." 6 Am.Jur.2d Attachment and Garnishment § 1 at p. 560. Though Snihurowycz admits money was due AAMCO, nevertheless, the actual monies referred to were his until properly levied upon pursuant to judicial process.[1] Attachments of the sort ordered by the trial court in this case are authorized by IC XX-X-XX-X et seq. However, as Snihurowycz notes, there is no evidence that the trial court followed the proper procedure set out in the statute for ordering an attachment. For example, no affidavits were filed by AAMCO pursuant to IC XX-X-XX-Xa. Therefore, we believe the order was improperly issued and the $6,000 paid to the clerk of the court should be returned to Snihurowycz pending further action.
*1193 AAMCO seeks to sustain the court's order by reference to IC XX-X-XX-X, which provides:
"Deposit of money in court. When it is admitted by the pleading or examination of a party that he has in his possession or under his control any money or other thing capable of delivery, which, being the subject of the litigation, is held by him as trustee for another party, or which belongs or is due to another party, the court, or the judge thereof in vacation, may order the same to be deposited in court or with the clerk thereof, in vacation, or delivered to such party, with or without security, subject to the further order of the court or the judge thereof."
However, we believe this section of the code is applicable only in receivership proceedings (appearing as it does as part of the chapter entitled Receivers and Deposits in Courts). It has no independent general application making it available in this proceeding.
Further, AAMCO argues the court was entitled to issue its order as an exercise of its equitable powers. We are unaware of any authorization for the court's action in equity, and AAMCO has failed to provide us with any.
The trial court's injunction is affirmed, except as to its order requiring Snihurowycz to deposit $6,000 with the clerk of its court.
Affirmed in part, reversed in part.
HOFFMAN, P.J., and STATON, J., concur.
NOTES
[1] Snihurowycz apparently claims a set off, arguing that AAMCO owes him several thousand dollars for "intershop work."
| [
1,
29871,
13,
29946,
29896,
29947,
405,
29889,
29923,
29889,
29906,
29881,
29871,
29896,
29896,
29929,
29900,
313,
29896,
29929,
29947,
29896,
29897,
13,
7999,
3890,
317,
12916,
29950,
29965,
25180,
29979,
29907,
29999,
29892,
5282,
5818,
29899,
2052,
514,
424,
29892,
13,
29894,
29889,
13,
29909,
5194,
3217,
10014,
2190,
29903,
10403,
13507,
29903,
29892,
9266,
1696,
13494,
524,
2593,
29899,
2052,
1808,
29872,
29889,
13,
3782,
29889,
29871,
29941,
29899,
29896,
29900,
29955,
29929,
29909,
29906,
29947,
29900,
29889,
13,
29907,
14316,
310,
2401,
29872,
1338,
310,
21817,
29892,
18008,
7457,
29889,
13,
29909,
3193,
29871,
29953,
29892,
29871,
29896,
29929,
29947,
29896,
29889,
13,
29954,
14224,
319,
29889,
8748,
29920,
1358,
29892,
383,
29889,
6936,
435,
1278,
340,
24061,
29892,
379,
7297,
407,
1089,
29892,
25439,
669,
24056,
29892,
2630,
862,
1759,
29877,
29892,
363,
822,
5818,
29899,
932,
514,
424,
29889,
13,
11639,
349,
29889,
4052,
2182,
453,
273,
29892,
1706,
574,
1358,
29892,
23774,
886,
29892,
1706,
574,
1358,
669,
360,
820,
814,
29891,
29892,
349,
29889,
29907,
1696,
341,
3127,
453,
4909,
29892,
363,
2174,
524,
2593,
29899,
932,
1808,
29872,
29889,
13,
29954,
1718,
29934,
17011,
29892,
26817,
29889,
13,
2951,
5846,
29871,
29896,
29945,
29892,
29871,
29896,
29929,
29955,
29945,
29892,
319,
5194,
3217,
4103,
29885,
6847,
29892,
9266,
29889,
7802,
263,
23272,
895,
17327,
411,
5122,
317,
29889,
317,
1240,
6905,
798,
6955,
29889,
1152,
278,
2446,
3196,
2440,
29892,
317,
1240,
6905,
798,
6955,
19623,
385,
319,
5194,
3217,
4818,
297,
2630,
862,
1759,
29877,
29892,
21817,
29889,
2398,
29892,
373,
4779,
29871,
29941,
29900,
29892,
29871,
29896,
29929,
29955,
29929,
319,
5194,
3217,
451,
2164,
317,
1240,
6905,
798,
6955,
393,
372,
471,
6624,
1218,
278,
23272,
895,
17327,
29889,
13899,
368,
727,
7045,
29892,
445,
14726,
471,
14511,
630,
29889,
1551,
3839,
29871,
29896,
29947,
29892,
29871,
29896,
29929,
29955,
29955,
29892,
472,
278,
2009,
310,
319,
5194,
3217,
29892,
278,
7102,
357,
5670,
1611,
9245,
16610,
385,
10899,
651,
2750,
317,
1240,
6905,
798,
6955,
20520,
1075,
304,
766,
19878,
671,
310,
278,
319,
5194,
3217,
1024,
297,
13598,
670,
5381,
29889,
512,
6124,
29892,
278,
8973,
10372,
317,
1240,
6905,
798,
6955,
304,
19754,
277,
411,
278,
1067,
5968,
310,
278,
8973,
395,
29953,
29892,
29900,
29900,
29900,
2861,
319,
5194,
3217,
297,
23272,
895,
1238,
267,
607,
540,
750,
411,
29882,
2495,
515,
278,
5001,
29889,
13,
29903,
1240,
6905,
798,
6955,
5929,
1338,
278,
14260,
8973,
29915,
29879,
1797,
29892,
1852,
26420,
393,
29901,
13,
13,
29930,
29896,
29896,
29929,
29896,
29871,
29896,
29889,
319,
5194,
3217,
29892,
297,
3578,
310,
18340,
6193,
29899,
29990,
29899,
6247,
29899,
6247,
29892,
10225,
287,
13284,
304,
16508,
385,
10899,
651,
297,
21817,
29936,
13,
29906,
29889,
450,
10899,
651,
471,
21138,
304,
4307,
29892,
1951,
319,
5194,
3217,
750,
5229,
304,
752,
368,
411,
18340,
29871,
29906,
29941,
29899,
29906,
29899,
29906,
29889,
29955,
29899,
29941,
29892,
297,
6624,
1218,
670,
23272,
895,
29936,
322,
13,
29941,
29889,
450,
1797,
26795,
1075,
304,
19754,
277,
395,
29953,
29892,
29900,
29900,
29900,
411,
278,
1067,
5968,
310,
278,
8973,
338,
21138,
304,
4307,
29892,
1951,
372,
20016,
2667,
263,
376,
1457,
17675,
19422,
1797,
310,
26305,
29908,
297,
5537,
362,
310,
18340,
6193,
29899,
29990,
29899,
6247,
29899,
29990,
29889,
13,
13,
29902,
29889,
13,
29909,
5194,
3217,
934,
29881,
967,
14726,
2750,
317,
1240,
6905,
798,
6955,
373,
2610,
29871,
29906,
29946,
29892,
29871,
29896,
29929,
29955,
29929,
29889,
1094,
385,
2756,
3568,
1230,
26406,
29892,
317,
1240,
6905,
798,
6955,
4974,
287,
393,
12359,
29884,
424,
304,
18340,
6193,
29899,
29990,
29899,
6247,
29899,
6247,
29892,
319,
5194,
3217,
10225,
287,
13284,
304,
410,
3471,
1082,
278,
3158,
297,
21817,
1363,
372,
471,
376,
29874,
9117,
17266,
362,
1301,
627,
292,
5381,
297,
518,
1552,
29962,
2106,
1728,
410,
2764,
292,
263,
12289,
310,
594,
6737,
1213,
1551,
25530,
29892,
317,
1240,
6905,
798,
6955,
1449,
1153,
4637,
278,
2228,
29889,
13,
2965,
6193,
29899,
29990,
29899,
6247,
29899,
6247,
8128,
29901,
13,
29908,
29925,
264,
1997,
583,
29871,
30527,
1939,
9117,
17266,
362,
1301,
627,
292,
5381,
297,
445,
2106,
1728,
410,
2764,
292,
263,
12289,
310,
594,
6737,
470,
29892,
565,
1316,
263,
12289,
756,
1063,
9580,
2955,
29892,
1156,
967,
12289,
310,
594,
6737,
756,
1063,
411,
19811,
1233,
470,
6664,
12504,
29892,
4091,
7344,
738,
14726,
29892,
3158,
470,
8469,
292,
297,
738,
310,
278,
28033,
310,
445,
2106,
2501,
738,
9667,
29892,
3692,
564,
5921,
714,
310,
8078,
470,
16263,
29936,
322,
1432,
1316,
17266,
362,
577,
1301,
627,
292,
5381,
4091,
367,
619,
519,
491,
2769,
727,
974,
304,
263,
27368,
310,
451,
13461,
292,
3006,
10405,
17208,
518,
29938,
29896,
29900,
29892,
29900,
29900,
29900,
1402,
304,
367,
24776,
297,
738,
8973,
310,
5100,
296,
24894,
29467,
297,
385,
3158,
304,
367,
23580,
322,
410,
3471,
3860,
491,
278,
1098,
25252,
29899,
17492,
297,
738,
15178,
297,
607,
1316,
5381,
471,
1301,
627,
287,
29889,
13,
3644,
738,
9117,
17266,
362,
4091,
1301,
627,
5381,
297,
445,
2106,
1728,
410,
2764,
292,
263,
12289,
310,
594,
6737,
29892,
470,
29892,
565,
263,
12289,
756,
1063,
9580,
2955,
29892,
1156,
967,
12289,
756,
1063,
411,
19811,
1233,
470,
6664,
12504,
29892,
470,
4091,
1301,
627,
738,
5381,
451,
4148,
1891,
491,
1316,
12289,
29892,
1316,
17266,
362,
4091,
451,
367,
23437,
304,
7344,
738,
14726,
470,
3158,
472,
4307,
470,
297,
1592,
537,
2501,
738,
5995,
29892,
11706,
470,
1592,
8270,
29892,
3692,
564,
5921,
714,
310,
8078,
470,
16263,
29892,
297,
738,
8973,
297,
445,
2106,
29936,
322,
372,
4091,
367,
278,
13360,
310,
278,
1098,
25252,
29899,
17492,
29892,
2501,
1641,
594,
11292,
393,
738,
9117,
17266,
362,
338,
577,
1301,
627,
292,
5381,
297,
445,
2106,
29892,
304,
6963,
3158,
297,
278,
11369,
470,
11558,
8973,
310,
1085,
291,
5127,
363,
385,
10899,
651,
304,
1791,
6038,
372,
515,
1301,
627,
292,
1316,
1185,
329,
2015,
1891,
5381,
322,
363,
278,
2889,
352,
358,
310,
967,
12289,
310,
594,
6737,
565,
697,
756,
1063,
9580,
2955,
29889,
13,
10773,
10823,
310,
738,
9117,
17266,
362,
1058,
4091,
1301,
627,
363,
1316,
17266,
362,
738,
5381,
297,
445,
2106,
1434,
372,
4091,
505,
9580,
2955,
263,
12289,
310,
594,
6737,
470,
1156,
967,
12289,
4091,
505,
1063,
411,
19811,
1233,
470,
6664,
12504,
29892,
4091,
367,
316,
22580,
27719,
310,
263,
3984,
311,
12676,
272,
322,
2501,
7602,
2463,
727,
974,
4091,
367,
285,
1312,
297,
738,
5253,
451,
13461,
292,
697,
6893,
17208,
518,
29938,
29896,
29900,
29900,
29962,
363,
1269,
322,
1432,
1316,
1283,
1947,
1213,
13,
29909,
5194,
3217,
7336,
1169,
372,
338,
263,
9117,
17266,
362,
29892,
322,
393,
372,
1258,
451,
9580,
545,
263,
12289,
310,
594,
6737,
29889,
450,
5001,
14877,
272,
5794,
972,
583,
372,
471,
1301,
627,
292,
5381,
297,
21817,
2629,
278,
6593,
310,
278,
1002,
1082,
29889,
2398,
29892,
591,
817,
451,
11097,
278,
1298,
1363,
591,
4658,
317,
1240,
6905,
798,
6955,
11324,
2347,
670,
1492,
304,
17793,
319,
5194,
3217,
29915,
29879,
13284,
304,
6963,
278,
14726,
491,
25967,
278,
14260,
8973,
29915,
29879,
24894,
29467,
975,
278,
1206,
29889,
13,
10401,
319,
5194,
3217,
934,
29881,
967,
14726,
2750,
317,
1240,
6905,
798,
6955,
29892,
263,
2788,
3158,
29892,
934,
29881,
491,
278,
5868,
29909,
5194,
3217,
6692,
15025,
29892,
471,
2307,
28235,
29889,
1551,
5468,
29871,
29896,
29906,
29892,
29871,
29896,
29929,
29955,
29929,
29892,
317,
1240,
6905,
798,
6955,
5697,
654,
287,
304,
505,
278,
1023,
480,
1169,
1136,
17211,
630,
29892,
322,
746,
278,
5697,
654,
471,
16896,
29892,
540,
15502,
304,
263,
380,
666,
2785,
13138,
29901,
13,
29908,
3206,
5818,
2534,
934,
29881,
7142,
291,
304,
2138,
17211,
403,
29892,
13973,
1286,
8661,
393,
8469,
886,
297,
315,
1071,
1939,
29889,
29871,
29955,
29929,
29899,
7024,
29907,
29899,
29896,
29945,
29900,
29929,
304,
518,
915,
29962,
18440,
304,
315,
1071,
1939,
29889,
29871,
29955,
29929,
29899,
7024,
29907,
29899,
29896,
29900,
29945,
29955,
322,
393,
319,
314,
1111,
4103,
29885,
6847,
29892,
9266,
1696,
367,
9904,
408,
1302,
29899,
13974,
524,
2593,
297,
315,
1071,
1939,
29889,
29871,
29955,
29929,
29899,
7024,
29907,
29899,
29896,
29900,
29945,
29955,
29892,
322,
393,
278,
9245,
297,
315,
1071,
1939,
29889,
29871,
29955,
29929,
29899,
7024,
29907,
29899,
29896,
29900,
29945,
29955,
29892,
4091,
505,
24894,
29467,
975,
278,
13973,
16579,
314,
1111,
6692,
2994,
29886,
1696,
319,
314,
1111,
4103,
6737,
29892,
9266,
29889,
322,
5122,
317,
1240,
6905,
798,
6955,
29889,
13,
418,
847,
29879,
29914,
21380,
360,
29889,
476,
860,
29890,
1878,
29892,
26817,
13,
3986,
7102,
357,
5670,
1611,
9245,
29908,
13,
29930,
29896,
29896,
29929,
29906,
1334,
1497,
297,
11821,
6115,
4815,
19184,
4007,
29915,
29876,
29889,
325,
29889,
7236,
25843,
313,
29896,
29929,
29955,
29929,
511,
1894,
29889,
2401,
1696,
29871,
29941,
29929,
29953,
405,
29889,
29923,
29889,
29906,
29881,
29871,
29953,
29955,
29947,
29892,
393,
29901,
13,
29908,
1576,
11706,
13284,
310,
263,
6263,
304,
410,
3471,
1082,
967,
5995,
338,
263,
4383,
607,
6602,
29879,
278,
14260,
8973,
29915,
29879,
24894,
29467,
975,
278,
3153,
1206,
29871,
30527,
451,
967,
24894,
29467,
975,
278,
4967,
4383,
29889,
12590,
310,
20692,
12712,
29892,
8748,
29883,
29889,
325,
29889,
4412,
310,
7236,
25843,
313,
29896,
29929,
29955,
29947,
511,
1894,
1696,
29871,
29941,
29955,
29945,
405,
29889,
29923,
29889,
29906,
29881,
29871,
29896,
29896,
29896,
29906,
29892,
29871,
29896,
29896,
29896,
29955,
29936,
8413,
2330,
325,
29889,
8413,
2330,
313,
29896,
29929,
29955,
29941,
511,
29871,
29896,
29945,
29955,
1894,
29889,
2401,
29889,
29871,
29941,
29947,
29945,
29892,
29871,
29941,
29900,
29900,
405,
29889,
29923,
29889,
29906,
29881,
29871,
29941,
29955,
29945,
29892,
29871,
29941,
29947,
29941,
29889,
853,
4561,
4967,
4383,
24894,
29467,
29892,
607,
2609,
367,
11324,
2347,
491,
263,
6263,
322,
1122,
367,
10425,
29892,
4171,
805,
9568,
29892,
491,
278,
8973,
29892,
24894,
29467,
975,
278,
3153,
1206,
1122,
367,
11324,
2347,
491,
278,
10672,
304,
1207,
263,
2702,
322,
5335,
873,
704,
6929,
29889,
12590,
310,
20692,
12712,
29892,
8748,
29883,
29889,
325,
29889,
4412,
310,
7236,
25843,
29892,
13159,
336,
29936,
3826,
1337,
5127,
390,
29889,
29923,
29889,
8133,
29889,
2994,
29886,
29889,
325,
29889,
5236,
6692,
3189,
29889,
313,
29896,
29929,
29955,
29896,
511,
29871,
29896,
29945,
29900,
1894,
29889,
2401,
29889,
29871,
29896,
29929,
29941,
29892,
29871,
29906,
29955,
29945,
405,
29889,
29923,
29889,
29906,
29881,
29871,
29947,
29945,
29955,
29892,
29871,
29947,
29953,
29900,
1213,
13,
2059,
380,
666,
18099,
393,
278,
14260,
8973,
750,
24894,
29467,
975,
319,
5194,
3217,
322,
3654,
29892,
317,
1240,
6905,
798,
6955,
11324,
2347,
670,
1492,
304,
17793,
278,
5001,
29915,
29879,
11706,
13284,
304,
6963,
278,
14726,
29889,
13,
13,
2687,
29889,
13,
29903,
1240,
6905,
798,
6955,
1852,
1041,
278,
14260,
8973,
881,
451,
505,
16610,
385,
10899,
651,
472,
319,
5194,
3217,
29915,
29879,
2009,
1363,
278,
5001,
5537,
630,
18340,
29871,
29906,
29941,
29899,
29906,
29899,
29906,
29889,
29955,
29899,
29941,
29892,
607,
8128,
29901,
13,
29908,
14343,
3381,
470,
1661,
1267,
809,
284,
29871,
30527,
16393,
29889,
29871,
30527,
25870,
6467,
4944,
297,
278,
17327,
29892,
738,
1840,
3381,
310,
263,
23272,
895,
470,
8271,
451,
304,
23011,
263,
23272,
895,
1818,
367,
1754,
373,
472,
3203,
17081,
3305,
518,
29929,
29900,
29962,
3841,
29915,
8369,
1213,
13,
1576,
2980,
338,
1728,
2778,
277,
29889,
1670,
338,
694,
10757,
319,
5194,
3217,
5537,
630,
278,
1002,
1082,
29889,
1094,
317,
1240,
6905,
798,
6955,
7336,
1169,
29892,
278,
5001,
29185,
670,
23272,
895,
12359,
29884,
424,
304,
1459,
9895,
29871,
29896,
29947,
29898,
29874,
29897,
297,
278,
23272,
895,
17327,
29892,
607,
8128,
29901,
13,
29908,
4013,
17327,
4091,
7389,
29504,
2501,
2414,
21278,
491,
19405,
29872,
310,
3971,
8369,
310,
1840,
3381,
3045,
29908,
13,
1349,
375,
29892,
278,
17327,
1258,
376,
1228,
3538,
3867,
29908,
363,
1840,
3381,
29892,
322,
319,
5194,
3217,
471,
451,
3734,
304,
2367,
317,
1240,
6905,
798,
6955,
29871,
29929,
29900,
3841,
29915,
8369,
29889,
1670,
338,
694,
11809,
29892,
408,
623,
514,
424,
14661,
29892,
393,
278,
8671,
4944,
297,
278,
17327,
18818,
472,
3203,
777,
6564,
8369,
565,
278,
29871,
29929,
29900,
2462,
3785,
338,
304,
367,
28305,
29889,
13,
13,
5287,
29889,
13,
4178,
278,
758,
2576,
3821,
10899,
651,
22514,
29892,
317,
1240,
6905,
798,
6955,
20186,
540,
750,
451,
12530,
472,
3203,
395,
29953,
29892,
29900,
29900,
29900,
2861,
319,
5194,
3217,
297,
23272,
895,
1238,
267,
29889,
512,
2933,
29892,
278,
8973,
16610,
278,
1494,
1797,
29901,
13,
29908,
29929,
29889,
5282,
5818,
674,
19754,
277,
411,
278,
315,
1358,
29895,
310,
278,
9245,
278,
2533,
310,
6909,
297,
278,
5253,
310,
14235,
395,
29953,
29892,
29900,
29900,
29900,
29889,
29900,
29900,
607,
822,
5818,
756,
1243,
2164,
393,
540,
756,
411,
29882,
2495,
515,
319,
314,
1111,
408,
23272,
895,
1238,
267,
29892,
322,
607,
822,
5818,
1243,
2164,
540,
756,
18414,
7964,
322,
8126,
297,
670,
1024,
1213,
13,
29903,
1240,
6905,
798,
6955,
7344,
29879,
278,
1797,
471,
376,
9996,
653,
304,
4307,
29908,
1363,
372,
11524,
263,
376,
1457,
17675,
19422,
1797,
310,
26305,
29892,
21138,
304,
278,
11780,
310,
18340,
6193,
29899,
29990,
29899,
6247,
29899,
29990,
1213,
1334,
8661,
29889,
13,
1576,
1797,
9436,
338,
697,
310,
26305,
29892,
607,
1122,
367,
3342,
408,
376,
273,
5297,
1657,
653,
11549,
7924,
310,
278,
822,
5818,
7536,
304,
738,
12109,
566,
293,
362,
310,
278,
10462,
310,
278,
2174,
524,
2593,
29892,
393,
338,
29892,
263,
409,
466,
545,
297,
6564,
310,
14260,
322,
24284,
1213,
29871,
29953,
1913,
29889,
29967,
332,
29889,
29906,
29881,
6212,
25117,
322,
402,
2753,
18310,
16683,
29871,
29896,
472,
282,
29889,
29871,
29945,
29953,
29900,
29889,
14832,
317,
1240,
6905,
798,
6955,
7336,
1169,
6909,
471,
2861,
319,
5194,
3217,
29892,
2360,
16561,
29892,
278,
3935,
1601,
583,
12992,
304,
892,
670,
2745,
6284,
14453,
1000,
2501,
12359,
29884,
424,
304,
6577,
5611,
1889,
7226,
29896,
29962,
6212,
496,
1860,
310,
278,
2656,
10372,
491,
278,
14260,
8973,
297,
445,
1206,
526,
4148,
1891,
491,
18340,
6193,
29899,
29990,
29899,
6247,
29899,
29990,
634,
19359,
29889,
2398,
29892,
408,
317,
1240,
6905,
798,
6955,
11486,
29892,
727,
338,
694,
10757,
393,
278,
14260,
8973,
5643,
278,
1571,
8792,
731,
714,
297,
278,
1002,
1082,
363,
20520,
385,
26305,
29889,
1152,
1342,
29892,
694,
2756,
333,
485,
1169,
892,
934,
29881,
491,
319,
5194,
3217,
12359,
29884,
424,
304,
18340,
6193,
29899,
29990,
29899,
6247,
29899,
29990,
29874,
29889,
7857,
29892,
591,
4658,
278,
1797,
471,
4857,
546,
368,
16610,
322,
278,
395,
29953,
29892,
29900,
29900,
29900,
12530,
304,
278,
1067,
5968,
310,
278,
8973,
881,
367,
4133,
304,
317,
1240,
6905,
798,
6955,
28235,
4340,
3158,
29889,
13,
29930,
29896,
29896,
29929,
29941,
319,
5194,
3217,
1074,
2039,
304,
15075,
475,
278,
8973,
29915,
29879,
1797,
491,
3407,
304,
18340,
6193,
29899,
29990,
29899,
6247,
29899,
29990,
29892,
607,
8128,
29901,
13,
29908,
8498,
359,
277,
310,
6909,
297,
8973,
29889,
1932,
372,
338,
20186,
491,
278,
5644,
9382,
470,
4392,
3381,
310,
263,
6263,
393,
540,
756,
297,
670,
17715,
470,
1090,
670,
2761,
738,
6909,
470,
916,
2655,
15390,
310,
28289,
29892,
607,
29892,
1641,
278,
4967,
310,
278,
11872,
335,
362,
29892,
338,
4934,
491,
1075,
408,
9311,
3905,
363,
1790,
6263,
29892,
470,
607,
14393,
470,
338,
2861,
304,
1790,
6263,
29892,
278,
8973,
29892,
470,
278,
16833,
727,
974,
297,
11757,
362,
29892,
1122,
1797,
278,
1021,
304,
367,
19754,
1573,
297,
8973,
470,
411,
278,
1067,
5968,
727,
974,
29892,
297,
11757,
362,
29892,
470,
20115,
304,
1316,
6263,
29892,
411,
470,
1728,
6993,
29892,
4967,
304,
278,
4340,
1797,
310,
278,
8973,
470,
278,
16833,
727,
974,
1213,
13,
17245,
29892,
591,
4658,
445,
4004,
310,
278,
775,
338,
22903,
871,
297,
19870,
3527,
8469,
886,
313,
932,
799,
292,
408,
372,
947,
408,
760,
310,
278,
16385,
23437,
24328,
1536,
322,
897,
1066,
1169,
297,
6325,
1372,
467,
739,
756,
694,
7417,
2498,
2280,
3907,
372,
3625,
297,
445,
8469,
292,
29889,
13,
29943,
332,
721,
29892,
319,
5194,
3217,
1852,
1041,
278,
8973,
471,
23437,
304,
2228,
967,
1797,
408,
385,
15058,
310,
967,
1592,
8270,
10801,
29889,
1334,
526,
1185,
2519,
310,
738,
28733,
363,
278,
8973,
29915,
29879,
3158,
297,
1592,
537,
29892,
322,
319,
5194,
3217,
756,
5229,
304,
3867,
502,
411,
738,
29889,
13,
1576,
14260,
8973,
29915,
29879,
10899,
651,
338,
2756,
381,
2168,
29892,
5174,
408,
304,
967,
1797,
26795,
317,
1240,
6905,
798,
6955,
304,
19754,
277,
395,
29953,
29892,
29900,
29900,
29900,
411,
278,
1067,
5968,
310,
967,
8973,
29889,
13,
27867,
381,
2168,
297,
760,
29892,
18764,
287,
297,
760,
29889,
13,
8187,
4198,
27616,
29892,
349,
29889,
29967,
1696,
322,
6850,
1299,
1164,
29892,
435,
1696,
378,
2764,
29889,
13,
12256,
2890,
13,
29961,
29896,
29962,
29871,
317,
1240,
6905,
798,
6955,
13229,
16726,
263,
731,
1283,
29892,
1852,
26420,
393,
319,
5194,
3217,
8152,
267,
1075,
3196,
10405,
17208,
363,
376,
1639,
19032,
664,
1213,
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
] |
india
Updated: Apr 05, 2019 23:08 IST
The Opposition on Friday accused the Bharatiya Janata Party (BJP) of ignoring its founding-members and said a blog written by party veteran LK Advani a day earlier was a “stinging” criticism of Prime Minister Narendra Modi and BJP chief Amit Shah’s brand of “demeaning politics”.
In a blog post titled “Nation First, Party Next, Self Last”, the 91-year-old Advani said the BJP had “never regarded those who disagree with us politically as our enemies” and that the BJP’s concept of Indian nationalism never considered those who disagreed with it politically as “anti-national”.
“BJP talks of Hinduism. In Hinduism, guru is supreme. Who is Modi’s guru? Advani. Modi just kicked Advani out,” Congress chief Rahul Gandhi said at a rally in Maharashtra’s Chandrapur.
Advani was denied a ticket from Gandhinagar for the 2019 Lok Sabha polls, in his blog post expressed “sincere gratitude” to the people of the city, from where he has been elected six times.
“Advani’s remarks in the blog reflected his anguish...For Modi and Shah, it is self first and country last,” Telugu Desam Party president and Andhra Pradesh chief minister N Chandrababu Naidu said in Vijayawada.
The BJP on Friday said that the views expressed by Advani in his blog have always been its policy. “What Advani ji has said has been the BJP’s clear policy. We never considered (rivals) anti-nationals...,” senior party leader Arun Jaitley told reporters. | [
1,
1399,
423,
13,
13,
29248,
29901,
319,
558,
29871,
29900,
29945,
29892,
29871,
29906,
29900,
29896,
29929,
29871,
29906,
29941,
29901,
29900,
29947,
306,
1254,
13,
13,
1576,
438,
407,
4490,
373,
28728,
28886,
278,
350,
8222,
2219,
3761,
2627,
532,
9173,
313,
29933,
29967,
29925,
29897,
310,
5330,
8253,
967,
1476,
292,
29899,
28109,
322,
1497,
263,
12618,
3971,
491,
6263,
25808,
273,
365,
29968,
25215,
3270,
263,
2462,
8859,
471,
263,
1346,
303,
292,
292,
30024,
29035,
310,
15512,
7668,
16080,
25404,
3382,
29875,
322,
350,
29967,
29925,
9087,
1913,
277,
25897,
30010,
29879,
14982,
310,
1346,
311,
12676,
292,
22661,
8643,
13,
13,
797,
263,
12618,
1400,
25278,
1346,
29940,
362,
3824,
29892,
9173,
8084,
29892,
21782,
9208,
9363,
278,
29871,
29929,
29896,
29899,
6360,
29899,
1025,
25215,
3270,
1497,
278,
350,
29967,
29925,
750,
1346,
484,
369,
17878,
1906,
1058,
22941,
929,
411,
502,
2832,
1711,
408,
1749,
22595,
30024,
322,
393,
278,
350,
29967,
29925,
30010,
29879,
6964,
310,
7560,
4797,
1608,
2360,
5545,
1906,
1058,
22941,
276,
287,
411,
372,
2832,
1711,
408,
1346,
3656,
29899,
29876,
1288,
8643,
13,
13,
30015,
29933,
29967,
29925,
5969,
2039,
310,
379,
19910,
1608,
29889,
512,
379,
19910,
1608,
29892,
330,
20144,
338,
22747,
1004,
29889,
11644,
338,
3382,
29875,
30010,
29879,
330,
20144,
29973,
25215,
3270,
29889,
3382,
29875,
925,
413,
17840,
25215,
3270,
714,
3995,
11559,
9087,
16790,
352,
28572,
2918,
1497,
472,
263,
364,
635,
297,
10082,
279,
294,
400,
336,
30010,
29879,
678,
392,
2390,
332,
29889,
13,
13,
3253,
29894,
3270,
471,
17935,
263,
23381,
515,
28572,
11222,
28641,
363,
278,
29871,
29906,
29900,
29896,
29929,
26469,
11775,
2350,
1248,
3137,
29892,
297,
670,
12618,
1400,
13384,
1346,
29879,
3742,
406,
20715,
4279,
30024,
304,
278,
2305,
310,
278,
4272,
29892,
515,
988,
540,
756,
1063,
11467,
4832,
3064,
29889,
13,
13,
30015,
3253,
29894,
3270,
30010,
29879,
29360,
297,
278,
12618,
25312,
670,
385,
2543,
728,
856,
2831,
3382,
29875,
322,
25897,
29892,
372,
338,
1583,
937,
322,
4234,
1833,
3995,
18815,
688,
29884,
2726,
314,
9173,
6673,
322,
1126,
29882,
336,
1588,
21754,
9087,
11050,
405,
678,
392,
4201,
370,
29884,
4465,
333,
29884,
1497,
297,
478,
823,
388,
1450,
1114,
29889,
13,
13,
1576,
350,
29967,
29925,
373,
28728,
1497,
393,
278,
8386,
13384,
491,
25215,
3270,
297,
670,
12618,
505,
2337,
1063,
967,
8898,
29889,
1346,
5618,
25215,
3270,
19841,
756,
1497,
756,
1063,
278,
350,
29967,
29925,
30010,
29879,
2821,
8898,
29889,
1334,
2360,
5545,
313,
15081,
29879,
29897,
9418,
29899,
29876,
1288,
29879,
856,
3995,
16336,
6263,
11822,
826,
348,
435,
1249,
2330,
5429,
1634,
272,
2153,
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
] |
Friday, May 19, 2017
FFF posts seem to be the only ones I am getting done these days. Summer is just around the corner (a week from today I will be DONE), so maybe I can do other posts when I am not surrounded by school details.
1. I've used my new oven a couple of times now, and am very happy with the oven part. The burners - not quite so much. I did not realize that a glass-topped range would be so difficult to keep nice and clean. But it may just be a matter of adjustment.
However - the oven worked very well and I look forward to many good things coming out of it!
The rest of the renovations are coming along - although right now, due to the tiling, we are down to one toilet in the house. :-) Not used to that! Speaking of the tiling,
2. The bathroom floors are done!! The new tile looks so, so much better than the worn-out old vinyl flooring that was in there. We hope to get the painting done in the next couple of weeks, so that the toilets can be reinstalled and we can get back to a semblance of normal at least in the bathrooms.
3. These are my "embryonic groundhogs," as christened by my sophomores, who had their annual "Babe Day" earlier this week with their biology teacher (my dear friend). She has done this ever since she started teaching. When the biology class finishes their pig dissection for the year, they plan a "party" with all pig-related foods, This year they had bacon, cocktail sausages, pigs in blankets, BBQ potato chips (OK, so they stretch the theme a little, but you almost have to), real BBQ, dips topped with crumbled bacon, etc. One girl brought piggie-face cookies. Then, during their party, they watch the old movie Babe. It's the highlight of the biology year.
Well, since the sophomores are my homeroom, and since I had a pig cookie cutter (left over from years ago when my own daughter made pig cookies for this same event) and since a package of puff pastry was staring out from the refrig, I decided to make some pastry piggies. And - they looked adorable when removed out of the oven. The features of a little pig were perfect. However, when I iced them with pink icing - this was the result. Embryonic groundhogs. But they sure did taste good!
4. On Tuesday night we celebrated a belated Mothers' Day with my folks at our favorite restaurant. Always a pleasure.
5. I figured out how to make a messy bun hat! I have been learning how to make these hats, but haven't done a messy bun one yet (the kind with a larger hole at the top to accommodate a ponytail or bun). This one was tried on by several students just to make sure it was right - and they all said it was. Maybe I will get some made for next winter.
Friday, May 12, 2017
1. Strawberries are in full force. My parents have provided several baskets for me - when they go to get some, they ask if I want some also. And I have put a lot of small bags in the freezer because of a new smoothie maker - much simpler than getting out the blender and putting it together, then taking it apart and washing it. My current favorite smoothie recipe: 1 small cup plain Greek yogurt (I've been using Chobani brand), about 10 strawberries, partially thawed, a splash of orange juice, and a couple of packets of Splenda. Very nourishing, very low calorie, and very delicious!
2. Small Paul spoke in our school chapels on Wednesday. Anyone who knows him knows that he is decidedly NOT small - he is about 6' 7". He is a wonderful chalk artist, and our students have looked forward to his trips to our school for over 25 years. I have corresponded with his wife a little bit (they are now missionaries to South Africa), and it was nice to talk with her. Their website is www.drawingotherstochrist.com.
3. House is coming along. This week involved a few setbacks - neither the tile man, nor the man who is fixing the kitchen cabinet for the 2" too tall new refrigerator, could come as planned. But next week much should be accomplished. And as of this week, we do have new doorbells and new garage door openers.
4. Mike had an MRI on his shoulder this week. The orthopedist is out of the office right now, so he doesn't see him until week after next. THEN we schedule surgery. The wheels of medicine grind V-E-R-Y S-L-O-W-L-Y!!
5. And finally - look what I got at school this afternoon!!! Thank you, Mike, for my Mother's Day surprise! | [
1,
28728,
29892,
2610,
29871,
29896,
29929,
29892,
29871,
29906,
29900,
29896,
29955,
13,
13,
4198,
29943,
11803,
2833,
304,
367,
278,
871,
6743,
306,
626,
2805,
2309,
1438,
3841,
29889,
13329,
338,
925,
2820,
278,
11155,
313,
29874,
4723,
515,
9826,
306,
674,
367,
360,
12413,
511,
577,
5505,
306,
508,
437,
916,
11803,
746,
306,
626,
451,
22047,
491,
3762,
4902,
29889,
13,
13,
29896,
29889,
306,
29915,
345,
1304,
590,
716,
288,
854,
263,
7303,
310,
3064,
1286,
29892,
322,
626,
1407,
9796,
411,
278,
288,
854,
760,
29889,
450,
12138,
414,
448,
451,
3755,
577,
1568,
29889,
306,
1258,
451,
16289,
393,
263,
12917,
29899,
517,
2986,
3464,
723,
367,
577,
5189,
304,
3013,
7575,
322,
5941,
29889,
1205,
372,
1122,
925,
367,
263,
4383,
310,
10365,
358,
29889,
13,
13,
17245,
448,
278,
288,
854,
3796,
1407,
1532,
322,
306,
1106,
6375,
304,
1784,
1781,
2712,
6421,
714,
310,
372,
29991,
13,
13,
1576,
1791,
310,
278,
25615,
800,
526,
6421,
3412,
448,
5998,
1492,
1286,
29892,
2861,
304,
278,
260,
6504,
29892,
591,
526,
1623,
304,
697,
304,
488,
29873,
297,
278,
3699,
29889,
15626,
2216,
1304,
304,
393,
29991,
5013,
5086,
310,
278,
260,
6504,
29892,
13,
13,
29906,
29889,
450,
27683,
8345,
5685,
943,
526,
2309,
6824,
450,
716,
25900,
3430,
577,
29892,
577,
1568,
2253,
1135,
278,
28043,
29899,
449,
2030,
13848,
2904,
5685,
8253,
393,
471,
297,
727,
29889,
1334,
4966,
304,
679,
278,
20413,
2309,
297,
278,
2446,
7303,
310,
11405,
29892,
577,
393,
278,
304,
488,
1372,
508,
367,
337,
25537,
322,
591,
508,
679,
1250,
304,
263,
269,
13365,
749,
310,
4226,
472,
3203,
297,
278,
27683,
18901,
29889,
13,
13,
29941,
29889,
4525,
526,
590,
376,
1590,
719,
8927,
5962,
29882,
12099,
1699,
408,
25542,
6419,
491,
590,
269,
3021,
290,
2361,
29892,
1058,
750,
1009,
17568,
376,
29933,
4302,
8373,
29908,
8859,
445,
4723,
411,
1009,
4768,
3002,
15703,
313,
1357,
9425,
5121,
467,
2296,
756,
2309,
445,
3926,
1951,
1183,
4687,
18819,
29889,
1932,
278,
4768,
3002,
770,
8341,
267,
1009,
282,
335,
766,
2042,
363,
278,
1629,
29892,
896,
3814,
263,
376,
22633,
29908,
411,
599,
282,
335,
29899,
12817,
9687,
29879,
29892,
910,
1629,
896,
750,
9922,
535,
29892,
1302,
384,
18237,
872,
375,
1179,
29892,
282,
23379,
297,
9654,
1691,
29892,
29449,
29984,
3104,
1219,
521,
4512,
313,
8949,
29892,
577,
896,
16116,
278,
10929,
263,
2217,
29892,
541,
366,
4359,
505,
304,
511,
1855,
29449,
29984,
29892,
652,
567,
304,
2986,
411,
2181,
25443,
9922,
535,
29892,
2992,
29889,
3118,
7826,
6296,
282,
335,
12053,
29899,
2161,
21046,
29889,
1987,
29892,
2645,
1009,
6263,
29892,
896,
6505,
278,
2030,
14064,
350,
4302,
29889,
739,
29915,
29879,
278,
12141,
310,
278,
4768,
3002,
1629,
29889,
13,
13,
11284,
29892,
1951,
278,
269,
3021,
290,
2361,
526,
590,
3632,
1489,
290,
29892,
322,
1951,
306,
750,
263,
282,
335,
15327,
5700,
357,
313,
1563,
975,
515,
2440,
8020,
746,
590,
1914,
8750,
1754,
282,
335,
21046,
363,
445,
1021,
1741,
29897,
322,
1951,
263,
3577,
310,
2653,
600,
2331,
2202,
471,
380,
4362,
714,
515,
278,
337,
1341,
335,
29892,
306,
8459,
304,
1207,
777,
2331,
2202,
282,
22817,
583,
29889,
1126,
448,
896,
5148,
594,
272,
519,
746,
6206,
714,
310,
278,
288,
854,
29889,
450,
5680,
310,
263,
2217,
282,
335,
892,
4922,
29889,
2398,
29892,
746,
306,
29871,
7612,
963,
411,
282,
682,
16077,
292,
448,
445,
471,
278,
1121,
29889,
28735,
719,
8927,
5962,
29882,
12099,
29889,
1205,
896,
1854,
1258,
21779,
1781,
29991,
13,
13,
29946,
29889,
1551,
323,
1041,
3250,
4646,
591,
26301,
263,
1339,
630,
341,
720,
414,
29915,
8373,
411,
590,
900,
2039,
472,
1749,
25448,
27144,
29889,
29849,
263,
15377,
29889,
13,
13,
29945,
29889,
306,
14788,
714,
920,
304,
1207,
263,
4473,
29891,
289,
348,
3056,
29991,
306,
505,
1063,
6509,
920,
304,
1207,
1438,
298,
1446,
29892,
541,
7359,
29915,
29873,
2309,
263,
4473,
29891,
289,
348,
697,
3447,
313,
1552,
2924,
411,
263,
7200,
16188,
472,
278,
2246,
304,
24803,
403,
263,
282,
2592,
18237,
470,
289,
348,
467,
910,
697,
471,
1898,
373,
491,
3196,
8041,
925,
304,
1207,
1854,
372,
471,
1492,
448,
322,
896,
599,
1497,
372,
471,
29889,
7198,
306,
674,
679,
777,
1754,
363,
2446,
13851,
29889,
13,
13,
29943,
2429,
388,
29892,
2610,
29871,
29896,
29906,
29892,
29871,
29906,
29900,
29896,
29955,
13,
13,
29896,
29889,
624,
1610,
495,
2722,
526,
297,
2989,
4889,
29889,
1619,
11825,
505,
4944,
3196,
289,
1278,
1691,
363,
592,
448,
746,
896,
748,
304,
679,
777,
29892,
896,
2244,
565,
306,
864,
777,
884,
29889,
1126,
306,
505,
1925,
263,
3287,
310,
2319,
289,
810,
297,
278,
3889,
3298,
1363,
310,
263,
716,
10597,
347,
2136,
261,
448,
1568,
13682,
1135,
2805,
714,
278,
1999,
1581,
322,
10594,
372,
4208,
29892,
769,
5622,
372,
12435,
322,
471,
2790,
372,
29889,
1619,
1857,
25448,
10597,
347,
9522,
412,
29901,
29871,
29896,
2319,
18002,
8656,
12311,
343,
468,
4227,
313,
29902,
29915,
345,
1063,
773,
678,
711,
3270,
14982,
511,
1048,
29871,
29896,
29900,
380,
1610,
495,
2722,
29892,
22039,
266,
1450,
287,
29892,
263,
8536,
1161,
310,
24841,
3623,
625,
29892,
322,
263,
7303,
310,
23912,
310,
317,
572,
8395,
29889,
18064,
302,
473,
14424,
29892,
1407,
4482,
1208,
7661,
29892,
322,
1407,
628,
14803,
29991,
13,
13,
29906,
29889,
18285,
3739,
12707,
297,
1749,
3762,
10708,
1379,
373,
15050,
4515,
3250,
29889,
26407,
1058,
9906,
1075,
9906,
393,
540,
338,
8459,
368,
6058,
2319,
448,
540,
338,
1048,
29871,
29953,
29915,
29871,
29955,
1642,
940,
338,
263,
20695,
521,
2235,
7664,
29892,
322,
1749,
8041,
505,
5148,
6375,
304,
670,
3367,
567,
304,
1749,
3762,
363,
975,
29871,
29906,
29945,
2440,
29889,
306,
505,
3928,
287,
411,
670,
6532,
263,
2217,
2586,
313,
19562,
526,
1286,
10655,
4314,
304,
4275,
10557,
511,
322,
372,
471,
7575,
304,
5193,
411,
902,
29889,
11275,
4700,
338,
7821,
29889,
4012,
292,
1228,
303,
2878,
2021,
29889,
510,
29889,
13,
13,
29941,
29889,
5619,
338,
6421,
3412,
29889,
910,
4723,
9701,
263,
2846,
731,
1627,
29879,
448,
9561,
278,
25900,
767,
29892,
3643,
278,
767,
1058,
338,
27826,
278,
29181,
28966,
363,
278,
29871,
29906,
29908,
2086,
15655,
716,
337,
1341,
4087,
1061,
29892,
1033,
2041,
408,
20458,
29889,
1205,
2446,
4723,
1568,
881,
367,
24799,
29889,
1126,
408,
310,
445,
4723,
29892,
591,
437,
505,
716,
3050,
29890,
10071,
322,
716,
7171,
482,
3050,
1722,
414,
29889,
13,
13,
29946,
29889,
12828,
750,
385,
341,
3960,
373,
670,
23468,
445,
4723,
29889,
450,
14219,
28605,
391,
338,
714,
310,
278,
8034,
1492,
1286,
29892,
577,
540,
1838,
29915,
29873,
1074,
1075,
2745,
4723,
1156,
2446,
29889,
8183,
591,
20410,
25300,
708,
29889,
450,
21266,
1379,
310,
26602,
867,
513,
478,
29899,
29923,
29899,
29934,
29899,
29979,
317,
29899,
29931,
29899,
29949,
29899,
29956,
29899,
29931,
29899,
29979,
6824,
13,
13,
29945,
29889,
1126,
7146,
448,
1106,
825,
306,
2355,
472,
3762,
445,
17724,
21004,
3374,
366,
29892,
12828,
29892,
363,
590,
21869,
29915,
29879,
8373,
16671,
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
] |
Lanka rejects LeT threat
Mar 29, 2010 10:37:28 AM - thecolombotimes.com
The government has rejected reports that the Pakistan based militant group Lashkar-e-Toiba was setting up operations in Sri Lanka with government Minister Vinayagamoorthi Muralitharan saying there was no evidence to prove that the group was in the island. | [
1,
365,
18330,
12560,
29879,
951,
29911,
28469,
13,
13,
7083,
29871,
29906,
29929,
29892,
29871,
29906,
29900,
29896,
29900,
29871,
29896,
29900,
29901,
29941,
29955,
29901,
29906,
29947,
13862,
448,
278,
1054,
3424,
9356,
29889,
510,
13,
13,
1576,
5874,
756,
22225,
13676,
393,
278,
21215,
2729,
5549,
424,
2318,
365,
1161,
5689,
29899,
29872,
29899,
1762,
16912,
471,
4444,
701,
6931,
297,
24019,
365,
18330,
411,
5874,
7668,
12540,
388,
351,
10178,
2072,
29875,
341,
3631,
389,
23029,
5934,
727,
471,
694,
10757,
304,
6356,
393,
278,
2318,
471,
297,
278,
11359,
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
] |
/*********************************************************************************
* *
* The MIT License (MIT) *
* *
* Copyright (c) 2015-2020 aoju.org and other contributors. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy *
* of this software and associated documentation files (the "Software"), to deal *
* in the Software without restriction, including without limitation the rights *
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell *
* copies of the Software, and to permit persons to whom the Software is *
* furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN *
* THE SOFTWARE. *
********************************************************************************/
package org.aoju.bus.image.metric.internal.xdsi;
import javax.xml.bind.annotation.*;
/**
* @author Kimi Liu
* @version 6.1.0
* @since JDK 1.8+
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NotificationType", propOrder = {"registryObjectList"})
public class NotificationType extends RegistryObjectType {
@XmlElement(name = "RegistryObjectList", required = true)
protected RegistryObjectListType registryObjectList;
@XmlAttribute(name = "subscription", required = true)
protected String subscription;
public RegistryObjectListType getRegistryObjectList() {
return this.registryObjectList;
}
public void setRegistryObjectList(RegistryObjectListType value) {
this.registryObjectList = value;
}
public String getSubscription() {
return this.subscription;
}
public void setSubscription(String value) {
this.subscription = value;
}
}
| [
1,
847,
7775,
7775,
7775,
7775,
7775,
29930,
13,
334,
462,
462,
462,
462,
1669,
334,
13,
334,
450,
341,
1806,
19245,
313,
26349,
29897,
462,
462,
462,
308,
334,
13,
334,
462,
462,
462,
462,
1669,
334,
13,
334,
14187,
1266,
313,
29883,
29897,
29871,
29906,
29900,
29896,
29945,
29899,
29906,
29900,
29906,
29900,
263,
3848,
29884,
29889,
990,
322,
916,
17737,
29560,
29889,
462,
418,
334,
13,
334,
462,
462,
462,
462,
1669,
334,
13,
334,
20894,
2333,
338,
1244,
1609,
16896,
29892,
3889,
310,
8323,
29892,
304,
738,
2022,
4017,
292,
263,
3509,
29871,
334,
13,
334,
310,
445,
7047,
322,
6942,
5106,
2066,
313,
1552,
376,
6295,
14093,
4968,
304,
5376,
334,
13,
334,
297,
278,
18540,
1728,
24345,
29892,
3704,
1728,
29485,
278,
10462,
29871,
334,
13,
334,
304,
671,
29892,
3509,
29892,
6623,
29892,
10366,
29892,
9805,
29892,
1320,
2666,
29892,
269,
803,
1947,
29892,
322,
29914,
272,
19417,
268,
334,
13,
334,
14591,
310,
278,
18540,
29892,
322,
304,
14257,
12407,
304,
6029,
278,
18540,
338,
308,
334,
13,
334,
15252,
3276,
304,
437,
577,
29892,
4967,
304,
278,
1494,
5855,
29901,
462,
418,
334,
13,
334,
462,
462,
462,
462,
1669,
334,
13,
334,
450,
2038,
3509,
1266,
8369,
322,
445,
10751,
8369,
4091,
367,
5134,
297,
1678,
334,
13,
334,
599,
14591,
470,
23228,
2011,
1080,
310,
278,
18540,
29889,
462,
965,
334,
13,
334,
462,
462,
462,
462,
1669,
334,
13,
334,
6093,
7791,
7818,
12982,
1525,
8519,
13756,
13044,
3352,
376,
3289,
8519,
613,
399,
1806,
8187,
2692,
399,
1718,
29934,
13566,
29979,
8079,
13764,
29979,
476,
22255,
29892,
8528,
15094,
1799,
6323,
1678,
334,
13,
334,
306,
3580,
5265,
3352,
29892,
2672,
6154,
15789,
4214,
350,
2692,
6058,
27848,
3352,
7495,
6093,
399,
1718,
29934,
13566,
29059,
8079,
341,
1001,
3210,
13566,
2882,
6227,
11937,
29892,
418,
334,
13,
334,
383,
1806,
8186,
1799,
15842,
319,
349,
8322,
2965,
13309,
1718,
349,
4574,
13152,
1660,
5300,
405,
1164,
1177,
15860,
1177,
1692,
13780,
29889,
2672,
11698,
382,
29963,
3919,
24972,
9818,
6093,
259,
334,
13,
334,
26524,
29950,
24125,
6323,
315,
4590,
29979,
22789,
3912,
379,
5607,
8032,
29903,
20700,
17705,
6181,
15842,
13764,
29979,
315,
4375,
7833,
29892,
21330,
1529,
1692,
29903,
6323,
438,
29911,
4448,
4706,
334,
13,
334,
17705,
2882,
6227,
11937,
29892,
12317,
2544,
4448,
2672,
13764,
319,
9838,
8079,
8707,
29911,
4717,
1783,
29892,
323,
8476,
6323,
438,
29911,
4448,
22119,
1660,
29892,
9033,
3235,
4214,
3895,
29892,
334,
13,
334,
19474,
8079,
6323,
2672,
8707,
8186,
9838,
22659,
6093,
7791,
7818,
12982,
1525,
6323,
6093,
501,
1660,
6323,
438,
29911,
4448,
5012,
1964,
4214,
29903,
2672,
268,
334,
13,
334,
6093,
7791,
7818,
12982,
1525,
29889,
462,
462,
462,
462,
334,
13,
334,
7775,
7775,
7775,
7775,
4189,
2328,
1068,
3877,
13,
5113,
1638,
29889,
29874,
3848,
29884,
29889,
8262,
29889,
3027,
29889,
16414,
29889,
7564,
29889,
29916,
29881,
1039,
29936,
13,
13,
5215,
11317,
29889,
3134,
29889,
5355,
29889,
18317,
26355,
13,
13,
7918,
13,
334,
732,
8921,
476,
10233,
2718,
29884,
13,
334,
732,
3259,
29871,
29953,
29889,
29896,
29889,
29900,
13,
334,
732,
16076,
435,
17359,
29871,
29896,
29889,
29947,
29974,
13,
3776,
13,
29992,
11089,
16055,
1542,
29898,
11089,
6638,
1542,
29889,
3738,
27286,
29897,
13,
29992,
11089,
1542,
29898,
978,
353,
376,
12958,
1542,
613,
3107,
7514,
353,
8853,
1727,
6020,
2061,
1293,
29908,
1800,
13,
3597,
770,
28578,
1542,
4988,
2169,
6020,
2061,
1542,
426,
13,
13,
1678,
732,
11089,
2642,
29898,
978,
353,
376,
22579,
2061,
1293,
613,
3734,
353,
1565,
29897,
13,
1678,
6364,
2169,
6020,
2061,
1293,
1542,
21235,
2061,
1293,
29936,
13,
1678,
732,
11089,
6708,
29898,
978,
353,
376,
1491,
22371,
613,
3734,
353,
1565,
29897,
13,
1678,
6364,
1714,
25691,
29936,
13,
13,
1678,
970,
2169,
6020,
2061,
1293,
1542,
679,
22579,
2061,
1293,
580,
426,
13,
4706,
736,
445,
29889,
1727,
6020,
2061,
1293,
29936,
13,
1678,
500,
13,
13,
1678,
970,
1780,
731,
22579,
2061,
1293,
29898,
22579,
2061,
1293,
1542,
995,
29897,
426,
13,
4706,
445,
29889,
1727,
6020,
2061,
1293,
353,
995,
29936,
13,
1678,
500,
13,
13,
1678,
970,
1714,
679,
4035,
22371,
580,
426,
13,
4706,
736,
445,
29889,
1491,
22371,
29936,
13,
1678,
500,
13,
13,
1678,
970,
1780,
731,
4035,
22371,
29898,
1231,
995,
29897,
426,
13,
4706,
445,
29889,
1491,
22371,
353,
995,
29936,
13,
1678,
500,
13,
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
] |
El virus sorprendió al mundo entero. Hizo, y sigue haciendo estragos en casi todo el globo terráqueo. Sin embargo cuando llegó a Uruguay algo diferente pasó con el Covid 19. | [
1,
1260,
24424,
7319,
558,
355,
3556,
394,
13864,
875,
1489,
29889,
379,
11411,
29892,
343,
4365,
434,
447,
27182,
707,
1431,
359,
427,
22682,
10481,
560,
15482,
833,
1935,
6135,
802,
29877,
29889,
8882,
15588,
10284,
10953,
29980,
263,
29233,
24673,
12186,
2016,
2331,
29980,
378,
560,
25669,
333,
29871,
29896,
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
] |
(01-26-2014 12:59 AM)Naked? No Wrote: I play to have fun, not to win or get better. Most of the time you get better because you enjoy what you are doing and want to explore the possibilities, and not because the goal is to be good, if you enjoy what you do, it will show in your results.
I think everyone plays computer games to have fun. That is the basis of any game. With that said I think there are often more underlying factors. Indentifying them and approaching them with the correct mindset can help you enjoy the game more.
(01-26-2014 12:59 AM)Naked? No Wrote: I play to have fun, not to win or get better. Most of the time you get better because you enjoy what you are doing and want to explore the possibilities, and not because the goal is to be good, if you enjoy what you do, it will show in your results.
I think everyone plays computer games to have fun. That is the basis of any game. With that said I think there are often more underlying factors. Indentifying them and approaching them with the correct mindset can help you enjoy the game more.
I guess so, but I'm not competetive by nature so I loathe the idea of playing to improve, it seems like a chore to me instead of just having a blast for the moment.
Of course the priority should be to play for fun, but when you improve, wouldn't it be more fun? Like learning Riven ability combos or how you can use a ward to bypass a player or wall as Lee Sin. It's always good to try to push yourself. Making crazy plays is half the fun. I once Lee ulted someone back into their spawn in Twisted Treeline while we were at their nexus and he was forced to flash out to save time. That gave me quite a giggle.
(01-26-2014 02:55 AM)Statyk Wrote: Of course the priority should be to play for fun, but when you improve, wouldn't it be more fun? Like learning Riven ability combos or how you can use a ward to bypass a player or wall as Lee Sin. It's always good to try to push yourself. Making crazy plays is half the fun. I once Lee ulted someone back into their spawn in Twisted Treeline while we were at their nexus and he was forced to flash out to save time. That gave me quite a giggle.
Of course but for me the fun is pretty much everything, doesn't really matter if I suck or not. I guess I'm blessed like that.
(01-26-2014 12:59 AM)Naked? No Wrote: I play to have fun, not to win or get better. Most of the time you get better because you enjoy what you are doing and want to explore the possibilities, and not because the goal is to be good, if you enjoy what you do, it will show in your results.
I think everyone plays computer games to have fun. That is the basis of any game. With that said I think there are often more underlying factors. Indentifying them and approaching them with the correct mindset can help you enjoy the game more.
I guess so, but I'm not competetive by nature so I loathe the idea of playing to improve, it seems like a chore to me instead of just having a blast for the moment.
Theorycrafting and imagining scenarios while not 'in-game' can be more fun than actually playing the game for me. I really enjoy using my imagination..
Other than that I know what you mean. I do enjoy relaxing and just playing a game casually, but at those times I tend to play games which isn't competetive by nature - for example starbound to name a recent one. One does not exclude the other! :]
I usually play games to get away from people, so I've never been big on games like that. But, after seeing some similar problems with people I know that are into those, sometimes it's best to take a step back and come back fresh after awhile. | [
1,
313,
29900,
29896,
29899,
29906,
29953,
29899,
29906,
29900,
29896,
29946,
29871,
29896,
29906,
29901,
29945,
29929,
13862,
29897,
29940,
12535,
29973,
1939,
399,
4859,
29901,
306,
1708,
304,
505,
2090,
29892,
451,
304,
5401,
470,
679,
2253,
29889,
7849,
310,
278,
931,
366,
679,
2253,
1363,
366,
13389,
825,
366,
526,
2599,
322,
864,
304,
26987,
278,
24496,
29892,
322,
451,
1363,
278,
7306,
338,
304,
367,
1781,
29892,
565,
366,
13389,
825,
366,
437,
29892,
372,
674,
1510,
297,
596,
2582,
29889,
13,
13,
29902,
1348,
14332,
13582,
6601,
8090,
304,
505,
2090,
29889,
2193,
338,
278,
8405,
310,
738,
3748,
29889,
2973,
393,
1497,
306,
1348,
727,
526,
4049,
901,
14407,
13879,
29889,
1894,
296,
9215,
963,
322,
28702,
963,
411,
278,
1959,
3458,
842,
508,
1371,
366,
13389,
278,
3748,
901,
29889,
13,
13,
29898,
29900,
29896,
29899,
29906,
29953,
29899,
29906,
29900,
29896,
29946,
29871,
29896,
29906,
29901,
29945,
29929,
13862,
29897,
29940,
12535,
29973,
1939,
399,
4859,
29901,
306,
1708,
304,
505,
2090,
29892,
451,
304,
5401,
470,
679,
2253,
29889,
7849,
310,
278,
931,
366,
679,
2253,
1363,
366,
13389,
825,
366,
526,
2599,
322,
864,
304,
26987,
278,
24496,
29892,
322,
451,
1363,
278,
7306,
338,
304,
367,
1781,
29892,
565,
366,
13389,
825,
366,
437,
29892,
372,
674,
1510,
297,
596,
2582,
29889,
13,
13,
29902,
1348,
14332,
13582,
6601,
8090,
304,
505,
2090,
29889,
2193,
338,
278,
8405,
310,
738,
3748,
29889,
2973,
393,
1497,
306,
1348,
727,
526,
4049,
901,
14407,
13879,
29889,
1894,
296,
9215,
963,
322,
28702,
963,
411,
278,
1959,
3458,
842,
508,
1371,
366,
13389,
278,
3748,
901,
29889,
13,
13,
29902,
4140,
577,
29892,
541,
306,
29915,
29885,
451,
5100,
300,
573,
491,
5469,
577,
306,
658,
271,
354,
278,
2969,
310,
8743,
304,
11157,
29892,
372,
2444,
763,
263,
521,
487,
304,
592,
2012,
310,
925,
2534,
263,
1999,
579,
363,
278,
3256,
29889,
13,
13,
2776,
3236,
278,
20136,
881,
367,
304,
1708,
363,
2090,
29892,
541,
746,
366,
11157,
29892,
7656,
29915,
29873,
372,
367,
901,
2090,
29973,
8502,
6509,
390,
5428,
11509,
4145,
359,
470,
920,
366,
508,
671,
263,
281,
538,
304,
491,
3364,
263,
4847,
470,
10090,
408,
9371,
8882,
29889,
739,
29915,
29879,
2337,
1781,
304,
1018,
304,
5503,
7535,
29889,
341,
5086,
12220,
1537,
13582,
338,
4203,
278,
2090,
29889,
306,
2748,
9371,
8494,
287,
4856,
1250,
964,
1009,
29178,
297,
8168,
12652,
6479,
5570,
1550,
591,
892,
472,
1009,
452,
29916,
375,
322,
540,
471,
11826,
304,
11013,
714,
304,
4078,
931,
29889,
2193,
4846,
592,
3755,
263,
19340,
6234,
29889,
13,
13,
29898,
29900,
29896,
29899,
29906,
29953,
29899,
29906,
29900,
29896,
29946,
29871,
29900,
29906,
29901,
29945,
29945,
13862,
29897,
9513,
12072,
399,
4859,
29901,
4587,
3236,
278,
20136,
881,
367,
304,
1708,
363,
2090,
29892,
541,
746,
366,
11157,
29892,
7656,
29915,
29873,
372,
367,
901,
2090,
29973,
8502,
6509,
390,
5428,
11509,
4145,
359,
470,
920,
366,
508,
671,
263,
281,
538,
304,
491,
3364,
263,
4847,
470,
10090,
408,
9371,
8882,
29889,
739,
29915,
29879,
2337,
1781,
304,
1018,
304,
5503,
7535,
29889,
341,
5086,
12220,
1537,
13582,
338,
4203,
278,
2090,
29889,
306,
2748,
9371,
8494,
287,
4856,
1250,
964,
1009,
29178,
297,
8168,
12652,
6479,
5570,
1550,
591,
892,
472,
1009,
452,
29916,
375,
322,
540,
471,
11826,
304,
11013,
714,
304,
4078,
931,
29889,
2193,
4846,
592,
3755,
263,
19340,
6234,
29889,
13,
13,
2776,
3236,
541,
363,
592,
278,
2090,
338,
5051,
1568,
4129,
29892,
1838,
29915,
29873,
2289,
4383,
565,
306,
480,
384,
470,
451,
29889,
306,
4140,
306,
29915,
29885,
1999,
11517,
763,
393,
29889,
13,
13,
29898,
29900,
29896,
29899,
29906,
29953,
29899,
29906,
29900,
29896,
29946,
29871,
29896,
29906,
29901,
29945,
29929,
13862,
29897,
29940,
12535,
29973,
1939,
399,
4859,
29901,
306,
1708,
304,
505,
2090,
29892,
451,
304,
5401,
470,
679,
2253,
29889,
7849,
310,
278,
931,
366,
679,
2253,
1363,
366,
13389,
825,
366,
526,
2599,
322,
864,
304,
26987,
278,
24496,
29892,
322,
451,
1363,
278,
7306,
338,
304,
367,
1781,
29892,
565,
366,
13389,
825,
366,
437,
29892,
372,
674,
1510,
297,
596,
2582,
29889,
13,
13,
29902,
1348,
14332,
13582,
6601,
8090,
304,
505,
2090,
29889,
2193,
338,
278,
8405,
310,
738,
3748,
29889,
2973,
393,
1497,
306,
1348,
727,
526,
4049,
901,
14407,
13879,
29889,
1894,
296,
9215,
963,
322,
28702,
963,
411,
278,
1959,
3458,
842,
508,
1371,
366,
13389,
278,
3748,
901,
29889,
13,
13,
29902,
4140,
577,
29892,
541,
306,
29915,
29885,
451,
5100,
300,
573,
491,
5469,
577,
306,
658,
271,
354,
278,
2969,
310,
8743,
304,
11157,
29892,
372,
2444,
763,
263,
521,
487,
304,
592,
2012,
310,
925,
2534,
263,
1999,
579,
363,
278,
3256,
29889,
13,
13,
1576,
706,
17293,
292,
322,
6382,
2827,
21846,
1550,
451,
525,
262,
29899,
11802,
29915,
508,
367,
901,
2090,
1135,
2869,
8743,
278,
3748,
363,
592,
29889,
306,
2289,
13389,
773,
590,
28038,
636,
13,
13,
16107,
1135,
393,
306,
1073,
825,
366,
2099,
29889,
306,
437,
13389,
26681,
292,
322,
925,
8743,
263,
3748,
3209,
1474,
29892,
541,
472,
1906,
3064,
306,
10331,
304,
1708,
8090,
607,
3508,
29915,
29873,
5100,
300,
573,
491,
5469,
448,
363,
1342,
5810,
9917,
304,
1024,
263,
7786,
697,
29889,
3118,
947,
451,
19060,
278,
916,
29991,
584,
29962,
13,
13,
29902,
5491,
1708,
8090,
304,
679,
3448,
515,
2305,
29892,
577,
306,
29915,
345,
2360,
1063,
4802,
373,
8090,
763,
393,
29889,
1205,
29892,
1156,
8790,
777,
2788,
4828,
411,
2305,
306,
1073,
393,
526,
964,
1906,
29892,
6041,
372,
29915,
29879,
1900,
304,
2125,
263,
4331,
1250,
322,
2041,
1250,
10849,
1156,
263,
8000,
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
] |
Find Hotel Deals
Would you like to know what other people thought of their holiday in Sabi Sand Game Reserve? Then take look on this page at the reviews written by other travellers. Did you spend your holiday in Sabi Sand Game Reserve? Then you can add your review here.
Would you like to know what other people thought of their holiday in Sabi Sand Game Reserve? Take a look at the reviews of other travellers about Sabi Sand Game Reserve. Have you been on a holiday in Sabi Sand Game Reserve yourself? Add your review here. - - - -
Inyati Private Game Lodge is just WOW
10
Leighanne Dawkins,
15 November 2010
Nightlife-
Culture10
Surroundings10
Atmosphere-
Care for nature -
The Sabi Sands Game Reserve is undoubtedly the most exclusive private game reserve in South Africa. The 65,000-hectare Sabi Sands Game Reserve is located on the south-western corner of the Kruger National Park. There are no restricting fences between the Kruger Park and Sabi Sands Reserve and the wildlife roams freely between the two game reserves. Your Wildlife Safari cannot be complete without exposure to every facet of life in the bush. | [
1,
10987,
16923,
897,
1338,
13,
13,
29956,
483,
366,
763,
304,
1073,
825,
916,
2305,
2714,
310,
1009,
8753,
22394,
297,
11775,
29875,
8564,
8448,
27811,
29973,
1987,
2125,
1106,
373,
445,
1813,
472,
278,
21804,
3971,
491,
916,
6427,
28257,
29889,
7440,
366,
18864,
596,
8753,
22394,
297,
11775,
29875,
8564,
8448,
27811,
29973,
1987,
366,
508,
788,
596,
9076,
1244,
29889,
13,
13,
29956,
483,
366,
763,
304,
1073,
825,
916,
2305,
2714,
310,
1009,
8753,
22394,
297,
11775,
29875,
8564,
8448,
27811,
29973,
11190,
263,
1106,
472,
278,
21804,
310,
916,
6427,
28257,
1048,
11775,
29875,
8564,
8448,
27811,
29889,
6975,
366,
1063,
373,
263,
8753,
22394,
297,
11775,
29875,
8564,
8448,
27811,
7535,
29973,
3462,
596,
9076,
1244,
29889,
448,
448,
448,
448,
13,
13,
797,
29891,
2219,
12230,
8448,
365,
17979,
338,
925,
399,
9806,
13,
13,
29896,
29900,
13,
13,
3226,
1141,
11276,
29461,
11335,
29892,
13,
13,
29896,
29945,
3979,
29871,
29906,
29900,
29896,
29900,
13,
13,
29940,
523,
19264,
29899,
13,
13,
27926,
29896,
29900,
13,
13,
29903,
1038,
618,
886,
29896,
29900,
13,
13,
4178,
7681,
9085,
29899,
13,
13,
29907,
598,
363,
5469,
448,
13,
13,
1576,
11775,
29875,
317,
4167,
8448,
27811,
338,
563,
283,
3116,
23244,
278,
1556,
29192,
2024,
3748,
23986,
297,
4275,
10557,
29889,
450,
29871,
29953,
29945,
29892,
29900,
29900,
29900,
29899,
354,
312,
598,
11775,
29875,
317,
4167,
8448,
27811,
338,
5982,
373,
278,
7062,
29899,
22741,
11155,
310,
278,
28499,
914,
3086,
4815,
29889,
1670,
526,
694,
9250,
292,
285,
2063,
1546,
278,
28499,
914,
4815,
322,
11775,
29875,
317,
4167,
27811,
322,
278,
8775,
19264,
696,
2232,
28472,
1546,
278,
1023,
3748,
620,
20098,
29889,
3575,
11821,
19264,
24544,
2609,
367,
4866,
1728,
14060,
545,
304,
1432,
4024,
300,
310,
2834,
297,
278,
27089,
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
] |
from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType
import copy as _copy
class Starts(_BaseTraceHierarchyType):
# class properties
# --------------------
_parent_path_str = "streamtube"
_path_str = "streamtube.starts"
_valid_props = {"x", "xsrc", "y", "ysrc", "z", "zsrc"}
# x
# -
@property
def x(self):
"""
Sets the x components of the starting position of the
streamtubes
The 'x' property is an array that may be specified as a tuple,
list, numpy array, or pandas Series
Returns
-------
numpy.ndarray
"""
return self["x"]
@x.setter
def x(self, val):
self["x"] = val
# xsrc
# ----
@property
def xsrc(self):
"""
Sets the source reference on Chart Studio Cloud for x .
The 'xsrc' property must be specified as a string or
as a plotly.grid_objs.Column object
Returns
-------
str
"""
return self["xsrc"]
@xsrc.setter
def xsrc(self, val):
self["xsrc"] = val
# y
# -
@property
def y(self):
"""
Sets the y components of the starting position of the
streamtubes
The 'y' property is an array that may be specified as a tuple,
list, numpy array, or pandas Series
Returns
-------
numpy.ndarray
"""
return self["y"]
@y.setter
def y(self, val):
self["y"] = val
# ysrc
# ----
@property
def ysrc(self):
"""
Sets the source reference on Chart Studio Cloud for y .
The 'ysrc' property must be specified as a string or
as a plotly.grid_objs.Column object
Returns
-------
str
"""
return self["ysrc"]
@ysrc.setter
def ysrc(self, val):
self["ysrc"] = val
# z
# -
@property
def z(self):
"""
Sets the z components of the starting position of the
streamtubes
The 'z' property is an array that may be specified as a tuple,
list, numpy array, or pandas Series
Returns
-------
numpy.ndarray
"""
return self["z"]
@z.setter
def z(self, val):
self["z"] = val
# zsrc
# ----
@property
def zsrc(self):
"""
Sets the source reference on Chart Studio Cloud for z .
The 'zsrc' property must be specified as a string or
as a plotly.grid_objs.Column object
Returns
-------
str
"""
return self["zsrc"]
@zsrc.setter
def zsrc(self, val):
self["zsrc"] = val
# Self properties description
# ---------------------------
@property
def _prop_descriptions(self):
return """\
x
Sets the x components of the starting position of the
streamtubes
xsrc
Sets the source reference on Chart Studio Cloud for x
.
y
Sets the y components of the starting position of the
streamtubes
ysrc
Sets the source reference on Chart Studio Cloud for y
.
z
Sets the z components of the starting position of the
streamtubes
zsrc
Sets the source reference on Chart Studio Cloud for z
.
"""
def __init__(
self,
arg=None,
x=None,
xsrc=None,
y=None,
ysrc=None,
z=None,
zsrc=None,
**kwargs
):
"""
Construct a new Starts object
Parameters
----------
arg
dict of properties compatible with this constructor or
an instance of
:class:`plotly.graph_objs.streamtube.Starts`
x
Sets the x components of the starting position of the
streamtubes
xsrc
Sets the source reference on Chart Studio Cloud for x
.
y
Sets the y components of the starting position of the
streamtubes
ysrc
Sets the source reference on Chart Studio Cloud for y
.
z
Sets the z components of the starting position of the
streamtubes
zsrc
Sets the source reference on Chart Studio Cloud for z
.
Returns
-------
Starts
"""
super(Starts, self).__init__("starts")
if "_parent" in kwargs:
self._parent = kwargs["_parent"]
return
# Validate arg
# ------------
if arg is None:
arg = {}
elif isinstance(arg, self.__class__):
arg = arg.to_plotly_json()
elif isinstance(arg, dict):
arg = _copy.copy(arg)
else:
raise ValueError(
"""\
The first argument to the plotly.graph_objs.streamtube.Starts
constructor must be a dict or
an instance of :class:`plotly.graph_objs.streamtube.Starts`"""
)
# Handle skip_invalid
# -------------------
self._skip_invalid = kwargs.pop("skip_invalid", False)
self._validate = kwargs.pop("_validate", True)
# Populate data dict with properties
# ----------------------------------
_v = arg.pop("x", None)
_v = x if x is not None else _v
if _v is not None:
self["x"] = _v
_v = arg.pop("xsrc", None)
_v = xsrc if xsrc is not None else _v
if _v is not None:
self["xsrc"] = _v
_v = arg.pop("y", None)
_v = y if y is not None else _v
if _v is not None:
self["y"] = _v
_v = arg.pop("ysrc", None)
_v = ysrc if ysrc is not None else _v
if _v is not None:
self["ysrc"] = _v
_v = arg.pop("z", None)
_v = z if z is not None else _v
if _v is not None:
self["z"] = _v
_v = arg.pop("zsrc", None)
_v = zsrc if zsrc is not None else _v
if _v is not None:
self["zsrc"] = _v
# Process unknown kwargs
# ----------------------
self._process_kwargs(**dict(arg, **kwargs))
# Reset skip_invalid
# ------------------
self._skip_invalid = False
| [
1,
515,
6492,
368,
29889,
6707,
271,
271,
7384,
1053,
7399,
11591,
29950,
631,
12040,
1542,
408,
903,
5160,
11591,
29950,
631,
12040,
1542,
13,
5215,
3509,
408,
903,
8552,
13,
13,
13,
1990,
624,
5708,
7373,
5160,
11591,
29950,
631,
12040,
1542,
1125,
13,
13,
1678,
396,
770,
4426,
13,
1678,
396,
448,
2683,
5634,
13,
1678,
903,
3560,
29918,
2084,
29918,
710,
353,
376,
5461,
29873,
4003,
29908,
13,
1678,
903,
2084,
29918,
710,
353,
376,
5461,
29873,
4003,
29889,
27382,
29908,
13,
1678,
903,
3084,
29918,
11030,
353,
8853,
29916,
613,
376,
29916,
4351,
613,
376,
29891,
613,
376,
952,
2214,
613,
376,
29920,
613,
376,
29920,
4351,
9092,
13,
13,
1678,
396,
921,
13,
1678,
396,
448,
13,
1678,
732,
6799,
13,
1678,
822,
921,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
317,
1691,
278,
921,
7117,
310,
278,
6257,
2602,
310,
278,
13,
4706,
4840,
29873,
431,
267,
13,
268,
13,
4706,
450,
525,
29916,
29915,
2875,
338,
385,
1409,
393,
1122,
367,
6790,
408,
263,
18761,
29892,
13,
4706,
1051,
29892,
12655,
1409,
29892,
470,
11701,
10488,
13,
13,
4706,
16969,
13,
4706,
448,
22158,
13,
4706,
12655,
29889,
299,
2378,
13,
4706,
9995,
13,
4706,
736,
1583,
3366,
29916,
3108,
13,
13,
1678,
732,
29916,
29889,
842,
357,
13,
1678,
822,
921,
29898,
1311,
29892,
659,
1125,
13,
4706,
1583,
3366,
29916,
3108,
353,
659,
13,
13,
1678,
396,
921,
4351,
13,
1678,
396,
23250,
13,
1678,
732,
6799,
13,
1678,
822,
921,
4351,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
317,
1691,
278,
2752,
3407,
373,
14477,
7448,
14293,
363,
29871,
921,
869,
13,
268,
13,
4706,
450,
525,
29916,
4351,
29915,
2875,
1818,
367,
6790,
408,
263,
1347,
470,
13,
4706,
408,
263,
6492,
368,
29889,
7720,
29918,
711,
1315,
29889,
4409,
1203,
13,
13,
4706,
16969,
13,
4706,
448,
22158,
13,
4706,
851,
13,
4706,
9995,
13,
4706,
736,
1583,
3366,
29916,
4351,
3108,
13,
13,
1678,
732,
29916,
4351,
29889,
842,
357,
13,
1678,
822,
921,
4351,
29898,
1311,
29892,
659,
1125,
13,
4706,
1583,
3366,
29916,
4351,
3108,
353,
659,
13,
13,
1678,
396,
343,
13,
1678,
396,
448,
13,
1678,
732,
6799,
13,
1678,
822,
343,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
317,
1691,
278,
343,
7117,
310,
278,
6257,
2602,
310,
278,
13,
4706,
4840,
29873,
431,
267,
13,
268,
13,
4706,
450,
525,
29891,
29915,
2875,
338,
385,
1409,
393,
1122,
367,
6790,
408,
263,
18761,
29892,
13,
4706,
1051,
29892,
12655,
1409,
29892,
470,
11701,
10488,
13,
13,
4706,
16969,
13,
4706,
448,
22158,
13,
4706,
12655,
29889,
299,
2378,
13,
4706,
9995,
13,
4706,
736,
1583,
3366,
29891,
3108,
13,
13,
1678,
732,
29891,
29889,
842,
357,
13,
1678,
822,
343,
29898,
1311,
29892,
659,
1125,
13,
4706,
1583,
3366,
29891,
3108,
353,
659,
13,
13,
1678,
396,
343,
4351,
13,
1678,
396,
23250,
13,
1678,
732,
6799,
13,
1678,
822,
343,
4351,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
317,
1691,
278,
2752,
3407,
373,
14477,
7448,
14293,
363,
29871,
343,
869,
13,
268,
13,
4706,
450,
525,
952,
2214,
29915,
2875,
1818,
367,
6790,
408,
263,
1347,
470,
13,
4706,
408,
263,
6492,
368,
29889,
7720,
29918,
711,
1315,
29889,
4409,
1203,
13,
13,
4706,
16969,
13,
4706,
448,
22158,
13,
4706,
851,
13,
4706,
9995,
13,
4706,
736,
1583,
3366,
952,
2214,
3108,
13,
13,
1678,
732,
952,
2214,
29889,
842,
357,
13,
1678,
822,
343,
4351,
29898,
1311,
29892,
659,
1125,
13,
4706,
1583,
3366,
952,
2214,
3108,
353,
659,
13,
13,
1678,
396,
503,
13,
1678,
396,
448,
13,
1678,
732,
6799,
13,
1678,
822,
503,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
317,
1691,
278,
503,
7117,
310,
278,
6257,
2602,
310,
278,
13,
4706,
4840,
29873,
431,
267,
13,
268,
13,
4706,
450,
525,
29920,
29915,
2875,
338,
385,
1409,
393,
1122,
367,
6790,
408,
263,
18761,
29892,
13,
4706,
1051,
29892,
12655,
1409,
29892,
470,
11701,
10488,
13,
13,
4706,
16969,
13,
4706,
448,
22158,
13,
4706,
12655,
29889,
299,
2378,
13,
4706,
9995,
13,
4706,
736,
1583,
3366,
29920,
3108,
13,
13,
1678,
732,
29920,
29889,
842,
357,
13,
1678,
822,
503,
29898,
1311,
29892,
659,
1125,
13,
4706,
1583,
3366,
29920,
3108,
353,
659,
13,
13,
1678,
396,
503,
4351,
13,
1678,
396,
23250,
13,
1678,
732,
6799,
13,
1678,
822,
503,
4351,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
317,
1691,
278,
2752,
3407,
373,
14477,
7448,
14293,
363,
29871,
503,
869,
13,
268,
13,
4706,
450,
525,
29920,
4351,
29915,
2875,
1818,
367,
6790,
408,
263,
1347,
470,
13,
4706,
408,
263,
6492,
368,
29889,
7720,
29918,
711,
1315,
29889,
4409,
1203,
13,
13,
4706,
16969,
13,
4706,
448,
22158,
13,
4706,
851,
13,
4706,
9995,
13,
4706,
736,
1583,
3366,
29920,
4351,
3108,
13,
13,
1678,
732,
29920,
4351,
29889,
842,
357,
13,
1678,
822,
503,
4351,
29898,
1311,
29892,
659,
1125,
13,
4706,
1583,
3366,
29920,
4351,
3108,
353,
659,
13,
13,
1678,
396,
21782,
4426,
6139,
13,
1678,
396,
448,
2683,
28400,
13,
1678,
732,
6799,
13,
1678,
822,
903,
7728,
29918,
2783,
699,
1980,
29898,
1311,
1125,
13,
4706,
736,
9995,
29905,
13,
4706,
921,
13,
9651,
317,
1691,
278,
921,
7117,
310,
278,
6257,
2602,
310,
278,
13,
9651,
4840,
29873,
431,
267,
13,
4706,
921,
4351,
13,
9651,
317,
1691,
278,
2752,
3407,
373,
14477,
7448,
14293,
363,
29871,
921,
13,
9651,
869,
13,
4706,
343,
13,
9651,
317,
1691,
278,
343,
7117,
310,
278,
6257,
2602,
310,
278,
13,
9651,
4840,
29873,
431,
267,
13,
4706,
343,
4351,
13,
9651,
317,
1691,
278,
2752,
3407,
373,
14477,
7448,
14293,
363,
29871,
343,
13,
9651,
869,
13,
4706,
503,
13,
9651,
317,
1691,
278,
503,
7117,
310,
278,
6257,
2602,
310,
278,
13,
9651,
4840,
29873,
431,
267,
13,
4706,
503,
4351,
13,
9651,
317,
1691,
278,
2752,
3407,
373,
14477,
7448,
14293,
363,
29871,
503,
13,
9651,
869,
13,
4706,
9995,
13,
13,
1678,
822,
4770,
2344,
12035,
13,
4706,
1583,
29892,
13,
4706,
1852,
29922,
8516,
29892,
13,
4706,
921,
29922,
8516,
29892,
13,
4706,
921,
4351,
29922,
8516,
29892,
13,
4706,
343,
29922,
8516,
29892,
13,
4706,
343,
4351,
29922,
8516,
29892,
13,
4706,
503,
29922,
8516,
29892,
13,
4706,
503,
4351,
29922,
8516,
29892,
13,
4706,
3579,
19290,
13,
268,
1125,
13,
4706,
9995,
13,
4706,
1281,
4984,
263,
716,
624,
5708,
1203,
13,
308,
13,
4706,
12662,
2699,
13,
4706,
448,
1378,
29899,
13,
4706,
1852,
13,
9651,
9657,
310,
4426,
15878,
411,
445,
5823,
470,
13,
9651,
385,
2777,
310,
13,
9651,
584,
1990,
18078,
5317,
368,
29889,
4262,
29918,
711,
1315,
29889,
5461,
29873,
4003,
29889,
4763,
29879,
29952,
13,
4706,
921,
13,
9651,
317,
1691,
278,
921,
7117,
310,
278,
6257,
2602,
310,
278,
13,
9651,
4840,
29873,
431,
267,
13,
4706,
921,
4351,
13,
9651,
317,
1691,
278,
2752,
3407,
373,
14477,
7448,
14293,
363,
29871,
921,
13,
9651,
869,
13,
4706,
343,
13,
9651,
317,
1691,
278,
343,
7117,
310,
278,
6257,
2602,
310,
278,
13,
9651,
4840,
29873,
431,
267,
13,
4706,
343,
4351,
13,
9651,
317,
1691,
278,
2752,
3407,
373,
14477,
7448,
14293,
363,
29871,
343,
13,
9651,
869,
13,
4706,
503,
13,
9651,
317,
1691,
278,
503,
7117,
310,
278,
6257,
2602,
310,
278,
13,
9651,
4840,
29873,
431,
267,
13,
4706,
503,
4351,
13,
9651,
317,
1691,
278,
2752,
3407,
373,
14477,
7448,
14293,
363,
29871,
503,
13,
9651,
869,
13,
13,
4706,
16969,
13,
4706,
448,
22158,
13,
4706,
624,
5708,
13,
4706,
9995,
13,
4706,
2428,
29898,
4763,
29879,
29892,
1583,
467,
1649,
2344,
1649,
703,
27382,
1159,
13,
13,
4706,
565,
11119,
3560,
29908,
297,
9049,
5085,
29901,
13,
9651,
1583,
3032,
3560,
353,
9049,
5085,
3366,
29918,
3560,
3108,
13,
9651,
736,
13,
13,
4706,
396,
15758,
403,
1852,
13,
4706,
396,
448,
1378,
5634,
13,
4706,
565,
1852,
338,
6213,
29901,
13,
9651,
1852,
353,
6571,
13,
4706,
25342,
338,
8758,
29898,
1191,
29892,
1583,
17255,
1990,
1649,
1125,
13,
9651,
1852,
353,
1852,
29889,
517,
29918,
5317,
368,
29918,
3126,
580,
13,
4706,
25342,
338,
8758,
29898,
1191,
29892,
9657,
1125,
13,
9651,
1852,
353,
903,
8552,
29889,
8552,
29898,
1191,
29897,
13,
4706,
1683,
29901,
13,
9651,
12020,
7865,
2392,
29898,
13,
18884,
9995,
29905,
13,
1576,
937,
2980,
304,
278,
6492,
368,
29889,
4262,
29918,
711,
1315,
29889,
5461,
29873,
4003,
29889,
4763,
29879,
29871,
13,
27821,
1818,
367,
263,
9657,
470,
29871,
13,
273,
2777,
310,
584,
1990,
18078,
5317,
368,
29889,
4262,
29918,
711,
1315,
29889,
5461,
29873,
4003,
29889,
4763,
29879,
29952,
15945,
29908,
13,
9651,
1723,
13,
13,
4706,
396,
29273,
14383,
29918,
20965,
13,
4706,
396,
448,
2683,
489,
13,
4706,
1583,
3032,
11014,
29918,
20965,
353,
9049,
5085,
29889,
7323,
703,
11014,
29918,
20965,
613,
7700,
29897,
13,
4706,
1583,
3032,
15480,
353,
9049,
5085,
29889,
7323,
703,
29918,
15480,
613,
5852,
29897,
13,
13,
4706,
396,
6977,
5987,
848,
9657,
411,
4426,
13,
4706,
396,
448,
2683,
2683,
29899,
13,
4706,
903,
29894,
353,
1852,
29889,
7323,
703,
29916,
613,
6213,
29897,
13,
4706,
903,
29894,
353,
921,
565,
921,
338,
451,
6213,
1683,
903,
29894,
13,
4706,
565,
903,
29894,
338,
451,
6213,
29901,
13,
9651,
1583,
3366,
29916,
3108,
353,
903,
29894,
13,
4706,
903,
29894,
353,
1852,
29889,
7323,
703,
29916,
4351,
613,
6213,
29897,
13,
4706,
903,
29894,
353,
921,
4351,
565,
921,
4351,
338,
451,
6213,
1683,
903,
29894,
13,
4706,
565,
903,
29894,
338,
451,
6213,
29901,
13,
9651,
1583,
3366,
29916,
4351,
3108,
353,
903,
29894,
13,
4706,
903,
29894,
353,
1852,
29889,
7323,
703,
29891,
613,
6213,
29897,
13,
4706,
903,
29894,
353,
343,
565,
343,
338,
451,
6213,
1683,
903,
29894,
13,
4706,
565,
903,
29894,
338,
451,
6213,
29901,
13,
9651,
1583,
3366,
29891,
3108,
353,
903,
29894,
13,
4706,
903,
29894,
353,
1852,
29889,
7323,
703,
952,
2214,
613,
6213,
29897,
13,
4706,
903,
29894,
353,
343,
4351,
565,
343,
4351,
338,
451,
6213,
1683,
903,
29894,
13,
4706,
565,
903,
29894,
338,
451,
6213,
29901,
13,
9651,
1583,
3366,
952,
2214,
3108,
353,
903,
29894,
13,
4706,
903,
29894,
353,
1852,
29889,
7323,
703,
29920,
613,
6213,
29897,
13,
4706,
903,
29894,
353,
503,
565,
503,
338,
451,
6213,
1683,
903,
29894,
13,
4706,
565,
903,
29894,
338,
451,
6213,
29901,
13,
9651,
1583,
3366,
29920,
3108,
353,
903,
29894,
13,
4706,
903,
29894,
353,
1852,
29889,
7323,
703,
29920,
4351,
613,
6213,
29897,
13,
4706,
903,
29894,
353,
503,
4351,
565,
503,
4351,
338,
451,
6213,
1683,
903,
29894,
13,
4706,
565,
903,
29894,
338,
451,
6213,
29901,
13,
9651,
1583,
3366,
29920,
4351,
3108,
353,
903,
29894,
13,
13,
4706,
396,
10554,
9815,
9049,
5085,
13,
4706,
396,
448,
2683,
23648,
13,
4706,
1583,
3032,
5014,
29918,
19290,
29898,
1068,
8977,
29898,
1191,
29892,
3579,
19290,
876,
13,
13,
4706,
396,
2538,
300,
14383,
29918,
20965,
13,
4706,
396,
448,
2683,
29899,
13,
4706,
1583,
3032,
11014,
29918,
20965,
353,
7700,
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
] |
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
// Generated using tools/cldr/cldr-to-icu/build-icu-data.xml
ha_NG{
}
| [
1,
29871,
30143,
458,
29871,
30211,
29871,
29906,
29900,
29896,
29953,
322,
2678,
29901,
23862,
29892,
9266,
29889,
322,
4045,
29889,
13,
458,
19245,
669,
4958,
310,
671,
29901,
1732,
597,
1636,
29889,
2523,
356,
29889,
990,
29914,
8552,
1266,
29889,
1420,
13,
458,
3251,
630,
773,
8492,
29914,
29883,
430,
29878,
29914,
29883,
430,
29878,
29899,
517,
29899,
293,
29884,
29914,
4282,
29899,
293,
29884,
29899,
1272,
29889,
3134,
13,
2350,
29918,
9312,
29912,
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
] |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Oct 15 2018 10:31:50).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <objc/NSObject.h>
@class MTLRenderPipelineDescriptor;
@protocol MTLFunction, MTLRenderPipelineState;
@interface PKMetalShader : NSObject
{
id <MTLFunction> _vertexFunction;
id <MTLFunction> _fragmentFunction;
id <MTLRenderPipelineState> _pipelineState;
id <MTLRenderPipelineState> _pipelineStateWithColorMaskNone;
id <MTLRenderPipelineState> _msaaPipelineState;
id <MTLRenderPipelineState> _msaaPipelineStateWithColorMaskNone;
unsigned long long _stencilPixelFormat;
long long _blendMode;
unsigned long long _colorAttachmentIndex;
MTLRenderPipelineDescriptor *_sharedPipelineDescriptor;
unsigned long long _numColorAttachments;
PKMetalShader *_noBlendModeShader;
PKMetalShader *_addBlendModeShader;
PKMetalShader *_subtractBlendModeShader;
PKMetalShader *_maxBlendModeShader;
PKMetalShader *_invertBlendModeShader;
unsigned long long _msaaPipelineStateSampleCount;
unsigned long long _msaaPipelineStateWithColorMaskNoneSampleCount;
}
- (void).cxx_destruct;
@property(readonly, nonatomic) id <MTLRenderPipelineState> pipelineState; // @synthesize pipelineState=_pipelineState;
- (id)shaderWithBlendMode:(long long)arg1;
- (id)newShaderWithBlendMode:(long long)arg1;
- (id)msaaPipelineStateWithColorMaskNoneAndSampleCount:(unsigned long long)arg1;
- (id)pipelineStateWithColorMaskNone;
- (id)msaaPipelineStateWithSampleCount:(unsigned long long)arg1;
- (void)createPipelineState;
- (id)pipelineStateDescriptorSampleCount:(unsigned long long)arg1;
- (id)initWithVertexFunction:(id)arg1 fragmentFunction:(id)arg2 blendMode:(long long)arg3 colorAttachmentIndex:(unsigned long long)arg4 sharedPipelineDescriptor:(id)arg5 numColorAttachments:(unsigned long long)arg6;
- (id)initWithVertexFunction:(id)arg1 fragmentFunction:(id)arg2 sharedPipelineDescriptor:(id)arg3 numColorAttachments:(unsigned long long)arg4;
- (id)init;
@end
| [
1,
849,
13,
458,
268,
3251,
630,
491,
770,
29899,
15070,
29871,
29941,
29889,
29945,
313,
29953,
29946,
2586,
29897,
313,
11862,
1873,
13126,
4756,
29871,
29896,
29945,
29871,
29906,
29900,
29896,
29947,
29871,
29896,
29900,
29901,
29941,
29896,
29901,
29945,
29900,
467,
13,
458,
13,
458,
268,
770,
29899,
15070,
338,
14187,
1266,
313,
29907,
29897,
29871,
29896,
29929,
29929,
29955,
29899,
29896,
29929,
29929,
29947,
29892,
29871,
29906,
29900,
29900,
29900,
29899,
29906,
29900,
29900,
29896,
29892,
29871,
29906,
29900,
29900,
29946,
29899,
29906,
29900,
29896,
29945,
491,
13981,
405,
4790,
538,
29889,
13,
458,
13,
13,
29937,
5215,
529,
5415,
29883,
29914,
3059,
2061,
29889,
29882,
29958,
13,
13,
29992,
1990,
341,
14632,
10716,
29925,
23828,
19124,
29936,
13,
29992,
20464,
341,
14632,
6678,
29892,
341,
14632,
10716,
29925,
23828,
2792,
29936,
13,
13,
29992,
13248,
24457,
10095,
284,
2713,
1664,
584,
3865,
2061,
13,
29912,
13,
1678,
1178,
529,
11490,
29931,
6678,
29958,
903,
369,
4776,
6678,
29936,
13,
1678,
1178,
529,
11490,
29931,
6678,
29958,
903,
20777,
6678,
29936,
13,
1678,
1178,
529,
11490,
29931,
10716,
29925,
23828,
2792,
29958,
903,
13096,
5570,
2792,
29936,
13,
1678,
1178,
529,
11490,
29931,
10716,
29925,
23828,
2792,
29958,
903,
13096,
5570,
2792,
3047,
3306,
19832,
8516,
29936,
13,
1678,
1178,
529,
11490,
29931,
10716,
29925,
23828,
2792,
29958,
903,
1516,
7340,
29925,
23828,
2792,
29936,
13,
1678,
1178,
529,
11490,
29931,
10716,
29925,
23828,
2792,
29958,
903,
1516,
7340,
29925,
23828,
2792,
3047,
3306,
19832,
8516,
29936,
13,
1678,
12780,
1472,
1472,
903,
3510,
5553,
29637,
5809,
29936,
13,
1678,
1472,
1472,
903,
2204,
355,
6818,
29936,
13,
1678,
12780,
1472,
1472,
903,
2780,
4165,
25117,
3220,
29936,
13,
1678,
341,
14632,
10716,
29925,
23828,
19124,
334,
29918,
12366,
29925,
23828,
19124,
29936,
13,
1678,
12780,
1472,
1472,
903,
1949,
3306,
4165,
496,
1860,
29936,
13,
1678,
24457,
10095,
284,
2713,
1664,
334,
29918,
1217,
10358,
355,
6818,
2713,
1664,
29936,
13,
1678,
24457,
10095,
284,
2713,
1664,
334,
29918,
1202,
10358,
355,
6818,
2713,
1664,
29936,
13,
1678,
24457,
10095,
284,
2713,
1664,
334,
29918,
1491,
29873,
1461,
10358,
355,
6818,
2713,
1664,
29936,
13,
1678,
24457,
10095,
284,
2713,
1664,
334,
29918,
3317,
10358,
355,
6818,
2713,
1664,
29936,
13,
1678,
24457,
10095,
284,
2713,
1664,
334,
29918,
262,
1765,
10358,
355,
6818,
2713,
1664,
29936,
13,
1678,
12780,
1472,
1472,
903,
1516,
7340,
29925,
23828,
2792,
17708,
3981,
29936,
13,
1678,
12780,
1472,
1472,
903,
1516,
7340,
29925,
23828,
2792,
3047,
3306,
19832,
8516,
17708,
3981,
29936,
13,
29913,
13,
13,
29899,
313,
5405,
467,
29883,
4419,
29918,
7854,
1247,
29936,
13,
29992,
6799,
29898,
949,
6194,
29892,
1661,
21641,
29897,
1178,
529,
11490,
29931,
10716,
29925,
23828,
2792,
29958,
16439,
2792,
29936,
849,
732,
19274,
26041,
675,
16439,
2792,
29922,
29918,
13096,
5570,
2792,
29936,
13,
29899,
313,
333,
29897,
845,
1664,
3047,
10358,
355,
6818,
5919,
5426,
1472,
29897,
1191,
29896,
29936,
13,
29899,
313,
333,
29897,
1482,
2713,
1664,
3047,
10358,
355,
6818,
5919,
5426,
1472,
29897,
1191,
29896,
29936,
13,
29899,
313,
333,
29897,
1516,
7340,
29925,
23828,
2792,
3047,
3306,
19832,
8516,
2855,
17708,
3981,
5919,
15395,
1472,
1472,
29897,
1191,
29896,
29936,
13,
29899,
313,
333,
29897,
13096,
5570,
2792,
3047,
3306,
19832,
8516,
29936,
13,
29899,
313,
333,
29897,
1516,
7340,
29925,
23828,
2792,
3047,
17708,
3981,
5919,
15395,
1472,
1472,
29897,
1191,
29896,
29936,
13,
29899,
313,
5405,
29897,
3258,
29925,
23828,
2792,
29936,
13,
29899,
313,
333,
29897,
13096,
5570,
2792,
19124,
17708,
3981,
5919,
15395,
1472,
1472,
29897,
1191,
29896,
29936,
13,
29899,
313,
333,
29897,
2344,
3047,
22479,
6678,
5919,
333,
29897,
1191,
29896,
9376,
6678,
5919,
333,
29897,
1191,
29906,
1999,
355,
6818,
5919,
5426,
1472,
29897,
1191,
29941,
2927,
4165,
25117,
3220,
5919,
15395,
1472,
1472,
29897,
1191,
29946,
7258,
29925,
23828,
19124,
5919,
333,
29897,
1191,
29945,
954,
3306,
4165,
496,
1860,
5919,
15395,
1472,
1472,
29897,
1191,
29953,
29936,
13,
29899,
313,
333,
29897,
2344,
3047,
22479,
6678,
5919,
333,
29897,
1191,
29896,
9376,
6678,
5919,
333,
29897,
1191,
29906,
7258,
29925,
23828,
19124,
5919,
333,
29897,
1191,
29941,
954,
3306,
4165,
496,
1860,
5919,
15395,
1472,
1472,
29897,
1191,
29946,
29936,
13,
29899,
313,
333,
29897,
2344,
29936,
13,
13,
29992,
355,
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
] |
using System;
using System.Windows.Forms;
using System.Threading;
#pragma warning disable 420
namespace EVEMon.Common.Threading
{
/// <summary>
/// Implements a pseudo-actor pattern bound to the UI thread, see also <see cref="IActor"/>.
/// </summary>
public sealed class UIActor : IActor
{
private Form m_applicationForm;
private volatile int m_shutdown;
/// <summary>
/// Default constructor.
/// </summary>
/// <param name="mainApplicationForm">The application's main form</param>
public UIActor(Form mainApplicationForm)
{
m_applicationForm = mainApplicationForm;
m_applicationForm.Invoke((Action)(() =>
{
if (Actor.CurrentActor != null) Actor.CurrentActor = this;
}));
}
/// <summary>
/// Gets the actor the instances of this type have an affinity with.
/// </summary>
public Form MainForm
{
get { return m_applicationForm; }
}
/// <summary>
/// Invoke the provided delegate on the bound thread and wait for completion
/// </summary>
/// <param name="action">The action to invoke</param>
/// <exception cref="NullReferenceException">The main form has not been specified through <see cref="Initialize()"/> yet.</exception>
/// <returns>True when succesful, false otherwise (the thread has been shutdown).</returns>
public bool Invoke(Action action)
{
try
{
m_applicationForm.Invoke(action);
return true;
}
catch (ObjectDisposedException exc)
{
ExceptionHandler.LogException(exc, true);
Interlocked.Increment(ref m_shutdown);
return false;
}
catch (AccessViolationException exc)
{
ExceptionHandler.LogException(exc, true);
Interlocked.Increment(ref m_shutdown);
return false;
}
}
/// <summary>
/// Invoke the provided delegate on the bound thread and immediately returns without waiting for the completion. Note that, when the calling thread and the bound thread are the same, we execute the action immediately without waiting.
/// </summary>
/// <param name="action">The action to invoke</param>
/// <exception cref="NullReferenceException">The main form has not been specified through <see cref="Initialize()"/> yet.</exception>
/// <returns>True when succesful, false otherwise (the thread has been shutdown).</returns>
public bool BeginInvoke(Action action)
{
try
{
m_applicationForm.BeginInvoke(action);
return true;
}
catch (ObjectDisposedException exc)
{
ExceptionHandler.LogException(exc, true);
Interlocked.Increment(ref m_shutdown);
return false;
}
catch (AccessViolationException exc)
{
ExceptionHandler.LogException(exc, true);
Interlocked.Increment(ref m_shutdown);
return false;
}
}
/// <summary>
/// Asserts the calling thread is this actor's underlying thread or throws an exception
/// </summary>
/// <exception cref="AccessViolationException">The calling thread is different from the underlying thread</exception>
public void AssertAccess()
{
try
{
if (!m_applicationForm.InvokeRequired) return;
}
catch (ObjectDisposedException exc)
{
ExceptionHandler.LogException(exc, true);
Interlocked.Increment(ref m_shutdown);
return;
}
catch (AccessViolationException exc)
{
ExceptionHandler.LogException(exc, true);
Interlocked.Increment(ref m_shutdown);
return;
}
throw new AccessViolationException("The calling thread is different from the underlying thread");
}
/// <summary>
/// Forces the bound thread to shutdown in a clean way (no thread abortion)
/// </summary>
/// <exception cref="NullReferenceException">The main form has not been specified through <see cref="Initialize()"/> yet.</exception>
public void Shutdown()
{
if (Interlocked.Increment(ref m_shutdown) == 1)
{
try
{
m_applicationForm.Close();
}
catch (ObjectDisposedException exc)
{
ExceptionHandler.LogException(exc, true);
Interlocked.Increment(ref m_shutdown);
return;
}
catch (AccessViolationException exc)
{
ExceptionHandler.LogException(exc, true);
Interlocked.Increment(ref m_shutdown);
return;
}
}
}
/// <summary>
/// Gets true if the actor has been shutdown
/// </summary>
/// <exception cref="NullReferenceException">The main form has not been specified through <see cref="Initialize()"/> yet.</exception>
public bool IsShutdown
{
get
{
return m_shutdown != 0 || m_applicationForm.IsDisposed;
}
}
/// <summary>
/// Gets true if the calling thread is the underlying thread and is living; false otherwise.
/// When false, operations on this actor have to be done through <see cref="Invoke"/> or <see cref="BeginInvoke"/>.
/// </summary>
/// <exception cref="NullReferenceException">The main form has not been specified through <see cref="Initialize()"/> yet.</exception>
public bool HasAccess
{
get
{
try
{
return !m_applicationForm.InvokeRequired;
}
catch (ObjectDisposedException exc)
{
ExceptionHandler.LogException(exc, true);
Interlocked.Increment(ref m_shutdown);
return false;
}
catch (AccessViolationException exc)
{
ExceptionHandler.LogException(exc, true);
Interlocked.Increment(ref m_shutdown);
return false;
}
}
}
/// <summary>
/// Gets a timer.
/// </summary>
/// <param name="callback">The callback invoked on every tick.</param>
/// <param name="period">The ticking period.</param>
/// <param name="start">When true, the timer starts on creation.</param>
/// <returns>The created timer.</returns>
public IActorTimer GetTimer(Action callback, int period, bool start)
{
return new UIActorTimer(m_applicationForm, callback, period, start);
}
}
}
| [
1,
29871,
30143,
4746,
2184,
29936,
13,
4746,
2184,
29889,
7685,
29889,
12605,
29936,
13,
4746,
2184,
29889,
4899,
292,
29936,
13,
13,
29937,
28436,
9177,
11262,
29871,
29946,
29906,
29900,
13,
13,
22377,
382,
12064,
7185,
29889,
18877,
29889,
4899,
292,
13,
29912,
13,
1678,
4363,
529,
7727,
29958,
13,
1678,
4363,
1954,
9711,
263,
17381,
29899,
7168,
4766,
3216,
304,
278,
3740,
3244,
29892,
1074,
884,
529,
4149,
907,
29888,
543,
10764,
2801,
4681,
29889,
13,
1678,
4363,
1533,
7727,
29958,
13,
1678,
970,
409,
7943,
770,
3740,
29909,
2801,
584,
306,
29909,
2801,
13,
1678,
426,
13,
4706,
2024,
3812,
286,
29918,
6214,
2500,
29936,
13,
4706,
2024,
1700,
24285,
938,
286,
29918,
845,
329,
3204,
29936,
13,
13,
4706,
4363,
529,
7727,
29958,
13,
4706,
4363,
13109,
5823,
29889,
13,
4706,
4363,
1533,
7727,
29958,
13,
4706,
4363,
529,
3207,
1024,
543,
3396,
4873,
2500,
1013,
1576,
2280,
29915,
29879,
1667,
883,
829,
3207,
29958,
13,
4706,
970,
3740,
29909,
2801,
29898,
2500,
1667,
4873,
2500,
29897,
13,
4706,
426,
13,
9651,
286,
29918,
6214,
2500,
353,
1667,
4873,
2500,
29936,
13,
13,
9651,
286,
29918,
6214,
2500,
29889,
20731,
3552,
4276,
5033,
580,
1149,
13,
9651,
426,
13,
18884,
565,
313,
29909,
2801,
29889,
7583,
29909,
2801,
2804,
1870,
29897,
319,
2801,
29889,
7583,
29909,
2801,
353,
445,
29936,
13,
9651,
500,
2483,
13,
4706,
500,
13,
13,
4706,
4363,
529,
7727,
29958,
13,
4706,
4363,
402,
1691,
278,
11339,
278,
8871,
310,
445,
1134,
505,
385,
2756,
13593,
411,
29889,
29871,
13,
4706,
4363,
1533,
7727,
29958,
13,
4706,
970,
3812,
4241,
2500,
13,
4706,
426,
13,
9651,
679,
426,
736,
286,
29918,
6214,
2500,
29936,
500,
13,
4706,
500,
13,
13,
4706,
4363,
529,
7727,
29958,
13,
4706,
4363,
512,
5744,
278,
4944,
13341,
373,
278,
3216,
3244,
322,
4480,
363,
13285,
13,
4706,
4363,
1533,
7727,
29958,
13,
4706,
4363,
529,
3207,
1024,
543,
2467,
1013,
1576,
3158,
304,
15928,
829,
3207,
29958,
13,
4706,
4363,
529,
11739,
907,
29888,
543,
7327,
7422,
2451,
1013,
1576,
1667,
883,
756,
451,
1063,
6790,
1549,
529,
4149,
907,
29888,
543,
6644,
6646,
580,
4681,
3447,
21106,
11739,
29958,
13,
4706,
4363,
529,
18280,
29958,
5574,
746,
8348,
267,
1319,
29892,
2089,
6467,
313,
1552,
3244,
756,
1063,
12522,
3204,
467,
829,
18280,
29958,
13,
4706,
970,
6120,
512,
5744,
29898,
4276,
3158,
29897,
13,
4706,
426,
13,
9651,
1018,
13,
9651,
426,
13,
18884,
286,
29918,
6214,
2500,
29889,
20731,
29898,
2467,
416,
13,
18884,
736,
1565,
29936,
13,
9651,
500,
13,
9651,
4380,
313,
2061,
4205,
4752,
2451,
5566,
29897,
13,
9651,
426,
13,
18884,
8960,
4598,
29889,
3403,
2451,
29898,
735,
29883,
29892,
1565,
416,
13,
18884,
4124,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
416,
13,
18884,
736,
2089,
29936,
13,
9651,
500,
13,
9651,
4380,
313,
6638,
29963,
29875,
22671,
2451,
5566,
29897,
13,
9651,
426,
13,
18884,
8960,
4598,
29889,
3403,
2451,
29898,
735,
29883,
29892,
1565,
416,
13,
18884,
4124,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
416,
13,
18884,
736,
2089,
29936,
13,
9651,
500,
13,
4706,
500,
13,
13,
4706,
4363,
529,
7727,
29958,
13,
4706,
4363,
512,
5744,
278,
4944,
13341,
373,
278,
3216,
3244,
322,
7389,
3639,
1728,
10534,
363,
278,
13285,
29889,
3940,
393,
29892,
746,
278,
5432,
3244,
322,
278,
3216,
3244,
526,
278,
1021,
29892,
591,
6222,
278,
3158,
7389,
1728,
10534,
29889,
13,
4706,
4363,
1533,
7727,
29958,
13,
4706,
4363,
529,
3207,
1024,
543,
2467,
1013,
1576,
3158,
304,
15928,
829,
3207,
29958,
13,
4706,
4363,
529,
11739,
907,
29888,
543,
7327,
7422,
2451,
1013,
1576,
1667,
883,
756,
451,
1063,
6790,
1549,
529,
4149,
907,
29888,
543,
6644,
6646,
580,
4681,
3447,
21106,
11739,
29958,
13,
4706,
4363,
529,
18280,
29958,
5574,
746,
8348,
267,
1319,
29892,
2089,
6467,
313,
1552,
3244,
756,
1063,
12522,
3204,
467,
829,
18280,
29958,
13,
4706,
970,
6120,
14893,
20731,
29898,
4276,
3158,
29897,
13,
4706,
426,
13,
9651,
1018,
13,
9651,
426,
13,
18884,
286,
29918,
6214,
2500,
29889,
17946,
20731,
29898,
2467,
416,
13,
18884,
736,
1565,
29936,
13,
9651,
500,
13,
9651,
4380,
313,
2061,
4205,
4752,
2451,
5566,
29897,
13,
9651,
426,
13,
18884,
8960,
4598,
29889,
3403,
2451,
29898,
735,
29883,
29892,
1565,
416,
13,
18884,
4124,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
416,
13,
18884,
736,
2089,
29936,
13,
9651,
500,
13,
9651,
4380,
313,
6638,
29963,
29875,
22671,
2451,
5566,
29897,
13,
9651,
426,
13,
18884,
8960,
4598,
29889,
3403,
2451,
29898,
735,
29883,
29892,
1565,
416,
13,
18884,
4124,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
416,
13,
18884,
736,
2089,
29936,
13,
9651,
500,
13,
4706,
500,
13,
13,
4706,
4363,
529,
7727,
29958,
13,
4706,
4363,
1094,
643,
1372,
278,
5432,
3244,
338,
445,
11339,
29915,
29879,
14407,
3244,
470,
8026,
385,
3682,
13,
4706,
4363,
1533,
7727,
29958,
13,
4706,
4363,
529,
11739,
907,
29888,
543,
6638,
29963,
29875,
22671,
2451,
1013,
1576,
5432,
3244,
338,
1422,
515,
278,
14407,
3244,
829,
11739,
29958,
13,
4706,
970,
1780,
16499,
6638,
580,
13,
4706,
426,
13,
9651,
1018,
13,
9651,
426,
13,
18884,
565,
5384,
29885,
29918,
6214,
2500,
29889,
20731,
19347,
29897,
736,
29936,
13,
9651,
500,
13,
9651,
4380,
313,
2061,
4205,
4752,
2451,
5566,
29897,
13,
9651,
426,
13,
18884,
8960,
4598,
29889,
3403,
2451,
29898,
735,
29883,
29892,
1565,
416,
13,
18884,
4124,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
416,
13,
18884,
736,
29936,
13,
9651,
500,
13,
9651,
4380,
313,
6638,
29963,
29875,
22671,
2451,
5566,
29897,
13,
9651,
426,
13,
18884,
8960,
4598,
29889,
3403,
2451,
29898,
735,
29883,
29892,
1565,
416,
13,
18884,
4124,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
416,
13,
18884,
736,
29936,
13,
9651,
500,
13,
13,
9651,
3183,
716,
11028,
29963,
29875,
22671,
2451,
703,
1576,
5432,
3244,
338,
1422,
515,
278,
14407,
3244,
1496,
13,
4706,
500,
13,
13,
4706,
4363,
529,
7727,
29958,
13,
4706,
4363,
25571,
278,
3216,
3244,
304,
12522,
3204,
297,
263,
5941,
982,
313,
1217,
3244,
27450,
291,
29897,
13,
4706,
4363,
1533,
7727,
29958,
13,
4706,
4363,
529,
11739,
907,
29888,
543,
7327,
7422,
2451,
1013,
1576,
1667,
883,
756,
451,
1063,
6790,
1549,
529,
4149,
907,
29888,
543,
6644,
6646,
580,
4681,
3447,
21106,
11739,
29958,
13,
4706,
970,
1780,
1383,
329,
3204,
580,
13,
4706,
426,
13,
9651,
565,
313,
4074,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
29897,
1275,
29871,
29896,
29897,
13,
9651,
426,
13,
18884,
1018,
13,
18884,
426,
13,
462,
1678,
286,
29918,
6214,
2500,
29889,
11123,
890,
13,
18884,
500,
13,
18884,
4380,
313,
2061,
4205,
4752,
2451,
5566,
29897,
13,
18884,
426,
13,
462,
1678,
8960,
4598,
29889,
3403,
2451,
29898,
735,
29883,
29892,
1565,
416,
13,
462,
1678,
4124,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
416,
13,
462,
1678,
736,
29936,
13,
18884,
500,
13,
18884,
4380,
313,
6638,
29963,
29875,
22671,
2451,
5566,
29897,
13,
18884,
426,
13,
462,
1678,
8960,
4598,
29889,
3403,
2451,
29898,
735,
29883,
29892,
1565,
416,
13,
462,
1678,
4124,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
416,
13,
462,
1678,
736,
29936,
13,
18884,
500,
13,
9651,
500,
13,
4706,
500,
13,
13,
4706,
4363,
529,
7727,
29958,
13,
4706,
4363,
402,
1691,
1565,
565,
278,
11339,
756,
1063,
12522,
3204,
13,
4706,
4363,
1533,
7727,
29958,
13,
4706,
4363,
529,
11739,
907,
29888,
543,
7327,
7422,
2451,
1013,
1576,
1667,
883,
756,
451,
1063,
6790,
1549,
529,
4149,
907,
29888,
543,
6644,
6646,
580,
4681,
3447,
21106,
11739,
29958,
13,
4706,
970,
6120,
1317,
2713,
329,
3204,
13,
4706,
426,
13,
9651,
679,
29871,
13,
9651,
426,
13,
18884,
736,
286,
29918,
845,
329,
3204,
2804,
29871,
29900,
3830,
286,
29918,
6214,
2500,
29889,
3624,
4205,
4752,
29936,
13,
9651,
500,
13,
4706,
500,
13,
13,
4706,
4363,
529,
7727,
29958,
13,
4706,
4363,
402,
1691,
1565,
565,
278,
5432,
3244,
338,
278,
14407,
3244,
322,
338,
8471,
29936,
2089,
6467,
29889,
13,
4706,
4363,
1932,
2089,
29892,
6931,
373,
445,
11339,
505,
304,
367,
2309,
1549,
529,
4149,
907,
29888,
543,
20731,
4681,
470,
529,
4149,
907,
29888,
543,
17946,
20731,
4681,
29889,
13,
4706,
4363,
1533,
7727,
29958,
13,
4706,
4363,
529,
11739,
907,
29888,
543,
7327,
7422,
2451,
1013,
1576,
1667,
883,
756,
451,
1063,
6790,
1549,
529,
4149,
907,
29888,
543,
6644,
6646,
580,
4681,
3447,
21106,
11739,
29958,
13,
4706,
970,
6120,
11699,
6638,
13,
4706,
426,
13,
9651,
679,
29871,
13,
9651,
426,
13,
18884,
1018,
13,
18884,
426,
13,
462,
1678,
736,
1738,
29885,
29918,
6214,
2500,
29889,
20731,
19347,
29936,
13,
18884,
500,
13,
18884,
4380,
313,
2061,
4205,
4752,
2451,
5566,
29897,
13,
18884,
426,
13,
462,
1678,
8960,
4598,
29889,
3403,
2451,
29898,
735,
29883,
29892,
1565,
416,
13,
462,
1678,
4124,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
416,
13,
462,
1678,
736,
2089,
29936,
13,
18884,
500,
13,
18884,
4380,
313,
6638,
29963,
29875,
22671,
2451,
5566,
29897,
13,
18884,
426,
13,
462,
1678,
8960,
4598,
29889,
3403,
2451,
29898,
735,
29883,
29892,
1565,
416,
13,
462,
1678,
4124,
29113,
29889,
797,
17053,
29898,
999,
286,
29918,
845,
329,
3204,
416,
13,
462,
1678,
736,
2089,
29936,
13,
18884,
500,
13,
9651,
500,
13,
4706,
500,
13,
13,
4706,
4363,
529,
7727,
29958,
13,
4706,
4363,
402,
1691,
263,
12237,
29889,
13,
4706,
4363,
1533,
7727,
29958,
13,
4706,
4363,
529,
3207,
1024,
543,
14035,
1013,
1576,
6939,
22336,
373,
1432,
16892,
21106,
3207,
29958,
13,
4706,
4363,
529,
3207,
1024,
543,
19145,
1013,
1576,
16892,
292,
3785,
21106,
3207,
29958,
13,
4706,
4363,
529,
3207,
1024,
543,
2962,
1013,
10401,
1565,
29892,
278,
12237,
8665,
373,
11265,
21106,
3207,
29958,
13,
4706,
4363,
529,
18280,
29958,
1576,
2825,
12237,
21106,
18280,
29958,
13,
4706,
970,
306,
29909,
2801,
14745,
3617,
14745,
29898,
4276,
6939,
29892,
938,
3785,
29892,
6120,
1369,
29897,
13,
4706,
426,
13,
9651,
736,
716,
3740,
29909,
2801,
14745,
29898,
29885,
29918,
6214,
2500,
29892,
6939,
29892,
3785,
29892,
1369,
416,
13,
4706,
500,
13,
1678,
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
] |
Hyperglycemia reduces the extent of cerebral infarction in rats.
Although hyperglycemia is known to exacerbate neuronal injury in the setting of reversible brain ischemia, its effect on irreversible thrombotic infarction is less well understood. In this study, unilateral thrombotic infarction was induced photochemically in the parietal cortex of Wistar rats. Seven days later, brains were perfusion-fixed for light microscopy. Infarct areas were measured by computer-assisted planimetry on multiple coronal sections at 250-micron intervals; these data were integrated to yield infarct volumes. Fasted, normoglycemic rats were compared with hyperglycemic rats that had received 1.2-1.5 ml of 50% dextrose i.p. 15 minutes prior to the induction of infarction. Infarct volume averaged 12.5 +/- 4.0 mm3 (mean +/- SD) in rats (n = 14) with plasma glucose levels of 72-184 mg/dl; this differed statistically from the average volume of 9.3 +/- 3.3 mm3 observed in rats (n = 13) with elevated plasma glucose (range 264-607 mg/dl). Spearman rank correlation analysis confirmed a significant correlation of larger infarct volumes with lower plasma glucose levels. In contrast, rats receiving mannitol i.p. to produce an osmotic load comparable with that of the dextrose-pretreated animals showed larger infarct volumes than saline-treated controls. The small but definite beneficial effect of hyperglycemia in this end-arteriolar thrombotic infarction model is possibly attributable to improved local energy metabolism at the periphery of the lesion during the early period of lesion expansion. | [
1,
26078,
16808,
19335,
423,
26830,
278,
15834,
310,
274,
406,
1182,
284,
3041,
279,
428,
297,
364,
1446,
29889,
13,
2499,
3592,
11266,
16808,
19335,
423,
338,
2998,
304,
429,
562,
23936,
403,
26808,
7177,
24092,
297,
278,
4444,
310,
18764,
1821,
17294,
338,
14969,
423,
29892,
967,
2779,
373,
19950,
874,
1821,
266,
456,
7451,
293,
3041,
279,
428,
338,
3109,
1532,
11098,
29889,
512,
445,
6559,
29892,
443,
309,
1008,
284,
266,
456,
7451,
293,
3041,
279,
428,
471,
20974,
6731,
2878,
331,
1711,
297,
278,
610,
2035,
284,
1034,
4776,
310,
399,
391,
279,
364,
1446,
29889,
26647,
3841,
2678,
29892,
4105,
1144,
892,
23895,
3958,
29899,
20227,
363,
3578,
9200,
1557,
2270,
29889,
9969,
27014,
10161,
892,
17005,
491,
6601,
29899,
465,
12652,
3814,
17528,
719,
373,
2999,
1034,
7177,
13926,
472,
29871,
29906,
29945,
29900,
29899,
13076,
1617,
18747,
29936,
1438,
848,
892,
23387,
304,
7709,
3041,
27014,
18167,
29889,
23786,
287,
29892,
6056,
468,
368,
19335,
293,
364,
1446,
892,
9401,
411,
11266,
16808,
19335,
293,
364,
1446,
393,
750,
4520,
29871,
29896,
29889,
29906,
29899,
29896,
29889,
29945,
286,
29880,
310,
29871,
29945,
29900,
29995,
316,
486,
17811,
474,
29889,
29886,
29889,
29871,
29896,
29945,
6233,
7536,
304,
278,
21445,
310,
3041,
279,
428,
29889,
9969,
27014,
7977,
4759,
4063,
29871,
29896,
29906,
29889,
29945,
718,
24028,
29871,
29946,
29889,
29900,
5654,
29941,
313,
12676,
718,
24028,
8073,
29897,
297,
364,
1446,
313,
29876,
353,
29871,
29896,
29946,
29897,
411,
715,
25392,
3144,
1682,
852,
11174,
310,
29871,
29955,
29906,
29899,
29896,
29947,
29946,
286,
29887,
29914,
11671,
29936,
445,
1163,
287,
12997,
1711,
515,
278,
6588,
7977,
310,
29871,
29929,
29889,
29941,
718,
24028,
29871,
29941,
29889,
29941,
5654,
29941,
8900,
297,
364,
1446,
313,
29876,
353,
29871,
29896,
29941,
29897,
411,
11858,
630,
715,
25392,
3144,
1682,
852,
313,
3881,
29871,
29906,
29953,
29946,
29899,
29953,
29900,
29955,
286,
29887,
29914,
11671,
467,
5013,
279,
1171,
7115,
19869,
7418,
16725,
263,
7282,
19869,
310,
7200,
3041,
27014,
18167,
411,
5224,
715,
25392,
3144,
1682,
852,
11174,
29889,
512,
12814,
29892,
364,
1446,
13442,
767,
26129,
324,
474,
29889,
29886,
29889,
304,
7738,
385,
2897,
29885,
13574,
2254,
5734,
519,
411,
393,
310,
278,
316,
486,
17811,
29899,
1457,
2484,
630,
15006,
10018,
7200,
3041,
27014,
18167,
1135,
4497,
457,
29899,
2484,
630,
11761,
29889,
450,
2319,
541,
24860,
7795,
5611,
2779,
310,
11266,
16808,
19335,
423,
297,
445,
1095,
29899,
4254,
29875,
10170,
266,
456,
7451,
293,
3041,
279,
428,
1904,
338,
10075,
1098,
1091,
9246,
304,
16710,
1887,
5864,
1539,
19388,
1608,
472,
278,
23603,
561,
708,
310,
278,
966,
291,
2645,
278,
4688,
3785,
310,
966,
291,
13184,
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. Field of the Invention
The present invention relates to a highly reliable rechargeable lithium battery and a process for the production thereof. More particularly, the present invention relates to a highly reliable rechargeable lithium battery provided with an improved cathode constituted by a specific cathode active material and which is high in charge-and-discharge efficiency and also in discharge capacity, and it also relates to a process for the production of said rechargeable lithium battery.
2. Related Background Art
In recent years, global warming from the so-called greenhouse effect has been predicted due to increased levels of atmospheric CO2. To prevent this warming phenomenon from further developing, there is a tendency to prohibit the (construction of new steam-power generation plants which exhaust a large quantity of CO2.
Under these circumstances, proposals have been made to institute load leveling in order to effectively utilize power. Load leveling involves the installation of rechargeable batteries at general locations to store surplus power unused in the night, known as dump power. The power thus stored is available in the day time when the power demand is increased, thereby leveling the load requirements in terms of power generation.
Separately, there is an increased societal demand for developing a high performance rechargeable battery with a high energy density for an electric vehicle which would not exhaust air polluting substances. There is further increased societal demand for developing a miniature, lightweight, high performance rechargeable battery usable as a power source for portable instruments such as small personal computers, word processors, video cameras, and pocket telephones.
In order to attain such a miniature and light weight rechargeable battery, the use of a lithium-graphite intercalation compound as an anode active material has been proposed (see, Journal of the Electrochemical Society, 117, 222 (1970)).
Since then, public attention has focused on a rocking chair type lithium ion battery. Various studies have been made in order to develop such a rocking chair type lithium ion battery. The rocking chair type lithium ion battery is typically configured such that a carbon such as graphite is used as an anode active material and an intercalation compound intercalated with lithium ion is used as a cathode active material, and lithium ion is intercalated at an intercalation of the six-membered network plane provided by carbon atoms and thereby stored in the battery reaction upon operating charging. Presently, there are several known rocking chair type lithium ion batteries having such configuration which are suitable for practical use. In these lithium ion rechargeable batteries, the carbon serving as a host of intercalating the lithium ion is used as the anode active material to prevent the growth of a lithium dendrite, thereby prolonging the charging and discharging cycle life.
However, based on the configuration of the above lithium ion battery, there cannot be attained a desirable rechargeable lithium battery having an electric capacity and energy density similar to those of a primary battery in which a lithium metal is used as the anode active material.
In order to solve this problem, research and development studies are being made in order to develop a desirable carbon material capable of attaining an improved electric capacity for use as a constituent of the anode in the lithium ion battery.
Separately, in order to realize the production of a rechargeable battery with a high energy density, it is essential to develop not only such an anode material but also an effective cathode material capable of attaining an improved electric capacity. Presently, a lithium-transition metal oxide as an intercalation compound intercalated with lithium ion is principally used as the cathode active material. However, the use of this lithium-transition metal oxide can attain only 40 to 60% of the theoretical discharge capacity. Therefore, in the case of a rechargeable lithium battery including a lithium ion battery in which lithium ion is utilized as a guest in the charging and discharging reactions, there is an increased demand for attaining an improvement in the charging and discharging cycle life and also an improvement in the cathode so that it provides a high electric capacity.
An object of the present invention is to provide a highly reliable rechargeable lithium battery using an electrochemical intercalation reaction of lithium ion (that is, electrochemical insertion reaction of lithium ion) and an electrochemical deintercalation reaction of lithium ion (that is, electrochemical release reaction of lithium ion) (this rechargeable lithium battery will be hereinafter simply referred to as rechargeable lithium battery), which is provided with an improved cathode constituted by a specific powdery cathode active material having a primary particle size of 0.5 xcexcm or less and a large specific surface area, and which has a large electric capacity with a high energy density and a high charge-and-discharge efficiency, and is long enough in cycle life (charging and discharging cycle life).
Another object of the present invention is to provide a highly reliable rechargeable lithium battery having a large electric capacity with a high energy density and a high charge-and-discharge efficiency and which is long enough in cycle life, comprising at least a cathode, a separator, an anode, and an electrolyte or electrolyte solution integrated in a battery housing, characterized in that said cathode is constituted by a specific powdery cathode active material having a primary particle size of 0.5 xcexcm or less and a large specific surface area.
A further object of the present invention is to provide a process for the production of aforesaid rechargeable lithium battery.
Particularly, the present invention provides a process for the production of a highly reliable rechargeable lithium battery having a large electric capacity with a high energy density and a high charge-and-discharge efficiency and which is long enough in cycle life, comprising at least a cathode having a specific cathode active material, a separator, an anode, and an electrolyte or electrolyte solution integrated in a battery housing, characterized in that said process includes a step of preparing said cathode active material constituting said cathode, comprising mixing a salt of a transition metal in an aqueous solution containing at least a water-soluble polymer and dissolving said transition metal salt in said aqueous solution to obtain a product, and baking said product to form a powdery cathode active material.
Further, the present invention provides a process for the production of a highly reliable rechargeable lithium battery having a large electric capacity with a high energy density and a high charge-and-discharge efficiency and which is long enough in cycle life, comprising at least a cathode having a specific cathode active material, a separator, an anode, and an electrolyte or electrolyte solution integrated in a battery housing, characterized in that said process includes a step of preparing said cathode active material constituting said cathode, comprising mixing a salt of a transition metal in a monomer capable of forming at least a water-soluble polymer, polymerizing said monomer to obtain a polymerized product, and baking said polymerized product to form a powdery porous cathode active material. | [
1,
29871,
29896,
29889,
8989,
310,
278,
512,
7316,
13,
1576,
2198,
297,
7316,
1104,
1078,
304,
263,
10712,
23279,
337,
23367,
519,
301,
389,
1974,
16988,
322,
263,
1889,
363,
278,
5802,
727,
974,
29889,
5853,
10734,
29892,
278,
2198,
297,
7316,
1104,
1078,
304,
263,
10712,
23279,
337,
23367,
519,
301,
389,
1974,
16988,
4944,
411,
385,
16710,
274,
493,
356,
20016,
3860,
491,
263,
2702,
274,
493,
356,
6136,
5518,
322,
607,
338,
1880,
297,
8323,
29899,
392,
29899,
29881,
783,
279,
479,
19201,
322,
884,
297,
766,
23367,
13284,
29892,
322,
372,
884,
1104,
1078,
304,
263,
1889,
363,
278,
5802,
310,
1497,
337,
23367,
519,
301,
389,
1974,
16988,
29889,
13,
29906,
29889,
6376,
630,
16585,
3012,
13,
797,
7786,
2440,
29892,
5534,
1370,
4056,
515,
278,
577,
29899,
13998,
7933,
8697,
2779,
756,
1063,
25383,
2861,
304,
11664,
11174,
310,
15489,
8096,
293,
4810,
29906,
29889,
1763,
5557,
445,
1370,
4056,
27791,
265,
515,
4340,
14338,
29892,
727,
338,
263,
260,
5197,
304,
21460,
277,
278,
313,
3075,
4080,
310,
716,
21837,
29899,
13519,
12623,
18577,
607,
27096,
263,
2919,
14728,
310,
4810,
29906,
29889,
13,
29177,
1438,
14209,
29892,
9551,
1338,
505,
1063,
1754,
304,
832,
12356,
2254,
3233,
292,
297,
1797,
304,
17583,
3667,
675,
3081,
29889,
16012,
3233,
292,
20789,
278,
11161,
310,
337,
23367,
519,
10193,
583,
472,
2498,
14354,
304,
3787,
1190,
11242,
3081,
443,
3880,
297,
278,
4646,
29892,
2998,
408,
16766,
3081,
29889,
450,
3081,
4550,
6087,
338,
3625,
297,
278,
2462,
931,
746,
278,
3081,
9667,
338,
11664,
29892,
27999,
3233,
292,
278,
2254,
11780,
297,
4958,
310,
3081,
12623,
29889,
13,
2008,
862,
2486,
29892,
727,
338,
385,
11664,
5374,
26310,
9667,
363,
14338,
263,
1880,
4180,
337,
23367,
519,
16988,
411,
263,
1880,
5864,
9027,
363,
385,
12646,
19716,
607,
723,
451,
27096,
4799,
21180,
17068,
5960,
2925,
29889,
1670,
338,
4340,
11664,
5374,
26310,
9667,
363,
14338,
263,
20629,
1535,
29892,
3578,
7915,
29892,
1880,
4180,
337,
23367,
519,
16988,
502,
519,
408,
263,
3081,
2752,
363,
2011,
519,
23643,
1316,
408,
2319,
7333,
23226,
29892,
1734,
1889,
943,
29892,
4863,
3949,
18464,
29892,
322,
24589,
4382,
561,
2873,
29889,
13,
797,
1797,
304,
1098,
475,
1316,
263,
20629,
1535,
322,
3578,
7688,
337,
23367,
519,
16988,
29892,
278,
671,
310,
263,
301,
389,
1974,
29899,
4262,
568,
1006,
1052,
362,
752,
618,
408,
385,
385,
356,
6136,
5518,
756,
1063,
7972,
313,
4149,
29892,
8237,
310,
278,
10513,
307,
14969,
936,
7765,
29892,
29871,
29896,
29896,
29955,
29892,
29871,
29906,
29906,
29906,
313,
29896,
29929,
29955,
29900,
8106,
13,
23036,
769,
29892,
970,
8570,
756,
21309,
373,
263,
7679,
292,
11774,
1134,
301,
389,
1974,
16346,
16988,
29889,
9586,
681,
11898,
505,
1063,
1754,
297,
1797,
304,
2693,
1316,
263,
7679,
292,
11774,
1134,
301,
389,
1974,
16346,
16988,
29889,
450,
7679,
292,
11774,
1134,
301,
389,
1974,
16346,
16988,
338,
12234,
13252,
1316,
393,
263,
22004,
1316,
408,
3983,
568,
338,
1304,
408,
385,
385,
356,
6136,
5518,
322,
385,
1006,
1052,
362,
752,
618,
1006,
1052,
630,
411,
301,
389,
1974,
16346,
338,
1304,
408,
263,
274,
493,
356,
6136,
5518,
29892,
322,
301,
389,
1974,
16346,
338,
1006,
1052,
630,
472,
385,
1006,
1052,
362,
310,
278,
4832,
29899,
14242,
287,
3564,
10694,
4944,
491,
22004,
28422,
322,
27999,
6087,
297,
278,
16988,
19848,
2501,
13598,
9151,
292,
29889,
4360,
2705,
29892,
727,
526,
3196,
2998,
7679,
292,
11774,
1134,
301,
389,
1974,
16346,
10193,
583,
2534,
1316,
5285,
607,
526,
13907,
363,
15031,
671,
29889,
512,
1438,
301,
389,
1974,
16346,
337,
23367,
519,
10193,
583,
29892,
278,
22004,
16330,
408,
263,
3495,
310,
1006,
1052,
1218,
278,
301,
389,
1974,
16346,
338,
1304,
408,
278,
385,
356,
6136,
5518,
304,
5557,
278,
14321,
310,
263,
301,
389,
1974,
270,
355,
1377,
29892,
27999,
27044,
292,
278,
9151,
292,
322,
766,
25389,
292,
11412,
2834,
29889,
13,
17245,
29892,
2729,
373,
278,
5285,
310,
278,
2038,
301,
389,
1974,
16346,
16988,
29892,
727,
2609,
367,
1098,
7114,
263,
553,
27797,
337,
23367,
519,
301,
389,
1974,
16988,
2534,
385,
12646,
13284,
322,
5864,
9027,
2788,
304,
1906,
310,
263,
7601,
16988,
297,
607,
263,
301,
389,
1974,
11915,
338,
1304,
408,
278,
385,
356,
6136,
5518,
29889,
13,
797,
1797,
304,
4505,
445,
1108,
29892,
5925,
322,
5849,
11898,
526,
1641,
1754,
297,
1797,
304,
2693,
263,
553,
27797,
22004,
5518,
15390,
310,
1098,
17225,
385,
16710,
12646,
13284,
363,
671,
408,
263,
10719,
296,
310,
278,
385,
356,
297,
278,
301,
389,
1974,
16346,
16988,
29889,
13,
2008,
862,
2486,
29892,
297,
1797,
304,
16289,
278,
5802,
310,
263,
337,
23367,
519,
16988,
411,
263,
1880,
5864,
9027,
29892,
372,
338,
18853,
304,
2693,
451,
871,
1316,
385,
385,
356,
5518,
541,
884,
385,
11828,
274,
493,
356,
5518,
15390,
310,
1098,
17225,
385,
16710,
12646,
13284,
29889,
4360,
2705,
29892,
263,
301,
389,
1974,
29899,
20543,
11915,
19100,
680,
408,
385,
1006,
1052,
362,
752,
618,
1006,
1052,
630,
411,
301,
389,
1974,
16346,
338,
3420,
635,
1304,
408,
278,
274,
493,
356,
6136,
5518,
29889,
2398,
29892,
278,
671,
310,
445,
301,
389,
1974,
29899,
20543,
11915,
19100,
680,
508,
1098,
475,
871,
29871,
29946,
29900,
304,
29871,
29953,
29900,
29995,
310,
278,
23399,
766,
23367,
13284,
29889,
7857,
29892,
297,
278,
1206,
310,
263,
337,
23367,
519,
301,
389,
1974,
16988,
3704,
263,
301,
389,
1974,
16346,
16988,
297,
607,
301,
389,
1974,
16346,
338,
3667,
1891,
408,
263,
17838,
297,
278,
9151,
292,
322,
766,
25389,
292,
337,
7387,
29892,
727,
338,
385,
11664,
9667,
363,
1098,
17225,
385,
20414,
297,
278,
9151,
292,
322,
766,
25389,
292,
11412,
2834,
322,
884,
385,
20414,
297,
278,
274,
493,
356,
577,
393,
372,
8128,
263,
1880,
12646,
13284,
29889,
13,
2744,
1203,
310,
278,
2198,
297,
7316,
338,
304,
3867,
263,
10712,
23279,
337,
23367,
519,
301,
389,
1974,
16988,
773,
385,
28118,
14969,
936,
1006,
1052,
362,
19848,
310,
301,
389,
1974,
16346,
313,
5747,
338,
29892,
28118,
14969,
936,
4635,
291,
19848,
310,
301,
389,
1974,
16346,
29897,
322,
385,
28118,
14969,
936,
316,
1639,
1052,
362,
19848,
310,
301,
389,
1974,
16346,
313,
5747,
338,
29892,
28118,
14969,
936,
6507,
19848,
310,
301,
389,
1974,
16346,
29897,
313,
1366,
337,
23367,
519,
301,
389,
1974,
16988,
674,
367,
1244,
1099,
906,
3763,
12992,
304,
408,
337,
23367,
519,
301,
389,
1974,
16988,
511,
607,
338,
4944,
411,
385,
16710,
274,
493,
356,
20016,
3860,
491,
263,
2702,
4764,
672,
29891,
274,
493,
356,
6136,
5518,
2534,
263,
7601,
16445,
2159,
310,
29871,
29900,
29889,
29945,
921,
346,
29916,
4912,
470,
3109,
322,
263,
2919,
2702,
7101,
4038,
29892,
322,
607,
756,
263,
2919,
12646,
13284,
411,
263,
1880,
5864,
9027,
322,
263,
1880,
8323,
29899,
392,
29899,
29881,
783,
279,
479,
19201,
29892,
322,
338,
1472,
3307,
297,
11412,
2834,
313,
25389,
292,
322,
766,
25389,
292,
11412,
2834,
467,
13,
2744,
1228,
1203,
310,
278,
2198,
297,
7316,
338,
304,
3867,
263,
10712,
23279,
337,
23367,
519,
301,
389,
1974,
16988,
2534,
263,
2919,
12646,
13284,
411,
263,
1880,
5864,
9027,
322,
263,
1880,
8323,
29899,
392,
29899,
29881,
783,
279,
479,
19201,
322,
607,
338,
1472,
3307,
297,
11412,
2834,
29892,
7199,
5921,
472,
3203,
263,
274,
493,
356,
29892,
263,
28128,
29892,
385,
385,
356,
29892,
322,
385,
28118,
368,
371,
470,
28118,
368,
371,
1650,
23387,
297,
263,
16988,
27261,
29892,
2931,
1891,
297,
393,
1497,
274,
493,
356,
338,
20016,
3860,
491,
263,
2702,
4764,
672,
29891,
274,
493,
356,
6136,
5518,
2534,
263,
7601,
16445,
2159,
310,
29871,
29900,
29889,
29945,
921,
346,
29916,
4912,
470,
3109,
322,
263,
2919,
2702,
7101,
4038,
29889,
13,
29909,
4340,
1203,
310,
278,
2198,
297,
7316,
338,
304,
3867,
263,
1889,
363,
278,
5802,
310,
263,
1454,
8625,
333,
337,
23367,
519,
301,
389,
1974,
16988,
29889,
13,
7439,
16311,
368,
29892,
278,
2198,
297,
7316,
8128,
263,
1889,
363,
278,
5802,
310,
263,
10712,
23279,
337,
23367,
519,
301,
389,
1974,
16988,
2534,
263,
2919,
12646,
13284,
411,
263,
1880,
5864,
9027,
322,
263,
1880,
8323,
29899,
392,
29899,
29881,
783,
279,
479,
19201,
322,
607,
338,
1472,
3307,
297,
11412,
2834,
29892,
7199,
5921,
472,
3203,
263,
274,
493,
356,
2534,
263,
2702,
274,
493,
356,
6136,
5518,
29892,
263,
28128,
29892,
385,
385,
356,
29892,
322,
385,
28118,
368,
371,
470,
28118,
368,
371,
1650,
23387,
297,
263,
16988,
27261,
29892,
2931,
1891,
297,
393,
1497,
1889,
7805,
263,
4331,
310,
10223,
292,
1497,
274,
493,
356,
6136,
5518,
1040,
12937,
292,
1497,
274,
493,
356,
29892,
7199,
5921,
24907,
263,
15795,
310,
263,
9558,
11915,
297,
385,
263,
802,
681,
1650,
6943,
472,
3203,
263,
4094,
29899,
2929,
431,
280,
24324,
261,
322,
23556,
1747,
1497,
9558,
11915,
15795,
297,
1497,
263,
802,
681,
1650,
304,
4017,
263,
3234,
29892,
322,
289,
5086,
1497,
3234,
304,
883,
263,
4764,
672,
29891,
274,
493,
356,
6136,
5518,
29889,
13,
29943,
332,
721,
29892,
278,
2198,
297,
7316,
8128,
263,
1889,
363,
278,
5802,
310,
263,
10712,
23279,
337,
23367,
519,
301,
389,
1974,
16988,
2534,
263,
2919,
12646,
13284,
411,
263,
1880,
5864,
9027,
322,
263,
1880,
8323,
29899,
392,
29899,
29881,
783,
279,
479,
19201,
322,
607,
338,
1472,
3307,
297,
11412,
2834,
29892,
7199,
5921,
472,
3203,
263,
274,
493,
356,
2534,
263,
2702,
274,
493,
356,
6136,
5518,
29892,
263,
28128,
29892,
385,
385,
356,
29892,
322,
385,
28118,
368,
371,
470,
28118,
368,
371,
1650,
23387,
297,
263,
16988,
27261,
29892,
2931,
1891,
297,
393,
1497,
1889,
7805,
263,
4331,
310,
10223,
292,
1497,
274,
493,
356,
6136,
5518,
1040,
12937,
292,
1497,
274,
493,
356,
29892,
7199,
5921,
24907,
263,
15795,
310,
263,
9558,
11915,
297,
263,
1601,
12392,
15390,
310,
25391,
472,
3203,
263,
4094,
29899,
2929,
431,
280,
24324,
261,
29892,
24324,
261,
5281,
1497,
1601,
12392,
304,
4017,
263,
24324,
261,
1891,
3234,
29892,
322,
289,
5086,
1497,
24324,
261,
1891,
3234,
304,
883,
263,
4764,
672,
29891,
1277,
681,
274,
493,
356,
6136,
5518,
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
] |
6 Steps To Introducing Solids… The Simple Way!
Baby-Led Weaning (BLW) offers an alternative to pureed and mashed foods for babies.
It allows them to have the opportunity to discover, explore and develop their own relationship to food. It also provides lots of sensory (and yes, messy!) fun.
When you follow the internationally recognized guidelines to start solids around six months, it isn’t necessary to reduce foods down to a near-liquid state to allow babies to swallow them.
The old advice to start from 4 months (or even earlier) meant foods weren’t ‘solids’ at all, and often led to babies being unable or unwilling to progress to self-feeding a few months later.
6 Simple Steps For Introducing Solids
Being developmentally ready to eat foods is a big step for babies and allowing them to begin when they are physically able means they can enjoy the experience as nature intended. Here are 6 steps to introduce solids the simple way:
#1: Involve Your Baby In Family Mealtimes
When your baby is around 4 months, he will start to show interest in you eating. He’s not yet ready but boy, is he studying hard! As your hand moves from plate to mouth, he follows with his eyes. His hand reaches out for what you are holding and he makes chewing movements and even drools a bit! Let him sit on your lap and even hold or taste a little – he wants to see what it’s all about!
#2: Wait Until Your Baby Is Developmentally Ready
At about six months, your baby’s body is ready to give it a go. He can sit up mostly unsupported, he has lost that tongue reflex which prevented swallowing solids and he can bring his hand to his mouth with control. As the UK Institute for Health Visitors explains:
“All 3 signs of readiness for solid foods should be present before offering complementary foods: Baby being able to sit in a high chair and hold the head steady; being able to grab foods and put them in the mouth; being able to swallow food (and not just put it in the mouth for it to come out again). Premature babies may be ready for solid food at different ages and ‘baby readiness’ should be the key factor rather than age.”
#3: Make Sure First Foods Have Handles
Baby-led weaning is all about letting your baby explore food and learn to feed himself. Offering him food with “handles” helps: vegetable pieces long enough to hold (broccoli is perfect!), lamb chops, chunks of roast meat or steak, thick fruit slices with the skin left on… it’s amazing what you can offer! Here are some more ideas to try.
#4: Be Ready For Mess!
Once he works out what to do, he has to practice doing it! As you introduce other foods he can grasp in his hand – like rice, pasta and other family foods – a plastic mat, shower curtain or other clean drop cloth on the floor means you can return the bits he drops and easily clear away at the end. Smock-like bibs which cover his arms as well as his body keep clothing clean.
#5: Remember It’s All About The Experience
How much he eats at this stage isn’t really important. Milk (breastmilk or formula) is the main food source in the first year. As his skills improve, you’ll start to see changes in his poo, a sure sign food is reaching his digestive system!
‘Take care that your baby doesn’t take to solids too enthusiastically and cut down his/her milk intake too quickly. From 6–9 months, intake should still be close to 100% breastmilk, gradually reducing as solids increase but breastmilk should remain as greater than half the diet until 12 months.’
So let you baby explore without stressing over how much he eats. Studies suggest that BLW is associated with less parental control of children’s eating and lower BMI (Body Mass Index).
6: Introduce Everything
In the past, lots of foods were delayed in an effort to reduce allergies. New research shows it is actually important to introduce an extensive range of foods before 7 months. That means a varied and diverse diet can be offered right from the start. The only exceptions are honey (not before 12 months) and whole nuts (nut and seed butters are fine). So indulge your little foodie, let him experience as many tastes and textures as possible.
Listen to an interview with Professor Jane Scott from Curtin University explain how these guidelines are meticulously researched and written using scientific publications, expert studies and the very best information available in the world.
Related Articles
Yvette O'DowdCONTRIBUTOR
Yvette O'Dowd has been a breastfeeding counsellor and educator since 1992. She has three adult children and a two year old granddaughter - the best sort of bonus baby! Yvette runs a popular natural parenting network, is a babywearing educator, and runs antenatal breastfeeding classes for parents expecting twins and more! She is a keen photographer and scrap-booker and a keeper of a fairy garden.
Unfortunately not everything is perfect, and sometimes studies or evidence comes to light which are more important. BellyBelly does not recommend baby rice cereal and while purees are not so bad, we support baby led weaning, as it can help avoid lump aversion and babies tolerate foods well from 6 months without them being pureed.
Leave a Reply
Please note: in order to prevent spam and inappropriate language, all comments are moderated before they appear. We appreciate your patience awaiting approval. BellyBelly receives many comments every day, and we are unable to approve them all as soon as they are posted.
Your email address will not be published. Required fields are marked *
Comment
Name *
Email *
Connect with US
Our Contributors
Our writing team consists of professionals who work with pregnant and birthing women, as well as new parents, all year round. We're not just bloggers or journalists. We're industry professionals who love what we do! | [
1,
29871,
29953,
2443,
567,
1763,
3159,
3518,
3277,
4956,
4841,
30098,
450,
12545,
5307,
29991,
13,
13,
29933,
10798,
29899,
29931,
287,
1334,
273,
292,
313,
13367,
29956,
29897,
16688,
385,
8671,
304,
8296,
287,
322,
286,
25936,
9687,
29879,
363,
289,
370,
583,
29889,
13,
13,
3112,
6511,
963,
304,
505,
278,
15130,
304,
6523,
29892,
26987,
322,
2693,
1009,
1914,
9443,
304,
9687,
29889,
739,
884,
8128,
14568,
310,
4771,
706,
313,
392,
4874,
29892,
4473,
29891,
14366,
2090,
29889,
13,
13,
10401,
366,
1101,
278,
2836,
362,
635,
14831,
1410,
10652,
1475,
304,
1369,
899,
4841,
2820,
4832,
7378,
29892,
372,
3508,
30010,
29873,
5181,
304,
10032,
9687,
29879,
1623,
304,
263,
2978,
29899,
28378,
333,
2106,
304,
2758,
289,
370,
583,
304,
2381,
9536,
963,
29889,
13,
13,
1576,
2030,
9848,
304,
1369,
515,
29871,
29946,
7378,
313,
272,
1584,
8859,
29897,
6839,
9687,
29879,
2949,
264,
30010,
29873,
5129,
2929,
4841,
30010,
472,
599,
29892,
322,
4049,
5331,
304,
289,
370,
583,
1641,
9368,
470,
18500,
8873,
304,
6728,
304,
1583,
29899,
18798,
292,
263,
2846,
7378,
2678,
29889,
13,
13,
29953,
12545,
2443,
567,
1152,
3159,
3518,
3277,
4956,
4841,
13,
13,
3629,
292,
5849,
635,
7960,
304,
17545,
9687,
29879,
338,
263,
4802,
4331,
363,
289,
370,
583,
322,
14372,
963,
304,
3380,
746,
896,
526,
4824,
1711,
2221,
2794,
896,
508,
13389,
278,
7271,
408,
5469,
9146,
29889,
2266,
526,
29871,
29953,
6576,
304,
14944,
899,
4841,
278,
2560,
982,
29901,
13,
13,
29937,
29896,
29901,
512,
1555,
345,
3575,
26835,
512,
14662,
2191,
1997,
1355,
13,
13,
10401,
596,
24354,
338,
2820,
29871,
29946,
7378,
29892,
540,
674,
1369,
304,
1510,
4066,
297,
366,
321,
1218,
29889,
940,
30010,
29879,
451,
3447,
7960,
541,
8023,
29892,
338,
540,
23382,
2898,
29991,
1094,
596,
1361,
16229,
515,
15284,
304,
13394,
29892,
540,
4477,
411,
670,
5076,
29889,
3600,
1361,
22170,
714,
363,
825,
366,
526,
13587,
322,
540,
3732,
923,
16958,
24147,
322,
1584,
4441,
3775,
263,
2586,
29991,
2803,
1075,
7845,
373,
596,
23012,
322,
1584,
4808,
470,
21779,
263,
2217,
785,
540,
10753,
304,
1074,
825,
372,
30010,
29879,
599,
1048,
29991,
13,
13,
29937,
29906,
29901,
20340,
28609,
3575,
26835,
1317,
14650,
635,
830,
3714,
13,
13,
4178,
1048,
4832,
7378,
29892,
596,
24354,
30010,
29879,
3573,
338,
7960,
304,
2367,
372,
263,
748,
29889,
940,
508,
7845,
701,
11149,
443,
23765,
29892,
540,
756,
5714,
393,
26820,
2143,
2506,
607,
5557,
287,
2381,
9536,
292,
899,
4841,
322,
540,
508,
6963,
670,
1361,
304,
670,
13394,
411,
2761,
29889,
1094,
278,
10261,
8907,
363,
15202,
5741,
17259,
18568,
29901,
13,
13,
30015,
3596,
29871,
29941,
18906,
310,
1303,
3335,
363,
7773,
9687,
29879,
881,
367,
2198,
1434,
27032,
19595,
653,
9687,
29879,
29901,
26835,
1641,
2221,
304,
7845,
297,
263,
1880,
11774,
322,
4808,
278,
2343,
27357,
29936,
1641,
2221,
304,
17229,
9687,
29879,
322,
1925,
963,
297,
278,
13394,
29936,
1641,
2221,
304,
2381,
9536,
9687,
313,
392,
451,
925,
1925,
372,
297,
278,
13394,
363,
372,
304,
2041,
714,
1449,
467,
6097,
1535,
289,
370,
583,
1122,
367,
7960,
363,
7773,
9687,
472,
1422,
24646,
322,
5129,
29890,
10798,
1303,
3335,
30010,
881,
367,
278,
1820,
7329,
3265,
1135,
5046,
3178,
13,
13,
29937,
29941,
29901,
8561,
18585,
3824,
25453,
29879,
6975,
5166,
793,
13,
13,
29933,
10798,
29899,
839,
591,
273,
292,
338,
599,
1048,
27697,
596,
24354,
26987,
9687,
322,
5110,
304,
8343,
3654,
29889,
4587,
571,
292,
1075,
9687,
411,
1346,
3179,
793,
30024,
6911,
29901,
18655,
519,
12785,
1472,
3307,
304,
4808,
313,
6729,
617,
5079,
338,
4922,
29991,
511,
301,
1117,
521,
3554,
29892,
521,
18801,
310,
696,
579,
27654,
470,
1886,
557,
29892,
12003,
15774,
269,
29399,
411,
278,
19309,
2175,
373,
30098,
372,
30010,
29879,
21863,
292,
825,
366,
508,
5957,
29991,
2266,
526,
777,
901,
7014,
304,
1018,
29889,
13,
13,
29937,
29946,
29901,
1522,
830,
3714,
1152,
11946,
29991,
13,
13,
26222,
540,
1736,
714,
825,
304,
437,
29892,
540,
756,
304,
6944,
2599,
372,
29991,
1094,
366,
14944,
916,
9687,
29879,
540,
508,
25274,
297,
670,
1361,
785,
763,
19408,
29892,
4940,
29874,
322,
916,
3942,
9687,
29879,
785,
263,
715,
6288,
1775,
29892,
1510,
261,
3151,
2408,
470,
916,
5941,
5768,
13950,
373,
278,
11904,
2794,
366,
508,
736,
278,
9978,
540,
4441,
567,
322,
5948,
2821,
3448,
472,
278,
1095,
29889,
4116,
1698,
29899,
4561,
29727,
29879,
607,
4612,
670,
10188,
408,
1532,
408,
670,
3573,
3013,
1067,
6046,
5941,
29889,
13,
13,
29937,
29945,
29901,
22738,
739,
30010,
29879,
2178,
13611,
450,
28224,
5597,
13,
13,
5328,
1568,
540,
321,
1446,
472,
445,
7408,
3508,
30010,
29873,
2289,
4100,
29889,
3833,
29895,
313,
1030,
579,
23853,
29895,
470,
7063,
29897,
338,
278,
1667,
9687,
2752,
297,
278,
937,
1629,
29889,
1094,
670,
25078,
11157,
29892,
366,
30010,
645,
1369,
304,
1074,
3620,
297,
670,
772,
29877,
29892,
263,
1854,
1804,
9687,
338,
20888,
670,
4697,
342,
573,
1788,
29991,
13,
13,
30086,
26772,
2562,
393,
596,
24354,
1838,
30010,
29873,
2125,
304,
899,
4841,
2086,
23644,
15736,
1711,
322,
5700,
1623,
670,
29914,
2276,
27274,
938,
1296,
2086,
9098,
29889,
3645,
29871,
29953,
29994,
29929,
7378,
29892,
938,
1296,
881,
1603,
367,
3802,
304,
29871,
29896,
29900,
29900,
29995,
24207,
23853,
29895,
29892,
22020,
27668,
408,
899,
4841,
7910,
541,
24207,
23853,
29895,
881,
3933,
408,
7621,
1135,
4203,
278,
652,
300,
2745,
29871,
29896,
29906,
7378,
16412,
13,
13,
6295,
1235,
366,
24354,
26987,
1728,
22884,
292,
975,
920,
1568,
540,
321,
1446,
29889,
16972,
4368,
393,
350,
29931,
29956,
338,
6942,
411,
3109,
3847,
284,
2761,
310,
4344,
30010,
29879,
321,
1218,
322,
5224,
350,
10403,
313,
8434,
7360,
11374,
467,
13,
13,
29953,
29901,
3159,
3518,
346,
17296,
13,
13,
797,
278,
4940,
29892,
14568,
310,
9687,
29879,
892,
29801,
297,
385,
7225,
304,
10032,
599,
15064,
583,
29889,
1570,
5925,
3697,
372,
338,
2869,
4100,
304,
14944,
385,
20607,
3464,
310,
9687,
29879,
1434,
29871,
29955,
7378,
29889,
2193,
2794,
263,
23821,
322,
16984,
652,
300,
508,
367,
12520,
1492,
515,
278,
1369,
29889,
450,
871,
15283,
526,
298,
4992,
313,
1333,
1434,
29871,
29896,
29906,
7378,
29897,
322,
3353,
302,
8842,
313,
21305,
322,
16717,
541,
2153,
526,
2691,
467,
1105,
29156,
479,
596,
2217,
9687,
347,
29892,
1235,
1075,
7271,
408,
1784,
260,
579,
267,
322,
1426,
1973,
408,
1950,
29889,
13,
13,
1293,
264,
304,
385,
15593,
411,
11386,
10447,
8075,
515,
25141,
262,
3014,
5649,
920,
1438,
1410,
10652,
1475,
526,
1539,
12906,
5794,
5925,
287,
322,
3971,
773,
16021,
25964,
29892,
17924,
11898,
322,
278,
1407,
1900,
2472,
3625,
297,
278,
3186,
29889,
13,
13,
9662,
630,
12952,
13,
13,
29979,
29894,
2353,
438,
29915,
29928,
340,
29881,
22412,
3960,
29933,
2692,
1955,
13,
13,
29979,
29894,
2353,
438,
29915,
29928,
340,
29881,
756,
1063,
263,
24207,
18798,
292,
2613,
29879,
514,
272,
322,
6320,
1061,
1951,
29871,
29896,
29929,
29929,
29906,
29889,
2296,
756,
2211,
16157,
4344,
322,
263,
1023,
1629,
2030,
4595,
29881,
6334,
357,
448,
278,
1900,
2656,
310,
28920,
24354,
29991,
612,
29894,
2353,
6057,
263,
5972,
5613,
3847,
292,
3564,
29892,
338,
263,
24354,
705,
4362,
6320,
1061,
29892,
322,
6057,
25504,
2075,
24207,
18798,
292,
4413,
363,
11825,
16120,
3252,
1144,
322,
901,
29991,
2296,
338,
263,
28430,
17739,
261,
322,
885,
2390,
29899,
2909,
261,
322,
263,
1589,
11356,
310,
263,
6534,
29891,
16423,
29889,
13,
13,
2525,
7524,
451,
4129,
338,
4922,
29892,
322,
6041,
11898,
470,
10757,
5304,
304,
3578,
607,
526,
901,
4100,
29889,
3741,
368,
29933,
14112,
947,
451,
6907,
24354,
19408,
274,
406,
284,
322,
1550,
8296,
267,
526,
451,
577,
4319,
29892,
591,
2304,
24354,
5331,
591,
273,
292,
29892,
408,
372,
508,
1371,
4772,
301,
3427,
263,
3259,
322,
289,
370,
583,
20341,
403,
9687,
29879,
1532,
515,
29871,
29953,
7378,
1728,
963,
1641,
8296,
287,
29889,
13,
13,
3226,
1351,
263,
10088,
368,
13,
13,
12148,
4443,
29901,
297,
1797,
304,
5557,
805,
314,
322,
297,
932,
6649,
403,
4086,
29892,
599,
6589,
526,
17768,
630,
1434,
896,
2615,
29889,
1334,
11188,
596,
282,
24701,
7272,
292,
2134,
791,
29889,
3741,
368,
29933,
14112,
20586,
1784,
6589,
1432,
2462,
29892,
322,
591,
526,
9368,
304,
2134,
345,
963,
599,
408,
4720,
408,
896,
526,
8059,
29889,
13,
13,
10858,
4876,
3211,
674,
451,
367,
6369,
29889,
830,
5958,
4235,
526,
10902,
334,
13,
13,
20001,
13,
13,
1170,
334,
13,
13,
9823,
334,
13,
13,
17918,
411,
3148,
13,
13,
29949,
332,
2866,
1091,
29560,
13,
13,
29949,
332,
5007,
3815,
11624,
310,
6351,
1338,
1058,
664,
411,
758,
5138,
424,
322,
29773,
1918,
5866,
29892,
408,
1532,
408,
716,
11825,
29892,
599,
1629,
4513,
29889,
1334,
29915,
276,
451,
925,
12618,
5743,
470,
8955,
2879,
29889,
1334,
29915,
276,
13661,
6351,
1338,
1058,
5360,
825,
591,
437,
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
] |
Scott Baio and his wife Renee went through a horrific health scare after their daughter Bailey was born. Testing positive for G-A-1, an organic acidemia metabolic disorder, Bailey went through a series of tests only to find out weeks later that she did NOT in fact have the disorder.
Renee took this experience as a sign and started up the Bailey Baio Angel Foundation to raise awareness, funding and to help as well as aid other families going through the same difficulties as they had.
This amazing mama and her hunky hubby Scott, have teamed up with one of our favorite companies, Ooh! La, La! Couture, for an exciting project to be revealed within the next couple of weeks. In an exclusive interview with Child Mode, Renee spoke about the need for comprehensive newborn screening, the Bailey Baio Angel Foundation, her daughter Bailey and an exciting birthday event for Mr. Scott Baio!
CM: You and Scott founded The Bailey Baio Angel Foundation, named after your daughter as a way to help families with children who suffer from an O-A or G-A-1 disorder. You have both done an incredible job raising awareness on these disorders! For those who are not familiar with GA1 and other O-A’s, can you give us a little bit of a background on these disorders?
It starts out with both parents having the same recessive gene. Every person has around 30,000 genes so it is really a needle int he haystack. There are more than just G-A-1 and G-A-2 there are many variations of different disorders that are organic acidemias.
What happens with babies who have a metabolic disorder, is their livers can’t process the proper amount of protein. It then builds up and the body rejects it, sending a signal up to the brain causing a metabolic crisis. So, if a baby is not diagnosed or flagged at birth, a new mother could be breast feeding her child and that in itself could cause brain damage to her baby due to the high protein in breast milk. Once they are flagged at birth, babies can be put on a low protein, metabolic formula along with timed breastfeeding to know how much or to estimate how much the child is consuming.
This crisis is brought on by a fever. An OA baby could go into a metabolic crisis just from having immunizations because that usually brings on a low grade fever. With metabolic babies, they have temperatures that naturally 3 or 4 degrees higher, and again that triggers the amino acid that triggers the brain. Everything is permanent. It’s permanent brain damage, and it can happen within an hour, so time is crucial when getting these babies to the hospital.
When we were going through this with Bailey, we had to carry a note from a metabolic doctor explaining to a care physician, on how to treat a child. Time isn’t of the essence when a child has a fever, however with an OA baby, it is life threatening.
CM: Are there any signs of this when they are born?
No. There are 17 states (California is one of them) that do comprehensive newborn screening. Some people call it expanded newborn screening but it is the same thing as comprehensive.
Bailey was right on the line. After we did her secondary testing, a social worker called us the day we came home from the hospital. She said there was something abnormal with Bailey’s screening and to get to the pediatrician’s immediately.
Because she was born 5 weeks early, Bailey was only 5 pounds. Every three days, the doctors were trying to shove needles in her to take out the blood (she had no veins), they had to tape a bag on her in order to collect the urine for testing, and yet her urine was always normal.
When she was 11 days old we had to take her to the Children’s UCLA, and they basically punched a hole in the left upper inside of her arm. They did a 7 tissue skin test, where they would grow it in a petri-dish, cut it in half, and then inject each one with a GA1 and wait to see if it came back positive. This is the only conclusive way to know if your child has it and the only place that offers this testing is in Denver.
It came back totally normal. We found out when she was 10 weeks old.
CM: Your daughter Bailey was falsely diagnosed for G-A-1. Does false diagnosis happen frequently? How did the doctor’s make such a serious mistake in her diagnosis?
That is a very good question. Because they are so rare and States are just starting to test for metabolic disorders, they don’t know where to start and where to cut off other than of course the cases they have had so far.
I forget exactly what the number was, but the time table was 0.33 and Bailey’s came back at 0.33 and then the next was 0.04 and Bailey’s was 0.09. That could have been right after she was breastfed or something, I really don’t know why. We didn’t do any DNA testing or anything like that.
I can tell you that originally I was pregnant with twins and I lost her twin in the second trimester. When we were going through what we did with Bailey, I lay down in the mid day to take a nap and I don’t know if it was God or if it was a dream, but whatever it was told me that our baby had a metabolic disorder and Bailey was just a carrier and that we were put through this to know what happened to our other baby.
CM: When you found out your daughter was healthy with no sign of G-A-1, what drove you to start up the Bailey Baio Angel Foundation?
When I was researching for my daughter, I couldn’t find any resources online or anywhere else. There was only one website that provided some info, but they only do the research. There was no support, nobody was helping these families. My husband is a celebrity, but I had no place to go.
We found out January 11th 2008 that our daughter was completely healthy. On Father’s Day weekend we broke the news to People magazine and Entertainment Tonight and began receiving anywhere from 100-300 emails per day from parents who had went through or were going through the same thing we did. I received one email in particular that said, “ I have been praying for this to happen to someone in the media. Thank God you dodged the bullet, but now you are advocating for it.”
CM: What does the Bailey Baio Foundation do other than raise awareness for metabolic disorders?
We promote comprehensive newborn screening and educate pregnant women. We want to lobby and get every state mandated to pass the legislation to have comprehensive newborn screening and of course, we want to continue to provide emotional support and aid to these families that are affected by it.
Although we do not pay money directly to the families, we do help with the costs. For example, metabolic formula is $22 a canister, which can add up quickly. The majority and most insurance companies will not pay for it. If you live in a state that doesn’t have comprehensive newborn screening, we have a form on our website that you can fill it out. If you qualify – meaning if you can’t pay out of pocket – we will send you a kit. Once you go in labour you take it with you, the carbon filter has 5 dots as opposed to 3, that detects up to 54 disorders. We then get billed the extra money from $25-$150 and we will pay for it.
CM: This year, you have teamed up with Ooh! La, La! Couture for a special event during Scott’s 50th birthday in September! Can you tell us a little bit about the event? How did this partnership come about?
Oh I love them! Ooh! La, La! wasn’t around with my first child, but Miss Bailey is all about the Ooh! La, La!, she loves that kind of stuff.
Scott’s birthday is the 22nd but we are holding this event on the 26th, and it will be held at the famous Garland family-owned hotel, The Beverly Garland. The hotel is landmark here and a staple to the valley as it is adjacent to the Universal Studios. It has a real Old Hollywood style feel to it. The event will be a black tie gala for families as well as couples and singles – there is no age cap. We will have several kids there because we will also be holding a fashion show!
We met the ladies at the Emily Grace event earlier this year and we spoke a bit about what we do with the Bailey Baio Angel Foundation. They invited us to the walk in Santa Monica earlier this year and we really got to know them well. We invited them over to the house and built a great relationship. They had this idea to create a special dress especially for the Bailey foundation. It is a gorgeous dress! It is completely custom, and is quite different from their other designs. It has the wings embroidered and embellished with rhinestones – just gorgeous!
Ooh! La, La! is giving us around 100 dresses to sell straight at 100% profit with all proceeds going to the foundation. They will be limited edition pieces, available in various sizes for children from 12 months-10 years. They will be available to purchase exclusively through our website, in a couple of weeks.
Is Scott’s Birthday Event open to the public?
Yes! You can go to BaileyBaioFoundation.com, where you can buy the tickets through Paypal. We only have about 36 seats left of the 125 dollar tickets and then the 4th row $100 tickets we only have about 30 tickets left and then the event is sold out.
Just a few of the celebrities confirmed include: Christopher Atkins, Tracy Gold from Growing Pains and Thomas Calabro bought an entire table for $2500.00 – he was Dr. Michael Mancini on 90210. Jerry Douglas will also be there, he played John Abbott on the Young and the Restless for 30 years. You know, he sounds just like Frank Sinatra! Go to JerryDouglasMusic.com to check him out, he is fabulous! His wife Kim Douglas is hosting the event for us. She is a beauty and health guru and also a correspondent for Good Day LA and Ellen Degeneres.
Adam Hunter, the comedian from Last Comic Standing, will be performing as well doing some stand-up comedy.
CM: Your daughter Bailey will be turning 3 in November! How is she doing? Will she be starting preschool this year?
No. I missed all of my first daughter’s milestones because I had her during my first semester of college, when I was a teenager. I was working 1-2 jobs, so I missed most of her milestones. With Bailey, I wanted to really be there. For one, I refuse to have a nanny. I haven’t had a nanny, not even for a day. Scott and I are here almost every day.
I am quite old school as I think preschool is just the year before real school. I want my daughter to be a kid. If i was a single working mom, I would be all for it, but that isn’t the situation, so I’ve opted not to. We take her to a mommy, daddy and me class where they have Italian classes. It is 1 hour and 15 minutes , once a week. She has picked up quite a few Italian words.
We also want to start her in dance lessons, because she is very much into music and dance!
CM: Have you heard of Little Pim? My daughter’s and I love that program!
Yeah we have that! We watch Little Pim in our house as well.
What is Bailey into these days?
Alice in Wonderland! I bought her the Alice in Wonderland the TV version from ‘84 or ’85, the one Scott was in and then I bought her the original Alice in Wonderland and she fell in love with it! So she loves her and is also all about Jessie from Toy Story.
CM: Bailey is always dressed up in fun and frilly outfits and skirts. Is she very much into fashion?
She is very much into fashion and pretty much picks out her own outfits. In her closet I have all the long sleeve dresses in once section, all the short sleeve in another, her skirts, tops, everything is all organized. I am very much the organizing freak, so if I know what kind of outing we will go to I will open the certain part of her closet and she gets to pick from those. She does a good job!
CM: What are your favorite clothing brands for kids?
Of course Ooh La La! Couture is one of her favorites! I love Ooh La la because its casual mixed with frilly. Bailey can throw on a pair of really nice Ferragamo dress shoes and have a nice outfit for church or a dinner party. Then for the park, she can put on some long socks and Skechers and she’s ready to go. Their clothes are very versatile!
I am also very old school, classy and if you see the old pictures of my daughter you will notice she wore quite a bit of Burberry. I am part European as my mother’s side is from Holland and when I was a little girl, my older brother would wear the short knickers with the long socks and saddle shoes. I really like that European classy look. Love that style!
CM: Will either you or Scott be returning to acting?
I was a stunt woman for 13-14 years and my body has taken a ‘licken. I’m also nearing the big 40 so I don’t think I will. I may take up some hosting as there have been some opportunities to do so. Scott is still active in the industry, although he isn’t on television. He still creates shows and produces, so basically behind the scenes.
For more information on the Bailey Baio Foundation, to purchase the special edition Ooh! La, La! Couture Dresses and/or tickets to Scott’s birthday party, please visit BaileyBaioFoundation.com. You can also follow Scott Baio on his Twitter page for personal updates.
I normally abhor celeb profiles but this was great…Renee, you are very grounded and also very caring to reach out to other families with your foundation…so many would just be grateful they dodged the bullet and go on with their loves.
thanks for your caring!!
Haven’t heard of G-A-1 but can understand how scary it is to find out if your child has any disorder. Any parent’s fear. They should like a wonderful family – well grounded. And Will definitely be checking out Ooh! La, La! Couture Dresses.
[…] about this talented designing duo (along with some other amazing companies) thanks to my friend Renee Baio. Her undying dedication to special needs children, raising awareness for metabolic disorders and […]
Leave a Comment
About Me
She’s a mom to two girls and a baby boy, a writer and the publisher of Child Mode. As a lover of style and fashion, Nadia found her ‘niche’ and love of children’s products while searching for quality items for her children. The internet can be overwhelming at times and although America has some amazing products, Nadia likes to find ‘hidden gems’ in Europe and Australia where the designers have a knack for creating innovations and styles that are covet worthy. | [
1,
8075,
6000,
601,
322,
670,
6532,
390,
1600,
29872,
3512,
1549,
263,
4029,
29878,
928,
9045,
885,
598,
1156,
1009,
8750,
6000,
15168,
471,
6345,
29889,
4321,
292,
6374,
363,
402,
29899,
29909,
29899,
29896,
29892,
385,
2894,
293,
263,
455,
2310,
423,
1539,
19388,
293,
766,
2098,
29892,
6000,
15168,
3512,
1549,
263,
3652,
310,
6987,
871,
304,
1284,
714,
11405,
2678,
393,
1183,
1258,
6058,
297,
2114,
505,
278,
766,
2098,
29889,
13,
13,
29934,
1600,
29872,
3614,
445,
7271,
408,
263,
1804,
322,
4687,
701,
278,
6000,
15168,
6000,
601,
17323,
10606,
304,
12020,
3773,
8326,
404,
29892,
5220,
292,
322,
304,
1371,
408,
1532,
408,
16226,
916,
13175,
2675,
1549,
278,
1021,
23553,
408,
896,
750,
29889,
13,
13,
4013,
21863,
292,
286,
3304,
322,
902,
298,
2960,
29891,
19766,
1609,
8075,
29892,
505,
734,
2795,
701,
411,
697,
310,
1749,
25448,
14582,
29892,
438,
1148,
29991,
997,
29892,
997,
29991,
315,
449,
545,
29892,
363,
385,
5566,
11407,
2060,
304,
367,
17845,
2629,
278,
2446,
7303,
310,
11405,
29889,
512,
385,
29192,
15593,
411,
10517,
21864,
29892,
390,
1600,
29872,
12707,
1048,
278,
817,
363,
15171,
6270,
716,
4939,
4315,
292,
29892,
278,
6000,
15168,
6000,
601,
17323,
10606,
29892,
902,
8750,
6000,
15168,
322,
385,
5566,
11407,
12060,
3250,
1741,
363,
3237,
29889,
8075,
6000,
601,
29991,
13,
13,
24494,
29901,
887,
322,
8075,
11091,
450,
6000,
15168,
6000,
601,
17323,
10606,
29892,
4257,
1156,
596,
8750,
408,
263,
982,
304,
1371,
13175,
411,
4344,
1058,
8812,
515,
385,
438,
29899,
29909,
470,
402,
29899,
29909,
29899,
29896,
766,
2098,
29889,
887,
505,
1716,
2309,
385,
29811,
1821,
4982,
29263,
3773,
8326,
404,
373,
1438,
766,
20488,
29991,
1152,
1906,
1058,
526,
451,
9985,
411,
402,
29909,
29896,
322,
916,
438,
29899,
29909,
30010,
29879,
29892,
508,
366,
2367,
502,
263,
2217,
2586,
310,
263,
3239,
373,
1438,
766,
20488,
29973,
13,
13,
3112,
8665,
714,
411,
1716,
11825,
2534,
278,
1021,
337,
985,
573,
18530,
29889,
7569,
2022,
756,
2820,
29871,
29941,
29900,
29892,
29900,
29900,
29900,
2531,
267,
577,
372,
338,
2289,
263,
817,
280,
938,
540,
14842,
1429,
29889,
1670,
526,
901,
1135,
925,
402,
29899,
29909,
29899,
29896,
322,
402,
29899,
29909,
29899,
29906,
727,
526,
1784,
21833,
310,
1422,
766,
20488,
393,
526,
2894,
293,
263,
455,
2310,
3173,
29889,
13,
13,
5618,
5930,
411,
289,
370,
583,
1058,
505,
263,
1539,
19388,
293,
766,
2098,
29892,
338,
1009,
619,
874,
508,
30010,
29873,
1889,
278,
1571,
5253,
310,
26823,
29889,
739,
769,
23315,
701,
322,
278,
3573,
12560,
29879,
372,
29892,
9348,
263,
7182,
701,
304,
278,
17294,
10805,
263,
1539,
19388,
293,
24161,
29889,
1105,
29892,
565,
263,
24354,
338,
451,
24876,
2662,
470,
7353,
3192,
472,
12060,
29892,
263,
716,
5637,
1033,
367,
24207,
8343,
292,
902,
2278,
322,
393,
297,
3528,
1033,
4556,
17294,
18658,
304,
902,
24354,
2861,
304,
278,
1880,
26823,
297,
24207,
27274,
29889,
9038,
896,
526,
7353,
3192,
472,
12060,
29892,
289,
370,
583,
508,
367,
1925,
373,
263,
4482,
26823,
29892,
1539,
19388,
293,
7063,
3412,
411,
5335,
287,
24207,
18798,
292,
304,
1073,
920,
1568,
470,
304,
12678,
920,
1568,
278,
2278,
338,
1136,
9929,
29889,
13,
13,
4013,
24161,
338,
6296,
373,
491,
263,
1238,
369,
29889,
530,
438,
29909,
24354,
1033,
748,
964,
263,
1539,
19388,
293,
24161,
925,
515,
2534,
5198,
348,
17063,
1363,
393,
5491,
23522,
373,
263,
4482,
19468,
1238,
369,
29889,
2973,
1539,
19388,
293,
289,
370,
583,
29892,
896,
505,
6238,
3698,
393,
18180,
29871,
29941,
470,
29871,
29946,
14496,
6133,
29892,
322,
1449,
393,
23660,
278,
626,
1789,
22193,
393,
23660,
278,
17294,
29889,
17296,
338,
17667,
29889,
739,
30010,
29879,
17667,
17294,
18658,
29892,
322,
372,
508,
3799,
2629,
385,
7234,
29892,
577,
931,
338,
7618,
1455,
746,
2805,
1438,
289,
370,
583,
304,
278,
13457,
29889,
13,
13,
10401,
591,
892,
2675,
1549,
445,
411,
6000,
15168,
29892,
591,
750,
304,
8677,
263,
4443,
515,
263,
1539,
19388,
293,
11619,
24232,
304,
263,
2562,
4824,
8910,
29892,
373,
920,
304,
7539,
263,
2278,
29889,
5974,
3508,
30010,
29873,
310,
278,
3686,
663,
746,
263,
2278,
756,
263,
1238,
369,
29892,
3138,
411,
385,
438,
29909,
24354,
29892,
372,
338,
2834,
20616,
292,
29889,
13,
13,
24494,
29901,
4683,
727,
738,
18906,
310,
445,
746,
896,
526,
6345,
29973,
13,
13,
3782,
29889,
1670,
526,
29871,
29896,
29955,
5922,
313,
7856,
6557,
423,
338,
697,
310,
963,
29897,
393,
437,
15171,
6270,
716,
4939,
4315,
292,
29889,
3834,
2305,
1246,
372,
17832,
716,
4939,
4315,
292,
541,
372,
338,
278,
1021,
2655,
408,
15171,
6270,
29889,
13,
13,
29933,
29874,
15168,
471,
1492,
373,
278,
1196,
29889,
2860,
591,
1258,
902,
16723,
6724,
29892,
263,
5264,
15645,
2000,
502,
278,
2462,
591,
2996,
3271,
515,
278,
13457,
29889,
2296,
1497,
727,
471,
1554,
633,
8945,
411,
6000,
15168,
30010,
29879,
4315,
292,
322,
304,
679,
304,
278,
8939,
7163,
2200,
713,
30010,
29879,
7389,
29889,
13,
29933,
5658,
1183,
471,
6345,
29871,
29945,
11405,
4688,
29892,
6000,
15168,
471,
871,
29871,
29945,
24261,
29889,
7569,
2211,
3841,
29892,
278,
437,
14359,
892,
1811,
304,
528,
994,
817,
793,
297,
902,
304,
2125,
714,
278,
10416,
313,
11360,
750,
694,
2453,
1144,
511,
896,
750,
304,
260,
4085,
263,
19548,
373,
902,
297,
1797,
304,
6314,
278,
5065,
457,
363,
6724,
29892,
322,
3447,
902,
5065,
457,
471,
2337,
4226,
29889,
13,
13,
10401,
1183,
471,
29871,
29896,
29896,
3841,
2030,
591,
750,
304,
2125,
902,
304,
278,
20986,
30010,
29879,
501,
13875,
29892,
322,
896,
8830,
282,
3322,
287,
263,
16188,
297,
278,
2175,
7568,
2768,
310,
902,
5075,
29889,
2688,
1258,
263,
29871,
29955,
260,
15118,
19309,
1243,
29892,
988,
896,
723,
6548,
372,
297,
263,
5697,
374,
29899,
29881,
728,
29892,
5700,
372,
297,
4203,
29892,
322,
769,
11658,
1269,
697,
411,
263,
402,
29909,
29896,
322,
4480,
304,
1074,
565,
372,
2996,
1250,
6374,
29889,
910,
338,
278,
871,
21204,
573,
982,
304,
1073,
565,
596,
2278,
756,
372,
322,
278,
871,
2058,
393,
16688,
445,
6724,
338,
297,
3384,
369,
29889,
13,
13,
3112,
2996,
1250,
14909,
4226,
29889,
1334,
1476,
714,
746,
1183,
471,
29871,
29896,
29900,
11405,
2030,
29889,
13,
13,
24494,
29901,
3575,
8750,
6000,
15168,
471,
285,
1338,
873,
24876,
2662,
363,
402,
29899,
29909,
29899,
29896,
29889,
5538,
2089,
24876,
19263,
3799,
13672,
29973,
1128,
1258,
278,
11619,
30010,
29879,
1207,
1316,
263,
10676,
10171,
297,
902,
24876,
19263,
29973,
13,
13,
7058,
338,
263,
1407,
1781,
1139,
29889,
7311,
896,
526,
577,
10812,
322,
3900,
526,
925,
6257,
304,
1243,
363,
1539,
19388,
293,
766,
20488,
29892,
896,
1016,
30010,
29873,
1073,
988,
304,
1369,
322,
988,
304,
5700,
1283,
916,
1135,
310,
3236,
278,
4251,
896,
505,
750,
577,
2215,
29889,
13,
13,
29902,
9566,
3721,
825,
278,
1353,
471,
29892,
541,
278,
931,
1591,
471,
29871,
29900,
29889,
29941,
29941,
322,
6000,
15168,
30010,
29879,
2996,
1250,
472,
29871,
29900,
29889,
29941,
29941,
322,
769,
278,
2446,
471,
29871,
29900,
29889,
29900,
29946,
322,
6000,
15168,
30010,
29879,
471,
29871,
29900,
29889,
29900,
29929,
29889,
2193,
1033,
505,
1063,
1492,
1156,
1183,
471,
24207,
29888,
287,
470,
1554,
29892,
306,
2289,
1016,
30010,
29873,
1073,
2020,
29889,
1334,
3282,
30010,
29873,
437,
738,
25348,
6724,
470,
3099,
763,
393,
29889,
13,
13,
29902,
508,
2649,
366,
393,
10437,
306,
471,
758,
5138,
424,
411,
3252,
1144,
322,
306,
5714,
902,
3252,
262,
297,
278,
1473,
17151,
4156,
29889,
1932,
591,
892,
2675,
1549,
825,
591,
1258,
411,
6000,
15168,
29892,
306,
6568,
1623,
297,
278,
7145,
2462,
304,
2125,
263,
9709,
322,
306,
1016,
30010,
29873,
1073,
565,
372,
471,
4177,
470,
565,
372,
471,
263,
12561,
29892,
541,
6514,
372,
471,
5429,
592,
393,
1749,
24354,
750,
263,
1539,
19388,
293,
766,
2098,
322,
6000,
15168,
471,
925,
263,
1559,
4336,
322,
393,
591,
892,
1925,
1549,
445,
304,
1073,
825,
9559,
304,
1749,
916,
24354,
29889,
13,
13,
24494,
29901,
1932,
366,
1476,
714,
596,
8750,
471,
9045,
29891,
411,
694,
1804,
310,
402,
29899,
29909,
29899,
29896,
29892,
825,
26603,
366,
304,
1369,
701,
278,
6000,
15168,
6000,
601,
17323,
10606,
29973,
13,
13,
10401,
306,
471,
5925,
292,
363,
590,
8750,
29892,
306,
8496,
30010,
29873,
1284,
738,
7788,
7395,
470,
12214,
1683,
29889,
1670,
471,
871,
697,
4700,
393,
4944,
777,
5235,
29892,
541,
896,
871,
437,
278,
5925,
29889,
1670,
471,
694,
2304,
29892,
23196,
471,
19912,
1438,
13175,
29889,
1619,
10216,
338,
263,
10894,
537,
29892,
541,
306,
750,
694,
2058,
304,
748,
29889,
13,
13,
4806,
1476,
714,
5490,
29871,
29896,
29896,
386,
29871,
29906,
29900,
29900,
29947,
393,
1749,
8750,
471,
6446,
9045,
29891,
29889,
1551,
17852,
30010,
29879,
8373,
4723,
355,
591,
14455,
278,
9763,
304,
11647,
14853,
322,
18189,
17812,
523,
322,
4689,
13442,
12214,
515,
29871,
29896,
29900,
29900,
29899,
29941,
29900,
29900,
24609,
639,
2462,
515,
11825,
1058,
750,
3512,
1549,
470,
892,
2675,
1549,
278,
1021,
2655,
591,
1258,
29889,
306,
4520,
697,
4876,
297,
3153,
393,
1497,
29892,
1346,
306,
505,
1063,
12475,
292,
363,
445,
304,
3799,
304,
4856,
297,
278,
5745,
29889,
3374,
4177,
366,
21130,
3192,
278,
24334,
29892,
541,
1286,
366,
526,
22545,
1218,
363,
372,
3178,
13,
13,
24494,
29901,
1724,
947,
278,
6000,
15168,
6000,
601,
10606,
437,
916,
1135,
12020,
3773,
8326,
404,
363,
1539,
19388,
293,
766,
20488,
29973,
13,
13,
4806,
27391,
15171,
6270,
716,
4939,
4315,
292,
322,
6320,
403,
758,
5138,
424,
5866,
29889,
1334,
864,
304,
658,
1327,
29891,
322,
679,
1432,
2106,
9619,
630,
304,
1209,
278,
13332,
362,
304,
505,
15171,
6270,
716,
4939,
4315,
292,
322,
310,
3236,
29892,
591,
864,
304,
6773,
304,
3867,
23023,
1848,
2304,
322,
16226,
304,
1438,
13175,
393,
526,
15201,
491,
372,
29889,
13,
13,
2499,
3592,
591,
437,
451,
5146,
6909,
4153,
304,
278,
13175,
29892,
591,
437,
1371,
411,
278,
21544,
29889,
1152,
1342,
29892,
1539,
19388,
293,
7063,
338,
395,
29906,
29906,
263,
508,
1531,
29892,
607,
508,
788,
701,
9098,
29889,
450,
13638,
322,
1556,
1663,
18541,
14582,
674,
451,
5146,
363,
372,
29889,
960,
366,
5735,
297,
263,
2106,
393,
1838,
30010,
29873,
505,
15171,
6270,
716,
4939,
4315,
292,
29892,
591,
505,
263,
883,
373,
1749,
4700,
393,
366,
508,
5445,
372,
714,
29889,
960,
366,
4021,
1598,
785,
6593,
565,
366,
508,
30010,
29873,
5146,
714,
310,
24589,
785,
591,
674,
3638,
366,
263,
413,
277,
29889,
9038,
366,
748,
297,
23390,
366,
2125,
372,
411,
366,
29892,
278,
22004,
4175,
756,
29871,
29945,
270,
1862,
408,
15869,
304,
29871,
29941,
29892,
393,
6459,
29879,
701,
304,
29871,
29945,
29946,
766,
20488,
29889,
1334,
769,
679,
13181,
839,
278,
4805,
6909,
515,
395,
29906,
29945,
18039,
29896,
29945,
29900,
322,
591,
674,
5146,
363,
372,
29889,
13,
13,
24494,
29901,
910,
1629,
29892,
366,
505,
734,
2795,
701,
411,
438,
1148,
29991,
997,
29892,
997,
29991,
315,
449,
545,
363,
263,
4266,
1741,
2645,
8075,
30010,
29879,
29871,
29945,
29900,
386,
12060,
3250,
297,
3839,
29991,
1815,
366,
2649,
502,
263,
2217,
2586,
1048,
278,
1741,
29973,
1128,
1258,
445,
22056,
4034,
2041,
1048,
29973,
13,
13,
9048,
306,
5360,
963,
29991,
438,
1148,
29991,
997,
29892,
997,
29991,
9007,
30010,
29873,
2820,
411,
590,
937,
2278,
29892,
541,
4750,
6000,
15168,
338,
599,
1048,
278,
438,
1148,
29991,
997,
29892,
997,
18565,
1183,
12355,
267,
393,
2924,
310,
6433,
29889,
13,
13,
4421,
1501,
30010,
29879,
12060,
3250,
338,
278,
29871,
29906,
29906,
299,
541,
591,
526,
13587,
445,
1741,
373,
278,
29871,
29906,
29953,
386,
29892,
322,
372,
674,
367,
4934,
472,
278,
13834,
7455,
1049,
3942,
29899,
26689,
16730,
29892,
450,
350,
1310,
368,
7455,
1049,
29889,
450,
16730,
338,
2982,
3502,
1244,
322,
263,
380,
481,
280,
304,
278,
19599,
408,
372,
338,
20114,
304,
278,
21536,
23268,
29889,
739,
756,
263,
1855,
8198,
19180,
3114,
4459,
304,
372,
29889,
450,
1741,
674,
367,
263,
4628,
22134,
330,
2883,
363,
13175,
408,
1532,
408,
3581,
2701,
322,
22102,
785,
727,
338,
694,
5046,
2117,
29889,
1334,
674,
505,
3196,
413,
4841,
727,
1363,
591,
674,
884,
367,
13587,
263,
13460,
1510,
29991,
13,
13,
4806,
1539,
278,
22281,
472,
278,
2812,
2354,
23350,
1741,
8859,
445,
1629,
322,
591,
12707,
263,
2586,
1048,
825,
591,
437,
411,
278,
6000,
15168,
6000,
601,
17323,
10606,
29889,
2688,
23610,
502,
304,
278,
6686,
297,
7510,
2598,
983,
8859,
445,
1629,
322,
591,
2289,
2355,
304,
1073,
963,
1532,
29889,
1334,
23610,
963,
975,
304,
278,
3699,
322,
4240,
263,
2107,
9443,
29889,
2688,
750,
445,
2969,
304,
1653,
263,
4266,
10714,
7148,
363,
278,
6000,
15168,
22778,
29889,
739,
338,
263,
330,
3890,
681,
10714,
29991,
739,
338,
6446,
2888,
29892,
322,
338,
3755,
1422,
515,
1009,
916,
25517,
29889,
739,
756,
278,
24745,
7232,
1007,
14561,
322,
7232,
514,
3276,
411,
364,
11222,
342,
2873,
785,
925,
330,
3890,
681,
29991,
13,
13,
29949,
1148,
29991,
997,
29892,
997,
29991,
338,
6820,
502,
2820,
29871,
29896,
29900,
29900,
10714,
267,
304,
19417,
7812,
472,
29871,
29896,
29900,
29900,
29995,
21665,
411,
599,
8469,
29879,
2675,
304,
278,
22778,
29889,
2688,
674,
367,
9078,
12203,
12785,
29892,
3625,
297,
5164,
15786,
363,
4344,
515,
29871,
29896,
29906,
7378,
29899,
29896,
29900,
2440,
29889,
2688,
674,
367,
3625,
304,
20590,
13489,
3598,
1549,
1749,
4700,
29892,
297,
263,
7303,
310,
11405,
29889,
13,
13,
3624,
8075,
30010,
29879,
350,
7515,
3250,
6864,
1722,
304,
278,
970,
29973,
13,
13,
8241,
29991,
887,
508,
748,
304,
6000,
15168,
29933,
29874,
601,
28077,
29889,
510,
29892,
988,
366,
508,
15649,
278,
16892,
1691,
1549,
14617,
7830,
29889,
1334,
871,
505,
1048,
29871,
29941,
29953,
22091,
2175,
310,
278,
29871,
29896,
29906,
29945,
11232,
279,
16892,
1691,
322,
769,
278,
29871,
29946,
386,
1948,
395,
29896,
29900,
29900,
16892,
1691,
591,
871,
505,
1048,
29871,
29941,
29900,
16892,
1691,
2175,
322,
769,
278,
1741,
338,
5239,
714,
29889,
13,
13,
14084,
263,
2846,
310,
278,
7793,
26549,
583,
16725,
3160,
29901,
18888,
2180,
11335,
29892,
323,
10068,
6650,
515,
402,
798,
292,
349,
2708,
322,
5569,
3037,
370,
307,
18093,
385,
4152,
1591,
363,
395,
29906,
29945,
29900,
29900,
29889,
29900,
29900,
785,
540,
471,
4942,
29889,
5765,
2315,
29883,
2172,
373,
29871,
29929,
29900,
29906,
29896,
29900,
29889,
23052,
16721,
674,
884,
367,
727,
29892,
540,
5318,
2259,
13896,
1501,
373,
278,
10443,
322,
278,
11654,
2222,
363,
29871,
29941,
29900,
2440,
29889,
887,
1073,
29892,
540,
10083,
925,
763,
4976,
8882,
16546,
29991,
2921,
304,
23052,
29928,
692,
3333,
21238,
29889,
510,
304,
1423,
1075,
714,
29892,
540,
338,
10135,
352,
681,
29991,
3600,
6532,
12931,
16721,
338,
23376,
278,
1741,
363,
502,
29889,
2296,
338,
263,
15409,
322,
9045,
330,
20144,
322,
884,
263,
3928,
296,
363,
7197,
8373,
17900,
322,
29043,
360,
387,
759,
267,
29889,
13,
13,
3253,
314,
25703,
29892,
278,
419,
287,
713,
515,
9208,
422,
293,
6679,
292,
29892,
674,
367,
15859,
408,
1532,
2599,
777,
2317,
29899,
786,
26228,
29889,
13,
13,
24494,
29901,
3575,
8750,
6000,
15168,
674,
367,
14712,
29871,
29941,
297,
3979,
29991,
1128,
338,
1183,
2599,
29973,
2811,
1183,
367,
6257,
544,
1968,
1507,
445,
1629,
29973,
13,
13,
3782,
29889,
306,
13726,
599,
310,
590,
937,
8750,
30010,
29879,
2316,
342,
2873,
1363,
306,
750,
902,
2645,
590,
937,
3031,
4156,
310,
12755,
29892,
746,
306,
471,
263,
734,
264,
1875,
29889,
306,
471,
1985,
29871,
29896,
29899,
29906,
17643,
29892,
577,
306,
13726,
1556,
310,
902,
2316,
342,
2873,
29889,
2973,
6000,
15168,
29892,
306,
5131,
304,
2289,
367,
727,
29889,
1152,
697,
29892,
306,
26506,
304,
505,
263,
302,
14763,
29889,
306,
7359,
30010,
29873,
750,
263,
302,
14763,
29892,
451,
1584,
363,
263,
2462,
29889,
8075,
322,
306,
526,
1244,
4359,
1432,
2462,
29889,
13,
13,
29902,
626,
3755,
2030,
3762,
408,
306,
1348,
544,
1968,
1507,
338,
925,
278,
1629,
1434,
1855,
3762,
29889,
306,
864,
590,
8750,
304,
367,
263,
26397,
29889,
960,
474,
471,
263,
2323,
1985,
16823,
29892,
306,
723,
367,
599,
363,
372,
29892,
541,
393,
3508,
30010,
29873,
278,
6434,
29892,
577,
306,
30010,
345,
3523,
287,
451,
304,
29889,
1334,
2125,
902,
304,
263,
16823,
1357,
29892,
270,
25644,
322,
592,
770,
988,
896,
505,
10545,
4413,
29889,
739,
338,
29871,
29896,
7234,
322,
29871,
29896,
29945,
6233,
1919,
2748,
263,
4723,
29889,
2296,
756,
18691,
701,
3755,
263,
2846,
10545,
3838,
29889,
13,
4806,
884,
864,
304,
1369,
902,
297,
17948,
3109,
787,
29892,
1363,
1183,
338,
1407,
1568,
964,
4696,
322,
17948,
29991,
13,
13,
24494,
29901,
6975,
366,
6091,
310,
11143,
349,
326,
29973,
1619,
8750,
30010,
29879,
322,
306,
5360,
393,
1824,
29991,
13,
13,
29979,
29872,
801,
591,
505,
393,
29991,
1334,
6505,
11143,
349,
326,
297,
1749,
3699,
408,
1532,
29889,
13,
13,
5618,
338,
6000,
15168,
964,
1438,
3841,
29973,
13,
13,
29909,
5897,
297,
28004,
1049,
29991,
306,
18093,
902,
278,
16308,
297,
28004,
1049,
278,
5648,
1873,
515,
5129,
29947,
29946,
470,
16156,
29947,
29945,
29892,
278,
697,
8075,
471,
297,
322,
769,
306,
18093,
902,
278,
2441,
16308,
297,
28004,
1049,
322,
1183,
8379,
297,
5360,
411,
372,
29991,
1105,
1183,
12355,
267,
902,
322,
338,
884,
599,
1048,
23010,
347,
515,
29411,
13740,
29889,
13,
13,
24494,
29901,
6000,
15168,
338,
2337,
27121,
701,
297,
2090,
322,
1424,
9403,
714,
29888,
1169,
322,
2071,
381,
1372,
29889,
1317,
1183,
1407,
1568,
964,
13460,
29973,
13,
13,
13468,
338,
1407,
1568,
964,
13460,
322,
5051,
1568,
5839,
29879,
714,
902,
1914,
714,
29888,
1169,
29889,
512,
902,
4694,
300,
306,
505,
599,
278,
1472,
12844,
29872,
345,
10714,
267,
297,
2748,
4004,
29892,
599,
278,
3273,
12844,
29872,
345,
297,
1790,
29892,
902,
2071,
381,
1372,
29892,
304,
567,
29892,
4129,
338,
599,
19098,
29889,
306,
626,
1407,
1568,
278,
2894,
5281,
3005,
557,
29892,
577,
565,
306,
1073,
825,
2924,
310,
714,
292,
591,
674,
748,
304,
306,
674,
1722,
278,
3058,
760,
310,
902,
4694,
300,
322,
1183,
4947,
304,
5839,
515,
1906,
29889,
2296,
947,
263,
1781,
4982,
29991,
13,
13,
24494,
29901,
1724,
526,
596,
25448,
1067,
6046,
1506,
4167,
363,
413,
4841,
29973,
13,
13,
2776,
3236,
438,
1148,
997,
997,
29991,
315,
449,
545,
338,
697,
310,
902,
7853,
3246,
29991,
306,
5360,
438,
1148,
997,
425,
1363,
967,
3209,
950,
12849,
411,
1424,
9403,
29889,
6000,
15168,
508,
3183,
373,
263,
5101,
310,
2289,
7575,
7756,
1431,
10178,
10714,
17394,
267,
322,
505,
263,
7575,
714,
9202,
363,
6586,
470,
263,
17803,
6263,
29889,
1987,
363,
278,
14089,
29892,
1183,
508,
1925,
373,
777,
1472,
577,
4684,
322,
317,
446,
305,
414,
322,
1183,
30010,
29879,
7960,
304,
748,
29889,
11275,
22095,
526,
1407,
1224,
24285,
29991,
13,
13,
29902,
626,
884,
1407,
2030,
3762,
29892,
770,
29891,
322,
565,
366,
1074,
278,
2030,
14956,
310,
590,
8750,
366,
674,
8369,
1183,
26758,
3755,
263,
2586,
310,
6640,
16344,
29889,
306,
626,
760,
7824,
408,
590,
5637,
30010,
29879,
2625,
338,
515,
20262,
322,
746,
306,
471,
263,
2217,
7826,
29892,
590,
9642,
8099,
723,
19531,
278,
3273,
889,
860,
414,
411,
278,
1472,
577,
4684,
322,
269,
22352,
17394,
267,
29889,
306,
2289,
763,
393,
7824,
770,
29891,
1106,
29889,
8155,
393,
3114,
29991,
13,
13,
24494,
29901,
2811,
2845,
366,
470,
8075,
367,
7863,
304,
16684,
29973,
13,
13,
29902,
471,
263,
380,
1657,
6114,
363,
29871,
29896,
29941,
29899,
29896,
29946,
2440,
322,
590,
3573,
756,
4586,
263,
5129,
1406,
264,
29889,
306,
30010,
29885,
884,
2978,
292,
278,
4802,
29871,
29946,
29900,
577,
306,
1016,
30010,
29873,
1348,
306,
674,
29889,
306,
1122,
2125,
701,
777,
23376,
408,
727,
505,
1063,
777,
28602,
1907,
304,
437,
577,
29889,
8075,
338,
1603,
6136,
297,
278,
13661,
29892,
5998,
540,
3508,
30010,
29873,
373,
11456,
29889,
940,
1603,
10017,
3697,
322,
13880,
29892,
577,
8830,
5742,
278,
20407,
29889,
13,
13,
2831,
901,
2472,
373,
278,
6000,
15168,
6000,
601,
10606,
29892,
304,
20590,
278,
4266,
12203,
438,
1148,
29991,
997,
29892,
997,
29991,
315,
449,
545,
360,
1253,
267,
322,
29914,
272,
16892,
1691,
304,
8075,
30010,
29879,
12060,
3250,
6263,
29892,
3113,
6493,
6000,
15168,
29933,
29874,
601,
28077,
29889,
510,
29889,
887,
508,
884,
1101,
8075,
6000,
601,
373,
670,
20147,
1813,
363,
7333,
11217,
29889,
13,
13,
29902,
12891,
633,
2015,
7793,
29890,
28723,
541,
445,
471,
2107,
30098,
29934,
1600,
29872,
29892,
366,
526,
1407,
5962,
287,
322,
884,
1407,
1559,
292,
304,
6159,
714,
304,
916,
13175,
411,
596,
22778,
30098,
578,
1784,
723,
925,
367,
28656,
896,
21130,
3192,
278,
24334,
322,
748,
373,
411,
1009,
12355,
267,
29889,
13,
386,
1331,
363,
596,
1559,
292,
6824,
13,
13,
29950,
3496,
30010,
29873,
6091,
310,
402,
29899,
29909,
29899,
29896,
541,
508,
2274,
920,
885,
653,
372,
338,
304,
1284,
714,
565,
596,
2278,
756,
738,
766,
2098,
29889,
3139,
3847,
30010,
29879,
8866,
29889,
2688,
881,
763,
263,
20695,
3942,
785,
1532,
5962,
287,
29889,
1126,
2811,
11630,
367,
8454,
714,
438,
1148,
29991,
997,
29892,
997,
29991,
315,
449,
545,
360,
1253,
267,
29889,
13,
13,
29961,
30098,
29962,
1048,
445,
5969,
14927,
2874,
292,
868,
29877,
313,
284,
549,
411,
777,
916,
21863,
292,
14582,
29897,
3969,
304,
590,
5121,
390,
1600,
29872,
6000,
601,
29889,
2439,
563,
5414,
8856,
362,
304,
4266,
4225,
4344,
29892,
29263,
3773,
8326,
404,
363,
1539,
19388,
293,
766,
20488,
322,
518,
30098,
29962,
13,
13,
3226,
1351,
263,
461,
13,
13,
28173,
2191,
13,
13,
13468,
30010,
29879,
263,
16823,
304,
1023,
14000,
322,
263,
24354,
8023,
29892,
263,
9227,
322,
278,
9805,
261,
310,
10517,
21864,
29889,
1094,
263,
658,
369,
310,
3114,
322,
13460,
29892,
18496,
423,
1476,
902,
5129,
29876,
4070,
30010,
322,
5360,
310,
4344,
30010,
29879,
9316,
1550,
11975,
363,
11029,
4452,
363,
902,
4344,
29889,
450,
8986,
508,
367,
975,
1332,
295,
4056,
472,
3064,
322,
5998,
6813,
756,
777,
21863,
292,
9316,
29892,
18496,
423,
4188,
267,
304,
1284,
5129,
10892,
330,
1567,
30010,
297,
4092,
322,
8314,
988,
278,
2874,
414,
505,
263,
889,
547,
363,
4969,
24233,
800,
322,
11949,
393,
526,
18838,
300,
24717,
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
] |
FILED IN COURT OF APPEALS
May 10, 2015
12th Court of Appeals District
John R. Soard
38 Delsie Street
Clarksville, AR 72830
(479) 739-5512
CATHY S. LUSK, CI
Cathy S. Lusk, Clerk
Katrina McClenny, Deputy Clerk
Twelfth Court of Appeals
1517 West Front Street
Suite 354
Tyler, Texas 75702
RE: Case Number: 12-14-00211-CV
Trial Court Case Number: 3-42003; Per Judge Joe Clayton's Order on 1/9/2014;
Case Nos. 3-XXXXX were rolled into this one number
Style: John R. Soard
V.
Terry R. Thorn, Sheila Smith, Mary Page plus other defendants in the above Cases
Ms. Cathy S. Lusk
Twelfth Court of Appeals:
No effort appears to have been made for about half the records that I requested in my
DESIGNATION OF RECORDS, (Clerk's Record pg. 29) Filed February 18, 2014)
No mention has been made concerning my appeal of the summary judgment for the
dismissal of B. Jeffery Doran for accepting a bribe, changing Circuit records and extortion of
property by allowing John R. Soard only $37.00 per month for all his separate living expenses.
No mention has been made for the appeal of the consolidation of all cases with no
reason being given. (PG 28, Clerk's record)
In your letter dated January 8, 2015, you allowed me only 10 days to provide specific
items under the provisions of Requests for additional Items; how can this be when all the items
requested were identified in my identification of records filed on February 18, 2014, almost 15
months ago? In this designation of records the reason was given; the judge ordered, with no
known reason, that all cases be consolidated. In addition, this judge refused to put the parties
in any hearing under oath thus giving all lawyers permission to lie at will and not commit
perjury.
Although you gave the Court Reporter, 30 days to respond, I have received nothing from
Misty McAdams
The 12* Court of Appeals has already refused to allow to me supplement the Reporter's
Record. It is imperative that I use these records to file a brief.
I believe you furnished the attorney for Terry Thorn copies of records from your files.
Ifyou will afford me the same privilege, please call or write the cost for both volumes of the
reporter's record filed by reporter McAdams on 11/24/14.
A notice on the Anderson County Clerk's Bulletin Board states, "IT IS A CRIMETO
INTENTALLY OR KNOWUNGLY FILE A FRAUDENT INSTRUMENT WITH THE DISTRICT CLERK.
No one in the Clerk's Office has been able to tell me who I should report this crime to.
Ifyou can identifythe enforcing authority, please do or you need additional information from
me please call (4790 739-5512.
ruly yours, r\ ,
a j^A
John R. Soard
CC: Ms. Janice Staples
Anderson County Circuit Clerk
500 N. Church Street, Room 18
Palestine, TX 75801
Ms. Misty McAdams
Official Court Reporter
2100 F.M. 1817
Elkhart, Texas 75839
| [
1,
462,
462,
462,
308,
9338,
20566,
2672,
4810,
4574,
29911,
8079,
12279,
4162,
1964,
29903,
13,
12703,
29871,
29896,
29900,
29892,
29871,
29906,
29900,
29896,
29945,
13,
462,
462,
462,
965,
29896,
29906,
386,
9245,
310,
2401,
29872,
1338,
7457,
13,
11639,
390,
29889,
1105,
538,
13,
29941,
29947,
360,
1379,
347,
7103,
13,
6821,
935,
4501,
1924,
29892,
9033,
29871,
29955,
29906,
29947,
29941,
29900,
13,
29898,
29946,
29955,
29929,
29897,
29871,
29955,
29941,
29929,
29899,
29945,
29945,
29896,
29906,
13,
462,
462,
462,
3986,
315,
7534,
29979,
317,
29889,
365,
3308,
29968,
29892,
25781,
13,
13,
13,
29907,
493,
29891,
317,
29889,
365,
17400,
29892,
315,
1358,
29895,
13,
29968,
8141,
1099,
15612,
2435,
1460,
29892,
26721,
29891,
315,
1358,
29895,
13,
27418,
761,
386,
9245,
310,
2401,
29872,
1338,
13,
29896,
29945,
29896,
29955,
3122,
13960,
7103,
13,
5091,
568,
29871,
29941,
29945,
29946,
13,
21314,
1358,
29892,
10319,
268,
29955,
29945,
29955,
29900,
29906,
13,
13,
1525,
29901,
1678,
11733,
9681,
29901,
9651,
29896,
29906,
29899,
29896,
29946,
29899,
29900,
29900,
29906,
29896,
29896,
29899,
15633,
13,
13,
13,
29911,
9315,
9245,
11733,
9681,
29901,
965,
29941,
29899,
29946,
29906,
29900,
29900,
29941,
29936,
268,
2431,
26817,
11131,
26234,
880,
29915,
29879,
8170,
373,
29871,
29896,
29914,
29929,
29914,
29906,
29900,
29896,
29946,
29936,
13,
462,
462,
259,
11733,
405,
359,
29889,
29871,
29941,
29899,
19165,
29990,
892,
29081,
964,
445,
697,
1353,
13,
13,
13,
5568,
29901,
2259,
390,
29889,
1105,
538,
13,
539,
478,
29889,
13,
539,
27571,
390,
29889,
498,
1398,
29892,
2296,
4233,
7075,
29892,
6182,
9305,
2298,
916,
24663,
1934,
297,
278,
2038,
315,
2129,
13,
13,
29924,
29879,
29889,
315,
493,
29891,
317,
29889,
365,
17400,
13,
27418,
761,
386,
9245,
310,
2401,
29872,
1338,
29901,
13,
13,
418,
1939,
7225,
5692,
304,
505,
1063,
1754,
363,
1048,
4203,
278,
6475,
393,
306,
13877,
297,
590,
13,
2287,
5425,
20728,
8098,
8079,
5195,
29907,
1955,
8452,
29892,
313,
29907,
1358,
29895,
29915,
29879,
14164,
23822,
29889,
29871,
29906,
29929,
29897,
383,
2356,
6339,
29871,
29896,
29947,
29892,
29871,
29906,
29900,
29896,
29946,
29897,
13,
13,
539,
1939,
3585,
756,
1063,
1754,
19813,
590,
25530,
310,
278,
15837,
24284,
363,
278,
13,
29881,
28303,
284,
310,
350,
29889,
435,
1389,
571,
29891,
9579,
273,
363,
25967,
263,
289,
374,
915,
29892,
6480,
12594,
3121,
6475,
322,
1294,
441,
291,
310,
13,
6799,
491,
14372,
2259,
390,
29889,
1105,
538,
871,
395,
29941,
29955,
29889,
29900,
29900,
639,
4098,
363,
599,
670,
5004,
8471,
1518,
11259,
29889,
13,
13,
539,
1939,
3585,
756,
1063,
1754,
363,
278,
25530,
310,
278,
1136,
17211,
362,
310,
599,
4251,
411,
694,
13,
23147,
1641,
2183,
29889,
313,
16903,
29871,
29906,
29947,
29892,
315,
1358,
29895,
29915,
29879,
2407,
29897,
13,
13,
4706,
512,
596,
5497,
29797,
5490,
29871,
29947,
29892,
29871,
29906,
29900,
29896,
29945,
29892,
366,
6068,
592,
871,
29871,
29896,
29900,
3841,
304,
3867,
2702,
13,
7076,
1090,
278,
1326,
12112,
310,
10729,
29879,
363,
5684,
25085,
29936,
920,
508,
445,
367,
746,
599,
278,
4452,
13,
3827,
287,
892,
15659,
297,
590,
29769,
310,
6475,
934,
29881,
373,
6339,
29871,
29896,
29947,
29892,
29871,
29906,
29900,
29896,
29946,
29892,
4359,
29871,
29896,
29945,
13,
10874,
29879,
8020,
29973,
512,
445,
2874,
362,
310,
6475,
278,
2769,
471,
2183,
29936,
278,
16833,
10372,
29892,
411,
694,
13,
5203,
2769,
29892,
393,
599,
4251,
367,
1136,
17211,
630,
29889,
512,
6124,
29892,
445,
16833,
15964,
304,
1925,
278,
13973,
13,
262,
738,
22514,
1090,
288,
493,
4550,
6820,
599,
4307,
29891,
414,
10751,
304,
3804,
472,
674,
322,
451,
9063,
13,
546,
29926,
2857,
29889,
13,
15,
539,
8512,
366,
4846,
278,
9245,
830,
18505,
29892,
29871,
29941,
29900,
3841,
304,
10049,
29892,
306,
505,
4520,
3078,
515,
13,
29924,
391,
29891,
4052,
3253,
2232,
13,
13,
13,
539,
450,
29871,
29896,
29906,
29930,
9245,
310,
2401,
29872,
1338,
756,
2307,
15964,
304,
2758,
304,
592,
1462,
944,
278,
830,
18505,
29915,
29879,
13,
9182,
29889,
739,
338,
10112,
1230,
393,
306,
671,
1438,
6475,
304,
934,
263,
11473,
29889,
13,
13,
4706,
306,
4658,
366,
15252,
3276,
278,
1098,
25252,
363,
27571,
498,
1398,
14591,
310,
6475,
515,
596,
2066,
29889,
13,
3644,
6293,
674,
21750,
592,
278,
1021,
14828,
479,
29892,
3113,
1246,
470,
2436,
278,
3438,
363,
1716,
18167,
310,
278,
13,
276,
18505,
29915,
29879,
2407,
934,
29881,
491,
1634,
9555,
4052,
3253,
2232,
373,
29871,
29896,
29896,
29914,
29906,
29946,
29914,
29896,
29946,
29889,
13,
13,
418,
319,
8369,
373,
278,
17483,
5127,
315,
1358,
29895,
29915,
29879,
8313,
27106,
12590,
5922,
29892,
376,
1806,
8519,
319,
315,
3960,
2303,
4986,
13,
10192,
3919,
9818,
29979,
6323,
476,
6632,
29956,
3904,
7239,
29979,
24080,
319,
383,
4717,
15789,
3919,
2672,
10810,
5005,
3919,
22659,
6093,
360,
9047,
3960,
1783,
17332,
1001,
29968,
29889,
13,
13,
539,
1939,
697,
297,
278,
315,
1358,
29895,
29915,
29879,
11367,
756,
1063,
2221,
304,
2649,
592,
1058,
306,
881,
3461,
445,
17268,
304,
29889,
13,
3644,
6293,
508,
12439,
1552,
24555,
3277,
14329,
29892,
3113,
437,
470,
366,
817,
5684,
2472,
515,
13,
1004,
3113,
1246,
313,
29946,
29955,
29929,
29900,
29871,
29955,
29941,
29929,
29899,
29945,
29945,
29896,
29906,
29889,
13,
13,
462,
462,
462,
462,
268,
364,
11850,
15850,
29892,
259,
364,
29905,
259,
1919,
13,
13,
462,
462,
462,
462,
3986,
263,
432,
29985,
29909,
13,
462,
462,
462,
1669,
2259,
390,
29889,
1105,
538,
13,
13,
13,
13,
13,
4174,
29901,
1678,
341,
29879,
29889,
2627,
625,
624,
481,
793,
13,
539,
17483,
5127,
12594,
3121,
315,
1358,
29895,
13,
4706,
29945,
29900,
29900,
405,
29889,
6291,
7103,
29892,
25114,
29871,
29896,
29947,
13,
539,
22053,
457,
29892,
323,
29990,
29871,
29955,
29945,
29947,
29900,
29896,
13,
13,
539,
341,
29879,
29889,
341,
391,
29891,
4052,
3253,
2232,
13,
539,
10564,
9245,
830,
18505,
13,
4706,
29906,
29896,
29900,
29900,
383,
29889,
29924,
29889,
29871,
29896,
29947,
29896,
29955,
13,
539,
1260,
15339,
442,
29892,
10319,
29871,
29955,
29945,
29947,
29941,
29929,
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
] |
President Donald Trump's personal attorney Rudy Giuliani on Monday denied being involved with a Ukrainian oligarch whose ethical issues have dovetailed with the ongoing impeachment inquiry into the president.
Giuliani also told NBC News he was not planning on visiting Dmitry Firtash, who is currently wanted on corruption charges in the U.S., during a trip to Vienna he planned last week. He said he could not speak for his two Soviet-born business associates, Lev Parnas and Igor Fruman, who were arrested last week on campaign-finance charges in Virginia as they were about to board one-way flights to Vienna. Giuliani has said their similarly timed Austrian trips were not in conjunction.
"I wasn't planning to go see him," Giuliani said. "That was the last thing from my mind on why I was going to Vienna. There was a very important reason I was going that I'm not at liberty to disclose right now that will make it quite clear [Parnas and Fruman] were not fleeing. And I don't know, I can't speak for them, they have their own businesses. I actually do two things with them. I represent their company, and they help me find people. But I'm pretty sure they were going just for the purpose I knew about."
Giuliani insisted he has "nothing to do with Firtash," whose legal team includes Joe diGenova and Victoria Toensing, the pro-Trump husband and wife attorneys who Fox News reported were "working off the books" with Giuliani as part of his Ukrainian venture.
"So, Firtash, I know nothing about," Giuliani said. "I'm not going to answer any questions about because I'm probably going to get it wrong, and you can ask them."
Giuliani also said he has "never" brought up Firtash's extradition battle with Trump.
"I'm not even sure the president is aware of him," Giuliani said. "I think if you asked the president 'who is Dmitry Firtash?' He would say 'I don't know.' As far as I know, we've never discussed him."
One of Ukraine's wealthiest businessman, Firtash has battled extradition charges to the U.S. for the past two years as the Department of Justice seeks to prosecute him over allegations he bribed Indian officials to land a lucrative mining deal. Federal prosecutors labeled him as an "upper-echelon [associate] of Russian organized crime." Firtash has denied that label and the charge, fighting them from Vienna, where he has lived for the past five years.
Parnas has been working for Firtash's legal team as a translator, a spokesman for DiGenova and Toensing told NBC News. The spokesman denied that Parnas' Vienna trip involved Firtash.
As NBC News reported last week, Parnas and Fruman sought to change the leadership at Ukrainian state-run gas company Naftogaz at the same time they were working with Giuliani to uncover information related to former Vice President Joe Biden and his son Hunter's Ukrainian business ties, an effort that is now the subject of the House impeachment inquiry. Naftogaz's existing leadership was hostile toward Firtash's past energy dealings. Giuliani last week denied any involvement with the efforts aimed at Naftogaz.
House Democrats subpoenaed Parnas and Fruman for documents and testimony as part of the impeachment inquiry, which began soon after it was revealed that Trump asked his Ukrainian counterpart in July for "a favor" that included probing the Bidens and investigating a conspiracy involving the 2016 election.
Giuliani has repeatedly highlighted an affidavit former Ukrainian Prosecutor Viktor Shokin filed in behalf of Firtash in which Shokin blamed his ouster on his investigation of Burisma, the Ukrainian gas company affiliated with Hunter Biden. Backed by much of the international community, the former vice president pushed for Shokin's ouster over his ineffectiveness at cracking down on corruption. The probe of Burisma had been dormant for more than a year by the time Shokin was fired and there has never been evidence that either Biden acted inappropriately.
Giuliani told NBC News he had "nothing to do with the preparing of the affidavit" and said he has more evidence to base his claims about Biden on than that document, including an interview with Shokin.
"This is a smear job. The Firtash thing is a smear job. I have nothing to do with him. The president has nothing to do with him," Giuliani said. "The fact is, I know his case because it's very famous. I know the contending positions on both sides of the case, but I have no involvement in it beyond hearing about it and obviously being given an affidavit."
"And all I did was outline the parts of that affidavit that pertain to me," he continued. "I have no idea if the rest of the affidavit is relevant, truthful. I do know the parts of the affidavit that I put out I can support with independent evidence, plenty of independent evidence." | [
1,
7178,
18935,
27504,
29915,
29879,
7333,
1098,
25252,
10670,
29891,
24740,
11727,
373,
27822,
17935,
1641,
9701,
411,
263,
29417,
713,
288,
3473,
1279,
5069,
11314,
936,
5626,
505,
27698,
11881,
411,
278,
373,
17696,
527,
412,
25117,
25501,
16129,
964,
278,
6673,
29889,
13,
13,
26074,
352,
11727,
884,
5429,
405,
5371,
10130,
540,
471,
451,
18987,
373,
6493,
292,
360,
2415,
719,
383,
2728,
1161,
29892,
1058,
338,
5279,
5131,
373,
1034,
18953,
21090,
297,
278,
501,
29889,
29903,
1696,
2645,
263,
17487,
304,
25309,
540,
20458,
1833,
4723,
29889,
940,
1497,
540,
1033,
451,
7726,
363,
670,
1023,
15308,
29899,
4939,
5381,
4067,
1078,
29892,
20708,
1459,
22911,
322,
12815,
272,
4693,
7889,
29892,
1058,
892,
24383,
1833,
4723,
373,
11531,
29899,
4951,
749,
21090,
297,
11653,
408,
896,
892,
1048,
304,
7613,
697,
29899,
1582,
1652,
5861,
304,
25309,
29889,
24740,
11727,
756,
1497,
1009,
22829,
5335,
287,
3330,
6392,
3367,
567,
892,
451,
297,
9589,
651,
29889,
13,
13,
29908,
29902,
9007,
29915,
29873,
18987,
304,
748,
1074,
1075,
1699,
24740,
11727,
1497,
29889,
376,
7058,
471,
278,
1833,
2655,
515,
590,
3458,
373,
2020,
306,
471,
2675,
304,
25309,
29889,
1670,
471,
263,
1407,
4100,
2769,
306,
471,
2675,
393,
306,
29915,
29885,
451,
472,
24169,
304,
2313,
2226,
1492,
1286,
393,
674,
1207,
372,
3755,
2821,
518,
2177,
22911,
322,
4693,
7889,
29962,
892,
451,
9115,
22430,
29889,
1126,
306,
1016,
29915,
29873,
1073,
29892,
306,
508,
29915,
29873,
7726,
363,
963,
29892,
896,
505,
1009,
1914,
5381,
267,
29889,
306,
2869,
437,
1023,
2712,
411,
963,
29889,
306,
2755,
1009,
5001,
29892,
322,
896,
1371,
592,
1284,
2305,
29889,
1205,
306,
29915,
29885,
5051,
1854,
896,
892,
2675,
925,
363,
278,
6437,
306,
6363,
1048,
1213,
13,
13,
26074,
352,
11727,
1663,
12652,
540,
756,
376,
28450,
304,
437,
411,
383,
2728,
1161,
1699,
5069,
11706,
3815,
7805,
11131,
652,
15462,
4273,
322,
14212,
1763,
575,
292,
29892,
278,
410,
29899,
2308,
3427,
10216,
322,
6532,
1098,
272,
484,
952,
1058,
14802,
10130,
8967,
892,
376,
22899,
1283,
278,
8277,
29908,
411,
24740,
11727,
408,
760,
310,
670,
29417,
713,
9712,
545,
29889,
13,
13,
29908,
6295,
29892,
383,
2728,
1161,
29892,
306,
1073,
3078,
1048,
1699,
24740,
11727,
1497,
29889,
376,
29902,
29915,
29885,
451,
2675,
304,
1234,
738,
5155,
1048,
1363,
306,
29915,
29885,
3117,
2675,
304,
679,
372,
2743,
29892,
322,
366,
508,
2244,
963,
1213,
13,
13,
26074,
352,
11727,
884,
1497,
540,
756,
376,
484,
369,
29908,
6296,
701,
383,
2728,
1161,
29915,
29879,
17541,
328,
654,
10555,
411,
27504,
29889,
13,
13,
29908,
29902,
29915,
29885,
451,
1584,
1854,
278,
6673,
338,
9543,
310,
1075,
1699,
24740,
11727,
1497,
29889,
376,
29902,
1348,
565,
366,
4433,
278,
6673,
525,
15970,
338,
360,
2415,
719,
383,
2728,
1161,
17901,
940,
723,
1827,
525,
29902,
1016,
29915,
29873,
1073,
6169,
1094,
2215,
408,
306,
1073,
29892,
591,
29915,
345,
2360,
15648,
1075,
1213,
13,
13,
6716,
310,
23961,
29915,
29879,
17173,
12239,
5381,
1171,
29892,
383,
2728,
1161,
756,
8957,
839,
17541,
328,
654,
21090,
304,
278,
501,
29889,
29903,
29889,
363,
278,
4940,
1023,
2440,
408,
278,
10317,
310,
17181,
1074,
2039,
304,
410,
3471,
1082,
1075,
975,
16831,
800,
540,
289,
1091,
287,
7560,
24921,
304,
2982,
263,
21626,
29878,
1230,
1375,
292,
5376,
29889,
14879,
410,
3471,
29560,
301,
24025,
1075,
408,
385,
376,
21064,
29899,
5309,
295,
265,
518,
21264,
403,
29962,
310,
10637,
19098,
17268,
1213,
383,
2728,
1161,
756,
17935,
393,
3858,
322,
278,
8323,
29892,
17770,
963,
515,
25309,
29892,
988,
540,
756,
10600,
363,
278,
4940,
5320,
2440,
29889,
13,
13,
2177,
22911,
756,
1063,
1985,
363,
383,
2728,
1161,
29915,
29879,
11706,
3815,
408,
263,
5578,
1061,
29892,
263,
805,
23195,
1171,
363,
4671,
15462,
4273,
322,
1763,
575,
292,
5429,
405,
5371,
10130,
29889,
450,
805,
23195,
1171,
17935,
393,
1459,
22911,
29915,
25309,
17487,
9701,
383,
2728,
1161,
29889,
13,
13,
2887,
405,
5371,
10130,
8967,
1833,
4723,
29892,
1459,
22911,
322,
4693,
7889,
18365,
304,
1735,
278,
26001,
472,
29417,
713,
2106,
29899,
3389,
10489,
5001,
405,
2051,
468,
834,
472,
278,
1021,
931,
896,
892,
1985,
411,
24740,
11727,
304,
443,
11911,
2472,
4475,
304,
4642,
21400,
7178,
11131,
350,
3615,
322,
670,
1487,
25703,
29915,
29879,
29417,
713,
5381,
260,
583,
29892,
385,
7225,
393,
338,
1286,
278,
4967,
310,
278,
5619,
527,
412,
25117,
25501,
16129,
29889,
405,
2051,
468,
834,
29915,
29879,
5923,
26001,
471,
3495,
488,
11183,
383,
2728,
1161,
29915,
29879,
4940,
5864,
5376,
886,
29889,
24740,
11727,
1833,
4723,
17935,
738,
5297,
29841,
411,
278,
14231,
12242,
287,
472,
405,
2051,
468,
834,
29889,
13,
13,
29950,
1709,
14189,
1446,
1014,
1129,
2386,
287,
1459,
22911,
322,
4693,
7889,
363,
10701,
322,
28523,
2592,
408,
760,
310,
278,
527,
412,
25117,
25501,
16129,
29892,
607,
4689,
4720,
1156,
372,
471,
17845,
393,
27504,
4433,
670,
29417,
713,
6795,
1595,
297,
5468,
363,
376,
29874,
7853,
29908,
393,
5134,
2070,
292,
278,
350,
333,
575,
322,
7405,
1218,
263,
21588,
29875,
10068,
21677,
278,
29871,
29906,
29900,
29896,
29953,
8271,
29889,
13,
13,
26074,
352,
11727,
756,
28424,
12141,
287,
385,
2756,
333,
485,
277,
4642,
29417,
713,
1019,
3471,
3406,
18503,
7345,
1383,
554,
262,
934,
29881,
297,
2306,
3131,
310,
383,
2728,
1161,
297,
607,
1383,
554,
262,
1999,
2795,
670,
2123,
2475,
373,
670,
22522,
310,
6640,
275,
655,
29892,
278,
29417,
713,
10489,
5001,
23736,
630,
411,
25703,
350,
3615,
29889,
7437,
287,
491,
1568,
310,
278,
6121,
7881,
29892,
278,
4642,
11289,
6673,
18760,
363,
1383,
554,
262,
29915,
29879,
2123,
2475,
975,
670,
297,
15987,
20193,
472,
26755,
292,
1623,
373,
1034,
18953,
29889,
450,
410,
915,
310,
6640,
275,
655,
750,
1063,
270,
555,
424,
363,
901,
1135,
263,
1629,
491,
278,
931,
1383,
554,
262,
471,
17285,
322,
727,
756,
2360,
1063,
10757,
393,
2845,
350,
3615,
27320,
297,
932,
6649,
2486,
29889,
13,
13,
26074,
352,
11727,
5429,
405,
5371,
10130,
540,
750,
376,
28450,
304,
437,
411,
278,
10223,
292,
310,
278,
2756,
333,
485,
277,
29908,
322,
1497,
540,
756,
901,
10757,
304,
2967,
670,
16726,
1048,
350,
3615,
373,
1135,
393,
1842,
29892,
3704,
385,
15593,
411,
1383,
554,
262,
29889,
13,
13,
29908,
4013,
338,
263,
1560,
799,
4982,
29889,
450,
383,
2728,
1161,
2655,
338,
263,
1560,
799,
4982,
29889,
306,
505,
3078,
304,
437,
411,
1075,
29889,
450,
6673,
756,
3078,
304,
437,
411,
1075,
1699,
24740,
11727,
1497,
29889,
376,
1576,
2114,
338,
29892,
306,
1073,
670,
1206,
1363,
372,
29915,
29879,
1407,
13834,
29889,
306,
1073,
278,
640,
2548,
11909,
373,
1716,
11192,
310,
278,
1206,
29892,
541,
306,
505,
694,
5297,
29841,
297,
372,
8724,
22514,
1048,
372,
322,
12879,
1641,
2183,
385,
2756,
333,
485,
277,
1213,
13,
13,
29908,
2855,
599,
306,
1258,
471,
27887,
278,
5633,
310,
393,
2756,
333,
485,
277,
393,
639,
2408,
304,
592,
1699,
540,
7572,
29889,
376,
29902,
505,
694,
2969,
565,
278,
1791,
310,
278,
2756,
333,
485,
277,
338,
8018,
29892,
8760,
1319,
29889,
306,
437,
1073,
278,
5633,
310,
278,
2756,
333,
485,
277,
393,
306,
1925,
714,
306,
508,
2304,
411,
7417,
10757,
29892,
20947,
310,
7417,
10757,
1213
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 Conference features national and local presenters who share methods and strategies to improve safety as well as promote justice for all crime victims. The conference is open to all persons who honor and assist crime victims in achieving safety, justice, and healing, including criminal justice and victim services professionals and allied partners. | [
1,
450,
16377,
5680,
4797,
322,
1887,
2198,
414,
1058,
6232,
3519,
322,
16650,
583,
304,
11157,
15332,
408,
1532,
408,
27391,
15426,
363,
599,
17268,
6879,
9893,
29889,
450,
21362,
338,
1722,
304,
599,
12407,
1058,
10657,
322,
6985,
17268,
6879,
9893,
297,
3657,
15387,
15332,
29892,
15426,
29892,
322,
540,
12818,
29892,
3704,
22161,
15426,
322,
28985,
5786,
6351,
1338,
322,
394,
2957,
22056,
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
] |
Le Snob
Presenting a stunning collection of haute-utility, luxury leathers , canvas , eyewear and other gilded gear: lesnob. designed by b. åkerlund & robert lussier with the loves of all things snob. goth meets goldfinger. skin meets metal. nature meets supernature. noir meets star. But most of all : luxury meets mobility and creates something entirely new in fashion: snobbility (rhymes with mobility & nobility.) included: the ultimate carry-ons. un grand sac that unzips, then re-buckles into a dress. the tote-brac elet-brella. the collapsible incognito hat you carry on your wrist. the canvas lesnob trench, tote, baby-doc and graduated duffels. mirror finish lipstick-charm clutches lined in sheepskin; lesnob doesn’t even have to open her clutch to re-apply. all, from the wallets to the mega -tote, blessed with gleaming golden l esnob signature hardware. but even if you took it all off, you’d still know it’s lesnob. | [
1,
951,
22639,
711,
13,
13,
13504,
296,
292,
263,
380,
27389,
4333,
310,
447,
1082,
29899,
329,
1793,
29892,
21684,
2857,
454,
19467,
1919,
10508,
1919,
10977,
705,
279,
322,
916,
330,
789,
287,
330,
799,
29901,
966,
29876,
711,
29889,
8688,
491,
289,
29889,
9174,
3946,
29880,
870,
669,
696,
2151,
301,
1558,
631,
411,
278,
12355,
267,
310,
599,
2712,
5807,
711,
29889,
330,
720,
28103,
7684,
29888,
5621,
29889,
19309,
28103,
11915,
29889,
5469,
28103,
2428,
29876,
1535,
29889,
694,
381,
28103,
5810,
29889,
1205,
1556,
310,
599,
584,
21684,
2857,
28103,
22458,
1793,
322,
10017,
1554,
9186,
716,
297,
13460,
29901,
5807,
20838,
1793,
313,
19046,
962,
267,
411,
22458,
1793,
669,
22182,
1793,
1846,
5134,
29901,
278,
8494,
6490,
8677,
29899,
787,
29889,
443,
4595,
7067,
393,
443,
2526,
567,
29892,
769,
337,
29899,
2423,
384,
793,
964,
263,
10714,
29889,
278,
304,
371,
29899,
29890,
945,
27534,
29899,
1030,
13520,
29889,
278,
784,
14128,
1821,
5528,
3811,
2049,
3056,
366,
8677,
373,
596,
281,
2021,
29889,
278,
10508,
966,
29876,
711,
20639,
305,
29892,
304,
371,
29892,
24354,
29899,
1514,
322,
23588,
868,
600,
1379,
29889,
19571,
8341,
17441,
303,
860,
29899,
305,
2817,
1067,
329,
6609,
301,
1312,
297,
1183,
8961,
9089,
29936,
966,
29876,
711,
1838,
30010,
29873,
1584,
505,
304,
1722,
902,
1067,
10519,
304,
337,
29899,
7302,
29889,
599,
29892,
515,
278,
17042,
10376,
304,
278,
286,
2442,
448,
29873,
866,
29892,
1999,
11517,
411,
27003,
11500,
22843,
301,
831,
29876,
711,
12608,
12837,
29889,
541,
1584,
565,
366,
3614,
372,
599,
1283,
29892,
366,
30010,
29881,
1603,
1073,
372,
30010,
29879,
966,
29876,
711,
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
] |
---
abstract: 'We present a new construction of crossed-product duality for maximal coactions that uses Fischer’s work on maximalizations. Given a group $G$ and a coaction $(A,\delta)$ we define a generalized fixed-point algebra as a certain subalgebra of $M(A\rtimes_\delta G \rtimes_{{\widehat}\delta} G)$, and recover the coaction via this double crossed product. Our goal is to formulate this duality in a category-theoretic context, and one advantage of our construction is that it breaks down into parts that are easy to handle in this regard. We first explain this for the category of nondegenerate \*-homomorphisms, and then analogously for the category of $C^*$-correspondences. Also, we outline partial results for the “outer” category, studied previously by the authors.'
address:
- |
School of Mathematical and Statistical Sciences\
Arizona State University\
Tempe, Arizona 85287
- |
School of Mathematical and Statistical Sciences\
Arizona State University\
Tempe, Arizona 85287
- |
School of Mathematical and Statistical Sciences\
Arizona State University\
Tempe, Arizona 85287
author:
- 'S. Kaliszewski'
- Tron Omland
- John Quigg
date: 'March 4, 2016'
title: Dualities for maximal coactions
---
Introduction {#intro}
============
One of the fundamental constructions in the area of $C^*$-dynamical systems is the crossed product, which is a $C^*$-algebra having the same representation theory as the $C^*$-dynamical system. *Crossed-product duality for $C^*$-dynamical systems* is the recovery of the system from its crossed product. This recovery plays a central role in many aspects of $C^*$-dynamical systems, and consequently has a variety of formulations, differing primarily in one of two ways: the nature of the dynamical systems under consideration, and the sense in which the system is to be recovered. We consider the $C^*$-dynamical systems to be either actions or coactions of a locally compact group $G$.
*Imai-Takai* (or *Imai-Takai-Takesaki*) *duality* [@it] recovers an action up to Morita equivalence from its reduced crossed product. Dually, *Katayama duality* [@kat] recovers a coaction up to Morita equivalence from its crossed product. More precisely, in both cases one recovers the original algebra up to tensoring with the compact operators on $L^2(G)$, by forming the double crossed product. On the other hand, some crossed-product dualities recover the $C^*$-dynamical system up to isomorphism: for example, *Landstad duality* [@landstad] recovers an action up to isomorphism from its reduced crossed product, and [@kqfulllandstad] recovers it from the full crossed product. Dually, [@QuiLandstad] recovers a coaction up to isomorphism from its crossed product.
In recent years, some of these dualities have been put on a categorical footing, casting the crossed-product procedure as a functor, and producing a quasi-inverse. Categorical versions of Landstad duality (for actions or for coactions) [@clda; @cldx] require *nondegenerate categories*, in which the morphisms are equivariant nondegenerate homomorphisms into multiplier algebras. In these categorical dualities the quasi-inverse is constructed from a *generalized fixed-point algebra* inside the multiplier algebra of the crossed product.
In [@koqlandstad] we prove categorical versions of Imai-Takai and Katayama duality, which require categories in which the morphisms are (isomorphism classes of) equivariant $C^*$-correspondences, sometimes referred to as *enchilada categories*. In that paper, which is partly expository, we also present formulations of the *nondegenerate dualities* of [@clda; @cldx], to highlight the parallels among the dualities of [@koqlandstad]. In fact, we formulate the *enchilada dualities* in a manner that is closer to the nondegenerate dualities than to the original theorems of [@it; @kat; @kqfulllandstad], by combining the techniques of generalized fixed-point algebras and linking algebras.
The main innovation in [@koqlandstad] is the introduction of *outer duality*, where the crossed-product functor gives an equivalence between a category of actions in which outer conjugacy is added to the morphisms of the nondegenerate category and a category of coactions in which the morphisms are required to respect the generalized fixed-point algebras. The proof of outer duality for actions in [@koqlandstad] depends upon a theorem of Pedersen [@pedersenexterior Theorem 35] (that we had to extend from abelian to arbitrary groups) characterizing exterior equivalent actions in terms of a special equivariant isomorphism of the crossed products. However, we do not have a fully functioning version of Pedersen’s theorem for coactions, and because of that, we were not able to obtain a complete outer duality for coactions.
The structure of [@koqlandstad] has a section in which the nondegenerate, the enchilada, and the outer dualities for actions are presented in parallel form, followed by a final section containing dual versions: the nondegenerate, the enchilada, and a partial outer duality for normal coactions.
In the current paper we investigate to what extent the three dualities in the final section of [@koqlandstad] carry over from normal to maximal coactions. Since the categories of maximal and normal coactions are equivalent [@clda], it is natural to expect that things should go well. Indeed, the nondegenerate and the enchilada dualities do carry over to maximal coactions. Again, this means that one can recover a maximal coaction from its crossed product in a categorical framework, both for the nondegenerate and the enchilada categories; the nondegenerate case is well-known, whereas the enchilada case is new; we present both to highlight the parallel. However, outer duality presents even more difficulties with maximal coactions than with normal ones.
The dualities for maximal coactions require a different construction than the one in [@koqlandstad]. In that paper, the dualities for crossed products by normal coactions recover the coaction via a normal coaction defined on a generalized fixed-point algebra that is contained in the multiplier algebra of the crossed product. However, this generalized fixed-point algebra is not appropriate for the recovery of a maximal coaction, because the coaction produced by the construction is normal, and indeed it is not clear how one could construct a naturally occurring faithful copy of the maximal coaction inside the multipliers of the crossed product. One of the more delicate aspects inherent in the theory of crossed products by a coaction $(A,\delta)$ of $G$ is that the image of $A$ inside the multiplier algebra $M(A\rtimes_\delta G)$ is faithful if and only if the coaction $\delta$ is normal. Thus, to get a faithful copy of $A$ when $\delta$ is maximal we must look elsewhere. The main innovation in the current paper is the construction of a *maximal generalized fixed-point algebra* inside the multipliers of the full crossed product $A\rtimes_\delta G\rtimes_{{\widehat}\delta} G$ by the *dual action* ${\widehat}\delta$. And to avoid confusion we refer to the earlier algebras inside $M(A\rtimes_\delta G)$ as *normal generalized fixed-point algebras*.
Our approach depends heavily upon Fischer’s construction [@fischer] of the *maximalization* of a coaction. Fischer’s construction, which we feel deserves more attention, is based upon the factorization of a stable $C^*$-algebra $A$ as $B\otimes{\mathcal K}$ (where ${\mathcal K}$ denotes the algebra of compact operators on a separable infinite-dimensional Hilbert space), via a process that produces the $B$ as a *relative commutant of ${\mathcal K}$*. We study this *destabilization* process in detail in [@koqstable]. Our use of Fischer’s construction allows us to factor the maximalization process into three more elementary steps: first take the crossed product by the coaction, then the crossed product by the dual action — but perturb the double dual coaction by a cocycle — and finally take the relative commutant of a naturally occurring copy of ${\mathcal K}$. It is our opinion that that this decomposition gives rise to an improved set of tools to handle maximalizations.
For our present purposes Fischer’s construction allows us to devise a formula for the quasi-inverse in the categorical formulation of recovery of a coaction up to isomorphism from its crossed product, using the maximal generalized fixed-point algebra of the dual action.
We use the same maximal generalized fixed-point algebra to prove enchilada duality for maximal coactions, via standard linking-algebra techniques.
In the final section we discuss some of the challenges in obtaining an outer duality for maximal coactions.
One of the themes running through [@koqlandstad] is *good inversion*. We think of recovering the $C^*$-dynamical system from its crossed product as inverting a process. More precisely, the crossed-product process gives a $C^*$-algebra — the crossed product itself — that is part of a dual $C^*$-dynamical system equipped with some extra information. Extracting just the crossed product from this extra stuff can be regarded as a forgetful functor, and we call the inversion *good* if this forgetful functor enjoys a certain lifting property. In parallel to [@koqlandstad], the inversion is good in the case of nondegenerate duality for maximal coactions and not good for enchilada duality.
In [@BusEch], Buss and Echterhoff develop a powerful technique that handles both maximal and normal coactions, and indeed any *exotic* coaction in between, in a unified manner, by inventing a generalization of Rieffel’s approach to generalized fixed-point algebras and applying it to the dual action on the crossed product. In particular, given a coaction $(A,\delta)$, the techniques of [@BusEch] give both a maximalization and a normalization by finding a \*-subalgebra $(A\rtimes_\delta G)^{G,{\widehat}\delta}_c$ of $M(A\rtimes_\delta G)$ and completing in suitable norms. This is quite distinct from the technique we employ in this paper, where the maximalization is constructed as a subalgebra of $M(A\rtimes_\delta G\rtimes_{{\widehat}\delta} G)$. Both approaches should prove useful.
The second author is funded by the Research Council of Norway (Project no.: 240913).
Preliminaries {#prelims}
=============
Throughout, $G$ denotes a second countable infinite locally compact group, and $A,B,\dots$ denote $C^*$-algebras. We impose the countability assumption on $G$ so that $L^2(G)$ is infinite-dimensional and separable. With some fussiness, we could handle the inseparable case, but we eschew it here because we have no applications of such generality in mind. We refer to [@koqlandstad] for our conventions regarding actions, coactions, $C^*$-correspondences, and cocycles for coactions. In this paper we will work exclusively with maximal coactions, whereas normal ones figured prominently in [@koqlandstad].
We recall some notation for the convenience of the reader. The left and right regular representations of $G$ are $\lambda$ and $\rho$, respectively, the representation of $C_0(G)$ on $L^2(G)$ by multiplication operators is $M$, and the unitary element $w_G\in M(C_0(G)\otimes C^*(G))$ is the strictly continuous map $w_G{\colon}G\to M(C^*(G))$ given by the canonical embedding of $G$. The action of $G$ on $C_0(G)$ by right translation is ${\textup{rt}}$. The crossed product of an action $(A,\alpha)$ of $G$ is $A\rtimes_\alpha G$, with universal covariant homomorphism $(i_A,i_G){\colon}(A,G)\to M(A\rtimes_\alpha G)$, and we use superscripts $i_A^\alpha,i_G^\alpha$ if confusion is likely. Recall that a coaction is a nondegenerate faithful homomorphism $\delta{\colon}A\to M(A\otimes C^*(G))$ such that $(\delta\otimes{\text{\textup{id}}})\circ\delta=({\text{\textup{id}}}\otimes\delta_G)\circ\delta$ and $\operatorname*{\overline{\operatorname*{span}}}\{\delta(A)(1\otimes C^*(G))\}=A\otimes C^*(G)$, where $\delta_G$ denotes the canonical coaction on $C^*(G)$ given by the integrated form of $\delta_G(s)=s\otimes s$ for $s\in G$. For a coaction $(A,\delta)$, with crossed product $A\rtimes_\delta G$, we write $(j_A,j_G)$ for the universal covariant homomorphism, and again we use superscripts $j_A^\delta,j_G^\delta$ if confusion is likely. If $j_A$ is injective, the coaction $\delta$ is called *normal*. A *normalization* of a coaction $(A,\delta)$ consists of a normal coaction $(B,\epsilon)$ and a surjective $\delta-\epsilon$ equivariant homomorphism $\phi{\colon}A\to B$ such that the crossed product $\phi\rtimes G{\colon}A\rtimes_\delta G\to B\rtimes_\epsilon G$ is an isomorphism. Sometimes the coaction $(B,\epsilon)$ itself is referred to as a normalization. For an action $(A,\alpha)$, there is a *dual coaction* ${\widehat}\alpha$ of $G$ on $A\rtimes_\alpha G$, and the nondegenerate homomorphism $i_G{\colon}C^*(G)\to M(A\rtimes_\alpha G)$ is $\delta_G-{\widehat}\alpha$ equivariant. For a coaction $(A,\delta)$, there is a *dual action* of $G$ on $A\rtimes_\delta G$, and the nondegenerate homomorphism $j_G{\colon}C_0(G)\to M(A\rtimes_\delta G)$ is equivariant for ${\textup{rt}}$ and the dual action ${\widehat}\delta$ on $A\rtimes_\delta G$. We write ${\mathcal K}={\mathcal K}(L^2(G))$, and identify $C_0(G)\rtimes_{{\textup{rt}}} G={\mathcal K}$ and ${\widehat}{\textup{rt}}=\operatorname{Ad}\rho$. The regular covariant representation of a coaction $(A,\delta)$ on the Hilbert $A$-module $A\otimes L^2(G)$ is the pair $(({\text{\textup{id}}}\otimes\lambda)\circ\delta,1\otimes M)$. The *canonical surjection* $$\Phi_A{\colon}A\rtimes_\delta G\rtimes_{{\widehat}\delta} G\to A\otimes {\mathcal K}$$ is the integrated form of the covariant homomorphism $$\bigl(({\text{\textup{id}}}\otimes\lambda)\circ\delta\times (1\otimes M),1\otimes\rho\bigr).$$ If $\Phi_A$ is injective, the coaction $\delta$ is called *maximal*. A *maximalization* of a coaction $(A,\delta)$ consists of a maximal coaction $(B,\epsilon)$ and a surjective $\epsilon-\delta$ equivariant homomorphism $\phi{\colon}B\to A$ such that the crossed product $\phi\rtimes G{\colon}B\rtimes_\epsilon G\to A\rtimes_\delta G$ is an isomorphism. Sometimes the coaction $(B,\epsilon)$ itself is referred to as a maximalization.
We recall a few facts from [@fischer; @maximal; @qrtwisted; @lprs] concerning cocycles for coactions. If $(A,\delta)$ is a coaction and $U\in M(A\otimes C^*(G))$ is a $\delta$-cocycle, there are a *perturbed coaction* $\operatorname{Ad}U\circ\delta$ and an isomorphism $$\label{Phi}
\Omega_U{\colon}A\rtimes_{\operatorname{Ad}U\circ\delta} G{\overset{\simeq}{\longrightarrow}}A\rtimes_\delta G$$ given by $\Omega_U=j_A^\delta\times \mu$, where $\mu{\colon}C_0(G)\to M(A\rtimes_\delta G)$ is the nondegenerate homomorphism determined by the unitary element $$(\mu\otimes{\text{\textup{id}}})(w_G)=(j_A^\delta\otimes{\text{\textup{id}}})(U)(j_G^\delta\otimes{\text{\textup{id}}})(w_G)$$ of $M\bigl((A\rtimes_\delta G)\otimes C^*(G)\bigr)$, and moreover $\Omega_U$ is ${\widehat}{\operatorname{Ad}U\circ\delta}-{\widehat}\delta$ equivariant. For reduced coactions, this result is [@qrtwisted Proposition 2.8] (based upon the original version [@lprs Theorem 2.9], which did not include the dual action). Applying the equivalence between reduced and normal coactions [@boiler Proposition 3.1 and Theorem 3.4], the result carries over to normal coactions (see [@koqlandstad Proposition 3.6] for the statement). Then, for any coaction $(A,\delta)$ with normalization $(A^n,\delta^n)$, the result in full generality, as stated above, follows by applying the equivariant isomorphism $A\rtimes_\delta G\simeq A^n\rtimes_{\delta^n} G$ from [@fullred Proposition 2.6] (and note that, although the dual action is not explicitly mentioned there, the equivariance of the isomorphism is obvious). If we have another coaction $(B,\epsilon)$ and a nondegenerate $\delta-\epsilon$ equivariant homomorphism $\phi{\colon}A\to M(B)$, then $(\phi\otimes{\text{\textup{id}}})(U)$ is an $\epsilon$-cocycle, and $\phi$ is also $$(\operatorname{Ad}U\circ\delta)-\bigl(\operatorname{Ad}(\phi\otimes{\text{\textup{id}}})(U)\circ\epsilon\bigr)$$ equivariant.
The homomorphism $$\delta\otimes_*{\text{\textup{id}}}:=({\text{\textup{id}}}\otimes\Sigma)\circ (\delta\otimes{\text{\textup{id}}}){\colon}A\otimes {\mathcal K}\to M(A\otimes {\mathcal K}\otimes C^*(G)),$$ where $\Sigma{\colon}{\mathcal K}\otimes C^*(G)\to C^*(G)\otimes {\mathcal K}$ is the flip isomorphism, is a coaction.
The unitary $w_G\in M(C_0(G)\otimes C^*(G))$ is a cocycle for the trivial coaction ${\delta_{\textup{triv}}}$ of $G$ on $C_0(G)$. The multiplication representation $M$ of $C_0(G)$ on $L^2(G)$ may be regarded as a ${\delta_{\textup{triv}}}-{\widehat}{\textup{rt}}$ equivariant nondegenerate homomorphism from $C_0(G)$ to the multiplier algebra $M({\mathcal K})$, so $(M\otimes{\text{\textup{id}}})(w_G)$ is a ${\widehat}{\textup{rt}}$-cocycle. The perturbed coaction $\operatorname{Ad}(M\otimes{\text{\textup{id}}})(w_G)\circ{\widehat}{\textup{rt}}$ is trivial, as one checks with a routine calculation using covariance of the pair $(M,\rho)$ and the identity $w_G(1\otimes s)=({\textup{rt}}_s\otimes{\text{\textup{id}}})(w_G)$. In other words, the coaction ${\widehat}{\textup{rt}}$ on ${\mathcal K}$ is the inner coaction implemented by the unitary $$W:=(M\otimes{\text{\textup{id}}})(w_G^*)\in M({\mathcal K}\otimes C^*(G)).$$
It follows that if $(A,\delta)$ is a coaction then $1_{M(A)}\otimes W$ is a $(\delta\otimes_*{\text{\textup{id}}})$-cocycle. Denote the perturbed coaction by $$\delta\otimes_* W=\operatorname{Ad}(1\otimes W)\circ (\delta\otimes_*{\text{\textup{id}}}).$$ Then the canonical surjection $\Phi_A{\colon}A\rtimes_\delta G\rtimes_{{\widehat}\delta} G\to A\otimes{\mathcal K}$ is ${\widehat}{{\widehat}\delta}-(\delta\otimes_* W)$ equivariant.
[Proposition ]{} below is a reformulation of [@fischer Section 1, particularly Lemma 1.16], and we state it formally for convenient reference. First we introduce the pieces that will combine to make the statement of the proposition:
Consider the following diagram : $$\xymatrix@C-20pt{
(A\otimes{\mathcal K})\rtimes_{\delta\otimes_* W} G
\ar@{-->}[rr]^-{\Gamma_A}_-\simeq
\ar[dd]_{(\phi\otimes{\text{\textup{id}}})\rtimes G}
\ar[dr]_{\Omega_{1\otimes W}}^\simeq
&&(A\rtimes_\delta G)\otimes{\mathcal K}\ar[dd]^{(\phi\rtimes G)\otimes{\text{\textup{id}}}}
\\
&(A\otimes{\mathcal K})\rtimes_{\delta\otimes_*{\text{\textup{id}}}} G
\ar'[d]^{(\phi\otimes{\text{\textup{id}}})\rtimes G}[dd]
\ar[ur]^\simeq
\\
M((B\otimes{\mathcal K})\rtimes_{\epsilon\otimes_* W} G)
\ar@{-->}[rr]^(.4){\Gamma_B}_(.4)\simeq
\ar[dr]_{\Omega_{1\otimes W}}^\simeq
&&M((B\rtimes_\epsilon G)\otimes{\mathcal K})
\\
&M((B\otimes {\mathcal K})\rtimes_{\epsilon\otimes_*{\text{\textup{id}}}} G).
\ar[ur]^\simeq
}$$
The upper southeast arrow $\Omega$ is the isomorphism associated to the $(\delta\otimes_*{\text{\textup{id}}})$-cocycle $1_{M(A)}\otimes W$, and is $${\widehat}{\delta\otimes_* W}-{\widehat}{\delta\otimes_*{\text{\textup{id}}}}$$ equivariant, and similarly the lower southeast arrow is ${\widehat}{\epsilon\otimes_* W}-{\widehat}{\epsilon\otimes_*{\text{\textup{id}}}}$ equivariant.
The upper northeast arrow is the isomorphism $$\begin{aligned}
&(j_A^\delta\otimes{\text{\textup{id}}}_{\mathcal K})\times (j_G^\delta\otimes 1_{M({\mathcal K})}),\end{aligned}$$ and is $${\widehat}{\delta\otimes_*{\text{\textup{id}}}}-({\widehat}\delta\otimes{\text{\textup{id}}})$$ equivariant, and similarly the lower northeast arrow is ${\widehat}{\epsilon\otimes_*{\text{\textup{id}}}}-({\widehat}\epsilon\otimes{\text{\textup{id}}})$ equivariant.
The left-hand vertical arrow is the crossed product of the $$(\delta\otimes_* W)-(\epsilon\otimes_* W)$$ equivariant homomorphism $\phi\otimes{\text{\textup{id}}}_{\mathcal K}$, and similarly the middle vertical arrow is the crossed product of $\phi\otimes{\text{\textup{id}}}$, but now regarded as being $(\delta\otimes_*{\text{\textup{id}}})-(\epsilon\otimes_*{\text{\textup{id}}})$ equivariant.
The right-hand vertical arrow is the tensor product with ${\text{\textup{id}}}_{\mathcal K}$ of the crossed product $\phi\rtimes G$ of $\phi$, and is $$({\widehat}\delta\otimes{\text{\textup{id}}})-({\widehat}\epsilon\otimes{\text{\textup{id}}})$$ equivariant.
The upper horizontal arrow $\Gamma_A$ is defined so that the top triangle commutes, and is $${\widehat}{\delta\otimes_* W}-({\widehat}\delta\otimes{\text{\textup{id}}})$$ equivariant, and similarly the lower horizontal arrow $\Gamma_B$ is ${\widehat}{\epsilon\otimes_* W}-({\widehat}\epsilon\otimes{\text{\textup{id}}})$ equivariant.
\[Gamma\] The diagram commutes.
This follows from naturality of the southeast and northeast isomorphisms.
Relative commutants {#relative-commutants .unnumbered}
-------------------
If $\iota{\colon}{\mathcal K}\to M(A)$ is a nondegenerate homomorphism, the *$A$-relative commutant of ${\mathcal K}$* is $$C(A,\iota):=\{m\in M(A):m\iota(k)=\iota(k)m\in A\text{ for all }k\in{\mathcal K}\}.$$ The canonical isomorphism $\theta_A{\colon}C(A,\iota)\otimes{\mathcal K}{\overset{\simeq}{\longrightarrow}}A$ is determined by $\theta(m\otimes k)=m\iota(k)$ (see [@fischer Remark 3.1] and [@koqstable Proposition 3.4]).
As Fischer observes, $C(A,\iota)$ can be characterized as the unique closed subset $Z$ of $M(A)$ that commutes elementwise with $\iota({\mathcal K})$ and satisfies $\operatorname*{\overline{\operatorname*{span}}}\{Z\iota({\mathcal K})\}=A$, since trivially such a $Z$ is contained in $C(A,\iota)$ while on the other hand the isomorphism $\theta_A$ shows that $Z$ cannot be a proper subset of $C(A,\iota)$.
Also, $M(C(A,\iota))$ can be characterized as the set of all elements of $M(A)$ commuting with the image of $\iota$, since this set is the idealizer of the nondegenerate subalgebra $C(A,\iota)$ of $M(A)$ (see [@koqstable Lemma 3.6], alternatively [@fischer Remark 3.1] again).
$C^*$-correspondences {#c-correspondences .unnumbered}
---------------------
We refer to [@enchilada; @Lance] for the basic definitions and facts we will need regarding $C^*$-correspondences (but note that in [@enchilada] correspondences are called *right-Hilbert bimodules*). An $A-B$ correspondence $X$ is *nondegenerate* if $AX=X$, and we always assume that our correspondences are nondegenerate. If $Y$ is a $C-D$ correspondence and $\pi{\colon}A\to M(C)$ and $\rho{\colon}B\to M(D)$ are nondegenerate homomorphisms, a $\pi-\rho$ compatible correspondence homomorphism $\psi{\colon}X\to M(Y)$ is *nondegenerate* if $\operatorname*{\overline{\operatorname*{span}}}\{\psi(X)D\}=Y$. If $\delta$ and $\epsilon$ are coactions of $G$ on $A$ and $B$, respectively, a *coaction* of $G$ on $X$ is a nondegenerate $\delta-\epsilon$ correspondence homomorphism $\zeta{\colon}X\to M(X\otimes C^*(G))$ such that $\operatorname*{\overline{\operatorname*{span}}}\{(1\otimes C^*(G))\zeta(X)\}=X\otimes C^*(G)$ and $(\zeta\otimes{\text{\textup{id}}})\circ\zeta=({\text{\textup{id}}}\otimes\delta_G)\circ\zeta$ (and then $\operatorname*{\overline{\operatorname*{span}}}\{\zeta(X)(1\otimes C^*(G))\}=X\otimes C^*(G)$ automatically holds). If $X$ is an $A-B$ correspondence and $Y$ is a $B-C$ correspondence then for any $C^*$-algebra $D$ there is an isomorphism $$\Theta{\colon}(X\otimes D)\otimes_{B\otimes D} (Y\otimes D){\overset{\simeq}{\longrightarrow}}(X\otimes_B Y)\otimes D$$ of $(A\otimes D)-(C\otimes D)$ correspondences, given by $$\Theta\bigl((x\otimes d)\otimes (y\otimes d')\bigr)=(x\otimes y)\otimes dd'{\quad\text{for }}x\in X,y\in Y,d,d'\in D,$$ and we use this to form *balanced tensor products of coactions* as follows: given a $\delta-\epsilon$ compatible coaction $\zeta$ on $X$ and an $\epsilon-\varphi$ compatible coaction $\eta$ on $Y$, we get a $\delta-\varphi$ compatible coaction $$\zeta{\mathrel{\sharp}}_B \eta:=\Theta\circ (\zeta\otimes_B\eta)$$ on $X\otimes_B Y$.
Nondegenerate categories and functors {#categories}
=====================================
Categories {#categories .unnumbered}
----------
We will recall some categories from [@koqlandstad] and [@koqstable] (and [@enchilada]), and we will introduce a few more. Everything will be based upon the *nondegenerate category ${\mathbf{C}^*}$ of $C^*$-algebras*, where a morphism $\phi{\colon}A\to B$ is a nondegenerate homomorphism $\phi{\colon}A\to M(B)$. By nondegeneracy $\phi$ has a canonical extension ${\overline}\phi{\colon}M(A)\to M(B)$, although frequently we abuse notation by calling the extension $\phi$ also. One notable exception to this abusive convention occurs in [Section ]{}, where we have to pay closer attention to the extensions ${\overline}\phi$.
The *nondegenerate category ${\mathbf{Co}}$ of coactions* has coactions $(A,\delta)$ of $G$ as objects, and a morphism $\phi{\colon}(A,\delta)\to (B,\epsilon)$ in ${\mathbf{Co}}$ is a morphism $\phi{\colon}A\to B$ in ${\mathbf{C}^*}$ that is *$\delta-\epsilon$ equivariant*. We write ${\mathbf{Co}}^m$ for the full subcategory of ${\mathbf{Co}}$ whose objects are the maximal coactions, and ${\mathbf{Co}}^n$ for the full subcategory of normal coactions.
The *nondegenerate category ${\mathbf{Ac}}$ of actions* has actions $(A,\alpha)$ of $G$ as objects, and a morphism $\phi{\colon}(A,\alpha)\to (B,\beta)$ in ${\mathbf{Ac}}$ is a morphism $\phi{\colon}A\to B$ in ${\mathbf{C}^*}$ that is *$\alpha-\beta$ equivariant*.
We denote the coslice category (a special case of a *comma category*) of actions under $(C_0(G),{\textup{rt}})$ by ${{\textup{rt}}/{\mathbf{Ac}}}$, and we denote an object by $(A,\alpha,\mu)$, where $\mu{\colon}(C_0(G),{\textup{rt}})\to (A,\alpha)$ is a morphism in ${\mathbf{Ac}}$. Thus, a morphism $\phi{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ in ${{\textup{rt}}/{\mathbf{Ac}}}$ is a commuting triangle $$\xymatrix{
&(C_0(G),{\textup{rt}}) \ar[dl]_\mu \ar[dr]^\nu
\\
(A,\alpha) \ar[rr]^\phi
&&(B,\beta)
}$$ in ${\mathbf{Ac}}$. We call an object in ${{\textup{rt}}/{\mathbf{Ac}}}$ an *equivariant action* [@koqlandstad Definition 2.8].
We denote the coslice category of $C^*$-algebras under ${\mathcal K}$ by ${{\mathcal K}/{\mathbf{C}^*}}$, and we denote an object by $(A,\iota)$, where $\iota{\colon}{\mathcal K}\to A$ is a morphism in ${\mathbf{C}^*}$. Thus, a morphism $\phi{\colon}(A,\iota)\to (B,\jmath)$ in ${{\mathcal K}/{\mathbf{C}^*}}$ is a commuting triangle $$\xymatrix{
&{\mathcal K}\ar[dl]_{\iota} \ar[dr]^{\jmath}
\\
A \ar[rr]^\phi
&&B
}$$ in ${\mathbf{C}^*}$. We call an object in ${{\mathcal K}/{\mathbf{C}^*}}$ a *${\mathcal K}$-algebra*.
We denote the coslice category of coactions under the trivial coaction $({\mathcal K},{\delta_{\textup{triv}}})$ by ${{\mathcal K}/{\mathbf{Co}}}$, and we denote an object by $(A,\delta,\iota)$, where $\iota{\colon}({\mathcal K},{\delta_{\textup{triv}}})\to (A,\delta)$ is a morphism in ${\mathbf{Co}}$, i.e., $\delta\circ\iota=\iota\otimes 1$. Thus, a morphism $\phi{\colon}(A,\delta,\iota)\to (B,\epsilon,\jmath)$ in ${{\mathcal K}/{\mathbf{Co}}}$ is a commuting triangle $$\xymatrix{
&({\mathcal K},{\delta_{\textup{triv}}}) \ar[dl]_{\iota} \ar[dr]^{\jmath}
\\
(A,\delta) \ar[rr]^\phi
&&(B,\epsilon)
}$$ in ${\mathbf{Co}}$, i.e., $\phi{\colon}(A,\delta)\to (B,\epsilon)$ is a morphism in ${\mathbf{Co}}$ and $\phi{\colon}(A,\iota)\to (B,\jmath)$ is a morphism in ${{\mathcal K}/{\mathbf{C}^*}}$. We call an object in ${{\mathcal K}/{\mathbf{Co}}}$ a *${\mathcal K}$-coaction*.
In [@koqlandstad Subsection 5.1] we used the notations ${{\mathbf{C}^*}{_\mathbf{nd}}}$ for ${\mathbf{C}^*}$ and ${{\mathbf{Ac}}_{\mathbf{nd}}}$ for ${\mathbf{Ac}}$. In [@koqlandstad Subsection 6.1] we wrote ${{\mathbf{Co}}{_\mathbf{nd}}}$ for the full subcategory of the present category ${\mathbf{Co}}$ whose objects are the normal coactions, and ${{{\textup{rt}}\text{-}{{\mathbf{Ac}}}}{_\mathbf{nd}}}$ for ${{\textup{rt}}/{\mathbf{Ac}}}$ (and called it the *nondegenerate equivariant category of actions*). In [@koqstable Definition 4.1] we used the notation ${{\mathcal K}\!\text{ - }\!{{\mathbf{C}^*}{_\mathbf{nd}}}}$ for ${{\mathcal K}/{\mathbf{C}^*}}$.
Functors {#functors .unnumbered}
--------
First, we define a functor $$\operatorname{CPC}{\colon}{\mathbf{Co}}\to {{\textup{rt}}/{\mathbf{Ac}}}$$ on objects by $$\operatorname{CPC}(A,\delta)=(A\rtimes_\delta G,{\widehat}\delta,j_G),$$ and on morphisms as follows: if $\phi\colon (A,\delta)\to (B,\epsilon)$ is a morphism in ${\mathbf{Co}}$ then $$\operatorname{CPC}(\phi){\colon}(A\rtimes_\delta G,{\widehat}\delta,j_G^\delta)\to (B\rtimes_\epsilon G,{\widehat}\epsilon,j_G^\epsilon)$$ is the morphism in ${{\textup{rt}}/{\mathbf{Ac}}}$ given by $\operatorname{CPC}(\phi)=\phi\rtimes G$.
We want to use equivariant actions to generate ${\mathcal K}$-coactions. Given an equivariant action $(A,\alpha,\mu)$, we can form the dual coaction $(A\rtimes_\alpha G,{\widehat}\alpha)$, and we can also form the ${\mathcal K}$-algebra $(A\rtimes_\alpha G,\mu\rtimes G)$. But there is a subtlety: it is easy to see that ${\widehat}\alpha$ is not trivial on the image of $\mu\rtimes G$. We need to perturb the coaction by a cocycle, and we adapt a technique from [@maximal Lemma 3.6]:
\[cocycle\] Let $(A,\alpha,\mu)$ be an equivariant action. Define $$V_A=\bigl((i_A\circ\mu)\otimes{\text{\textup{id}}}\bigr)(w_G)\in M\bigl((A\rtimes_\alpha G)\otimes C^*(G)\bigr).$$ Then $V_A$ is an ${\widehat}\alpha$-cocycle. Denote the perturbed coaction by $${\widetilde}\alpha:=\operatorname{Ad}V_A\circ {\widehat}\alpha.$$ Then $(A\rtimes_\alpha G,{\widetilde}\alpha,\mu\rtimes G)$ is a maximal ${\mathcal K}$-coaction.
We could apply the proof from [@maximal Lemmas 3.6–3.7] to show that $V_A$ is an ${\widehat}\alpha$-cocycle and ${\widetilde}\alpha$ is trivial on the image of $\mu\rtimes G$, because by Landstad duality [@QuiLandstad Theorem 3.3] the equivariant action $(A,\alpha,\mu)$ is isomorphic to one of the form $(B\rtimes_\delta G,{\widehat}\delta,j_G)$ for a coaction $(B,\delta)$. We prefer to use the technology of cocycles more directly, however: $\mu{\colon}(C_0(G),{\textup{rt}})\to (A,\alpha)$ is a morphism in ${\mathbf{Ac}}$, so $$\mu\rtimes G{\colon}({\mathcal K},{\widehat}{\textup{rt}})\to (A\rtimes_\alpha G,{\widehat}\alpha)$$ is a morphism in ${\mathbf{Co}}$, where we recall that we are abbreviating ${\mathcal K}={\mathcal K}(L^2(G))$. The unitary $$(M\otimes{\text{\textup{id}}})(w_G)$$ is a ${\widehat}{\textup{rt}}$-cocycle, so $$\begin{aligned}
\bigl((\mu\rtimes G)\otimes{\text{\textup{id}}}\bigr)\bigl((M\otimes{\text{\textup{id}}})(w_G)\bigr)
&=\bigl((i_A\circ\mu)\otimes{\text{\textup{id}}}\bigr)(w_G)\end{aligned}$$ is an ${\widehat}\alpha$-cocycle.
Further, recall that the perturbed coaction $\operatorname{Ad}(M\otimes{\text{\textup{id}}})(w_G)\circ{\widehat}{\textup{rt}}$ is trivial. Since $\mu\rtimes G{\colon}{\mathcal K}\to M(A\rtimes_\alpha G)$ is ${\widehat}{\textup{rt}}-{\widehat}\alpha$ equivariant, it follows that $\operatorname{Ad}V_A\circ{\widehat}\alpha$ is trivial on the image of $\mu\rtimes G$.
Finally, the dual coaction ${\widehat}\alpha$ is maximal by [@maximal Proposition 3.4], and hence so is the Morita equivalent coaction ${\widetilde}\alpha$ by [@maximal Proposition 3.5].
Next, we define a functor $$\operatorname{CPA}{\colon}{{\textup{rt}}/{\mathbf{Ac}}}\to {{\mathcal K}/{\mathbf{Co}}}$$ on objects by $$\operatorname{CPA}(A,\alpha,\mu)=(A\rtimes_\alpha G,{\widetilde}\alpha,\mu\rtimes G),$$ and on morphisms as follows: if $\phi\colon (A,\alpha,\mu)\to (B,\beta,\nu)$ is a morphism in ${{\textup{rt}}/{\mathbf{Ac}}}$ then $$\operatorname{CPA}(\phi){\colon}(A\rtimes_\alpha G,{\widetilde}\alpha,\mu\rtimes G)\to (B\rtimes_\beta G,{\widetilde}\beta,\nu\rtimes G)$$ is the morphism in ${{\mathcal K}/{\mathbf{Co}}}$ given by $\operatorname{CPA}(\phi)=\phi\rtimes G$.
It follows from [@koqstable Theorem 4.4] (see also [@koqstable Definition 4.5]) that there is a functor from ${{\mathcal K}/{\mathbf{C}^*}}$ to ${\mathbf{C}^*}$ that takes an object $(A,\iota)$ to the $A$-relative commutant $C(A,\iota)$ of ${\mathcal K}$ and a morphism $\phi{\colon}(A,\iota)\to (B,\jmath)$ to $$C(\phi)=\phi|_{C(A,\iota)},$$ and that is moreover a quasi-inverse of the *stabilization functor* given by $A\mapsto A\otimes{\mathcal K}$ and $\phi\mapsto \phi\otimes{\text{\textup{id}}}_{\mathcal K}$.
We need an equivariant version of this functor, and we need to see what to do with coactions. Fischer remarks in [@fischer Remark 3.2] that $\delta$ restricts to a coaction on the relative commutant $C(A,\iota)$. To keep our treatment of the Fischer construction self-contained, we supply a proof (that is similar to, but not quite the same as, the one in [@fischer]):
\[coact commutant\] Let $(A,\delta,\iota)$ be a ${\mathcal K}$-coaction. Then $\delta$ restricts to a coaction $C(\delta)$ on $C(A,\iota)$. Moreover, the canonical isomorphism $$\theta_A{\colon}C(A,\iota)\otimes{\mathcal K}{\overset{\simeq}{\longrightarrow}}A$$ is $(C(\delta)\otimes_*{\text{\textup{id}}})-\delta$ equivariant. Finally, $C(\delta)$ is maximal if and only if $\delta$ is.
For the first part, by [@fullred Lemma 1.6 (b)], it suffices to show that $$\label{nondegenerate}
\operatorname*{\overline{\operatorname*{span}}}\bigl\{\delta\bigl(C(A,\iota)\bigr)\bigl(1\otimes C^*(G)\bigr)\bigr\}=C(A,\iota)\otimes C^*(G).$$ Let $Z$ denote the left-hand side. It suffices to show that
1. $Z$ commutes elementwise with $\iota({\mathcal K})\otimes 1$, and
2. $\operatorname*{\overline{\operatorname*{span}}}\{Z(\iota({\mathcal K})\otimes 1)\}=A\otimes C^*(G)$.
For (i), if $a\in C(A,\iota)$, $x\in C^*(G)$, and $k\in{\mathcal K}$, then $$\begin{aligned}
\delta(a)(1\otimes x)(\iota(k)\otimes 1)
&=\delta(a)(\iota(k)\otimes 1)(1\otimes x)
\\&=\delta(a\iota(k))(1\otimes x)
\\&=\delta(\iota(k)a)(1\otimes x)
\\&=(\iota(k)\otimes 1)\delta(a)(1\otimes x).\end{aligned}$$ For (ii), the above computation implies that $$\begin{aligned}
\operatorname*{\overline{\operatorname*{span}}}\{Z(\iota({\mathcal K})\otimes 1)\}
&=\operatorname*{\overline{\operatorname*{span}}}\bigl\{\delta\bigl(C(A,\iota)\iota({\mathcal K})\bigr)\bigl(1\otimes C^*(G)\bigr)\bigr\}
\\&=\operatorname*{\overline{\operatorname*{span}}}\{\delta(A)(1\otimes C^*(G))\}
\\&=A\otimes C^*(G).\end{aligned}$$
One readily checks the $(C(\delta)\otimes_*{\text{\textup{id}}})-\delta$ equivariance on the generators $a\otimes 1$ and $1\otimes k$ for $a\in C(A,\iota)$ and $k\in{\mathcal K}$. The last statement now follows since the coaction $C(\delta)\otimes_*{\text{\textup{id}}}$ is Morita equivalent to $C(\delta)$.
[Lemma ]{} allows us to define a functor $${\textup{DSt}}{\colon}{{\mathcal K}/{\mathbf{Co}}}\to {\mathbf{Co}}$$ on objects by $${\textup{DSt}}(A,\delta,\iota)=\bigl(C(A,\iota),C(\delta)\bigr),$$ and on morphisms as follows: if $\phi{\colon}(A,\delta,\iota)\to (B,\epsilon,\jmath)$ is a morphism in ${{\mathcal K}/{\mathbf{Co}}}$ then $${\textup{DSt}}(\phi){\colon}\bigl(C(A,\iota),C(\delta)\bigr)\to \bigl(C(B,\jmath),C(\epsilon)\bigr)$$ is the morphism in ${\mathbf{Co}}$ given by ${\textup{DSt}}(\phi)=C(\phi)$, where we note that the morphism $C(\phi){\colon}C(A,\iota)\to C(B,\jmath)$ in ${\mathbf{C}^*}$ is $C(\delta)-C(\epsilon)$ equivariant since $\phi$ is $\delta-\epsilon$ equivariant.
In [@koqstable Definition 4.5] we used the notation ${{\textup{DSt}}{_\mathbf{nd}}}$ for the non-equivariant destabilization functor $(A,\iota)\mapsto C(A,\iota)$, while in the current paper we use ${\textup{DSt}}$ to denote the equivariant destabilization functor, and give no name to the non-equivariant version.
The Fischer construction {#Fischer construction}
========================
In this section we define a particular maximalization functor (see [Definition ]{} below). We will also need to refer to a normalization functor. A small preliminary discussion might help clarify our approach to these two functors. Both maximalization and normalization satisfy universal properties, and this can be used to work with the functors abstractly: for example, once one knows that maximalizations exist, then one can use the categorical axiom of choice to assume that a maximalization has been chosen for every coaction, and then the universal property takes care of the morphisms. However, we will find it useful to have a specific construction of the maximalization of a coaction, for example when working with linking algebras of Hilbert bimodules. For this reason we will define the maximalization functor concretely. Similarly for normalizations, although here the choice is somewhat more immediate: we define the normalization $(A^n,\delta^n)$ of a coaction $(A,\delta)$ by taking $A^n$ as a suitable quotient of $A$. Then the universal property gives a functor $\operatorname{Nor}$ on the nondegenerate category ${\mathbf{Co}}$ of coactions of $G$.
In [@fischer Section 3] Fischer constructs a maximalization of a coaction $(A,\delta)$. Actually, Fischer works in the more general context of coactions by Hopf $C^*$-algebras, which occasionally introduces minor complications (such as the existence of the maximalization). Consequently, the construction simplifies somewhat since we have specialized to coactions of a locally compact group $G$. Here we present Fischer’s construction as a composition of three functors:
\[max def\] We define the *maximalization functor ${\textup{Max}}$* by the commutative diagram $$\xymatrix@C+30pt{
{\mathbf{Co}}\ar[r]^-{\operatorname{CPC}} \ar[d]_{{\textup{Max}}}
&{{\textup{rt}}/{\mathbf{Ac}}}\ar[d]^{\operatorname{CPA}}
\\
{\mathbf{Co}}&{{\mathcal K}/{\mathbf{Co}}}\ar[l]^{{\textup{DSt}}}.
}$$
Thus, given a coaction $(A,\delta)$, we first form the equivariant action $$(A\rtimes_\delta G,{\widehat}\delta,j_G),$$ then the ${\mathcal K}$-coaction $$(A\rtimes_\delta G\rtimes_{{\widehat}\delta} G,{\widetilde}{{\widehat}\delta},j_G\rtimes G),$$ where ${\widetilde}{{\widehat}\delta}$ is the perturbation of the double-dual coaction ${\widehat}{{\widehat}\delta}$ from [Lemma ]{}, and finally the maximal coaction $$\begin{aligned}
{\textup{Max}}(A,\delta)
&={\textup{DSt}}\bigl((A\rtimes_\delta G\rtimes_{{\widehat}\delta} G,{\widetilde}{{\widehat}\delta},j_G\rtimes G\bigr)
\\&=\bigl(C(A\rtimes_\delta G\rtimes_{{\widehat}\delta} G,j_G\rtimes G),C({\widetilde}{{\widehat}\delta})\bigr).\end{aligned}$$ We simplify some of the notation: first, write $${\widetilde}\delta={\widetilde}{{\widehat}\delta}.$$ Thus the second stage in the above process gives the ${\mathcal K}$-coaction $$(A\rtimes_\delta G\rtimes_{{\widehat}\delta} G,{\widetilde}\delta,j_G\rtimes G)$$ and the maximalization is $${\textup{Max}}(A,\delta)=\bigl(C(A\rtimes_\delta G\rtimes_{{\widehat}\delta} G,j_G\rtimes G),C({\widetilde}\delta)\bigr).$$ We will actually use the more customary notation: $$\begin{aligned}
A^m&=C(A\rtimes_\delta G\rtimes_{{\widehat}\delta} G,j_G\rtimes G)
\\
\delta^m&=C({\widetilde}\delta),\end{aligned}$$ where the superscript $m$ is intended to remind us of “maximalization”.
We need a couple of results from [@fischer], which we recall here. The first is [@fischer Theorem 6.4]:
With the above notation, $(A^m,\delta^m)$ is a maximalization of $(A,\delta)$.
We outline Fischer’s argument here: the commutative diagram $$\xymatrix{
(A\rtimes_\delta G\rtimes_{{\widehat}\delta} G,{\widehat}{{\widehat}\delta}) \ar[r]^-\Phi
&(A\otimes{\mathcal K},\delta\otimes_* W)
\\
(A^m\otimes{\mathcal K},\delta^m\otimes_* W), \ar[u]^{\theta_{A\rtimes_\delta G\rtimes_{{\widehat}\delta} G}}_\simeq \ar@{-->}[ur]_{\psi_A\otimes{\text{\textup{id}}}}
}$$ uniquely defines a surjective equivariant homomorphism as the north-east arrow, which must be of the form $\psi_A\otimes{\text{\textup{id}}}$ for a unique surjection $\psi_A$ since the vertical and horizontal homomorphisms are morphisms of ${\mathcal K}$-algebras. We refer to [Section ]{} for the notations $\Phi$ and $W$, as well as $\Gamma$ (see the following diagram), etc.
The crossed product of this diagram fits into a commutative diagram $$\xymatrix@C+30pt{
A\rtimes_\delta G\rtimes_{{\widehat}\delta} G\rtimes_{{\widehat}{{\widehat}\delta}} G
\ar[r]^-{\Phi\rtimes G}_-\simeq
&(A\otimes{\mathcal K})\rtimes_{\delta\otimes_* W} G \ar[dd]^{\Gamma_A}_\simeq
\\
(A^m\otimes{\mathcal K})\rtimes_{\delta^m\otimes_*W} G
\ar[d]_{\Gamma_{A^m}}^\simeq
\ar[u]^{\theta_{A\rtimes_\delta G\rtimes_{{\widehat}\delta} G}\rtimes G}_\simeq \ar[ur]_{(\psi_A\otimes{\text{\textup{id}}})\rtimes G}
\\
(A^m\rtimes_{\delta^m} G)\otimes{\mathcal K}\ar[r]_-{(\psi_A\rtimes G)\otimes{\text{\textup{id}}}}
&(A\rtimes_\delta G)\otimes{\mathcal K}.
}$$ The vertical maps and the top horizontal map are isomorphisms, and it follows that the bottom map $(\psi_A\rtimes G)\otimes{\text{\textup{id}}}$ is also an isomorphism, and hence so is $\psi_A\rtimes G$ (because ${\mathcal K}$ is nuclear, or alternatively by applying the destabilization functor). Therefore the map $\psi_A{\colon}(A^m,\delta^m)\to (A,\delta)$ is a maximalization.
The second of Fischer’s results that we need is the *universal property* of maximalizations [@fischer Lemma 6.2]:
If $\psi_A{\colon}(A^m,\delta^m)\to (A,\delta)$ is any $abstract$ maximalization, i.e., $\delta^m$ is maximal, $\psi_A$ is surjective, and $\psi_A\rtimes G$ is an isomorphism, then given a morphism $\phi{\colon}(B,\epsilon)\to (A,\delta)$ in ${\mathbf{Co}}$, where $\epsilon$ is maximal, there is a unique morphism $\phi'$ giving a commutative completion of the diagram $$\xymatrix{
(B,\epsilon) \ar@{-->}[r]^-{\phi'} \ar[dr]_\phi
&(A^m,\delta^m) \ar[d]^{\psi_A}
\\
&(A,\delta).
}$$
Fischer’s argument argument consists of carefully considering the commutative diagram $$\xymatrix@C+20pt{
B\rtimes_\epsilon G\rtimes_{{\widehat}\epsilon} G \ar[r]^-{\phi\rtimes G\rtimes G}
\ar[d]_{\Phi_B}^\simeq
&A\rtimes_\delta G\rtimes_{{\widehat}\delta} G \ar[d]^{\Phi_A}
&A^m\rtimes_{\delta^m} G\rtimes_{{\widehat}{\delta^m}} G
\ar[l]_-{\psi_A\rtimes G\rtimes G}^-\simeq \ar[d]^{\Phi_{A^m}}_\simeq
\\
B\otimes{\mathcal K}\ar[r]_-{\phi\otimes{\text{\textup{id}}}}
\ar@{-->}@/_2pc/[rr]_{\Phi_{A^m}\circ (\psi_A\rtimes G\rtimes G){^{-1}}\circ (\phi\rtimes G\rtimes G)\circ \Phi_B{^{-1}}}
&A\otimes{\mathcal K}&A^m\otimes{\mathcal K}\ar[l]^-{\psi_A\otimes{\text{\textup{id}}}}
}$$ which we have altered slightly so that it may be viewed as a diagram in the category ${\mathbf{C}^*}$. Actually, all the maps are equivariant, so it can also be regarded as a diagram in ${\mathbf{Co}}$. Then because all the maps are morphisms of ${\mathcal K}$-algebras we get a unique morphism $\phi'$ as required. The universal property in turn shows that maximalizations are unique up to isomorphism. In particular, any maximalization $\phi{\colon}(A,\delta)\to (B,\epsilon)$, where $\epsilon$ is itself maximal, must be an isomorphism.
As we discussed at the beginning of this section, now that we have chosen a maximalization of each coaction $(A,\delta)$, the universal property tells what to do to morphisms, giving us not only a maximalization functor ${\textup{Max}}$, but also telling us that the surjections $\psi_A$ give a natural transformation from ${\textup{Max}}$ to the identity functor, i.e., if $\phi{\colon}(A,\delta)\to (B,\epsilon)$ is a morphism of coactions, then the diagram $$\xymatrix@C+20pt{
(A^m,\delta^m) \ar@{-->}[r]^-{\phi^m}_-{!} \ar[d]_{\psi_A}
&(B^m,\epsilon^m) \ar[d]^{\psi_B}
\\
(A,\delta) \ar[r]_-\phi
&(B,\epsilon)
}$$ has a unique completion $\phi^m$.
Nondegenerate Landstad duality {#nondegenerate duality}
==============================
In this section we state the (known) categorical Landstad duality for maximal coactions, in a form suitable for comparison with the later version for the enchilada categories (see [Section ]{}).
First we must cobble together a couple of functors from [Section ]{} to produce a new functor:
\[fix functor\] We define a functor ${\textup{Fix}}$ by the commutative diagram $$\xymatrix{
{{\textup{rt}}/{\mathbf{Ac}}}\ar[r]^-{\operatorname{CPA}} \ar[dr]_{{\textup{Fix}}}
&{{\mathcal K}/{\mathbf{Co}}}\ar[d]^{{\textup{DSt}}}
\\
&{\mathbf{Co}}.
}$$
Thus, given an equivariant action $(A,\alpha,\mu)$, we first form the ${\mathcal K}$-coaction $$(A\rtimes_\alpha G,{\widetilde}\alpha,\mu\rtimes G),$$ where ${\widetilde}\alpha$ is the perturbation of the dual action ${\widehat}\alpha$ from [Lemma ]{}, then the coaction $$\bigl(C(A\rtimes_\alpha G,\mu\rtimes G),C({\widetilde}\alpha)\bigr),$$ which is maximal by [Lemma ]{}, since ${\widetilde}\alpha$ is Morita equivalent to the dual coaction ${\widehat}\alpha$, on the relative commutant. We write $$\begin{aligned}
{\textup{Fix}}(A,\alpha,\mu)&=C(A\rtimes_\alpha G,\mu\rtimes G)
\\
\delta^\mu&=C({\widetilde}\alpha),\end{aligned}$$ so that the functor ${\textup{Fix}}$ takes an object $(A,\alpha,\mu)$ to $({\textup{Fix}}(A,\alpha,\mu),\delta^\mu)$. ${\textup{Fix}}$ is given on morphisms by $${\textup{Fix}}(\phi)=C(\phi\rtimes G).$$ It is important to keep in mind that the $C^*$-algebra ${\textup{Fix}}(A,\alpha,\mu)$ lies in the multiplier algebra of the crossed product $A\rtimes_\alpha G$, and that $\delta^\mu$ is a maximal coaction on this algebra (because $C({\widetilde}\alpha)$ is maximal, as we mentioned above), We will soon motivate the choice of the word “Fix”.
\[cpc thm\] Let $\operatorname{CPC}{\colon}{\mathbf{Co}}\to{{\textup{rt}}/{\mathbf{Ac}}}$ be the functor with object map $(A,\delta)\to (A\rtimes_\delta G,{\widehat}\delta,j_G)$ defined in [Section ]{}, and let ${\operatorname{CPC}^m}{\colon}{\mathbf{Co}}^m\to{{\textup{rt}}/{\mathbf{Ac}}}$ be the restriction to the subcategory of maximal coactions. Then ${\operatorname{CPC}^m}$ is a category equivalence, with quasi-inverse ${\textup{Fix}}$.
We will show that both compositions ${\textup{Fix}}\,\circ{\operatorname{CPC}^m}$ and ${\operatorname{CPC}^m}\circ\,{\textup{Fix}}$ are naturally isomorphic to the identity functors ${\text{\textup{id}}}_{{\mathbf{Co}}^m}$ and ${\text{\textup{id}}}_{{{\textup{rt}}/{\mathbf{Ac}}}}$, respectively. Since ${\textup{Fix}}\circ\operatorname{CPC}$ is Fischer’s construction of the maximalization functor ${\textup{Max}}$, and since the surjections $\psi$ give a natural transformation from ${\textup{Max}}$ to ${\text{\textup{id}}}_{{\mathbf{Co}}^m}$, and finally since $\psi_A$ is an isomorphism whenever $(A,\delta)$ is maximal, we see that ${\textup{Fix}}\circ{\operatorname{CPC}^m}\simeq{\text{\textup{id}}}_{{\mathbf{Co}}^m}$.
The other natural isomorphism can be cobbled together from results in the literature; here we give one such cobbling. We introduce some auxiliary functors:
- $\operatorname{CPC}^n{\colon}{\mathbf{Co}}^n\to {{\textup{rt}}/{\mathbf{Ac}}}$ is the restriction of $\operatorname{CPC}$ to the normal coactions;
- ${\textup{Fix}}^n{\colon}{{\textup{rt}}/{\mathbf{Ac}}}\to {\mathbf{Co}}^n$ is the quasi-inverse of $\operatorname{CPC}^n$ defined in [@koqlandstad Section 6.1];
- ${\textup{Max}}^n{\colon}{\mathbf{Co}}^n\to {\mathbf{Co}}^m$ is the restriction of ${\textup{Max}}$ to the normal coactions;
- $\operatorname{Nor}^m{\colon}{\mathbf{Co}}^m\to {\mathbf{Co}}^n$ is the restriction of $\operatorname{Nor}$ to the maximal coactions.
Consider the following diagram of functors: $$\xymatrix@C+30pt@R+20pt{
{\mathbf{Co}}^m \ar@/^/[r]^-{\operatorname{CPC}^m} \ar@/_/[d]_{\operatorname{Nor}^m}
&{{\textup{rt}}/{\mathbf{Ac}}}\ar@{=}[d] \ar@/^/[l]^-{{\textup{Fix}}}
\\
{\mathbf{Co}}^n \ar@/_/[u]_{{\textup{Max}}^n} \ar@/^/[r]^-{\operatorname{CPC}^n}
&{{\textup{rt}}/{\mathbf{Ac}}}. \ar@/^/[l]^-{{\textup{Fix}}^n}
}$$ We know from [@clda Theorem 3.3] that $\operatorname{Nor}^m$ and ${\textup{Max}}^n$ are quasi-inverses, and from [@clda Theorems 4.1 and 5.1 and their proofs] that $\operatorname{CPC}^n$ and ${\textup{Fix}}^n$ are quasi-inverses. We have shown above that ${\textup{Fix}}\circ \operatorname{CPC}^m\simeq {\text{\textup{id}}}_{{\mathbf{Co}}^m}$, and we have ${\textup{Max}}^n={\textup{Fix}}\circ \operatorname{CPC}^n$ by Definitions \[max def\] and \[fix functor\]. Thus ${\textup{Fix}}\simeq {\textup{Max}}^n\circ{\textup{Fix}}^n$ since $\operatorname{CPC}^n\circ{\textup{Fix}}^n\simeq {\text{\textup{id}}}_{{{\textup{rt}}/{\mathbf{Ac}}}}$. The desired natural isomorphism $\operatorname{CPC}^m\circ\,{\textup{Fix}}\simeq {\text{\textup{id}}}_{{{\textup{rt}}/{\mathbf{Ac}}}}$ now follows by routine computations with the functors: since ${\textup{Fix}}\circ \operatorname{CPC}^n={\textup{Max}}^n$, we have $$\begin{aligned}
\operatorname{CPC}^n\circ\operatorname{Nor}^m\circ\,{\textup{Fix}}&\simeq \operatorname{CPC}^n\circ\operatorname{Nor}^m\circ{\textup{Max}}^n\circ{\textup{Fix}}^n
\\&\simeq \operatorname{CPC}^n\circ\,{\textup{Fix}}^n
\\&\simeq {\text{\textup{id}}}_{{{\textup{rt}}/{\mathbf{Ac}}}},\end{aligned}$$ and so $$\begin{aligned}
\operatorname{CPC}^m\circ\,{\textup{Fix}}&\simeq \operatorname{CPC}^n\circ\operatorname{Nor}^m\circ\,{\textup{Fix}}\circ\operatorname{CPC}^m\circ\,{\textup{Fix}}\\&\simeq \operatorname{CPC}^n\circ\operatorname{Nor}^m\circ\,{\textup{Fix}}\\&\simeq {\text{\textup{id}}}_{{{\textup{rt}}/{\mathbf{Ac}}}}.
\qedhere\end{aligned}$$
Motivated by [Theorem ]{}, we call ${\textup{Fix}}(A,\alpha,\mu)$ the *maximal generalized fixed-point algebra* of the equivariant action $(A,\alpha,\mu)$.
In [@koqlandstad], we used slightly different notation for some of the auxiliary functors of the above proof, namely ${{{\widetilde}{{\textup{CP}}}}{_\mathbf{nd}}}$ for $\operatorname{CPC}^n$, and ${{\textup{Fix}}{_\mathbf{nd}}}$ for ${\textup{Fix}}^n$. Note that although the functor ${\textup{Fix}}$ of [Definition ]{} gives generalized fixed-point algebras for equivariant nondegenerate categories, it is not the same as the functor ${{\textup{Fix}}{_\mathbf{nd}}}$ defined in [@koqlandstad Subsection 6.1] — the latter produces normal coactions, while ${\textup{Fix}}$ produces maximal ones.
Part of [Theorem ]{}, namely that $\operatorname{CPC}^m{\colon}{\mathbf{Co}}^m\to {{\textup{rt}}/{\mathbf{Ac}}}$ is an equivalence, has been recorded in the literature several times. The reason we had to do some work was that the specific quasi-inverse ${\textup{Fix}}$ has not been so well studied (in fact we could not find a reference where it is used in this particular way). Thus, for example, it would not be enough to simply refer to [@cldx Corollary 4.3], since the particular quasi-inverse ${\textup{Fix}}$ we use here does not appear there.
In the proof of [Theorem ]{} we observed that ${\textup{Fix}}\simeq{\textup{Max}}^n\circ{\textup{Fix}}^n$. Armed with the result of [Theorem ]{} itself we also see that ${\textup{Fix}}^n\simeq \operatorname{Nor}^m\circ{\textup{Fix}}$. It follows that the *normal generalized fixed-point algebra* ${\textup{Fix}}^n(A,\alpha,\mu)$ of an equivariant action, which in [@koqlandstad] we regarded as a subalgebra of $M(A)$, can alternatively be regarded as a nondegenerate subalgebra of $M(A\rtimes_{\alpha,r} G)$, similarly to how we regard the maximal generalized fixed-point algebra ${\textup{Fix}}(A,\alpha,\mu)$ as a subalgebra of $M(A\rtimes_\alpha G)$. This is consistent with the well-known fact that the dual coaction on the reduced crossed product $A\rtimes_{\alpha,r} G$ is a normalization of the (maximal) dual coaction on the full crossed product $A\rtimes_\alpha G$.
Reasoning quite similar to that in the proof of [@koqlandstad Proposition 5.1] shows that the category equivalence recorded in [Theorem ]{} gives a *good inversion*, in the sense of [@koqlandstad Definition 4.1], of the crossed-product functor ${\mathbf{Co}}^m\to{\mathbf{C}^*}$ defined on objects by $$(A,\delta)\mapsto A\rtimes_\delta G.$$
\[cpa equiv\] The functor $\operatorname{CPA}{\colon}{{\textup{rt}}/{\mathbf{Ac}}}\to {{\mathcal K}/{\mathbf{Co}}}^m$ is a category equivalence.
By [Theorem ]{} we have an equivalence ${\textup{Fix}}={\textup{DSt}}\circ \operatorname{CPA}$. By [@koqstable Theorem 4.4], ${\textup{DSt}}$ is an equivalence when regarded as a functor between the categories ${{\mathcal K}/{\mathbf{C}^*}}$ and ${\mathbf{C}^*}$, and the stabilization functor ${\mathbf{C}^*}\to {{\mathcal K}/{\mathbf{C}^*}}$, given on objects by $A\mapsto A\otimes{\mathcal K}$, is a quasi-inverse. Since a morphism in either category is an isomorphism if and only if it is an isomorphism between the $C^*$-algebras, it follows that the destabilization functor ${\textup{DSt}}{\colon}{{\mathcal K}/{\mathbf{Co}}}\to {\mathbf{Co}}$ is also an equivalence, with quasi-inverse given on objects by $(A,\delta)\mapsto (A\otimes{\mathcal K},\delta\otimes_*{\text{\textup{id}}})$. By [Lemma ]{}, $\delta$ is maximal if and only if $C(\delta)$ is. Thus ${\textup{DSt}}$ restricts to an equivalence between ${{\mathcal K}/{\mathbf{Co}}}^m$ and ${\mathbf{Co}}^m$. Therefore $\operatorname{CPA}{\colon}{{\textup{rt}}/{\mathbf{Ac}}}\to {{\mathcal K}/{\mathbf{Co}}}^m$ is also an equivalence.
Enchilada categories and functors {#enchilada categories}
=================================
Categories {#categories-1 .unnumbered}
----------
We again recall some categories from [@koqlandstad] and [@koqstable] (and [@enchilada]), and introduce a few more. Everything will be based upon the *enchilada category ${{\mathbf{C}^*}{_\mathbf{en}}}$ of $C^*$-algebras*, where a morphism $[X]{\colon}A\to B$ is the isomorphism class of a nondegenerate $A-B$ correspondence $X$.
The *enchilada category ${{\mathbf{Co}}{_\mathbf{en}}}$ of coactions* has the same objects as ${\mathbf{Co}}$, and a morphism $[X,\zeta]{\colon}(A,\delta)\to (B,\epsilon)$ in ${{\mathbf{Co}}{_\mathbf{en}}}$ is the isomorphism class of a nondegenerate $A-B$ correspondence $X$ equipped with a $\delta-\epsilon$ compatible coaction $\zeta$. Composition of morphisms is given by $$[Y,\eta]\circ [X,\zeta]=[X\otimes_B Y,\zeta{\mathrel{\sharp}}_B\eta].$$ ${{\mathbf{Co}}{_\mathbf{en}}}^m$ denotes the full subcategory of ${{\mathbf{Co}}{_\mathbf{en}}}$ whose objects are the maximal coactions.
The *enchilada category ${{\mathbf{Ac}}_{\mathbf{en}}}$ of actions* has the same objects as ${\mathbf{Ac}}$, and a morphism $[X,\gamma]{\colon}(A,\alpha)\to (B,\beta)$ in ${{\mathbf{Ac}}_{\mathbf{en}}}$ is the isomorphism class of a nondegenerate $A-B$ correspondence $X$ equipped with an $\alpha-\beta$ compatible action $\gamma$.
The *enchilada category ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ of equivariant actions* has the same objects as ${{\textup{rt}}/{\mathbf{Ac}}}$, and a morphism $[X,\gamma]{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ is a morphism $[X,\gamma]{\colon}(A,\alpha)\to (B,\beta)$ in ${{\mathbf{Ac}}_{\mathbf{en}}}$ (with no assumptions relating $(X,\gamma)$ to $\mu$ or $\nu$).
${{\mathbf{C}^*}{_\mathbf{en}}}$, ${{\mathbf{Ac}}_{\mathbf{en}}}$, and ${{\mathbf{Co}}{_\mathbf{en}}}$ had their origins in [@enchilada Theorems 2.2, 2.8, and 2.15, respectively]. In [@koqlandstad Subsection 6.2] we used the notation ${{{\textup{rt}}\text{-}{{\mathbf{Ac}}}}{_\mathbf{en}}}$ for ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$.
The *enchilada category ${{{\mathcal K}/{\mathbf{C}^*}}{_\mathbf{en}}}$ of ${\mathcal K}$-algebras* has the same objects as ${{\mathcal K}/{\mathbf{C}^*}}$, and a morphism $[X]{\colon}(A,\iota)\to (B,\jmath)$ in ${{{\mathcal K}/{\mathbf{C}^*}}{_\mathbf{en}}}$ is a morphism $[X]{\colon}A\to B$ in ${{\mathbf{C}^*}{_\mathbf{en}}}$. In [@koqstable Definition 6.1] we used the notation ${{\mathcal K}\!\text{ - }\!{{\mathbf{C}^*}{_\mathbf{en}}}}$ for ${{{\mathcal K}/{\mathbf{C}^*}}{_\mathbf{en}}}$.
The *enchilada category ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$ of ${\mathcal K}$-coactions* has the same objects as ${{\mathcal K}/{\mathbf{Co}}}$, and when we say $[X,\zeta]{\colon}(A,\delta,\iota)\to (B,\epsilon,\jmath)$ is a morphism in ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$ we mean that $[X,\zeta]{\colon}(A,\delta)\to (B,\epsilon)$ is a morphism in ${{\mathbf{Co}}{_\mathbf{en}}}$. Note that this implies in particular that $[X]{\colon}A\to B$ is a morphism in ${{\mathbf{C}^*}{_\mathbf{en}}}$, and hence $[X]{\colon}(A,\iota)\to (B,\jmath)$ is a morphism in ${{{\mathcal K}/{\mathbf{C}^*}}{_\mathbf{en}}}$. It is routine to check that this is a category.
Note that the above notations ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$, ${{{\mathcal K}/{\mathbf{C}^*}}{_\mathbf{en}}}$, and ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$ are potentially misleading: they are not coslice categories. The notation was chosen to indicate some parallel with the nondegenerate versions ${{\textup{rt}}/{\mathbf{Ac}}}$, ${{\mathcal K}/{\mathbf{C}^*}}$, and ${{\mathcal K}/{\mathbf{Co}}}$. In fact, ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ is a *semi-comma category* in the sense of [@hkrwnatural].
Functors {#functors-1 .unnumbered}
--------
We define a functor $$\operatorname{\operatorname{CPC}{_\mathbf{en}}}{\colon}{{\mathbf{Co}}{_\mathbf{en}}}\to{{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$$ to be the same as $\operatorname{CPC}$ on objects, and on morphisms as follows: if $[X,\zeta]{\colon}(A,\delta)\to (B,\epsilon)$ is a morphism in ${{\mathbf{Co}}{_\mathbf{en}}}$ then $$\operatorname{\operatorname{CPC}{_\mathbf{en}}}[X,\zeta]{\colon}(A\rtimes_\delta G,{\widehat}\delta,j_G^\delta)\to
(B\rtimes_\epsilon G,{\widehat}\epsilon,j_G^\epsilon)$$ is the morphism in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ given by $\operatorname{\operatorname{CPC}{_\mathbf{en}}}[X,\zeta]=[X\rtimes_\zeta G,{\widehat}\zeta]$.
In order to define a suitable functor ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}\to {{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$, we first need to see how to manipulate the coactions:
\[gamma tilda\] Let $[X,\gamma]{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ be a morphism in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$. Then there is an ${\widetilde}\alpha-{\widetilde}\beta$ compatible coaction ${\widetilde}\gamma$ on the $(A\rtimes_\alpha G)-(B\rtimes_\beta G)$ correspondence $X\rtimes_\gamma G$ given by $${\widetilde}\gamma(y)=V_A{\widehat}\gamma(y)V_B^*{\quad\text{for }}y\in X\rtimes_\gamma G,$$ where $V_A=((i_A\circ\mu)\otimes{\text{\textup{id}}})(w_G)$ is the ${\widehat}\alpha$-cocycle from [Lemma ]{}, and similarly for $V_B$.
Let $K={\mathcal K}(X)$ be the algebra of compact operators on the Hilbert $B$-module $X$, with left-$A$-module homomorphism $\varphi_A{\colon}A\to M(K)$, and let $L=L(X)={\left(\begin{smallmatrix} K&X\\{*}&B\end{smallmatrix}\right)}$ be the linking algebra. Let $\sigma$ and $\tau={\left(\begin{smallmatrix} \sigma&\gamma\\{*}&\beta\end{smallmatrix}\right)}$ be the associated actions of $G$ on $K$ and $L$, respectively. Then $\kappa:=\varphi_A\circ\mu{\colon}C_0(G)\to M(K)$ and $\omega:={\left(\begin{smallmatrix} \kappa&0\\0&\nu\end{smallmatrix}\right)}{\colon}C_0(G)\to M(L)$ are equivariant. The crossed product decomposes as $$L\rtimes_\tau G={\begin{pmatrix} K\rtimes_\sigma G&X\rtimes_\gamma G\\{*}&B\rtimes_\beta G \end{pmatrix}},$$ the dual coaction as $${\widehat}\tau={\begin{pmatrix} {\widehat}\sigma&{\widehat}\gamma\\{*}&{\widehat}\beta \end{pmatrix}},$$ and the ${\widehat}\tau$-cocycle as $$V_L={\begin{pmatrix} V_K&0\\0&V_B \end{pmatrix}}.$$ Thus the perturbed dual coaction decomposes as $$\begin{aligned}
{\widetilde}\tau
&=\operatorname{Ad}V_L\circ{\widehat}\tau
\\&={\begin{pmatrix} V_K&0\\0&V_B \end{pmatrix}}{\begin{pmatrix} {\widehat}\sigma&{\widehat}\gamma\\{*}&{\widehat}\beta \end{pmatrix}}{\begin{pmatrix} V_K^*&0\\0&V_B^* \end{pmatrix}}
\\&={\begin{pmatrix} \operatorname{Ad}V_K\circ{\widehat}\sigma&V_K{\widehat}\gamma V_B^*\\{*}&\operatorname{Ad}V_B\circ{\widehat}\beta \end{pmatrix}},\end{aligned}$$ and since it preserves the corner projections it compresses on the upper-right corner to a coaction on the Hilbert $(K\rtimes_\sigma G)-(B\rtimes_\beta G)$ bimodule $X\rtimes_\gamma G$, given by $$y\mapsto V_K{\widehat}\gamma(y)V_B^*{\quad\text{for }}y\in X\rtimes_\gamma G.$$ Using the canonical isomorphism ${\mathcal K}(X)\rtimes_\sigma G\simeq {\mathcal K}(X\rtimes_\gamma G)$, one readily checks that for all $y\in X\rtimes_\gamma G$ we have $$V_K{\widehat}\gamma(y)
=\bigl((\varphi_A\rtimes G)\otimes{\text{\textup{id}}}\bigr)(V_A){\widehat}\gamma(y)
=V_A{\widehat}\gamma(y).$$
Finally, we check that ${\widetilde}\gamma$ is compatible with the left $(A\rtimes_\alpha G)$-module structure: for $d\in A\rtimes_\alpha G$ and $y\in X\rtimes_\gamma G$, since the Hilbert-module homomorphism $${\widetilde}\gamma{\colon}X\rtimes_\gamma G\to M\bigl((X\rtimes_\gamma G)\otimes C^*(G)\bigr)$$ is nondegenerate and the homomorphism $$\varphi_A\rtimes G{\colon}A\rtimes_\alpha G\to M(K\rtimes_\sigma G)$$ is ${\widetilde}\delta-{\widetilde}\sigma$ equivariant, we have $$\begin{aligned}
{\widetilde}\gamma(dy)
&={\widetilde}\gamma\bigl((\varphi_A\rtimes G)(d)y\bigr)
\\&={\widetilde}\sigma\circ(\varphi_A\rtimes G)(d){\widetilde}\gamma(y)
\\&=\bigl((\varphi_A\rtimes G)\otimes{\text{\textup{id}}}\bigr)\circ{\widetilde}\delta(d){\widetilde}\gamma(y)
\\&={\widetilde}\delta(d){\widetilde}\gamma(y)
\qedhere\end{aligned}$$
\[cpaen\] There is a functor $$\operatorname{\operatorname{CPA}{_\mathbf{en}}}{\colon}{{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}\to {{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$$ with the same object map as $\operatorname{CPA}$, and given on morphisms as follows: if $[X,\gamma]{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ is a morphism in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ then $$\operatorname{\operatorname{CPA}{_\mathbf{en}}}[X,\gamma]{\colon}(A\rtimes_\alpha G,{\widetilde}\alpha,\mu\rtimes G)\to (B\rtimes_\beta G,{\widetilde}\beta,\nu\rtimes G)$$ is the morphism in ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$ given by $\operatorname{\operatorname{CPA}{_\mathbf{en}}}[X,\gamma]=[X\rtimes_\gamma G,{\widetilde}\gamma]$, where ${\widetilde}\gamma$ is the ${\widetilde}\alpha-{\widetilde}\beta$ compatible coaction on $X\rtimes_\gamma G$ defined in [Lemma ]{}.
We start with the crossed-product functor from ${{\mathbf{Ac}}_{\mathbf{en}}}$ to ${{\mathbf{Co}}{_\mathbf{en}}}$ that is given on objects by $$(A,\alpha)\mapsto (A\rtimes_\alpha G,{\widehat}\alpha),$$ and that takes a morphism $[X,\gamma]{\colon}(A,\alpha)\to (B,\beta)$ in ${{\mathbf{Ac}}_{\mathbf{en}}}$ to the morphism $$[X\rtimes_\gamma G,{\widehat}\gamma]{\colon}(A\rtimes_\alpha G,{\widehat}\alpha)\to (B\rtimes_\beta G,{\widehat}\beta)$$ in ${{\mathbf{Co}}{_\mathbf{en}}}$. Now, to say $[X,\gamma]{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ is a morphism in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ just means that $[X,\gamma]{\colon}(A,\alpha)\to (B,\beta)$ is a morphism in ${{\mathbf{Ac}}_{\mathbf{en}}}$, and then $[X\rtimes_\gamma G,{\widehat}\gamma]{\colon}(A\rtimes_\alpha G,{\widehat}\alpha,\mu\rtimes G)\to
(B\rtimes_\beta G,{\widehat}\beta,\nu\rtimes G)$ is a morphism in ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$ because $[X\rtimes_\gamma G,{\widehat}\gamma]{\colon}(A\rtimes_\alpha G,{\widehat}\alpha)\to (B\rtimes_\beta G,{\widehat}\beta)$ is a morphism in ${{\mathbf{Co}}{_\mathbf{en}}}$. Since $[X,\gamma]\mapsto [X\rtimes_\gamma G,{\widehat}\gamma]$ is functorial from ${{\mathbf{Ac}}_{\mathbf{en}}}$ to ${{\mathbf{Co}}{_\mathbf{en}}}$, it is also functorial from ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ to ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$, because composition of morphisms in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ and ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$ is the same as in ${{\mathbf{Ac}}_{\mathbf{en}}}$ and ${{\mathbf{Co}}{_\mathbf{en}}}$, respectively.
Now, we actually need to use the perturbed coaction ${\widetilde}\alpha$ instead of the dual coaction ${\widehat}\alpha$. From [Lemma ]{} it follows that if $[X,\gamma]{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ is a morphism in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ then $[X\rtimes_\gamma G,{\widetilde}\gamma]{\colon}(A\rtimes_\alpha G,{\widetilde}\alpha,\mu\rtimes G)\to
(B\rtimes_\beta G,{\widetilde}\beta,\nu\rtimes G)$ is a morphism in ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$. The assignments $$[X,\gamma]\mapsto [X\rtimes_\gamma G,{\widetilde}\gamma]$$ are functorial for the correspondences $X\rtimes_\gamma G$, and we must show that they are functorial for the coactions ${\widetilde}\gamma$. Given another morphism $[Y,\tau]{\colon}(B,\beta,\nu)\to (C,\sigma,\omega)$ in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$, by [@taco Proposition 3.8 and its proof] there is an isomorphism $$\Upsilon{\colon}(X\rtimes_\gamma G)\otimes (Y\rtimes_\tau G){\overset{\simeq}{\longrightarrow}}(X\otimes_B Y)\rtimes_{\gamma\otimes\tau} G$$ of $(A\rtimes_\alpha G)-(C\rtimes_\sigma G)$ correspondences, that takes an elementary tensor $x\otimes y$ for $x\in C_c(G,X)$ and $y\in C_c(G,Y)$ to the function $\Upsilon(x\otimes y)\in C_c(G,X\otimes_B Y)$ given by $$\Upsilon(x\otimes y)(s)=\int_G x(t)\otimes \tau_t\bigl(y(t{^{-1}}s)\bigr)\,dt.$$ Computations similar to those in the proof of [@enchilada Theorem 3.7] (which used reduced crossed products) show that $\Upsilon$ is $({\widehat}\gamma{\mathrel{\sharp}}_{B\rtimes_\beta G} {\widehat}\tau)-{\widehat}{\gamma\otimes_B \tau}$ equivariant. For the $({\widetilde}\gamma{\mathrel{\sharp}}_{B\rtimes_\beta G} {\widetilde}\tau)-{\widetilde}{\gamma\otimes_B \tau}$ equivariance, we compute, for $x\in X\rtimes_\gamma G$ and $y\in Y\rtimes_\tau G$, $$\begin{aligned}
{\widetilde}{\gamma\otimes_B \tau}\circ \Upsilon(x\otimes y)
&=V_A{\widehat}{\gamma\otimes_B \tau}\bigl(\Upsilon(x\otimes y)\bigr)V_C^*
\\&=V_A(\Upsilon\otimes{\text{\textup{id}}})\circ ({\widehat}\gamma{\mathrel{\sharp}}_{B\rtimes_\beta G} {\widehat}\tau)(x\otimes y)V_C^*
\\&\overset{(1)}{=}(\Upsilon\otimes{\text{\textup{id}}})\bigl(V_A({\widehat}\gamma{\mathrel{\sharp}}_{B\rtimes_\beta G} {\widehat}\tau)(x\otimes y)V_C^*\bigr)
\\&=(\Upsilon\otimes{\text{\textup{id}}})\Bigl(V_A\Theta\bigl({\widehat}\gamma(x)\otimes {\widehat}\tau(y)\bigr)V_C^*\Bigr)
\\&\overset{(2)}{=}(\Upsilon\otimes{\text{\textup{id}}})\Bigl(\Theta\bigl(V_A({\widehat}\gamma(x)\otimes {\widehat}\tau(y))V_C^*\bigr)\Bigr)
\\&=(\Upsilon\otimes{\text{\textup{id}}})\Bigl(\Theta\bigl(V_A{\widehat}\gamma(x)\otimes {\widehat}\tau(y)V_C^*\bigr)\Bigr)
\\&\overset{(3)}{=}(\Upsilon\otimes{\text{\textup{id}}})\Bigl(\Theta\bigl(V_A{\widehat}\gamma(x)V_B^*\otimes V_B{\widehat}\tau(y)V_C^*\bigr)\Bigr)
\\&=(\Upsilon\otimes{\text{\textup{id}}})\Bigl(\Theta\bigl({\widetilde}\gamma(x)\otimes {\widetilde}\tau(y)\bigr)\Bigr)
\\&=(\Upsilon\otimes{\text{\textup{id}}})\circ ({\widetilde}\gamma{\mathrel{\sharp}}_{B\rtimes_\beta G} {\widehat}\tau)(x\otimes y),\end{aligned}$$ where the equalities at (1) and (2) follow since $\Upsilon\otimes{\text{\textup{id}}}$ and $\Theta$ are homomorphisms of $((A\rtimes_\alpha G)\otimes C^*(G))-((C\rtimes_\sigma G)\otimes C^*(G))$ correspondences, and the equality at (3) since $((X\rtimes_\gamma G)\otimes C^*(G))\otimes_{(B\rtimes_\beta G)\otimes C^*(G)} ((Y\rtimes_\tau G)\otimes C^*(G))$ is balanced over $(B\rtimes_\beta G)\otimes C^*(G)$. It now follows similarly to the preceding that the assignment $[X,\gamma]\mapsto [X\rtimes_\gamma G,{\widetilde}\gamma]$ is functorial.
The proof of [@koqstable Theorem 6.4] (see also [@koqstable Proposition 5.1]) shows that if $[X]{\colon}(A,\iota)\to (B,\jmath)$ is a morphism in ${{{\mathcal K}/{\mathbf{C}^*}}{_\mathbf{en}}}$ then $$C(X,\iota,\jmath):=\{x\in M(X):\iota(k)x=x\jmath(k)\in X\text{ for all }k\in {\mathcal K}\}$$ is a nondegenerate $C(A,\iota)-C(B,\jmath)$ correspondence, and there is a (necessarily unique) isomorphism $$\theta_X{\colon}C(X,\iota,\jmath)\otimes{\mathcal K}{\overset{\simeq}{\longrightarrow}}X$$ as $A-B$ correspondences (where we regard $C(X,\iota,\jmath)$ as an $A-B$ correspondence via the isomorphisms $\theta_A{\colon}C(A,\iota)\otimes{\mathcal K}{\overset{\simeq}{\longrightarrow}}A$ and $\theta_B{\colon}C(B,\jmath)\otimes{\mathcal K}{\overset{\simeq}{\longrightarrow}}B$) such that $$\theta_X(x\otimes k)=x\jmath(k){\quad\text{for all }}x\in C(X,\iota,\jmath),k\in{\mathcal K}.$$ It follows from [@koqstable Theorem 6.4 and its proof] that there is a functor ${{{\mathcal K}/{\mathbf{C}^*}}{_\mathbf{en}}}\to{{\mathbf{C}^*}{_\mathbf{en}}}$ that is defined on objects by $(A,\iota)\mapsto C(A,\iota)$ and that takes a morphism $[X]{\colon}(A,\iota)\to (B,\jmath)$ in ${{{\mathcal K}/{\mathbf{C}^*}}{_\mathbf{en}}}$ to the morphism $$[C(X,\iota,\jmath)]{\colon}C(A,\iota)\to (B,\jmath)$$ in ${\mathbf{C}^*}$, and which moreover is a category equivalence, with quasi-inverse given by the *enchilada stabilization functor* taking $A$ to $(A\otimes{\mathcal K},1\otimes{\text{\textup{id}}})$ and a morphism $[X]{\colon}A\to B$ in ${{\mathbf{C}^*}{_\mathbf{en}}}$ to the morphism $[X\otimes{\mathcal K}]$, where $X\otimes{\mathcal K}$ is the external-tensor-product $(A\otimes{\mathcal K})-(B\otimes{\mathcal K})$ correspondence. In [@koqstable Definition 6.3] the enchilada stabilization functor was denoted by ${{{\widetilde}{{\textup{St}}}}{_\mathbf{en}}}$, and its quasi-inverse was not given a name (although the nondegenerate version was denoted by ${{\textup{DSt}}{_\mathbf{nd}}}$ in [@koqstable], as explained at the end of [Section ]{}). We want an equivariant version, and we need to see what to do with the coactions:
\[com zeta\] Let $[X,\zeta]{\colon}(A,\delta,\iota)\to (B,\epsilon,\jmath)$ be a morphism in ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$. Then there is a $C(\delta)-C(\epsilon)$ compatible coaction $C(\zeta)$ on the $C(A,\iota)-C(B,\jmath)$ correspondence $C(X,\iota,\jmath)$ given by the restriction to $C(X,\iota,\jmath)$ of the canonical extension of $\zeta$ to $M(X)$.
Again let $K={\mathcal K}(X)$ be the algebra of compact operators on the Hilbert $B$-module $X$, with left-$A$-module homomorphism $\varphi_A{\colon}A\to M(K)$, and let $L=L(X)={\left(\begin{smallmatrix} K&X\\{*}&B\end{smallmatrix}\right)}$ be the linking algebra. Let $\eta$ and $\xi={\left(\begin{smallmatrix} \eta&\zeta\\{*}&\epsilon\end{smallmatrix}\right)}$ be the associated coactions of $G$ on $K$ and $L$, respectively. Then $\kappa:=\varphi_A\circ\iota{\colon}{\mathcal K}\to M(K)$ and $\omega:={\left(\begin{smallmatrix} \kappa&0\\0&\jmath\end{smallmatrix}\right)}{\colon}{\mathcal K}\to M(L)$ are equivariant for the trivial coaction on ${\mathcal K}$. Note that $[X,\zeta]{\colon}(K,\eta,\kappa)\to (B,\epsilon,\jmath)$ is a morphism in ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$, and $$C(X,\kappa,\jmath)=C(X,\iota,\jmath).$$ By [@koqstable Proposition 5.1 and Theorem 6.4 and their proofs], the relative commutant decomposes as $$C(L,\omega)={\begin{pmatrix} C(K,\kappa)&C(X,\iota,\jmath)\\{*}&C(B,\jmath) \end{pmatrix}}.$$ A routine computation shows that the associated coaction preserves the corner projections, and hence compresses on the upper-right corner to a coaction $C(\zeta)$ on the Hilbert $C(K,\kappa)-C(B,\jmath)$ bimodule $C(X,\kappa,\jmath)$, given by the restriction to $C(X,\iota,\jmath)$ of the extension of $\zeta$ to $M(X)$.
It remains to check that $C(\zeta)$ is compatible with the left $C(A,\iota)$-module structure: for $a\in C(A,\iota)$ and $x\in C(X,\iota,\jmath)=C(X,\kappa,\jmath)$, since the Hilbert-module homomorphism $$C(\zeta){\colon}C(X,\kappa,\jmath)\to M\bigl(C(X,\kappa,\jmath)\otimes C^*(G)\bigr)$$ is nondegenerate and the homomorphism $$\varphi_A{\colon}A\to M(K)$$ is $\delta-\eta$ equivariant, we have $$\begin{aligned}
C(\zeta)(ax)
&=C(\zeta)\bigl(\varphi_A(a)x\bigr)
\\&=C(\eta)\circ\varphi_A(a)C(\zeta)(x)
\\&=\eta\circ\varphi_A(a)C(\zeta)(x)
\\&=(\varphi_A\otimes{\text{\textup{id}}})\circ\delta(a)C(\zeta)(x)
\\&=\delta(a)C(\zeta)(x)
\\&=C(\delta)(a)C(\zeta)(x).
\qedhere\end{aligned}$$
Thus we can define a functor $${{\textup{DSt}}{_\mathbf{en}}}{\colon}{{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}\to{{\mathbf{Co}}{_\mathbf{en}}}$$ to be the same as ${\textup{DSt}}$ on objects, and on morphisms as follows: if $[X,\zeta]{\colon}(A,\delta,\iota)\to (B,\epsilon,\jmath)$ is a morphism in ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$ then $${{\textup{DSt}}{_\mathbf{en}}}[X,\zeta]{\colon}\bigl(C(A,\iota),C(\delta)\bigr)\to
\bigl(C(B,\jmath),C(\epsilon)\bigr)$$ is the morphism in ${{\mathbf{Co}}{_\mathbf{en}}}$ given by $${{\textup{DSt}}{_\mathbf{en}}}[X,\zeta]=[C(X,\iota,\jmath),C(\zeta)],$$ where $C(\zeta)$ is the $C(A,\iota)-C(B,\jmath)$ compatible coaction on $C(X,\iota,\jmath)$ defined in [Lemma ]{}.
\[comcoen\] The above functor ${{\textup{DSt}}{_\mathbf{en}}}{\colon}{{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}\to{{\mathbf{Co}}{_\mathbf{en}}}$ is a category equivalence, and moreover it restricts to an equivalence between ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}^m$ and ${{\mathbf{Co}}{_\mathbf{en}}}^m$.
For the first part, we need to know that ${{\textup{DSt}}{_\mathbf{en}}}$ is essentially surjective, full, and faithful. Essential surjectivity is trivial, since ${\textup{DSt}}{\colon}{{\mathcal K}/{\mathbf{Co}}}\to{\mathbf{Co}}$ is an equivalence, and since isomorphism in ${\mathbf{Co}}$ is stronger than in the category ${{\mathbf{Co}}{_\mathbf{en}}}$.
Since the (non-equivariant) enchilada destabilization functor ${{{\mathcal K}/{\mathbf{C}^*}}{_\mathbf{en}}}\to{{\mathbf{C}^*}{_\mathbf{en}}}$ is an equivalence, and since the morphisms in ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$ and ${{\mathbf{Co}}{_\mathbf{en}}}$ are just morphisms in ${{{\mathcal K}/{\mathbf{C}^*}}{_\mathbf{en}}}$ and ${{\mathbf{C}^*}{_\mathbf{en}}}$, respectively, that preserve the extra structure, ${{\textup{DSt}}{_\mathbf{en}}}$ is full and faithful.
For the other part, we only need to recall from [Lemma ]{} that if $(A,\delta,\iota)$ is an object in ${{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}$ then the coaction $\delta$ is maximal if and only if $C(\delta)$ is.
Enchilada Landstad duality {#enchilada duality}
==========================
In this section we prove categorical Landstad duality for maximal coactions and the enchilada categories.
We define a functor ${{\textup{Fix}}{_\mathbf{en}}}$ by the commutative diagram $$\xymatrix@C+20pt{
{{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}\ar[r]^{\operatorname{\operatorname{CPA}{_\mathbf{en}}}} \ar[dr]_{{{\textup{Fix}}{_\mathbf{en}}}}
&{{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}\ar[d]^{{{\textup{DSt}}{_\mathbf{en}}}}
\\
&{{\mathbf{Co}}{_\mathbf{en}}}^m.
}$$ Thus ${{\textup{Fix}}{_\mathbf{en}}}$ is the same as ${\textup{Fix}}$ on objects, and if $[X,\gamma]{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ is a morphism in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ then $${{\textup{Fix}}{_\mathbf{en}}}[X,\gamma]{\colon}({\textup{Fix}}(A,\alpha,\mu),\delta^\mu)\to ({\textup{Fix}}(B,\beta,\nu),\delta^\nu)$$ is the morphism in ${{\mathbf{Co}}{_\mathbf{en}}}$ given by $${{\textup{Fix}}{_\mathbf{en}}}[X,\gamma]=[C(X\rtimes_\gamma G,j_G^\delta,j_G^\epsilon),C({\widetilde}\gamma)].$$ We write $$\begin{aligned}
{\textup{Fix}}(X,\gamma,\mu,\nu)&=C(X\rtimes_\gamma G,j_G^\delta,j_G^\epsilon)
\\
\delta^{\mu,\nu}&=C({\widetilde}\gamma).\end{aligned}$$
\[cpcen thm\] Let $\operatorname{\operatorname{CPC}{_\mathbf{en}}}{\colon}{{\mathbf{Co}}{_\mathbf{en}}}\to{{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ be the functor from [Section ]{}, and let ${\operatorname{CPC}{_\mathbf{en}}^m}{\colon}{{\mathbf{Co}}{_\mathbf{en}}}^m\to {{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$ be the restriction to the subcategory of maximal coactions. Then ${\operatorname{CPC}{_\mathbf{en}}^m}$ is a category equivalence, with quasi-inverse ${{\textup{Fix}}{_\mathbf{en}}}$.
The proof is similar to that of [@koqlandstad Theorem 6.2], which in turn was based upon the proof of [@koqlandstad Theorem 5.2]. The functor ${\operatorname{CPC}{_\mathbf{en}}^m}$ is essentially surjective because ${\operatorname{CPC}^m}$ is, and isomorphism in ${{\textup{rt}}/{\mathbf{Ac}}}$ is stronger than isomorphism in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$.
To see that ${\operatorname{CPC}{_\mathbf{en}}^m}$ is full, it suffices to show that if $[X,\gamma]{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ is a morphism in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}$, then $$\bigl({\textup{Fix}}(X,\gamma,\mu,\nu)\rtimes_{\delta^{\mu,\nu}} G,{\widehat}{\delta^{\mu,\nu}}\bigr)\simeq
(X,\gamma)$$ as $(A,\alpha)-(B,\beta)$ correspondences, where we regard ${\textup{Fix}}(X,\gamma,\mu,\nu)\rtimes_{\delta^{\mu,\nu}} G$ as an $A-B$ correspondence via the isomorphisms $$\begin{aligned}
\Theta_A&{\colon}{\textup{Fix}}(A,\alpha,\mu)\rtimes_{\delta^\mu} G{\overset{\simeq}{\longrightarrow}}A
\\
\Theta_B&{\colon}{\textup{Fix}}(B,\beta,\nu)\rtimes_{\delta^\nu} G{\overset{\simeq}{\longrightarrow}}B.\end{aligned}$$ The verification that we give below consists of routine linking-algebra computations, along the lines of [@koqlandstad Propositions 6.2 and 5.2]. The primary difference here is that we already have the functor ${{\textup{Fix}}{_\mathbf{en}}}$ in hand.
Recall the notation $K,L,\varphi_A$ from the discussion preceding [Lemma ]{}. Let $\sigma$ be the associated action on $K$ and $\kappa=\varphi_A\circ\mu{\colon}C_0(G)\to M(K)$, and let $\tau={\left(\begin{smallmatrix} \sigma&\gamma\\{*}&\beta\end{smallmatrix}\right)}$ and $\omega={\left(\begin{smallmatrix} \kappa&0\\0&\nu\end{smallmatrix}\right)}{\colon}C_0(G)\to M(L)$, giving equivariant actions $(K,\sigma,\kappa)$ and $(L,\tau,\omega)$.
We want to show that $$\begin{aligned}
\label{fix link}
\begin{split}
{\textup{Fix}}(L,\tau,\omega)
&={\begin{pmatrix} {\textup{Fix}}(K,\sigma,\kappa)&{\textup{Fix}}(X,\gamma,\mu,\nu)\\
{*}&{\textup{Fix}}(B,\beta,\nu) \end{pmatrix}}
\\
\delta^\omega&={\begin{pmatrix} \delta^\kappa&\delta^{\mu,\nu}\\{*}&\delta^\nu \end{pmatrix}}.
\end{split}\end{aligned}$$ We will use the decomposition ${{\textup{Fix}}{_\mathbf{en}}}={{\textup{DSt}}{_\mathbf{en}}}\circ\operatorname{\operatorname{CPA}{_\mathbf{en}}}$. First observe that $$\begin{aligned}
L\rtimes_\tau G
&={\begin{pmatrix} K\rtimes_\sigma G&X\rtimes_\gamma G\\
{*}&B\rtimes_\beta G \end{pmatrix}}
\\
{\widehat}\tau&={\begin{pmatrix} {\widehat}\sigma&{\widehat}\gamma\\{*}&{\widehat}\beta \end{pmatrix}}
\\
i_L&={\begin{pmatrix} i_K&i_X\\{*}&i_B \end{pmatrix}}
\\
i_G^\tau&={\begin{pmatrix} i_G^\sigma&0\\0&i_G^\beta \end{pmatrix}}.\end{aligned}$$ This follows from [@taco proof of Proposition 3.5] and [@enchilada Proposition 3.5]. [@taco] deals with full crossed but does not handle the dual coactions, while [@enchilada] handles the dual coactions but only for reduced crossed products; the techniques of [@enchilada] carry over to full crossed products with no problem. It follows that $$\begin{aligned}
V_L
&=\bigl((i_L\circ\omega)\otimes{\text{\textup{id}}}\bigr)(w_G)
={\begin{pmatrix} V_K&0\\0&V_B \end{pmatrix}},\end{aligned}$$ so that the perturbations of the dual coactions satisfy $${\widetilde}\tau={\begin{pmatrix} {\widetilde}\sigma&{\widetilde}\gamma\\{*}&{\widetilde}\beta \end{pmatrix}}.$$ It further follows that $$\omega\rtimes G={\begin{pmatrix} \kappa\rtimes G&0\\0&\beta\rtimes G \end{pmatrix}}.$$
Combining the above with [Lemma ]{} and the discussion preceding it, and with [Corollary ]{}, the equalities can be justified with the following calculations. $$\begin{aligned}
&{\textup{Fix}}(L,\tau,\omega)
\\&\quad=C(L\rtimes_\tau G,{\widetilde}\tau,\omega\rtimes G)
\\&\quad=C(L(X\rtimes_\gamma G),{\widetilde}\tau,\omega\rtimes G)
\\&\quad={\begin{pmatrix}
C({\mathcal K}(X\rtimes_\gamma G),{\widetilde}\sigma,\kappa\rtimes G)
&C(X\rtimes_\gamma G,{\widetilde}\gamma,\kappa\rtimes G,\nu\rtimes G)
\\
{*}&C(B\rtimes_\beta G,{\widetilde}\beta,\nu\rtimes G)
\end{pmatrix}}
\\&\quad={\begin{pmatrix}
C(K\rtimes_\sigma G,{\widetilde}\sigma,\kappa\rtimes G)
&C(X\rtimes_\gamma G,{\widetilde}\gamma,\kappa\rtimes G,\nu\rtimes G)
\\
{*}&C(B\rtimes_\beta G,{\widetilde}\beta,\nu\rtimes G)
\end{pmatrix}}
\\&\quad={\begin{pmatrix} {\textup{Fix}}(K,\sigma,\kappa)&{\textup{Fix}}(X,\gamma,\kappa,\nu)
\\{*}&{\textup{Fix}}(B,\beta,\nu) \end{pmatrix}}\end{aligned}$$ and $$\begin{aligned}
\delta^\omega
&=C({\widetilde}\tau)
={\begin{pmatrix} C({\widetilde}\sigma)&C({\widetilde}\gamma)
\\{*}&C({\widetilde}\beta) \end{pmatrix}}
={\begin{pmatrix} \delta^\kappa&\delta^{\mu,\nu}\\{*}&\delta^\nu \end{pmatrix}}.\end{aligned}$$
We have an isomorphism $$\Theta_L{\colon}\bigl({\textup{Fix}}(L,\tau,\omega)\rtimes_{\delta^\omega} G,{\widehat}{\delta^\omega},j_G^{\delta^\omega}\bigr)
{\overset{\simeq}{\longrightarrow}}(L,\tau,\omega)$$ On the other hand, [@enchilada Proposition 3.9 and Theorem 3.13] give $$\begin{aligned}
{\textup{Fix}}(L,\tau,\omega)\rtimes_{\delta^\omega} G
&={\begin{pmatrix}
{\textup{Fix}}(L,\tau,\omega)\rtimes_{\delta^\omega} G
&{\textup{Fix}}(K,\sigma,\kappa)\rtimes_{\delta^\kappa} G
\\{*}&{\textup{Fix}}(B,\beta,\nu)\rtimes_{\delta^\nu} G \end{pmatrix}}
\\
{\widehat}{\delta^\omega}
&={\begin{pmatrix} {\widehat}{\delta^\kappa}&{\widehat}{\delta^{\mu,\nu}}
\\{*}&{\widehat}{\delta^\nu} \end{pmatrix}}.\end{aligned}$$ Since $\Theta_L$ preserves the corner projections, it restricts on the corners to a ${\widehat}{\delta^{\mu,\nu}}-\gamma$ equivariant Hilbert-bimodule isomorphism $$\begin{aligned}
&(\Theta_K,\Theta_X,\Theta_B){\colon}\\&\quad\bigl({\textup{Fix}}(K,\sigma,\kappa)\rtimes_{\delta^\kappa} G,
{\textup{Fix}}(X,\gamma,\kappa,\nu)\rtimes_{\delta^{\mu,\nu}} G,
{\textup{Fix}}(B,\beta,\nu)\rtimes_{\delta^\nu} G\bigr)
\\&\hspace{1in}
{\overset{\simeq}{\longrightarrow}}(K,X,B).\end{aligned}$$
We also have a ${\widehat}{\delta^\mu}-\alpha$ equivariant isomorphism $$\Theta_A{\colon}{\textup{Fix}}(A,\alpha,\mu)\rtimes_{\delta^\mu} G{\overset{\simeq}{\longrightarrow}}A,$$ and the diagram $$\xymatrix@C+20pt{
{\textup{Fix}}(A,\alpha,\mu)\rtimes_{\delta^\mu} G
\ar[r]^-{\Theta_A}_-\simeq \ar[d]_{{\textup{Fix}}(\varphi_A)\rtimes G}
&A \ar[d]^{\varphi_A}
\\
{\textup{Fix}}(K,\sigma,\kappa)\rtimes_{\delta^\kappa} G
\ar[r]_-{\Theta_K}^-\simeq
&K
}$$ of morphisms in ${\mathbf{C}^*}$ commutes by nondegenerate Landstad duality. Thus, incorporating the isomorphisms $\Theta_A$ and $\Theta_B$, $\delta^{\mu,\nu}$ is an isomorphism of $(A,\alpha)-(B,\beta)$ correspondence actions, as desired, and this completes the verification that the functor $\operatorname{\operatorname{CPC}{_\mathbf{en}}}$ is full.
We now show that $\operatorname{\operatorname{CPC}{_\mathbf{en}}}$ is faithful. It suffices to show that if $[X,\zeta]{\colon}(A,\delta)\to (B,\epsilon)$ is a morphism in ${{\mathbf{Co}}{_\mathbf{en}}}$, then $$\bigl({\textup{Fix}}(X\rtimes_\zeta G,{\widehat}\zeta,j_G^\delta,j_G^\epsilon),
\delta_{X\rtimes_\zeta G}\bigr)
{\overset{\simeq}{\longrightarrow}}(X,\zeta)$$ as $(A,\delta)-(B,\epsilon)$ correspondences, where we regard ${\textup{Fix}}(X\rtimes_\zeta G,{\widehat}\zeta,j_G^\delta,j_G^\epsilon)$ as an $A-B$ correspondence via the isomorphisms $$\begin{aligned}
\psi_A&{\colon}{\textup{Fix}}(A\rtimes_\delta G,{\widehat}\delta,j_G^\delta)=A^m{\overset{\simeq}{\longrightarrow}}A
\\
\psi_B&{\colon}{\textup{Fix}}(B\rtimes_\epsilon G,{\widehat}\epsilon,j_G^\epsilon)=B^m{\overset{\simeq}{\longrightarrow}}B.\end{aligned}$$ Again we use linking algebra techniques. Let $K={\mathcal K}(X)$ and $L=L(X)$, with associated coactions $\eta$ and $\xi={\left(\begin{smallmatrix} \eta&\zeta\\{*}&\epsilon\end{smallmatrix}\right)}$, respectively. We have the isomorphism $$\psi_L{\colon}(L^m,\xi^m){\overset{\simeq}{\longrightarrow}}(L,\xi)$$ given by the maximalization map. On the other hand, $$\begin{aligned}
L^m
&={\textup{Fix}}(L\rtimes_\xi G,{\widehat}\xi,j_G^\xi)
\\&={\begin{pmatrix} {\textup{Fix}}(K\rtimes_\eta G,{\widehat}\eta,j_G^\eta)
&{\textup{Fix}}(X\rtimes_\zeta G,{\widehat}\zeta,j_G^\zeta)
\\{*}&{\textup{Fix}}(B\rtimes_\epsilon G,{\widehat}\epsilon,j_G^\epsilon) \end{pmatrix}}
\\&={\begin{pmatrix} K^m&X^m\\{*}&B^m \end{pmatrix}},\end{aligned}$$ where the notation $X^m$ is defined by the equations, and $$\begin{aligned}
\xi^m
&=C({\widetilde}\xi)
={\begin{pmatrix} C({\widetilde}\eta)&C({\widetilde}\zeta)
\\{*}&C({\widetilde}\epsilon) \end{pmatrix}}
\\&={\begin{pmatrix} \eta^m&\zeta^m\\{*}&\epsilon^m \end{pmatrix}},\end{aligned}$$ where the notation $\zeta^m$ is defined by the equations. Since $\psi_L$ preserves the corner projections, it restricts on the corners to a $\kappa^m-\beta^m$ equivariant Hilbert-bimodule isomorphism $$(\psi_K,\psi_X,\psi_B){\colon}(K^m,X^m,B^m){\overset{\simeq}{\longrightarrow}}(K,X,B)$$ (which includes the definition of the notation $\psi_X$). We also have the isomorphism $$\psi_A{\colon}(A^m,\delta^m){\overset{\simeq}{\longrightarrow}}(A,\delta),$$ and the diagram $$\xymatrix{
A^m \ar[r]^-{\psi_A}_-\simeq \ar[d]_{\varphi_A^m}
&A \ar[d]^{\varphi_A}
\\
K^m \ar[r]_-{\psi_K}^-\simeq
&K
}$$ of morphisms in ${\mathbf{C}^*}$ commutes by nondegenerate Landstad duality. Thus, incorporating the isomorphisms $\psi_A$ and $\psi_B$, $\psi_X$ is an isomorphism of $(A,\delta)-(B,\epsilon)$ correspondence coactions, as desired, and this completes the verification that the functor $\operatorname{\operatorname{CPC}{_\mathbf{en}}}$ is faithful.
It is clear from the above arguments that ${{\textup{Fix}}{_\mathbf{en}}}$ is a quasi-inverse of the equivalence $\operatorname{\operatorname{CPC}{_\mathbf{en}}}$, indeed it is the unique quasi-inverse with object map $$(A,\alpha,\mu)\mapsto \bigl({\textup{Fix}}(A,\alpha,\mu),\delta^\mu\bigr).
\qedhere$$
Reasoning quite similar to that in the proof of [@koqlandstad Remark 6.6] shows that the above category equivalence does not give a good inversion, in the sense of [@koqlandstad Definition 4.1], of the crossed-product functor ${{\mathbf{Co}}{_\mathbf{en}}^m}\to{{\mathbf{C}^*}{_\mathbf{en}}}$ defined on objects by $(A,\delta)\mapsto A\rtimes_\delta G$.
\[cpa en equiv\] The functor $\operatorname{\operatorname{CPA}{_\mathbf{en}}}{\colon}{{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{en}}}\to {{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}^m$ is a category equivalence.
The proof is parallel to that of [Corollary ]{}, except that in [Section ]{} we have already laid some of the groundwork, namely in [Corollary ]{} we established a category equivalence ${{\textup{DSt}}{_\mathbf{en}}}{\colon}{{{\mathcal K}/{\mathbf{Co}}}{_\mathbf{en}}}^m\to {{\mathbf{Co}}{_\mathbf{en}}}^m$. By [Theorem ]{} we have an equivalence ${{\textup{Fix}}{_\mathbf{en}}}={{\textup{DSt}}{_\mathbf{en}}}\circ \operatorname{\operatorname{CPA}{_\mathbf{en}}}$. It follows that $\operatorname{\operatorname{CPA}{_\mathbf{en}}}$ is also an equivalence.
Toward outer duality {#outer duality}
====================
In this final section, which will be largely speculative, we formulate a possible approach to *outer duality* for maximal coactions. To help establish the context, we will first summarize the (partial) outer duality for normal coactions [@koqlandstad Subsection 6.3], after which we will describe the additional difficulties for maximal coactions.
Categories {#categories-2 .unnumbered}
----------
The *outer category ${{\mathbf{Co}}{_\mathbf{ou}}}$ of coactions* has coactions as objects, and a *morphism* $(\phi,U){\colon}(A,\delta)\to (B,\epsilon)$ in ${{\mathbf{Co}}{_\mathbf{ou}}}$ consists of an $\epsilon$-cocycle $U$ and a morphism $\phi{\colon}(A,\delta)\to (B,\operatorname{Ad}U\circ\epsilon)$ in ${\mathbf{Co}}$. In [@koqlandstad] the coactions were required to be normal, but the arguments we used there to establish the existence of the category ${{\mathbf{Co}}{_\mathbf{ou}}}$ work just as well for arbitrary coactions. We write ${{\mathbf{Co}}{_\mathbf{ou}}}^m$ and ${{\mathbf{Co}}{_\mathbf{ou}}}^n$ for the full subcategories of maximal and normal coactions, respectively.
The *normal fixed-point category ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}^n$ of equivariant actions* (denoted by ${{{\textup{rt}}\text{-}{{\mathbf{Ac}}}}{_\mathbf{ou}}}$ in [@koqlandstad]) has equivariant actions as objects, and a *morphism* $\phi{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}^n$ consists of a morphism $\phi{\colon}(A,\alpha)\to (B,\beta)$ in ${\mathbf{Ac}}$ such that the canonical extension ${\overline}\phi{\colon}M(A)\to M(B)$ restricts to a nondegenerate homomorphism $${\overline}\phi|{\colon}{\textup{Fix}}^n(A,\alpha,\mu)\to M({\textup{Fix}}^n(B,\beta,\nu)).$$ Here we use the adjective “normal” for this category because it involves the normal generalized fixed-point algebras ${\textup{Fix}}^n(A,\alpha,\mu)$. In [@koqlandstad] we did not need this adjective since we did not use any other kind of fixed-point algebra, but here we will also want to consider an analogue for the maximal generalized fixed-point algebras ${\textup{Fix}}(A,\alpha,\mu)$.
Given a morphism $(\phi,U){\colon}(A,\delta)\to (B,\epsilon)$ in ${{\mathbf{Co}}{_\mathbf{ou}}}$, letting $\zeta=\operatorname{Ad}U\circ\epsilon$ we get a morphism $\phi{\colon}(A,\delta)\to (B,\zeta)$ in ${\mathbf{Co}}$ and a morphism $$\Omega_U{\colon}(B\rtimes_\zeta G,{\widehat}\zeta)
\to (B\rtimes_\epsilon G,{\widehat}\epsilon)$$ in ${\mathbf{Ac}}$ satisfying $\Omega_U\circ j_B^\zeta=j_B^\epsilon$. [@koqlandstad Theorem 6.12] says that the assignments $$\begin{aligned}
(A,\delta)&\mapsto (A\rtimes_\delta G,{\widehat}\delta,j_G^\delta)
\label{obj}
\\
(\phi,U)&\mapsto \Omega_U\circ (\phi\rtimes G)
\label{mor}\end{aligned}$$ give a functor from ${{\mathbf{Co}}{_\mathbf{ou}}}^n$ to ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}^n$ that is essentially surjective and faithful. We believe that this functor is in fact a category equivalence, but we cannot prove that it is full because we do not have a fully working version of Pedersen’s theorem for outer conjugacy of coactions.
Now we describe the additional difficulties we encounter when we attempt to adapt the above to maximal coactions. The *maximal fixed-point category ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}$ of equivariant actions* has the same objects as ${{\textup{rt}}/{\mathbf{Ac}}}$, and a *morphism* $\phi{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}$ consists of a morphism $\phi{\colon}(A,\alpha)\to (B,\beta)$ in ${\mathbf{Ac}}$ such that the canonical extension $${\overline}{\phi\rtimes G}{\colon}M(A\rtimes_\alpha G)\to M(B\rtimes_\beta G)$$ of the crossed-product homomorphism restricts to a nondegenerate homomorphism $${\overline}{\phi\rtimes G}|{\colon}{\textup{Fix}}(A,\alpha,\mu)\to M({\textup{Fix}}(B,\beta,\nu)).$$
We can verify that the above gives a category using arguments parallel to [@koqlandstad]:
\[compose\] With the above definition of morphism, the category ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}$ is well-defined.
We must check that composition of morphisms is defined. Once we have done this it will be obvious that composition is associative and that we have identity morphisms. Suppose that $\psi{\colon}(B,\beta,\nu)\to (C,\gamma,\tau)$ is another morphism, so that ${\overline}{\psi\rtimes G}$ restricts to a nondegenerate homomorphism $${\overline}{\psi\rtimes G}|{\colon}{\textup{Fix}}(B,\beta,\nu)\to M({\textup{Fix}}(C,\gamma,\tau)).$$ The composition of $\phi\rtimes G$ and $\psi\rtimes G$ in ${\mathbf{C}^*}$ is the nondegenerate homomorphism $${\overline}{\phi\rtimes G}\circ (\psi\rtimes G){\colon}A\rtimes_\alpha G\to M(C\rtimes_\gamma G).$$ On the other hand, the composition of the nondegenerate homomorphisms ${\overline}{\phi\rtimes G}|$ and ${\overline}{\psi\rtimes G}|$ is the nondegenerate homomorphism $${\overline}{{\overline}{\phi\rtimes G}|}\circ {\overline}{\psi\rtimes G}|{\colon}{\textup{Fix}}(A,\alpha,\mu)\to M({\textup{Fix}}(C,\gamma,\tau)).$$ It is clear from the definitions that this composition is the restriction of $${\overline}{{\overline}{\phi\rtimes G}\circ (\psi\rtimes G)}
={\overline}{\phi\rtimes G}\circ{\overline}{\psi\rtimes G}$$ to ${\textup{Fix}}(A,\alpha,\mu)$.
The *semi-comma equivariant category ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{sc}}}$ of actions* has the same objects as ${{\textup{rt}}/{\mathbf{Ac}}}$, namely equivariant actions, and a morphism $\phi{\colon}(A,\alpha,\mu)\to (B,\beta,\nu)$ in the category is just a morphism $\phi{\colon}(A,\alpha)\to (B,\beta)$ in ${\mathbf{Ac}}$, i.e., the morphism in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{sc}}}$ has nothing to do with $\mu$ and $\nu$.
\[dumb functor\] With the above notation, the assignments – give a functor $\operatorname{\operatorname{CPC}{_\mathbf{sc}}}\colon {{\mathbf{Co}}{_\mathbf{ou}}}\to {{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{sc}}}$ that is essentially surjective.
It follows immediately from the definitions that the object and morphism maps – are well-defined and that preserves identity morphisms. To check that $\operatorname{\operatorname{CPC}{_\mathbf{sc}}}$ preserves compositions, suppose we are given morphisms $$\xymatrix{
(A,\delta) \ar[r]^-{(\phi,U)} &(B,\epsilon) \ar[r]^-{(\psi,V)} &(C,\zeta)
}$$ in ${{\mathbf{Co}}{_\mathbf{ou}}}$. The following calculation is dual to one in [@koqlandstad toward beginning of proof of Proposition 5.8], and in the case for normal coactions it was omitted from [@koqlandstad proof of Theorem 6.12], so we include it here: $$\begin{aligned}
&\operatorname{\operatorname{CPC}{_\mathbf{sc}}}(\psi,V)\circ \operatorname{\operatorname{CPC}{_\mathbf{sc}}}(\phi,U)\circ j_A
\\&\quad=\bigl(\Omega_V\circ (\psi\rtimes G)\bigr)
\circ
\bigl(\Omega_U\circ (\phi\rtimes G)\bigr)
\circ
j_A
\\&\quad=\Omega_V\circ (\psi\rtimes G)\circ \Omega_U\circ j_B^{\operatorname{Ad}U\circ\epsilon}\circ \phi
\\&\quad=\Omega_V\circ (\psi\rtimes G)\circ j_B^\epsilon\circ \phi
\\&\quad=\Omega_V\circ j_C^{\operatorname{Ad}V\circ\zeta}\circ \psi\circ \phi
\\&\quad=j_C^\zeta\circ \psi\circ \phi
\\&\quad=\Omega_{(\psi\otimes{\text{\textup{id}}})(U)V}\circ j_C^{\operatorname{Ad}(\psi\otimes{\text{\textup{id}}})(U)V}\circ \psi\circ\phi
\\&\quad=\Omega_{(\psi\otimes{\text{\textup{id}}})(U)V}\circ \bigl((\psi\circ\phi)\rtimes G\bigr)\circ j_A
\\&\quad=\operatorname{\operatorname{CPC}{_\mathbf{sc}}}\bigl(\psi\circ\phi,(\psi\otimes{\text{\textup{id}}})(U)V\bigr)\circ j_A
\\&\quad=\operatorname{\operatorname{CPC}{_\mathbf{sc}}}\bigl((\psi,V)\circ (\phi,U)\bigr)\circ j_A,\end{aligned}$$ and $$\begin{aligned}
&\bigl(\operatorname{\operatorname{CPC}{_\mathbf{sc}}}(\psi,V)\circ \operatorname{\operatorname{CPC}{_\mathbf{sc}}}(\phi,U)\circ j_G^\delta\otimes{\text{\textup{id}}}\bigr)(w_G)
\\&\quad=\Bigl(\operatorname{\operatorname{CPC}{_\mathbf{sc}}}\bigl((\psi,V)\circ (\phi,U)\bigr)\circ j_G^\delta\otimes{\text{\textup{id}}}\Bigr)(w_G)\end{aligned}$$ by a calculation identical to one in the proof of [@koqlandstad Theorem 6.12], which implies $$\operatorname{\operatorname{CPC}{_\mathbf{sc}}}(\psi,V)\circ \operatorname{\operatorname{CPC}{_\mathbf{sc}}}(\phi,U)\circ j_G^\delta
=\operatorname{\operatorname{CPC}{_\mathbf{sc}}}\bigl((\psi,V)\circ (\phi,U)\bigr)\circ j_G^\delta.$$ Thus $\operatorname{\operatorname{CPC}{_\mathbf{sc}}}\colon {{\mathbf{Co}}{_\mathbf{ou}}}\to {{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{sc}}}$ is a functor.
It is clear that $\operatorname{\operatorname{CPC}{_\mathbf{sc}}}$ is essentially surjective, because it is essentially surjective for the nondegenerate categories, which have the same objects, and isomorphism in ${{\textup{rt}}/{\mathbf{Ac}}}$ is stronger than in ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{sc}}}$.
Now the extra difficulties begin: we want the assignments – to give a functor ${{\mathbf{Co}}{_\mathbf{ou}}}^m\to {{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}$, but we have not been able to prove that takes morphisms to morphisms. Of course we do have a morphism $$\Omega_U\circ (\phi\rtimes G){\colon}(A\rtimes_\delta G,{\widehat}\delta)\to (B\rtimes_\epsilon G,{\widehat}\epsilon)$$ in ${\mathbf{Ac}}$, but then we would need to show that the canonical extension $${\overline}{\bigl(\Omega_U\circ (\phi\rtimes G)\bigr)\rtimes G}{\colon}A\rtimes_\delta G\rtimes_{{\widehat}\delta} G
\to M(B\rtimes_\epsilon G\rtimes_{{\widehat}\epsilon} G)$$ of the crossed-product homomorphism restricts to a nondegenerate homomorphism $${\overline}{\bigl(\Omega_U\circ (\phi\rtimes G)\bigr)\rtimes G}|{\colon}{\textup{Fix}}(A\rtimes_\delta G,{\widehat}\delta,j_G^\delta)
\to M\bigl({\textup{Fix}}(B\rtimes_\epsilon G,{\widehat}\epsilon,j_G^\epsilon)\bigr);$$ this time, unlike with normal generalized fixed-point algebras in [@koqlandstad], the maximal generalized fixed-point algebras seem to depend upon the homomorphisms $j_G$ to a greater degree than we can accommodate. The homomorphism $\phi\rtimes G$ presents no problem, because we can apply the functor ${\textup{Fix}}{\colon}{{\textup{rt}}/{\mathbf{Ac}}}\to {\mathbf{Co}}$ to it. The problem is that $\Omega_U$ does not relate the maps $j_G^\zeta$ and $j_G^\epsilon$, and the generalized fixed-point algebra $${\textup{Fix}}(B\rtimes_\epsilon G,{\widehat}\epsilon,j_G^\epsilon)
=C(B\rtimes_\epsilon G\rtimes_{{\widehat}\epsilon} G,j_G^\epsilon\rtimes G)$$ depends explicitly upon $j_G^\epsilon$ by construction. This is in contrast to the situation for normal coactions, where the generalized fixed-point algebra coincided with $j_B(B)\subset M(B\rtimes_\epsilon G)$.
Thus, here we have even less than we did in [@koqlandstad] — not only do we not have a faithful functor, we do not have a functor at all. So the problem remains:
Do the assignments – give a functor from ${{\mathbf{Co}}{_\mathbf{ou}}}^m$ to ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}$? If not, can the category ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}$ be adjusted so that the assignment $$(A,\delta)\mapsto (A\rtimes_\delta G,{\widehat}\delta,j_G)$$ is the object map of a category equivalence from ${{\mathbf{Co}}{_\mathbf{ou}}}^m$ to ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}$?
We plan to pursue outer duality for coactions in future work. One aspect that we will study is the following: suppose we are given a morphism $(\phi,U){\colon}(A,\delta)\to (B,\epsilon)$ in the outer category ${{\mathbf{Co}}{_\mathbf{ou}}}$ of coactions. Let $\psi_B{\colon}(B,\epsilon)\to (B^n,\epsilon^n)$ be the normalization. Then $U^n:=(\psi_B\otimes{\text{\textup{id}}})(U)$ is an $\epsilon^n$-cocycle, and $(\phi^n,U^n){\colon}(A^n,\delta^n)\to (B^n,\epsilon^n)$ is a morphism in the subcategory ${{\mathbf{Co}}{_\mathbf{ou}}}^n$ of normal coactions. It should be possible to prove that the functor $\operatorname{CPC}^m{\colon}{{\mathbf{Co}}{_\mathbf{ou}}}^m\to {{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{sc}}}$ is naturally isomorphic to the composition of the restricted normalization functor $\operatorname{Nor}^m{\colon}{{\mathbf{Co}}{_\mathbf{ou}}}^m\to {{\mathbf{Co}}{_\mathbf{ou}}}^n$ followed by $\operatorname{CPC}^n$. We know from [@koqlandstad] that $\operatorname{CPC}^n$ is an equivalence with the category ${{{\textup{rt}}/{\mathbf{Ac}}}{_\mathbf{ou}}}$. In particular, it should follow that $\operatorname{CPC}^m$ is faithful and/or full if and only if $\operatorname{Nor}^m$ is. This gives rise to the following questions: (1) if $U$ and $V$ are distinct cocycles for a maximal coaction $\delta$, are the associated $\delta$-cocycles $U^n$ and $V^n$ also distinct, and (2) if $\delta$ and $\epsilon$ are exterior equivalent normal coactions, are their maximalizations $\delta^m$ and $\epsilon^m$ also exterior equivalent?
[HQRW11]{}
A. Buss and S. Echterhoff, *Universal and exotic generalized fixed-point algebras for weakly proper actions and duality*, Indiana Univ. Math. J. **63** (2014), 1659–1701.
S. Echterhoff, S. Kaliszewski, and J. Quigg, *Maximal coactions*, Internat. J. Math. **15** (2004), 47–61.
S. Echterhoff, S. Kaliszewski, J. Quigg, and I. Raeburn, *Naturality and induced representations*, Bull. Austral. Math. Soc. **61** (2000), 415–438.
[to3em]{}, *A categorical approach to imprimitivity theorems for $C^*$-dynamical systems*, Mem. Amer. Math. Soc., 180, Amer. Math. Soc., Providence, RI, 2006.
R. Fischer, *Maximal coactions of quantum groups*, SFB 478 – Geometrische Strukturen in der Mathematik, 350, Univ. Münster, 2004.
A. an Huef, S. Kaliszewski, I. Raeburn, and D. P. Williams, *Naturality of Rieffel’s Morita equivalence for proper actions*, Algebr. Represent. Theory **14** (2011), 515–543.
A. an Huef, J. Quigg, I. Raeburn, and D. P. Williams, *Full and reduced coactions of locally compact groups on $C^*$-algebras*, Expo. Math. **29** (2011), 3–23.
S. Imai and H. Takai, *On a duality for $C^*$-crossed products by a locally compact group*, J. Math. Soc. Japan **30** (1978), 495–504.
S. Kaliszewski, T. Omland, and J. Quigg, *Destabilization*, Expo. Math. **34** (2016), 62–81.
[to3em]{}, *Three versions of categorical crossed-product duality*, New York J. Math. **22** (2016), 293–339.
S. Kaliszewski and J. Quigg, *Landstad’s characterization for full crossed products*, New York J. Math. **13** (2007), 1–10.
[to3em]{}, *Categorical Landstad duality for actions*, Indiana Univ. Math. J. **58** (2009), 415–441.
S. Kaliszewski, J. Quigg, and I. Raeburn, *Proper actions, fixed-point algebras and naturality in nonabelian duality*, J. Funct. Anal. **254** (2008), 2949–2968.
Y. Katayama, *Takesaki’s duality for a non-degenerate co-action*, Math. Scand. **55** (1984), 141–151.
E. C. Lance, *Hilbert $C^*$-modules*, London Math. Soc. Lecture Note Ser., 210, Cambridge Univ. Press, Cambridge, 1995.
M. B. Landstad, *Duality theory for covariant systems*, Trans. Amer. Math. Soc. **248** (1979), 223–267.
M. B. Landstad, J. Phillips, I. Raeburn, and C. E. Sutherland, *Representations of crossed products by coactions and principal bundles*, Trans. Amer. Math. Soc. **299** (1987), 747–784.
G. K. Pedersen, *Dynamical systems and crossed products*, Operator algebras and applications, Part I (Kingston, Ont., 1980), Proc. Sympos. Pure Math., 38, Amer. Math. Soc., Providence, RI, 1982, 271–283.
J. Quigg, *Landstad duality for $C^*$-coactions*, Math. Scand. **71** (1992), 277–294.
[to3em]{}, *Full and reduced $C^*$-coactions*, Math. Proc. Cambridge Philos. Soc. **116** (1994), 435–450.
J. Quigg and I. Raeburn, *Induced $C^*$-algebras and Landstad duality for twisted coactions*, Trans. Amer. Math. Soc. **347** (1995), 2885–2915.
| [
1,
11474,
13,
16595,
29901,
525,
4806,
2198,
263,
716,
7632,
310,
21692,
29899,
4704,
868,
2877,
363,
23183,
1302,
7387,
393,
3913,
23808,
30010,
29879,
664,
373,
23183,
17063,
29889,
11221,
263,
2318,
395,
29954,
29938,
322,
263,
1302,
2467,
2427,
29909,
2053,
4181,
1262,
591,
4529,
263,
28803,
4343,
29899,
3149,
9623,
408,
263,
3058,
1014,
15742,
310,
395,
29924,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
320,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
5767,
322,
9792,
278,
1302,
2467,
3025,
445,
3765,
21692,
3234,
29889,
8680,
7306,
338,
304,
883,
5987,
445,
868,
2877,
297,
263,
7663,
29899,
1552,
272,
7492,
3030,
29892,
322,
697,
10631,
310,
1749,
7632,
338,
393,
372,
16706,
1623,
964,
5633,
393,
526,
4780,
304,
4386,
297,
445,
4880,
29889,
1334,
937,
5649,
445,
363,
278,
7663,
310,
1661,
311,
17158,
320,
29930,
29899,
9706,
7886,
12903,
29892,
322,
769,
15690,
5794,
363,
278,
7663,
310,
395,
29907,
6622,
4388,
2616,
3636,
2063,
29889,
3115,
29892,
591,
27887,
7687,
2582,
363,
278,
1346,
5561,
30024,
7663,
29892,
12399,
9251,
491,
278,
15717,
6169,
13,
7328,
29901,
13,
29899,
891,
13,
1678,
4523,
310,
13486,
936,
322,
13070,
936,
17253,
29905,
13,
1678,
23716,
4306,
3014,
29905,
13,
1678,
6789,
412,
29892,
23716,
29871,
29947,
29945,
29906,
29947,
29955,
13,
29899,
891,
13,
1678,
4523,
310,
13486,
936,
322,
13070,
936,
17253,
29905,
13,
1678,
23716,
4306,
3014,
29905,
13,
1678,
6789,
412,
29892,
23716,
29871,
29947,
29945,
29906,
29947,
29955,
13,
29899,
891,
13,
1678,
4523,
310,
13486,
936,
322,
13070,
936,
17253,
29905,
13,
1678,
23716,
4306,
3014,
29905,
13,
1678,
6789,
412,
29892,
23716,
29871,
29947,
29945,
29906,
29947,
29955,
13,
8921,
29901,
13,
29899,
525,
29903,
29889,
30081,
29968,
5711,
29274,
2574,
29915,
13,
29899,
1605,
265,
438,
828,
392,
13,
29899,
2259,
751,
22817,
13,
1256,
29901,
525,
29924,
1279,
29871,
29946,
29892,
29871,
29906,
29900,
29896,
29953,
29915,
13,
3257,
29901,
360,
950,
1907,
363,
23183,
1302,
7387,
13,
5634,
13,
13,
25898,
426,
29937,
23333,
29913,
13,
4936,
2751,
13,
13,
6716,
310,
278,
15281,
6787,
1953,
297,
278,
4038,
310,
395,
29907,
6622,
4388,
29881,
2926,
936,
6757,
338,
278,
21692,
3234,
29892,
607,
338,
263,
395,
29907,
6622,
4388,
15742,
2534,
278,
1021,
8954,
6368,
408,
278,
395,
29907,
6622,
4388,
29881,
2926,
936,
1788,
29889,
334,
29907,
2124,
287,
29899,
4704,
868,
2877,
363,
395,
29907,
6622,
4388,
29881,
2926,
936,
6757,
29930,
338,
278,
24205,
310,
278,
1788,
515,
967,
21692,
3234,
29889,
910,
24205,
13582,
263,
6555,
6297,
297,
1784,
21420,
310,
395,
29907,
6622,
4388,
29881,
2926,
936,
6757,
29892,
322,
14161,
2705,
756,
263,
12875,
310,
883,
8250,
29892,
1163,
292,
19434,
297,
697,
310,
1023,
5837,
29901,
278,
5469,
310,
278,
4292,
936,
6757,
1090,
19220,
29892,
322,
278,
4060,
297,
607,
278,
1788,
338,
304,
367,
24776,
29889,
1334,
2050,
278,
395,
29907,
6622,
4388,
29881,
2926,
936,
6757,
304,
367,
2845,
8820,
470,
1302,
7387,
310,
263,
12430,
11071,
2318,
395,
29954,
1504,
13,
13,
29930,
29902,
24402,
29899,
29911,
557,
1794,
29930,
313,
272,
334,
29902,
24402,
29899,
29911,
557,
1794,
29899,
29911,
6926,
9940,
7528,
334,
700,
2877,
29930,
518,
29992,
277,
29962,
337,
1111,
874,
385,
3158,
701,
304,
3879,
2028,
24796,
515,
967,
12212,
21692,
3234,
29889,
360,
1474,
29892,
334,
29968,
271,
388,
3304,
868,
2877,
29930,
518,
29992,
29895,
271,
29962,
337,
1111,
874,
263,
1302,
2467,
701,
304,
3879,
2028,
24796,
515,
967,
21692,
3234,
29889,
5853,
17503,
29892,
297,
1716,
4251,
697,
337,
1111,
874,
278,
2441,
9623,
701,
304,
12489,
292,
411,
278,
11071,
12768,
373,
395,
29931,
29985,
29906,
29898,
29954,
5767,
491,
25391,
278,
3765,
21692,
3234,
29889,
1551,
278,
916,
1361,
29892,
777,
21692,
29899,
4704,
14581,
1907,
9792,
278,
395,
29907,
6622,
4388,
29881,
2926,
936,
1788,
701,
304,
26116,
29901,
363,
1342,
29892,
334,
22677,
17569,
868,
2877,
29930,
518,
29992,
1049,
17569,
29962,
337,
1111,
874,
385,
3158,
701,
304,
26116,
515,
967,
12212,
21692,
3234,
29892,
322,
518,
29992,
29895,
29939,
1319,
645,
392,
17569,
29962,
337,
1111,
874,
372,
515,
278,
2989,
21692,
3234,
29889,
360,
1474,
29892,
518,
29992,
29984,
1481,
22677,
17569,
29962,
337,
1111,
874,
263,
1302,
2467,
701,
304,
26116,
515,
967,
21692,
3234,
29889,
13,
13,
797,
7786,
2440,
29892,
777,
310,
1438,
14581,
1907,
505,
1063,
1925,
373,
263,
11608,
936,
3661,
292,
29892,
23013,
278,
21692,
29899,
4704,
8792,
408,
263,
2090,
2801,
29892,
322,
20811,
263,
16452,
29899,
262,
3901,
29889,
315,
20440,
936,
6910,
310,
3172,
17569,
868,
2877,
313,
1454,
8820,
470,
363,
1302,
7387,
29897,
518,
29992,
29883,
430,
29874,
29936,
732,
29883,
430,
29916,
29962,
1996,
334,
5464,
311,
17158,
13997,
15966,
297,
607,
278,
18131,
12903,
526,
1592,
27432,
424,
1661,
311,
17158,
3632,
7886,
12903,
964,
6674,
4926,
394,
28200,
29889,
512,
1438,
11608,
936,
14581,
1907,
278,
16452,
29899,
262,
3901,
338,
13319,
515,
263,
334,
17492,
1891,
4343,
29899,
3149,
9623,
29930,
2768,
278,
6674,
4926,
9623,
310,
278,
21692,
3234,
29889,
13,
13,
797,
518,
29992,
2901,
29939,
1049,
17569,
29962,
591,
6356,
11608,
936,
6910,
310,
306,
24402,
29899,
29911,
557,
1794,
322,
12553,
388,
3304,
868,
2877,
29892,
607,
1996,
13997,
297,
607,
278,
18131,
12903,
526,
313,
275,
14143,
4413,
310,
29897,
1592,
27432,
424,
395,
29907,
6622,
4388,
2616,
3636,
2063,
29892,
6041,
12992,
304,
408,
334,
264,
305,
309,
1114,
13997,
10521,
512,
393,
5650,
29892,
607,
338,
22669,
429,
7036,
29892,
591,
884,
2198,
883,
8250,
310,
278,
334,
5464,
311,
17158,
14581,
1907,
29930,
310,
518,
29992,
29883,
430,
29874,
29936,
732,
29883,
430,
29916,
1402,
304,
12141,
278,
610,
3498,
3137,
4249,
278,
14581,
1907,
310,
518,
29992,
2901,
29939,
1049,
17569,
1822,
512,
2114,
29892,
591,
883,
5987,
278,
334,
264,
305,
309,
1114,
14581,
1907,
29930,
297,
263,
8214,
393,
338,
17649,
304,
278,
1661,
311,
17158,
14581,
1907,
1135,
304,
278,
2441,
278,
272,
1567,
310,
518,
29992,
277,
29936,
732,
29895,
271,
29936,
732,
29895,
29939,
1319,
645,
392,
17569,
1402,
491,
29299,
278,
13698,
310,
28803,
4343,
29899,
3149,
394,
28200,
322,
25236,
394,
28200,
29889,
13,
13,
1576,
1667,
24233,
362,
297,
518,
29992,
2901,
29939,
1049,
17569,
29962,
338,
278,
18707,
310,
334,
5561,
868,
2877,
15966,
988,
278,
21692,
29899,
4704,
2090,
2801,
4076,
385,
24796,
1546,
263,
7663,
310,
8820,
297,
607,
11420,
25482,
4135,
338,
2715,
304,
278,
18131,
12903,
310,
278,
1661,
311,
17158,
7663,
322,
263,
7663,
310,
1302,
7387,
297,
607,
278,
18131,
12903,
526,
3734,
304,
3390,
278,
28803,
4343,
29899,
3149,
394,
28200,
29889,
450,
5296,
310,
11420,
868,
2877,
363,
8820,
297,
518,
29992,
2901,
29939,
1049,
17569,
29962,
7111,
2501,
263,
9185,
310,
9293,
414,
264,
518,
29992,
9795,
414,
264,
735,
8733,
10244,
30081,
29941,
29945,
29962,
313,
5747,
591,
750,
304,
10985,
515,
633,
27185,
304,
11472,
6471,
29897,
2931,
5281,
25591,
7126,
8820,
297,
4958,
310,
263,
4266,
1592,
27432,
424,
26116,
310,
278,
21692,
9316,
29889,
2398,
29892,
591,
437,
451,
505,
263,
8072,
740,
292,
1873,
310,
9293,
414,
264,
30010,
29879,
9185,
363,
1302,
7387,
29892,
322,
1363,
310,
393,
29892,
591,
892,
451,
2221,
304,
4017,
263,
4866,
11420,
868,
2877,
363,
1302,
7387,
29889,
13,
13,
1576,
3829,
310,
518,
29992,
2901,
29939,
1049,
17569,
29962,
756,
263,
4004,
297,
607,
278,
1661,
311,
17158,
29892,
278,
427,
305,
309,
1114,
29892,
322,
278,
11420,
14581,
1907,
363,
8820,
526,
9132,
297,
8943,
883,
29892,
5643,
491,
263,
2186,
4004,
6943,
14581,
6910,
29901,
278,
1661,
311,
17158,
29892,
278,
427,
305,
309,
1114,
29892,
322,
263,
7687,
11420,
868,
2877,
363,
4226,
1302,
7387,
29889,
13,
13,
797,
278,
1857,
5650,
591,
23033,
304,
825,
15834,
278,
2211,
14581,
1907,
297,
278,
2186,
4004,
310,
518,
29992,
2901,
29939,
1049,
17569,
29962,
8677,
975,
515,
4226,
304,
23183,
1302,
7387,
29889,
4001,
278,
13997,
310,
23183,
322,
4226,
1302,
7387,
526,
7126,
518,
29992,
29883,
430,
29874,
1402,
372,
338,
5613,
304,
2149,
393,
2712,
881,
748,
1532,
29889,
14598,
29892,
278,
1661,
311,
17158,
322,
278,
427,
305,
309,
1114,
14581,
1907,
437,
8677,
975,
304,
23183,
1302,
7387,
29889,
11454,
29892,
445,
2794,
393,
697,
508,
9792,
263,
23183,
1302,
2467,
515,
967,
21692,
3234,
297,
263,
11608,
936,
6890,
29892,
1716,
363,
278,
1661,
311,
17158,
322,
278,
427,
305,
309,
1114,
13997,
29936,
278,
1661,
311,
17158,
1206,
338,
1532,
29899,
5203,
29892,
13452,
278,
427,
305,
309,
1114,
1206,
338,
716,
29936,
591,
2198,
1716,
304,
12141,
278,
8943,
29889,
2398,
29892,
11420,
868,
2877,
22981,
1584,
901,
23553,
411,
23183,
1302,
7387,
1135,
411,
4226,
6743,
29889,
13,
13,
1576,
14581,
1907,
363,
23183,
1302,
7387,
1996,
263,
1422,
7632,
1135,
278,
697,
297,
518,
29992,
2901,
29939,
1049,
17569,
1822,
512,
393,
5650,
29892,
278,
14581,
1907,
363,
21692,
9316,
491,
4226,
1302,
7387,
9792,
278,
1302,
2467,
3025,
263,
4226,
1302,
2467,
3342,
373,
263,
28803,
4343,
29899,
3149,
9623,
393,
338,
11122,
297,
278,
6674,
4926,
9623,
310,
278,
21692,
3234,
29889,
2398,
29892,
445,
28803,
4343,
29899,
3149,
9623,
338,
451,
8210,
363,
278,
24205,
310,
263,
23183,
1302,
2467,
29892,
1363,
278,
1302,
2467,
7371,
491,
278,
7632,
338,
4226,
29892,
322,
6200,
372,
338,
451,
2821,
920,
697,
1033,
3386,
263,
18180,
13920,
292,
27057,
3509,
310,
278,
23183,
1302,
2467,
2768,
278,
6674,
27801,
310,
278,
21692,
3234,
29889,
3118,
310,
278,
901,
628,
9593,
21420,
7846,
296,
297,
278,
6368,
310,
21692,
9316,
491,
263,
1302,
2467,
2427,
29909,
2053,
4181,
1262,
310,
395,
29954,
29938,
338,
393,
278,
1967,
310,
395,
29909,
29938,
2768,
278,
6674,
4926,
9623,
395,
29924,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
1262,
338,
27057,
565,
322,
871,
565,
278,
1302,
2467,
779,
4181,
29938,
338,
4226,
29889,
6549,
29892,
304,
679,
263,
27057,
3509,
310,
395,
29909,
29938,
746,
779,
4181,
29938,
338,
23183,
591,
1818,
1106,
17551,
29889,
450,
1667,
24233,
362,
297,
278,
1857,
5650,
338,
278,
7632,
310,
263,
334,
27525,
284,
28803,
4343,
29899,
3149,
9623,
29930,
2768,
278,
6674,
27801,
310,
278,
2989,
21692,
3234,
395,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29938,
491,
278,
334,
700,
284,
3158,
29930,
7555,
12259,
1012,
4181,
1504,
1126,
304,
4772,
14679,
591,
2737,
304,
278,
8859,
394,
28200,
2768,
395,
29924,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
1262,
408,
334,
8945,
28803,
4343,
29899,
3149,
394,
28200,
10521,
13,
13,
29949,
332,
2948,
7111,
20365,
2501,
23808,
30010,
29879,
7632,
518,
29992,
29888,
3208,
29962,
310,
278,
334,
27525,
284,
2133,
29930,
310,
263,
1302,
2467,
29889,
23808,
30010,
29879,
7632,
29892,
607,
591,
4459,
16964,
1960,
901,
8570,
29892,
338,
2729,
2501,
278,
7329,
2133,
310,
263,
13714,
395,
29907,
6622,
4388,
15742,
395,
29909,
29938,
408,
395,
29933,
29905,
9356,
741,
1942,
476,
1042,
313,
3062,
7555,
1942,
476,
1042,
20169,
278,
9623,
310,
11071,
12768,
373,
263,
2903,
519,
10362,
29899,
12531,
12338,
2151,
2913,
511,
3025,
263,
1889,
393,
13880,
278,
395,
29933,
29938,
408,
263,
334,
22925,
26418,
424,
310,
7555,
1942,
476,
1042,
10521,
1334,
6559,
445,
334,
7854,
4427,
2133,
29930,
1889,
297,
9493,
297,
518,
29992,
2901,
29939,
13844,
1822,
8680,
671,
310,
23808,
30010,
29879,
7632,
6511,
502,
304,
7329,
278,
23183,
2133,
1889,
964,
2211,
901,
22470,
6576,
29901,
937,
2125,
278,
21692,
3234,
491,
278,
1302,
2467,
29892,
769,
278,
21692,
3234,
491,
278,
14581,
3158,
813,
541,
22786,
278,
3765,
14581,
1302,
2467,
491,
263,
274,
542,
13317,
813,
322,
7146,
2125,
278,
6198,
26418,
424,
310,
263,
18180,
13920,
292,
3509,
310,
7555,
1942,
476,
4311,
739,
338,
1749,
9426,
393,
393,
445,
26227,
4076,
14451,
304,
385,
16710,
731,
310,
8492,
304,
4386,
23183,
17063,
29889,
13,
13,
2831,
1749,
2198,
11976,
23808,
30010,
29879,
7632,
6511,
502,
304,
2906,
895,
263,
7063,
363,
278,
16452,
29899,
262,
3901,
297,
278,
11608,
936,
883,
2785,
310,
24205,
310,
263,
1302,
2467,
701,
304,
26116,
515,
967,
21692,
3234,
29892,
773,
278,
23183,
28803,
4343,
29899,
3149,
9623,
310,
278,
14581,
3158,
29889,
13,
13,
4806,
671,
278,
1021,
23183,
28803,
4343,
29899,
3149,
9623,
304,
6356,
427,
305,
309,
1114,
868,
2877,
363,
23183,
1302,
7387,
29892,
3025,
3918,
25236,
29899,
15742,
13698,
29889,
13,
13,
797,
278,
2186,
4004,
591,
5353,
777,
310,
278,
18066,
267,
297,
4017,
292,
385,
11420,
868,
2877,
363,
23183,
1302,
7387,
29889,
13,
13,
6716,
310,
278,
963,
267,
2734,
1549,
518,
29992,
2901,
29939,
1049,
17569,
29962,
338,
334,
16773,
297,
3259,
10521,
1334,
1348,
310,
9792,
292,
278,
395,
29907,
6622,
4388,
29881,
2926,
936,
1788,
515,
967,
21692,
3234,
408,
297,
369,
1259,
263,
1889,
29889,
5853,
17503,
29892,
278,
21692,
29899,
4704,
1889,
4076,
263,
395,
29907,
6622,
4388,
15742,
813,
278,
21692,
3234,
3528,
813,
393,
338,
760,
310,
263,
14581,
395,
29907,
6622,
4388,
29881,
2926,
936,
1788,
1592,
16242,
411,
777,
4805,
2472,
29889,
7338,
1461,
292,
925,
278,
21692,
3234,
515,
445,
4805,
6433,
508,
367,
17878,
408,
263,
9566,
1319,
2090,
2801,
29892,
322,
591,
1246,
278,
297,
3259,
334,
16773,
29930,
565,
445,
9566,
1319,
2090,
2801,
11418,
952,
263,
3058,
11747,
1259,
2875,
29889,
512,
8943,
304,
518,
29992,
2901,
29939,
1049,
17569,
1402,
278,
297,
3259,
338,
1781,
297,
278,
1206,
310,
1661,
311,
17158,
868,
2877,
363,
23183,
1302,
7387,
322,
451,
1781,
363,
427,
305,
309,
1114,
868,
2877,
29889,
13,
13,
797,
518,
29992,
16890,
29923,
305,
1402,
350,
1558,
322,
382,
8255,
29327,
2693,
263,
13988,
11043,
393,
17766,
1716,
23183,
322,
4226,
1302,
7387,
29892,
322,
6200,
738,
334,
735,
13574,
29930,
1302,
2467,
297,
1546,
29892,
297,
263,
443,
2164,
8214,
29892,
491,
11817,
292,
263,
2498,
2133,
310,
390,
347,
600,
295,
30010,
29879,
2948,
304,
28803,
4343,
29899,
3149,
394,
28200,
322,
15399,
372,
304,
278,
14581,
3158,
373,
278,
21692,
3234,
29889,
512,
3153,
29892,
2183,
263,
1302,
2467,
2427,
29909,
2053,
4181,
5767,
278,
13698,
310,
518,
29992,
16890,
29923,
305,
29962,
2367,
1716,
263,
23183,
2133,
322,
263,
4226,
2133,
491,
9138,
263,
320,
29930,
29899,
1491,
15742,
2427,
29909,
29905,
2273,
1355,
3187,
4181,
402,
8940,
29954,
29892,
741,
12259,
1012,
4181,
2403,
29883,
29938,
310,
395,
29924,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
1262,
322,
1614,
1259,
297,
13907,
6056,
29879,
29889,
910,
338,
3755,
8359,
515,
278,
11043,
591,
5703,
297,
445,
5650,
29892,
988,
278,
23183,
2133,
338,
13319,
408,
263,
1014,
15742,
310,
395,
29924,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
4935,
9134,
13501,
881,
6356,
5407,
29889,
13,
13,
1576,
1473,
4148,
338,
5220,
287,
491,
278,
10550,
8831,
310,
27440,
313,
7653,
694,
4898,
29871,
29906,
29946,
29900,
29929,
29896,
29941,
467,
13,
13,
6572,
2576,
262,
4314,
426,
29937,
1457,
2576,
29879,
29913,
13,
4936,
2751,
29922,
13,
13,
29911,
1092,
820,
449,
29892,
395,
29954,
29938,
20169,
263,
1473,
2302,
519,
10362,
12430,
11071,
2318,
29892,
322,
395,
29909,
29892,
29933,
2053,
7778,
29938,
13530,
395,
29907,
6622,
4388,
284,
28200,
29889,
1334,
2411,
852,
278,
2302,
3097,
11833,
373,
395,
29954,
29938,
577,
393,
395,
29931,
29985,
29906,
29898,
29954,
1262,
338,
10362,
29899,
12531,
322,
2903,
519,
29889,
2973,
777,
285,
1558,
3335,
29892,
591,
1033,
4386,
278,
297,
25048,
519,
1206,
29892,
541,
591,
831,
305,
809,
372,
1244,
1363,
591,
505,
694,
8324,
310,
1316,
2498,
537,
297,
3458,
29889,
1334,
2737,
304,
518,
29992,
2901,
29939,
1049,
17569,
29962,
363,
1749,
13064,
1080,
11211,
8820,
29892,
1302,
7387,
29892,
395,
29907,
6622,
4388,
2616,
3636,
2063,
29892,
322,
274,
22502,
7799,
363,
1302,
7387,
29889,
512,
445,
5650,
591,
674,
664,
13489,
3598,
411,
23183,
1302,
7387,
29892,
13452,
4226,
6743,
14788,
2504,
262,
2705,
297,
518,
29992,
2901,
29939,
1049,
17569,
1822,
13,
13,
4806,
17386,
777,
12640,
363,
278,
29703,
310,
278,
9591,
29889,
450,
2175,
322,
1492,
4943,
22540,
310,
395,
29954,
29938,
526,
779,
2892,
29938,
322,
779,
4650,
1628,
8307,
29892,
278,
8954,
310,
395,
29907,
29918,
29900,
29898,
29954,
1262,
373,
395,
29931,
29985,
29906,
29898,
29954,
1262,
491,
21666,
12768,
338,
395,
29924,
1628,
322,
278,
5190,
653,
1543,
395,
29893,
29918,
29954,
29905,
262,
341,
29898,
29907,
29918,
29900,
29898,
29954,
2144,
9356,
315,
6622,
29898,
29954,
23846,
338,
278,
18719,
9126,
2910,
395,
29893,
29918,
29954,
741,
17308,
29913,
29954,
29905,
517,
341,
29898,
29907,
6622,
29898,
29954,
23846,
2183,
491,
278,
24420,
23655,
310,
395,
29954,
1504,
450,
3158,
310,
395,
29954,
29938,
373,
395,
29907,
29918,
29900,
29898,
29954,
1262,
491,
1492,
13962,
338,
7555,
726,
786,
29912,
2273,
26253,
450,
21692,
3234,
310,
385,
3158,
2427,
29909,
2053,
2312,
1262,
310,
395,
29954,
29938,
338,
395,
29909,
29905,
2273,
1355,
3187,
2312,
402,
1628,
411,
15968,
18838,
1306,
424,
3632,
14143,
2427,
29875,
29918,
29909,
29892,
29875,
29918,
29954,
21964,
17308,
2119,
29909,
29892,
29954,
2144,
517,
341,
29898,
29909,
29905,
2273,
1355,
3187,
2312,
402,
5767,
322,
591,
671,
480,
6774,
924,
29879,
395,
29875,
29918,
29909,
3823,
2312,
29892,
29875,
29918,
29954,
3823,
2312,
29938,
565,
14679,
338,
5517,
29889,
3599,
497,
393,
263,
1302,
2467,
338,
263,
1661,
311,
17158,
27057,
3632,
14143,
779,
4181,
741,
17308,
29913,
29909,
29905,
517,
341,
29898,
29909,
29905,
9356,
315,
6622,
29898,
29954,
23846,
1316,
393,
12211,
4181,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
6034,
29905,
4181,
7607,
741,
726,
741,
726,
786,
29912,
333,
20388,
9356,
29905,
4181,
29918,
29954,
2144,
6034,
29905,
4181,
29938,
322,
779,
9158,
29930,
741,
6875,
741,
9158,
19740,
9653,
20388,
741,
4181,
29898,
29909,
5033,
29896,
29905,
9356,
315,
6622,
29898,
29954,
28986,
5369,
29909,
29905,
9356,
315,
6622,
29898,
29954,
5767,
988,
779,
4181,
29918,
29954,
29938,
20169,
278,
24420,
1302,
2467,
373,
395,
29907,
6622,
29898,
29954,
1262,
2183,
491,
278,
23387,
883,
310,
779,
4181,
29918,
29954,
29898,
29879,
3892,
29879,
29905,
9356,
269,
29938,
363,
395,
29879,
29905,
262,
402,
1504,
1152,
263,
1302,
2467,
2427,
29909,
2053,
4181,
5767,
411,
21692,
3234,
395,
29909,
29905,
2273,
1355,
3187,
4181,
402,
1628,
591,
2436,
2427,
29926,
29918,
29909,
29892,
29926,
29918,
29954,
1262,
363,
278,
15968,
18838,
1306,
424,
3632,
14143,
29892,
322,
1449,
591,
671,
480,
6774,
924,
29879,
395,
29926,
29918,
29909,
3823,
4181,
29892,
29926,
29918,
29954,
3823,
4181,
29938,
565,
14679,
338,
5517,
29889,
960,
395,
29926,
29918,
29909,
29938,
338,
11658,
573,
29892,
278,
1302,
2467,
779,
4181,
29938,
338,
2000,
334,
8945,
10521,
319,
334,
8945,
2133,
29930,
310,
263,
1302,
2467,
2427,
29909,
2053,
4181,
1262,
11624,
310,
263,
4226,
1302,
2467,
2427,
29933,
2053,
5463,
1262,
322,
263,
1190,
25674,
779,
4181,
2612,
5463,
29938,
1592,
27432,
424,
3632,
14143,
779,
2876,
741,
17308,
29913,
29909,
29905,
517,
350,
29938,
1316,
393,
278,
21692,
3234,
779,
2876,
29905,
2273,
1355,
402,
741,
17308,
29913,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
517,
350,
29905,
2273,
1355,
3187,
5463,
402,
29938,
338,
385,
26116,
29889,
18512,
278,
1302,
2467,
2427,
29933,
2053,
5463,
1262,
3528,
338,
12992,
304,
408,
263,
4226,
2133,
29889,
1152,
385,
3158,
2427,
29909,
2053,
2312,
5767,
727,
338,
263,
334,
700,
284,
1302,
2467,
29930,
7555,
12259,
1012,
2312,
29938,
310,
395,
29954,
29938,
373,
395,
29909,
29905,
2273,
1355,
3187,
2312,
402,
1628,
322,
278,
1661,
311,
17158,
3632,
14143,
395,
29875,
29918,
29954,
741,
17308,
29913,
29907,
6622,
29898,
29954,
2144,
517,
341,
29898,
29909,
29905,
2273,
1355,
3187,
2312,
402,
1262,
338,
779,
4181,
29918,
29954,
29899,
741,
12259,
1012,
2312,
29938,
1592,
27432,
424,
29889,
1152,
263,
1302,
2467,
2427,
29909,
2053,
4181,
5767,
727,
338,
263,
334,
700,
284,
3158,
29930,
310,
395,
29954,
29938,
373,
395,
29909,
29905,
2273,
1355,
3187,
4181,
402,
1628,
322,
278,
1661,
311,
17158,
3632,
14143,
395,
29926,
29918,
29954,
741,
17308,
29913,
29907,
29918,
29900,
29898,
29954,
2144,
517,
341,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
1262,
338,
1592,
27432,
424,
363,
7555,
726,
786,
29912,
2273,
7920,
322,
278,
14581,
3158,
7555,
12259,
1012,
4181,
29938,
373,
395,
29909,
29905,
2273,
1355,
3187,
4181,
402,
1504,
1334,
2436,
7555,
1942,
476,
5369,
741,
1942,
476,
2119,
29931,
29985,
29906,
29898,
29954,
876,
1628,
322,
12439,
395,
29907,
29918,
29900,
29898,
29954,
2144,
2273,
1355,
24033,
726,
786,
29912,
2273,
12499,
402,
21854,
1942,
476,
1042,
322,
7555,
12259,
3331,
726,
786,
29912,
2273,
930,
2013,
9158,
29912,
3253,
1012,
4650,
1504,
450,
4943,
18838,
1306,
424,
8954,
310,
263,
1302,
2467,
2427,
29909,
2053,
4181,
1262,
373,
278,
12338,
2151,
395,
29909,
4388,
5453,
395,
29909,
29905,
9356,
365,
29985,
29906,
29898,
29954,
1262,
338,
278,
5101,
2427,
13670,
726,
741,
726,
786,
29912,
333,
20388,
9356,
29905,
2892,
2144,
6034,
29905,
4181,
29892,
29896,
29905,
9356,
341,
4935,
450,
334,
3068,
265,
936,
1190,
6929,
29930,
6118,
9492,
29918,
29909,
741,
17308,
29913,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29905,
517,
319,
29905,
9356,
2802,
1942,
476,
9458,
338,
278,
23387,
883,
310,
278,
18838,
1306,
424,
3632,
14143,
6118,
3752,
29880,
3552,
741,
726,
741,
726,
786,
29912,
333,
20388,
9356,
29905,
2892,
2144,
6034,
29905,
4181,
29905,
3706,
313,
29896,
29905,
9356,
341,
511,
29896,
29905,
9356,
29905,
4650,
29905,
3752,
29878,
467,
3997,
960,
779,
9492,
29918,
29909,
29938,
338,
11658,
573,
29892,
278,
1302,
2467,
779,
4181,
29938,
338,
2000,
334,
27525,
284,
10521,
319,
334,
27525,
284,
2133,
29930,
310,
263,
1302,
2467,
2427,
29909,
2053,
4181,
1262,
11624,
310,
263,
23183,
1302,
2467,
2427,
29933,
2053,
5463,
1262,
322,
263,
1190,
25674,
779,
5463,
2612,
4181,
29938,
1592,
27432,
424,
3632,
14143,
779,
2876,
741,
17308,
29913,
29933,
29905,
517,
319,
29938,
1316,
393,
278,
21692,
3234,
779,
2876,
29905,
2273,
1355,
402,
741,
17308,
29913,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29905,
517,
319,
29905,
2273,
1355,
3187,
4181,
402,
29938,
338,
385,
26116,
29889,
18512,
278,
1302,
2467,
2427,
29933,
2053,
5463,
1262,
3528,
338,
12992,
304,
408,
263,
23183,
2133,
29889,
13,
13,
4806,
17386,
263,
2846,
17099,
515,
518,
29992,
29888,
3208,
29936,
732,
27525,
284,
29936,
732,
29939,
2273,
29893,
12652,
29936,
732,
29880,
558,
29879,
29962,
19813,
274,
22502,
7799,
363,
1302,
7387,
29889,
960,
2427,
29909,
2053,
4181,
1262,
338,
263,
1302,
2467,
322,
395,
29965,
29905,
262,
341,
29898,
29909,
29905,
9356,
315,
6622,
29898,
29954,
23846,
338,
263,
779,
4181,
4388,
29883,
542,
13317,
29892,
727,
526,
263,
334,
10700,
28179,
1302,
2467,
29930,
779,
9158,
29912,
3253,
29913,
29965,
29905,
6034,
29905,
4181,
29938,
322,
385,
26116,
6118,
1643,
29912,
9492,
29913,
13,
29905,
5981,
29918,
29965,
741,
17308,
29913,
29909,
29905,
2273,
1355,
1665,
9158,
29912,
3253,
29913,
29965,
29905,
6034,
29905,
4181,
29913,
402,
741,
957,
842,
741,
27798,
3331,
24225,
930,
29909,
29905,
2273,
1355,
3187,
4181,
402,
3997,
2183,
491,
779,
5981,
29918,
29965,
29922,
29926,
29918,
29909,
3823,
4181,
29905,
3706,
320,
2589,
1628,
988,
779,
2589,
741,
17308,
29913,
29907,
29918,
29900,
29898,
29954,
2144,
517,
341,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
1262,
338,
278,
1661,
311,
17158,
3632,
14143,
10087,
491,
278,
5190,
653,
1543,
2046,
1194,
2589,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29893,
29918,
29954,
3892,
29898,
29926,
29918,
29909,
3823,
4181,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29965,
5033,
29926,
29918,
29954,
3823,
4181,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29893,
29918,
29954,
17085,
310,
395,
29924,
29905,
3752,
29880,
3552,
29909,
29905,
2273,
1355,
3187,
4181,
402,
2144,
9356,
315,
6622,
29898,
29954,
2144,
3752,
29878,
5767,
322,
25409,
779,
5981,
29918,
29965,
29938,
338,
7555,
12259,
3331,
9158,
29912,
3253,
29913,
29965,
29905,
6034,
29905,
4181,
7402,
741,
12259,
1012,
4181,
29938,
1592,
27432,
424,
29889,
1152,
12212,
1302,
7387,
29892,
445,
1121,
338,
518,
29992,
29939,
2273,
29893,
12652,
22206,
30081,
29906,
29889,
29947,
29962,
313,
6707,
2501,
278,
2441,
1873,
518,
29992,
29880,
558,
29879,
10244,
30081,
29906,
29889,
29929,
1402,
607,
1258,
451,
3160,
278,
14581,
3158,
467,
2401,
5890,
278,
24796,
1546,
12212,
322,
4226,
1302,
7387,
518,
29992,
833,
3955,
22206,
30081,
29941,
29889,
29896,
322,
10244,
30081,
29941,
29889,
29946,
1402,
278,
1121,
1559,
2722,
975,
304,
4226,
1302,
7387,
313,
4149,
518,
29992,
2901,
29939,
1049,
17569,
22206,
30081,
29941,
29889,
29953,
29962,
363,
278,
3229,
467,
1987,
29892,
363,
738,
1302,
2467,
2427,
29909,
2053,
4181,
1262,
411,
4226,
2133,
2427,
29909,
29985,
29876,
2053,
4181,
29985,
29876,
5767,
278,
1121,
297,
2989,
2498,
537,
29892,
408,
8703,
2038,
29892,
4477,
491,
15399,
278,
1592,
27432,
424,
26116,
395,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
27798,
319,
29985,
29876,
29905,
2273,
1355,
1665,
4181,
29985,
29876,
29913,
402,
29938,
515,
518,
29992,
8159,
1127,
22206,
30081,
29906,
29889,
29953,
29962,
313,
392,
4443,
393,
29892,
5998,
278,
14581,
3158,
338,
451,
9479,
5276,
727,
29892,
278,
1592,
440,
279,
8837,
310,
278,
26116,
338,
6924,
467,
960,
591,
505,
1790,
1302,
2467,
2427,
29933,
2053,
5463,
1262,
322,
263,
1661,
311,
17158,
779,
4181,
2612,
5463,
29938,
1592,
27432,
424,
3632,
14143,
779,
2876,
741,
17308,
29913,
29909,
29905,
517,
341,
29898,
29933,
5767,
769,
12211,
2876,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29965,
1262,
338,
385,
779,
5463,
4388,
29883,
542,
13317,
29892,
322,
779,
2876,
29938,
338,
884,
2046,
1194,
9158,
29912,
3253,
29913,
29965,
29905,
6034,
29905,
4181,
23019,
3752,
29880,
1194,
9158,
29912,
3253,
4678,
2876,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29965,
2144,
6034,
29905,
5463,
29905,
3752,
29878,
17085,
1592,
27432,
424,
29889,
13,
13,
1576,
3632,
14143,
6118,
4181,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
6177,
7607,
741,
726,
741,
726,
786,
29912,
333,
20388,
9356,
29905,
10142,
2144,
6034,
3441,
4181,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
741,
17308,
29913,
29909,
29905,
9356,
2802,
1942,
476,
1012,
517,
341,
29898,
29909,
29905,
9356,
2802,
1942,
476,
1012,
9356,
315,
6622,
29898,
29954,
8243,
3997,
988,
779,
10142,
741,
17308,
3331,
1942,
476,
1012,
9356,
315,
6622,
29898,
29954,
2144,
517,
315,
6622,
29898,
29954,
2144,
9356,
2802,
1942,
476,
1042,
338,
278,
285,
3466,
26116,
29892,
338,
263,
1302,
2467,
29889,
13,
13,
1576,
5190,
653,
395,
29893,
29918,
29954,
29905,
262,
341,
29898,
29907,
29918,
29900,
29898,
29954,
2144,
9356,
315,
6622,
29898,
29954,
23846,
338,
263,
274,
542,
13317,
363,
278,
12604,
1302,
2467,
7555,
4181,
1665,
726,
786,
29912,
29873,
1150,
930,
1042,
310,
395,
29954,
29938,
373,
395,
29907,
29918,
29900,
29898,
29954,
4935,
450,
21666,
8954,
395,
29924,
29938,
310,
395,
29907,
29918,
29900,
29898,
29954,
1262,
373,
395,
29931,
29985,
29906,
29898,
29954,
1262,
1122,
367,
17878,
408,
263,
7555,
4181,
1665,
726,
786,
29912,
29873,
1150,
930,
7402,
741,
12259,
3331,
726,
786,
29912,
2273,
7920,
1592,
27432,
424,
1661,
311,
17158,
3632,
14143,
515,
395,
29907,
29918,
29900,
29898,
29954,
1262,
304,
278,
6674,
4926,
9623,
395,
29924,
13670,
1942,
476,
27394,
577,
2427,
29924,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29893,
29918,
29954,
1262,
338,
263,
7555,
12259,
3331,
726,
786,
29912,
2273,
930,
4388,
29883,
542,
13317,
29889,
450,
13499,
28179,
1302,
2467,
779,
9158,
29912,
3253,
2119,
29924,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29893,
29918,
29954,
2144,
6034,
741,
12259,
3331,
726,
786,
29912,
2273,
7920,
338,
12604,
29892,
408,
697,
12747,
411,
263,
26529,
13944,
773,
18838,
279,
8837,
310,
278,
5101,
2427,
29924,
2053,
4650,
1262,
322,
278,
10110,
395,
29893,
29918,
29954,
29898,
29896,
29905,
9356,
269,
3892,
13670,
726,
786,
29912,
2273,
15609,
29879,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29893,
29918,
29954,
4935,
512,
916,
3838,
29892,
278,
1302,
2467,
7555,
12259,
3331,
726,
786,
29912,
2273,
7920,
373,
7555,
1942,
476,
1042,
338,
278,
6426,
1302,
2467,
8762,
491,
278,
5190,
653,
2046,
29956,
29901,
7607,
29924,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29893,
29918,
29954,
6622,
2144,
262,
341,
13670,
1942,
476,
1012,
9356,
315,
6622,
29898,
29954,
8106,
3997,
13,
13,
3112,
4477,
393,
565,
2427,
29909,
2053,
4181,
1262,
338,
263,
1302,
2467,
769,
395,
29896,
648,
29924,
29898,
29909,
11383,
9356,
399,
29938,
338,
263,
12211,
4181,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
8435,
29899,
29883,
542,
13317,
29889,
3384,
866,
278,
13499,
28179,
1302,
2467,
491,
6118,
4181,
29905,
9356,
24563,
399,
2013,
9158,
29912,
3253,
2119,
29896,
29905,
9356,
399,
2144,
6034,
3441,
4181,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
7690,
3997,
1987,
278,
24420,
1190,
6929,
779,
9492,
29918,
29909,
741,
17308,
29913,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29905,
517,
319,
29905,
9356,
741,
1942,
476,
1042,
338,
7555,
12259,
1157,
741,
12259,
1012,
4181,
7402,
1194,
4181,
29905,
9356,
24563,
399,
1262,
1592,
27432,
424,
29889,
13,
13,
29961,
1184,
3283,
30081,
3199,
29913,
2400,
338,
263,
11736,
2785,
310,
518,
29992,
29888,
3208,
9779,
30081,
29896,
29892,
10734,
11894,
30081,
29896,
29889,
29896,
29953,
1402,
322,
591,
2106,
372,
28269,
363,
19192,
3407,
29889,
3824,
591,
14944,
278,
12785,
393,
674,
14405,
304,
1207,
278,
3229,
310,
278,
26619,
29901,
13,
13,
13696,
1241,
278,
1494,
13722,
30081,
29901,
6118,
29916,
962,
271,
2126,
29992,
29907,
29899,
29906,
29900,
415,
29912,
13,
29898,
29909,
29905,
9356,
741,
1942,
476,
11606,
2273,
1355,
1665,
4181,
29905,
9356,
24563,
399,
29913,
402,
13,
29905,
279,
28312,
15110,
4400,
21478,
29962,
21583,
741,
6642,
29918,
29909,
2403,
2612,
27798,
13,
29905,
279,
29961,
1289,
29962,
648,
1194,
2876,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
2273,
1355,
402,
29913,
13,
29905,
279,
29961,
7707,
29962,
1665,
5981,
648,
29896,
29905,
9356,
399,
930,
3823,
27798,
13,
12774,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
2144,
9356,
741,
1942,
476,
1012,
279,
29961,
1289,
29962,
998,
1194,
2876,
29905,
2273,
1355,
402,
2144,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
930,
13,
1966,
13,
29987,
29898,
29909,
29905,
9356,
741,
1942,
476,
11606,
2273,
1355,
1665,
4181,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
930,
402,
13,
29905,
279,
29915,
29961,
29881,
29962,
998,
1194,
2876,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
2273,
1355,
402,
4400,
1289,
29962,
13,
29905,
279,
29961,
332,
29962,
3823,
27798,
13,
1966,
13,
29924,
3552,
29933,
29905,
9356,
741,
1942,
476,
11606,
2273,
1355,
1665,
5463,
29905,
9356,
24563,
399,
29913,
402,
29897,
13,
29905,
279,
28312,
15110,
4400,
21478,
29962,
29985,
11891,
29946,
21964,
6642,
29918,
29933,
2403,
11891,
29946,
2144,
27798,
13,
29905,
279,
29961,
7707,
29962,
1665,
5981,
648,
29896,
29905,
9356,
399,
930,
3823,
27798,
13,
12774,
29924,
3552,
29933,
29905,
2273,
1355,
3187,
5463,
402,
2144,
9356,
741,
1942,
476,
1800,
13,
1966,
13,
29987,
29924,
3552,
29933,
29905,
9356,
2802,
1942,
476,
11606,
2273,
1355,
1665,
5463,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
930,
402,
467,
13,
29905,
279,
29961,
332,
29962,
3823,
27798,
13,
9458,
13,
13,
1576,
7568,
13267,
15879,
16578,
779,
5981,
29938,
338,
278,
26116,
6942,
304,
278,
12211,
4181,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
8435,
29899,
29883,
542,
13317,
395,
29896,
648,
29924,
29898,
29909,
11383,
9356,
399,
1628,
322,
338,
2046,
741,
12259,
3331,
4181,
29905,
9356,
24563,
399,
7402,
741,
12259,
3331,
4181,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
930,
3997,
1592,
27432,
424,
29892,
322,
22829,
278,
5224,
13267,
15879,
16578,
338,
7555,
12259,
3331,
5463,
29905,
9356,
24563,
399,
7402,
741,
12259,
3331,
5463,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
7920,
1592,
27432,
424,
29889,
13,
13,
1576,
7568,
302,
27374,
16578,
338,
278,
26116,
6118,
463,
29912,
13671,
29913,
13,
29987,
29898,
29926,
29918,
29909,
3823,
4181,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
6353,
1942,
476,
11606,
3706,
313,
29926,
29918,
29954,
3823,
4181,
29905,
9356,
29871,
29896,
648,
29924,
13670,
1942,
476,
1800,
9594,
29905,
355,
29912,
13671,
9458,
322,
338,
2046,
741,
12259,
3331,
4181,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
930,
29899,
13670,
12259,
1012,
4181,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
8435,
29938,
1592,
27432,
424,
29892,
322,
22829,
278,
5224,
302,
27374,
16578,
338,
7555,
12259,
3331,
5463,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
930,
29899,
13670,
12259,
1012,
5463,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
8435,
1592,
27432,
424,
29889,
13,
13,
1576,
2175,
29899,
3179,
11408,
16578,
338,
278,
21692,
3234,
310,
278,
2046,
1194,
4181,
29905,
9356,
24563,
399,
6817,
1194,
5463,
29905,
9356,
24563,
399,
17085,
1592,
27432,
424,
3632,
14143,
779,
2876,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
6353,
1942,
476,
4429,
322,
22829,
278,
7256,
11408,
16578,
338,
278,
21692,
3234,
310,
779,
2876,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
4429,
541,
1286,
17878,
408,
1641,
12211,
4181,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29899,
1194,
5463,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
8435,
1592,
27432,
424,
29889,
13,
13,
1576,
1492,
29899,
3179,
11408,
16578,
338,
278,
12489,
3234,
411,
7555,
726,
741,
726,
786,
29912,
333,
930,
6353,
1942,
476,
1042,
310,
278,
21692,
3234,
779,
2876,
29905,
2273,
1355,
402,
29938,
310,
779,
2876,
1628,
322,
338,
2046,
13670,
12259,
1012,
4181,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29899,
13670,
12259,
1012,
5463,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
8435,
29938,
1592,
27432,
424,
29889,
13,
13,
1576,
7568,
14698,
16578,
779,
6642,
29918,
29909,
29938,
338,
3342,
577,
393,
278,
2246,
17205,
844,
2667,
29892,
322,
338,
2046,
741,
12259,
3331,
4181,
29905,
9356,
24563,
399,
7402,
13670,
12259,
1012,
4181,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
8435,
29938,
1592,
27432,
424,
29892,
322,
22829,
278,
5224,
14698,
16578,
779,
6642,
29918,
29933,
29938,
338,
7555,
12259,
3331,
5463,
29905,
9356,
24563,
399,
7402,
13670,
12259,
1012,
5463,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
8435,
1592,
27432,
424,
29889,
13,
13,
29905,
29961,
6642,
18899,
450,
13722,
30081,
844,
2667,
29889,
13,
13,
4013,
4477,
515,
4033,
2877,
310,
278,
13267,
15879,
322,
302,
27374,
338,
7886,
12903,
29889,
13,
13,
18278,
26418,
1934,
426,
29937,
22925,
29899,
2055,
329,
1934,
869,
348,
4537,
287,
29913,
13,
2683,
5634,
13,
13,
3644,
779,
29875,
4616,
741,
17308,
3331,
1942,
476,
1012,
517,
341,
29898,
29909,
1262,
338,
263,
1661,
311,
17158,
3632,
14143,
29892,
278,
334,
29938,
29909,
4388,
22925,
26418,
424,
310,
7555,
1942,
476,
1042,
29930,
338,
2046,
29907,
29898,
29909,
2053,
29875,
4616,
1125,
27805,
29885,
29905,
262,
341,
29898,
29909,
1125,
29885,
29905,
29875,
4616,
29898,
29895,
7950,
29875,
4616,
29898,
29895,
29897,
29885,
29905,
262,
319,
29905,
726,
29912,
363,
599,
500,
29895,
29905,
262,
741,
1942,
476,
1012,
1836,
3997,
450,
24420,
26116,
779,
3416,
29918,
29909,
741,
17308,
29913,
29907,
29898,
29909,
2053,
29875,
4616,
2144,
9356,
741,
1942,
476,
3331,
957,
842,
741,
27798,
3331,
24225,
930,
29909,
29938,
338,
10087,
491,
779,
3416,
29898,
29885,
29905,
9356,
413,
3892,
29885,
29905,
29875,
4616,
29898,
29895,
1262,
313,
4149,
518,
29992,
29888,
3208,
5240,
935,
30081,
29941,
29889,
29896,
29962,
322,
518,
29992,
2901,
29939,
13844,
22206,
30081,
29941,
29889,
29946,
14664,
13,
13,
2887,
23808,
5366,
1960,
29892,
395,
29907,
29898,
29909,
2053,
29875,
4616,
1262,
508,
367,
2931,
1891,
408,
278,
5412,
5764,
11306,
395,
29999,
29938,
310,
395,
29924,
29898,
29909,
1262,
393,
844,
2667,
1543,
3538,
411,
779,
29875,
4616,
13670,
1942,
476,
8435,
322,
17150,
779,
9158,
29930,
741,
6875,
741,
9158,
19740,
9653,
20388,
29912,
29999,
29905,
29875,
4616,
13670,
1942,
476,
11606,
5369,
29909,
1628,
1951,
12604,
368,
1316,
263,
395,
29999,
29938,
338,
11122,
297,
395,
29907,
29898,
29909,
2053,
29875,
4616,
1262,
1550,
373,
278,
916,
1361,
278,
26116,
779,
3416,
29918,
29909,
29938,
3697,
393,
395,
29999,
29938,
2609,
367,
263,
1571,
11306,
310,
395,
29907,
29898,
29909,
2053,
29875,
4616,
4935,
13,
13,
17351,
29892,
395,
29924,
29898,
29907,
29898,
29909,
2053,
29875,
4616,
23846,
508,
367,
2931,
1891,
408,
278,
731,
310,
599,
3161,
310,
395,
29924,
29898,
29909,
1262,
844,
17068,
411,
278,
1967,
310,
779,
29875,
4616,
1628,
1951,
445,
731,
338,
278,
10839,
3950,
310,
278,
1661,
311,
17158,
1014,
15742,
395,
29907,
29898,
29909,
2053,
29875,
4616,
1262,
310,
395,
29924,
29898,
29909,
1262,
313,
4149,
518,
29992,
2901,
29939,
13844,
11894,
30081,
29941,
29889,
29953,
1402,
5136,
6703,
518,
29992,
29888,
3208,
5240,
935,
30081,
29941,
29889,
29896,
29962,
1449,
467,
13,
13,
29938,
29907,
6622,
4388,
2616,
3636,
2063,
426,
29937,
29883,
29899,
2616,
3636,
2063,
869,
348,
4537,
287,
29913,
13,
2683,
23648,
13,
13,
4806,
2737,
304,
518,
29992,
264,
305,
309,
1114,
29936,
732,
29931,
749,
29962,
363,
278,
6996,
15848,
322,
17099,
591,
674,
817,
11211,
395,
29907,
6622,
4388,
2616,
3636,
2063,
313,
4187,
4443,
393,
297,
518,
29992,
264,
305,
309,
1114,
29962,
3928,
2063,
526,
2000,
334,
1266,
29899,
29950,
309,
2151,
289,
326,
397,
2540,
29930,
467,
530,
395,
29909,
29899,
29933,
29938,
3928,
663,
395,
29990,
29938,
338,
334,
5464,
311,
17158,
29930,
565,
395,
6604,
29922,
29990,
1628,
322,
591,
2337,
5251,
393,
1749,
3928,
2063,
526,
1661,
311,
17158,
29889,
960,
395,
29979,
29938,
338,
263,
395,
29907,
29899,
29928,
29938,
3928,
663,
322,
779,
1631,
741,
17308,
29913,
29909,
29905,
517,
341,
29898,
29907,
1262,
322,
779,
4650,
741,
17308,
29913,
29933,
29905,
517,
341,
29898,
29928,
1262,
526,
1661,
311,
17158,
3632,
7886,
12903,
29892,
263,
779,
1631,
2612,
4650,
29938,
15878,
3928,
663,
3632,
14143,
779,
6134,
741,
17308,
29913,
29990,
29905,
517,
341,
29898,
29979,
1262,
338,
334,
5464,
311,
17158,
29930,
565,
779,
9158,
29930,
741,
6875,
741,
9158,
19740,
9653,
20388,
741,
6134,
29898,
29990,
29897,
29928,
29905,
5369,
29979,
1504,
960,
779,
4181,
29938,
322,
779,
5463,
29938,
526,
1302,
7387,
310,
395,
29954,
29938,
373,
395,
29909,
29938,
322,
395,
29933,
1628,
8307,
29892,
263,
334,
1111,
2467,
29930,
310,
395,
29954,
29938,
373,
395,
29990,
29938,
338,
263,
1661,
311,
17158,
779,
4181,
2612,
5463,
29938,
3928,
663,
3632,
14143,
779,
11327,
741,
17308,
29913,
29990,
29905,
517,
341,
29898,
29990,
29905,
9356,
315,
6622,
29898,
29954,
23846,
1316,
393,
779,
9158,
29930,
741,
6875,
741,
9158,
19740,
9653,
20388,
8001,
29896,
29905,
9356,
315,
6622,
29898,
29954,
28986,
11327,
29898,
29990,
2144,
5369,
29990,
29905,
9356,
315,
6622,
29898,
29954,
1262,
322,
12211,
11327,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
6034,
29905,
11327,
7607,
741,
726,
741,
726,
786,
29912,
333,
20388,
9356,
29905,
4181,
29918,
29954,
2144,
6034,
29905,
11327,
29938,
313,
392,
769,
779,
9158,
29930,
741,
6875,
741,
9158,
19740,
9653,
20388,
741,
11327,
29898,
29990,
5033,
29896,
29905,
9356,
315,
6622,
29898,
29954,
28986,
5369,
29990,
29905,
9356,
315,
6622,
29898,
29954,
1262,
6336,
8640,
467,
960,
395,
29990,
29938,
338,
385,
395,
29909,
29899,
29933,
29938,
3928,
663,
322,
395,
29979,
29938,
338,
263,
395,
29933,
29899,
29907,
29938,
3928,
663,
769,
363,
738,
395,
29907,
6622,
4388,
15742,
395,
29928,
29938,
727,
338,
385,
26116,
6118,
17458,
741,
17308,
2119,
29990,
29905,
9356,
360,
2144,
9356,
648,
29933,
29905,
9356,
360,
29913,
313,
29979,
29905,
9356,
360,
21964,
957,
842,
741,
27798,
3331,
24225,
12156,
29990,
29905,
9356,
29918,
29933,
612,
2144,
9356,
360,
3997,
310,
2427,
29909,
29905,
9356,
360,
6817,
29898,
29907,
29905,
9356,
360,
1262,
3928,
2063,
29892,
2183,
491,
6118,
17458,
29905,
3752,
29880,
3552,
29916,
29905,
9356,
270,
2144,
9356,
313,
29891,
29905,
9356,
270,
1495,
29905,
3752,
29878,
3892,
29898,
29916,
29905,
9356,
343,
2144,
9356,
24488,
29915,
741,
3425,
29905,
726,
29912,
1454,
9156,
29916,
29905,
262,
1060,
29892,
29891,
29905,
262,
612,
29892,
29881,
29892,
29881,
12764,
262,
360,
29892,
3997,
322,
591,
671,
445,
304,
883,
334,
5521,
8362,
12489,
9316,
310,
1302,
7387,
29930,
408,
4477,
29901,
2183,
263,
779,
4181,
2612,
5463,
29938,
15878,
1302,
2467,
779,
11327,
29938,
373,
395,
29990,
29938,
322,
385,
779,
5463,
2612,
6827,
29938,
15878,
1302,
2467,
779,
1187,
29938,
373,
395,
29979,
1628,
591,
679,
263,
779,
4181,
2612,
6827,
29938,
15878,
1302,
2467,
6118,
11327,
741,
755,
2674,
741,
22064,
15609,
29933,
320,
1187,
29901,
2013,
17458,
29905,
6034,
3441,
11327,
29905,
9356,
29918,
29933,
29905,
1187,
17085,
373,
395,
29990,
29905,
9356,
29918,
29933,
612,
1504,
13,
13,
12283,
311,
17158,
13997,
322,
2090,
14359,
426,
29937,
20683,
29913,
13,
9166,
9166,
2751,
29922,
13,
13,
29907,
14404,
426,
29937,
20683,
869,
348,
4537,
287,
29913,
13,
28400,
13,
13,
4806,
674,
17386,
777,
13997,
515,
518,
29992,
2901,
29939,
1049,
17569,
29962,
322,
518,
29992,
2901,
29939,
13844,
29962,
313,
392,
518,
29992,
264,
305,
309,
1114,
11724,
322,
591,
674,
14944,
263,
2846,
901,
29889,
17296,
674,
367,
2729,
2501,
278,
334,
5464,
311,
17158,
7663,
7555,
2762,
29912,
29907,
2137,
29930,
1042,
310,
395,
29907,
6622,
4388,
284,
28200,
15966,
988,
263,
18131,
1608,
779,
2876,
741,
17308,
29913,
29909,
29905,
517,
350,
29938,
338,
263,
1661,
311,
17158,
3632,
14143,
779,
2876,
741,
17308,
29913,
29909,
29905,
517,
341,
29898,
29933,
4935,
2648,
1661,
311,
4738,
4135,
779,
2876,
29938,
756,
263,
24420,
6081,
7555,
6875,
1012,
2876,
741,
17308,
29913,
29924,
29898,
29909,
2144,
517,
341,
29898,
29933,
5767,
5998,
13672,
591,
633,
1509,
12640,
491,
5432,
278,
6081,
779,
2876,
29938,
884,
29889,
3118,
18697,
3682,
304,
445,
633,
375,
573,
15687,
10008,
297,
518,
13438,
30081,
3199,
1118,
988,
591,
505,
304,
5146,
17649,
8570,
304,
278,
17752,
7555,
6875,
1012,
2876,
1504,
13,
13,
1576,
334,
5464,
311,
17158,
7663,
7555,
2762,
29912,
7967,
7920,
310,
1302,
7387,
29930,
756,
1302,
7387,
2427,
29909,
2053,
4181,
1262,
310,
395,
29954,
29938,
408,
3618,
29892,
322,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
297,
7555,
2762,
29912,
7967,
7920,
338,
263,
18131,
1608,
779,
2876,
741,
17308,
29913,
29909,
29905,
517,
350,
29938,
297,
7555,
2762,
29912,
29907,
2137,
29930,
1042,
393,
338,
334,
4535,
4181,
2612,
5463,
29938,
1592,
27432,
424,
10521,
1334,
2436,
7555,
2762,
29912,
7967,
24251,
29885,
29938,
363,
278,
2989,
1014,
7320,
310,
7555,
2762,
29912,
7967,
7920,
5069,
3618,
526,
278,
23183,
1302,
7387,
29892,
322,
7555,
2762,
29912,
7967,
24251,
29876,
29938,
363,
278,
2989,
1014,
7320,
310,
4226,
1302,
7387,
29889,
13,
13,
1576,
334,
5464,
311,
17158,
7663,
7555,
2762,
29912,
10644,
7920,
310,
8820,
29930,
756,
8820,
2427,
29909,
2053,
2312,
1262,
310,
395,
29954,
29938,
408,
3618,
29892,
322,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
2312,
2144,
517,
313,
29933,
2053,
3571,
1262,
297,
7555,
2762,
29912,
10644,
7920,
338,
263,
18131,
1608,
779,
2876,
741,
17308,
29913,
29909,
29905,
517,
350,
29938,
297,
7555,
2762,
29912,
29907,
2137,
29930,
1042,
393,
338,
334,
4535,
2312,
2612,
3571,
29938,
1592,
27432,
424,
10521,
13,
13,
4806,
13530,
278,
6776,
5897,
7663,
313,
29874,
4266,
1206,
310,
263,
334,
510,
655,
7663,
7528,
310,
8820,
1090,
2427,
29907,
29918,
29900,
29898,
29954,
511,
741,
726,
786,
29912,
2273,
930,
1262,
491,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
4429,
322,
591,
13530,
385,
1203,
491,
2427,
29909,
2053,
2312,
2053,
2589,
5767,
988,
779,
2589,
741,
17308,
2119,
29907,
29918,
29900,
29898,
29954,
511,
741,
726,
786,
29912,
2273,
930,
2144,
517,
313,
29909,
2053,
2312,
1262,
338,
263,
18131,
1608,
297,
7555,
2762,
29912,
10644,
26253,
6549,
29892,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
297,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
338,
263,
844,
17068,
17205,
6118,
29916,
962,
271,
2126,
29912,
13,
29987,
29898,
29907,
29918,
29900,
29898,
29954,
511,
741,
726,
786,
29912,
2273,
24289,
320,
279,
29961,
11671,
29962,
3187,
2589,
320,
279,
29961,
7707,
29962,
3823,
3433,
13,
1966,
13,
29898,
29909,
2053,
2312,
29897,
320,
279,
29961,
21478,
29962,
3823,
2876,
13,
12774,
29898,
29933,
2053,
3571,
29897,
13,
9458,
297,
7555,
2762,
29912,
10644,
26253,
1334,
1246,
385,
1203,
297,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
385,
334,
9402,
1306,
424,
3158,
29930,
518,
29992,
2901,
29939,
1049,
17569,
21940,
30081,
29906,
29889,
29947,
1822,
13,
13,
4806,
13530,
278,
6776,
5897,
7663,
310,
395,
29907,
6622,
4388,
284,
28200,
1090,
7555,
1942,
476,
1042,
491,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
27206,
322,
591,
13530,
385,
1203,
491,
2427,
29909,
2053,
29875,
4616,
5767,
988,
779,
29875,
4616,
741,
17308,
3331,
1942,
476,
1012,
517,
319,
29938,
338,
263,
18131,
1608,
297,
7555,
2762,
29912,
29907,
2137,
29930,
4311,
6549,
29892,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
29926,
755,
1262,
297,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7920,
338,
263,
844,
17068,
17205,
6118,
29916,
962,
271,
2126,
29912,
13,
29987,
741,
1942,
476,
1012,
279,
29961,
11671,
29962,
1665,
29875,
4616,
29913,
320,
279,
29961,
7707,
29962,
3311,
29926,
755,
29913,
13,
1966,
13,
29909,
320,
279,
29961,
21478,
29962,
3823,
2876,
13,
12774,
29933,
13,
9458,
297,
7555,
2762,
29912,
29907,
2137,
29930,
4311,
1334,
1246,
385,
1203,
297,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7920,
263,
334,
29938,
741,
1942,
476,
23021,
15742,
10521,
13,
13,
4806,
13530,
278,
6776,
5897,
7663,
310,
1302,
7387,
1090,
278,
12604,
1302,
2467,
2427,
741,
1942,
476,
1118,
741,
4181,
1665,
726,
786,
29912,
29873,
1150,
930,
8435,
491,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
4429,
322,
591,
13530,
385,
1203,
491,
2427,
29909,
2053,
4181,
2053,
29875,
4616,
5767,
988,
779,
29875,
4616,
741,
17308,
2119,
741,
1942,
476,
1118,
741,
4181,
1665,
726,
786,
29912,
29873,
1150,
930,
11606,
517,
313,
29909,
2053,
4181,
1262,
338,
263,
18131,
1608,
297,
7555,
2762,
29912,
7967,
27206,
474,
29889,
29872,
1696,
779,
4181,
29905,
6034,
29905,
29875,
4616,
2013,
29875,
4616,
29905,
9356,
29871,
29896,
1504,
6549,
29892,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
4181,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
5463,
2053,
29926,
755,
1262,
297,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1042,
338,
263,
844,
17068,
17205,
6118,
29916,
962,
271,
2126,
29912,
13,
29987,
13670,
1942,
476,
1118,
741,
4181,
1665,
726,
786,
29912,
29873,
1150,
930,
1800,
320,
279,
29961,
11671,
29962,
1665,
29875,
4616,
29913,
320,
279,
29961,
7707,
29962,
3311,
29926,
755,
29913,
13,
1966,
13,
29898,
29909,
2053,
4181,
29897,
320,
279,
29961,
21478,
29962,
3823,
2876,
13,
12774,
29898,
29933,
2053,
5463,
29897,
13,
9458,
297,
7555,
2762,
29912,
7967,
27206,
474,
29889,
29872,
1696,
779,
2876,
741,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
338,
263,
18131,
1608,
297,
7555,
2762,
29912,
7967,
7920,
322,
779,
2876,
741,
17308,
2119,
29909,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
29926,
755,
1262,
338,
263,
18131,
1608,
297,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
26253,
1334,
1246,
385,
1203,
297,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1042,
263,
334,
29938,
741,
1942,
476,
23021,
1111,
2467,
10521,
13,
13,
797,
518,
29992,
2901,
29939,
1049,
17569,
3323,
2042,
30081,
29945,
29889,
29896,
29962,
591,
1304,
278,
451,
800,
6435,
741,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
299,
930,
1042,
363,
7555,
2762,
29912,
29907,
2137,
29930,
1042,
322,
6435,
741,
2762,
29912,
10644,
29261,
2762,
29912,
299,
930,
1042,
363,
7555,
2762,
29912,
10644,
26253,
512,
518,
29992,
2901,
29939,
1049,
17569,
3323,
2042,
30081,
29953,
29889,
29896,
29962,
591,
5456,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
299,
930,
1042,
363,
278,
2989,
1014,
7320,
310,
278,
2198,
7663,
7555,
2762,
29912,
7967,
7920,
5069,
3618,
526,
278,
4226,
1302,
7387,
29892,
322,
395,
6224,
741,
726,
786,
29912,
2273,
4229,
726,
8499,
1157,
741,
2762,
29912,
10644,
930,
7585,
3187,
2762,
29912,
299,
930,
1042,
363,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
313,
392,
2000,
372,
278,
334,
5464,
311,
17158,
1592,
27432,
424,
7663,
310,
8820,
29930,
467,
512,
518,
29992,
2901,
29939,
13844,
21940,
30081,
29946,
29889,
29896,
29962,
591,
1304,
278,
12640,
6435,
741,
1942,
476,
1012,
9903,
726,
29912,
448,
17704,
29991,
16195,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
299,
930,
7920,
363,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
26253,
13,
13,
25394,
14359,
426,
29937,
7692,
14359,
869,
348,
4537,
287,
29913,
13,
1378,
13,
13,
6730,
29892,
591,
4529,
263,
2090,
2801,
6118,
9158,
29912,
6271,
29907,
3331,
17308,
3331,
2762,
29912,
7967,
4229,
517,
426,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
9458,
373,
3618,
491,
6118,
9158,
29912,
6271,
29907,
2119,
29909,
2053,
4181,
3892,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
29892,
29926,
29918,
29954,
511,
3997,
322,
373,
18131,
12903,
408,
4477,
29901,
565,
779,
2876,
29905,
17308,
313,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
338,
263,
18131,
1608,
297,
7555,
2762,
29912,
7967,
7920,
769,
6118,
9158,
29912,
6271,
29907,
4678,
2876,
21964,
17308,
2119,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
29892,
29926,
29918,
29954,
3823,
4181,
2144,
517,
313,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29892,
741,
12259,
1012,
5463,
29892,
29926,
29918,
29954,
3823,
5463,
17085,
338,
278,
18131,
1608,
297,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
2183,
491,
779,
9158,
29912,
6271,
29907,
4678,
2876,
7950,
2876,
29905,
2273,
1355,
402,
1504,
13,
13,
4806,
864,
304,
671,
1592,
27432,
424,
8820,
304,
5706,
7555,
1942,
476,
23021,
1111,
7387,
29889,
11221,
385,
1592,
27432,
424,
3158,
2427,
29909,
2053,
2312,
2053,
2589,
5767,
591,
508,
883,
278,
14581,
1302,
2467,
2427,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
12259,
1012,
2312,
5767,
322,
591,
508,
884,
883,
278,
7555,
1942,
476,
23021,
15742,
2427,
29909,
29905,
2273,
1355,
3187,
2312,
402,
2053,
2589,
29905,
2273,
1355,
402,
4935,
1205,
727,
338,
263,
12059,
280,
1017,
29901,
372,
338,
4780,
304,
1074,
393,
7555,
12259,
1012,
2312,
29938,
338,
451,
12604,
373,
278,
1967,
310,
779,
2589,
29905,
2273,
1355,
402,
1504,
1334,
817,
304,
22786,
278,
1302,
2467,
491,
263,
274,
542,
13317,
29892,
322,
591,
7744,
263,
11043,
515,
518,
29992,
27525,
284,
11894,
30081,
29941,
29889,
29953,
5387,
13,
13,
29905,
29961,
29883,
542,
13317,
18899,
2803,
2427,
29909,
2053,
2312,
2053,
2589,
1262,
367,
385,
1592,
27432,
424,
3158,
29889,
22402,
2046,
29963,
29918,
29909,
2013,
3752,
29880,
3552,
29875,
29918,
29909,
29905,
6034,
29905,
2589,
2144,
9356,
741,
726,
741,
726,
786,
29912,
333,
20388,
3752,
29878,
5033,
29893,
29918,
29954,
2144,
262,
341,
29905,
3752,
29880,
3552,
29909,
29905,
2273,
1355,
3187,
2312,
402,
2144,
9356,
315,
6622,
29898,
29954,
2144,
3752,
29878,
467,
3997,
1987,
395,
29963,
29918,
29909,
29938,
338,
385,
7555,
12259,
1012,
2312,
4388,
29883,
542,
13317,
29889,
3384,
866,
278,
13499,
28179,
1302,
2467,
491,
2046,
741,
10737,
1012,
2312,
29901,
2013,
9158,
29912,
3253,
29913,
29963,
29918,
29909,
29905,
6034,
2802,
12259,
1012,
2312,
19470,
1987,
2427,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
10737,
1012,
2312,
2053,
2589,
29905,
2273,
1355,
402,
1262,
338,
263,
23183,
7555,
1942,
476,
23021,
1111,
2467,
29889,
13,
13,
4806,
1033,
3394,
278,
5296,
515,
518,
29992,
27525,
284,
8836,
8247,
30081,
29941,
29889,
29953,
29994,
29941,
29889,
29955,
29962,
304,
1510,
393,
395,
29963,
29918,
29909,
29938,
338,
385,
7555,
12259,
1012,
2312,
4388,
29883,
542,
13317,
322,
7555,
10737,
1012,
2312,
29938,
338,
12604,
373,
278,
1967,
310,
779,
2589,
29905,
2273,
1355,
402,
1628,
1363,
491,
3172,
17569,
868,
2877,
518,
29992,
29984,
1481,
22677,
17569,
10244,
30081,
29941,
29889,
29941,
29962,
278,
1592,
27432,
424,
3158,
2427,
29909,
2053,
2312,
2053,
2589,
1262,
338,
338,
16898,
304,
697,
310,
278,
883,
2427,
29933,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
29892,
29926,
29918,
29954,
1262,
363,
263,
1302,
2467,
2427,
29933,
2053,
4181,
4935,
1334,
5821,
304,
671,
278,
15483,
310,
274,
22502,
7799,
901,
4153,
29892,
3138,
29901,
779,
2589,
741,
17308,
2119,
29907,
29918,
29900,
29898,
29954,
511,
741,
726,
786,
29912,
2273,
930,
2144,
517,
313,
29909,
2053,
2312,
1262,
338,
263,
18131,
1608,
297,
7555,
2762,
29912,
10644,
27206,
577,
6118,
2589,
29905,
2273,
1355,
402,
741,
17308,
2119,
741,
1942,
476,
1118,
741,
12259,
3331,
726,
786,
29912,
2273,
930,
2144,
517,
313,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
12259,
1012,
2312,
17085,
338,
263,
18131,
1608,
297,
7555,
2762,
29912,
7967,
27206,
988,
591,
17386,
393,
591,
526,
29759,
1403,
1218,
7555,
1942,
476,
5369,
741,
1942,
476,
2119,
29931,
29985,
29906,
29898,
29954,
876,
1504,
450,
5190,
653,
2046,
29898,
29924,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29893,
29918,
29954,
17085,
338,
263,
7555,
12259,
3331,
726,
786,
29912,
2273,
930,
4388,
29883,
542,
13317,
29892,
577,
6118,
463,
29912,
13671,
29913,
13,
29905,
3752,
29880,
29898,
1194,
2589,
29905,
2273,
1355,
402,
2144,
9356,
741,
726,
741,
726,
786,
29912,
333,
20388,
3752,
29878,
2144,
3752,
29880,
3552,
29924,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29893,
29918,
29954,
2144,
3752,
29878,
29897,
13,
29987,
2013,
3752,
29880,
3552,
29875,
29918,
29909,
29905,
6034,
29905,
2589,
2144,
9356,
741,
726,
741,
726,
786,
29912,
333,
20388,
3752,
29878,
5033,
29893,
29918,
29954,
2144,
355,
29912,
13671,
9458,
338,
385,
7555,
12259,
1012,
2312,
4388,
29883,
542,
13317,
29889,
13,
13,
29943,
332,
721,
29892,
17386,
393,
278,
13499,
28179,
1302,
2467,
779,
9158,
29912,
3253,
2119,
29924,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29893,
29918,
29954,
2144,
6034,
741,
12259,
3331,
726,
786,
29912,
2273,
7920,
338,
12604,
29889,
4001,
779,
2589,
29905,
2273,
1355,
402,
741,
17308,
3331,
1942,
476,
1012,
517,
341,
29898,
29909,
29905,
2273,
1355,
3187,
2312,
402,
1262,
338,
7555,
12259,
3331,
726,
786,
29912,
2273,
930,
29899,
741,
12259,
1012,
2312,
29938,
1592,
27432,
424,
29892,
372,
4477,
393,
779,
9158,
29912,
3253,
29913,
29963,
29918,
29909,
29905,
6034,
741,
12259,
1012,
2312,
29938,
338,
12604,
373,
278,
1967,
310,
779,
2589,
29905,
2273,
1355,
402,
1504,
13,
13,
12881,
635,
29892,
278,
14581,
1302,
2467,
7555,
12259,
1012,
2312,
29938,
338,
23183,
491,
518,
29992,
27525,
284,
22206,
30081,
29941,
29889,
29946,
1402,
322,
8151,
577,
338,
278,
3879,
2028,
7126,
1302,
2467,
7555,
10737,
1012,
2312,
29938,
491,
518,
29992,
27525,
284,
22206,
30081,
29941,
29889,
29945,
1822,
13,
13,
9190,
29892,
591,
4529,
263,
2090,
2801,
6118,
9158,
29912,
6271,
29909,
3331,
17308,
1157,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
20388,
517,
426,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
9458,
373,
3618,
491,
6118,
9158,
29912,
6271,
29909,
2119,
29909,
2053,
2312,
2053,
2589,
3892,
29898,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
10737,
1012,
2312,
2053,
2589,
29905,
2273,
1355,
402,
511,
3997,
322,
373,
18131,
12903,
408,
4477,
29901,
565,
779,
2876,
29905,
17308,
313,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
338,
263,
18131,
1608,
297,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
769,
6118,
9158,
29912,
6271,
29909,
4678,
2876,
21964,
17308,
2119,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
10737,
1012,
2312,
2053,
2589,
29905,
2273,
1355,
402,
2144,
517,
313,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29892,
741,
10737,
1012,
3571,
2053,
3433,
29905,
2273,
1355,
402,
17085,
338,
278,
18131,
1608,
297,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1042,
2183,
491,
779,
9158,
29912,
6271,
29909,
4678,
2876,
7950,
2876,
29905,
2273,
1355,
402,
1504,
13,
13,
3112,
4477,
515,
518,
29992,
2901,
29939,
13844,
10244,
30081,
29946,
29889,
29946,
29962,
313,
4149,
884,
518,
29992,
2901,
29939,
13844,
21940,
30081,
29946,
29889,
29945,
2314,
393,
727,
338,
263,
2090,
2801,
515,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7920,
304,
7555,
2762,
29912,
29907,
2137,
29930,
1042,
393,
4893,
385,
1203,
2427,
29909,
2053,
29875,
4616,
1262,
304,
278,
395,
29909,
4388,
22925,
26418,
424,
395,
29907,
29898,
29909,
2053,
29875,
4616,
1262,
310,
7555,
1942,
476,
1042,
322,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
29926,
755,
1262,
304,
2046,
29907,
1194,
2876,
7950,
2876,
26632,
29907,
29898,
29909,
2053,
29875,
4616,
19230,
3997,
322,
393,
338,
25409,
263,
16452,
29899,
262,
3901,
310,
278,
334,
303,
4427,
2133,
2090,
2801,
29930,
2183,
491,
395,
29909,
29905,
17499,
319,
29905,
9356,
741,
1942,
476,
1042,
322,
779,
2876,
29905,
17499,
320,
2876,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
6353,
1942,
476,
4311,
13,
13,
4806,
817,
385,
1592,
27432,
424,
1873,
310,
445,
2090,
2801,
29892,
322,
591,
817,
304,
1074,
825,
304,
437,
411,
1302,
7387,
29889,
23808,
29360,
297,
518,
29992,
29888,
3208,
5240,
935,
30081,
29941,
29889,
29906,
29962,
393,
779,
4181,
29938,
9250,
29879,
304,
263,
1302,
2467,
373,
278,
6198,
26418,
424,
395,
29907,
29898,
29909,
2053,
29875,
4616,
4935,
1763,
3013,
1749,
14502,
310,
278,
23808,
7632,
1583,
29899,
1285,
7114,
29892,
591,
11421,
263,
5296,
313,
5747,
338,
2788,
304,
29892,
541,
451,
3755,
278,
1021,
408,
29892,
278,
697,
297,
518,
29992,
29888,
3208,
29962,
1125,
13,
13,
29905,
29961,
1111,
627,
26418,
424,
18899,
2803,
2427,
29909,
2053,
4181,
2053,
29875,
4616,
1262,
367,
263,
7555,
1942,
476,
23021,
1111,
2467,
29889,
1987,
779,
4181,
29938,
9250,
29879,
304,
263,
1302,
2467,
395,
29907,
1194,
4181,
1262,
373,
395,
29907,
29898,
29909,
2053,
29875,
4616,
4935,
12808,
29892,
278,
24420,
26116,
6118,
3416,
29918,
29909,
741,
17308,
29913,
29907,
29898,
29909,
2053,
29875,
4616,
2144,
9356,
741,
1942,
476,
3331,
957,
842,
741,
27798,
3331,
24225,
930,
29909,
3997,
338,
2427,
29907,
1194,
4181,
2144,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
2612,
4181,
29938,
1592,
27432,
424,
29889,
9788,
29892,
395,
29907,
1194,
4181,
1262,
338,
23183,
565,
322,
871,
565,
779,
4181,
29938,
338,
29889,
13,
13,
2831,
278,
937,
760,
29892,
491,
518,
29992,
8159,
1127,
11894,
30081,
29896,
29889,
29953,
313,
29890,
29897,
1402,
372,
9378,
1575,
304,
1510,
393,
6118,
1643,
29912,
5464,
311,
17158,
29913,
13,
29905,
9158,
29930,
741,
6875,
741,
9158,
19740,
9653,
20388,
3752,
29880,
24976,
4181,
29905,
3752,
29880,
29898,
29907,
29898,
29909,
2053,
29875,
4616,
2144,
3752,
29878,
2144,
3752,
29880,
29898,
29896,
29905,
9356,
315,
6622,
29898,
29954,
2144,
3752,
29878,
2144,
3752,
29878,
29905,
5369,
29907,
29898,
29909,
2053,
29875,
4616,
2144,
9356,
315,
6622,
29898,
29954,
467,
3997,
2803,
395,
29999,
29938,
13530,
278,
2175,
29899,
3179,
2625,
29889,
739,
9378,
1575,
304,
1510,
393,
13,
13,
29896,
29889,
29871,
395,
29999,
29938,
844,
2667,
1543,
3538,
411,
779,
29875,
4616,
13670,
1942,
476,
11606,
9356,
29871,
29896,
1628,
322,
13,
13,
29906,
29889,
29871,
779,
9158,
29930,
741,
6875,
741,
9158,
19740,
9653,
20388,
29912,
29999,
1194,
29875,
4616,
13670,
1942,
476,
11606,
9356,
29871,
29896,
2144,
5369,
29909,
29905,
9356,
315,
6622,
29898,
29954,
4935,
13,
13,
2831,
313,
29875,
511,
565,
395,
29874,
29905,
262,
315,
29898,
29909,
2053,
29875,
4616,
5767,
395,
29916,
29905,
262,
315,
6622,
29898,
29954,
5767,
322,
395,
29895,
29905,
262,
741,
1942,
476,
4429,
769,
6118,
463,
29912,
13671,
29913,
13,
29905,
4181,
29898,
29874,
5033,
29896,
29905,
9356,
921,
29897,
1194,
29875,
4616,
29898,
29895,
2144,
9356,
29871,
29896,
29897,
13,
29987,
2013,
4181,
29898,
29874,
29897,
1194,
29875,
4616,
29898,
29895,
2144,
9356,
29871,
29896,
5033,
29896,
29905,
9356,
921,
29897,
13,
1966,
29987,
2013,
4181,
29898,
29874,
29905,
29875,
4616,
29898,
29895,
876,
29898,
29896,
29905,
9356,
921,
29897,
13,
1966,
29987,
2013,
4181,
1194,
29875,
4616,
29898,
29895,
29897,
29874,
5033,
29896,
29905,
9356,
921,
29897,
13,
1966,
20644,
1194,
29875,
4616,
29898,
29895,
2144,
9356,
29871,
29896,
2144,
4181,
29898,
29874,
5033,
29896,
29905,
9356,
921,
467,
29905,
355,
29912,
13671,
9458,
1152,
313,
2236,
511,
278,
2038,
16287,
10469,
393,
6118,
463,
29912,
13671,
29913,
13,
29905,
9158,
29930,
741,
6875,
741,
9158,
19740,
9653,
20388,
29912,
29999,
1194,
29875,
4616,
13670,
1942,
476,
11606,
9356,
29871,
29896,
2144,
29913,
13,
29987,
2013,
9158,
29930,
741,
6875,
741,
9158,
19740,
9653,
20388,
3752,
29880,
24976,
4181,
29905,
3752,
29880,
29898,
29907,
29898,
29909,
2053,
29875,
4616,
2144,
29875,
4616,
13670,
1942,
476,
11606,
3752,
29878,
2144,
3752,
29880,
29898,
29896,
29905,
9356,
315,
6622,
29898,
29954,
2144,
3752,
29878,
2144,
3752,
29878,
18105,
13,
1966,
29987,
2013,
9158,
29930,
741,
6875,
741,
9158,
19740,
9653,
20388,
741,
4181,
29898,
29909,
5033,
29896,
29905,
9356,
315,
6622,
29898,
29954,
876,
18105,
13,
1966,
20644,
29909,
29905,
9356,
315,
6622,
29898,
29954,
467,
29905,
355,
29912,
13671,
9458,
13,
13,
6716,
28520,
12747,
278,
2427,
29907,
1194,
4181,
2144,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
2612,
4181,
29938,
1592,
440,
279,
8837,
373,
278,
1176,
4097,
395,
29874,
29905,
9356,
29871,
29896,
29938,
322,
395,
29896,
29905,
9356,
413,
29938,
363,
395,
29874,
29905,
262,
315,
29898,
29909,
2053,
29875,
4616,
1262,
322,
395,
29895,
29905,
262,
741,
1942,
476,
4311,
450,
1833,
3229,
1286,
4477,
1951,
278,
1302,
2467,
395,
29907,
1194,
4181,
2144,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
930,
1042,
338,
3879,
2028,
7126,
304,
395,
29907,
1194,
4181,
4935,
13,
13,
29961,
29931,
331,
655,
30081,
3199,
29913,
6511,
502,
304,
4529,
263,
2090,
2801,
2046,
741,
726,
786,
29912,
29928,
855,
12431,
17308,
1157,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
20388,
517,
2802,
2762,
29912,
7967,
930,
3997,
373,
3618,
491,
2046,
741,
726,
786,
29912,
29928,
855,
12156,
29909,
2053,
4181,
2053,
29875,
4616,
7950,
3752,
29880,
29898,
29907,
29898,
29909,
2053,
29875,
4616,
511,
29907,
1194,
4181,
2144,
3752,
29878,
511,
3997,
322,
373,
18131,
12903,
408,
4477,
29901,
565,
779,
2876,
741,
17308,
2119,
29909,
2053,
4181,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
5463,
2053,
29926,
755,
1262,
338,
263,
18131,
1608,
297,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1042,
769,
2046,
741,
726,
786,
29912,
29928,
855,
20828,
2876,
21964,
17308,
1012,
3752,
29880,
29898,
29907,
29898,
29909,
2053,
29875,
4616,
511,
29907,
1194,
4181,
2144,
3752,
29878,
2144,
517,
320,
3752,
29880,
29898,
29907,
29898,
29933,
2053,
29926,
755,
511,
29907,
1194,
5463,
2144,
3752,
29878,
17085,
338,
278,
18131,
1608,
297,
7555,
2762,
29912,
7967,
7920,
2183,
491,
7555,
726,
786,
29912,
29928,
855,
20828,
2876,
3892,
29907,
1194,
2876,
5767,
988,
591,
4443,
393,
278,
18131,
1608,
395,
29907,
1194,
2876,
21964,
17308,
29913,
29907,
29898,
29909,
2053,
29875,
4616,
2144,
517,
315,
29898,
29933,
2053,
29926,
755,
1262,
297,
7555,
2762,
29912,
29907,
2137,
29930,
1042,
338,
395,
29907,
1194,
4181,
6817,
29907,
1194,
5463,
1262,
1592,
27432,
424,
1951,
779,
2876,
29938,
338,
779,
4181,
2612,
5463,
29938,
1592,
27432,
424,
29889,
13,
13,
797,
518,
29992,
2901,
29939,
13844,
21940,
30081,
29946,
29889,
29945,
29962,
591,
1304,
278,
12640,
6435,
741,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
299,
930,
1042,
363,
278,
1661,
29899,
9402,
1306,
424,
2731,
4427,
2133,
2090,
2801,
2427,
29909,
2053,
29875,
4616,
2144,
17499,
315,
29898,
29909,
2053,
29875,
4616,
5767,
1550,
297,
278,
1857,
5650,
591,
671,
7555,
726,
786,
29912,
29928,
855,
7920,
304,
13530,
278,
1592,
27432,
424,
2731,
4427,
2133,
2090,
2801,
29892,
322,
2367,
694,
1024,
304,
278,
1661,
29899,
9402,
1306,
424,
1873,
29889,
13,
13,
1576,
23808,
7632,
426,
29937,
29943,
3208,
7632,
29913,
13,
9166,
4936,
13,
13,
797,
445,
4004,
591,
4529,
263,
3153,
23183,
2133,
2090,
2801,
313,
4149,
518,
14683,
30081,
3199,
29913,
2400,
467,
1334,
674,
884,
817,
304,
2737,
304,
263,
4226,
2133,
2090,
2801,
29889,
319,
2319,
758,
2576,
3821,
10679,
1795,
1371,
15544,
1749,
2948,
304,
1438,
1023,
2090,
14359,
29889,
9134,
23183,
2133,
322,
4226,
2133,
15523,
15968,
4426,
29892,
322,
445,
508,
367,
1304,
304,
664,
411,
278,
2090,
14359,
9846,
368,
29901,
363,
1342,
29892,
2748,
697,
9906,
393,
23183,
17063,
1863,
29892,
769,
697,
508,
671,
278,
11608,
936,
4853,
14910,
310,
7348,
304,
5251,
393,
263,
23183,
2133,
756,
1063,
10434,
363,
1432,
1302,
2467,
29892,
322,
769,
278,
15968,
2875,
4893,
2562,
310,
278,
18131,
12903,
29889,
2398,
29892,
591,
674,
1284,
372,
5407,
304,
505,
263,
2702,
7632,
310,
278,
23183,
2133,
310,
263,
1302,
2467,
29892,
363,
1342,
746,
1985,
411,
25236,
394,
28200,
310,
12338,
2151,
289,
326,
397,
2540,
29889,
1152,
445,
2769,
591,
674,
4529,
278,
23183,
2133,
2090,
2801,
378,
4838,
873,
29889,
20175,
363,
4226,
17063,
29892,
5998,
1244,
278,
7348,
338,
10579,
901,
16800,
29901,
591,
4529,
278,
4226,
2133,
2427,
29909,
29985,
29876,
2053,
4181,
29985,
29876,
1262,
310,
263,
1302,
2467,
2427,
29909,
2053,
4181,
1262,
491,
5622,
395,
29909,
29985,
29876,
29938,
408,
263,
13907,
13911,
993,
310,
395,
29909,
1504,
1987,
278,
15968,
2875,
4076,
263,
2090,
2801,
779,
9158,
29912,
29940,
272,
1042,
373,
278,
1661,
311,
17158,
7663,
7555,
2762,
29912,
7967,
7920,
310,
1302,
7387,
310,
395,
29954,
1504,
13,
13,
797,
518,
29992,
29888,
3208,
9779,
30081,
29941,
29962,
23808,
3386,
29879,
263,
23183,
2133,
310,
263,
1302,
2467,
2427,
29909,
2053,
4181,
4935,
12823,
29892,
23808,
1736,
297,
278,
901,
2498,
3030,
310,
1302,
7387,
491,
379,
15818,
395,
29907,
6622,
4388,
284,
28200,
29892,
607,
23025,
4547,
778,
9461,
752,
5795,
313,
14565,
408,
278,
10379,
310,
278,
23183,
2133,
467,
1281,
27284,
29892,
278,
7632,
5466,
11057,
10579,
1951,
591,
505,
4266,
1891,
304,
1302,
7387,
310,
263,
12430,
11071,
2318,
395,
29954,
1504,
2266,
591,
2198,
23808,
30010,
29879,
7632,
408,
263,
15259,
310,
2211,
2090,
14359,
29901,
13,
13,
29905,
29961,
3317,
822,
18899,
1334,
4529,
278,
334,
27525,
284,
2133,
2090,
2801,
7555,
726,
786,
29912,
7976,
7920,
29930,
491,
278,
26418,
1230,
13722,
6118,
29916,
962,
271,
2126,
29992,
29907,
29974,
29941,
29900,
415,
29912,
13,
741,
2762,
29912,
7967,
4229,
279,
29961,
29878,
29962,
21583,
741,
9158,
29912,
6271,
29907,
930,
320,
279,
29961,
29881,
29962,
24033,
726,
786,
29912,
7976,
12499,
13,
29987,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
20388,
279,
29961,
29881,
29962,
3311,
9158,
29912,
6271,
29909,
930,
13,
1966,
13,
741,
2762,
29912,
7967,
930,
29987,
16195,
1942,
476,
6822,
741,
2762,
29912,
7967,
20388,
279,
29961,
29880,
29962,
998,
741,
726,
786,
29912,
29928,
855,
930,
1836,
13,
9458,
13,
13,
1349,
375,
29892,
2183,
263,
1302,
2467,
2427,
29909,
2053,
4181,
5767,
591,
937,
883,
278,
1592,
27432,
424,
3158,
2046,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
29892,
29926,
29918,
29954,
511,
3997,
769,
278,
7555,
1942,
476,
23021,
1111,
2467,
2046,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29892,
741,
10737,
1157,
741,
12259,
1012,
4181,
1118,
29926,
29918,
29954,
29905,
2273,
1355,
402,
511,
3997,
988,
7555,
10737,
1157,
741,
12259,
1012,
4181,
1042,
338,
278,
22786,
362,
310,
278,
3765,
29899,
700,
284,
1302,
2467,
7555,
12259,
1157,
741,
12259,
1012,
4181,
1042,
515,
518,
29931,
331,
655,
30081,
3199,
1118,
322,
7146,
278,
23183,
1302,
2467,
6118,
463,
29912,
13671,
29913,
13,
741,
726,
786,
29912,
7976,
12156,
29909,
2053,
4181,
29897,
13,
20644,
741,
726,
786,
29912,
29928,
855,
4229,
3752,
29880,
3552,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29892,
741,
10737,
1157,
741,
12259,
1012,
4181,
1118,
29926,
29918,
29954,
29905,
2273,
1355,
402,
29905,
3752,
29878,
29897,
13,
1966,
29987,
2013,
3752,
29880,
29898,
29907,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29892,
29926,
29918,
29954,
29905,
2273,
1355,
402,
511,
29907,
13670,
10737,
1157,
741,
12259,
1012,
4181,
11606,
3752,
29878,
467,
29905,
355,
29912,
13671,
9458,
1334,
21092,
777,
310,
278,
12640,
29901,
937,
29892,
2436,
2046,
741,
10737,
1012,
4181,
21854,
10737,
1157,
741,
12259,
1012,
4181,
1836,
3997,
6549,
278,
1473,
7408,
297,
278,
2038,
1889,
4076,
278,
7555,
1942,
476,
23021,
1111,
2467,
2046,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29892,
741,
10737,
1012,
4181,
29892,
29926,
29918,
29954,
29905,
2273,
1355,
402,
17085,
322,
278,
23183,
2133,
338,
2046,
741,
726,
786,
29912,
7976,
12156,
29909,
2053,
4181,
7950,
3752,
29880,
29898,
29907,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29892,
29926,
29918,
29954,
29905,
2273,
1355,
402,
511,
29907,
13670,
10737,
1012,
4181,
2144,
3752,
29878,
467,
3997,
1334,
674,
2869,
671,
278,
901,
2888,
653,
12640,
29901,
6118,
463,
29912,
13671,
29913,
13,
29909,
29985,
29885,
20644,
29907,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29892,
29926,
29918,
29954,
29905,
2273,
1355,
402,
29897,
13,
1966,
13,
29905,
4181,
29985,
29885,
20644,
29907,
13670,
10737,
1012,
4181,
20481,
355,
29912,
13671,
9458,
988,
278,
480,
6774,
924,
395,
29885,
29938,
338,
9146,
304,
1083,
513,
502,
310,
1346,
27525,
284,
2133,
8643,
13,
13,
4806,
817,
263,
7303,
310,
2582,
515,
518,
29992,
29888,
3208,
1402,
607,
591,
17386,
1244,
29889,
450,
937,
338,
518,
29992,
29888,
3208,
10244,
30081,
29953,
29889,
29946,
5387,
13,
13,
3047,
278,
2038,
12640,
29892,
2427,
29909,
29985,
29885,
2053,
4181,
29985,
29885,
1262,
338,
263,
23183,
2133,
310,
2427,
29909,
2053,
4181,
4935,
13,
13,
4806,
27887,
23808,
30010,
29879,
2980,
1244,
29901,
278,
26418,
1230,
13722,
6118,
29916,
962,
271,
2126,
29912,
13,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29892,
741,
12259,
1157,
741,
12259,
1012,
4181,
1800,
320,
279,
29961,
29878,
29962,
29985,
2612,
9492,
13,
29987,
29898,
29909,
29905,
9356,
741,
1942,
476,
7570,
4181,
29905,
9356,
24563,
399,
29897,
13,
1966,
13,
29898,
29909,
29985,
29885,
29905,
9356,
741,
1942,
476,
7570,
4181,
29985,
29885,
29905,
9356,
24563,
399,
511,
320,
279,
29961,
29884,
29962,
3311,
3416,
648,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
930,
3187,
27798,
320,
279,
28312,
15110,
4400,
332,
29962,
1665,
6134,
29918,
29909,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
930,
13,
9458,
20498,
873,
17645,
263,
1190,
25674,
1592,
27432,
424,
3632,
14143,
408,
278,
6641,
29899,
23027,
16578,
29892,
607,
1818,
367,
310,
278,
883,
779,
6134,
29918,
29909,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1042,
363,
263,
5412,
1190,
6929,
779,
6134,
29918,
29909,
29938,
1951,
278,
11408,
322,
14698,
3632,
7886,
12903,
526,
18131,
12903,
310,
7555,
1942,
476,
23021,
284,
28200,
29889,
1334,
2737,
304,
518,
13438,
30081,
3199,
29913,
363,
278,
451,
800,
779,
9492,
29938,
322,
395,
29956,
1628,
408,
1532,
408,
779,
6642,
29938,
313,
4149,
278,
1494,
13722,
511,
2992,
29889,
13,
13,
1576,
21692,
3234,
310,
445,
13722,
23994,
964,
263,
26418,
1230,
13722,
6118,
29916,
962,
271,
2126,
29992,
29907,
29974,
29941,
29900,
415,
29912,
13,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
29905,
2273,
1355,
24033,
12259,
1157,
741,
12259,
1012,
4181,
930,
402,
13,
29905,
279,
29961,
29878,
29962,
21583,
741,
9492,
29905,
2273,
1355,
402,
2403,
2612,
27798,
13,
29987,
29898,
29909,
29905,
9356,
741,
1942,
476,
11606,
2273,
1355,
1665,
4181,
29905,
9356,
24563,
399,
29913,
402,
320,
279,
29961,
1289,
29962,
3311,
6642,
29918,
29909,
12806,
27798,
13,
1966,
13,
29898,
29909,
29985,
29885,
29905,
9356,
741,
1942,
476,
11606,
2273,
1355,
1665,
4181,
29985,
29885,
29905,
9356,
24563,
29956,
29913,
402,
13,
29905,
279,
29961,
29881,
29962,
1665,
6642,
648,
29909,
29985,
29885,
930,
3823,
27798,
13,
29905,
279,
29961,
29884,
29962,
3311,
3416,
648,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
1012,
2273,
1355,
402,
12806,
27798,
320,
279,
29961,
332,
29962,
648,
1194,
6134,
29918,
29909,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
2273,
1355,
402,
29913,
13,
1966,
13,
29898,
29909,
29985,
29885,
29905,
2273,
1355,
1665,
4181,
29985,
29885,
29913,
402,
2144,
9356,
741,
1942,
476,
1012,
279,
29961,
29878,
21540,
29899,
29912,
1194,
6134,
29918,
29909,
29905,
2273,
1355,
402,
2144,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
930,
13,
29987,
29898,
29909,
29905,
2273,
1355,
3187,
4181,
402,
2144,
9356,
741,
1942,
476,
1836,
13,
9458,
450,
11408,
11053,
322,
278,
2246,
14698,
2910,
526,
338,
7886,
12903,
29892,
322,
372,
4477,
393,
278,
5970,
2910,
12211,
6134,
29918,
29909,
29905,
2273,
1355,
402,
2144,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1042,
338,
884,
385,
26116,
29892,
322,
8151,
577,
338,
779,
6134,
29918,
29909,
29905,
2273,
1355,
402,
29938,
313,
18103,
7555,
1942,
476,
1042,
338,
20346,
29892,
470,
5136,
6703,
491,
15399,
278,
2731,
4427,
2133,
2090,
2801,
467,
7857,
278,
2910,
779,
6134,
29918,
29909,
741,
17308,
2119,
29909,
29985,
29885,
2053,
4181,
29985,
29885,
2144,
517,
313,
29909,
2053,
4181,
1262,
338,
263,
23183,
2133,
29889,
13,
13,
1576,
1473,
310,
23808,
30010,
29879,
2582,
393,
591,
817,
338,
278,
334,
14540,
284,
2875,
29930,
310,
23183,
17063,
518,
29992,
29888,
3208,
11894,
30081,
29953,
29889,
29906,
5387,
13,
13,
3644,
779,
6134,
29918,
29909,
741,
17308,
2119,
29909,
29985,
29885,
2053,
4181,
29985,
29885,
2144,
517,
313,
29909,
2053,
4181,
1262,
338,
738,
395,
16595,
29938,
23183,
2133,
29892,
474,
29889,
29872,
1696,
779,
4181,
29985,
29885,
29938,
338,
23183,
29892,
779,
6134,
29918,
29909,
29938,
338,
1190,
25674,
29892,
322,
779,
6134,
29918,
29909,
29905,
2273,
1355,
402,
29938,
338,
385,
26116,
29892,
769,
2183,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29933,
2053,
5463,
2144,
517,
313,
29909,
2053,
4181,
1262,
297,
7555,
2762,
29912,
7967,
27206,
988,
779,
5463,
29938,
338,
23183,
29892,
727,
338,
263,
5412,
18131,
1608,
779,
2876,
13090,
6820,
263,
26418,
1230,
13285,
310,
278,
13722,
6118,
29916,
962,
271,
2126,
29912,
13,
29898,
29933,
2053,
5463,
29897,
320,
279,
28312,
15110,
4400,
29878,
29962,
21583,
741,
2876,
10827,
320,
279,
29961,
7707,
29962,
3187,
2876,
13,
29987,
29898,
29909,
29985,
29885,
2053,
4181,
29985,
29885,
29897,
320,
279,
29961,
29881,
29962,
3311,
6134,
29918,
29909,
29913,
13,
1966,
13,
29987,
29898,
29909,
2053,
4181,
467,
13,
9458,
13,
13,
29943,
3208,
30010,
29879,
2980,
2980,
11624,
310,
16112,
13858,
278,
26418,
1230,
13722,
6118,
29916,
962,
271,
2126,
29992,
29907,
29974,
29906,
29900,
415,
29912,
13,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29905,
2273,
1355,
24033,
12259,
1012,
5463,
29913,
402,
320,
279,
29961,
29878,
29962,
21583,
741,
2876,
29905,
2273,
1355,
402,
29905,
2273,
1355,
402,
29913,
13,
29905,
279,
29961,
29881,
29962,
1665,
9492,
29918,
29933,
10206,
27798,
13,
29987,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
320,
279,
29961,
29881,
29962,
3311,
9492,
29918,
29909,
29913,
13,
29987,
29909,
29985,
29885,
29905,
2273,
1355,
1665,
4181,
29985,
29885,
29913,
402,
29905,
2273,
1355,
24033,
12259,
3331,
4181,
29985,
29885,
930,
402,
13,
29905,
279,
29961,
29880,
21540,
29899,
741,
6134,
29918,
29909,
29905,
2273,
1355,
402,
29905,
2273,
1355,
402,
2137,
2612,
27798,
320,
279,
29961,
29881,
29962,
3311,
9492,
648,
29909,
29985,
29885,
930,
3187,
27798,
13,
1966,
13,
29933,
29905,
9356,
741,
1942,
476,
1012,
279,
29961,
29878,
21540,
29899,
741,
2876,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
930,
13,
29905,
279,
28312,
15110,
29913,
29992,
19891,
29906,
6739,
29914,
29961,
21478,
29962,
1665,
9492,
648,
29909,
29985,
29885,
1012,
6034,
3441,
6134,
29918,
29909,
29905,
2273,
1355,
402,
29905,
2273,
1355,
402,
2597,
3426,
29896,
4229,
6034,
3441,
2876,
29905,
2273,
1355,
402,
29905,
2273,
1355,
402,
2144,
6034,
320,
9492,
29918,
29933,
29912,
3426,
29896,
12499,
13,
29987,
29909,
29905,
9356,
741,
1942,
476,
15704,
29909,
29985,
29885,
29905,
9356,
741,
1942,
476,
1012,
279,
29961,
29880,
29962,
21583,
741,
6134,
29918,
29909,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
930,
13,
9458,
607,
591,
505,
10551,
287,
10029,
577,
393,
372,
1122,
367,
24774,
408,
263,
13722,
297,
278,
7663,
7555,
2762,
29912,
29907,
2137,
29930,
4311,
12823,
29892,
599,
278,
11053,
526,
1592,
27432,
424,
29892,
577,
372,
508,
884,
367,
17878,
408,
263,
13722,
297,
7555,
2762,
29912,
7967,
26253,
1987,
1363,
599,
278,
11053,
526,
18131,
12903,
310,
7555,
1942,
476,
23021,
284,
28200,
591,
679,
263,
5412,
18131,
1608,
779,
2876,
13090,
408,
3734,
29889,
450,
15968,
2875,
297,
2507,
3697,
393,
23183,
17063,
526,
5412,
701,
304,
26116,
29889,
512,
3153,
29892,
738,
23183,
2133,
779,
2876,
741,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
5767,
988,
779,
5463,
29938,
338,
3528,
23183,
29892,
1818,
367,
385,
26116,
29889,
13,
13,
2887,
591,
15648,
472,
278,
6763,
310,
445,
4004,
29892,
1286,
393,
591,
505,
10434,
263,
23183,
2133,
310,
1269,
1302,
2467,
2427,
29909,
2053,
4181,
5767,
278,
15968,
2875,
10603,
825,
304,
437,
304,
18131,
12903,
29892,
6820,
502,
451,
871,
263,
23183,
2133,
2090,
2801,
7555,
726,
786,
29912,
7976,
27206,
541,
884,
14509,
502,
393,
278,
1190,
24247,
779,
6134,
29918,
29909,
29938,
2367,
263,
5613,
13852,
515,
7555,
726,
786,
29912,
7976,
7920,
304,
278,
10110,
2090,
2801,
29892,
474,
29889,
29872,
1696,
565,
779,
2876,
741,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
338,
263,
18131,
1608,
310,
1302,
7387,
29892,
769,
278,
13722,
6118,
29916,
962,
271,
2126,
29992,
29907,
29974,
29906,
29900,
415,
29912,
13,
29898,
29909,
29985,
29885,
2053,
4181,
29985,
29885,
29897,
320,
279,
28312,
15110,
4400,
29878,
29962,
21583,
741,
2876,
29985,
29885,
2403,
29899,
29912,
27896,
320,
279,
29961,
29881,
29962,
1665,
6134,
29918,
29909,
29913,
13,
29987,
29898,
29933,
29985,
29885,
2053,
5463,
29985,
29885,
29897,
320,
279,
29961,
29881,
29962,
3311,
6134,
29918,
29933,
29913,
13,
1966,
13,
29898,
29909,
2053,
4181,
29897,
320,
279,
29961,
29878,
21540,
2612,
2876,
13,
29987,
29898,
29933,
2053,
5463,
29897,
13,
9458,
756,
263,
5412,
13285,
779,
2876,
29985,
29885,
1504,
13,
13,
12283,
311,
17158,
3172,
17569,
868,
2877,
426,
29937,
5464,
311,
17158,
868,
2877,
29913,
13,
9166,
4936,
2751,
1360,
13,
13,
797,
445,
4004,
591,
2106,
278,
313,
5203,
29897,
11608,
936,
3172,
17569,
868,
2877,
363,
23183,
1302,
7387,
29892,
297,
263,
883,
13907,
363,
10230,
411,
278,
2678,
1873,
363,
278,
427,
305,
309,
1114,
13997,
313,
4149,
518,
13438,
30081,
3199,
7690,
13,
13,
6730,
591,
1818,
274,
711,
569,
4208,
263,
7303,
310,
2090,
14359,
515,
518,
13438,
30081,
3199,
29913,
304,
7738,
263,
716,
2090,
2801,
29901,
13,
13,
29905,
29961,
5878,
2090,
2801,
18899,
1334,
4529,
263,
2090,
2801,
7555,
726,
786,
29912,
29943,
861,
7920,
491,
278,
26418,
1230,
13722,
6118,
29916,
962,
271,
2126,
29912,
13,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
20388,
279,
29961,
29878,
29962,
21583,
741,
9158,
29912,
6271,
29909,
930,
320,
279,
29961,
7707,
29962,
24033,
726,
786,
29912,
29943,
861,
12499,
13,
29987,
16195,
1942,
476,
6822,
741,
2762,
29912,
7967,
20388,
279,
29961,
29881,
29962,
998,
741,
726,
786,
29912,
29928,
855,
12499,
13,
1966,
13,
29987,
741,
2762,
29912,
7967,
27243,
13,
9458,
13,
13,
1349,
375,
29892,
2183,
385,
1592,
27432,
424,
3158,
2427,
29909,
2053,
2312,
2053,
2589,
5767,
591,
937,
883,
278,
7555,
1942,
476,
23021,
1111,
2467,
2046,
29898,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
10737,
1012,
2312,
2053,
2589,
29905,
2273,
1355,
402,
511,
3997,
988,
7555,
10737,
1012,
2312,
29938,
338,
278,
22786,
362,
310,
278,
14581,
3158,
7555,
12259,
1012,
2312,
29938,
515,
518,
29931,
331,
655,
30081,
3199,
1118,
769,
278,
1302,
2467,
6118,
3752,
29880,
29898,
29907,
29898,
29909,
29905,
2273,
1355,
3187,
2312,
402,
2053,
2589,
29905,
2273,
1355,
402,
511,
29907,
13670,
10737,
1012,
2312,
2144,
3752,
29878,
511,
3997,
607,
338,
23183,
491,
518,
29931,
331,
655,
30081,
3199,
1118,
1951,
7555,
10737,
1012,
2312,
29938,
338,
3879,
2028,
7126,
304,
278,
14581,
1302,
2467,
7555,
12259,
1012,
2312,
1628,
373,
278,
6198,
26418,
424,
29889,
1334,
2436,
6118,
463,
29912,
13671,
29913,
13,
741,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
29897,
20644,
29907,
29898,
29909,
29905,
2273,
1355,
3187,
2312,
402,
2053,
2589,
29905,
2273,
1355,
402,
29897,
13,
1966,
13,
29905,
4181,
3823,
2589,
20644,
29907,
13670,
10737,
1012,
2312,
20481,
355,
29912,
13671,
9458,
577,
393,
278,
2090,
2801,
7555,
726,
786,
29912,
29943,
861,
7920,
4893,
385,
1203,
2427,
29909,
2053,
2312,
2053,
2589,
1262,
304,
2427,
741,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
20481,
4181,
3823,
2589,
4935,
7555,
726,
786,
29912,
29943,
861,
7920,
338,
2183,
373,
18131,
12903,
491,
2046,
741,
726,
786,
29912,
29943,
861,
20828,
2876,
3892,
29907,
1194,
2876,
29905,
2273,
1355,
402,
467,
3997,
739,
338,
4100,
304,
3013,
297,
3458,
393,
278,
395,
29907,
6622,
4388,
15742,
7555,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
1262,
12185,
297,
278,
6674,
4926,
9623,
310,
278,
21692,
3234,
395,
29909,
29905,
2273,
1355,
3187,
2312,
402,
1628,
322,
393,
779,
4181,
3823,
2589,
29938,
338,
263,
23183,
1302,
2467,
373,
445,
9623,
313,
18103,
395,
29907,
13670,
10737,
1012,
2312,
1262,
338,
23183,
29892,
408,
591,
5276,
2038,
511,
1334,
674,
4720,
17385,
403,
278,
7348,
310,
278,
1734,
1346,
29943,
861,
8643,
13,
13,
29905,
29961,
29883,
6739,
266,
29885,
18899,
2803,
779,
9158,
29912,
6271,
29907,
3331,
17308,
3331,
2762,
29912,
7967,
4229,
517,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
367,
278,
2090,
2801,
411,
1203,
2910,
2427,
29909,
2053,
4181,
2144,
517,
313,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
29892,
29926,
29918,
29954,
1262,
3342,
297,
518,
13438,
30081,
3199,
1118,
322,
1235,
7555,
9158,
29912,
6271,
29907,
2137,
29885,
3331,
17308,
3331,
2762,
29912,
7967,
24251,
29885,
29905,
517,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
367,
278,
24345,
304,
278,
1014,
7320,
310,
23183,
1302,
7387,
29889,
1987,
7555,
9158,
29912,
6271,
29907,
2137,
29885,
1042,
338,
263,
7663,
24796,
29892,
411,
16452,
29899,
262,
3901,
7555,
726,
786,
29912,
29943,
861,
26253,
13,
13,
4806,
674,
1510,
393,
1716,
5541,
2187,
7555,
726,
786,
29912,
29943,
861,
4229,
2053,
6034,
741,
9158,
29912,
6271,
29907,
2137,
29885,
1042,
322,
7555,
9158,
29912,
6271,
29907,
2137,
29885,
1012,
6034,
5940,
741,
726,
786,
29912,
29943,
861,
7920,
526,
18180,
338,
16898,
304,
278,
10110,
2090,
14359,
7555,
726,
741,
726,
786,
29912,
333,
930,
3227,
741,
2762,
29912,
7967,
24251,
29885,
1042,
322,
7555,
726,
741,
726,
786,
29912,
333,
930,
3227,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
27206,
8307,
29889,
4001,
7555,
726,
786,
29912,
29943,
861,
4229,
6034,
29905,
9158,
29912,
6271,
29907,
1042,
338,
23808,
30010,
29879,
7632,
310,
278,
23183,
2133,
2090,
2801,
7555,
726,
786,
29912,
7976,
27206,
322,
1951,
278,
1190,
24247,
779,
6134,
29938,
2367,
263,
5613,
13852,
515,
7555,
726,
786,
29912,
7976,
7920,
304,
7555,
726,
741,
726,
786,
29912,
333,
930,
3227,
741,
2762,
29912,
7967,
24251,
29885,
4429,
322,
7146,
1951,
779,
6134,
29918,
29909,
29938,
338,
385,
26116,
10940,
2427,
29909,
2053,
4181,
1262,
338,
23183,
29892,
591,
1074,
393,
7555,
726,
786,
29912,
29943,
861,
4229,
6034,
741,
9158,
29912,
6271,
29907,
2137,
29885,
1012,
27798,
741,
726,
741,
726,
786,
29912,
333,
930,
3227,
741,
2762,
29912,
7967,
24251,
29885,
4311,
13,
13,
1576,
916,
5613,
26116,
508,
367,
274,
711,
27225,
4208,
515,
2582,
297,
278,
12845,
29936,
1244,
591,
2367,
697,
1316,
274,
20838,
1847,
29889,
1334,
14944,
777,
29587,
653,
2090,
14359,
29901,
13,
13,
29899,
259,
779,
9158,
29912,
6271,
29907,
2137,
29876,
741,
17308,
3331,
2762,
29912,
7967,
24251,
29876,
29905,
517,
426,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
338,
278,
24345,
310,
779,
9158,
29912,
6271,
29907,
1042,
304,
278,
4226,
1302,
7387,
29936,
13,
13,
29899,
259,
7555,
726,
786,
29912,
29943,
861,
24251,
29876,
741,
17308,
1157,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
20388,
517,
2802,
2762,
29912,
7967,
24251,
29876,
29938,
338,
278,
16452,
29899,
262,
3901,
310,
779,
9158,
29912,
6271,
29907,
2137,
29876,
29938,
3342,
297,
518,
29992,
2901,
29939,
1049,
17569,
9779,
30081,
29953,
29889,
29896,
1385,
13,
13,
29899,
259,
7555,
726,
786,
29912,
7976,
24251,
29876,
741,
17308,
3331,
2762,
29912,
7967,
24251,
29876,
29905,
517,
2802,
2762,
29912,
7967,
24251,
29885,
29938,
338,
278,
24345,
310,
7555,
726,
786,
29912,
7976,
7920,
304,
278,
4226,
1302,
7387,
29936,
13,
13,
29899,
259,
779,
9158,
29912,
29940,
272,
2137,
29885,
741,
17308,
3331,
2762,
29912,
7967,
24251,
29885,
29905,
517,
2802,
2762,
29912,
7967,
24251,
29876,
29938,
338,
278,
24345,
310,
779,
9158,
29912,
29940,
272,
1042,
304,
278,
23183,
1302,
7387,
29889,
13,
13,
13696,
1241,
278,
1494,
13722,
310,
2090,
14359,
29901,
6118,
29916,
962,
271,
2126,
29992,
29907,
29974,
29941,
29900,
415,
29992,
29934,
29974,
29906,
29900,
415,
29912,
13,
741,
2762,
29912,
7967,
24251,
29885,
320,
279,
29992,
29914,
29985,
29914,
29961,
29878,
29962,
21583,
741,
9158,
29912,
6271,
29907,
2137,
29885,
29913,
320,
279,
29992,
19891,
29914,
29961,
29881,
29962,
1665,
9158,
29912,
29940,
272,
2137,
29885,
29913,
13,
29987,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
20388,
279,
28312,
29922,
4400,
29881,
29962,
320,
279,
29992,
29914,
29985,
29914,
29961,
29880,
29962,
21583,
16195,
726,
786,
29912,
29943,
861,
12499,
13,
1966,
13,
741,
2762,
29912,
7967,
24251,
29876,
320,
279,
29992,
19891,
29914,
29961,
29884,
29962,
24033,
726,
786,
29912,
7976,
24251,
29876,
29913,
320,
279,
29992,
29914,
29985,
29914,
29961,
29878,
29962,
21583,
741,
9158,
29912,
6271,
29907,
2137,
29876,
29913,
13,
29987,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1836,
320,
279,
29992,
29914,
29985,
29914,
29961,
29880,
29962,
21583,
16195,
726,
786,
29912,
29943,
861,
24251,
29876,
29913,
13,
9458,
1334,
1073,
515,
518,
29992,
29883,
430,
29874,
10244,
30081,
29941,
29889,
29941,
29962,
393,
779,
9158,
29912,
29940,
272,
2137,
29885,
29938,
322,
7555,
726,
786,
29912,
7976,
24251,
29876,
29938,
526,
16452,
29899,
262,
874,
267,
29892,
322,
515,
518,
29992,
29883,
430,
29874,
450,
272,
1567,
30081,
29946,
29889,
29896,
322,
29871,
29945,
29889,
29896,
322,
1009,
29828,
29962,
393,
779,
9158,
29912,
6271,
29907,
2137,
29876,
29938,
322,
7555,
726,
786,
29912,
29943,
861,
24251,
29876,
29938,
526,
16452,
29899,
262,
874,
267,
29889,
1334,
505,
4318,
2038,
393,
7555,
726,
786,
29912,
29943,
861,
4229,
6034,
320,
9158,
29912,
6271,
29907,
2137,
29885,
29905,
27798,
2802,
726,
741,
726,
786,
29912,
333,
930,
3227,
741,
2762,
29912,
7967,
24251,
29885,
4429,
322,
591,
505,
7555,
726,
786,
29912,
7976,
24251,
29876,
21854,
726,
786,
29912,
29943,
861,
4229,
6034,
320,
9158,
29912,
6271,
29907,
2137,
29876,
29938,
491,
897,
4951,
2187,
30081,
29905,
29961,
3317,
822,
18899,
322,
5539,
5878,
2090,
2801,
29905,
1822,
6549,
7555,
726,
786,
29912,
29943,
861,
4229,
27798,
2802,
726,
786,
29912,
7976,
24251,
29876,
29905,
6034,
741,
726,
786,
29912,
29943,
861,
24251,
29876,
29938,
1951,
779,
9158,
29912,
6271,
29907,
2137,
29876,
29905,
6034,
741,
726,
786,
29912,
29943,
861,
24251,
29876,
29905,
27798,
2802,
726,
741,
726,
786,
29912,
333,
930,
3227,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
26253,
450,
7429,
5613,
26116,
779,
9158,
29912,
6271,
29907,
2137,
29885,
29905,
6034,
5940,
741,
726,
786,
29912,
29943,
861,
4229,
27798,
2802,
726,
741,
726,
786,
29912,
333,
930,
3227,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
7920,
1286,
4477,
491,
26529,
2912,
800,
411,
278,
2090,
14359,
29901,
1951,
7555,
726,
786,
29912,
29943,
861,
4229,
6034,
320,
9158,
29912,
6271,
29907,
2137,
29876,
21854,
726,
786,
29912,
7976,
24251,
29876,
1628,
591,
505,
6118,
463,
29912,
13671,
29913,
13,
29905,
9158,
29912,
6271,
29907,
2137,
29876,
29905,
6034,
29905,
9158,
29912,
29940,
272,
2137,
29885,
29905,
6034,
5940,
741,
726,
786,
29912,
29943,
861,
930,
11035,
27798,
320,
9158,
29912,
6271,
29907,
2137,
29876,
29905,
6034,
29905,
9158,
29912,
29940,
272,
2137,
29885,
29905,
6034,
741,
726,
786,
29912,
7976,
24251,
29876,
29905,
6034,
741,
726,
786,
29912,
29943,
861,
24251,
29876,
13,
1966,
11035,
27798,
320,
9158,
29912,
6271,
29907,
2137,
29876,
29905,
6034,
5940,
741,
726,
786,
29912,
29943,
861,
24251,
29876,
13,
1966,
11035,
27798,
2802,
726,
741,
726,
786,
29912,
333,
930,
3227,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
930,
2053,
355,
29912,
13671,
9458,
322,
577,
6118,
463,
29912,
13671,
29913,
13,
29905,
9158,
29912,
6271,
29907,
2137,
29885,
29905,
6034,
5940,
741,
726,
786,
29912,
29943,
861,
930,
11035,
27798,
320,
9158,
29912,
6271,
29907,
2137,
29876,
29905,
6034,
29905,
9158,
29912,
29940,
272,
2137,
29885,
29905,
6034,
5940,
741,
726,
786,
29912,
29943,
861,
4229,
6034,
29905,
9158,
29912,
6271,
29907,
2137,
29885,
29905,
6034,
5940,
741,
726,
786,
29912,
29943,
861,
930,
1966,
11035,
27798,
320,
9158,
29912,
6271,
29907,
2137,
29876,
29905,
6034,
29905,
9158,
29912,
29940,
272,
2137,
29885,
29905,
6034,
5940,
741,
726,
786,
29912,
29943,
861,
930,
1966,
11035,
27798,
2802,
726,
741,
726,
786,
29912,
333,
930,
3227,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
27243,
13,
29905,
29939,
287,
4150,
29905,
355,
29912,
13671,
9458,
13,
13,
29924,
327,
440,
630,
491,
518,
28831,
30081,
3199,
1118,
591,
1246,
7555,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
1262,
278,
334,
27525,
284,
28803,
4343,
29899,
3149,
9623,
29930,
310,
278,
1592,
27432,
424,
3158,
2427,
29909,
2053,
2312,
2053,
2589,
4935,
13,
13,
797,
518,
29992,
2901,
29939,
1049,
17569,
1402,
591,
1304,
10029,
1422,
12640,
363,
777,
310,
278,
29587,
653,
2090,
14359,
310,
278,
2038,
5296,
29892,
18451,
395,
6224,
741,
10737,
1157,
741,
726,
786,
29912,
6271,
930,
7585,
3187,
2762,
29912,
299,
930,
1042,
363,
779,
9158,
29912,
6271,
29907,
2137,
29876,
1628,
322,
6435,
741,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
299,
930,
1042,
363,
7555,
726,
786,
29912,
29943,
861,
24251,
29876,
1504,
3940,
393,
5998,
278,
2090,
2801,
7555,
726,
786,
29912,
29943,
861,
7920,
310,
518,
14683,
30081,
3199,
29913,
4076,
28803,
4343,
29899,
3149,
394,
28200,
363,
1592,
27432,
424,
1661,
311,
17158,
13997,
29892,
372,
338,
451,
278,
1021,
408,
278,
2090,
2801,
6435,
741,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
299,
930,
1042,
3342,
297,
518,
29992,
2901,
29939,
1049,
17569,
3323,
2042,
30081,
29953,
29889,
29896,
29962,
813,
278,
7480,
13880,
4226,
1302,
7387,
29892,
1550,
7555,
726,
786,
29912,
29943,
861,
7920,
13880,
23183,
6743,
29889,
13,
13,
7439,
310,
518,
28831,
30081,
3199,
1118,
18451,
393,
779,
9158,
29912,
6271,
29907,
2137,
29885,
741,
17308,
3331,
2762,
29912,
7967,
24251,
29885,
29905,
517,
426,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
338,
385,
24796,
29892,
756,
1063,
10478,
297,
278,
12845,
3196,
3064,
29889,
450,
2769,
591,
750,
304,
437,
777,
664,
471,
393,
278,
2702,
16452,
29899,
262,
3901,
7555,
726,
786,
29912,
29943,
861,
7920,
756,
451,
1063,
577,
1532,
12399,
313,
262,
2114,
591,
1033,
451,
1284,
263,
3407,
988,
372,
338,
1304,
297,
445,
3153,
982,
467,
6549,
29892,
363,
1342,
29892,
372,
723,
451,
367,
3307,
304,
3763,
2737,
304,
518,
29992,
29883,
430,
29916,
2994,
21982,
30081,
29946,
29889,
29941,
1402,
1951,
278,
3153,
16452,
29899,
262,
3901,
7555,
726,
786,
29912,
29943,
861,
7920,
591,
671,
1244,
947,
451,
2615,
727,
29889,
13,
13,
797,
278,
5296,
310,
518,
28831,
30081,
3199,
29913,
591,
8900,
393,
7555,
726,
786,
29912,
29943,
861,
4229,
27798,
741,
726,
786,
29912,
7976,
24251,
29876,
29905,
6034,
741,
726,
786,
29912,
29943,
861,
24251,
29876,
1504,
826,
2168,
411,
278,
1121,
310,
518,
28831,
30081,
3199,
29913,
3528,
591,
884,
1074,
393,
7555,
726,
786,
29912,
29943,
861,
24251,
29876,
29905,
27798,
320,
9158,
29912,
29940,
272,
2137,
29885,
29905,
6034,
741,
726,
786,
29912,
29943,
861,
26253,
739,
4477,
393,
278,
334,
8945,
28803,
4343,
29899,
3149,
9623,
29930,
7555,
726,
786,
29912,
29943,
861,
24251,
29876,
29898,
29909,
2053,
2312,
2053,
2589,
1262,
310,
385,
1592,
27432,
424,
3158,
29892,
607,
297,
518,
29992,
2901,
29939,
1049,
17569,
29962,
591,
17878,
408,
263,
1014,
15742,
310,
395,
29924,
29898,
29909,
5767,
508,
5136,
6703,
367,
17878,
408,
263,
1661,
311,
17158,
1014,
15742,
310,
395,
29924,
29898,
29909,
29905,
2273,
1355,
1665,
2312,
29892,
29878,
29913,
402,
5767,
22829,
304,
920,
591,
4880,
278,
23183,
28803,
4343,
29899,
3149,
9623,
7555,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
1262,
408,
263,
1014,
15742,
310,
395,
29924,
29898,
29909,
29905,
2273,
1355,
3187,
2312,
402,
4935,
910,
338,
13747,
411,
278,
1532,
29899,
5203,
2114,
393,
278,
14581,
1302,
2467,
373,
278,
12212,
21692,
3234,
395,
29909,
29905,
2273,
1355,
1665,
2312,
29892,
29878,
29913,
402,
29938,
338,
263,
4226,
2133,
310,
278,
313,
27525,
284,
29897,
14581,
1302,
2467,
373,
278,
2989,
21692,
3234,
395,
29909,
29905,
2273,
1355,
3187,
2312,
402,
1504,
13,
13,
1123,
1658,
292,
3755,
2788,
304,
393,
297,
278,
5296,
310,
518,
29992,
2901,
29939,
1049,
17569,
22206,
30081,
29945,
29889,
29896,
29962,
3697,
393,
278,
7663,
24796,
10478,
297,
518,
28831,
30081,
3199,
29913,
4076,
263,
334,
16773,
297,
3259,
15966,
297,
278,
4060,
310,
518,
29992,
2901,
29939,
1049,
17569,
21940,
30081,
29946,
29889,
29896,
1402,
310,
278,
21692,
29899,
4704,
2090,
2801,
7555,
2762,
29912,
7967,
24251,
29885,
29905,
517,
741,
2762,
29912,
29907,
2137,
29930,
1042,
3342,
373,
3618,
491,
2046,
29898,
29909,
2053,
4181,
2144,
17499,
319,
29905,
2273,
1355,
3187,
4181,
402,
19470,
13,
13,
29905,
29961,
29883,
3274,
1592,
440,
18899,
450,
2090,
2801,
779,
9158,
29912,
6271,
29909,
3331,
17308,
1157,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
20388,
517,
426,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
2137,
29885,
29938,
338,
263,
7663,
24796,
29889,
13,
13,
2059,
518,
28831,
30081,
3199,
29913,
591,
505,
385,
24796,
7555,
726,
786,
29912,
29943,
861,
930,
21854,
726,
786,
29912,
29928,
855,
4229,
6034,
320,
9158,
29912,
6271,
29909,
4311,
2648,
518,
29992,
2901,
29939,
13844,
10244,
30081,
29946,
29889,
29946,
1402,
7555,
726,
786,
29912,
29928,
855,
7920,
338,
385,
24796,
746,
17878,
408,
263,
2090,
2801,
1546,
278,
13997,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7920,
322,
7555,
2762,
29912,
29907,
2137,
29930,
4429,
322,
278,
16160,
2133,
2090,
2801,
7555,
2762,
29912,
29907,
2137,
29930,
1012,
517,
426,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
27206,
2183,
373,
3618,
491,
395,
29909,
29905,
17499,
319,
29905,
9356,
741,
1942,
476,
4429,
338,
263,
16452,
29899,
262,
3901,
29889,
4001,
263,
18131,
1608,
297,
2845,
7663,
338,
385,
26116,
565,
322,
871,
565,
372,
338,
385,
26116,
1546,
278,
395,
29907,
6622,
4388,
284,
28200,
29892,
372,
4477,
393,
278,
2731,
4427,
2133,
2090,
2801,
7555,
726,
786,
29912,
29928,
855,
12431,
17308,
1157,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
20388,
517,
2802,
2762,
29912,
7967,
7920,
338,
884,
385,
24796,
29892,
411,
16452,
29899,
262,
3901,
2183,
373,
3618,
491,
2427,
29909,
2053,
4181,
2144,
17499,
313,
29909,
29905,
9356,
741,
1942,
476,
7570,
4181,
29905,
9356,
24563,
741,
726,
741,
726,
786,
29912,
333,
12499,
4935,
2648,
518,
29931,
331,
655,
30081,
3199,
1118,
779,
4181,
29938,
338,
23183,
565,
322,
871,
565,
395,
29907,
1194,
4181,
1262,
338,
29889,
6549,
7555,
726,
786,
29912,
29928,
855,
7920,
9250,
29879,
304,
385,
24796,
1546,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
2137,
29885,
29938,
322,
7555,
2762,
29912,
7967,
24251,
29885,
1504,
7857,
779,
9158,
29912,
6271,
29909,
3331,
17308,
1157,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
20388,
517,
426,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
2137,
29885,
29938,
338,
884,
385,
24796,
29889,
13,
13,
2369,
305,
309,
1114,
13997,
322,
2090,
14359,
426,
29937,
264,
305,
309,
1114,
13997,
29913,
13,
9166,
9166,
29922,
13,
13,
29907,
14404,
426,
29937,
20683,
29899,
29896,
869,
348,
4537,
287,
29913,
13,
28400,
13,
13,
4806,
1449,
17386,
777,
13997,
515,
518,
29992,
2901,
29939,
1049,
17569,
29962,
322,
518,
29992,
2901,
29939,
13844,
29962,
313,
392,
518,
29992,
264,
305,
309,
1114,
11724,
322,
14944,
263,
2846,
901,
29889,
17296,
674,
367,
2729,
2501,
278,
334,
264,
305,
309,
1114,
7663,
6435,
741,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
264,
930,
1042,
310,
395,
29907,
6622,
4388,
284,
28200,
15966,
988,
263,
18131,
1608,
11970,
29990,
21545,
17308,
29913,
29909,
29905,
517,
350,
29938,
338,
278,
26116,
770,
310,
263,
1661,
311,
17158,
395,
29909,
29899,
29933,
29938,
3928,
663,
395,
29990,
1504,
13,
13,
1576,
334,
264,
305,
309,
1114,
7663,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
1042,
310,
1302,
7387,
29930,
756,
278,
1021,
3618,
408,
7555,
2762,
29912,
7967,
27206,
322,
263,
18131,
1608,
11970,
29990,
2053,
11327,
21545,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
1042,
338,
278,
26116,
770,
310,
263,
1661,
311,
17158,
395,
29909,
29899,
29933,
29938,
3928,
663,
395,
29990,
29938,
1592,
16242,
411,
263,
779,
4181,
2612,
5463,
29938,
15878,
1302,
2467,
779,
11327,
1504,
422,
3283,
310,
18131,
12903,
338,
2183,
491,
2046,
29961,
29979,
2053,
1187,
10725,
6034,
518,
29990,
2053,
11327,
29962,
11759,
29990,
29905,
9356,
29918,
29933,
612,
2053,
11327,
741,
755,
2674,
741,
22064,
15609,
29933,
29905,
1187,
1822,
3997,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
2137,
29885,
29938,
20169,
278,
2989,
1014,
7320,
310,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
1042,
5069,
3618,
526,
278,
23183,
1302,
7387,
29889,
13,
13,
1576,
334,
264,
305,
309,
1114,
7663,
6435,
741,
2762,
29912,
10644,
29261,
2762,
29912,
264,
930,
1042,
310,
8820,
29930,
756,
278,
1021,
3618,
408,
7555,
2762,
29912,
10644,
27206,
322,
263,
18131,
1608,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2144,
517,
313,
29933,
2053,
3571,
1262,
297,
6435,
741,
2762,
29912,
10644,
29261,
2762,
29912,
264,
930,
1042,
338,
278,
26116,
770,
310,
263,
1661,
311,
17158,
395,
29909,
29899,
29933,
29938,
3928,
663,
395,
29990,
29938,
1592,
16242,
411,
385,
779,
2312,
2612,
3571,
29938,
15878,
3158,
779,
4283,
1504,
13,
13,
1576,
334,
264,
305,
309,
1114,
7663,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
310,
1592,
27432,
424,
8820,
29930,
756,
278,
1021,
3618,
408,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
4429,
322,
263,
18131,
1608,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
338,
263,
18131,
1608,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2144,
517,
313,
29933,
2053,
3571,
1262,
297,
6435,
741,
2762,
29912,
10644,
29261,
2762,
29912,
264,
930,
1042,
313,
2541,
694,
20813,
1104,
1218,
2427,
29990,
2053,
4283,
1262,
304,
779,
2589,
29938,
470,
779,
3433,
18724,
13,
13,
5303,
741,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
264,
930,
4429,
6435,
741,
2762,
29912,
10644,
29261,
2762,
29912,
264,
930,
4429,
322,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
1042,
750,
1009,
1677,
1144,
297,
518,
29992,
264,
305,
309,
1114,
450,
272,
1567,
30081,
29906,
29889,
29906,
29892,
29871,
29906,
29889,
29947,
29892,
322,
29871,
29906,
29889,
29896,
29945,
29892,
8307,
1822,
512,
518,
29992,
2901,
29939,
1049,
17569,
3323,
2042,
30081,
29953,
29889,
29906,
29962,
591,
1304,
278,
12640,
395,
6224,
741,
726,
786,
29912,
2273,
4229,
726,
8499,
1157,
741,
2762,
29912,
10644,
930,
7585,
3187,
2762,
29912,
264,
930,
1042,
363,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
4311,
13,
13,
1576,
334,
264,
305,
309,
1114,
7663,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7585,
3187,
2762,
29912,
264,
930,
1042,
310,
7555,
1942,
476,
23021,
284,
28200,
29930,
756,
278,
1021,
3618,
408,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
27206,
322,
263,
18131,
1608,
11970,
29990,
21545,
17308,
2119,
29909,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
29926,
755,
1262,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7585,
3187,
2762,
29912,
264,
930,
1042,
338,
263,
18131,
1608,
11970,
29990,
21545,
17308,
29913,
29909,
29905,
517,
350,
29938,
297,
6435,
741,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
264,
930,
4311,
512,
518,
29992,
2901,
29939,
13844,
21940,
30081,
29953,
29889,
29896,
29962,
591,
1304,
278,
12640,
6435,
741,
1942,
476,
1012,
9903,
726,
29912,
448,
17704,
29991,
16195,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
264,
930,
7920,
363,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7585,
3187,
2762,
29912,
264,
930,
4311,
13,
13,
1576,
334,
264,
305,
309,
1114,
7663,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
310,
7555,
1942,
476,
23021,
1111,
7387,
29930,
756,
278,
1021,
3618,
408,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
4429,
322,
746,
591,
1827,
11970,
29990,
2053,
11327,
21545,
17308,
2119,
29909,
2053,
4181,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
5463,
2053,
29926,
755,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
591,
2099,
393,
11970,
29990,
2053,
11327,
21545,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
338,
263,
18131,
1608,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
4311,
3940,
393,
445,
10469,
297,
3153,
393,
11970,
29990,
21545,
17308,
29913,
29909,
29905,
517,
350,
29938,
338,
263,
18131,
1608,
297,
6435,
741,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
264,
930,
4429,
322,
8151,
11970,
29990,
21545,
17308,
2119,
29909,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
29926,
755,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7585,
3187,
2762,
29912,
264,
930,
4311,
739,
338,
26529,
304,
1423,
393,
445,
338,
263,
7663,
29889,
13,
13,
9842,
393,
278,
2038,
451,
800,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
4429,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7585,
3187,
2762,
29912,
264,
930,
4429,
322,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
526,
19998,
3984,
25369,
29901,
896,
526,
451,
6776,
5897,
13997,
29889,
450,
12640,
471,
10434,
304,
12266,
777,
8943,
411,
278,
1661,
311,
17158,
6910,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
4429,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
27206,
322,
6435,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
4311,
512,
2114,
29892,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
338,
263,
334,
12846,
29875,
29899,
510,
655,
7663,
29930,
297,
278,
4060,
310,
518,
29992,
29882,
12748,
1233,
18771,
1822,
13,
13,
25394,
14359,
426,
29937,
7692,
14359,
29899,
29896,
869,
348,
4537,
287,
29913,
13,
1378,
13,
13,
4806,
4529,
263,
2090,
2801,
6118,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
930,
3331,
17308,
1157,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
20388,
517,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
9458,
304,
367,
278,
1021,
408,
779,
9158,
29912,
6271,
29907,
1042,
373,
3618,
29892,
322,
373,
18131,
12903,
408,
4477,
29901,
565,
11970,
29990,
2053,
11327,
21545,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
338,
263,
18131,
1608,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
1042,
769,
6118,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
930,
4400,
29990,
2053,
11327,
21545,
17308,
2119,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
29892,
29926,
29918,
29954,
3823,
4181,
2144,
517,
13,
29898,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29892,
741,
12259,
1012,
5463,
29892,
29926,
29918,
29954,
3823,
5463,
17085,
338,
278,
18131,
1608,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
2183,
491,
779,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
930,
4400,
29990,
2053,
11327,
29962,
11759,
29990,
29905,
2273,
1355,
3187,
11327,
402,
29892,
741,
12259,
1012,
11327,
22689,
13,
13,
797,
1797,
304,
4529,
263,
13907,
2090,
2801,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
20388,
517,
8620,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
4429,
591,
937,
817,
304,
1074,
920,
304,
26749,
278,
1302,
7387,
29901,
13,
13,
29905,
29961,
4283,
260,
25949,
18899,
2803,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
367,
263,
18131,
1608,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
4311,
1987,
727,
338,
385,
7555,
10737,
1012,
2312,
29899,
741,
10737,
1012,
3571,
29938,
15878,
1302,
2467,
7555,
10737,
1012,
4283,
29938,
373,
278,
2427,
29909,
29905,
2273,
1355,
3187,
2312,
402,
6817,
29898,
29933,
29905,
2273,
1355,
3187,
3571,
402,
1262,
3928,
663,
395,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29938,
2183,
491,
2046,
741,
10737,
1012,
4283,
29898,
29891,
3892,
29963,
29918,
29909,
741,
12259,
1012,
4283,
29898,
29891,
29897,
29963,
29918,
29933,
6622,
741,
3425,
29905,
726,
29912,
1454,
9156,
29891,
29905,
262,
1060,
29905,
2273,
1355,
3187,
4283,
402,
29892,
3997,
988,
395,
29963,
29918,
29909,
29922,
3552,
29875,
29918,
29909,
29905,
6034,
29905,
2589,
2144,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29893,
29918,
29954,
1262,
338,
278,
7555,
12259,
1012,
2312,
4388,
29883,
542,
13317,
515,
518,
29931,
331,
655,
30081,
3199,
1118,
322,
22829,
363,
395,
29963,
29918,
29933,
1504,
13,
13,
12024,
395,
29968,
21854,
1942,
476,
2119,
29990,
1262,
367,
278,
9623,
310,
11071,
12768,
373,
278,
12338,
2151,
395,
29933,
4388,
5453,
395,
29990,
1628,
411,
2175,
18039,
29909,
4388,
5453,
3632,
14143,
779,
6827,
29918,
29909,
741,
17308,
29913,
29909,
29905,
517,
341,
29898,
29968,
5767,
322,
1235,
395,
29931,
29922,
29931,
29898,
29990,
3892,
741,
1563,
1194,
463,
29912,
9278,
5344,
29913,
476,
29987,
29990,
1966,
29912,
4044,
29987,
29933,
29905,
355,
29912,
9278,
5344,
1012,
1266,
15604,
367,
278,
25236,
9623,
29889,
2803,
779,
3754,
29938,
322,
779,
4722,
21854,
1563,
1194,
463,
29912,
9278,
5344,
29913,
320,
3754,
11035,
4283,
1966,
29912,
4044,
11035,
3571,
29905,
355,
29912,
9278,
5344,
1012,
1266,
15604,
367,
278,
6942,
8820,
310,
395,
29954,
29938,
373,
395,
29968,
29938,
322,
395,
29931,
1628,
8307,
29889,
1987,
779,
9876,
29901,
2013,
6827,
29918,
29909,
29905,
6034,
29905,
2589,
741,
17308,
29913,
29907,
29918,
29900,
29898,
29954,
2144,
517,
341,
29898,
29968,
1262,
322,
779,
4787,
9361,
741,
1563,
1194,
463,
29912,
9278,
5344,
29913,
320,
9876,
29987,
29900,
1966,
29900,
11035,
3433,
29905,
355,
29912,
9278,
5344,
1012,
1266,
19978,
17308,
29913,
29907,
29918,
29900,
29898,
29954,
2144,
517,
341,
29898,
29931,
1262,
526,
1592,
27432,
424,
29889,
450,
21692,
3234,
17753,
10590,
408,
2046,
29931,
29905,
2273,
1355,
3187,
4722,
402,
21854,
463,
29912,
12571,
29913,
476,
29905,
2273,
1355,
3187,
3754,
402,
29987,
29990,
29905,
2273,
1355,
3187,
4283,
402,
1966,
29912,
4044,
29987,
29933,
29905,
2273,
1355,
3187,
3571,
402,
320,
355,
29912,
12571,
11656,
3997,
278,
14581,
1302,
2467,
408,
2046,
741,
12259,
1012,
4722,
21854,
463,
29912,
12571,
29913,
2802,
12259,
1012,
3754,
29987,
741,
12259,
1012,
4283,
1966,
29912,
4044,
29987,
741,
12259,
1012,
3571,
320,
355,
29912,
12571,
11656,
3997,
322,
278,
7555,
12259,
1012,
4722,
4388,
29883,
542,
13317,
408,
2046,
29963,
29918,
29931,
21854,
463,
29912,
12571,
29913,
478,
29918,
29968,
29987,
29900,
1966,
29900,
29987,
29963,
29918,
29933,
320,
355,
29912,
12571,
930,
19470,
6549,
278,
13499,
28179,
14581,
1302,
2467,
17753,
10590,
408,
6118,
463,
29912,
13671,
29913,
13,
741,
10737,
1012,
4722,
13,
29987,
2013,
9158,
29912,
3253,
29913,
29963,
29918,
29931,
29905,
6034,
741,
12259,
1012,
4722,
13,
1966,
20644,
741,
463,
29912,
12571,
29913,
478,
29918,
29968,
29987,
29900,
1966,
29900,
29987,
29963,
29918,
29933,
320,
355,
29912,
12571,
12431,
463,
29912,
12571,
29913,
2802,
12259,
1012,
3754,
29987,
741,
12259,
1012,
4283,
1966,
29912,
4044,
29987,
741,
12259,
1012,
3571,
320,
355,
29912,
12571,
12431,
463,
29912,
12571,
29913,
478,
29918,
29968,
6622,
29987,
29900,
1966,
29900,
29987,
29963,
29918,
29933,
6622,
320,
355,
29912,
12571,
930,
13,
1966,
20644,
741,
463,
29912,
12571,
29913,
320,
9158,
29912,
3253,
29913,
29963,
29918,
29968,
29905,
6034,
741,
12259,
1012,
3754,
29987,
29963,
29918,
29968,
741,
12259,
1012,
4283,
478,
29918,
29933,
6622,
1966,
29912,
4044,
11035,
9158,
29912,
3253,
29913,
29963,
29918,
29933,
29905,
6034,
741,
12259,
1012,
3571,
320,
355,
29912,
12571,
930,
2053,
355,
29912,
13671,
9458,
322,
1951,
372,
2225,
20098,
278,
11155,
410,
24247,
372,
27122,
267,
373,
278,
7568,
29899,
1266,
11155,
304,
263,
1302,
2467,
373,
278,
12338,
2151,
2427,
29968,
29905,
2273,
1355,
3187,
3754,
402,
6817,
29898,
29933,
29905,
2273,
1355,
3187,
3571,
402,
1262,
289,
326,
397,
1297,
395,
29990,
29905,
2273,
1355,
3187,
4283,
402,
1628,
2183,
491,
2046,
29891,
29905,
17499,
478,
29918,
29968,
741,
12259,
1012,
4283,
29898,
29891,
29897,
29963,
29918,
29933,
6622,
741,
3425,
29905,
726,
29912,
1454,
9156,
29891,
29905,
262,
1060,
29905,
2273,
1355,
3187,
4283,
402,
19470,
5293,
278,
24420,
26116,
7555,
1942,
476,
2119,
29990,
2144,
2273,
1355,
3187,
3754,
402,
29905,
27798,
2802,
1942,
476,
2119,
29990,
29905,
2273,
1355,
3187,
4283,
402,
5767,
697,
28520,
12747,
393,
363,
599,
395,
29891,
29905,
262,
1060,
29905,
2273,
1355,
3187,
4283,
402,
29938,
591,
505,
2046,
29963,
29918,
29968,
741,
12259,
1012,
4283,
29898,
29891,
29897,
13,
2013,
3752,
29880,
29898,
1194,
6827,
29918,
29909,
29905,
2273,
1355,
402,
2144,
9356,
741,
726,
741,
726,
786,
29912,
333,
20388,
3752,
29878,
5033,
29963,
29918,
29909,
21964,
12259,
1012,
4283,
29898,
29891,
29897,
13,
29922,
29963,
29918,
29909,
741,
12259,
1012,
4283,
29898,
29891,
467,
3997,
13,
13,
12881,
635,
29892,
591,
1423,
393,
7555,
10737,
1012,
4283,
29938,
338,
15878,
411,
278,
2175,
2427,
29909,
29905,
2273,
1355,
3187,
2312,
402,
26725,
5453,
3829,
29901,
363,
395,
29881,
29905,
262,
319,
29905,
2273,
1355,
3187,
2312,
402,
29938,
322,
395,
29891,
29905,
262,
1060,
29905,
2273,
1355,
3187,
4283,
402,
1628,
1951,
278,
12338,
2151,
29899,
5453,
3632,
14143,
2046,
741,
10737,
1012,
4283,
741,
17308,
29913,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29905,
517,
341,
29905,
3752,
29880,
3552,
29990,
29905,
2273,
1355,
3187,
4283,
402,
2144,
9356,
315,
6622,
29898,
29954,
2144,
3752,
29878,
17085,
338,
1661,
311,
17158,
322,
278,
3632,
14143,
6118,
6827,
29918,
29909,
29905,
2273,
1355,
402,
741,
17308,
29913,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29905,
517,
341,
29898,
29968,
29905,
2273,
1355,
3187,
3754,
402,
17085,
338,
7555,
10737,
1012,
4181,
29899,
741,
10737,
1012,
3754,
29938,
1592,
27432,
424,
29892,
591,
505,
6118,
463,
29912,
13671,
29913,
13,
741,
10737,
1012,
4283,
29898,
4518,
29897,
13,
20644,
741,
10737,
1012,
4283,
29905,
3752,
29880,
29898,
1194,
6827,
29918,
29909,
29905,
2273,
1355,
402,
5033,
29881,
29897,
29891,
29905,
3752,
29878,
29897,
13,
1966,
20644,
741,
10737,
1012,
3754,
29905,
6034,
1194,
6827,
29918,
29909,
29905,
2273,
1355,
402,
5033,
29881,
21964,
10737,
1012,
4283,
29898,
29891,
29897,
13,
1966,
29987,
2013,
3752,
29880,
29898,
1194,
6827,
29918,
29909,
29905,
2273,
1355,
402,
2144,
9356,
741,
726,
741,
726,
786,
29912,
333,
20388,
3752,
29878,
2144,
6034,
741,
10737,
1012,
4181,
29898,
29881,
21964,
10737,
1012,
4283,
29898,
29891,
29897,
13,
1966,
20644,
741,
10737,
1012,
4181,
29898,
29881,
21964,
10737,
1012,
4283,
29898,
29891,
29897,
13,
29905,
29939,
287,
4150,
29905,
355,
29912,
13671,
9458,
13,
13,
29905,
29961,
29883,
3274,
264,
18899,
1670,
338,
263,
2090,
2801,
6118,
9158,
741,
9158,
29912,
6271,
29909,
1157,
3187,
2762,
29912,
264,
930,
3331,
17308,
1157,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
20388,
517,
8620,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
9458,
411,
278,
1021,
1203,
2910,
408,
779,
9158,
29912,
6271,
29909,
4429,
322,
2183,
373,
18131,
12903,
408,
4477,
29901,
565,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
769,
6118,
9158,
741,
9158,
29912,
6271,
29909,
1157,
3187,
2762,
29912,
264,
930,
4400,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
10737,
1012,
2312,
2053,
2589,
29905,
2273,
1355,
402,
2144,
517,
313,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29892,
741,
10737,
1012,
3571,
2053,
3433,
29905,
2273,
1355,
402,
17085,
338,
278,
18131,
1608,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
2183,
491,
779,
9158,
741,
9158,
29912,
6271,
29909,
1157,
3187,
2762,
29912,
264,
930,
4400,
29990,
2053,
4283,
29962,
11759,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
741,
10737,
1012,
4283,
25473,
988,
7555,
10737,
1012,
4283,
29938,
338,
278,
7555,
10737,
1012,
2312,
29899,
741,
10737,
1012,
3571,
29938,
15878,
1302,
2467,
373,
395,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29938,
3342,
297,
518,
29931,
331,
655,
30081,
3199,
1836,
13,
13,
4806,
1369,
411,
278,
21692,
29899,
4704,
2090,
2801,
515,
6435,
741,
2762,
29912,
10644,
29261,
2762,
29912,
264,
930,
1042,
304,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
1042,
393,
338,
2183,
373,
3618,
491,
2046,
29898,
29909,
2053,
2312,
2144,
17499,
313,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
12259,
1012,
2312,
511,
3997,
322,
393,
4893,
263,
18131,
1608,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2144,
517,
313,
29933,
2053,
3571,
1262,
297,
6435,
741,
2762,
29912,
10644,
29261,
2762,
29912,
264,
930,
1042,
304,
278,
18131,
1608,
2046,
29961,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
741,
12259,
1012,
4283,
21545,
17308,
2119,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
12259,
1012,
2312,
2144,
517,
313,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29892,
741,
12259,
1012,
3571,
17085,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
4311,
2567,
29892,
304,
1827,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
925,
2794,
393,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2144,
517,
313,
29933,
2053,
3571,
1262,
338,
263,
18131,
1608,
297,
6435,
741,
2762,
29912,
10644,
29261,
2762,
29912,
264,
930,
4429,
322,
769,
11970,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
741,
12259,
1012,
4283,
21545,
17308,
2119,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
12259,
1012,
2312,
2053,
2589,
29905,
2273,
1355,
402,
2144,
517,
13,
29898,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29892,
741,
12259,
1012,
3571,
2053,
3433,
29905,
2273,
1355,
402,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
1363,
11970,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
741,
12259,
1012,
4283,
21545,
17308,
2119,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
12259,
1012,
2312,
2144,
517,
313,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29892,
741,
12259,
1012,
3571,
1262,
338,
263,
18131,
1608,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
4311,
4001,
11970,
29990,
2053,
4283,
10725,
17499,
518,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
741,
12259,
1012,
4283,
9341,
338,
2090,
2801,
616,
515,
6435,
741,
2762,
29912,
10644,
29261,
2762,
29912,
264,
930,
1042,
304,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
4429,
372,
338,
884,
2090,
2801,
616,
515,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
304,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
4429,
1363,
15259,
310,
18131,
12903,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
322,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
338,
278,
1021,
408,
297,
6435,
741,
2762,
29912,
10644,
29261,
2762,
29912,
264,
930,
1042,
322,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
4429,
8307,
29889,
13,
13,
10454,
29892,
591,
2869,
817,
304,
671,
278,
13499,
28179,
1302,
2467,
7555,
10737,
1012,
2312,
29938,
2012,
310,
278,
14581,
1302,
2467,
7555,
12259,
1012,
2312,
1504,
3645,
518,
29931,
331,
655,
30081,
3199,
29913,
372,
4477,
393,
565,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
769,
11970,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
741,
10737,
1012,
4283,
21545,
17308,
2119,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29892,
741,
10737,
1012,
2312,
2053,
2589,
29905,
2273,
1355,
402,
2144,
517,
13,
29898,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29892,
741,
10737,
1012,
3571,
2053,
3433,
29905,
2273,
1355,
402,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
4311,
450,
3566,
1860,
2046,
29961,
29990,
2053,
4283,
10725,
17499,
518,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
741,
10737,
1012,
4283,
29962,
3997,
526,
2090,
2801,
616,
363,
278,
3928,
2063,
395,
29990,
29905,
2273,
1355,
3187,
4283,
402,
1628,
322,
591,
1818,
1510,
393,
896,
526,
2090,
2801,
616,
363,
278,
1302,
7387,
7555,
10737,
1012,
4283,
1504,
11221,
1790,
18131,
1608,
11970,
29979,
2053,
4722,
21545,
17308,
2119,
29933,
2053,
3571,
2053,
3433,
2144,
517,
313,
29907,
2053,
3754,
2053,
4787,
1262,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
4429,
491,
518,
29992,
29873,
11216,
22206,
30081,
29941,
29889,
29947,
322,
967,
5296,
29962,
727,
338,
385,
26116,
6118,
29965,
3232,
741,
17308,
2119,
29990,
29905,
2273,
1355,
3187,
4283,
402,
2144,
9356,
313,
29979,
29905,
2273,
1355,
3187,
4722,
402,
21964,
957,
842,
741,
27798,
3331,
24225,
12156,
29990,
29905,
9356,
29918,
29933,
612,
2144,
2273,
1355,
1665,
4283,
29905,
9356,
29905,
4722,
29913,
402,
3997,
310,
2427,
29909,
29905,
2273,
1355,
3187,
2312,
402,
6817,
29898,
29907,
29905,
2273,
1355,
3187,
3754,
402,
1262,
3928,
2063,
29892,
393,
4893,
385,
22470,
12489,
395,
29916,
29905,
9356,
343,
29938,
363,
395,
29916,
29905,
262,
315,
29918,
29883,
29898,
29954,
29892,
29990,
1262,
322,
395,
29891,
29905,
262,
315,
29918,
29883,
29898,
29954,
29892,
29979,
1262,
304,
278,
740,
779,
29965,
3232,
29898,
29916,
29905,
9356,
343,
2144,
262,
315,
29918,
29883,
29898,
29954,
29892,
29990,
29905,
9356,
29918,
29933,
612,
1262,
2183,
491,
6118,
29965,
3232,
29898,
29916,
29905,
9356,
343,
5033,
29879,
7950,
524,
29918,
29954,
921,
29898,
29873,
2144,
9356,
320,
4722,
29918,
29873,
29905,
3752,
29880,
29898,
29891,
29898,
29873,
29912,
3426,
29896,
930,
29879,
2144,
3752,
29878,
24224,
6008,
19470,
11796,
800,
2788,
304,
1906,
297,
278,
5296,
310,
518,
29992,
264,
305,
309,
1114,
10244,
30081,
29941,
29889,
29955,
29962,
313,
4716,
1304,
12212,
21692,
9316,
29897,
1510,
393,
779,
29965,
3232,
29938,
338,
2427,
741,
12259,
1012,
4283,
741,
755,
2674,
741,
22064,
14838,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29913,
2802,
12259,
1012,
4722,
6817,
741,
12259,
3331,
4283,
29905,
9356,
29918,
29933,
320,
4722,
1042,
1592,
27432,
424,
29889,
1152,
278,
2427,
741,
10737,
1012,
4283,
741,
755,
2674,
741,
22064,
14838,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29913,
2802,
10737,
1012,
4722,
6817,
741,
10737,
3331,
4283,
29905,
9356,
29918,
29933,
320,
4722,
1042,
1592,
440,
279,
8837,
29892,
591,
10272,
29892,
363,
395,
29916,
29905,
262,
1060,
29905,
2273,
1355,
3187,
4283,
402,
29938,
322,
395,
29891,
29905,
262,
612,
29905,
2273,
1355,
3187,
4722,
402,
1628,
6118,
463,
29912,
13671,
29913,
13,
741,
10737,
3331,
4283,
29905,
9356,
29918,
29933,
320,
4722,
1012,
6034,
320,
29965,
3232,
29898,
29916,
29905,
9356,
343,
29897,
13,
20644,
29963,
29918,
29909,
741,
12259,
3331,
4283,
29905,
9356,
29918,
29933,
320,
4722,
1012,
3752,
29880,
1194,
29965,
3232,
29898,
29916,
29905,
9356,
343,
2144,
3752,
29878,
29897,
29963,
29918,
29907,
6622,
13,
1966,
20644,
29963,
29918,
29909,
1194,
29965,
3232,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
6034,
313,
741,
12259,
1012,
4283,
741,
755,
2674,
741,
22064,
14838,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29913,
2802,
12259,
1012,
4722,
5033,
29916,
29905,
9356,
343,
29897,
29963,
29918,
29907,
6622,
13,
1966,
11035,
957,
842,
8001,
29896,
10172,
29922,
4678,
29965,
3232,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
3752,
29880,
29898,
29963,
29918,
29909,
13670,
12259,
1012,
4283,
741,
755,
2674,
741,
22064,
14838,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29913,
2802,
12259,
1012,
4722,
5033,
29916,
29905,
9356,
343,
29897,
29963,
29918,
29907,
6622,
29905,
3752,
29878,
29897,
13,
1966,
20644,
1194,
29965,
3232,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
6970,
29880,
29898,
29963,
29918,
29909,
29905,
17458,
29905,
3752,
29880,
13670,
12259,
1012,
4283,
29898,
29916,
2144,
9356,
2802,
12259,
1012,
4722,
29898,
29891,
2144,
3752,
29878,
29897,
29963,
29918,
29907,
6622,
29905,
29933,
4481,
29897,
13,
1966,
11035,
957,
842,
8001,
29906,
10172,
29922,
4678,
29965,
3232,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
6970,
29880,
1194,
17458,
29905,
3752,
29880,
29898,
29963,
29918,
29909,
13670,
12259,
1012,
4283,
29898,
29916,
2144,
9356,
2802,
12259,
1012,
4722,
29898,
29891,
876,
29963,
29918,
29907,
6622,
29905,
3752,
29878,
2144,
29933,
4481,
29897,
13,
1966,
20644,
1194,
29965,
3232,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
6970,
29880,
1194,
17458,
29905,
3752,
29880,
29898,
29963,
29918,
29909,
741,
12259,
1012,
4283,
29898,
29916,
2144,
9356,
2802,
12259,
1012,
4722,
29898,
29891,
29897,
29963,
29918,
29907,
6622,
29905,
3752,
29878,
2144,
29933,
4481,
29897,
13,
1966,
11035,
957,
842,
8001,
29941,
10172,
29922,
4678,
29965,
3232,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
6970,
29880,
1194,
17458,
29905,
3752,
29880,
29898,
29963,
29918,
29909,
741,
12259,
1012,
4283,
29898,
29916,
29897,
29963,
29918,
29933,
6622,
29905,
9356,
478,
29918,
29933,
741,
12259,
1012,
4722,
29898,
29891,
29897,
29963,
29918,
29907,
6622,
29905,
3752,
29878,
2144,
29933,
4481,
29897,
13,
1966,
20644,
1194,
29965,
3232,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
6970,
29880,
1194,
17458,
29905,
3752,
29880,
13670,
10737,
1012,
4283,
29898,
29916,
2144,
9356,
2802,
10737,
1012,
4722,
29898,
29891,
2144,
3752,
29878,
2144,
29933,
4481,
29897,
13,
1966,
20644,
1194,
29965,
3232,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
6034,
313,
741,
10737,
1012,
4283,
741,
755,
2674,
741,
22064,
14838,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29913,
2802,
12259,
1012,
4722,
5033,
29916,
29905,
9356,
343,
20481,
355,
29912,
13671,
9458,
988,
278,
5186,
1907,
472,
313,
29896,
29897,
322,
313,
29906,
29897,
1101,
1951,
779,
29965,
3232,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1042,
322,
779,
17458,
29938,
526,
3632,
7886,
12903,
310,
2427,
29898,
29909,
29905,
2273,
1355,
3187,
2312,
402,
2144,
9356,
315,
6622,
29898,
29954,
876,
29899,
3552,
29907,
29905,
2273,
1355,
3187,
3754,
402,
2144,
9356,
315,
6622,
29898,
29954,
23846,
3928,
2063,
29892,
322,
278,
17193,
472,
313,
29941,
29897,
1951,
2427,
29898,
29990,
29905,
2273,
1355,
3187,
4283,
402,
2144,
9356,
315,
6622,
29898,
29954,
28986,
9356,
20862,
29933,
29905,
2273,
1355,
3187,
3571,
402,
2144,
9356,
315,
6622,
29898,
29954,
2915,
5135,
29979,
29905,
2273,
1355,
3187,
4722,
402,
2144,
9356,
315,
6622,
29898,
29954,
23846,
338,
6411,
8362,
975,
2427,
29933,
29905,
2273,
1355,
3187,
3571,
402,
2144,
9356,
315,
6622,
29898,
29954,
4935,
739,
1286,
4477,
22829,
304,
278,
26328,
393,
278,
12827,
11970,
29990,
2053,
4283,
10725,
17499,
518,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
741,
10737,
1012,
4283,
9341,
338,
2090,
2801,
616,
29889,
13,
13,
1576,
5296,
310,
518,
29992,
2901,
29939,
13844,
10244,
30081,
29953,
29889,
29946,
29962,
313,
4149,
884,
518,
29992,
2901,
29939,
13844,
22206,
30081,
29945,
29889,
29896,
2314,
3697,
393,
565,
11970,
29990,
21545,
17308,
2119,
29909,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
29926,
755,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7585,
3187,
2762,
29912,
264,
930,
1042,
769,
2046,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
1125,
27805,
29916,
29905,
262,
341,
29898,
29990,
1125,
29905,
29875,
4616,
29898,
29895,
29897,
29916,
29922,
29916,
29905,
29926,
755,
29898,
29895,
2144,
262,
1060,
29905,
726,
29912,
363,
599,
500,
29895,
29905,
262,
2802,
1942,
476,
1012,
9458,
338,
263,
1661,
311,
17158,
395,
29907,
29898,
29909,
2053,
29875,
4616,
6817,
29907,
29898,
29933,
2053,
29926,
755,
1262,
3928,
663,
29892,
322,
727,
338,
263,
313,
15107,
6275,
5412,
29897,
26116,
6118,
3416,
29918,
29990,
741,
17308,
29913,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
2144,
9356,
741,
1942,
476,
3331,
957,
842,
741,
27798,
3331,
24225,
930,
29990,
3997,
408,
395,
29909,
29899,
29933,
29938,
3928,
2063,
313,
3062,
591,
4880,
395,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
1262,
408,
385,
395,
29909,
29899,
29933,
29938,
3928,
663,
3025,
278,
338,
7886,
12903,
779,
3416,
29918,
29909,
741,
17308,
29913,
29907,
29898,
29909,
2053,
29875,
4616,
2144,
9356,
741,
1942,
476,
3331,
957,
842,
741,
27798,
3331,
24225,
930,
29909,
29938,
322,
779,
3416,
29918,
29933,
741,
17308,
29913,
29907,
29898,
29933,
2053,
29926,
755,
2144,
9356,
741,
1942,
476,
3331,
957,
842,
741,
27798,
3331,
24225,
930,
29933,
10931,
1316,
393,
6118,
3416,
29918,
29990,
29898,
29916,
29905,
9356,
413,
3892,
29916,
29905,
29926,
755,
29898,
29895,
21964,
3425,
29905,
726,
29912,
1454,
599,
9156,
29916,
29905,
262,
315,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
511,
29895,
29905,
262,
741,
1942,
476,
1836,
3997,
739,
4477,
515,
518,
29992,
2901,
29939,
13844,
10244,
30081,
29953,
29889,
29946,
322,
967,
5296,
29962,
393,
727,
338,
263,
2090,
2801,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7585,
3187,
2762,
29912,
264,
20388,
517,
16195,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
264,
930,
1042,
393,
338,
3342,
373,
3618,
491,
2427,
29909,
2053,
29875,
4616,
2144,
17499,
315,
29898,
29909,
2053,
29875,
4616,
1262,
322,
393,
4893,
263,
18131,
1608,
11970,
29990,
21545,
17308,
2119,
29909,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
29926,
755,
1262,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7585,
3187,
2762,
29912,
264,
930,
1042,
304,
278,
18131,
1608,
2046,
29961,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
4638,
741,
17308,
29913,
29907,
29898,
29909,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
29926,
755,
17085,
297,
7555,
2762,
29912,
29907,
2137,
29930,
4429,
322,
607,
25409,
338,
263,
7663,
24796,
29892,
411,
16452,
29899,
262,
3901,
2183,
491,
278,
334,
264,
305,
309,
1114,
16160,
2133,
2090,
2801,
29930,
5622,
395,
29909,
29938,
304,
2427,
29909,
29905,
9356,
741,
1942,
476,
1118,
29896,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
8435,
322,
263,
18131,
1608,
11970,
29990,
21545,
17308,
29913,
29909,
29905,
517,
350,
29938,
297,
6435,
741,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
264,
930,
1042,
304,
278,
18131,
1608,
11970,
29990,
29905,
9356,
741,
1942,
476,
6525,
1628,
988,
395,
29990,
29905,
9356,
741,
1942,
476,
1042,
338,
278,
7029,
29899,
20158,
29899,
4704,
2427,
29909,
29905,
9356,
741,
1942,
476,
1800,
17722,
29933,
29905,
9356,
741,
1942,
476,
8435,
3928,
663,
29889,
512,
518,
29992,
2901,
29939,
13844,
21940,
30081,
29953,
29889,
29941,
29962,
278,
427,
305,
309,
1114,
16160,
2133,
2090,
2801,
471,
27291,
491,
395,
6224,
741,
10737,
1157,
741,
726,
786,
29912,
855,
930,
7585,
3187,
2762,
29912,
264,
930,
4429,
322,
967,
16452,
29899,
262,
3901,
471,
451,
2183,
263,
1024,
313,
26492,
278,
1661,
311,
17158,
1873,
471,
27291,
491,
6435,
741,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
299,
930,
1042,
297,
518,
29992,
2901,
29939,
13844,
1402,
408,
10824,
472,
278,
1095,
310,
518,
13438,
30081,
3199,
7690,
1334,
864,
385,
1592,
27432,
424,
1873,
29892,
322,
591,
817,
304,
1074,
825,
304,
437,
411,
278,
1302,
7387,
29901,
13,
13,
29905,
29961,
510,
503,
1187,
18899,
2803,
11970,
29990,
2053,
11327,
21545,
17308,
2119,
29909,
2053,
4181,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
5463,
2053,
29926,
755,
1262,
367,
263,
18131,
1608,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
4311,
1987,
727,
338,
263,
395,
29907,
1194,
4181,
6817,
29907,
1194,
5463,
1262,
15878,
1302,
2467,
395,
29907,
1194,
11327,
1262,
373,
278,
395,
29907,
29898,
29909,
2053,
29875,
4616,
6817,
29907,
29898,
29933,
2053,
29926,
755,
1262,
3928,
663,
395,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
1262,
2183,
491,
278,
24345,
304,
395,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
1262,
310,
278,
24420,
6081,
310,
779,
11327,
29938,
304,
395,
29924,
29898,
29990,
4935,
13,
13,
14769,
475,
1235,
395,
29968,
21854,
1942,
476,
2119,
29990,
1262,
367,
278,
9623,
310,
11071,
12768,
373,
278,
12338,
2151,
395,
29933,
4388,
5453,
395,
29990,
1628,
411,
2175,
18039,
29909,
4388,
5453,
3632,
14143,
779,
6827,
29918,
29909,
741,
17308,
29913,
29909,
29905,
517,
341,
29898,
29968,
5767,
322,
1235,
395,
29931,
29922,
29931,
29898,
29990,
3892,
741,
1563,
1194,
463,
29912,
9278,
5344,
29913,
476,
29987,
29990,
1966,
29912,
4044,
29987,
29933,
29905,
355,
29912,
9278,
5344,
1012,
1266,
15604,
367,
278,
25236,
9623,
29889,
2803,
779,
1187,
29938,
322,
779,
5389,
21854,
1563,
1194,
463,
29912,
9278,
5344,
29913,
320,
1187,
11035,
11327,
1966,
29912,
4044,
11035,
5463,
29905,
355,
29912,
9278,
5344,
1012,
1266,
15604,
367,
278,
6942,
1302,
7387,
310,
395,
29954,
29938,
373,
395,
29968,
29938,
322,
395,
29931,
1628,
8307,
29889,
1987,
779,
9876,
29901,
2013,
6827,
29918,
29909,
29905,
6034,
29905,
29875,
4616,
741,
17308,
3331,
1942,
476,
1012,
517,
341,
29898,
29968,
1262,
322,
779,
4787,
9361,
741,
1563,
1194,
463,
29912,
9278,
5344,
29913,
320,
9876,
29987,
29900,
1966,
29900,
11035,
29926,
755,
29905,
355,
29912,
9278,
5344,
1012,
1266,
19978,
17308,
3331,
1942,
476,
1012,
517,
341,
29898,
29931,
1262,
526,
1592,
27432,
424,
363,
278,
12604,
1302,
2467,
373,
7555,
1942,
476,
4311,
3940,
393,
11970,
29990,
2053,
11327,
21545,
17308,
2119,
29968,
2053,
1187,
2053,
9876,
2144,
517,
313,
29933,
2053,
5463,
2053,
29926,
755,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
4429,
322,
2046,
29907,
29898,
29990,
2053,
9876,
2053,
29926,
755,
3892,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
467,
3997,
2648,
518,
29992,
2901,
29939,
13844,
22206,
30081,
29945,
29889,
29896,
322,
10244,
30081,
29953,
29889,
29946,
322,
1009,
29828,
1402,
278,
6198,
26418,
424,
17753,
10590,
408,
2046,
29907,
29898,
29931,
2053,
4787,
3892,
741,
463,
29912,
12571,
29913,
315,
29898,
29968,
2053,
9876,
26927,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
18775,
29912,
4044,
29987,
29907,
29898,
29933,
2053,
29926,
755,
29897,
320,
355,
29912,
12571,
930,
19470,
319,
26529,
16287,
3697,
393,
278,
6942,
1302,
2467,
2225,
20098,
278,
11155,
410,
24247,
29892,
322,
8151,
27122,
267,
373,
278,
7568,
29899,
1266,
11155,
304,
263,
1302,
2467,
395,
29907,
1194,
11327,
1262,
373,
278,
12338,
2151,
395,
29907,
29898,
29968,
2053,
9876,
6817,
29907,
29898,
29933,
2053,
29926,
755,
1262,
289,
326,
397,
1297,
395,
29907,
29898,
29990,
2053,
9876,
2053,
29926,
755,
5767,
2183,
491,
278,
24345,
304,
395,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
1262,
310,
278,
6081,
310,
779,
11327,
29938,
304,
395,
29924,
29898,
29990,
4935,
13,
13,
3112,
9242,
304,
1423,
393,
395,
29907,
1194,
11327,
1262,
338,
15878,
411,
278,
2175,
395,
29907,
29898,
29909,
2053,
29875,
4616,
26725,
5453,
3829,
29901,
363,
395,
29874,
29905,
262,
315,
29898,
29909,
2053,
29875,
4616,
1262,
322,
395,
29916,
29905,
262,
315,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
3892,
29907,
29898,
29990,
2053,
9876,
2053,
29926,
755,
5767,
1951,
278,
12338,
2151,
29899,
5453,
3632,
14143,
2046,
29907,
1194,
11327,
21964,
17308,
29913,
29907,
29898,
29990,
2053,
9876,
2053,
29926,
755,
2144,
517,
341,
29905,
3752,
29880,
29898,
29907,
29898,
29990,
2053,
9876,
2053,
29926,
755,
2144,
9356,
315,
6622,
29898,
29954,
2144,
3752,
29878,
17085,
338,
1661,
311,
17158,
322,
278,
3632,
14143,
6118,
6827,
29918,
29909,
741,
17308,
29913,
29909,
29905,
517,
341,
29898,
29968,
17085,
338,
779,
4181,
2612,
1187,
29938,
1592,
27432,
424,
29892,
591,
505,
6118,
463,
29912,
13671,
29913,
13,
29907,
1194,
11327,
5033,
1165,
29897,
13,
20644,
29907,
1194,
11327,
2144,
3752,
29880,
1194,
6827,
29918,
29909,
29898,
29874,
29897,
29916,
29905,
3752,
29878,
29897,
13,
1966,
20644,
29907,
1194,
1187,
2144,
6034,
29905,
6827,
29918,
29909,
29898,
29874,
29897,
29907,
1194,
11327,
5033,
29916,
29897,
13,
1966,
29987,
2013,
1187,
29905,
6034,
29905,
6827,
29918,
29909,
29898,
29874,
29897,
29907,
1194,
11327,
5033,
29916,
29897,
13,
1966,
20644,
1194,
6827,
29918,
29909,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
11606,
6034,
29905,
4181,
29898,
29874,
29897,
29907,
1194,
11327,
5033,
29916,
29897,
13,
1966,
29987,
2013,
4181,
29898,
29874,
29897,
29907,
1194,
11327,
5033,
29916,
29897,
13,
1966,
20644,
29907,
1194,
4181,
5033,
29874,
29897,
29907,
1194,
11327,
5033,
29916,
467,
13,
29905,
29939,
287,
4150,
29905,
355,
29912,
13671,
9458,
13,
13,
1349,
375,
591,
508,
4529,
263,
2090,
2801,
2046,
16195,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
264,
930,
3331,
17308,
1157,
16195,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
20388,
517,
16195,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
9458,
304,
367,
278,
1021,
408,
7555,
726,
786,
29912,
29928,
855,
7920,
373,
3618,
29892,
322,
373,
18131,
12903,
408,
4477,
29901,
565,
11970,
29990,
2053,
11327,
21545,
17308,
2119,
29909,
2053,
4181,
2053,
29875,
4616,
2144,
517,
313,
29933,
2053,
5463,
2053,
29926,
755,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
769,
2046,
16195,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
264,
930,
4400,
29990,
2053,
11327,
21545,
17308,
1012,
3752,
29880,
29898,
29907,
29898,
29909,
2053,
29875,
4616,
511,
29907,
1194,
4181,
2144,
3752,
29878,
2144,
517,
13,
29905,
3752,
29880,
29898,
29907,
29898,
29933,
2053,
29926,
755,
511,
29907,
1194,
5463,
2144,
3752,
29878,
17085,
338,
278,
18131,
1608,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
1042,
2183,
491,
2046,
16195,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
264,
930,
4400,
29990,
2053,
11327,
29962,
11759,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
511,
29907,
1194,
11327,
29897,
1402,
3997,
988,
395,
29907,
1194,
11327,
1262,
338,
278,
395,
29907,
29898,
29909,
2053,
29875,
4616,
6817,
29907,
29898,
29933,
2053,
29926,
755,
1262,
15878,
1302,
2467,
373,
395,
29907,
29898,
29990,
2053,
29875,
4616,
2053,
29926,
755,
1262,
3342,
297,
518,
29931,
331,
655,
30081,
3199,
1836,
13,
13,
29905,
29961,
510,
1111,
264,
18899,
450,
2038,
2090,
2801,
6435,
741,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
264,
930,
3331,
17308,
1157,
16195,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
20388,
517,
16195,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
1042,
338,
263,
7663,
24796,
29892,
322,
25409,
372,
9250,
29879,
304,
385,
24796,
1546,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
2137,
29885,
29938,
322,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
2137,
29885,
1504,
13,
13,
2831,
278,
937,
760,
29892,
591,
817,
304,
1073,
393,
6435,
741,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
264,
930,
1042,
338,
13674,
1190,
25674,
29892,
2989,
29892,
322,
27057,
29889,
11044,
2556,
1190,
622,
2068,
338,
12604,
29892,
1951,
7555,
726,
786,
29912,
29928,
855,
12431,
17308,
1157,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
20388,
517,
741,
2762,
29912,
7967,
7920,
338,
385,
24796,
29892,
322,
1951,
26116,
297,
7555,
2762,
29912,
7967,
7920,
338,
23505,
1135,
297,
278,
7663,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
4311,
13,
13,
23036,
278,
313,
5464,
29899,
9402,
1306,
424,
29897,
427,
305,
309,
1114,
2731,
4427,
2133,
2090,
2801,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7585,
3187,
2762,
29912,
264,
20388,
517,
16195,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
264,
930,
1042,
338,
385,
24796,
29892,
322,
1951,
278,
18131,
12903,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
322,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
1042,
526,
925,
18131,
12903,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
29907,
2137,
29930,
7585,
3187,
2762,
29912,
264,
930,
1042,
322,
6435,
741,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
264,
930,
4429,
8307,
29892,
393,
19905,
278,
4805,
3829,
29892,
6435,
741,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
264,
930,
1042,
338,
2989,
322,
27057,
29889,
13,
13,
2831,
278,
916,
760,
29892,
591,
871,
817,
304,
17386,
515,
518,
29931,
331,
655,
30081,
3199,
29913,
393,
565,
2427,
29909,
2053,
4181,
2053,
29875,
4616,
1262,
338,
385,
1203,
297,
395,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
769,
278,
1302,
2467,
779,
4181,
29938,
338,
23183,
565,
322,
871,
565,
395,
29907,
1194,
4181,
1262,
338,
29889,
13,
13,
2369,
305,
309,
1114,
3172,
17569,
868,
2877,
426,
29937,
264,
305,
309,
1114,
868,
2877,
29913,
13,
9166,
4936,
1360,
13,
13,
797,
445,
4004,
591,
6356,
11608,
936,
3172,
17569,
868,
2877,
363,
23183,
1302,
7387,
322,
278,
427,
305,
309,
1114,
13997,
29889,
13,
13,
4806,
4529,
263,
2090,
2801,
6435,
741,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
264,
930,
1042,
491,
278,
26418,
1230,
13722,
6118,
29916,
962,
271,
2126,
29992,
29907,
29974,
29906,
29900,
415,
29912,
13,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
20388,
279,
29961,
29878,
29962,
3311,
9158,
741,
9158,
29912,
6271,
29909,
1157,
3187,
2762,
29912,
264,
930,
930,
320,
279,
29961,
7707,
29962,
648,
16195,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
264,
930,
930,
13,
29987,
6224,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
20388,
279,
29961,
29881,
29962,
998,
16195,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
264,
930,
930,
13,
1966,
13,
29987,
16195,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
2137,
29885,
29889,
13,
9458,
6549,
6435,
741,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
264,
930,
1042,
338,
278,
1021,
408,
7555,
726,
786,
29912,
29943,
861,
7920,
373,
3618,
29892,
322,
565,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
769,
2046,
16195,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
264,
930,
4400,
29990,
2053,
4283,
21545,
17308,
2119,
741,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
20481,
4181,
3823,
2589,
2144,
517,
313,
741,
726,
786,
29912,
29943,
861,
12156,
29933,
2053,
3571,
2053,
3433,
20481,
4181,
3823,
3433,
17085,
338,
278,
18131,
1608,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
1042,
2183,
491,
2046,
16195,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
264,
930,
4400,
29990,
2053,
4283,
29962,
11759,
29907,
29898,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
29926,
29918,
29954,
3823,
4181,
29892,
29926,
29918,
29954,
3823,
5463,
511,
29907,
13670,
10737,
1012,
4283,
29897,
1822,
3997,
1334,
2436,
6118,
463,
29912,
13671,
29913,
13,
741,
726,
786,
29912,
29943,
861,
12156,
29990,
2053,
4283,
2053,
2589,
2053,
3433,
29897,
20644,
29907,
29898,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
29926,
29918,
29954,
3823,
4181,
29892,
29926,
29918,
29954,
3823,
5463,
29897,
13,
1966,
13,
29905,
4181,
3311,
2589,
2053,
3433,
15704,
29922,
29907,
13670,
10737,
1012,
4283,
467,
29905,
355,
29912,
13671,
9458,
13,
13,
29905,
29961,
29883,
6739,
264,
266,
29885,
18899,
2803,
779,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
930,
3331,
17308,
1157,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
20388,
517,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
367,
278,
2090,
2801,
515,
518,
13438,
30081,
3199,
1118,
322,
1235,
7555,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
24251,
29885,
3331,
17308,
1157,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
2137,
29885,
29905,
517,
8620,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
1042,
367,
278,
24345,
304,
278,
1014,
7320,
310,
23183,
1302,
7387,
29889,
1987,
7555,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
24251,
29885,
1042,
338,
263,
7663,
24796,
29892,
411,
16452,
29899,
262,
3901,
6435,
741,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
264,
930,
4311,
13,
13,
1576,
5296,
338,
2788,
304,
393,
310,
518,
29992,
2901,
29939,
1049,
17569,
10244,
30081,
29953,
29889,
29906,
1402,
607,
297,
2507,
471,
2729,
2501,
278,
5296,
310,
518,
29992,
2901,
29939,
1049,
17569,
10244,
30081,
29945,
29889,
29906,
1822,
450,
2090,
2801,
7555,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
24251,
29885,
1042,
338,
13674,
1190,
25674,
1363,
7555,
9158,
29912,
6271,
29907,
2137,
29885,
1042,
338,
29892,
322,
26116,
297,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
338,
23505,
1135,
26116,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
4311,
13,
13,
1762,
1074,
393,
7555,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
24251,
29885,
1042,
338,
2989,
29892,
372,
9378,
1575,
304,
1510,
393,
565,
11970,
29990,
2053,
4283,
21545,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
338,
263,
18131,
1608,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
930,
4429,
769,
6118,
3752,
29880,
13670,
726,
786,
29912,
29943,
861,
12156,
29990,
2053,
4283,
2053,
2589,
2053,
3433,
2144,
2273,
1355,
1665,
4181,
3311,
2589,
2053,
3433,
930,
402,
29892,
741,
12259,
3331,
4181,
3311,
2589,
2053,
3433,
4229,
3752,
29878,
2144,
27798,
13,
29898,
29990,
2053,
4283,
17085,
408,
2427,
29909,
2053,
2312,
6817,
29898,
29933,
2053,
3571,
1262,
3928,
2063,
29892,
988,
591,
4880,
7555,
726,
786,
29912,
29943,
861,
12156,
29990,
2053,
4283,
2053,
2589,
2053,
3433,
2144,
2273,
1355,
1665,
4181,
3311,
2589,
2053,
3433,
930,
402,
29938,
408,
385,
395,
29909,
29899,
29933,
29938,
3928,
663,
3025,
278,
338,
7886,
12903,
6118,
463,
29912,
13671,
29913,
13,
29905,
17458,
29918,
29909,
29987,
741,
17308,
3331,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
2144,
2273,
1355,
1665,
4181,
3823,
2589,
29913,
402,
741,
957,
842,
741,
27798,
3331,
24225,
930,
29909,
13,
1966,
13,
29905,
17458,
29918,
29933,
29987,
741,
17308,
3331,
726,
786,
29912,
29943,
861,
12156,
29933,
2053,
3571,
2053,
3433,
2144,
2273,
1355,
1665,
4181,
3823,
3433,
29913,
402,
741,
957,
842,
741,
27798,
3331,
24225,
930,
29933,
7790,
355,
29912,
13671,
9458,
450,
1147,
2450,
393,
591,
2367,
2400,
11624,
310,
26529,
25236,
29899,
15742,
2912,
800,
29892,
3412,
278,
3454,
310,
518,
29992,
2901,
29939,
1049,
17569,
1019,
1066,
2187,
30081,
29953,
29889,
29906,
322,
29871,
29945,
29889,
29906,
1822,
450,
7601,
4328,
1244,
338,
393,
591,
2307,
505,
278,
2090,
2801,
6435,
741,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
264,
930,
1042,
297,
1361,
29889,
13,
13,
4789,
497,
278,
12640,
395,
29968,
29892,
29931,
2053,
6827,
29918,
29909,
29938,
515,
278,
10679,
26328,
518,
29931,
331,
655,
30081,
3199,
1836,
2803,
779,
3754,
29938,
367,
278,
6942,
3158,
373,
395,
29968,
29938,
322,
779,
9876,
2013,
6827,
29918,
29909,
29905,
6034,
29905,
2589,
741,
17308,
29913,
29907,
29918,
29900,
29898,
29954,
2144,
517,
341,
29898,
29968,
5767,
322,
1235,
779,
4722,
21854,
1563,
1194,
463,
29912,
9278,
5344,
29913,
320,
3754,
11035,
4283,
1966,
29912,
4044,
11035,
3571,
29905,
355,
29912,
9278,
5344,
1012,
1266,
15604,
322,
779,
4787,
21854,
1563,
1194,
463,
29912,
9278,
5344,
29913,
320,
9876,
29987,
29900,
1966,
29900,
11035,
3433,
29905,
355,
29912,
9278,
5344,
1012,
1266,
19978,
17308,
29913,
29907,
29918,
29900,
29898,
29954,
2144,
517,
341,
29898,
29931,
5767,
6820,
1592,
27432,
424,
8820,
2427,
29968,
2053,
3754,
2053,
9876,
1262,
322,
2427,
29931,
2053,
4722,
2053,
4787,
4935,
13,
13,
4806,
864,
304,
1510,
393,
6118,
463,
29912,
13671,
29913,
13,
29905,
1643,
29912,
5878,
1544,
29913,
13,
29905,
463,
29912,
5451,
29913,
13,
741,
726,
786,
29912,
29943,
861,
12156,
29931,
2053,
4722,
2053,
4787,
29897,
13,
20644,
741,
463,
29912,
12571,
29913,
2802,
726,
786,
29912,
29943,
861,
12156,
29968,
2053,
3754,
2053,
9876,
26927,
741,
726,
786,
29912,
29943,
861,
12156,
29990,
2053,
4283,
2053,
2589,
2053,
3433,
18775,
13,
29912,
4044,
29987,
741,
726,
786,
29912,
29943,
861,
12156,
29933,
2053,
3571,
2053,
3433,
29897,
320,
355,
29912,
12571,
930,
13,
1966,
13,
29905,
4181,
3823,
4787,
20644,
741,
463,
29912,
12571,
29913,
320,
4181,
3823,
9876,
11035,
4181,
3311,
2589,
2053,
3433,
9952,
29912,
4044,
11035,
4181,
3823,
3433,
320,
355,
29912,
12571,
27243,
13,
29905,
355,
29912,
5451,
1012,
355,
29912,
13671,
9458,
1334,
674,
671,
278,
26227,
6435,
741,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
264,
12499,
3790,
741,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
264,
20388,
6034,
29905,
9158,
741,
9158,
29912,
6271,
29909,
1157,
3187,
2762,
29912,
264,
930,
4311,
3824,
14111,
393,
6118,
463,
29912,
13671,
29913,
13,
29931,
29905,
2273,
1355,
3187,
4722,
402,
13,
20644,
741,
463,
29912,
12571,
29913,
476,
29905,
2273,
1355,
3187,
3754,
402,
29987,
29990,
29905,
2273,
1355,
3187,
4283,
402,
1966,
13,
29912,
4044,
29987,
29933,
29905,
2273,
1355,
3187,
3571,
402,
320,
355,
29912,
12571,
930,
13,
1966,
13,
741,
12259,
1012,
4722,
20644,
741,
463,
29912,
12571,
29913,
2802,
12259,
1012,
3754,
29987,
741,
12259,
1012,
4283,
1966,
29912,
4044,
29987,
741,
12259,
1012,
3571,
320,
355,
29912,
12571,
930,
13,
1966,
13,
29875,
29918,
29931,
20644,
741,
463,
29912,
12571,
29913,
474,
29918,
29968,
29987,
29875,
29918,
29990,
1966,
29912,
4044,
29987,
29875,
29918,
29933,
320,
355,
29912,
12571,
930,
13,
1966,
13,
29875,
29918,
29954,
3823,
4722,
20644,
741,
463,
29912,
12571,
29913,
474,
29918,
29954,
3823,
3754,
29987,
29900,
1966,
29900,
29987,
29875,
29918,
29954,
3823,
3571,
320,
355,
29912,
12571,
930,
7790,
355,
29912,
13671,
9458,
910,
4477,
515,
518,
29992,
29873,
11216,
5296,
310,
22206,
30081,
29941,
29889,
29945,
29962,
322,
518,
29992,
264,
305,
309,
1114,
22206,
30081,
29941,
29889,
29945,
1822,
518,
29992,
29873,
11216,
29962,
316,
1338,
411,
2989,
21692,
541,
947,
451,
4386,
278,
14581,
1302,
7387,
29892,
1550,
518,
29992,
264,
305,
309,
1114,
29962,
17766,
278,
14581,
1302,
7387,
541,
871,
363,
12212,
21692,
9316,
29936,
278,
13698,
310,
518,
29992,
264,
305,
309,
1114,
29962,
8677,
975,
304,
2989,
21692,
9316,
411,
694,
1108,
29889,
739,
4477,
393,
6118,
463,
29912,
13671,
29913,
13,
29963,
29918,
29931,
13,
29987,
2013,
3752,
29880,
3552,
29875,
29918,
29931,
29905,
6034,
29905,
4787,
2144,
9356,
741,
726,
741,
726,
786,
29912,
333,
20388,
3752,
29878,
5033,
29893,
29918,
29954,
29897,
13,
21854,
463,
29912,
12571,
29913,
478,
29918,
29968,
29987,
29900,
1966,
29900,
29987,
29963,
29918,
29933,
320,
355,
29912,
12571,
930,
2053,
355,
29912,
13671,
9458,
577,
393,
278,
22786,
800,
310,
278,
14581,
1302,
7387,
15523,
2046,
741,
10737,
1012,
4722,
21854,
463,
29912,
12571,
29913,
2802,
10737,
1012,
3754,
29987,
741,
10737,
1012,
4283,
1966,
29912,
4044,
29987,
741,
10737,
1012,
3571,
320,
355,
29912,
12571,
930,
19470,
739,
4340,
4477,
393,
6118,
4787,
29905,
2273,
1355,
402,
21854,
463,
29912,
12571,
29913,
320,
9876,
29905,
2273,
1355,
402,
29987,
29900,
1966,
29900,
11035,
3571,
29905,
2273,
1355,
402,
320,
355,
29912,
12571,
930,
19470,
13,
13,
1523,
2109,
292,
278,
2038,
411,
518,
29931,
331,
655,
30081,
3199,
29913,
322,
278,
10679,
26328,
372,
29892,
322,
411,
518,
12521,
21982,
30081,
3199,
1118,
278,
5186,
1907,
508,
367,
925,
2164,
411,
278,
1494,
17203,
29889,
6118,
463,
29912,
13671,
29913,
13,
29987,
741,
726,
786,
29912,
29943,
861,
12156,
29931,
2053,
4722,
2053,
4787,
29897,
13,
1966,
11035,
3425,
29922,
29907,
29898,
29931,
29905,
2273,
1355,
3187,
4722,
402,
29892,
741,
10737,
1012,
4722,
2053,
4787,
29905,
2273,
1355,
402,
29897,
13,
1966,
11035,
3425,
29922,
29907,
29898,
29931,
29898,
29990,
29905,
2273,
1355,
3187,
4283,
402,
511,
741,
10737,
1012,
4722,
2053,
4787,
29905,
2273,
1355,
402,
29897,
13,
1966,
11035,
3425,
21854,
463,
29912,
12571,
29913,
29871,
13,
29907,
13670,
1942,
476,
2119,
29990,
29905,
2273,
1355,
3187,
4283,
402,
511,
741,
10737,
1012,
3754,
2053,
9876,
29905,
2273,
1355,
402,
29897,
13,
29987,
29907,
29898,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
741,
10737,
1012,
4283,
2053,
9876,
29905,
2273,
1355,
402,
2053,
3433,
29905,
2273,
1355,
402,
29897,
13,
1966,
13,
29912,
4044,
29987,
29907,
29898,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29892,
741,
10737,
1012,
3571,
2053,
3433,
29905,
2273,
1355,
402,
29897,
13,
320,
355,
29912,
12571,
930,
13,
1966,
11035,
3425,
21854,
463,
29912,
12571,
29913,
29871,
13,
29907,
29898,
29968,
29905,
2273,
1355,
3187,
3754,
402,
29892,
741,
10737,
1012,
3754,
2053,
9876,
29905,
2273,
1355,
402,
29897,
13,
29987,
29907,
29898,
29990,
29905,
2273,
1355,
3187,
4283,
402,
29892,
741,
10737,
1012,
4283,
2053,
9876,
29905,
2273,
1355,
402,
2053,
3433,
29905,
2273,
1355,
402,
29897,
13,
1966,
13,
29912,
4044,
29987,
29907,
29898,
29933,
29905,
2273,
1355,
3187,
3571,
402,
29892,
741,
10737,
1012,
3571,
2053,
3433,
29905,
2273,
1355,
402,
29897,
13,
320,
355,
29912,
12571,
930,
13,
1966,
11035,
3425,
21854,
463,
29912,
12571,
29913,
2802,
726,
786,
29912,
29943,
861,
12156,
29968,
2053,
3754,
2053,
9876,
26927,
741,
726,
786,
29912,
29943,
861,
12156,
29990,
2053,
4283,
2053,
9876,
2053,
3433,
29897,
13,
1966,
29912,
4044,
29987,
741,
726,
786,
29912,
29943,
861,
12156,
29933,
2053,
3571,
2053,
3433,
29897,
320,
355,
29912,
12571,
4229,
355,
29912,
13671,
9458,
322,
6118,
463,
29912,
13671,
29913,
13,
29905,
4181,
3823,
4787,
13,
20644,
29907,
13670,
10737,
1012,
4722,
29897,
13,
21854,
463,
29912,
12571,
29913,
315,
13670,
10737,
1012,
3754,
26927,
29907,
13670,
10737,
1012,
4283,
29897,
13,
1966,
29912,
4044,
29987,
29907,
13670,
10737,
1012,
3571,
29897,
320,
355,
29912,
12571,
930,
13,
21854,
463,
29912,
12571,
29913,
320,
4181,
3823,
9876,
11035,
4181,
3311,
2589,
2053,
3433,
9952,
29912,
4044,
11035,
4181,
3823,
3433,
320,
355,
29912,
12571,
930,
7790,
355,
29912,
13671,
9458,
13,
13,
4806,
505,
385,
26116,
6118,
17458,
29918,
29931,
741,
17308,
1012,
3752,
29880,
13670,
726,
786,
29912,
29943,
861,
12156,
29931,
2053,
4722,
2053,
4787,
2144,
2273,
1355,
1665,
4181,
3823,
4787,
29913,
402,
29892,
741,
12259,
3331,
4181,
3823,
4787,
1118,
29926,
29918,
29954,
3311,
4181,
3823,
4787,
1012,
3752,
29878,
29897,
13,
741,
957,
842,
741,
27798,
3331,
24225,
12156,
29931,
2053,
4722,
2053,
4787,
17085,
1551,
278,
916,
1361,
29892,
518,
29992,
264,
305,
309,
1114,
22206,
30081,
29941,
29889,
29929,
322,
10244,
30081,
29941,
29889,
29896,
29941,
29962,
2367,
6118,
463,
29912,
13671,
29913,
13,
741,
726,
786,
29912,
29943,
861,
12156,
29931,
2053,
4722,
2053,
4787,
2144,
2273,
1355,
1665,
4181,
3823,
4787,
29913,
402,
13,
20644,
741,
463,
29912,
12571,
29913,
29871,
13,
741,
726,
786,
29912,
29943,
861,
12156,
29931,
2053,
4722,
2053,
4787,
2144,
2273,
1355,
1665,
4181,
3823,
4787,
29913,
402,
13,
29987,
741,
726,
786,
29912,
29943,
861,
12156,
29968,
2053,
3754,
2053,
9876,
2144,
2273,
1355,
1665,
4181,
3823,
9876,
29913,
402,
13,
1966,
29912,
4044,
29987,
741,
726,
786,
29912,
29943,
861,
12156,
29933,
2053,
3571,
2053,
3433,
2144,
2273,
1355,
1665,
4181,
3823,
3433,
29913,
402,
320,
355,
29912,
12571,
930,
13,
1966,
13,
741,
12259,
3331,
4181,
3823,
4787,
29913,
13,
20644,
741,
463,
29912,
12571,
29913,
2802,
12259,
3331,
4181,
3823,
9876,
15704,
741,
12259,
3331,
4181,
3311,
2589,
2053,
3433,
930,
13,
1966,
29912,
4044,
29987,
741,
12259,
3331,
4181,
3823,
3433,
29913,
320,
355,
29912,
12571,
930,
7790,
355,
29912,
13671,
9458,
4001,
779,
17458,
29918,
29931,
29938,
2225,
20098,
278,
11155,
410,
24247,
29892,
372,
9250,
29879,
373,
278,
26995,
304,
263,
7555,
12259,
3331,
4181,
3311,
2589,
2053,
3433,
930,
2612,
4283,
29938,
1592,
27432,
424,
12338,
2151,
29899,
29890,
326,
397,
1297,
26116,
6118,
463,
29912,
13671,
29913,
13,
29987,
1194,
17458,
29918,
29968,
2053,
17458,
29918,
29990,
2053,
17458,
29918,
29933,
21964,
17308,
9952,
11035,
3425,
29905,
3752,
29880,
13670,
726,
786,
29912,
29943,
861,
12156,
29968,
2053,
3754,
2053,
9876,
2144,
2273,
1355,
1665,
4181,
3823,
9876,
29913,
402,
29892,
13,
741,
726,
786,
29912,
29943,
861,
12156,
29990,
2053,
4283,
2053,
9876,
2053,
3433,
2144,
2273,
1355,
1665,
4181,
3311,
2589,
2053,
3433,
930,
402,
29892,
13,
741,
726,
786,
29912,
29943,
861,
12156,
29933,
2053,
3571,
2053,
3433,
2144,
2273,
1355,
1665,
4181,
3823,
3433,
29913,
402,
29905,
3752,
29878,
29897,
13,
1966,
11035,
14158,
29912,
29896,
262,
29913,
13,
741,
957,
842,
741,
27798,
3331,
24225,
12156,
29968,
29892,
29990,
29892,
29933,
467,
29905,
355,
29912,
13671,
9458,
13,
13,
4806,
884,
505,
263,
7555,
12259,
3331,
4181,
3823,
2589,
12775,
2312,
29938,
1592,
27432,
424,
26116,
6118,
17458,
29918,
29909,
741,
17308,
3331,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
2144,
2273,
1355,
1665,
4181,
3823,
2589,
29913,
402,
741,
957,
842,
741,
27798,
3331,
24225,
930,
29909,
29892,
3997,
322,
278,
13722,
6118,
29916,
962,
271,
2126,
29992,
29907,
29974,
29906,
29900,
415,
29912,
13,
741,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
2144,
2273,
1355,
1665,
4181,
3823,
2589,
29913,
402,
13,
29905,
279,
29961,
29878,
29962,
21583,
741,
17458,
29918,
29909,
2403,
2612,
27798,
320,
279,
29961,
29881,
29962,
24033,
726,
786,
29912,
29943,
861,
20828,
6827,
29918,
29909,
2144,
2273,
1355,
402,
29913,
13,
29987,
29909,
320,
279,
29961,
29881,
29962,
3311,
6827,
29918,
29909,
29913,
13,
1966,
13,
741,
726,
786,
29912,
29943,
861,
12156,
29968,
2053,
3754,
2053,
9876,
2144,
2273,
1355,
1665,
4181,
3823,
9876,
29913,
402,
13,
29905,
279,
29961,
29878,
21540,
29899,
741,
17458,
29918,
29968,
2137,
2612,
27798,
13,
29987,
29968,
13,
9458,
310,
18131,
12903,
297,
7555,
2762,
29912,
29907,
2137,
29930,
1042,
844,
2667,
491,
1661,
311,
17158,
3172,
17569,
868,
2877,
29889,
6549,
29892,
11039,
1218,
278,
338,
7886,
12903,
779,
17458,
29918,
29909,
29938,
322,
779,
17458,
29918,
29933,
1628,
779,
4181,
3311,
2589,
2053,
3433,
1042,
338,
385,
26116,
310,
2427,
29909,
2053,
2312,
6817,
29898,
29933,
2053,
3571,
1262,
3928,
663,
8820,
29892,
408,
7429,
29892,
322,
445,
1614,
2167,
278,
1147,
2450,
393,
278,
2090,
2801,
779,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
930,
1042,
338,
2989,
29889,
13,
13,
4806,
1286,
1510,
393,
779,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
930,
1042,
338,
27057,
29889,
739,
9378,
1575,
304,
1510,
393,
565,
11970,
29990,
2053,
11327,
21545,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
338,
263,
18131,
1608,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
4429,
769,
6118,
3752,
29880,
13670,
726,
786,
29912,
29943,
861,
12156,
29990,
29905,
2273,
1355,
3187,
11327,
402,
29892,
741,
12259,
1012,
11327,
29892,
29926,
29918,
29954,
3823,
4181,
29892,
29926,
29918,
29954,
3823,
5463,
511,
13,
29905,
4181,
648,
29990,
29905,
2273,
1355,
3187,
11327,
402,
1012,
3752,
29878,
29897,
13,
741,
957,
842,
741,
27798,
3331,
24225,
12156,
29990,
2053,
11327,
17085,
408,
2427,
29909,
2053,
4181,
6817,
29898,
29933,
2053,
5463,
1262,
3928,
2063,
29892,
988,
591,
4880,
7555,
726,
786,
29912,
29943,
861,
12156,
29990,
29905,
2273,
1355,
3187,
11327,
402,
29892,
741,
12259,
1012,
11327,
29892,
29926,
29918,
29954,
3823,
4181,
29892,
29926,
29918,
29954,
3823,
5463,
1262,
408,
385,
395,
29909,
29899,
29933,
29938,
3928,
663,
3025,
278,
338,
7886,
12903,
6118,
463,
29912,
13671,
29913,
13,
29905,
6134,
29918,
29909,
29987,
741,
17308,
3331,
726,
786,
29912,
29943,
861,
12156,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
29892,
29926,
29918,
29954,
3823,
4181,
3892,
29909,
29985,
29885,
741,
957,
842,
741,
27798,
3331,
24225,
930,
29909,
13,
1966,
13,
29905,
6134,
29918,
29933,
29987,
741,
17308,
3331,
726,
786,
29912,
29943,
861,
12156,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29892,
741,
12259,
1012,
5463,
29892,
29926,
29918,
29954,
3823,
5463,
3892,
29933,
29985,
29885,
741,
957,
842,
741,
27798,
3331,
24225,
930,
29933,
7790,
355,
29912,
13671,
9458,
11454,
591,
671,
25236,
9623,
13698,
29889,
2803,
395,
29968,
21854,
1942,
476,
2119,
29990,
1262,
322,
395,
29931,
29922,
29931,
29898,
29990,
5767,
411,
6942,
1302,
7387,
779,
1187,
29938,
322,
779,
5389,
21854,
1563,
1194,
463,
29912,
9278,
5344,
29913,
320,
1187,
11035,
11327,
1966,
29912,
4044,
11035,
5463,
29905,
355,
29912,
9278,
5344,
1012,
1266,
29897,
4429,
8307,
29889,
1334,
505,
278,
26116,
6118,
6134,
29918,
29931,
741,
17308,
2119,
29931,
29985,
29885,
2053,
5389,
29985,
29885,
21964,
957,
842,
741,
27798,
3331,
24225,
12156,
29931,
2053,
5389,
17085,
2183,
491,
278,
23183,
2133,
2910,
29889,
1551,
278,
916,
1361,
29892,
6118,
463,
29912,
13671,
29913,
13,
29931,
29985,
29885,
13,
20644,
741,
726,
786,
29912,
29943,
861,
12156,
29931,
29905,
2273,
1355,
3187,
5389,
402,
29892,
741,
12259,
1012,
5389,
29892,
29926,
29918,
29954,
3823,
5389,
29897,
13,
1966,
20644,
741,
463,
29912,
12571,
29913,
2802,
726,
786,
29912,
29943,
861,
12156,
29968,
29905,
2273,
1355,
3187,
1187,
402,
29892,
741,
12259,
1012,
1187,
29892,
29926,
29918,
29954,
3823,
1187,
29897,
13,
29987,
741,
726,
786,
29912,
29943,
861,
12156,
29990,
29905,
2273,
1355,
3187,
11327,
402,
29892,
741,
12259,
1012,
11327,
29892,
29926,
29918,
29954,
3823,
11327,
29897,
13,
1966,
29912,
4044,
29987,
741,
726,
786,
29912,
29943,
861,
12156,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29892,
741,
12259,
1012,
5463,
29892,
29926,
29918,
29954,
3823,
5463,
29897,
320,
355,
29912,
12571,
930,
13,
1966,
20644,
741,
463,
29912,
12571,
29913,
476,
29985,
29885,
29987,
29990,
29985,
29885,
1966,
29912,
4044,
29987,
29933,
29985,
29885,
320,
355,
29912,
12571,
930,
2053,
355,
29912,
13671,
9458,
988,
278,
12640,
395,
29990,
29985,
29885,
29938,
338,
3342,
491,
278,
10693,
29892,
322,
6118,
463,
29912,
13671,
29913,
13,
29905,
5389,
29985,
29885,
13,
20644,
29907,
13670,
10737,
1012,
5389,
29897,
13,
21854,
463,
29912,
12571,
29913,
315,
13670,
10737,
1012,
1187,
26927,
29907,
13670,
10737,
1012,
11327,
29897,
13,
1966,
29912,
4044,
29987,
29907,
13670,
10737,
1012,
5463,
29897,
320,
355,
29912,
12571,
930,
13,
1966,
20644,
741,
463,
29912,
12571,
29913,
320,
1187,
29985,
29885,
11035,
11327,
29985,
29885,
1966,
29912,
4044,
11035,
5463,
29985,
29885,
320,
355,
29912,
12571,
930,
2053,
355,
29912,
13671,
9458,
988,
278,
12640,
779,
11327,
29985,
29885,
29938,
338,
3342,
491,
278,
10693,
29889,
4001,
779,
6134,
29918,
29931,
29938,
2225,
20098,
278,
11155,
410,
24247,
29892,
372,
9250,
29879,
373,
278,
26995,
304,
263,
779,
9876,
29985,
29885,
2612,
3571,
29985,
29885,
29938,
1592,
27432,
424,
12338,
2151,
29899,
29890,
326,
397,
1297,
26116,
2046,
1194,
6134,
29918,
29968,
2053,
6134,
29918,
29990,
2053,
6134,
29918,
29933,
21964,
17308,
2119,
29968,
29985,
29885,
29892,
29990,
29985,
29885,
29892,
29933,
29985,
29885,
21964,
957,
842,
741,
27798,
3331,
24225,
12156,
29968,
29892,
29990,
29892,
29933,
17085,
313,
4716,
7805,
278,
5023,
310,
278,
12640,
779,
6134,
29918,
29990,
18724,
1334,
884,
505,
278,
26116,
6118,
6134,
29918,
29909,
741,
17308,
2119,
29909,
29985,
29885,
2053,
4181,
29985,
29885,
21964,
957,
842,
741,
27798,
3331,
24225,
12156,
29909,
2053,
4181,
511,
3997,
322,
278,
13722,
6118,
29916,
962,
271,
2126,
29912,
13,
29909,
29985,
29885,
320,
279,
29961,
29878,
29962,
21583,
741,
6134,
29918,
29909,
2403,
2612,
27798,
320,
279,
29961,
29881,
29962,
1665,
6827,
29918,
29909,
29985,
29885,
29913,
13,
29987,
29909,
320,
279,
29961,
29881,
29962,
3311,
6827,
29918,
29909,
29913,
13,
1966,
13,
29968,
29985,
29885,
320,
279,
29961,
29878,
21540,
29899,
741,
6134,
29918,
29968,
2137,
2612,
27798,
13,
29987,
29968,
13,
9458,
310,
18131,
12903,
297,
7555,
2762,
29912,
29907,
2137,
29930,
1042,
844,
2667,
491,
1661,
311,
17158,
3172,
17569,
868,
2877,
29889,
6549,
29892,
11039,
1218,
278,
338,
7886,
12903,
779,
6134,
29918,
29909,
29938,
322,
779,
6134,
29918,
29933,
1628,
779,
6134,
29918,
29990,
29938,
338,
385,
26116,
310,
2427,
29909,
2053,
4181,
6817,
29898,
29933,
2053,
5463,
1262,
3928,
663,
1302,
7387,
29892,
408,
7429,
29892,
322,
445,
1614,
2167,
278,
1147,
2450,
393,
278,
2090,
2801,
779,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
930,
1042,
338,
27057,
29889,
13,
13,
3112,
338,
2821,
515,
278,
2038,
6273,
393,
6435,
741,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
264,
930,
1042,
338,
263,
16452,
29899,
262,
3901,
310,
278,
24796,
779,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
264,
930,
4429,
6200,
372,
338,
278,
5412,
16452,
29899,
262,
3901,
411,
1203,
2910,
2046,
29898,
29909,
2053,
2312,
2053,
2589,
2144,
17499,
320,
3752,
29880,
13670,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
20481,
4181,
3823,
2589,
29905,
3752,
29878,
467,
13,
29905,
29939,
287,
4150,
3997,
13,
13,
1123,
1658,
292,
3755,
2788,
304,
393,
297,
278,
5296,
310,
518,
29992,
2901,
29939,
1049,
17569,
5240,
935,
30081,
29953,
29889,
29953,
29962,
3697,
393,
278,
2038,
7663,
24796,
947,
451,
2367,
263,
1781,
297,
3259,
29892,
297,
278,
4060,
310,
518,
29992,
2901,
29939,
1049,
17569,
21940,
30081,
29946,
29889,
29896,
1402,
310,
278,
21692,
29899,
4704,
2090,
2801,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
24251,
29885,
1012,
517,
16195,
2762,
29912,
29907,
2137,
29930,
1157,
3187,
2762,
29912,
264,
930,
1042,
3342,
373,
3618,
491,
2427,
29909,
2053,
4181,
2144,
17499,
319,
29905,
2273,
1355,
3187,
4181,
402,
1504,
13,
13,
29905,
29961,
29883,
3274,
427,
1592,
440,
18899,
450,
2090,
2801,
779,
9158,
741,
9158,
29912,
6271,
29909,
1157,
3187,
2762,
29912,
264,
930,
3331,
17308,
1157,
16195,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
264,
20388,
517,
8620,
741,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
2137,
29885,
29938,
338,
263,
7663,
24796,
29889,
13,
13,
1576,
5296,
338,
8943,
304,
393,
310,
518,
12521,
21982,
30081,
3199,
1118,
5174,
393,
297,
518,
13438,
30081,
3199,
29913,
591,
505,
2307,
12341,
777,
310,
278,
5962,
1287,
29892,
18451,
297,
518,
12521,
21982,
30081,
3199,
29913,
591,
7841,
263,
7663,
24796,
6435,
741,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
264,
930,
3331,
17308,
1157,
16195,
1942,
476,
6822,
741,
2762,
29912,
7967,
930,
1157,
3187,
2762,
29912,
264,
930,
2137,
29885,
29905,
517,
426,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
264,
930,
2137,
29885,
1504,
2648,
518,
28831,
30081,
3199,
29913,
591,
505,
385,
24796,
6435,
741,
726,
786,
29912,
29943,
861,
7585,
3187,
2762,
29912,
264,
12499,
3790,
741,
726,
786,
29912,
29928,
855,
7585,
3187,
2762,
29912,
264,
20388,
6034,
320,
9158,
741,
9158,
29912,
6271,
29909,
1157,
3187,
2762,
29912,
264,
930,
4311,
739,
4477,
393,
779,
9158,
741,
9158,
29912,
6271,
29909,
1157,
3187,
2762,
29912,
264,
930,
1042,
338,
884,
385,
24796,
29889,
13,
13,
29911,
340,
538,
11420,
868,
2877,
426,
29937,
5561,
868,
2877,
29913,
13,
9166,
2751,
13,
13,
797,
445,
2186,
4004,
29892,
607,
674,
367,
18425,
1580,
28524,
29892,
591,
883,
5987,
263,
1950,
2948,
304,
334,
5561,
868,
2877,
29930,
363,
23183,
1302,
7387,
29889,
1763,
1371,
10127,
278,
3030,
29892,
591,
674,
937,
19138,
675,
278,
313,
3846,
29897,
11420,
868,
2877,
363,
4226,
1302,
7387,
518,
29992,
2901,
29939,
1049,
17569,
3323,
2042,
30081,
29953,
29889,
29941,
1402,
1156,
607,
591,
674,
8453,
278,
5684,
23553,
363,
23183,
1302,
7387,
29889,
13,
13,
29907,
14404,
426,
29937,
20683,
29899,
29906,
869,
348,
4537,
287,
29913,
13,
28400,
13,
13,
1576,
334,
5561,
7663,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
1042,
310,
1302,
7387,
29930,
756,
1302,
7387,
408,
3618,
29892,
322,
263,
334,
29885,
28611,
29930,
12211,
2876,
29892,
29965,
21964,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
1042,
11624,
310,
385,
779,
5463,
4388,
29883,
542,
13317,
395,
29965,
29938,
322,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
9158,
29912,
3253,
29913,
29965,
29905,
6034,
29905,
5463,
1262,
297,
7555,
2762,
29912,
7967,
26253,
512,
518,
29992,
2901,
29939,
1049,
17569,
29962,
278,
1302,
7387,
892,
3734,
304,
367,
4226,
29892,
541,
278,
6273,
591,
1304,
727,
304,
10127,
278,
10379,
310,
278,
7663,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
1042,
664,
925,
408,
1532,
363,
11472,
1302,
7387,
29889,
1334,
2436,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
2137,
29885,
29938,
322,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
2137,
29876,
29938,
363,
278,
2989,
1014,
20683,
310,
23183,
322,
4226,
1302,
7387,
29892,
8307,
29889,
13,
13,
1576,
334,
8945,
4343,
29899,
3149,
7663,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
2137,
29876,
29938,
310,
1592,
27432,
424,
8820,
29930,
313,
1145,
5715,
491,
395,
6224,
741,
726,
786,
29912,
2273,
4229,
726,
8499,
1157,
741,
2762,
29912,
10644,
930,
7585,
3187,
2762,
29912,
283,
930,
1042,
297,
518,
29992,
2901,
29939,
1049,
17569,
2314,
756,
1592,
27432,
424,
8820,
408,
3618,
29892,
322,
263,
334,
29885,
28611,
29930,
779,
2876,
741,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
2137,
29876,
29938,
11624,
310,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
2312,
2144,
517,
313,
29933,
2053,
3571,
1262,
297,
7555,
2762,
29912,
10644,
7920,
1316,
393,
278,
24420,
6081,
7555,
6875,
1012,
2876,
741,
17308,
29913,
29924,
29898,
29909,
2144,
517,
341,
29898,
29933,
1262,
9250,
29879,
304,
263,
1661,
311,
17158,
3632,
14143,
2046,
741,
6875,
1012,
2876,
29989,
741,
17308,
3331,
726,
786,
29912,
29943,
861,
24251,
29876,
29898,
29909,
2053,
2312,
2053,
2589,
2144,
517,
341,
13670,
726,
786,
29912,
29943,
861,
24251,
29876,
29898,
29933,
2053,
3571,
2053,
3433,
8106,
3997,
2266,
591,
671,
278,
594,
25674,
1346,
8945,
30024,
363,
445,
7663,
1363,
372,
20789,
278,
4226,
28803,
4343,
29899,
3149,
394,
28200,
7555,
726,
786,
29912,
29943,
861,
24251,
29876,
29898,
29909,
2053,
2312,
2053,
2589,
4935,
512,
518,
29992,
2901,
29939,
1049,
17569,
29962,
591,
1258,
451,
817,
445,
594,
25674,
1951,
591,
1258,
451,
671,
738,
916,
2924,
310,
4343,
29899,
3149,
9623,
29892,
541,
1244,
591,
674,
884,
864,
304,
2050,
385,
15690,
434,
363,
278,
23183,
28803,
4343,
29899,
3149,
394,
28200,
7555,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
4935,
13,
13,
29954,
5428,
263,
18131,
1608,
12211,
2876,
29892,
29965,
21964,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
4429,
27697,
779,
11327,
2013,
9158,
29912,
3253,
29913,
29965,
29905,
6034,
29905,
5463,
29938,
591,
679,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
11327,
1262,
297,
7555,
2762,
29912,
7967,
7920,
322,
263,
18131,
1608,
6118,
5981,
29918,
29965,
741,
17308,
2119,
29933,
29905,
2273,
1355,
3187,
11327,
402,
29892,
741,
12259,
1012,
11327,
29897,
13,
29905,
517,
313,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29892,
741,
12259,
1012,
5463,
17085,
297,
7555,
2762,
29912,
10644,
7920,
24064,
779,
5981,
29918,
29965,
29905,
6034,
432,
29918,
29933,
3823,
11327,
29922,
29926,
29918,
29933,
3823,
5463,
1504,
518,
29992,
2901,
29939,
1049,
17569,
10244,
30081,
29953,
29889,
29896,
29906,
29962,
4083,
393,
278,
3566,
1860,
6118,
463,
29912,
13671,
29913,
13,
29898,
29909,
2053,
4181,
29897,
11035,
17499,
313,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
29892,
29926,
29918,
29954,
3823,
4181,
29897,
13,
29905,
1643,
29912,
5415,
29913,
13,
1966,
13,
1194,
2876,
29892,
29965,
29897,
11035,
17499,
320,
5981,
29918,
29965,
29905,
6034,
3441,
2876,
29905,
2273,
1355,
402,
29897,
13,
29905,
1643,
29912,
12257,
1012,
355,
29912,
13671,
9458,
2367,
263,
2090,
2801,
515,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
2137,
29876,
29938,
304,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
2137,
29876,
29938,
393,
338,
13674,
1190,
25674,
322,
27057,
29889,
1334,
4658,
393,
445,
2090,
2801,
338,
297,
2114,
263,
7663,
24796,
29892,
541,
591,
2609,
6356,
393,
372,
338,
2989,
1363,
591,
437,
451,
505,
263,
8072,
1985,
1873,
310,
9293,
414,
264,
30010,
29879,
9185,
363,
11420,
25482,
4135,
310,
1302,
7387,
29889,
13,
13,
10454,
591,
8453,
278,
5684,
23553,
591,
11735,
746,
591,
4218,
304,
7744,
278,
2038,
304,
23183,
1302,
7387,
29889,
450,
334,
27525,
284,
4343,
29899,
3149,
7663,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
1042,
310,
1592,
27432,
424,
8820,
29930,
756,
278,
1021,
3618,
408,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
4429,
322,
263,
334,
29885,
28611,
29930,
779,
2876,
741,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
1042,
11624,
310,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
2312,
2144,
517,
313,
29933,
2053,
3571,
1262,
297,
7555,
2762,
29912,
10644,
7920,
1316,
393,
278,
24420,
6081,
2046,
741,
6875,
3331,
2876,
29905,
2273,
1355,
402,
3331,
17308,
29913,
29924,
29898,
29909,
29905,
2273,
1355,
3187,
2312,
402,
2144,
517,
341,
29898,
29933,
29905,
2273,
1355,
3187,
3571,
402,
17085,
310,
278,
21692,
29899,
4704,
3632,
14143,
9250,
29879,
304,
263,
1661,
311,
17158,
3632,
14143,
2046,
741,
6875,
3331,
2876,
29905,
2273,
1355,
402,
11079,
741,
17308,
3331,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
2144,
517,
341,
13670,
726,
786,
29912,
29943,
861,
12156,
29933,
2053,
3571,
2053,
3433,
8106,
3997,
13,
13,
4806,
508,
11539,
393,
278,
2038,
4076,
263,
7663,
773,
6273,
8943,
304,
518,
29992,
2901,
29939,
1049,
17569,
5387,
13,
13,
29905,
29961,
19438,
18899,
2973,
278,
2038,
5023,
310,
18131,
1608,
29892,
278,
7663,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
1042,
338,
1532,
29899,
12119,
29889,
13,
13,
4806,
1818,
1423,
393,
15259,
310,
18131,
12903,
338,
3342,
29889,
9038,
591,
505,
2309,
445,
372,
674,
367,
6924,
393,
15259,
338,
4067,
1230,
322,
393,
591,
505,
10110,
18131,
12903,
29889,
12142,
393,
779,
6134,
741,
17308,
2119,
29933,
2053,
3571,
2053,
3433,
2144,
517,
313,
29907,
2053,
4283,
2053,
4722,
1262,
338,
1790,
18131,
1608,
29892,
577,
393,
7555,
6875,
3331,
6134,
29905,
2273,
1355,
402,
1042,
9250,
29879,
304,
263,
1661,
311,
17158,
3632,
14143,
2046,
741,
6875,
3331,
6134,
29905,
2273,
1355,
402,
11079,
741,
17308,
3331,
726,
786,
29912,
29943,
861,
12156,
29933,
2053,
3571,
2053,
3433,
2144,
517,
341,
13670,
726,
786,
29912,
29943,
861,
12156,
29907,
2053,
4283,
2053,
4722,
8106,
3997,
450,
15259,
310,
779,
2876,
29905,
2273,
1355,
402,
29938,
322,
779,
6134,
29905,
2273,
1355,
402,
29938,
297,
7555,
2762,
29912,
29907,
2137,
29930,
1042,
338,
278,
1661,
311,
17158,
3632,
14143,
2046,
741,
6875,
3331,
2876,
29905,
2273,
1355,
402,
1012,
6034,
3441,
6134,
29905,
2273,
1355,
402,
21964,
17308,
29913,
29909,
29905,
2273,
1355,
3187,
2312,
402,
29905,
517,
341,
29898,
29907,
29905,
2273,
1355,
3187,
4283,
402,
467,
3997,
1551,
278,
916,
1361,
29892,
278,
15259,
310,
278,
1661,
311,
17158,
3632,
7886,
12903,
7555,
6875,
3331,
2876,
29905,
2273,
1355,
402,
11079,
29938,
322,
7555,
6875,
3331,
6134,
29905,
2273,
1355,
402,
11079,
29938,
338,
278,
1661,
311,
17158,
3632,
14143,
2046,
741,
6875,
1157,
741,
6875,
3331,
2876,
29905,
2273,
1355,
402,
11079,
1012,
6034,
2802,
6875,
3331,
6134,
29905,
2273,
1355,
402,
11079,
741,
17308,
3331,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
2144,
517,
341,
13670,
726,
786,
29912,
29943,
861,
12156,
29907,
2053,
4283,
2053,
4722,
8106,
3997,
739,
338,
2821,
515,
278,
15848,
393,
445,
15259,
338,
278,
24345,
310,
2046,
741,
6875,
1157,
741,
6875,
3331,
2876,
29905,
2273,
1355,
402,
1012,
6034,
3441,
6134,
29905,
2273,
1355,
402,
2915,
13,
21854,
6875,
3331,
2876,
29905,
2273,
1355,
402,
1012,
6034,
741,
6875,
3331,
6134,
29905,
2273,
1355,
402,
9458,
304,
7555,
726,
786,
29912,
29943,
861,
12156,
29909,
2053,
2312,
2053,
2589,
4935,
13,
13,
1576,
334,
12846,
29875,
29899,
510,
655,
1592,
27432,
424,
7663,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
1557,
930,
1042,
310,
8820,
29930,
756,
278,
1021,
3618,
408,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
4429,
18451,
1592,
27432,
424,
8820,
29892,
322,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
2312,
2053,
2589,
2144,
517,
313,
29933,
2053,
3571,
2053,
3433,
1262,
297,
278,
7663,
338,
925,
263,
18131,
1608,
779,
2876,
741,
17308,
2119,
29909,
2053,
2312,
2144,
517,
313,
29933,
2053,
3571,
1262,
297,
7555,
2762,
29912,
10644,
27206,
474,
29889,
29872,
1696,
278,
18131,
1608,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
1557,
930,
1042,
756,
3078,
304,
437,
411,
779,
2589,
29938,
322,
779,
3433,
1504,
13,
13,
29905,
29961,
29881,
3774,
2090,
2801,
18899,
2973,
278,
2038,
12640,
29892,
278,
3566,
1860,
785,
2367,
263,
2090,
2801,
779,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
20388,
17308,
426,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
20388,
517,
8620,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
1557,
930,
1042,
393,
338,
13674,
1190,
25674,
29889,
13,
13,
3112,
4477,
7389,
515,
278,
15848,
393,
278,
1203,
322,
18131,
1608,
11053,
785,
526,
1532,
29899,
12119,
322,
393,
2225,
20098,
10110,
18131,
12903,
29889,
1763,
1423,
393,
779,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
930,
1042,
2225,
20098,
5541,
2187,
29892,
7755,
591,
526,
2183,
18131,
12903,
6118,
29916,
962,
271,
2126,
29912,
13,
29898,
29909,
2053,
4181,
29897,
320,
279,
29961,
29878,
29962,
21583,
29912,
1194,
2876,
29892,
29965,
2915,
669,
29898,
29933,
2053,
5463,
29897,
320,
279,
29961,
29878,
29962,
21583,
29912,
1194,
6134,
29892,
29963,
2915,
669,
29898,
29907,
2053,
11327,
29897,
13,
9458,
297,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
4311,
450,
1494,
13944,
338,
14581,
304,
697,
297,
518,
29992,
2901,
29939,
1049,
17569,
11183,
6763,
310,
5296,
310,
22206,
30081,
29945,
29889,
29947,
1402,
322,
297,
278,
1206,
363,
4226,
1302,
7387,
372,
471,
25811,
515,
518,
29992,
2901,
29939,
1049,
17569,
5296,
310,
10244,
30081,
29953,
29889,
29896,
29906,
1402,
577,
591,
3160,
372,
1244,
29901,
6118,
463,
29912,
13671,
29913,
13,
11035,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
930,
4678,
6134,
29892,
29963,
2144,
6034,
320,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
930,
4678,
2876,
29892,
29965,
2144,
6034,
432,
29918,
29909,
13,
1966,
11035,
3425,
2013,
3752,
29880,
1194,
5981,
29918,
29963,
29905,
6034,
3441,
6134,
29905,
2273,
1355,
402,
2144,
3752,
29878,
29897,
13,
29905,
6034,
13,
29905,
3752,
29880,
1194,
5981,
29918,
29965,
29905,
6034,
3441,
2876,
29905,
2273,
1355,
402,
2144,
3752,
29878,
29897,
13,
29905,
6034,
13,
29926,
29918,
29909,
13,
1966,
11035,
3425,
2013,
5981,
29918,
29963,
29905,
6034,
3441,
6134,
29905,
2273,
1355,
402,
2144,
6034,
320,
5981,
29918,
29965,
29905,
6034,
432,
29918,
29933,
3311,
9158,
29912,
3253,
29913,
29965,
29905,
6034,
29905,
5463,
1012,
6034,
320,
2876,
13,
1966,
11035,
3425,
2013,
5981,
29918,
29963,
29905,
6034,
3441,
6134,
29905,
2273,
1355,
402,
2144,
6034,
432,
29918,
29933,
3823,
5463,
29905,
6034,
320,
2876,
13,
1966,
11035,
3425,
2013,
5981,
29918,
29963,
29905,
6034,
432,
29918,
29907,
3311,
9158,
29912,
3253,
29913,
29963,
29905,
6034,
29905,
11327,
1012,
6034,
320,
6134,
29905,
6034,
320,
2876,
13,
1966,
11035,
3425,
29922,
29926,
29918,
29907,
3823,
11327,
29905,
6034,
320,
6134,
29905,
6034,
320,
2876,
13,
1966,
11035,
3425,
2013,
5981,
648,
1194,
6134,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29965,
29897,
29963,
1012,
6034,
432,
29918,
29907,
3311,
9158,
29912,
3253,
4678,
6134,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29965,
29897,
29963,
1012,
6034,
320,
6134,
29905,
6034,
29905,
2876,
13,
1966,
11035,
3425,
2013,
5981,
648,
1194,
6134,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29965,
29897,
29963,
1012,
6034,
320,
3752,
29880,
29898,
1194,
6134,
29905,
6034,
29905,
2876,
2144,
2273,
1355,
402,
29905,
3752,
29878,
2144,
6034,
432,
29918,
29909,
13,
1966,
11035,
3425,
2013,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
20388,
3752,
29880,
1194,
6134,
29905,
6034,
29905,
2876,
29892,
1194,
6134,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29965,
29897,
29963,
29905,
3752,
29878,
2144,
6034,
432,
29918,
29909,
13,
1966,
11035,
3425,
2013,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
20388,
3752,
29880,
29898,
1194,
6134,
29892,
29963,
2144,
6034,
3441,
2876,
29892,
29965,
2144,
3752,
29878,
2144,
6034,
432,
29918,
29909,
2053,
355,
29912,
13671,
9458,
322,
6118,
463,
29912,
13671,
29913,
13,
11035,
3752,
29880,
1194,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
930,
4678,
6134,
29892,
29963,
2144,
6034,
320,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
930,
4678,
2876,
29892,
29965,
2144,
6034,
432,
29918,
29954,
3823,
4181,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
20388,
3752,
29878,
5033,
29893,
29918,
29954,
29897,
13,
1966,
11035,
3425,
2013,
6970,
29880,
1194,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
20388,
3752,
29880,
29898,
1194,
6134,
29892,
29963,
2144,
6034,
3441,
2876,
29892,
29965,
2144,
3752,
29878,
2144,
6034,
432,
29918,
29954,
3823,
4181,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
20388,
29933,
4481,
5033,
29893,
29918,
29954,
2144,
355,
29912,
13671,
9458,
491,
263,
13944,
13557,
304,
697,
297,
278,
5296,
310,
518,
29992,
2901,
29939,
1049,
17569,
10244,
30081,
29953,
29889,
29896,
29906,
1402,
607,
10469,
6118,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
930,
4678,
6134,
29892,
29963,
2144,
6034,
320,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
930,
4678,
2876,
29892,
29965,
2144,
6034,
432,
29918,
29954,
3823,
4181,
13,
2013,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
20388,
3752,
29880,
29898,
1194,
6134,
29892,
29963,
2144,
6034,
3441,
2876,
29892,
29965,
2144,
3752,
29878,
2144,
6034,
432,
29918,
29954,
3823,
4181,
19470,
6549,
779,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
20388,
17308,
426,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
20388,
517,
8620,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
1557,
930,
1042,
338,
263,
2090,
2801,
29889,
13,
13,
3112,
338,
2821,
393,
779,
9158,
741,
9158,
29912,
6271,
29907,
1157,
3187,
2762,
29912,
1557,
930,
1042,
338,
13674,
1190,
25674,
29892,
1363,
372,
338,
13674,
1190,
25674,
363,
278,
1661,
311,
17158,
13997,
29892,
607,
505,
278,
1021,
3618,
29892,
322,
26116,
297,
6435,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1042,
338,
23505,
1135,
297,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
1557,
930,
4311,
13,
13,
10454,
278,
4805,
23553,
3380,
29901,
591,
864,
278,
3566,
1860,
785,
304,
2367,
263,
2090,
2801,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
2137,
29885,
29905,
517,
8620,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
4429,
541,
591,
505,
451,
1063,
2221,
304,
6356,
393,
4893,
18131,
12903,
304,
18131,
12903,
29889,
4587,
3236,
591,
437,
505,
263,
18131,
1608,
6118,
5981,
29918,
29965,
29905,
6034,
3441,
2876,
29905,
2273,
1355,
402,
21964,
17308,
2119,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
2144,
517,
313,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29892,
741,
12259,
1012,
5463,
17085,
297,
7555,
2762,
29912,
10644,
27206,
541,
769,
591,
723,
817,
304,
1510,
393,
278,
24420,
6081,
2046,
741,
6875,
3331,
3752,
29880,
1194,
5981,
29918,
29965,
29905,
6034,
3441,
2876,
29905,
2273,
1355,
402,
2144,
3752,
29878,
2144,
2273,
1355,
402,
3331,
17308,
29913,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29905,
2273,
1355,
24033,
12259,
1012,
4181,
29913,
402,
13,
29905,
517,
341,
29898,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29905,
2273,
1355,
24033,
12259,
1012,
5463,
29913,
402,
17085,
310,
278,
21692,
29899,
4704,
3632,
14143,
9250,
29879,
304,
263,
1661,
311,
17158,
3632,
14143,
2046,
741,
6875,
3331,
3752,
29880,
1194,
5981,
29918,
29965,
29905,
6034,
3441,
2876,
29905,
2273,
1355,
402,
2144,
3752,
29878,
2144,
2273,
1355,
402,
11079,
741,
17308,
3331,
726,
786,
29912,
29943,
861,
12156,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
29892,
29926,
29918,
29954,
3823,
4181,
29897,
13,
29905,
517,
341,
29905,
3752,
29880,
13670,
726,
786,
29912,
29943,
861,
12156,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29892,
741,
12259,
1012,
5463,
29892,
29926,
29918,
29954,
3823,
5463,
2144,
3752,
29878,
416,
3997,
445,
931,
29892,
25531,
411,
4226,
28803,
4343,
29899,
3149,
394,
28200,
297,
518,
29992,
2901,
29939,
1049,
17569,
1402,
278,
23183,
28803,
4343,
29899,
3149,
394,
28200,
2833,
304,
8839,
2501,
278,
3632,
7886,
12903,
395,
29926,
29918,
29954,
29938,
304,
263,
7621,
7426,
1135,
591,
508,
24803,
403,
29889,
450,
3632,
14143,
779,
2876,
29905,
2273,
1355,
402,
29938,
22981,
694,
1108,
29892,
1363,
591,
508,
3394,
278,
2090,
2801,
7555,
726,
786,
29912,
29943,
861,
12431,
17308,
1157,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
20388,
517,
2802,
2762,
29912,
7967,
7920,
304,
372,
29889,
450,
1108,
338,
393,
779,
5981,
29918,
29965,
29938,
947,
451,
29279,
278,
11053,
395,
29926,
29918,
29954,
3823,
11327,
29938,
322,
395,
29926,
29918,
29954,
3823,
5463,
1628,
322,
278,
28803,
4343,
29899,
3149,
9623,
2046,
741,
726,
786,
29912,
29943,
861,
12156,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29892,
741,
12259,
1012,
5463,
29892,
29926,
29918,
29954,
3823,
5463,
29897,
13,
29922,
29907,
29898,
29933,
29905,
2273,
1355,
3187,
5463,
402,
29905,
2273,
1355,
24033,
12259,
1012,
5463,
29913,
402,
29892,
29926,
29918,
29954,
3823,
5463,
29905,
2273,
1355,
402,
17085,
7111,
9479,
2501,
395,
29926,
29918,
29954,
3823,
5463,
29938,
491,
7632,
29889,
910,
338,
297,
12814,
304,
278,
6434,
363,
4226,
1302,
7387,
29892,
988,
278,
28803,
4343,
29899,
3149,
9623,
22819,
2618,
411,
395,
29926,
29918,
29933,
29898,
29933,
2144,
6484,
341,
29898,
29933,
29905,
2273,
1355,
3187,
5463,
402,
4935,
13,
13,
1349,
375,
29892,
1244,
591,
505,
1584,
3109,
1135,
591,
1258,
297,
518,
29992,
2901,
29939,
1049,
17569,
29962,
813,
451,
871,
437,
591,
451,
505,
263,
27057,
2090,
2801,
29892,
591,
437,
451,
505,
263,
2090,
2801,
472,
599,
29889,
1105,
278,
1108,
9242,
29901,
13,
13,
6132,
278,
3566,
1860,
785,
2367,
263,
2090,
2801,
515,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
2137,
29885,
29938,
304,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
1042,
29973,
960,
451,
29892,
508,
278,
7663,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
1042,
367,
10365,
287,
577,
393,
278,
12827,
2046,
29898,
29909,
2053,
4181,
2144,
17499,
313,
29909,
29905,
2273,
1355,
3187,
4181,
402,
29892,
741,
12259,
1012,
4181,
29892,
29926,
29918,
29954,
17085,
338,
278,
1203,
2910,
310,
263,
7663,
24796,
515,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
2137,
29885,
29938,
304,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
1042,
29973,
13,
13,
4806,
3814,
304,
12359,
434,
11420,
868,
2877,
363,
1302,
7387,
297,
5434,
664,
29889,
3118,
9565,
393,
591,
674,
6559,
338,
278,
1494,
29901,
7755,
591,
526,
2183,
263,
18131,
1608,
12211,
2876,
29892,
29965,
21964,
17308,
2119,
29909,
2053,
4181,
2144,
517,
313,
29933,
2053,
5463,
1262,
297,
278,
11420,
7663,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
1042,
310,
1302,
7387,
29889,
2803,
779,
6134,
29918,
29933,
741,
17308,
2119,
29933,
2053,
5463,
2144,
517,
313,
29933,
29985,
29876,
2053,
5463,
29985,
29876,
1262,
367,
278,
4226,
2133,
29889,
1987,
395,
29965,
29985,
29876,
9361,
1194,
6134,
29918,
29933,
29905,
9356,
741,
726,
741,
726,
786,
29912,
333,
930,
1800,
29898,
29965,
1262,
338,
385,
779,
5463,
29985,
29876,
4388,
29883,
542,
13317,
29892,
322,
12211,
2876,
29985,
29876,
29892,
29965,
29985,
29876,
21964,
17308,
2119,
29909,
29985,
29876,
2053,
4181,
29985,
29876,
2144,
517,
313,
29933,
29985,
29876,
2053,
5463,
29985,
29876,
1262,
338,
263,
18131,
1608,
297,
278,
1014,
7320,
6435,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
2137,
29876,
29938,
310,
4226,
1302,
7387,
29889,
739,
881,
367,
1950,
304,
6356,
393,
278,
2090,
2801,
779,
9158,
29912,
6271,
29907,
2137,
29885,
741,
17308,
1157,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
2137,
29885,
29905,
517,
8620,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
1557,
930,
1042,
338,
18180,
338,
16898,
304,
278,
15259,
310,
278,
22078,
4226,
2133,
2090,
2801,
779,
9158,
29912,
29940,
272,
2137,
29885,
741,
17308,
1157,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
2137,
29885,
29905,
517,
426,
741,
2762,
29912,
7967,
7585,
3187,
2762,
29912,
283,
930,
2137,
29876,
29938,
5643,
491,
779,
9158,
29912,
6271,
29907,
2137,
29876,
1504,
1334,
1073,
515,
518,
29992,
2901,
29939,
1049,
17569,
29962,
393,
779,
9158,
29912,
6271,
29907,
2137,
29876,
29938,
338,
385,
24796,
411,
278,
7663,
395,
6224,
741,
726,
786,
29912,
2273,
930,
29914,
741,
2762,
29912,
10644,
930,
1157,
3187,
2762,
29912,
283,
930,
4311,
512,
3153,
29892,
372,
881,
1101,
393,
779,
9158,
29912,
6271,
29907,
2137,
29885,
29938,
338,
27057,
322,
29914,
272,
2989,
565,
322,
871,
565,
779,
9158,
29912,
29940,
272,
2137,
29885,
29938,
338,
29889,
910,
4076,
14451,
304,
278,
1494,
5155,
29901,
313,
29896,
29897,
565,
395,
29965,
29938,
322,
395,
29963,
29938,
526,
8359,
274,
22502,
7799,
363,
263,
23183,
1302,
2467,
779,
4181,
1628,
526,
278,
6942,
779,
4181,
4388,
29883,
22502,
7799,
395,
29965,
29985,
29876,
29938,
322,
395,
29963,
29985,
29876,
29938,
884,
8359,
29892,
322,
313,
29906,
29897,
565,
779,
4181,
29938,
322,
779,
5463,
29938,
526,
25591,
7126,
4226,
1302,
7387,
29892,
526,
1009,
23183,
17063,
779,
4181,
29985,
29885,
29938,
322,
779,
5463,
29985,
29885,
29938,
884,
25591,
7126,
29973,
13,
13,
29961,
29950,
29984,
29934,
29956,
29896,
29896,
3199,
29913,
13,
13,
29909,
29889,
30081,
29933,
1558,
322,
317,
29889,
30081,
29923,
8255,
29327,
29892,
334,
11574,
284,
322,
429,
13574,
28803,
4343,
29899,
3149,
394,
28200,
363,
8062,
368,
1571,
8820,
322,
868,
2877,
15966,
21817,
853,
440,
29889,
5792,
29889,
435,
29889,
3579,
29953,
29941,
1068,
313,
29906,
29900,
29896,
29946,
511,
29871,
29896,
29953,
29945,
29929,
29994,
29896,
29955,
29900,
29896,
29889,
13,
13,
29903,
29889,
30081,
29923,
8255,
29327,
29892,
317,
29889,
30081,
29968,
5711,
29274,
2574,
29892,
322,
435,
29889,
30081,
2182,
22817,
29892,
334,
7976,
3039,
1302,
7387,
15966,
2422,
271,
29889,
435,
29889,
5792,
29889,
3579,
29896,
29945,
1068,
313,
29906,
29900,
29900,
29946,
511,
29871,
29946,
29955,
29994,
29953,
29896,
29889,
13,
13,
29903,
29889,
30081,
29923,
8255,
29327,
29892,
317,
29889,
30081,
29968,
5711,
29274,
2574,
29892,
435,
29889,
30081,
2182,
22817,
29892,
322,
306,
29889,
30081,
29934,
29874,
774,
595,
29892,
334,
29940,
1337,
2877,
322,
20974,
22540,
15966,
20293,
29889,
4648,
29889,
5792,
29889,
28239,
29889,
3579,
29953,
29896,
1068,
313,
29906,
29900,
29900,
29900,
511,
29871,
29946,
29896,
29945,
29994,
29946,
29941,
29947,
29889,
13,
13,
29961,
517,
29941,
331,
3199,
1118,
334,
29909,
11608,
936,
2948,
304,
527,
9469,
24858,
278,
272,
1567,
363,
395,
29907,
6622,
4388,
29881,
2926,
936,
6757,
15966,
8133,
29889,
2163,
29889,
5792,
29889,
28239,
1696,
29871,
29896,
29947,
29900,
29892,
2163,
29889,
5792,
29889,
28239,
1696,
9133,
5084,
29892,
390,
29902,
29892,
29871,
29906,
29900,
29900,
29953,
29889,
13,
13,
29934,
29889,
30081,
29943,
3208,
29892,
334,
7976,
3039,
1302,
7387,
310,
12101,
6471,
15966,
317,
18426,
29871,
29946,
29955,
29947,
785,
1879,
3297,
29878,
2010,
3767,
29884,
1193,
10732,
297,
589,
13486,
638,
29892,
29871,
29941,
29945,
29900,
29892,
853,
440,
29889,
7957,
2475,
29892,
29871,
29906,
29900,
29900,
29946,
29889,
13,
13,
29909,
29889,
30081,
273,
379,
434,
29888,
29892,
317,
29889,
30081,
29968,
5711,
29274,
2574,
29892,
306,
29889,
30081,
29934,
29874,
774,
595,
29892,
322,
360,
29889,
30081,
29925,
29889,
30081,
12984,
10909,
29892,
334,
29940,
1337,
2877,
310,
390,
347,
600,
295,
30010,
29879,
3879,
2028,
24796,
363,
1571,
8820,
15966,
838,
479,
1182,
29889,
16314,
29889,
24134,
3579,
29896,
29946,
1068,
313,
29906,
29900,
29896,
29896,
511,
29871,
29945,
29896,
29945,
29994,
29945,
29946,
29941,
29889,
13,
13,
29909,
29889,
30081,
273,
379,
434,
29888,
29892,
435,
29889,
30081,
2182,
22817,
29892,
306,
29889,
30081,
29934,
29874,
774,
595,
29892,
322,
360,
29889,
30081,
29925,
29889,
30081,
12984,
10909,
29892,
334,
13658,
322,
12212,
1302,
7387,
310,
12430,
11071,
6471,
373,
395,
29907,
6622,
4388,
284,
28200,
15966,
1222,
1129,
29889,
5792,
29889,
3579,
29906,
29929,
1068,
313,
29906,
29900,
29896,
29896,
511,
29871,
29941,
29994,
29906,
29941,
29889,
13,
13,
29903,
29889,
30081,
29902,
24402,
322,
379,
29889,
30081,
29911,
557,
1794,
29892,
334,
2951,
263,
868,
2877,
363,
395,
29907,
6622,
4388,
19128,
287,
9316,
491,
263,
12430,
11071,
2318,
15966,
435,
29889,
5792,
29889,
28239,
29889,
5546,
3579,
29941,
29900,
1068,
313,
29896,
29929,
29955,
29947,
511,
29871,
29946,
29929,
29945,
29994,
29945,
29900,
29946,
29889,
13,
13,
29903,
29889,
30081,
29968,
5711,
29274,
2574,
29892,
323,
29889,
30081,
29949,
828,
392,
29892,
322,
435,
29889,
30081,
2182,
22817,
29892,
334,
14994,
4427,
2133,
15966,
1222,
1129,
29889,
5792,
29889,
3579,
29941,
29946,
1068,
313,
29906,
29900,
29896,
29953,
511,
29871,
29953,
29906,
29994,
29947,
29896,
29889,
13,
13,
29961,
517,
29941,
331,
3199,
1118,
334,
28575,
6910,
310,
11608,
936,
21692,
29899,
4704,
868,
2877,
15966,
1570,
3088,
435,
29889,
5792,
29889,
3579,
29906,
29906,
1068,
313,
29906,
29900,
29896,
29953,
511,
29871,
29906,
29929,
29941,
29994,
29941,
29941,
29929,
29889,
13,
13,
29903,
29889,
30081,
29968,
5711,
29274,
2574,
322,
435,
29889,
30081,
2182,
22817,
29892,
334,
22677,
17569,
30010,
29879,
2931,
2133,
363,
2989,
21692,
9316,
15966,
1570,
3088,
435,
29889,
5792,
29889,
3579,
29896,
29941,
1068,
313,
29906,
29900,
29900,
29955,
511,
29871,
29896,
29994,
29896,
29900,
29889,
13,
13,
29961,
517,
29941,
331,
3199,
1118,
334,
29907,
20440,
936,
3172,
17569,
868,
2877,
363,
8820,
15966,
21817,
853,
440,
29889,
5792,
29889,
435,
29889,
3579,
29945,
29947,
1068,
313,
29906,
29900,
29900,
29929,
511,
29871,
29946,
29896,
29945,
29994,
29946,
29946,
29896,
29889,
13,
13,
29903,
29889,
30081,
29968,
5711,
29274,
2574,
29892,
435,
29889,
30081,
2182,
22817,
29892,
322,
306,
29889,
30081,
29934,
29874,
774,
595,
29892,
334,
1184,
546,
8820,
29892,
4343,
29899,
3149,
394,
28200,
322,
4033,
2877,
297,
1661,
1107,
713,
868,
2877,
15966,
435,
29889,
13811,
312,
29889,
11597,
29889,
3579,
29906,
29945,
29946,
1068,
313,
29906,
29900,
29900,
29947,
511,
29871,
29906,
29929,
29946,
29929,
29994,
29906,
29929,
29953,
29947,
29889,
13,
13,
29979,
29889,
30081,
29968,
271,
388,
3304,
29892,
334,
29911,
6926,
9940,
30010,
29879,
868,
2877,
363,
263,
1661,
29899,
311,
17158,
1302,
29899,
2467,
15966,
5792,
29889,
2522,
392,
29889,
3579,
29945,
29945,
1068,
313,
29896,
29929,
29947,
29946,
511,
29871,
29896,
29946,
29896,
29994,
29896,
29945,
29896,
29889,
13,
13,
29923,
29889,
30081,
29907,
29889,
30081,
29931,
749,
29892,
334,
29950,
309,
2151,
395,
29907,
6622,
4388,
7576,
15966,
4517,
5792,
29889,
28239,
29889,
365,
522,
545,
3940,
1816,
1696,
29871,
29906,
29896,
29900,
29892,
12585,
853,
440,
29889,
5254,
29892,
12585,
29892,
29871,
29896,
29929,
29929,
29945,
29889,
13,
13,
29924,
29889,
30081,
29933,
29889,
30081,
22677,
17569,
29892,
334,
29928,
950,
537,
6368,
363,
18838,
1306,
424,
6757,
15966,
4103,
29889,
2163,
29889,
5792,
29889,
28239,
29889,
3579,
29906,
29946,
29947,
1068,
313,
29896,
29929,
29955,
29929,
511,
29871,
29906,
29906,
29941,
29994,
29906,
29953,
29955,
29889,
13,
13,
29924,
29889,
30081,
29933,
29889,
30081,
22677,
17569,
29892,
435,
29889,
30081,
4819,
453,
4512,
29892,
306,
29889,
30081,
29934,
29874,
774,
595,
29892,
322,
315,
29889,
30081,
29923,
29889,
30081,
29903,
14107,
1049,
29892,
334,
1123,
6338,
800,
310,
21692,
9316,
491,
1302,
7387,
322,
5882,
22813,
793,
15966,
4103,
29889,
2163,
29889,
5792,
29889,
28239,
29889,
3579,
29906,
29929,
29929,
1068,
313,
29896,
29929,
29947,
29955,
511,
29871,
29955,
29946,
29955,
29994,
29955,
29947,
29946,
29889,
13,
13,
29954,
29889,
30081,
29968,
29889,
30081,
29925,
287,
414,
264,
29892,
334,
29928,
2926,
936,
6757,
322,
21692,
9316,
15966,
6607,
1061,
394,
28200,
322,
8324,
29892,
3455,
306,
313,
29968,
292,
7352,
29892,
18265,
1696,
29871,
29896,
29929,
29947,
29900,
511,
1019,
29883,
29889,
10667,
1066,
29889,
349,
545,
5792,
1696,
29871,
29941,
29947,
29892,
2163,
29889,
5792,
29889,
28239,
1696,
9133,
5084,
29892,
390,
29902,
29892,
29871,
29896,
29929,
29947,
29906,
29892,
29871,
29906,
29955,
29896,
29994,
29906,
29947,
29941,
29889,
13,
13,
29967,
29889,
30081,
2182,
22817,
29892,
334,
22677,
17569,
868,
2877,
363,
395,
29907,
6622,
4388,
1111,
7387,
15966,
5792,
29889,
2522,
392,
29889,
3579,
29955,
29896,
1068,
313,
29896,
29929,
29929,
29906,
511,
29871,
29906,
29955,
29955,
29994,
29906,
29929,
29946,
29889,
13,
13,
29961,
517,
29941,
331,
3199,
1118,
334,
13658,
322,
12212,
395,
29907,
6622,
4388,
1111,
7387,
15966,
5792,
29889,
1019,
29883,
29889,
12585,
5241,
359,
29889,
28239,
29889,
3579,
29896,
29896,
29953,
1068,
313,
29896,
29929,
29929,
29946,
511,
29871,
29946,
29941,
29945,
29994,
29946,
29945,
29900,
29889,
13,
13,
29967,
29889,
30081,
2182,
22817,
322,
306,
29889,
30081,
29934,
29874,
774,
595,
29892,
334,
2568,
29884,
1133,
395,
29907,
6622,
4388,
284,
28200,
322,
3172,
17569,
868,
2877,
363,
3252,
12652,
1302,
7387,
15966,
4103,
29889,
2163,
29889,
5792,
29889,
28239,
29889,
3579,
29941,
29946,
29955,
1068,
313,
29896,
29929,
29929,
29945,
511,
29871,
29906,
29947,
29947,
29945,
29994,
29906,
29929,
29896,
29945,
29889,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 screenshot from Apple’s app store.
Where most college students see an easy hook-up, one enterprising American University junior sees something else: The opportunity to score a free meal.
That’s the idea, at least, behind Swipe for Swipes, a blog for AU students that popped up on Tumblr Monday. It’s a catchy hashtag with an even catchier premise: If you have extra meal swipes in AU’s dining halls, add the line “I have spare meal swipes” to your bio on Tinder, the mobile dating app. If you’re short on dining credits, add the line “I need a meal swipe.” Then set your search distance to one mile and wait for meals (or meal dates!) to roll in.
“Now everything in your life is better,” writes Swipe for Swipes’ creator, Julia Reinstein. “That’s symbiosis, folks.”
Hey #AmericanU! Need a meal swipe? Got spare meal swipes? Here’s the plan. I introduce to you: ″Swipe for Swipes.” http://t.co/MuDdWitSSr — Julia Reinstein (@juliareinstein) April 20, 2014
That is indeed symbiosis, and also a rather brilliant idea — but for better or worse, it doesn’t seem to have caught on. Molly Greenberg, a writer for In the Capital and an AU alum, found the process “not only tedious but also quite time-consuming.” I tried it out myself, with similar results: After swiping through at least three dozen Tinder profiles, I encountered not a single meal offer or request. (Admittedly, there are 10,000 students at AU, and my search dragged in a lot of Georgetown, George Washington and Howard students, too — so who knows how it might work for someone physically on campus.)
Reinstein, the AU junior who created the Tumblr, says she has personally seen the message in plenty of students’ bios. Even better, a freshman who really, really liked the idea also asked Reinstein out. (“I guess that’s what happens when you found an Internet movement,” she wrote in an email to the Post.)
All that said, this little hack is a great example of the power, and promise, of the sharing economy — particularly when coupled with the geolocation services on mobile phones. Students could theoretically use Tinder to find, or offer, just about any product or service. Think Tinder for tutors! Tinder for prime library study spaces! Tinder for used books, even!
It’s not very sexy, maybe … but it’s definitely useful.
Read more entertainment news | [
1,
29871,
13,
13,
29909,
17286,
515,
12113,
30010,
29879,
623,
3787,
29889,
13,
13,
11921,
1556,
12755,
8041,
1074,
385,
4780,
12422,
29899,
786,
29892,
697,
3896,
558,
5921,
3082,
3014,
20183,
18553,
1554,
1683,
29901,
450,
15130,
304,
8158,
263,
3889,
592,
284,
29889,
13,
13,
7058,
30010,
29879,
278,
2969,
29892,
472,
3203,
29892,
5742,
3925,
15705,
363,
3925,
29488,
29892,
263,
12618,
363,
319,
29965,
8041,
393,
772,
2986,
701,
373,
323,
398,
2204,
29878,
27822,
29889,
739,
30010,
29879,
263,
4380,
29891,
756,
400,
351,
411,
385,
1584,
4380,
631,
5188,
895,
29901,
960,
366,
505,
4805,
592,
284,
2381,
29488,
297,
319,
29965,
30010,
29879,
270,
2827,
298,
4293,
29892,
788,
278,
1196,
1346,
29902,
505,
29337,
592,
284,
2381,
29488,
30024,
304,
596,
17799,
373,
323,
4995,
29892,
278,
10426,
270,
1218,
623,
29889,
960,
366,
30010,
276,
3273,
373,
270,
2827,
6625,
1169,
29892,
788,
278,
1196,
1346,
29902,
817,
263,
592,
284,
2381,
15705,
3178,
1987,
731,
596,
2740,
5418,
304,
697,
17967,
322,
4480,
363,
592,
1338,
313,
272,
592,
284,
10116,
14366,
304,
9679,
297,
29889,
13,
13,
30015,
10454,
4129,
297,
596,
2834,
338,
2253,
3995,
15873,
3925,
15705,
363,
3925,
29488,
30010,
907,
1061,
29892,
22045,
18334,
5465,
29889,
1346,
7058,
30010,
29879,
5016,
29890,
2363,
275,
29892,
900,
2039,
3178,
13,
13,
29950,
1032,
396,
14689,
29965,
29991,
20768,
263,
592,
284,
2381,
15705,
29973,
15992,
29337,
592,
284,
2381,
29488,
29973,
2266,
30010,
29879,
278,
3814,
29889,
306,
14944,
304,
366,
29901,
29871,
30160,
29903,
4353,
412,
363,
3925,
29488,
3178,
1732,
597,
29873,
29889,
1111,
29914,
29924,
29884,
29928,
29881,
29956,
277,
1799,
29878,
813,
22045,
18334,
5465,
20164,
29926,
352,
27388,
262,
5465,
29897,
3786,
29871,
29906,
29900,
29892,
29871,
29906,
29900,
29896,
29946,
13,
13,
7058,
338,
6200,
5016,
29890,
2363,
275,
29892,
322,
884,
263,
3265,
27592,
2969,
813,
541,
363,
2253,
470,
15029,
29892,
372,
1838,
30010,
29873,
2833,
304,
505,
12624,
373,
29889,
10750,
368,
7646,
2552,
29892,
263,
9227,
363,
512,
278,
25343,
322,
385,
319,
29965,
394,
398,
29892,
1476,
278,
1889,
1346,
1333,
871,
29748,
2738,
541,
884,
3755,
931,
29899,
25978,
292,
3178,
306,
1898,
372,
714,
6142,
29892,
411,
2788,
2582,
29901,
2860,
2381,
666,
292,
1549,
472,
3203,
2211,
24231,
323,
4995,
28723,
29892,
306,
18169,
451,
263,
2323,
592,
284,
5957,
470,
2009,
29889,
313,
3253,
29885,
4430,
368,
29892,
727,
526,
29871,
29896,
29900,
29892,
29900,
29900,
29900,
8041,
472,
319,
29965,
29892,
322,
590,
2740,
8338,
3192,
297,
263,
3287,
310,
1879,
272,
657,
776,
29892,
5122,
7660,
322,
17430,
8041,
29892,
2086,
813,
577,
1058,
9906,
920,
372,
1795,
664,
363,
4856,
4824,
1711,
373,
24165,
1846,
13,
13,
1123,
262,
5465,
29892,
278,
319,
29965,
20183,
1058,
2825,
278,
323,
398,
2204,
29878,
29892,
4083,
1183,
756,
22345,
3595,
278,
2643,
297,
20947,
310,
8041,
30010,
289,
2363,
29889,
7753,
2253,
29892,
263,
10849,
1171,
1058,
2289,
29892,
2289,
23289,
278,
2969,
884,
4433,
18334,
5465,
714,
29889,
313,
30015,
29902,
4140,
393,
30010,
29879,
825,
5930,
746,
366,
1476,
385,
4685,
10298,
3995,
1183,
5456,
297,
385,
4876,
304,
278,
4918,
1846,
13,
13,
3596,
393,
1497,
29892,
445,
2217,
15833,
338,
263,
2107,
1342,
310,
278,
3081,
29892,
322,
11640,
29892,
310,
278,
19383,
26504,
813,
10734,
746,
7303,
29881,
411,
278,
1737,
324,
10610,
5786,
373,
10426,
1374,
2873,
29889,
5088,
1237,
1033,
17237,
1711,
671,
323,
4995,
304,
1284,
29892,
470,
5957,
29892,
925,
1048,
738,
3234,
470,
2669,
29889,
25086,
323,
4995,
363,
7149,
943,
29991,
323,
4995,
363,
6019,
3489,
6559,
8162,
29991,
323,
4995,
363,
1304,
8277,
29892,
1584,
29991,
13,
13,
3112,
30010,
29879,
451,
1407,
409,
3594,
29892,
5505,
16088,
541,
372,
30010,
29879,
11630,
5407,
29889,
13,
13,
6359,
901,
22684,
358,
9763
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
David Leavitt may be an award-winning journalist, as his Twitter bio proudly claims, but he’s also an absolute nightmare of a customer, if his recent run-in with a Target employee is any indication.
Last week, Leavitt was shopping at a Target TGT, +0.82% in Swansea, Mass., when he came across an electric toothbrush that looked as if it was on sale for a penny. When he tried to buy it, Tori Perrotti, who was handling the register, didn’t go for it. After all, the real sale price was $89.99.
So what did Leavitt do? He took her picture and posted it on Twitter TWTR, +2.03% along with the facts of the matter as he saw them, in an apparent attempt to shame her and the retailer:
He then explained that he called the police to intervene, but they apparently told him that he would have to sue the store if he wanted that deal.
Let’s just say the public reaction probably wasn’t what he was expecting.
One commenter said, “God, you’re an awful person,” while another pointed out that this isn’t first time Leavitt has aired a retail grievance of this type:
The public support for Perrotti only grew from there, leading to the start of a GoFundMe campaign that has already raised more than $31,000 to put toward a vacation. Some of the money, she said, will also go toward charity.
“It’s so often that people will take the picture and make a meme out of it in a mean way,” Perrotti told NBC Boston after her story went viral. “So, it’s nice to see there’s publicity out of this to support me and my feelings.”
And what does Leavitt have to say about the whole thing? | [
1,
4699,
951,
485,
986,
1122,
367,
385,
9862,
29899,
5080,
1076,
24452,
29892,
408,
670,
20147,
17799,
22314,
368,
16726,
29892,
541,
540,
30010,
29879,
884,
385,
8380,
4646,
29885,
598,
310,
263,
11962,
29892,
565,
670,
7786,
1065,
29899,
262,
411,
263,
17157,
19001,
338,
738,
4221,
362,
29889,
13,
13,
8897,
4723,
29892,
951,
485,
986,
471,
17394,
3262,
472,
263,
17157,
323,
23799,
29892,
718,
29900,
29889,
29947,
29906,
29995,
297,
3925,
12350,
29874,
29892,
7360,
1696,
746,
540,
2996,
4822,
385,
12646,
304,
720,
1182,
1878,
393,
5148,
408,
565,
372,
471,
373,
14686,
363,
263,
6584,
1460,
29889,
1932,
540,
1898,
304,
15649,
372,
29892,
323,
4170,
2431,
26970,
29875,
29892,
1058,
471,
11415,
278,
6036,
29892,
3282,
30010,
29873,
748,
363,
372,
29889,
2860,
599,
29892,
278,
1855,
14686,
8666,
471,
395,
29947,
29929,
29889,
29929,
29929,
29889,
13,
13,
6295,
825,
1258,
951,
485,
986,
437,
29973,
940,
3614,
902,
7623,
322,
8059,
372,
373,
20147,
323,
29956,
5659,
29892,
718,
29906,
29889,
29900,
29941,
29995,
3412,
411,
278,
17099,
310,
278,
4383,
408,
540,
4446,
963,
29892,
297,
385,
20295,
4218,
304,
28503,
902,
322,
278,
3240,
737,
261,
29901,
13,
13,
3868,
769,
10824,
393,
540,
2000,
278,
10974,
304,
26314,
29872,
29892,
541,
896,
13229,
5429,
1075,
393,
540,
723,
505,
304,
12991,
278,
3787,
565,
540,
5131,
393,
5376,
29889,
13,
13,
12024,
30010,
29879,
925,
1827,
278,
970,
19848,
3117,
9007,
30010,
29873,
825,
540,
471,
16120,
29889,
13,
13,
6716,
3440,
261,
1497,
29892,
1346,
29954,
397,
29892,
366,
30010,
276,
385,
28893,
2022,
3995,
1550,
1790,
11520,
714,
393,
445,
3508,
30010,
29873,
937,
931,
951,
485,
986,
756,
263,
2859,
263,
3240,
737,
867,
10384,
749,
310,
445,
1134,
29901,
13,
13,
1576,
970,
2304,
363,
2431,
26970,
29875,
871,
13631,
515,
727,
29892,
8236,
304,
278,
1369,
310,
263,
2921,
29943,
870,
6816,
11531,
393,
756,
2307,
10425,
901,
1135,
395,
29941,
29896,
29892,
29900,
29900,
29900,
304,
1925,
11183,
263,
11757,
362,
29889,
3834,
310,
278,
6909,
29892,
1183,
1497,
29892,
674,
884,
748,
11183,
1373,
537,
29889,
13,
13,
30015,
3112,
30010,
29879,
577,
4049,
393,
2305,
674,
2125,
278,
7623,
322,
1207,
263,
286,
2004,
714,
310,
372,
297,
263,
2099,
982,
3995,
2431,
26970,
29875,
5429,
405,
5371,
12115,
1156,
902,
5828,
3512,
10636,
284,
29889,
1346,
6295,
29892,
372,
30010,
29879,
7575,
304,
1074,
727,
30010,
29879,
970,
537,
714,
310,
445,
304,
2304,
592,
322,
590,
21737,
3178,
13,
13,
2855,
825,
947,
951,
485,
986,
505,
304,
1827,
1048,
278,
3353,
2655,
29973
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Beginning Feb. 1st each year, a seasonal wildlife closure will be in effect on Redgarden Wall in Eldorado Canyon State Park to protect nesting and roosting sites of the canyon’s falcons. The closure is in effect through July 31st unless lifted early due to early fledging or inactivity.
Description
This airy, overhanging excursion is a must-do for those comfortable at the grade. While never fatal, this route is quite serious in a couple of places, including the 11d crux boulder problem, which you encounter off an exposed hanging belay on the third pitch. Alternately delicate, thuggy and heady, The Wisdom is arguably the best continuously free route on the Roof Wall.
P1: (10d s) Begin on the ramp about fifty feet up and left of Temporary Like Achilles and Dangerous Acquaintances. The route face climbs right from a small stance at the top of the double cave-slots, moving through a scoop past greasy laybacks and a so-so fixed pin to easier face moves above. Protect when you can.
P2: (11b) A completely unique experience! From the alcove at the top of the first pitch jug haul up to a bolt at the base of the Scary Canary dihedral. Clip then bolt then, counter to your instincts, downclimb right along the lip of the roof on a good rail (pumpy) until you can roll over onto the smooth, tan face above the lip. Belay under the small roof at double Metolius anchor bolts. This pitch is commonly combined with pitch 1.
P3: (11d/12a s) The crux. Undercling right off the hanging belay to an thin-walled but solid hole/flake. Load it up with 2"+ gear, then crank straight up on bouldery, commiting moves. The handholds are good but the footholds suck through here; a fall from the top of this sequence will send you for a good 30-footer. Have your belayer be mindful not to drop you beneath the big roof another 10 feet down, as sharp rails at the lip might cut your rope! Easier, better protected climbing up a R-facing corner leads you to a small belay stance.
P4: (5.9) Move up and right from the belay to the varnished plaque of rock, clipping a lone bolt and executing a series of hideously desperate slab moves (this is Psycho Slab) to reach the safety of the Upper Ramp.
I've got an old issue of "Climbing" (July 1978) which accurately describes the first ascent(s). Each pitch received separate FAs. John Bachar did the FA of the entire route. Pitch one FA: E. Webster. Pitch two FA: Candelaria or Higbee. Pitch three FA: Bachar. The article is pretty interesting. It sounds like they avoided the hanging belay above second pitch (hanging belays were considered aid), and just combined the second and third pitches--pretty exciting.The route was tried by some of the best climbers back then, but some were reluctant to do it because of the bolt placed above the roof--it was considered illegal, degrading, and ruined the route for some! Times sure have changed. The Wisdom is an Eldo classic. Back in the '80's the best hard-man combo was to do The Wisdom to Jules Verne to Lene's Dream to the Naked Edge.
"History: An aid climb (5.8, A4 by Layton Kor and Pat Ament in 1961), it was subjected to free climbing attempts in the mid-seventies. The first pitch was lead free in 1975 by Ed Webster. The main roof was lead free in 1975 by Art Higbee after a few tries. The final roof was lead free by John Bachar after a couple of attempts."
I had been scared of this route for a long time, and finally tried it. It wasn't as bad as I expected, but most of what is said about the route is true. Here is some gear beta. You might use different gear, but this will give you an idea of what to bring.
Jim Erickson: "We were all trying the first pitch, but nobody was willing to do the unprotected 5.10 move. Along came Ed (Webster) hiking up the roof routes trail. He was young, impressionable, and out to make a name for himself. So he tied in and we sent him up there. Thankfully, he got the rope up there for us."
The first two pitches, linked together, made one of the most spectacular pitches I've yet to do in Eldo. The pin on the "first" pitch is not visible until you are literally face-to-face with it. This led to some pumpy and futile gear tinkering in the scoop below. The pin looks pretty good, certainly better than the manky nuts that I thought were going to protect the crux. "Pitch 2" has incredible position and exposure for being only 100 feet off the deck... this pitch is probably more scary for the follower than the leader. One 60 meter rope will just barely get you down from here.
Finally decided to give this thing a whirl today, and what a stellar line. The first two pitches as one was definitely the way to go. the third pitch, although not so hard once you've seen the holds, is hard to see/read from the belay and committing to the moves on slick/blind feet will get you crimping hard. Not as scary as I was expecting, but still has some spice! I was able to carry a light rack on this one, which helps on the steep stuff (single set from black Alien to #3 Camalot, double on #2 Camalot for crux). I'd say it's the best of the roof routes...I've yet to do.
This thing is 12a blah blah blah.... 11d if you can't send. I love this route got to be one of Eldo's best. Wait, I say that about every route in Eldo. Screw it I just love climbing in Eldo. All the routs ROCK!
Amen Stocker I agree it is only 11d if you don't send it. A nice comfy rest when you take does help out the pump significantly. Better bring two tickets to the Gun Show to send, the feet are nonexistent through the crux. I'm renaming this route in fine Mountain Project fashion. I dub thee, "The Mother @#?!&!". So sick it makes my palms sweat thinking about it. Don't bother getting on it, it's over rated.
After reading the description and Mark T's comment, I believe there is more historical info to the "second" pitch. I believe that for its FA, there was no bolt in the roof protecting the downclimb traverse!! I believe that pro was arduously placed up in the Scary Canary corner and most likely then the pin in the roof which is still there. Correct me if I am wrong....
I must admit, for better or for worse, in 1996, with Park permission, I replaced the bolts of the hanging belay (point of aid) for the "third" pitch. The Wisdom was one of my favorite routes to do then and of course I felt I was doing a community service.... What a way more proud ascent it would be to eliminate the hanging belay and do the "second" and "third" pitches like JB did for its FFA!!! I've never done it that way. (That left, old Star-Drive bolt did come out frighteningly easily and the other was not too much more difficult!!)
Finally got on this after thinking about it for 2 years. While it is a little scary to climb above the gear, there are no features below the crux, so I don't really think it is an R route. You are more likely to get hurt on the first pitch in my opinion. The crux is about V3, with jugs at the top - not as bad as I expected. Put 2 #2 Camalots in and go for it!
It seems that the anchors on the hanging slab (top of pitch two) are a point of aid. There is no obvious belay ledge there and it is just used to make the crux easier. I think Bachar had the real vision for a free ascent, ledge to ledge (combine pitch 2 and 3).
Wow, what an incredible climb! Definitely R for the bottom half of the 1st pitch. Good nuts or a big RP back up the pin nicely.
Of the 3 pitches, P2 felt the hardest and pumpiest, even with a top rope belay! This pitch is airy and exciting and the reason this climb gets 4 instead of 3 stars.
In accordance with most other comments, P3 seemed a tough mental pitch as you commit and get your feet 4-5' above your bomber gear before you can place another very good yellow Alien size. However, contrary to most other comments, these moves seemed easier than traversing down the roof on P2. Maybe I got lucky with the foot work or found a secret hold. I dunno, but this is likely the first route I've ever been on in Eldo that felt quite a bit easier than the consensus grade.
I've heard that there is a climb in Morrison, Co, that was used to train for a climb up in Eldo. The climb is called Upper Wisdom or if you want, Full Wisdom. I wonder if this is the climb that was talked about?
In reply to the above post, yes this climb goes easily in one pitch, it's about 50m in total (p1-3, I'm not sure about adding the Psycho Slab). With long slings, strategic runouts, and a skinny rope, I didn't feel there was any ropedrag at the crux.
Also, there's no reason to haul 2 gold Camalots up the route. If you wanna double down on gear before the crux, there's a great purple Camalot in the left side of the undercling pod. | [
1,
14893,
1076,
26319,
29889,
29871,
29896,
303,
1269,
1629,
29892,
263,
4259,
284,
8775,
19264,
18424,
674,
367,
297,
2779,
373,
4367,
29887,
7879,
14406,
297,
382,
430,
272,
912,
315,
1384,
265,
4306,
4815,
304,
12566,
17763,
292,
322,
696,
520,
292,
11840,
310,
278,
508,
29891,
265,
30010,
29879,
11092,
3200,
29889,
450,
18424,
338,
297,
2779,
1549,
5468,
29871,
29941,
29896,
303,
6521,
26239,
4688,
2861,
304,
4688,
27481,
3460,
470,
297,
10072,
29889,
13,
13,
9868,
13,
13,
4013,
4799,
29891,
29892,
975,
29882,
9776,
5566,
1295,
291,
338,
263,
1818,
29899,
1867,
363,
1906,
25561,
472,
278,
19468,
29889,
5806,
2360,
18409,
29892,
445,
5782,
338,
3755,
10676,
297,
263,
7303,
310,
7600,
29892,
3704,
278,
29871,
29896,
29896,
29881,
7618,
29916,
289,
483,
261,
1108,
29892,
607,
366,
11735,
1283,
385,
19884,
298,
9776,
1339,
388,
373,
278,
4654,
15905,
29889,
12440,
2486,
628,
9593,
29892,
266,
688,
1927,
322,
2343,
29891,
29892,
450,
15756,
3129,
338,
1852,
29884,
2197,
278,
1900,
3133,
5794,
3889,
5782,
373,
278,
1528,
974,
14406,
29889,
13,
13,
29925,
29896,
29901,
313,
29896,
29900,
29881,
269,
29897,
14893,
373,
278,
364,
1160,
1048,
19044,
6900,
701,
322,
2175,
310,
6789,
1971,
653,
8502,
15542,
7545,
322,
360,
4600,
681,
7255,
339,
2365,
2925,
29889,
450,
5782,
3700,
10784,
5824,
1492,
515,
263,
2319,
380,
749,
472,
278,
2246,
310,
278,
3765,
24230,
29899,
2536,
1862,
29892,
8401,
1549,
263,
885,
26793,
4940,
1395,
8995,
6568,
1627,
29879,
322,
263,
577,
29899,
578,
4343,
12534,
304,
6775,
3700,
16229,
2038,
29889,
14409,
312,
746,
366,
508,
29889,
13,
13,
29925,
29906,
29901,
313,
29896,
29896,
29890,
29897,
319,
6446,
5412,
7271,
29991,
3645,
278,
10747,
994,
472,
278,
2246,
310,
278,
937,
15905,
8740,
447,
352,
701,
304,
263,
289,
14339,
472,
278,
2967,
310,
278,
2522,
653,
1815,
653,
652,
17143,
1705,
29889,
315,
3466,
769,
289,
14339,
769,
29892,
6795,
304,
596,
26508,
29879,
29892,
1623,
695,
19977,
1492,
3412,
278,
17441,
310,
278,
17526,
373,
263,
1781,
8367,
313,
29886,
398,
2272,
29897,
2745,
366,
508,
9679,
975,
11480,
278,
10597,
29892,
10345,
3700,
2038,
278,
17441,
29889,
3741,
388,
1090,
278,
2319,
17526,
472,
3765,
4737,
324,
2482,
17360,
15772,
1372,
29889,
910,
15905,
338,
15574,
12420,
411,
15905,
29871,
29896,
29889,
13,
13,
29925,
29941,
29901,
313,
29896,
29896,
29881,
29914,
29896,
29906,
29874,
269,
29897,
450,
7618,
29916,
29889,
7634,
19914,
1492,
1283,
278,
298,
9776,
1339,
388,
304,
385,
16835,
29899,
29893,
4212,
541,
7773,
16188,
29914,
29888,
433,
446,
29889,
16012,
372,
701,
411,
29871,
29906,
17969,
330,
799,
29892,
769,
274,
10003,
7812,
701,
373,
289,
483,
708,
29892,
9063,
292,
16229,
29889,
450,
1361,
23177,
526,
1781,
541,
278,
1701,
720,
3361,
480,
384,
1549,
1244,
29936,
263,
6416,
515,
278,
2246,
310,
445,
5665,
674,
3638,
366,
363,
263,
1781,
29871,
29941,
29900,
29899,
21720,
29889,
6975,
596,
1339,
2747,
367,
3458,
1319,
451,
304,
5768,
366,
19540,
278,
4802,
17526,
1790,
29871,
29896,
29900,
6900,
1623,
29892,
408,
15301,
18090,
472,
278,
17441,
1795,
5700,
596,
696,
412,
29991,
382,
294,
631,
29892,
2253,
6364,
10784,
10549,
701,
263,
390,
29899,
29888,
9390,
11155,
11981,
366,
304,
263,
2319,
1339,
388,
380,
749,
29889,
13,
13,
29925,
29946,
29901,
313,
29945,
29889,
29929,
29897,
25249,
701,
322,
1492,
515,
278,
1339,
388,
304,
278,
722,
29876,
3276,
2174,
802,
310,
7679,
29892,
9335,
3262,
263,
301,
650,
289,
14339,
322,
14012,
263,
3652,
310,
9563,
5794,
553,
21194,
2243,
370,
16229,
313,
1366,
338,
10144,
29891,
1859,
317,
8205,
29897,
304,
6159,
278,
15332,
310,
278,
24929,
390,
1160,
29889,
13,
13,
29902,
29915,
345,
2355,
385,
2030,
2228,
310,
376,
29907,
2576,
10549,
29908,
313,
29967,
11850,
29871,
29896,
29929,
29955,
29947,
29897,
607,
7913,
2486,
16612,
278,
937,
408,
1760,
29898,
29879,
467,
7806,
15905,
4520,
5004,
383,
2887,
29889,
2259,
13620,
279,
1258,
278,
13515,
310,
278,
4152,
5782,
29889,
349,
2335,
697,
13515,
29901,
382,
29889,
2563,
2475,
29889,
349,
2335,
1023,
13515,
29901,
28433,
295,
4568,
470,
379,
335,
915,
29872,
29889,
349,
2335,
2211,
13515,
29901,
13620,
279,
29889,
450,
4274,
338,
5051,
8031,
29889,
739,
10083,
763,
896,
28305,
278,
298,
9776,
1339,
388,
2038,
1473,
15905,
313,
29882,
9776,
1339,
1036,
892,
5545,
16226,
511,
322,
925,
12420,
278,
1473,
322,
4654,
15905,
267,
489,
1457,
4349,
5566,
11407,
29889,
1576,
5782,
471,
1898,
491,
777,
310,
278,
1900,
10784,
2596,
1250,
769,
29892,
541,
777,
892,
1104,
5313,
424,
304,
437,
372,
1363,
310,
278,
289,
14339,
7180,
2038,
278,
17526,
489,
277,
471,
5545,
27302,
29892,
316,
5105,
292,
29892,
322,
5796,
1312,
278,
5782,
363,
777,
29991,
10277,
1854,
505,
3939,
29889,
450,
15756,
3129,
338,
385,
382,
430,
29877,
22037,
29889,
7437,
297,
278,
525,
29947,
29900,
29915,
29879,
278,
1900,
2898,
29899,
1171,
419,
833,
471,
304,
437,
450,
15756,
3129,
304,
27151,
1798,
484,
304,
365,
1600,
29915,
29879,
16814,
304,
278,
405,
12535,
21086,
29889,
13,
13,
29908,
20570,
29901,
530,
16226,
10784,
29890,
313,
29945,
29889,
29947,
29892,
319,
29946,
491,
365,
388,
880,
12555,
322,
4121,
319,
358,
297,
29871,
29896,
29929,
29953,
29896,
511,
372,
471,
4967,
287,
304,
3889,
10784,
10549,
14734,
297,
278,
7145,
29899,
344,
794,
583,
29889,
450,
937,
15905,
471,
3275,
3889,
297,
29871,
29896,
29929,
29955,
29945,
491,
2155,
2563,
2475,
29889,
450,
1667,
17526,
471,
3275,
3889,
297,
29871,
29896,
29929,
29955,
29945,
491,
3012,
379,
335,
915,
29872,
1156,
263,
2846,
14335,
29889,
450,
2186,
17526,
471,
3275,
3889,
491,
2259,
13620,
279,
1156,
263,
7303,
310,
14734,
1213,
13,
13,
29902,
750,
1063,
885,
1965,
310,
445,
5782,
363,
263,
1472,
931,
29892,
322,
7146,
1898,
372,
29889,
739,
9007,
29915,
29873,
408,
4319,
408,
306,
3806,
29892,
541,
1556,
310,
825,
338,
1497,
1048,
278,
5782,
338,
1565,
29889,
2266,
338,
777,
330,
799,
21762,
29889,
887,
1795,
671,
1422,
330,
799,
29892,
541,
445,
674,
2367,
366,
385,
2969,
310,
825,
304,
6963,
29889,
13,
13,
29967,
326,
1425,
860,
1100,
29901,
376,
4806,
892,
599,
1811,
278,
937,
15905,
29892,
541,
23196,
471,
17762,
304,
437,
278,
443,
24681,
29871,
29945,
29889,
29896,
29900,
4337,
29889,
838,
549,
2996,
2155,
313,
3609,
2475,
29897,
298,
638,
292,
701,
278,
17526,
12049,
26203,
29889,
940,
471,
4123,
29892,
17188,
519,
29892,
322,
714,
304,
1207,
263,
1024,
363,
3654,
29889,
1105,
540,
21351,
297,
322,
591,
2665,
1075,
701,
727,
29889,
3374,
3730,
29892,
540,
2355,
278,
696,
412,
701,
727,
363,
502,
1213,
13,
13,
1576,
937,
1023,
15905,
267,
29892,
9024,
4208,
29892,
1754,
697,
310,
278,
1556,
6683,
562,
1070,
15905,
267,
306,
29915,
345,
3447,
304,
437,
297,
382,
430,
29877,
29889,
450,
12534,
373,
278,
376,
4102,
29908,
15905,
338,
451,
7962,
2745,
366,
526,
22830,
3700,
29899,
517,
29899,
2161,
411,
372,
29889,
910,
5331,
304,
777,
282,
398,
2272,
322,
3105,
488,
330,
799,
260,
682,
3241,
297,
278,
885,
26793,
2400,
29889,
450,
12534,
3430,
5051,
1781,
29892,
8959,
2253,
1135,
278,
767,
3459,
302,
8842,
393,
306,
2714,
892,
2675,
304,
12566,
278,
7618,
29916,
29889,
376,
29925,
2335,
29871,
29906,
29908,
756,
29811,
1821,
2602,
322,
14060,
545,
363,
1641,
871,
29871,
29896,
29900,
29900,
6900,
1283,
278,
19810,
856,
445,
15905,
338,
3117,
901,
885,
653,
363,
278,
1101,
261,
1135,
278,
11822,
29889,
3118,
29871,
29953,
29900,
11134,
696,
412,
674,
925,
16079,
368,
679,
366,
1623,
515,
1244,
29889,
13,
13,
12881,
635,
8459,
304,
2367,
445,
2655,
263,
377,
5168,
9826,
29892,
322,
825,
263,
14781,
279,
1196,
29889,
450,
937,
1023,
15905,
267,
408,
697,
471,
11630,
278,
982,
304,
748,
29889,
278,
4654,
15905,
29892,
5998,
451,
577,
2898,
2748,
366,
29915,
345,
3595,
278,
8640,
29892,
338,
2898,
304,
1074,
29914,
949,
515,
278,
1339,
388,
322,
844,
5367,
304,
278,
16229,
373,
269,
1406,
29914,
2204,
513,
6900,
674,
679,
366,
2181,
6574,
292,
2898,
29889,
2216,
408,
885,
653,
408,
306,
471,
16120,
29892,
541,
1603,
756,
777,
805,
625,
29991,
306,
471,
2221,
304,
8677,
263,
3578,
1153,
384,
373,
445,
697,
29892,
607,
6911,
373,
278,
1886,
1022,
6433,
313,
14369,
731,
515,
4628,
10785,
264,
304,
396,
29941,
5500,
284,
327,
29892,
3765,
373,
396,
29906,
5500,
284,
327,
363,
7618,
29916,
467,
306,
29915,
29881,
1827,
372,
29915,
29879,
278,
1900,
310,
278,
17526,
12049,
856,
29902,
29915,
345,
3447,
304,
437,
29889,
13,
13,
4013,
2655,
338,
29871,
29896,
29906,
29874,
29268,
29268,
29268,
3045,
29871,
29896,
29896,
29881,
565,
366,
508,
29915,
29873,
3638,
29889,
306,
5360,
445,
5782,
2355,
304,
367,
697,
310,
382,
430,
29877,
29915,
29879,
1900,
29889,
20340,
29892,
306,
1827,
393,
1048,
1432,
5782,
297,
382,
430,
29877,
29889,
317,
1037,
29893,
372,
306,
925,
5360,
10784,
10549,
297,
382,
430,
29877,
29889,
2178,
278,
6745,
29879,
16641,
7077,
29991,
13,
13,
29909,
1527,
6639,
4937,
306,
8661,
372,
338,
871,
29871,
29896,
29896,
29881,
565,
366,
1016,
29915,
29873,
3638,
372,
29889,
319,
7575,
419,
29888,
29891,
1791,
746,
366,
2125,
947,
1371,
714,
278,
282,
3427,
16951,
29889,
26965,
6963,
1023,
16892,
1691,
304,
278,
21429,
7704,
304,
3638,
29892,
278,
6900,
526,
5642,
29916,
9696,
1549,
278,
7618,
29916,
29889,
306,
29915,
29885,
4325,
11500,
445,
5782,
297,
2691,
18204,
8010,
13460,
29889,
306,
15416,
14904,
29892,
376,
1576,
21869,
732,
29937,
29973,
29991,
29987,
29991,
1642,
1105,
17319,
372,
3732,
590,
5112,
1516,
7901,
271,
7291,
1048,
372,
29889,
3872,
29915,
29873,
24738,
2805,
373,
372,
29892,
372,
29915,
29879,
975,
364,
630,
29889,
13,
13,
13555,
5183,
278,
6139,
322,
4485,
323,
29915,
29879,
3440,
29892,
306,
4658,
727,
338,
901,
15839,
5235,
304,
278,
376,
7496,
29908,
15905,
29889,
306,
4658,
393,
363,
967,
13515,
29892,
727,
471,
694,
289,
14339,
297,
278,
17526,
12566,
292,
278,
1623,
695,
19977,
29370,
6824,
306,
4658,
393,
410,
471,
564,
700,
5794,
7180,
701,
297,
278,
2522,
653,
1815,
653,
11155,
322,
1556,
5517,
769,
278,
12534,
297,
278,
17526,
607,
338,
1603,
727,
29889,
28518,
592,
565,
306,
626,
2743,
3045,
13,
13,
29902,
1818,
20000,
29892,
363,
2253,
470,
363,
15029,
29892,
297,
29871,
29896,
29929,
29929,
29953,
29892,
411,
4815,
10751,
29892,
306,
8611,
278,
15772,
1372,
310,
278,
298,
9776,
1339,
388,
313,
3149,
310,
16226,
29897,
363,
278,
376,
22585,
29908,
15905,
29889,
450,
15756,
3129,
471,
697,
310,
590,
25448,
12049,
304,
437,
769,
322,
310,
3236,
306,
7091,
306,
471,
2599,
263,
7881,
2669,
3045,
1724,
263,
982,
901,
22314,
408,
1760,
372,
723,
367,
304,
27399,
278,
298,
9776,
1339,
388,
322,
437,
278,
376,
7496,
29908,
322,
376,
22585,
29908,
15905,
267,
763,
435,
29933,
1258,
363,
967,
383,
4519,
21004,
306,
29915,
345,
2360,
2309,
372,
393,
982,
29889,
313,
7058,
2175,
29892,
2030,
7828,
29899,
29928,
4401,
289,
14339,
1258,
2041,
714,
22739,
8333,
368,
5948,
322,
278,
916,
471,
451,
2086,
1568,
901,
5189,
6824,
29897,
13,
13,
12881,
635,
2355,
373,
445,
1156,
7291,
1048,
372,
363,
29871,
29906,
2440,
29889,
5806,
372,
338,
263,
2217,
885,
653,
304,
10784,
29890,
2038,
278,
330,
799,
29892,
727,
526,
694,
5680,
2400,
278,
7618,
29916,
29892,
577,
306,
1016,
29915,
29873,
2289,
1348,
372,
338,
385,
390,
5782,
29889,
887,
526,
901,
5517,
304,
679,
21682,
373,
278,
937,
15905,
297,
590,
9426,
29889,
450,
7618,
29916,
338,
1048,
478,
29941,
29892,
411,
8740,
29879,
472,
278,
2246,
448,
451,
408,
4319,
408,
306,
3806,
29889,
12065,
29871,
29906,
396,
29906,
5500,
284,
1862,
297,
322,
748,
363,
372,
29991,
13,
13,
3112,
2444,
393,
278,
23791,
943,
373,
278,
298,
9776,
2243,
370,
313,
3332,
310,
15905,
1023,
29897,
526,
263,
1298,
310,
16226,
29889,
1670,
338,
694,
6924,
1339,
388,
5331,
479,
727,
322,
372,
338,
925,
1304,
304,
1207,
278,
7618,
29916,
6775,
29889,
306,
1348,
13620,
279,
750,
278,
1855,
18551,
363,
263,
3889,
408,
1760,
29892,
5331,
479,
304,
5331,
479,
313,
17743,
457,
15905,
29871,
29906,
322,
29871,
29941,
467,
13,
13,
29956,
340,
29892,
825,
385,
29811,
1821,
10784,
29890,
29991,
5282,
18639,
390,
363,
278,
5970,
4203,
310,
278,
29871,
29896,
303,
15905,
29889,
7197,
302,
8842,
470,
263,
4802,
390,
29925,
1250,
701,
278,
12534,
28138,
29889,
13,
13,
2776,
278,
29871,
29941,
15905,
267,
29892,
349,
29906,
7091,
278,
2898,
342,
322,
282,
398,
1631,
342,
29892,
1584,
411,
263,
2246,
696,
412,
1339,
388,
29991,
910,
15905,
338,
4799,
29891,
322,
5566,
11407,
322,
278,
2769,
445,
10784,
29890,
4947,
29871,
29946,
2012,
310,
29871,
29941,
10819,
29889,
13,
13,
797,
15017,
749,
411,
1556,
916,
6589,
29892,
349,
29941,
6140,
263,
260,
820,
19119,
15905,
408,
366,
9063,
322,
679,
596,
6900,
29871,
29946,
29899,
29945,
29915,
2038,
596,
18523,
495,
330,
799,
1434,
366,
508,
2058,
1790,
1407,
1781,
13328,
10785,
264,
2159,
29889,
2398,
29892,
21138,
304,
1556,
916,
6589,
29892,
1438,
16229,
6140,
6775,
1135,
13310,
292,
1623,
278,
17526,
373,
349,
29906,
29889,
7198,
306,
2355,
9885,
29891,
411,
278,
3661,
664,
470,
1476,
263,
7035,
4808,
29889,
306,
270,
348,
1217,
29892,
541,
445,
338,
5517,
278,
937,
5782,
306,
29915,
345,
3926,
1063,
373,
297,
382,
430,
29877,
393,
7091,
3755,
263,
2586,
6775,
1135,
278,
1136,
8841,
19468,
29889,
13,
13,
29902,
29915,
345,
6091,
393,
727,
338,
263,
10784,
29890,
297,
3879,
29878,
2285,
29892,
3189,
29892,
393,
471,
1304,
304,
7945,
363,
263,
10784,
29890,
701,
297,
382,
430,
29877,
29889,
450,
10784,
29890,
338,
2000,
24929,
15756,
3129,
470,
565,
366,
864,
29892,
14846,
15756,
3129,
29889,
306,
4997,
565,
445,
338,
278,
10784,
29890,
393,
471,
24867,
1048,
29973,
13,
13,
797,
8908,
304,
278,
2038,
1400,
29892,
4874,
445,
10784,
29890,
5771,
5948,
297,
697,
15905,
29892,
372,
29915,
29879,
1048,
29871,
29945,
29900,
29885,
297,
3001,
313,
29886,
29896,
29899,
29941,
29892,
306,
29915,
29885,
451,
1854,
1048,
4417,
278,
10144,
29891,
1859,
317,
8205,
467,
2973,
1472,
2243,
886,
29892,
16650,
293,
1065,
17718,
29892,
322,
263,
19309,
1460,
696,
412,
29892,
306,
3282,
29915,
29873,
4459,
727,
471,
738,
696,
9795,
1431,
472,
278,
7618,
29916,
29889,
13,
13,
17351,
29892,
727,
29915,
29879,
694,
2769,
304,
447,
352,
29871,
29906,
7684,
5500,
284,
1862,
701,
278,
5782,
29889,
960,
366,
281,
9713,
3765,
1623,
373,
330,
799,
1434,
278,
7618,
29916,
29892,
727,
29915,
29879,
263,
2107,
3708,
552,
5500,
284,
327,
297,
278,
2175,
2625,
310,
278,
1090,
19914,
2532,
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
] |
Nature in the City – http://natureinthecity.org/
A San Francisco organization that promotes awareness about the rich, local biodiversity, connects people with Nature where they live and restores wild habitats. | [
1,
17677,
297,
278,
4412,
785,
1732,
597,
29876,
1535,
524,
354,
12690,
29889,
990,
29914,
13,
29909,
3087,
8970,
13013,
393,
2504,
4769,
3773,
8326,
404,
1048,
278,
8261,
29892,
1887,
289,
2660,
24974,
29892,
4511,
29879,
2305,
411,
17677,
988,
896,
5735,
322,
1791,
2361,
8775,
4760,
1446,
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
] |
Description
Join the IP Pathways team to discover how Western Digital’s IntelliFlash solutions can help you accelerate business-critical applications, simplify storage management, and reduce costs by consolidating a variety of workloads into a single system architecture. You’ll learn:
Intro to Western Digital Data Center Systems and how Western Digital is changing the storage market
The Business Value of Vertical Innovation/Integration
Western Digital’s IntelliFlash Memory-first architecture across all platforms
How to Redefine Application Performance with IntelliFlash N-Series
Instruction, shooting and dinner will be provided. Space is limited so register today! | [
1,
12953,
13,
13,
17242,
278,
5641,
10802,
1994,
3815,
304,
6523,
920,
10504,
15918,
30010,
29879,
3159,
5481,
8754,
1161,
6851,
508,
1371,
366,
15592,
403,
5381,
29899,
9695,
936,
8324,
29892,
21092,
8635,
10643,
29892,
322,
10032,
21544,
491,
1136,
17211,
1218,
263,
12875,
310,
664,
18132,
964,
263,
2323,
1788,
11258,
29889,
887,
30010,
645,
5110,
29901,
13,
13,
2928,
307,
304,
10504,
15918,
3630,
7817,
23985,
322,
920,
10504,
15918,
338,
6480,
278,
8635,
9999,
13,
13,
1576,
15197,
7865,
310,
11198,
936,
512,
13715,
362,
29914,
23573,
362,
13,
13,
16128,
824,
15918,
30010,
29879,
3159,
5481,
8754,
1161,
18914,
29899,
4102,
11258,
4822,
599,
21796,
13,
13,
5328,
304,
4367,
1389,
457,
8427,
23768,
411,
3159,
5481,
8754,
1161,
405,
29899,
19204,
13,
13,
3379,
4080,
29892,
27904,
322,
17803,
674,
367,
4944,
29889,
14121,
338,
9078,
577,
6036,
9826,
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
] |
Dating penpal ru Free online video chat uncensored
And you, after meeting several Russian ladies, will want to have a Russian girlfriend or spouse.Another aim of our site is to ensure your safety and comfort.Since the hookup culture rules the world, there are so little people who can actually stick to their commitment, from a starting point, “till death do us part.” There is monogamy, we have polygamy…wait, so we have something in between?
It turns out that foreigners want to find Russian mail order brides, and Russian women would like to meet decent men from other countries. However, isn’t it better to know that you’re traveling to a particular person you met online rather than go hoping to bump into your fate there? Women place their profiles on the site, you register here too and start contacting them and chatting with them.
In the contemporary context, to “buy bride” online means to get a woman interested in you and melt her heart with your charisma, communication skills and personal traits.
There are many dating services that promise you to help find a mail order bride from Eastern Europe.
You should choose the best and the most reliable one.
Our security team carefully checks all profiles and in case of any suspicion suspends or blocks shady accounts. Upon registration, you get access to women gallery.
You don’t have to have any doubts as to the availability of women you see on the site because all of them are single and in search of a romantic partner. You can watch their profiles and initiate communication with the ones that catch your eye.
An important note for you: ‘Russian women’ is a general term for girls from Ukraine, Russia, and Belarus.
Only Belarusian girls have a more or less conformed type of appearance – they are mostly blue-eyed and fair-haired. | [
1,
360,
1218,
6584,
7830,
5796,
12362,
7395,
4863,
13563,
443,
29883,
575,
4395,
13,
13,
2855,
366,
29892,
1156,
11781,
3196,
10637,
22281,
29892,
674,
864,
304,
505,
263,
10637,
7826,
18326,
470,
805,
1709,
29889,
2744,
1228,
12242,
310,
1749,
3268,
338,
304,
9801,
596,
15332,
322,
13016,
29889,
23036,
278,
12422,
786,
9257,
6865,
278,
3186,
29892,
727,
526,
577,
2217,
2305,
1058,
508,
2869,
12070,
304,
1009,
9063,
358,
29892,
515,
263,
6257,
1298,
29892,
1346,
29873,
453,
4892,
437,
502,
760,
3178,
1670,
338,
1601,
468,
25934,
29892,
591,
505,
1248,
4790,
25934,
30098,
10685,
29892,
577,
591,
505,
1554,
297,
1546,
29973,
13,
13,
3112,
12169,
714,
393,
9117,
414,
864,
304,
1284,
10637,
10524,
1797,
1506,
2247,
29892,
322,
10637,
5866,
723,
763,
304,
5870,
27189,
1757,
515,
916,
10916,
29889,
2398,
29892,
3508,
30010,
29873,
372,
2253,
304,
1073,
393,
366,
30010,
276,
9850,
292,
304,
263,
3153,
2022,
366,
1539,
7395,
3265,
1135,
748,
17231,
304,
289,
3427,
964,
596,
23779,
727,
29973,
10152,
2058,
1009,
28723,
373,
278,
3268,
29892,
366,
6036,
1244,
2086,
322,
1369,
6958,
292,
963,
322,
521,
23980,
411,
963,
29889,
13,
13,
797,
278,
24952,
3030,
29892,
304,
1346,
2423,
29891,
289,
2426,
30024,
7395,
2794,
304,
679,
263,
6114,
8852,
297,
366,
322,
286,
2152,
902,
5192,
411,
596,
1373,
275,
655,
29892,
12084,
25078,
322,
7333,
1020,
1169,
29889,
13,
13,
8439,
526,
1784,
270,
1218,
5786,
393,
11640,
366,
304,
1371,
1284,
263,
10524,
1797,
289,
2426,
515,
16162,
4092,
29889,
13,
13,
3492,
881,
6755,
278,
1900,
322,
278,
1556,
23279,
697,
29889,
13,
13,
29949,
332,
6993,
3815,
16112,
12747,
599,
28723,
322,
297,
1206,
310,
738,
8872,
15353,
8872,
1975,
470,
10930,
528,
3714,
15303,
29889,
19956,
22583,
29892,
366,
679,
2130,
304,
5866,
23363,
29889,
13,
13,
3492,
1016,
30010,
29873,
505,
304,
505,
738,
27455,
1372,
408,
304,
278,
20847,
3097,
310,
5866,
366,
1074,
373,
278,
3268,
1363,
599,
310,
963,
526,
2323,
322,
297,
2740,
310,
263,
6017,
7716,
18096,
29889,
887,
508,
6505,
1009,
28723,
322,
14511,
403,
12084,
411,
278,
6743,
393,
4380,
596,
10977,
29889,
13,
13,
2744,
4100,
4443,
363,
366,
29901,
5129,
23002,
713,
5866,
30010,
338,
263,
2498,
1840,
363,
14000,
515,
23961,
29892,
12710,
29892,
322,
3741,
26465,
29889,
13,
13,
11730,
3741,
26465,
713,
14000,
505,
263,
901,
470,
3109,
14670,
287,
1134,
310,
10097,
785,
896,
526,
11149,
7254,
29899,
1032,
287,
322,
6534,
29899,
2350,
2859,
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
] |
Announcing clr-cloud-init
We've just released a new cloud-init implementation written specifically for Clear Linux* OS.
You may already be thinking: "Why another implementation?"
Two existing projects already implement a standard cloud instance initialization process. There's a Python-based implementation that might be considered the "reference standard." And there's a go-based implementation created by the CoreOS* project. Both these projects are excellent implementations, yet we chose not to use them in our project.
As all software engineers do, we aim to do as much as we can in as little time and effort as we can. This is a bit of a paradox, so let me elaborate. We want to provide as much functionality as we can, but we don’t want to do useless work, so if we determine that some functionality is unlikely to be used, we're not likely to include it. We also want our OS to start as fast as it can, but we don't want to cut out functionality that everyone needs. These are natural conflicts that exist in the realm of OS resource management.
One of the largest resources that the OS needs is storage. We ideally want to provide as much functionality as possible, but this increases the size of our cloud image. And that increased storage has a cost. While ideally Copy On Write algorithms should make spinning up cloud instances extremely cheap, these methods aren't used in many cloud deployments, and most of the time cloud instances are still copied verbatim.
Ultimately, we strive to make the cloud images as minimal as we can. Once a cloud instance is provisioned, we have an excellent and efficient method available to expand the set of available software, in the form of swupd, which allows installation of entire functional software bundles with minimal download bandwidth consumption. This resource consumption is optional, however. So making the initial resource consumption lower is a win for every cloud instance.
In several other projects we've contributed to, Intel has striven to "race to idle." This is an excellent optimization strategy that pushes us to reduce the cost of doing basic things and eliminate things we don't need to do. Especially at boot time, this matters a lot.
Our cloud images should therefore really be as minimal as possible, feature-wise, and as small as possible. And by that we mean that if you wish to deploy a nginx, or mariadb, or postfix cloud instance and don't need Python* on your cloud instance, it shouldn't be there. We can't do that if the absolute minimal cloud image already requires a significant Python installation just to initialize that cloud instance for further use. And our base image currently doesn't depend on go-based code, either.
We have a strong preference for writing plumbing code like this in C, but not very often do we find that we should really replace the existing implementations that are already out there with a new version. In this case we weighed all the pros and cons carefully and decided that the cost of maintaining a limited feature set implementation in C was worth doing, considering all the factors. The project itself did not take that long to implement after the decision, about two person-months or so, although that's a somewhat rough guesstimate.
Enough about why! Here are the technical details on the project:
clr-cloud-init is implemented in C, based on glib, json-glib, YAML* and a bit of cURL*. It fetches OpenStack metadata and cloud-config user data, and initializes your cloud instance for you. This is akin to "customization," the part that makes the cloud instance actually useful to the end user. These configuration "blobs" are provided to your cloud instance through (usually) an HTTP service. The cloud-init binary will run at the first boot of your cloud instance, fetching these data blobs and then processing them.
These blobs provide useful data for OpenStack orchestration components and a way for a user to make the cloud instance ready for its intended use. This could be done, for example, by updating all software and installing new software. Or this could be accomplished by starting some system services, configuring user accounts and configuration files, provided access credentials, etc.
Implemented in C, the binary runs extremely fast. Ignoring any network latencies, cloud-init takes about 30ms to complete initialization of an instance in a typical test case scenario. Its storage footprint is well under 1MB ignoring dynamic libraries.
clr-cloud-init provides a modular implementation to support more cloud-config functionality. Currently supported are user and groups creation, adding SSH keys, manipulating system services, writing config files, performing package updates and installing new package bundles. We are planning to add a few more pieces of basic functionality in the coming weeks. | [
1,
8081,
1309,
3277,
1067,
29878,
29899,
9274,
29899,
2344,
13,
13,
4806,
29915,
345,
925,
5492,
263,
716,
9570,
29899,
2344,
5314,
3971,
10816,
363,
17732,
8074,
29930,
6570,
29889,
13,
13,
3492,
1122,
2307,
367,
7291,
29901,
376,
11008,
1790,
5314,
3026,
13,
13,
13985,
5923,
9279,
2307,
2334,
263,
3918,
9570,
2777,
17865,
1889,
29889,
1670,
29915,
29879,
263,
5132,
29899,
6707,
5314,
393,
1795,
367,
5545,
278,
376,
5679,
3918,
1213,
1126,
727,
29915,
29879,
263,
748,
29899,
6707,
5314,
2825,
491,
278,
10239,
3267,
29930,
2060,
29889,
9134,
1438,
9279,
526,
15129,
20240,
29892,
3447,
591,
12784,
451,
304,
671,
963,
297,
1749,
2060,
29889,
13,
13,
2887,
599,
7047,
6012,
414,
437,
29892,
591,
12242,
304,
437,
408,
1568,
408,
591,
508,
297,
408,
2217,
931,
322,
7225,
408,
591,
508,
29889,
910,
338,
263,
2586,
310,
263,
610,
912,
29916,
29892,
577,
1235,
592,
19430,
29889,
1334,
864,
304,
3867,
408,
1568,
9863,
408,
591,
508,
29892,
541,
591,
1016,
30010,
29873,
864,
304,
437,
19315,
664,
29892,
577,
565,
591,
8161,
393,
777,
9863,
338,
25057,
304,
367,
1304,
29892,
591,
29915,
276,
451,
5517,
304,
3160,
372,
29889,
1334,
884,
864,
1749,
6570,
304,
1369,
408,
5172,
408,
372,
508,
29892,
541,
591,
1016,
29915,
29873,
864,
304,
5700,
714,
9863,
393,
14332,
4225,
29889,
4525,
526,
5613,
28792,
393,
1863,
297,
278,
1855,
29885,
310,
6570,
6503,
10643,
29889,
13,
13,
6716,
310,
278,
10150,
7788,
393,
278,
6570,
4225,
338,
8635,
29889,
1334,
1957,
635,
864,
304,
3867,
408,
1568,
9863,
408,
1950,
29892,
541,
445,
16415,
278,
2159,
310,
1749,
9570,
1967,
29889,
1126,
393,
11664,
8635,
756,
263,
3438,
29889,
5806,
1957,
635,
14187,
1551,
14350,
14009,
881,
1207,
10917,
1076,
701,
9570,
8871,
14154,
28773,
29892,
1438,
3519,
9455,
29915,
29873,
1304,
297,
1784,
9570,
7246,
1860,
29892,
322,
1556,
310,
278,
931,
9570,
8871,
526,
1603,
13746,
9750,
271,
326,
29889,
13,
13,
29965,
1896,
15084,
29892,
591,
380,
4401,
304,
1207,
278,
9570,
4558,
408,
13114,
408,
591,
508,
29889,
9038,
263,
9570,
2777,
338,
25161,
287,
29892,
591,
505,
385,
15129,
322,
8543,
1158,
3625,
304,
7985,
278,
731,
310,
3625,
7047,
29892,
297,
278,
883,
310,
2381,
786,
29881,
29892,
607,
6511,
11161,
310,
4152,
13303,
7047,
22813,
793,
411,
13114,
5142,
3719,
2103,
27430,
29889,
910,
6503,
27430,
338,
13136,
29892,
3138,
29889,
1105,
3907,
278,
2847,
6503,
27430,
5224,
338,
263,
5401,
363,
1432,
9570,
2777,
29889,
13,
13,
797,
3196,
916,
9279,
591,
29915,
345,
26869,
304,
29892,
18555,
756,
10076,
854,
304,
376,
25525,
304,
28132,
1213,
910,
338,
385,
15129,
13883,
13705,
393,
5503,
267,
502,
304,
10032,
278,
3438,
310,
2599,
6996,
2712,
322,
27399,
2712,
591,
1016,
29915,
29873,
817,
304,
437,
29889,
3423,
25009,
472,
6579,
931,
29892,
445,
13750,
263,
3287,
29889,
13,
13,
29949,
332,
9570,
4558,
881,
5480,
2289,
367,
408,
13114,
408,
1950,
29892,
4682,
29899,
3538,
29892,
322,
408,
2319,
408,
1950,
29889,
1126,
491,
393,
591,
2099,
393,
565,
366,
6398,
304,
7246,
263,
19376,
29892,
470,
15182,
328,
29890,
29892,
470,
1400,
5878,
9570,
2777,
322,
1016,
29915,
29873,
817,
5132,
29930,
373,
596,
9570,
2777,
29892,
372,
9273,
29915,
29873,
367,
727,
29889,
1334,
508,
29915,
29873,
437,
393,
565,
278,
8380,
13114,
9570,
1967,
2307,
6858,
263,
7282,
5132,
11161,
925,
304,
11905,
393,
9570,
2777,
363,
4340,
671,
29889,
1126,
1749,
2967,
1967,
5279,
1838,
29915,
29873,
8839,
373,
748,
29899,
6707,
775,
29892,
2845,
29889,
13,
13,
4806,
505,
263,
4549,
24583,
363,
5007,
715,
3774,
292,
775,
763,
445,
297,
315,
29892,
541,
451,
1407,
4049,
437,
591,
1284,
393,
591,
881,
2289,
5191,
278,
5923,
20240,
393,
526,
2307,
714,
727,
411,
263,
716,
1873,
29889,
512,
445,
1206,
591,
591,
25398,
599,
278,
10791,
322,
1136,
16112,
322,
8459,
393,
278,
3438,
310,
7344,
292,
263,
9078,
4682,
731,
5314,
297,
315,
471,
7088,
2599,
29892,
13858,
599,
278,
13879,
29889,
450,
2060,
3528,
1258,
451,
2125,
393,
1472,
304,
2334,
1156,
278,
10608,
29892,
1048,
1023,
2022,
29899,
10874,
29879,
470,
577,
29892,
5998,
393,
29915,
29879,
263,
10579,
12164,
330,
1041,
303,
6490,
29889,
13,
13,
2369,
820,
1048,
2020,
29991,
2266,
526,
278,
16905,
4902,
373,
278,
2060,
29901,
13,
13,
695,
29878,
29899,
9274,
29899,
2344,
338,
8762,
297,
315,
29892,
2729,
373,
330,
1982,
29892,
4390,
29899,
29887,
1982,
29892,
612,
23956,
29930,
322,
263,
2586,
310,
274,
4219,
10521,
739,
6699,
267,
4673,
7264,
15562,
322,
9570,
29899,
2917,
1404,
848,
29892,
322,
2847,
7093,
596,
9570,
2777,
363,
366,
29889,
910,
338,
263,
9089,
304,
376,
6341,
2133,
1699,
278,
760,
393,
3732,
278,
9570,
2777,
2869,
5407,
304,
278,
1095,
1404,
29889,
4525,
5285,
376,
10054,
29879,
29908,
526,
4944,
304,
596,
9570,
2777,
1549,
313,
375,
1474,
29897,
385,
7331,
2669,
29889,
450,
9570,
29899,
2344,
7581,
674,
1065,
472,
278,
937,
6579,
310,
596,
9570,
2777,
29892,
6699,
292,
1438,
848,
23755,
29879,
322,
769,
9068,
963,
29889,
13,
13,
1349,
968,
23755,
29879,
3867,
5407,
848,
363,
4673,
7264,
22624,
16444,
362,
7117,
322,
263,
982,
363,
263,
1404,
304,
1207,
278,
9570,
2777,
7960,
363,
967,
9146,
671,
29889,
910,
1033,
367,
2309,
29892,
363,
1342,
29892,
491,
13271,
599,
7047,
322,
15476,
716,
7047,
29889,
1394,
445,
1033,
367,
24799,
491,
6257,
777,
1788,
5786,
29892,
2295,
3864,
1404,
15303,
322,
5285,
2066,
29892,
4944,
2130,
16140,
29892,
2992,
29889,
13,
13,
1888,
2037,
287,
297,
315,
29892,
278,
7581,
6057,
14154,
5172,
29889,
18076,
8253,
738,
3564,
23316,
2478,
29892,
9570,
29899,
2344,
4893,
1048,
29871,
29941,
29900,
1516,
304,
4866,
17865,
310,
385,
2777,
297,
263,
15662,
1243,
1206,
10483,
29889,
8011,
8635,
3661,
2158,
338,
1532,
1090,
29871,
29896,
9486,
5330,
8253,
7343,
9562,
29889,
13,
13,
695,
29878,
29899,
9274,
29899,
2344,
8128,
263,
878,
1070,
5314,
304,
2304,
901,
9570,
29899,
2917,
9863,
29889,
15447,
6969,
526,
1404,
322,
6471,
11265,
29892,
4417,
22343,
6611,
29892,
11525,
18099,
1788,
5786,
29892,
5007,
2295,
2066,
29892,
15859,
3577,
11217,
322,
15476,
716,
3577,
22813,
793,
29889,
1334,
526,
18987,
304,
788,
263,
2846,
901,
12785,
310,
6996,
9863,
297,
278,
6421,
11405,
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
] |
John the Ripper updated to v1.7.5
John the Ripper is a fast password cracker, currently available for many flavors of Unix (11 are officially supported, not counting different architectures), Windows, DOS, BeOS, and OpenVMS. Its primary purpose is to detect weak Unix passwords. Besides several crypt(3) password hash types most commonly found on various Unix flavors, supported out of the box are Kerberos AFS and Windows NT/2000/XP/2003 LM hashes, plus several more with contributed patches.
Version 1.7.5
Support for the use of "—format" along with "—show" or "—make-charset" has been added.
The choice of .rec and .log filenames for custom session names has been made more intuitive.
A new numeric variable has been added to the word mangling rules engine: "p" for position of the character last found with the "/" or "%" commands.
Support for "\r" (character lists with repeats) and "\p0" (reference to the immediately preceding character list/range) has been added to the word mangling rules preprocessor.
The undefined and undocumented behavior of some subtle word mangling rules preprocessor constructs has been changed to arguably be more sensible.
Some bugs were fixed, most notably JtR crashing on no password hashes loaded (bug introduced in 1.7.4.2). | [
1,
2259,
278,
21710,
2496,
4784,
304,
325,
29896,
29889,
29955,
29889,
29945,
13,
13,
11639,
278,
21710,
2496,
338,
263,
5172,
4800,
12220,
4937,
29892,
5279,
3625,
363,
1784,
21054,
943,
310,
26663,
313,
29896,
29896,
526,
22444,
6969,
29892,
451,
21248,
1422,
6956,
1973,
511,
3852,
29892,
360,
3267,
29892,
1522,
3267,
29892,
322,
4673,
29963,
4345,
29889,
8011,
7601,
6437,
338,
304,
6459,
8062,
26663,
27630,
29889,
19065,
3196,
24941,
29898,
29941,
29897,
4800,
6608,
4072,
1556,
15574,
1476,
373,
5164,
26663,
21054,
943,
29892,
6969,
714,
310,
278,
3800,
526,
12693,
495,
359,
319,
9998,
322,
3852,
405,
29911,
29914,
29906,
29900,
29900,
29900,
29914,
29990,
29925,
29914,
29906,
29900,
29900,
29941,
365,
29924,
6608,
267,
29892,
2298,
3196,
901,
411,
26869,
13261,
267,
29889,
13,
13,
6594,
29871,
29896,
29889,
29955,
29889,
29945,
13,
13,
14039,
363,
278,
671,
310,
376,
30003,
4830,
29908,
3412,
411,
376,
30003,
4294,
29908,
470,
376,
30003,
5675,
29899,
3090,
842,
29908,
756,
1063,
2715,
29889,
13,
13,
1576,
7348,
310,
869,
3757,
322,
869,
1188,
977,
264,
1280,
363,
2888,
4867,
2983,
756,
1063,
1754,
901,
27951,
573,
29889,
13,
13,
29909,
716,
16985,
2286,
756,
1063,
2715,
304,
278,
1734,
25016,
1847,
6865,
6012,
29901,
376,
29886,
29908,
363,
2602,
310,
278,
2931,
1833,
1476,
411,
278,
5591,
29908,
470,
11860,
29908,
8260,
29889,
13,
13,
14039,
363,
6634,
29878,
29908,
313,
18609,
8857,
411,
5565,
1446,
29897,
322,
6634,
29886,
29900,
29908,
313,
5679,
304,
278,
7389,
26328,
2931,
1051,
29914,
3881,
29897,
756,
1063,
2715,
304,
278,
1734,
25016,
1847,
6865,
758,
26482,
29889,
13,
13,
1576,
7580,
322,
563,
4463,
287,
6030,
310,
777,
12059,
280,
1734,
25016,
1847,
6865,
758,
26482,
3386,
29879,
756,
1063,
3939,
304,
1852,
29884,
2197,
367,
901,
25182,
29889,
13,
13,
9526,
24557,
892,
4343,
29892,
1556,
451,
2197,
435,
29873,
29934,
8095,
292,
373,
694,
4800,
6608,
267,
7500,
313,
6152,
9129,
297,
29871,
29896,
29889,
29955,
29889,
29946,
29889,
29906,
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
] |
Hang on for a minute...we're trying to find some more stories you might like.
Email This Story
Send email to this addressEnter Your NameAdd a comment hereVerification
On March 23, 2010, then-President Barack Obama signed The Patient Protection and Affordable Care Act (ACA,) also nicknamed Obamacare, into law. This healthcare plan provided 180 million American citizens the necessary coverage and health benefits that they deserved and needed, which ended up saving many people struggling through pre-existing conditions. Jan. 20, the 45th President of The United States was signed into office.
From the very beginning of his campaign, Trump made most if not all of his main concerns quite clear, at every rally he spoke at. This isn’t news to anyone as it became quite normal- but not the good type of normal. This “normal” was that feeling you’re used to getting when you go into the same gas station every morning to use their bathroom, and then to buy a eighty-seven cent donut and a small cup of “coffee.” No one can tell what’s worse, but it still keeps happening.
One of these infamous promises that was made, as well as attempted (and failed) was the repeal of Obamacare. Not only repealed, but replaced with something even better.
Just what were those “somethings,” one may ask?
Before revealing what you most definitely didn’t already know and cry about before, it should be mentioned that Republicans had already had their eight years to draft up something logical as a replacement to the Affordable Care Act.
From the contents of the first attempt, titled “Skinny Repeal” it’s safe to say Skinny Cow ice cream was the main focus for the majority of Republicans (we love you Sen. McCain) during the last two terms the left side of America now has to treasure.
While all Democrats expectedly voted “no” for all three sections of replacing and repealing Obamacare, Republicans more or less saw this as an opportunity to get what they’ve been dreaming of for eight years, which is apparently a healthcare repeal that goes against America’s true culture; the Big Mac.
The real point in all of this ranting is simple; why won’t they just let it go?
Since Trump and his cabinet fueled this fire, all we’ve been seeing are American citizens pleading to just keep things as is. What have we seen from everyone else?
The average red baseball cap wearer is slowly fading from social media as he/she has now deactivated their accounts from embarrassment. Though as far as we’re concerned, it’s way too risky to let people keep their health insurance that, for many, has more or less kept them breathing.
U.S.A!
Just recently Trump set some of his own ground rules. To be specific, he doesn’t want the insurance companies protected by Obamacare receiving any money, which resulted in a halt to those payments made to insurers. Along with this decision, POTUS came up with another gift all of us have been dying to get.
Yay?
It’s a new bipartisan health bill! What does it do?…sure sounds like a lot, right? Nope!
With this healthcare attempt, Trump has made a very serious claim that insurance companies have been profiting off of Obamacare. These claims have caused confusion into just how knowledgeable he (Trump) claims to be in finance. After publically stating these companies have gained “billions” from Obamacare profiting, it was easy to shoot this falsehood down, as we have actually lost billions. This truly is the one fact check that should have saved the day, but…it’ll take some time.
For now, we can only contemplate just how confusing it is to see the owner of an unknown empire of properties, hotels, and whatever else the leader of the country has been able to offer us so far…and confuse where the billions of dollars actually went and who was responsible for getting it there.
It’s also sad…that now we don’t have someone who cares more about human beings than some wads of cash.
Northeast Valley News intends for the comments area to be used to foster thought-provoking discussion. Comments are expected to adhere to our standards. As such, we do not permit the use of profanity, personal or racial attacks, sexual harassment, or the use of language that might be interpreted as libelous. Comments are reviewed and must be approved by a moderator to ensure they meet these standards. We do not allow anonymous comments, and require a valid email address, which will not be displayed but will be used to confirm your comments. The 'Website' field is optional. | [
1,
379,
574,
373,
363,
263,
11015,
856,
705,
29915,
276,
1811,
304,
1284,
777,
901,
15874,
366,
1795,
763,
29889,
13,
13,
9823,
910,
13740,
13,
13,
12600,
4876,
304,
445,
3211,
10399,
3575,
4408,
2528,
263,
3440,
1244,
6565,
2450,
13,
13,
2951,
4779,
29871,
29906,
29941,
29892,
29871,
29906,
29900,
29896,
29900,
29892,
769,
29899,
13504,
1693,
2261,
547,
4250,
3304,
8794,
450,
4121,
993,
14409,
428,
322,
13737,
536,
519,
10057,
3185,
313,
2477,
29909,
29892,
29897,
884,
25985,
17514,
4250,
314,
562,
598,
29892,
964,
4307,
29889,
910,
9045,
18020,
3814,
4944,
29871,
29896,
29947,
29900,
7284,
3082,
18363,
278,
5181,
23746,
322,
9045,
23633,
393,
896,
553,
9841,
322,
4312,
29892,
607,
9698,
701,
14238,
1784,
2305,
20042,
1549,
758,
29899,
735,
15423,
5855,
29889,
2627,
29889,
29871,
29906,
29900,
29892,
278,
29871,
29946,
29945,
386,
7178,
310,
450,
3303,
3900,
471,
8794,
964,
8034,
29889,
13,
13,
4591,
278,
1407,
6763,
310,
670,
11531,
29892,
27504,
1754,
1556,
565,
451,
599,
310,
670,
1667,
21838,
3755,
2821,
29892,
472,
1432,
364,
635,
540,
12707,
472,
29889,
910,
3508,
30010,
29873,
9763,
304,
5019,
408,
372,
3897,
3755,
4226,
29899,
541,
451,
278,
1781,
1134,
310,
4226,
29889,
910,
1346,
8945,
30024,
471,
393,
11223,
366,
30010,
276,
1304,
304,
2805,
746,
366,
748,
964,
278,
1021,
10489,
5073,
1432,
7250,
304,
671,
1009,
27683,
8345,
29892,
322,
769,
304,
15649,
263,
9475,
29891,
29899,
344,
854,
1644,
1016,
329,
322,
263,
2319,
18002,
310,
1346,
1111,
600,
3905,
3178,
1939,
697,
508,
2649,
825,
30010,
29879,
15029,
29892,
541,
372,
1603,
14874,
10464,
29889,
13,
13,
6716,
310,
1438,
3041,
314,
681,
27584,
393,
471,
1754,
29892,
408,
1532,
408,
16388,
313,
392,
5229,
29897,
471,
278,
5565,
284,
310,
4250,
314,
562,
598,
29889,
2216,
871,
5565,
7943,
29892,
541,
8611,
411,
1554,
1584,
2253,
29889,
13,
13,
14084,
825,
892,
1906,
1346,
22708,
621,
886,
3995,
697,
1122,
2244,
29973,
13,
13,
18743,
10320,
12818,
825,
366,
1556,
11630,
3282,
30010,
29873,
2307,
1073,
322,
10901,
1048,
1434,
29892,
372,
881,
367,
5276,
393,
8063,
550,
750,
2307,
750,
1009,
9475,
2440,
304,
18195,
701,
1554,
16667,
408,
263,
16920,
304,
278,
13737,
536,
519,
10057,
3185,
29889,
13,
13,
4591,
278,
8118,
310,
278,
937,
4218,
29892,
25278,
1346,
29903,
9089,
1460,
830,
412,
284,
30024,
372,
30010,
29879,
9109,
304,
1827,
4971,
262,
1460,
21638,
14890,
907,
314,
471,
278,
1667,
8569,
363,
278,
13638,
310,
8063,
550,
313,
705,
5360,
366,
5811,
29889,
15612,
475,
29897,
2645,
278,
1833,
1023,
4958,
278,
2175,
2625,
310,
6813,
1286,
756,
304,
2578,
3745,
29889,
13,
13,
8809,
488,
599,
14189,
1446,
3806,
368,
24854,
1346,
1217,
30024,
363,
599,
2211,
13926,
310,
15270,
322,
5565,
12818,
4250,
314,
562,
598,
29892,
8063,
550,
901,
470,
3109,
4446,
445,
408,
385,
15130,
304,
679,
825,
896,
30010,
345,
1063,
12561,
292,
310,
363,
9475,
2440,
29892,
607,
338,
13229,
263,
9045,
18020,
5565,
284,
393,
5771,
2750,
6813,
30010,
29879,
1565,
9257,
29936,
278,
7997,
4326,
29889,
13,
13,
1576,
1855,
1298,
297,
599,
310,
445,
364,
424,
292,
338,
2560,
29936,
2020,
2113,
30010,
29873,
896,
925,
1235,
372,
748,
29973,
13,
13,
23036,
27504,
322,
670,
28966,
3576,
839,
445,
3974,
29892,
599,
591,
30010,
345,
1063,
8790,
526,
3082,
18363,
5644,
9382,
304,
925,
3013,
2712,
408,
338,
29889,
1724,
505,
591,
3595,
515,
14332,
1683,
29973,
13,
13,
1576,
6588,
2654,
21573,
2117,
19531,
261,
338,
14205,
285,
9382,
515,
5264,
5745,
408,
540,
29914,
11360,
756,
1286,
316,
11236,
630,
1009,
15303,
515,
21620,
26771,
358,
29889,
14832,
408,
2215,
408,
591,
30010,
276,
15041,
29892,
372,
30010,
29879,
982,
2086,
5161,
3459,
304,
1235,
2305,
3013,
1009,
9045,
1663,
18541,
393,
29892,
363,
1784,
29892,
756,
901,
470,
3109,
8126,
963,
16172,
292,
29889,
13,
13,
29965,
29889,
29903,
29889,
29909,
29991,
13,
13,
14084,
10325,
27504,
731,
777,
310,
670,
1914,
5962,
6865,
29889,
1763,
367,
2702,
29892,
540,
1838,
30010,
29873,
864,
278,
1663,
18541,
14582,
6364,
491,
4250,
314,
562,
598,
13442,
738,
6909,
29892,
607,
20601,
297,
263,
25212,
304,
1906,
5146,
1860,
1754,
304,
1663,
332,
414,
29889,
838,
549,
411,
445,
10608,
29892,
349,
2891,
3308,
2996,
701,
411,
1790,
19797,
599,
310,
502,
505,
1063,
27116,
304,
679,
29889,
13,
13,
29979,
388,
29973,
13,
13,
3112,
30010,
29879,
263,
716,
289,
27494,
21603,
9045,
11118,
29991,
1724,
947,
372,
437,
29973,
30098,
29879,
545,
10083,
763,
263,
3287,
29892,
1492,
29973,
1939,
412,
29991,
13,
13,
3047,
445,
9045,
18020,
4218,
29892,
27504,
756,
1754,
263,
1407,
10676,
5995,
393,
1663,
18541,
14582,
505,
1063,
2600,
11407,
1283,
310,
4250,
314,
562,
598,
29889,
4525,
16726,
505,
8581,
14679,
964,
925,
920,
7134,
519,
540,
313,
2308,
3427,
29897,
16726,
304,
367,
297,
1436,
749,
29889,
2860,
970,
635,
23659,
1438,
14582,
505,
17515,
1346,
29890,
453,
1080,
30024,
515,
4250,
314,
562,
598,
2600,
11407,
29892,
372,
471,
4780,
304,
15049,
445,
2089,
6614,
1623,
29892,
408,
591,
505,
2869,
5714,
11118,
1080,
29889,
910,
19781,
338,
278,
697,
2114,
1423,
393,
881,
505,
7160,
278,
2462,
29892,
541,
30098,
277,
30010,
645,
2125,
777,
931,
29889,
13,
13,
2831,
1286,
29892,
591,
508,
871,
640,
331,
2341,
925,
920,
16051,
372,
338,
304,
1074,
278,
12271,
310,
385,
9815,
3710,
533,
310,
4426,
29892,
7375,
1379,
29892,
322,
6514,
1683,
278,
11822,
310,
278,
4234,
756,
1063,
2221,
304,
5957,
502,
577,
2215,
30098,
392,
1970,
1509,
988,
278,
11118,
1080,
310,
17208,
2869,
3512,
322,
1058,
471,
14040,
363,
2805,
372,
727,
29889,
13,
13,
3112,
30010,
29879,
884,
14610,
30098,
5747,
1286,
591,
1016,
30010,
29873,
505,
4856,
1058,
1559,
267,
901,
1048,
5199,
367,
886,
1135,
777,
281,
7925,
310,
274,
1161,
29889,
13,
13,
29940,
27374,
13939,
10130,
938,
1975,
363,
278,
6589,
4038,
304,
367,
1304,
304,
9926,
261,
2714,
29899,
16123,
17223,
10679,
29889,
461,
29879,
526,
3806,
304,
594,
4150,
304,
1749,
20801,
29889,
1094,
1316,
29892,
591,
437,
451,
14257,
278,
671,
310,
2600,
273,
537,
29892,
7333,
470,
1153,
1455,
16661,
29892,
18287,
4023,
465,
358,
29892,
470,
278,
671,
310,
4086,
393,
1795,
367,
21551,
408,
4303,
295,
681,
29889,
461,
29879,
526,
9076,
287,
322,
1818,
367,
23454,
491,
263,
17768,
1061,
304,
9801,
896,
5870,
1438,
20801,
29889,
1334,
437,
451,
2758,
21560,
6589,
29892,
322,
1996,
263,
2854,
4876,
3211,
29892,
607,
674,
451,
367,
8833,
541,
674,
367,
1304,
304,
9659,
596,
6589,
29889,
450,
525,
3609,
2746,
29915,
1746,
338,
13136,
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
] |
Best Hotel In KLIA2: A Comprehensive Guide
Have you ever tried travelling for hours and after getting to the airport, the only thing you could think of is a cosy bed? Well, if you’re travelling to Malaysia and you want to have good rest from the airport, make sure to choose the nearest hotel and best hotel in KLIA2. To help you decide, here are some of the hotels you can choose from.
The Plaza Premium Lounge
It’s another favourite lounge in the airport. It’s located in two different areas in KLIA2 which is convenient for everyone. It’s one of the best places to stay and rest if you’re waiting for a connecting flight.
Sama Sama Express
Sama Sama is a budget hotel conveniently located near the McDonald’s on the third level of the International departure hall which is situated in the Satellite building. Cited as one of the best hotels near Kuala Lumpur International Airport, Sama Sama have 70 rooms with modern design and facilities.
Capsule Gateway
Just an 8-minute walk from the KLIA2 check-in counter is the Capsule Gateway. It’s the best choice for backpackers and transient stays in the country as you can stay between 6 to 12 hours and use the facilities.
Qlassic Hotel
The Qlassic Hotel is another good choice nearby KLIA2. It’s only 6 kilometres away from the airport which is easily reached by one of the airport taxis. It also boasts modern facilities and comfortable accommodation at very affordable prices. A good option for budget travellers who are on a layover.
Aerotel Malaysia
It’s conveniently situated on the premises of the gatewate@klia2. It’s just a 2-minute ride from the airport, too.
Tune Hotel KLIA2
Tune Hotel is only a 5-minute walk from the departure hall of the airport so it’s very convenient for you and your friends or family. It offers affordable room rates which are perfect for a short stay. If you’re looking for convenience then Tune Hotel is the best hotel in KLIA2 for you.
Start planning your vacation now. Book the most convenient and best hotel near Kuala Lumpur International Airport now and enjoy your vacation! | [
1,
6407,
16923,
512,
476,
5265,
29909,
29906,
29901,
319,
422,
1457,
29882,
6270,
16886,
13,
13,
25559,
366,
3926,
1898,
6427,
7807,
363,
6199,
322,
1156,
2805,
304,
278,
4799,
637,
29892,
278,
871,
2655,
366,
1033,
1348,
310,
338,
263,
6776,
29891,
6592,
29973,
5674,
29892,
565,
366,
30010,
276,
6427,
7807,
304,
26417,
423,
322,
366,
864,
304,
505,
1781,
1791,
515,
278,
4799,
637,
29892,
1207,
1854,
304,
6755,
278,
20471,
16730,
322,
1900,
16730,
297,
476,
5265,
29909,
29906,
29889,
1763,
1371,
366,
11097,
29892,
1244,
526,
777,
310,
278,
7375,
1379,
366,
508,
6755,
515,
29889,
13,
13,
1576,
13494,
1362,
6097,
1974,
365,
1309,
479,
13,
13,
3112,
30010,
29879,
1790,
15381,
568,
301,
1309,
479,
297,
278,
4799,
637,
29889,
739,
30010,
29879,
5982,
297,
1023,
1422,
10161,
297,
476,
5265,
29909,
29906,
607,
338,
19192,
363,
14332,
29889,
739,
30010,
29879,
697,
310,
278,
1900,
7600,
304,
7952,
322,
1791,
565,
366,
30010,
276,
10534,
363,
263,
16791,
16286,
29889,
13,
13,
29903,
3304,
317,
3304,
14657,
13,
13,
29903,
3304,
317,
3304,
338,
263,
23562,
16730,
19192,
368,
5982,
2978,
278,
4052,
28080,
30010,
29879,
373,
278,
4654,
3233,
310,
278,
4623,
25619,
12713,
607,
338,
24046,
297,
278,
12178,
20911,
5214,
29889,
315,
1573,
408,
697,
310,
278,
1900,
7375,
1379,
2978,
476,
950,
29874,
365,
3427,
332,
4623,
18117,
29892,
317,
3304,
317,
3304,
505,
29871,
29955,
29900,
19600,
411,
5400,
2874,
322,
23330,
29889,
13,
13,
29907,
2547,
1297,
22510,
1582,
13,
13,
14084,
385,
29871,
29947,
29899,
1195,
1082,
6686,
515,
278,
476,
5265,
29909,
29906,
1423,
29899,
262,
6795,
338,
278,
315,
2547,
1297,
22510,
1582,
29889,
739,
30010,
29879,
278,
1900,
7348,
363,
1250,
4058,
414,
322,
1301,
993,
27111,
297,
278,
4234,
408,
366,
508,
7952,
1546,
29871,
29953,
304,
29871,
29896,
29906,
6199,
322,
671,
278,
23330,
29889,
13,
13,
29984,
605,
293,
16923,
13,
13,
1576,
660,
605,
293,
16923,
338,
1790,
1781,
7348,
20810,
476,
5265,
29909,
29906,
29889,
739,
30010,
29879,
871,
29871,
29953,
24016,
3448,
515,
278,
4799,
637,
607,
338,
5948,
7450,
491,
697,
310,
278,
4799,
637,
8818,
275,
29889,
739,
884,
1045,
19416,
5400,
23330,
322,
25561,
24803,
362,
472,
1407,
21750,
519,
26094,
29889,
319,
1781,
2984,
363,
23562,
6427,
28257,
1058,
526,
373,
263,
6568,
957,
29889,
13,
13,
29909,
261,
327,
295,
26417,
423,
13,
13,
3112,
30010,
29879,
19192,
368,
24046,
373,
278,
5188,
4637,
310,
278,
12417,
29893,
403,
29992,
29895,
4456,
29906,
29889,
739,
30010,
29879,
925,
263,
29871,
29906,
29899,
1195,
1082,
22203,
515,
278,
4799,
637,
29892,
2086,
29889,
13,
13,
29911,
1540,
16923,
476,
5265,
29909,
29906,
13,
13,
29911,
1540,
16923,
338,
871,
263,
29871,
29945,
29899,
1195,
1082,
6686,
515,
278,
25619,
12713,
310,
278,
4799,
637,
577,
372,
30010,
29879,
1407,
19192,
363,
366,
322,
596,
7875,
470,
3942,
29889,
739,
16688,
21750,
519,
5716,
19257,
607,
526,
4922,
363,
263,
3273,
7952,
29889,
960,
366,
30010,
276,
3063,
363,
29703,
769,
323,
1540,
16923,
338,
278,
1900,
16730,
297,
476,
5265,
29909,
29906,
363,
366,
29889,
13,
13,
4763,
18987,
596,
11757,
362,
1286,
29889,
6726,
278,
1556,
19192,
322,
1900,
16730,
2978,
476,
950,
29874,
365,
3427,
332,
4623,
18117,
1286,
322,
13389,
596,
11757,
362,
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
] |
Q:
JavaScript literal insert vaule? (Too many characters in character literal)
Ok so in my mvc View my "Model" is a list of objects and in this case i want to get a specific Id of one of the objects.
var counter = 0; //for example
var id = '<%=Model[' + counter + '].Id %>';
This is what i get :
Compiler Error Message: CS1012: Too many characters in character literal
Thanks!
A:
Yes, the counter variable can't be used as the index for Model[], because it only exists on the client (assuming this snippet was inside of a script html element). When you are creating a view, it might be useful to think of it as a long 'string' that you are constructing (the html returned to the browser). In this case 'counter' is just some characters in your script block that will eventually be interpreted by the browser, so it's not a variable that can be used while building the view. The <%= %> block just returns a string to append (that's what the = sign does).
Perhaps you intended to have the counter variable in it's own C# code block like so:
<% var counter = 0; %>
<script language=javascript>
var id = '<%=Model[counter].Id %>';
</script>
| [
1,
660,
29901,
13,
13,
16963,
16333,
4635,
325,
585,
280,
29973,
313,
1762,
29877,
1784,
4890,
297,
2931,
16333,
29897,
13,
13,
20434,
577,
297,
590,
286,
7071,
4533,
590,
376,
3195,
29908,
338,
263,
1051,
310,
3618,
322,
297,
445,
1206,
474,
864,
304,
679,
263,
2702,
5163,
310,
697,
310,
278,
3618,
29889,
29871,
13,
1707,
6795,
353,
29871,
29900,
29936,
849,
1454,
1342,
13,
13,
1707,
1178,
353,
12801,
12222,
3195,
1839,
718,
6795,
718,
525,
1822,
1204,
6580,
2670,
13,
13,
4013,
338,
825,
474,
679,
584,
29871,
13,
25333,
4829,
7777,
29901,
21107,
29896,
29900,
29896,
29906,
29901,
1763,
29877,
1784,
4890,
297,
2931,
16333,
13,
13,
16894,
29991,
13,
13,
29909,
29901,
13,
13,
8241,
29892,
278,
6795,
2286,
508,
29915,
29873,
367,
1304,
408,
278,
2380,
363,
8125,
29961,
1402,
1363,
372,
871,
4864,
373,
278,
3132,
313,
465,
9929,
445,
11534,
471,
2768,
310,
263,
2471,
3472,
1543,
467,
29871,
1932,
366,
526,
4969,
263,
1776,
29892,
372,
1795,
367,
5407,
304,
1348,
310,
372,
408,
263,
1472,
525,
1807,
29915,
393,
366,
526,
3386,
292,
313,
1552,
3472,
4133,
304,
278,
4714,
467,
29871,
512,
445,
1206,
525,
11808,
29915,
338,
925,
777,
4890,
297,
596,
2471,
2908,
393,
674,
10201,
367,
21551,
491,
278,
4714,
29892,
577,
372,
29915,
29879,
451,
263,
2286,
393,
508,
367,
1304,
1550,
5214,
278,
1776,
29889,
450,
21172,
6580,
2908,
925,
3639,
263,
1347,
304,
9773,
313,
5747,
29915,
29879,
825,
278,
353,
1804,
947,
467,
13,
5894,
4252,
366,
9146,
304,
505,
278,
6795,
2286,
297,
372,
29915,
29879,
1914,
315,
29937,
775,
2908,
763,
577,
29901,
13,
29966,
29995,
722,
6795,
353,
29871,
29900,
29936,
6580,
13,
29966,
2154,
4086,
29922,
7729,
29958,
13,
29871,
722,
1178,
353,
12801,
12222,
3195,
29961,
11808,
1822,
1204,
6580,
2670,
13,
829,
2154,
29958,
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
] |
There are a number of reasons to crave junk food, including hormones and lifestyle, but the most common is stress.
When you are stressed, your body produces more of a hormone called cortisol. Its job is to increase sugar in the blood to help fight or flee from an attack. But extra cortisol also blocks the release of the hormones leptin and insulin, and that ends up increasing hunger. Thus stress drives your desire for quick-energy foods such as sweets, super-value meals and soda.
Quite apart from contributing to weight gain and raising your risk for a range of physical ills, when you sate your stress with junk food you also are polluting your brain.
“These empty-calorie, high-fat foods can trigger inflammation that can harm brain cells and lead to poor mental health,” says Bonnie J. Kaplan, PhD, of the departments of pediatrics and community health sciences at the University of Calgary.
Plus, Kaplan adds, when you fill up on those toxic empty-calorie foods, you may skip foods that provide important nutrients your brain requires for optimal well-being.
Breaking the junk food habit can feel like a Herculean task, especially for people who are more sensitive to stress and anxiety. The winning strategy is not just to cut out the bad stuff, but also to replace it with foods that can improve brain health.
The old switcheroo
Your first step: Identify when those junk food urges strike and sub in better food choices. Jamie, 36, used to crave diet cola when stress on the job was getting to her.
“The worse my day was, the more I drank,” says Jamie, communications manager for a city in British Columbia.
The jolt of sweetener and caffeine gave her the feel-good energy she needed when her mood slipped. Like clockwork, though, the effect would wear off, to be followed by an inevitable crash.
“But then I would crave more sugar and caffeine to get the boost again and the entire roller-coaster would repeat,” says Jamie, who was diagnosed with depression 20 years ago.
Jamie broke her workday soda habit by switching to green tea and eating fruit to satisfy the need for something sweet. Fruit was also Carol’s go-to solution after her doctor gave her some direction on how to break the crave-and-crash pattern.
“I always had them with me so I was not tempted to run to the vending machine, and it was not long before I began to feel calmer throughout the day,” she says. “And now when I do get stressed, it does not have the same impact. Before, my mood would dip way down and I felt more tired. Now I am in more control.”
Planning ahead is a vital part of taming junk-food urges. Along with her afternoon snacks, Carol makes sure to pack a healthy lunch. For dinner, she has her meal plan written out like a menu and waiting for her at home.
“When it’s written out I feel committed to make it,” she says. “Otherwise, I might just give in and order a pizza.”
Eat your veggies
Pruning out the junk is only the start. The next step is adding more foods to your regular diet that science has shown can improve mental health. Generally speaking, the kind of diet that guards against heart disease, reduces your risk of diabetes, and improves overall health will make your brain feel better, too.
So ask yourself: Are you eating enough fruits and vegetables?
In a study of 2,000 middle-aged men in Finland over 13 years, participants who ate more fruits and vegetables reported fewer depressive symptoms. One reason may be increased intake of folate, vitamin B that’s plentiful in leafy green vegetables, citrus fruits, and legumes like lentils and black beans.
Plus, the B vitamins (notably folate, B6 and B12) appear to lower levels of the amino acid homocysteine in the blood. That’s good because high levels of homocysteine are associated with cardiovascular problems like high blood pressure and heart attacks. And anything that improves blood flow improves delivery of oxygen and nutrients to the brain.
The science on B vitamins and heart health is still unclear, however, so the American Heart Association advises taking in B vitamins through food sources rather than supplements.
(Many cereal, bread and pasta products in North America are enriched with folic acid, a synthetic form of folate. That’s all to the good—especially if you’re choosing whole-grain versions over “white.” In addition to having more fiber and nutrients, whole-grain foods release their glucose energy at a steadier pace and thus reduce the likelihood of a mood crash.)
The produce aisle also provides phytochemicals, naturally occurring compounds that generally are associated with the bright colors of vegetables and fruits. As a group, phytochemicals enhance the immune system, strengthen cell functions, and protect against cancer.
And plant foods are generally rich in antioxidants—phytochemicals, vitamins and minerals that essentially act as rust removers, scrubbing destructive free radicals from the body. There’s some evidence that because of the brain’s extremely active chemical processes and high fat content, it’s especially vulnerable to the cell-harming activities of free radicals.
We are the champions
Despite the book and magazine articles touting so-called “superfoods,” there’s no single item that guarantees physical and mental health. The real benefits come from a varied diet that’s rich in plant foods, whole grains, legumes and lean protein sources—and that limits or eliminates fatty meats and processed foods.
However, there are a few powerhouse items it can’t hurt to eat more of. For example:
Blueberries Celebrated as the champion of antioxidant fruits, blueberries improved short-term memory and learning capacity in animal tests. Anthocyanin, the compound that gives the berries their deep color, has beneficial anti-inflammatory properties. Blueberries are also an excellent source of vitamin C and vitamin A.
Although they’re relatively expensive, especially in the off-season, you get a lot of bang for your buck—and frozen blueberries work well in smoothies and in (whole-grain) baked goods if you dust the icy globes with flour first.
Runners-up: Strawberries, red grapes and cranberries.
Spinach This dark leafy green comes up trumps for iron (when combined with vitamin C-rich foods, as in spinach salad with strawberries), beta-carotene, lutein (an antioxidant important for eye health), folate, vitamin A, and vitamin K (important in bone health and blood clotting). To a lesser degree, you also get potassium, zinc, and other B vitamins.
For a simple side dish, sauté sliced garlic in olive oil for a few minutes, then slowly add rinsed spinach and toss gently in the pan (tongs work well) until wilted and warm.
Runners-up: Collard greens and kale.
Lentils A half-cup of lentils provides close to the recommended daily requirement for folate—and it’s pretty easy to open a can of low-sodium lentil soup. Lentils are a good source of iron, especially when combined with vitamin C-rich foods like dark leafy greens, and relatively rich in calcium, potassium, zinc and other important trace minerals. Plus, they’re a good protein source when eaten with brown rice or whole-wheat bread.
Runners-up: Black beans, kidney beans.
Salmon This lean protein source really multitasks. Along with vital omega-3 fatty acids, it has more vitamin B12 per serving than red meat and a fine amount of B6, too. It’s among the richest food sources of vitamin D and is considered a good source of calcium, especially canned salmon. Unfortunately, it’s the pricey wild-caught salmon that packs the real nutritional punch.
For a quick entrée, spritz a salmon fillet with olive oil and lemon juice, salt lightly, then bake at 400 degrees for 8 to 10 minutes.
Runners-up: Tuna (fresh or canned) and sardines (which make a great snack on whole-grain crackers).
Club Med
As far as overall diet goes, the classic food patterns of the Mediterranean region appear to have benefits for both mood and mental fitness.
The Mediterranean diet matches most of the standard healthy-eating advice. It’s light on meat, dairy, and alcohol and heavy on fresh fruits and vegetables, legumes, nuts, grains, fish and olive oil, a “healthy” fat.
One study, published online in the Journal of Neurology, Neurosurgery & Psychiatry in May 2013, tracked older adults who followed either a version of the Mediterranean diet or a low-fat diet for more than six years. While the study’s focus was on preventing heart disease, it turned out the Mediterranean diet groups did significantly better on cognitive tests covering memory, language and organization.
An earlier four-year study of 10,094 healthy individuals found that people who kept closest to the traditional Mediterranean diet were a third less likely to develop depression.
At the time, researchers also noted that components of the diet may fight inflammation, improve blood vessel function, reduce risk for heart disease and repair oxygen-related cell damage.
Plus, almost all the staples in the Mediterranean diet seem to increase levels of something called brain-derived neurotrophic factor (BDNF), a protein responsible for many brain functions. BDNF plays an important role in learning and memory, and it appears that low levels of BDNF co-exist with low moods.
Just gobbling a handful of almonds isn’t a cure-all, says Gary Wenk, Ph.D., professor of psychology, neuroscience, and molecular virology, immunology, and medical genetics at The Ohio State University.
“It has to be the combos that are staples in the Med diet working together,” he says.
Still, you don’t need to suddenly convert your kitchen to a Mediterranean sanctuary or immediately eliminate all meat. As with any behavioral change, look for ways to incorporate new habits little by little.
For example, no matter where you’re starting from, commit to having one additional serving of a fruit and vegetable each day. Then pick one day a week to experiment with a meatless entrée, such as a stir-fry over brown rice or a hearty soup that combines vegetables with a grain or beans.
Jamie has woven many elements of the Mediterranean diet into her meals: more fish at dinner, topping sandwiches with sliced avocados, and using olive and flax oils instead of fatty salad dressing.
“It has been a long process,” says Jamie, whose longtime depression has eased tremendously. “But I always kept reminding myself that I am worth it to get better. And my switch in diet made all the difference.”
Deciphering the Mediterranean Diet
There’s no single “magic” food in the traditional diet of the Mediterranean region, but as a whole, this pattern of eating provides a host of compounds that have been linked to good health.
The prominent role of fruits and vegetables means you’re getting plenty of phytochemicals (carotenoids, flavonoids, phenols and other natural compounds), anti-oxidants, vitamins and minerals that contribute to optimum functioning of your brain and body.
Olive oil is considered a monounsaturated fat, the “good kind” (versus saturated fats found in most meats, butter, and other dairy products). Nuts, avocados and flax seed also contain “healthy fat.”
Olive oil and canola oil, another monounsaturated fat, also contain omega-3 fatty acids. Omega-3s play a vital role in brain function, improve blood flow, and, in the form of fish oil supplements, appear to ease depressive symptoms.
The body doesn’t produce omega-3 on its own. Walnuts, flax seed and fish itself—especially fatty fish like salmon, tuna, and sardines—are good dietary sources of omega-3.
If you choose to consume alcohol, one small glass of dry red wine with your meal adds more heart-healthy flavonoids.
1 COMMENT
Duane
A good article, but as a single guy my cooking isn’t the greatest, and eating out is too expensive, so I make simple meals, sometimes using wholegrain breads with sliced turkey (packaged) with a spinach salad, with small amounts of cheddar or colby cheese and olive oil based vinagerattes, but I need a heartier meal. I must admit I don’t eat many nuts, or use olive oil in general, or use beans such as lentils. I used to be quite adventurous in preparing food, but as I’ve gotten older, I’m getting lazier. I guess what I’m trying to say is that I don’t have good recipes that don’t use dashes of ingredients I probably couldn’t get in this small town on the praires of South Dakota. A few simple recipes would do me a great favor, so where do I look for simple, healthy recipes?
SoundOFF!
HEALTHY HABITS
Most of us don’t default to healthy habits. It takes planning and effort, and sometimes a surge of self-discipline, to eat right, exercise, get the sleep we need, and stay on top of work and life tasks. Establishing new habits, let alone purging bad ones, can require major effort, especially if we are also struggling with depression or anxiety. What are some good habits that you've formed and how did you build them? | [
1,
1670,
526,
263,
1353,
310,
9590,
304,
12220,
345,
432,
2960,
9687,
29892,
3704,
298,
555,
2873,
322,
301,
7004,
1508,
29892,
541,
278,
1556,
3619,
338,
22884,
29889,
13,
13,
10401,
366,
526,
851,
11517,
29892,
596,
3573,
13880,
901,
310,
263,
298,
555,
650,
2000,
13979,
275,
324,
29889,
8011,
4982,
338,
304,
7910,
26438,
297,
278,
10416,
304,
1371,
8589,
470,
9115,
29872,
515,
385,
5337,
29889,
1205,
4805,
13979,
275,
324,
884,
10930,
278,
6507,
310,
278,
298,
555,
2873,
454,
415,
262,
322,
1663,
352,
262,
29892,
322,
393,
10614,
701,
10231,
18757,
261,
29889,
6549,
22884,
25100,
596,
13521,
363,
4996,
29899,
27548,
9687,
29879,
1316,
408,
7901,
1691,
29892,
2428,
29899,
1767,
592,
1338,
322,
269,
8887,
29889,
13,
13,
2182,
568,
12435,
515,
17737,
17068,
304,
7688,
11581,
322,
29263,
596,
12045,
363,
263,
3464,
310,
9128,
4486,
29879,
29892,
746,
366,
269,
403,
596,
22884,
411,
432,
2960,
9687,
366,
884,
526,
21180,
17068,
596,
17294,
29889,
13,
13,
30015,
1349,
968,
4069,
29899,
1052,
7661,
29892,
1880,
29899,
29888,
271,
9687,
29879,
508,
7135,
4414,
4850,
362,
393,
508,
10311,
17294,
9101,
322,
3275,
304,
6460,
19119,
9045,
3995,
4083,
8396,
2786,
435,
29889,
9622,
6468,
29892,
1963,
29928,
29892,
310,
278,
5840,
1860,
310,
8939,
7163,
10817,
322,
7881,
9045,
21195,
472,
278,
3014,
310,
3037,
29887,
653,
29889,
13,
13,
29575,
29892,
9622,
6468,
12778,
29892,
746,
366,
5445,
701,
373,
1906,
304,
27375,
4069,
29899,
1052,
7661,
9687,
29879,
29892,
366,
1122,
14383,
9687,
29879,
393,
3867,
4100,
18254,
374,
1237,
596,
17294,
6858,
363,
14413,
1532,
29899,
915,
292,
29889,
13,
13,
20130,
5086,
278,
432,
2960,
9687,
4760,
508,
4459,
763,
263,
2439,
29883,
1297,
273,
3414,
29892,
7148,
363,
2305,
1058,
526,
901,
20502,
304,
22884,
322,
14919,
21549,
29889,
450,
15613,
13705,
338,
451,
925,
304,
5700,
714,
278,
4319,
6433,
29892,
541,
884,
304,
5191,
372,
411,
9687,
29879,
393,
508,
11157,
17294,
9045,
29889,
13,
13,
1576,
2030,
4607,
1489,
29877,
13,
13,
10858,
937,
4331,
29901,
13355,
1598,
746,
1906,
432,
2960,
9687,
5065,
2710,
21283,
322,
1014,
297,
2253,
9687,
19995,
29889,
16131,
347,
29892,
29871,
29941,
29953,
29892,
1304,
304,
12220,
345,
652,
300,
784,
29874,
746,
22884,
373,
278,
4982,
471,
2805,
304,
902,
29889,
13,
13,
30015,
1576,
15029,
590,
2462,
471,
29892,
278,
901,
306,
270,
10003,
3995,
4083,
16131,
347,
29892,
7212,
800,
8455,
363,
263,
4272,
297,
4908,
15411,
29889,
13,
13,
1576,
432,
14339,
310,
14225,
759,
322,
274,
3470,
29872,
457,
4846,
902,
278,
4459,
29899,
16773,
5864,
1183,
4312,
746,
902,
286,
2092,
20662,
2986,
29889,
8502,
12006,
1287,
29892,
2466,
29892,
278,
2779,
723,
19531,
1283,
29892,
304,
367,
5643,
491,
385,
297,
5750,
8270,
8095,
29889,
13,
13,
30015,
6246,
769,
306,
723,
12220,
345,
901,
26438,
322,
274,
3470,
29872,
457,
304,
679,
278,
14505,
1449,
322,
278,
4152,
9679,
261,
29899,
1111,
1901,
723,
12312,
3995,
4083,
16131,
347,
29892,
1058,
471,
24876,
2662,
411,
316,
2590,
29871,
29906,
29900,
2440,
8020,
29889,
13,
13,
29967,
314,
347,
14455,
902,
664,
3250,
269,
8887,
4760,
491,
21293,
304,
7933,
23429,
322,
321,
1218,
15774,
304,
15523,
278,
817,
363,
1554,
14225,
29889,
383,
9216,
471,
884,
8562,
30010,
29879,
748,
29899,
517,
1650,
1156,
902,
11619,
4846,
902,
777,
5305,
373,
920,
304,
2867,
278,
12220,
345,
29899,
392,
29899,
7283,
1161,
4766,
29889,
13,
13,
30015,
29902,
2337,
750,
963,
411,
592,
577,
306,
471,
451,
25782,
287,
304,
1065,
304,
278,
325,
2548,
4933,
29892,
322,
372,
471,
451,
1472,
1434,
306,
4689,
304,
4459,
1208,
1050,
10106,
278,
2462,
3995,
1183,
4083,
29889,
1346,
2855,
1286,
746,
306,
437,
679,
851,
11517,
29892,
372,
947,
451,
505,
278,
1021,
10879,
29889,
10949,
29892,
590,
286,
2092,
723,
28191,
982,
1623,
322,
306,
7091,
901,
23407,
29889,
2567,
306,
626,
297,
901,
2761,
3178,
13,
13,
3247,
9450,
14432,
338,
263,
27131,
760,
310,
260,
11500,
432,
2960,
29899,
1181,
397,
5065,
2710,
29889,
838,
549,
411,
902,
17724,
5807,
26514,
29892,
8562,
3732,
1854,
304,
4870,
263,
9045,
29891,
301,
3322,
29889,
1152,
17803,
29892,
1183,
756,
902,
592,
284,
3814,
3971,
714,
763,
263,
6143,
322,
10534,
363,
902,
472,
3271,
29889,
13,
13,
30015,
10401,
372,
30010,
29879,
3971,
714,
306,
4459,
19355,
304,
1207,
372,
3995,
1183,
4083,
29889,
1346,
16107,
3538,
29892,
306,
1795,
925,
2367,
297,
322,
1797,
263,
282,
24990,
3178,
13,
13,
29923,
271,
596,
12461,
29887,
583,
13,
13,
29925,
3389,
292,
714,
278,
432,
2960,
338,
871,
278,
1369,
29889,
450,
2446,
4331,
338,
4417,
901,
9687,
29879,
304,
596,
4943,
652,
300,
393,
10466,
756,
4318,
508,
11157,
19119,
9045,
29889,
3251,
635,
13590,
29892,
278,
2924,
310,
652,
300,
393,
1410,
3163,
2750,
5192,
17135,
29892,
26830,
596,
12045,
310,
652,
370,
10778,
29892,
322,
4857,
1960,
12463,
9045,
674,
1207,
596,
17294,
4459,
2253,
29892,
2086,
29889,
13,
13,
6295,
2244,
7535,
29901,
4683,
366,
321,
1218,
3307,
285,
21211,
322,
18655,
1849,
29973,
13,
13,
797,
263,
6559,
310,
29871,
29906,
29892,
29900,
29900,
29900,
7256,
29899,
4063,
1757,
297,
18312,
975,
29871,
29896,
29941,
2440,
29892,
27138,
1058,
263,
371,
901,
285,
21211,
322,
18655,
1849,
8967,
28145,
316,
2139,
573,
25828,
4835,
29889,
3118,
2769,
1122,
367,
11664,
938,
1296,
310,
900,
403,
29892,
13901,
9103,
350,
393,
30010,
29879,
715,
296,
6845,
297,
20447,
29891,
7933,
18655,
1849,
29892,
7537,
15816,
285,
21211,
29892,
322,
2814,
9351,
763,
301,
296,
2719,
322,
4628,
367,
550,
29889,
13,
13,
29575,
29892,
278,
350,
13901,
314,
1144,
313,
1333,
2197,
900,
403,
29892,
350,
29953,
322,
350,
29896,
29906,
29897,
2615,
304,
5224,
11174,
310,
278,
626,
1789,
22193,
3632,
542,
858,
29872,
457,
297,
278,
10416,
29889,
2193,
30010,
29879,
1781,
1363,
1880,
11174,
310,
3632,
542,
858,
29872,
457,
526,
6942,
411,
5881,
29875,
586,
6151,
1070,
4828,
763,
1880,
10416,
12959,
322,
5192,
16661,
29889,
1126,
3099,
393,
4857,
1960,
10416,
4972,
4857,
1960,
28289,
310,
288,
28596,
322,
18254,
374,
1237,
304,
278,
17294,
29889,
13,
13,
1576,
10466,
373,
350,
13901,
314,
1144,
322,
5192,
9045,
338,
1603,
20871,
29892,
3138,
29892,
577,
278,
3082,
17778,
7993,
25228,
267,
5622,
297,
350,
13901,
314,
1144,
1549,
9687,
8974,
3265,
1135,
1462,
944,
29879,
29889,
13,
13,
29898,
14804,
274,
406,
284,
29892,
18423,
322,
4940,
29874,
9316,
297,
4644,
6813,
526,
427,
4018,
287,
411,
900,
293,
22193,
29892,
263,
14710,
7492,
883,
310,
900,
403,
29889,
2193,
30010,
29879,
599,
304,
278,
1781,
30003,
267,
25009,
565,
366,
30010,
276,
23906,
3353,
29899,
3874,
262,
6910,
975,
1346,
10921,
3178,
512,
6124,
304,
2534,
901,
5713,
495,
322,
18254,
374,
1237,
29892,
3353,
29899,
3874,
262,
9687,
29879,
6507,
1009,
3144,
1682,
852,
5864,
472,
263,
28325,
631,
27725,
322,
4550,
10032,
278,
4188,
22342,
310,
263,
286,
2092,
8095,
1846,
13,
13,
1576,
7738,
263,
275,
280,
884,
8128,
1374,
29891,
517,
14969,
936,
29879,
29892,
18180,
13920,
292,
752,
3885,
393,
6892,
526,
6942,
411,
278,
11785,
11955,
310,
18655,
1849,
322,
285,
21211,
29889,
1094,
263,
2318,
29892,
1374,
29891,
517,
14969,
936,
29879,
26371,
749,
278,
5198,
1540,
1788,
29892,
9324,
264,
3038,
3168,
29892,
322,
12566,
2750,
23900,
29889,
13,
13,
2855,
8024,
9687,
29879,
526,
6892,
8261,
297,
3677,
601,
29916,
333,
1934,
30003,
11461,
517,
14969,
936,
29879,
29892,
13901,
314,
1144,
322,
1375,
261,
1338,
393,
13674,
1044,
408,
21580,
1083,
29877,
874,
29892,
14387,
431,
10549,
17912,
573,
3889,
24818,
29879,
515,
278,
3573,
29889,
1670,
30010,
29879,
777,
10757,
393,
1363,
310,
278,
17294,
30010,
29879,
14154,
6136,
22233,
10174,
322,
1880,
9950,
2793,
29892,
372,
30010,
29879,
7148,
23180,
519,
304,
278,
3038,
29899,
23024,
292,
14188,
310,
3889,
24818,
29879,
29889,
13,
13,
4806,
526,
278,
29314,
13,
13,
4002,
29886,
568,
278,
3143,
322,
14853,
7456,
5646,
292,
577,
29899,
13998,
1346,
9136,
1181,
19653,
3995,
727,
30010,
29879,
694,
2323,
2944,
393,
10509,
267,
9128,
322,
19119,
9045,
29889,
450,
1855,
23633,
2041,
515,
263,
23821,
652,
300,
393,
30010,
29879,
8261,
297,
8024,
9687,
29879,
29892,
3353,
2646,
1144,
29892,
2814,
9351,
322,
20793,
26823,
8974,
30003,
392,
393,
13071,
470,
10397,
1078,
9950,
1017,
592,
1446,
322,
19356,
9687,
29879,
29889,
13,
13,
17245,
29892,
727,
526,
263,
2846,
3081,
8697,
4452,
372,
508,
30010,
29873,
21682,
304,
17545,
901,
310,
29889,
1152,
1342,
29901,
13,
13,
21319,
495,
2722,
315,
6146,
1182,
630,
408,
278,
8064,
310,
3677,
601,
29916,
333,
424,
285,
21211,
29892,
7254,
495,
2722,
16710,
3273,
29899,
8489,
3370,
322,
6509,
13284,
297,
13019,
6987,
29889,
10926,
542,
10094,
262,
29892,
278,
752,
618,
393,
4076,
278,
7655,
2722,
1009,
6483,
2927,
29892,
756,
7795,
5611,
9418,
29899,
13453,
314,
2922,
706,
4426,
29889,
10924,
495,
2722,
526,
884,
385,
15129,
2752,
310,
13901,
9103,
315,
322,
13901,
9103,
319,
29889,
13,
13,
2499,
3592,
896,
30010,
276,
13774,
19390,
29892,
7148,
297,
278,
1283,
29899,
25682,
29892,
366,
679,
263,
3287,
310,
289,
574,
363,
596,
1321,
384,
30003,
392,
14671,
2256,
7254,
495,
2722,
664,
1532,
297,
10597,
583,
322,
297,
313,
15970,
280,
29899,
3874,
262,
29897,
289,
12535,
22535,
565,
366,
19786,
278,
29871,
4245,
13149,
267,
411,
1652,
473,
937,
29889,
13,
13,
29934,
5963,
414,
29899,
786,
29901,
624,
1610,
495,
2722,
29892,
2654,
330,
2390,
267,
322,
274,
661,
495,
2722,
29889,
13,
13,
5592,
262,
496,
910,
6501,
20447,
29891,
7933,
5304,
701,
534,
17204,
363,
13977,
313,
8256,
12420,
411,
13901,
9103,
315,
29899,
4018,
9687,
29879,
29892,
408,
297,
10917,
496,
4497,
328,
411,
380,
1610,
495,
2722,
511,
21762,
29899,
4287,
327,
1600,
29892,
301,
1082,
262,
313,
273,
3677,
601,
29916,
333,
424,
4100,
363,
10977,
9045,
511,
900,
403,
29892,
13901,
9103,
319,
29892,
322,
13901,
9103,
476,
313,
17001,
297,
289,
650,
9045,
322,
10416,
1067,
327,
1259,
467,
1763,
263,
3109,
261,
7426,
29892,
366,
884,
679,
3104,
465,
1974,
29892,
503,
3742,
29892,
322,
916,
350,
13901,
314,
1144,
29889,
13,
13,
2831,
263,
2560,
2625,
270,
728,
29892,
872,
329,
29948,
269,
506,
287,
7171,
506,
297,
288,
9258,
17182,
363,
263,
2846,
6233,
29892,
769,
14205,
788,
364,
1144,
287,
10917,
496,
322,
28189,
330,
2705,
297,
278,
7243,
313,
29873,
24733,
664,
1532,
29897,
2745,
281,
2782,
287,
322,
14294,
29889,
13,
13,
29934,
5963,
414,
29899,
786,
29901,
13435,
538,
1395,
575,
322,
413,
744,
29889,
13,
13,
29931,
296,
2719,
319,
4203,
29899,
5231,
310,
301,
296,
2719,
8128,
3802,
304,
278,
13622,
14218,
11809,
363,
900,
403,
30003,
392,
372,
30010,
29879,
5051,
4780,
304,
1722,
263,
508,
310,
4482,
29899,
29879,
397,
1974,
301,
296,
309,
22300,
29889,
365,
296,
2719,
526,
263,
1781,
2752,
310,
13977,
29892,
7148,
746,
12420,
411,
13901,
9103,
315,
29899,
4018,
9687,
29879,
763,
6501,
20447,
29891,
1395,
575,
29892,
322,
13774,
8261,
297,
15835,
398,
29892,
3104,
465,
1974,
29892,
503,
3742,
322,
916,
4100,
9637,
1375,
261,
1338,
29889,
15113,
29892,
896,
30010,
276,
263,
1781,
26823,
2752,
746,
321,
2579,
411,
17354,
19408,
470,
3353,
29899,
29893,
354,
271,
18423,
29889,
13,
13,
29934,
5963,
414,
29899,
786,
29901,
6054,
367,
550,
29892,
26397,
3801,
367,
550,
29889,
13,
13,
20392,
3712,
910,
20793,
26823,
2752,
2289,
1773,
277,
1278,
29879,
29889,
838,
549,
411,
27131,
2703,
2442,
29899,
29941,
9950,
1017,
1274,
4841,
29892,
372,
756,
901,
13901,
9103,
350,
29896,
29906,
639,
16330,
1135,
2654,
27654,
322,
263,
2691,
5253,
310,
350,
29953,
29892,
2086,
29889,
739,
30010,
29879,
4249,
278,
8261,
342,
9687,
8974,
310,
13901,
9103,
360,
322,
338,
5545,
263,
1781,
2752,
310,
15835,
398,
29892,
7148,
508,
9571,
4497,
3712,
29889,
11511,
29892,
372,
30010,
29879,
278,
8666,
29891,
8775,
29899,
24348,
4497,
3712,
393,
4870,
29879,
278,
1855,
18254,
29878,
3245,
282,
3322,
29889,
13,
13,
2831,
263,
4996,
9953,
1318,
29892,
7689,
2784,
263,
4497,
3712,
977,
1026,
411,
288,
9258,
17182,
322,
454,
3712,
3623,
625,
29892,
15795,
3578,
368,
29892,
769,
289,
1296,
472,
29871,
29946,
29900,
29900,
14496,
363,
29871,
29947,
304,
29871,
29896,
29900,
6233,
29889,
13,
13,
29934,
5963,
414,
29899,
786,
29901,
323,
4347,
313,
29888,
3781,
470,
508,
9571,
29897,
322,
269,
538,
1475,
313,
4716,
1207,
263,
2107,
5807,
547,
373,
3353,
29899,
3874,
262,
26755,
414,
467,
13,
13,
6821,
431,
3436,
13,
13,
2887,
2215,
408,
12463,
652,
300,
5771,
29892,
278,
22037,
9687,
15038,
310,
278,
25620,
10800,
273,
5120,
2615,
304,
505,
23633,
363,
1716,
286,
2092,
322,
19119,
6216,
2264,
29889,
13,
13,
1576,
25620,
10800,
273,
652,
300,
7087,
1556,
310,
278,
3918,
9045,
29891,
29899,
29872,
1218,
9848,
29889,
739,
30010,
29879,
3578,
373,
27654,
29892,
1146,
16129,
29892,
322,
27231,
5391,
322,
9416,
373,
10849,
285,
21211,
322,
18655,
1849,
29892,
2814,
9351,
29892,
302,
8842,
29892,
2646,
1144,
29892,
9427,
322,
288,
9258,
17182,
29892,
263,
1346,
354,
4298,
29891,
30024,
9950,
29889,
13,
13,
6716,
6559,
29892,
6369,
7395,
297,
278,
8237,
310,
2448,
2192,
1188,
29891,
29892,
17574,
1883,
2007,
708,
669,
16777,
7163,
719,
297,
2610,
29871,
29906,
29900,
29896,
29941,
29892,
5702,
287,
9642,
16157,
29879,
1058,
5643,
2845,
263,
1873,
310,
278,
25620,
10800,
273,
652,
300,
470,
263,
4482,
29899,
29888,
271,
652,
300,
363,
901,
1135,
4832,
2440,
29889,
5806,
278,
6559,
30010,
29879,
8569,
471,
373,
5557,
292,
5192,
17135,
29892,
372,
6077,
714,
278,
25620,
10800,
273,
652,
300,
6471,
1258,
16951,
2253,
373,
25323,
3321,
6987,
21653,
3370,
29892,
4086,
322,
13013,
29889,
13,
13,
2744,
8859,
3023,
29899,
6360,
6559,
310,
29871,
29896,
29900,
29892,
29900,
29929,
29946,
9045,
29891,
15724,
1476,
393,
2305,
1058,
8126,
21438,
304,
278,
13807,
25620,
10800,
273,
652,
300,
892,
263,
4654,
3109,
5517,
304,
2693,
316,
2590,
29889,
13,
13,
4178,
278,
931,
29892,
5925,
414,
884,
11682,
393,
7117,
310,
278,
652,
300,
1122,
8589,
4414,
4850,
362,
29892,
11157,
10416,
21239,
740,
29892,
10032,
12045,
363,
5192,
17135,
322,
26032,
288,
28596,
29899,
12817,
3038,
18658,
29889,
13,
13,
29575,
29892,
4359,
599,
278,
380,
481,
793,
297,
278,
25620,
10800,
273,
652,
300,
2833,
304,
7910,
11174,
310,
1554,
2000,
17294,
29899,
672,
2347,
452,
2192,
29873,
19783,
293,
7329,
313,
29121,
22498,
511,
263,
26823,
14040,
363,
1784,
17294,
3168,
29889,
350,
29928,
22498,
13582,
385,
4100,
6297,
297,
6509,
322,
3370,
29892,
322,
372,
5692,
393,
4482,
11174,
310,
350,
29928,
22498,
1302,
29899,
28997,
411,
4482,
286,
2092,
29879,
29889,
13,
13,
14084,
330,
20838,
1847,
263,
1361,
1319,
310,
394,
8315,
29879,
3508,
30010,
29873,
263,
274,
545,
29899,
497,
29892,
4083,
23529,
399,
5842,
29892,
1963,
29889,
29928,
1696,
12251,
310,
11643,
3002,
29892,
17167,
1883,
15277,
29892,
322,
13206,
16637,
325,
3350,
1188,
29891,
29892,
5198,
348,
3002,
29892,
322,
16083,
2531,
300,
1199,
472,
450,
15821,
4306,
3014,
29889,
13,
13,
30015,
3112,
756,
304,
367,
278,
4145,
359,
393,
526,
380,
481,
793,
297,
278,
3436,
652,
300,
1985,
4208,
3995,
540,
4083,
29889,
13,
13,
855,
453,
29892,
366,
1016,
30010,
29873,
817,
304,
11584,
3588,
596,
29181,
304,
263,
25620,
10800,
273,
9753,
22999,
653,
470,
7389,
27399,
599,
27654,
29889,
1094,
411,
738,
6030,
284,
1735,
29892,
1106,
363,
5837,
304,
11039,
403,
716,
2299,
1169,
2217,
491,
2217,
29889,
13,
13,
2831,
1342,
29892,
694,
4383,
988,
366,
30010,
276,
6257,
515,
29892,
9063,
304,
2534,
697,
5684,
16330,
310,
263,
15774,
322,
18655,
519,
1269,
2462,
29889,
1987,
5839,
697,
2462,
263,
4723,
304,
7639,
411,
263,
27654,
2222,
9953,
1318,
29892,
1316,
408,
263,
23546,
29899,
29888,
719,
975,
17354,
19408,
470,
263,
5192,
29891,
22300,
393,
4145,
1475,
18655,
1849,
411,
263,
2646,
262,
470,
367,
550,
29889,
13,
13,
29967,
314,
347,
756,
281,
9813,
1784,
3161,
310,
278,
25620,
10800,
273,
652,
300,
964,
902,
592,
1338,
29901,
901,
9427,
472,
17803,
29892,
304,
3262,
11982,
16416,
267,
411,
269,
506,
287,
1029,
542,
2255,
29892,
322,
773,
288,
9258,
322,
17422,
29916,
288,
2719,
2012,
310,
9950,
1017,
4497,
328,
10714,
292,
29889,
13,
13,
30015,
3112,
756,
1063,
263,
1472,
1889,
3995,
4083,
16131,
347,
29892,
5069,
1472,
2230,
316,
2590,
756,
321,
1463,
14586,
355,
5794,
29889,
1346,
6246,
306,
2337,
8126,
1083,
4015,
6142,
393,
306,
626,
7088,
372,
304,
679,
2253,
29889,
1126,
590,
4607,
297,
652,
300,
1754,
599,
278,
4328,
3178,
13,
13,
2772,
455,
561,
3241,
278,
25620,
10800,
273,
24315,
13,
13,
8439,
30010,
29879,
694,
2323,
1346,
11082,
293,
30024,
9687,
297,
278,
13807,
652,
300,
310,
278,
25620,
10800,
273,
5120,
29892,
541,
408,
263,
3353,
29892,
445,
4766,
310,
321,
1218,
8128,
263,
3495,
310,
752,
3885,
393,
505,
1063,
9024,
304,
1781,
9045,
29889,
13,
13,
1576,
19555,
6297,
310,
285,
21211,
322,
18655,
1849,
2794,
366,
30010,
276,
2805,
20947,
310,
1374,
29891,
517,
14969,
936,
29879,
313,
4287,
16368,
3398,
29879,
29892,
21054,
3231,
4841,
29892,
17292,
3775,
322,
916,
5613,
752,
3885,
511,
9418,
29899,
2251,
333,
1934,
29892,
13901,
314,
1144,
322,
1375,
261,
1338,
393,
29126,
304,
5994,
398,
740,
292,
310,
596,
17294,
322,
3573,
29889,
13,
13,
29949,
9258,
17182,
338,
5545,
263,
1601,
1309,
29879,
1337,
630,
9950,
29892,
278,
1346,
16773,
2924,
30024,
313,
874,
375,
269,
1337,
630,
285,
1446,
1476,
297,
1556,
592,
1446,
29892,
541,
357,
29892,
322,
916,
1146,
16129,
9316,
467,
405,
8842,
29892,
1029,
542,
2255,
322,
17422,
29916,
16717,
884,
1712,
1346,
354,
4298,
29891,
9950,
3178,
13,
13,
29949,
9258,
17182,
322,
508,
2963,
17182,
29892,
1790,
1601,
1309,
29879,
1337,
630,
9950,
29892,
884,
1712,
2703,
2442,
29899,
29941,
9950,
1017,
1274,
4841,
29889,
13352,
2442,
29899,
29941,
29879,
1708,
263,
27131,
6297,
297,
17294,
740,
29892,
11157,
10416,
4972,
29892,
322,
29892,
297,
278,
883,
310,
9427,
17182,
1462,
944,
29879,
29892,
2615,
304,
16326,
316,
2139,
573,
25828,
4835,
29889,
13,
13,
1576,
3573,
1838,
30010,
29873,
7738,
2703,
2442,
29899,
29941,
373,
967,
1914,
29889,
5260,
29876,
8842,
29892,
17422,
29916,
16717,
322,
9427,
3528,
30003,
267,
25009,
9950,
1017,
9427,
763,
4497,
3712,
29892,
260,
4347,
29892,
322,
269,
538,
1475,
30003,
598,
1781,
652,
300,
653,
8974,
310,
2703,
2442,
29899,
29941,
29889,
13,
13,
3644,
366,
6755,
304,
29151,
27231,
5391,
29892,
697,
2319,
12917,
310,
15589,
2654,
19006,
411,
596,
592,
284,
12778,
901,
5192,
29899,
354,
4298,
29891,
21054,
3231,
4841,
29889,
13,
13,
29896,
4810,
7428,
3919,
13,
13,
29928,
29884,
1662,
13,
13,
29909,
1781,
4274,
29892,
541,
408,
263,
2323,
1410,
29891,
590,
7984,
292,
3508,
30010,
29873,
278,
14176,
29892,
322,
321,
1218,
714,
338,
2086,
19390,
29892,
577,
306,
1207,
2560,
592,
1338,
29892,
6041,
773,
1058,
1397,
6038,
18423,
29879,
411,
269,
506,
287,
7013,
1989,
313,
4058,
4063,
29897,
411,
263,
10917,
496,
4497,
328,
29892,
411,
2319,
26999,
310,
521,
287,
16702,
470,
784,
1609,
923,
968,
322,
288,
9258,
17182,
2729,
13848,
1875,
1131,
267,
29892,
541,
306,
817,
263,
5192,
631,
592,
284,
29889,
306,
1818,
20000,
306,
1016,
30010,
29873,
17545,
1784,
302,
8842,
29892,
470,
671,
288,
9258,
17182,
297,
2498,
29892,
470,
671,
367,
550,
1316,
408,
301,
296,
2719,
29889,
306,
1304,
304,
367,
3755,
17623,
332,
681,
297,
10223,
292,
9687,
29892,
541,
408,
306,
30010,
345,
2355,
841,
9642,
29892,
306,
30010,
29885,
2805,
425,
29920,
631,
29889,
306,
4140,
825,
306,
30010,
29885,
1811,
304,
1827,
338,
393,
306,
1016,
30010,
29873,
505,
1781,
9522,
5547,
393,
1016,
30010,
29873,
671,
12569,
267,
310,
2348,
1127,
10070,
306,
3117,
8496,
30010,
29873,
679,
297,
445,
2319,
4726,
373,
278,
7213,
2658,
310,
4275,
22679,
4616,
29889,
319,
2846,
2560,
9522,
5547,
723,
437,
592,
263,
2107,
7853,
29892,
577,
988,
437,
306,
1106,
363,
2560,
29892,
9045,
29891,
9522,
5547,
29973,
13,
13,
29456,
27681,
29991,
13,
13,
9606,
1964,
4690,
29979,
379,
2882,
1806,
29903,
13,
13,
29924,
520,
310,
502,
1016,
30010,
29873,
2322,
304,
9045,
29891,
2299,
1169,
29889,
739,
4893,
18987,
322,
7225,
29892,
322,
6041,
263,
1190,
479,
310,
1583,
29899,
2218,
13326,
457,
29892,
304,
17545,
1492,
29892,
15058,
29892,
679,
278,
8709,
591,
817,
29892,
322,
7952,
373,
2246,
310,
664,
322,
2834,
9595,
29889,
2661,
370,
1674,
292,
716,
2299,
1169,
29892,
1235,
7432,
282,
2007,
292,
4319,
6743,
29892,
508,
1996,
4655,
7225,
29892,
7148,
565,
591,
526,
884,
20042,
411,
316,
2590,
470,
14919,
21549,
29889,
1724,
526,
777,
1781,
2299,
1169,
393,
366,
29915,
345,
8429,
322,
920,
1258,
366,
2048,
963,
29973
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Sean Kaminsky, Director/Producer
Sean Kaminsky is an award-winning documentary filmmaker and writer. The body of Sean’s work has tackled a broad range of urgent topics – from social to political – while telling impactful stories that engage and entertain. His short film series, “Save
the Slogan” was included as part of Robert Redford’s “Green” programming launch on Sundance Channel. Save the Slogan looks at the surprising and little known history of environmental slogans turned clichés such as “Save the Whales” and “Hug a Tree” while performing emergency pop culture CPR to revive them. Also for Sundance Channel, his short series Green Man, visits artists at the Burning Man Festival who incorporated the environmental theme in their art work in unexpected ways. Further producing credits of note include Too Hot Not to Handle, an HBO feature documentary on global warming.
Sean also directed an investigative segment that looked at the separation of church and state for the award-winning PBS TV series, In The Life. His experimental short film on Zen enlightenment titled One Word or Less was commissioned by the Tate Museum for their public lecture series. Sean’s other broadcast TV credits include directing four episodes of the acclaimed MTV/LOGO show Be Real in its second season. In collaboration with ThinkFilm and Sundance Channel, Sean directed, produced and edited Gifted and Challenged: the Making of Shortbus. Gifted and Challenged examines the intersection of sex and art as it follows the making of John Cameron Mitchell’s controversial film, Shortbus, over a challenging three year period. He also produced the theatrically released documentary, Gay Sex in the 70s. The award winning film captures a frequently overlooked period in history: New York during the decade of gay liberation after the Stonewall riot and before AIDS. The film played in over thirty cities nationwide to widespread acclaim and strong box office numbers. His book, Naked Lens: Video Blogging & Video Journaling to Reclaim the YOU in YouTube, teaches readers how to use video blogging and video journaling for self-exploration (available at Amazon.com). It has been included in the curriculum of the New York Institute of Photography.
The first seed he ever planted was a Johnny Jump Up when he was five years old and he’s now officially addicted to gardening and seed saving. For more information visit Sean’s production company website at www.organikmedia.com and his fledgling seed company at www.freewildseed.com.
Lee Brooks, Composer
Lee Brooks is a composer for film, television, and advertising, specializing in modern orchestral music. His work is noted for using strong emotive melodies and often chilling use of neo-romantic harmonies and exciting builds. He is also a singer-songwriter, matching those melodies with ethereal vocals and orchestral influences.
He has scored original music and created sound design for a variety of films, advertisements, Web video and live events, working with talent such as Isabella Rossellini, Kronos Quartet, ETHEL (string quartet) and the Czech Philharmonic Chamber Orchestra.
He scored the finale of “The Story Beyond The Still,” commissioned by Canon and premiered at the 2011 Sundance Film Festival. He has performed around countless venues in New York, particularly in Greenwich village. Lee also consults as a musicologist, analyzing music for copyright infringement — underscoring his attention to detail and classical training. Lee’s experience as a Music Producer at Grey Advertising, helping corporations construct a musical image, has honed his ability to communicate a client’s vision with sound. Visit his website to learn more about his work or to contact him.
Melissa Nicolardi, Associate Producer
Melissa Nicolardi is a Brooklyn-based filmmaker and media educator whose work combines issues of social or political importance with thorough reporting and compelling storytelling. Whether documenting a group of women involved in a decades-long fight for environmental justice in the South Bronx, or reporting on high-school science students using wind-turbine energy to bring electricity to their off-the-grid community in southern Texas, Melissa’s work focuses on stories that bring a human element to the issue at hand.
Her most recent documentary film, The Pass it On Project, follows a group of Brooklyn students on a road trip though the South, in the summer following President Obama’s historic inauguration. It explores the relevance of the Civil Rights Movement today through the eyes of its young characters, as well as the oral histories of surviving Civil Rights Activists as told to the students.
In addition to her work as a freelance producer and editor, Melissa is an adjunct instructor at Rutgers University Hunter College, and DCTV. As an educator, Melissa is committed to the idea that information – in all of its forms – must be free and widely accessible if a society is to remain empowered. She is also a firm believe in the adage ‘you are what you eat’ and is extremely excited to be working on Open Sesame – The Story of Seeds!
Angela Stempel, Animator
Angela is an animator, director, and puppet-maker. She studied at the School of the Museum of Fine Arts, Boston, for her BFA, and at Tufts University, where she earned a BA in Art History. She was the recipient of the Dehn Fellowship from Tufts University in 2010, to study abroad in Prague. She attended a puppet-making workshop called Puppets in Prague in the summer of 2010. In 2012 she received the Traveling Fellowship from the School of the MFA, Boston. She lives and works in New York.
Heeyoung Park, Opening & Closing Animation
Heeyoung is an animation student who finds delight in small things. She wishes to live a simple life close to nature and find warmth and happiness in herself and others. Her emotional connection to her work fuels her creativity and continuous efforts bring her vision to life. To view her portfolio click here.
Michael Pisano, Seed Ball Bike Ride Animation
Michael Pisano is a Motion Graphics Designer based in NYC with a BFA in Graphic Design from The School of Visual Arts. His work has been featured in The New York Times, Comedy Central, The United Nations, MONUMENTAL The Reimagined World of Kevin O’Callaghan and various music videos including Gaslight Anthem’s “Handwritten”, amongst others. Michael also has his own cartoon Jubei jubeisteele.com. To see more of his work visit: michaeljamespisano.com
Jenina Podulka, Assistant Editor
Jenina Podulka is a recent graduate of Montclair State University. She worked as a Production Assistant on the 2013 Oscar-nominated documentary How to Survive a Plague, about the AIDS activist group Act Up New York. She also worked as a Post Production Assistant/Assistant Editor on the 2013 South by Southwest-selected documentary Maidentrip, which follows the around-the-world adventure of teenage sailor Laura Dekker. As well as working on documentaries, she wrote, directed, and animated the short stop-motion film Our Mechanical Future, which takes the form of a fictional news show and is set in a world where robotic arms have become a fashionable accessory. She was born and raised in North Bergen, New Jersey.
Jenina’s eyes were opened to the issues of food and community during her stay at an intentional community/organic farm, through the WWOOF volunteering program. She is excited to start growing some of her own food (heirloom seeds only!) for the first time this summer. | [
1,
922,
273,
476,
9103,
7912,
29892,
15944,
29914,
23665,
2265,
13,
13,
2008,
273,
476,
9103,
7912,
338,
385,
9862,
29899,
5080,
1076,
1842,
653,
2706,
28107,
322,
9227,
29889,
450,
3573,
310,
922,
273,
30010,
29879,
664,
756,
22002,
839,
263,
7300,
3464,
310,
5065,
5362,
23820,
785,
515,
5264,
304,
8604,
785,
1550,
14509,
10879,
1319,
15874,
393,
3033,
482,
322,
22684,
29889,
3600,
3273,
2706,
3652,
29892,
1346,
11371,
13,
13,
1552,
317,
1188,
273,
30024,
471,
5134,
408,
760,
310,
4755,
4367,
4006,
30010,
29879,
1346,
24599,
30024,
8720,
6826,
373,
12009,
749,
17368,
29889,
16913,
278,
317,
1188,
273,
3430,
472,
278,
26800,
322,
2217,
2998,
4955,
310,
29380,
269,
1188,
550,
6077,
1067,
436,
743,
1316,
408,
1346,
11371,
278,
806,
2122,
30024,
322,
1346,
29950,
688,
263,
15472,
30024,
1550,
15859,
11176,
14703,
1835,
9257,
315,
10593,
304,
6664,
573,
963,
29889,
3115,
363,
12009,
749,
17368,
29892,
670,
3273,
3652,
7646,
2315,
29892,
1998,
1169,
17906,
472,
278,
16640,
292,
2315,
8518,
1058,
11039,
630,
278,
29380,
10929,
297,
1009,
1616,
664,
297,
15668,
5837,
29889,
8725,
20811,
6625,
1169,
310,
4443,
3160,
1763,
29877,
8843,
2216,
304,
29273,
29892,
385,
379,
8456,
4682,
1842,
653,
373,
5534,
1370,
4056,
29889,
13,
13,
2008,
273,
884,
10624,
385,
7405,
1230,
10768,
393,
5148,
472,
278,
23683,
310,
6586,
322,
2106,
363,
278,
9862,
29899,
5080,
1076,
349,
9851,
5648,
3652,
29892,
512,
450,
4634,
29889,
3600,
17986,
3273,
2706,
373,
796,
264,
427,
4366,
264,
358,
25278,
3118,
10803,
470,
27898,
471,
12969,
287,
491,
278,
323,
403,
6838,
363,
1009,
970,
29197,
3652,
29889,
922,
273,
30010,
29879,
916,
12672,
5648,
6625,
1169,
3160,
1513,
292,
3023,
23238,
310,
278,
1035,
13190,
28982,
29914,
14480,
29949,
1510,
1522,
8195,
297,
967,
1473,
4259,
29889,
512,
24771,
411,
25086,
3434,
29885,
322,
12009,
749,
17368,
29892,
922,
273,
10624,
29892,
7371,
322,
8788,
402,
2027,
287,
322,
678,
16047,
287,
29901,
278,
341,
5086,
310,
13899,
8262,
29889,
402,
2027,
287,
322,
678,
16047,
287,
4392,
1475,
278,
17686,
310,
7916,
322,
1616,
408,
372,
4477,
278,
3907,
310,
2259,
20939,
265,
26676,
30010,
29879,
19341,
616,
2706,
29892,
13899,
8262,
29892,
975,
263,
18066,
292,
2211,
1629,
3785,
29889,
940,
884,
7371,
278,
278,
8141,
1711,
5492,
1842,
653,
29892,
28832,
21703,
297,
278,
29871,
29955,
29900,
29879,
29889,
450,
9862,
15613,
2706,
4332,
1973,
263,
13672,
975,
6914,
287,
3785,
297,
4955,
29901,
1570,
3088,
2645,
278,
316,
6332,
310,
23852,
7866,
362,
1156,
278,
15681,
11358,
10107,
327,
322,
1434,
319,
1367,
29903,
29889,
450,
2706,
5318,
297,
975,
17058,
14368,
5233,
8157,
304,
281,
2247,
29886,
949,
1035,
8342,
322,
4549,
3800,
8034,
3694,
29889,
3600,
3143,
29892,
405,
12535,
365,
575,
29901,
13987,
350,
21027,
669,
13987,
8237,
292,
304,
3599,
8342,
278,
612,
27269,
297,
14711,
29892,
6860,
267,
22176,
920,
304,
671,
4863,
12618,
3460,
322,
4863,
8955,
292,
363,
1583,
29899,
24516,
12418,
313,
16515,
472,
16631,
29889,
510,
467,
739,
756,
1063,
5134,
297,
278,
16256,
12906,
398,
310,
278,
1570,
3088,
8907,
310,
19040,
5275,
29889,
13,
13,
1576,
937,
16717,
540,
3926,
8024,
287,
471,
263,
20179,
435,
3427,
5020,
746,
540,
471,
5320,
2440,
2030,
322,
540,
30010,
29879,
1286,
22444,
788,
18186,
304,
16423,
292,
322,
16717,
14238,
29889,
1152,
901,
2472,
6493,
922,
273,
30010,
29879,
5802,
5001,
4700,
472,
7821,
29889,
6388,
638,
9799,
29889,
510,
322,
670,
27481,
29887,
1847,
16717,
5001,
472,
7821,
29889,
10745,
809,
789,
26776,
29889,
510,
29889,
13,
13,
3226,
29872,
4358,
12117,
29892,
24497,
261,
13,
13,
3226,
29872,
4358,
12117,
338,
263,
18422,
363,
2706,
29892,
11456,
29892,
322,
18811,
5921,
29892,
4266,
5281,
297,
5400,
22624,
342,
1705,
4696,
29889,
3600,
664,
338,
11682,
363,
773,
4549,
23023,
573,
9232,
397,
583,
322,
4049,
521,
8873,
671,
310,
452,
29877,
29899,
456,
7716,
10311,
265,
583,
322,
5566,
11407,
23315,
29889,
940,
338,
884,
263,
15640,
29899,
21453,
13236,
29892,
9686,
1906,
9232,
397,
583,
411,
11314,
406,
284,
17985,
322,
22624,
342,
1705,
7112,
2063,
29889,
13,
13,
3868,
756,
15569,
2441,
4696,
322,
2825,
6047,
2874,
363,
263,
12875,
310,
12298,
29892,
18811,
275,
4110,
29892,
2563,
4863,
322,
5735,
4959,
29892,
1985,
411,
24242,
1316,
408,
16543,
433,
13693,
514,
2172,
29892,
476,
1617,
359,
24664,
300,
29892,
382,
4690,
6670,
313,
1807,
10256,
300,
29897,
322,
278,
21489,
5241,
23024,
8927,
25037,
23685,
29889,
13,
13,
3868,
15569,
278,
10996,
310,
1346,
1576,
13740,
18502,
898,
450,
12074,
3995,
12969,
287,
491,
1815,
265,
322,
7017,
287,
472,
278,
29871,
29906,
29900,
29896,
29896,
12009,
749,
4643,
8518,
29889,
940,
756,
8560,
2820,
2302,
2222,
6003,
1041,
297,
1570,
3088,
29892,
10734,
297,
7646,
16416,
5720,
29889,
9371,
884,
8799,
29879,
408,
263,
4696,
19915,
29892,
29537,
292,
4696,
363,
3509,
1266,
297,
1341,
292,
882,
813,
23400,
2616,
292,
670,
8570,
304,
9493,
322,
14499,
6694,
29889,
9371,
30010,
29879,
7271,
408,
263,
6125,
7138,
2265,
472,
25529,
2087,
1765,
5921,
29892,
19912,
17266,
800,
3386,
263,
9636,
1967,
29892,
756,
4207,
287,
670,
11509,
304,
23120,
263,
3132,
30010,
29879,
18551,
411,
6047,
29889,
5741,
277,
670,
4700,
304,
5110,
901,
1048,
670,
664,
470,
304,
6958,
1075,
29889,
13,
13,
29924,
295,
16343,
13488,
18015,
29892,
6853,
403,
7138,
2265,
13,
13,
29924,
295,
16343,
13488,
18015,
338,
263,
18737,
13493,
29899,
6707,
2706,
28107,
322,
5745,
6320,
1061,
5069,
664,
4145,
1475,
5626,
310,
5264,
470,
8604,
13500,
411,
17826,
23415,
322,
752,
7807,
5828,
29873,
7807,
29889,
26460,
1842,
292,
263,
2318,
310,
5866,
9701,
297,
263,
1602,
3076,
29899,
5426,
8589,
363,
29380,
15426,
297,
278,
4275,
14165,
29916,
29892,
470,
23415,
373,
1880,
29899,
27041,
10466,
8041,
773,
8805,
29899,
29873,
9265,
457,
5864,
304,
6963,
12646,
537,
304,
1009,
1283,
29899,
1552,
29899,
7720,
7881,
297,
14841,
10319,
29892,
6286,
16343,
30010,
29879,
664,
8569,
267,
373,
15874,
393,
6963,
263,
5199,
1543,
304,
278,
2228,
472,
1361,
29889,
13,
13,
18650,
1556,
7786,
1842,
653,
2706,
29892,
450,
6978,
372,
1551,
8010,
29892,
4477,
263,
2318,
310,
18737,
13493,
8041,
373,
263,
6520,
17487,
2466,
278,
4275,
29892,
297,
278,
11801,
1494,
7178,
4250,
3304,
30010,
29879,
22879,
15069,
2633,
29889,
739,
3902,
2361,
278,
29527,
749,
310,
278,
12886,
26863,
14104,
882,
9826,
1549,
278,
5076,
310,
967,
4123,
4890,
29892,
408,
1532,
408,
278,
470,
284,
3603,
583,
310,
10503,
4357,
12886,
26863,
21775,
2879,
408,
5429,
304,
278,
8041,
29889,
13,
13,
797,
6124,
304,
902,
664,
408,
263,
3005,
295,
749,
14297,
322,
6920,
29892,
6286,
16343,
338,
385,
12109,
18049,
18690,
272,
472,
390,
329,
5743,
3014,
25703,
6346,
29892,
322,
360,
1783,
29963,
29889,
1094,
385,
6320,
1061,
29892,
6286,
16343,
338,
19355,
304,
278,
2969,
393,
2472,
785,
297,
599,
310,
967,
7190,
785,
1818,
367,
3889,
322,
17644,
15579,
565,
263,
12459,
338,
304,
3933,
3710,
1680,
287,
29889,
2296,
338,
884,
263,
9226,
4658,
297,
278,
594,
482,
5129,
6293,
526,
825,
366,
17545,
30010,
322,
338,
14154,
24173,
304,
367,
1985,
373,
4673,
22948,
420,
785,
450,
13740,
310,
922,
5779,
29991,
13,
13,
9928,
3100,
624,
3451,
295,
29892,
24980,
1061,
13,
13,
9928,
3100,
338,
385,
3778,
1061,
29892,
8881,
29892,
322,
2653,
7988,
29899,
28107,
29889,
2296,
12399,
472,
278,
4523,
310,
278,
6838,
310,
28896,
11401,
29892,
12115,
29892,
363,
902,
350,
4519,
29892,
322,
472,
12603,
615,
29879,
3014,
29892,
988,
1183,
20591,
263,
350,
29909,
297,
3012,
5298,
29889,
2296,
471,
278,
23957,
993,
310,
278,
897,
3123,
25940,
3527,
515,
12603,
615,
29879,
3014,
297,
29871,
29906,
29900,
29896,
29900,
29892,
304,
6559,
28177,
297,
19825,
434,
29889,
2296,
14283,
263,
2653,
7988,
29899,
28990,
664,
19032,
2000,
12129,
27421,
297,
19825,
434,
297,
278,
11801,
310,
29871,
29906,
29900,
29896,
29900,
29889,
512,
29871,
29906,
29900,
29896,
29906,
1183,
4520,
278,
3201,
955,
292,
25940,
3527,
515,
278,
4523,
310,
278,
341,
4519,
29892,
12115,
29889,
2296,
12080,
322,
1736,
297,
1570,
3088,
29889,
13,
13,
3868,
1032,
283,
865,
4815,
29892,
4673,
292,
669,
2233,
14556,
530,
7715,
13,
13,
3868,
1032,
283,
865,
338,
385,
9612,
8368,
1058,
14061,
15319,
297,
2319,
2712,
29889,
2296,
28688,
304,
5735,
263,
2560,
2834,
3802,
304,
5469,
322,
1284,
14294,
386,
322,
22722,
297,
8735,
322,
4045,
29889,
2439,
23023,
1848,
3957,
304,
902,
664,
4084,
1379,
902,
907,
28157,
322,
9126,
14231,
6963,
902,
18551,
304,
2834,
29889,
1763,
1776,
902,
2011,
25648,
2828,
1244,
29889,
13,
13,
24083,
349,
275,
1562,
29892,
922,
287,
13402,
3457,
446,
390,
680,
530,
7715,
13,
13,
24083,
349,
275,
1562,
338,
263,
7142,
291,
29247,
12037,
261,
2729,
297,
23526,
29907,
411,
263,
350,
4519,
297,
12367,
293,
12037,
515,
450,
4523,
310,
9249,
11401,
29889,
3600,
664,
756,
1063,
15000,
297,
450,
1570,
3088,
10277,
29892,
422,
7584,
8068,
29892,
450,
3303,
18269,
29892,
341,
1164,
5005,
3919,
1964,
450,
830,
326,
351,
1312,
2787,
310,
19323,
438,
30010,
5594,
351,
5403,
322,
5164,
4696,
19707,
3704,
19141,
4366,
10926,
331,
30010,
29879,
1346,
3481,
17625,
9363,
22611,
4045,
29889,
5765,
884,
756,
670,
1914,
7774,
6150,
435,
4003,
29875,
432,
4003,
2488,
6146,
29889,
510,
29889,
1763,
1074,
901,
310,
670,
664,
6493,
29901,
21488,
4271,
29926,
1280,
3334,
1562,
29889,
510,
13,
13,
29967,
264,
1099,
8594,
352,
1335,
29892,
4007,
22137,
14059,
13,
13,
29967,
264,
1099,
8594,
352,
1335,
338,
263,
7786,
10591,
403,
310,
4526,
16398,
381,
4306,
3014,
29889,
2296,
3796,
408,
263,
19561,
4007,
22137,
373,
278,
29871,
29906,
29900,
29896,
29941,
19054,
29899,
29876,
5817,
630,
1842,
653,
1128,
304,
6298,
29894,
573,
263,
1858,
3437,
29892,
1048,
278,
319,
1367,
29903,
5039,
391,
2318,
3185,
5020,
1570,
3088,
29889,
2296,
884,
3796,
408,
263,
4918,
19561,
4007,
22137,
29914,
7900,
22137,
14059,
373,
278,
29871,
29906,
29900,
29896,
29941,
4275,
491,
4275,
5933,
29899,
8391,
1842,
653,
3219,
1693,
6472,
29892,
607,
4477,
278,
2820,
29899,
1552,
29899,
11526,
17623,
545,
310,
734,
264,
482,
14892,
272,
21671,
897,
29895,
3946,
29889,
1094,
1532,
408,
1985,
373,
1842,
4314,
29892,
1183,
5456,
29892,
10624,
29892,
322,
17524,
278,
3273,
5040,
29899,
29885,
8194,
2706,
8680,
27439,
936,
16367,
29892,
607,
4893,
278,
883,
310,
263,
26797,
1848,
9763,
1510,
322,
338,
731,
297,
263,
3186,
988,
19964,
293,
10188,
505,
4953,
263,
13460,
519,
2130,
706,
29889,
2296,
471,
6345,
322,
10425,
297,
4644,
2292,
1885,
29892,
1570,
14500,
29889,
13,
13,
29967,
264,
1099,
30010,
29879,
5076,
892,
6496,
304,
278,
5626,
310,
9687,
322,
7881,
2645,
902,
7952,
472,
385,
7609,
1848,
7881,
29914,
6388,
293,
17888,
29892,
1549,
278,
399,
29956,
29949,
9800,
27886,
3241,
1824,
29889,
2296,
338,
24173,
304,
1369,
15678,
777,
310,
902,
1914,
9687,
313,
354,
381,
417,
290,
409,
5779,
871,
14366,
363,
278,
937,
931,
445,
11801,
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
] |
miR-378a influences vascularization in skeletal muscles.
MicroRNA-378a, highly expressed in skeletal muscles, was demonstrated to affect myoblasts differentiation and to promote tumor angiogenesis. We hypothesized that miR-378a could play a pro-angiogenic role in skeletal muscle and may be involved in regeneration after ischemic injury in mice. Silencing of miR-378a in murine C2C12 myoblasts did not affect differentiation but impaired their secretory angiogenic potential towards endothelial cells. miR-378a knockout (miR-378a-/-) in mice resulted in a decreased number of CD31-positive blood vessels and arterioles in gastrocnemius muscle. In addition, diminished endothelial sprouting from miR-378a-/- aortic rings was shown. Interestingly, although fibroblast growth factor 1 (Fgf1) expression was decreased in miR-378a-/- muscles, this growth factor did not mediate the angiogenic effects exerted by miR-378a. In vivo, miR-378a knockout did not affect the revascularization of the ischemic muscles in both normo- and hyperglycemic mice subjected to femoral artery ligation (FAL). No difference in regenerating muscle fibers was detected between miR-378a-/- and miR-378+/+ mice. miR-378a expression temporarily declined in ischemic skeletal muscles of miR-378+/+ mice already on day 3 after FAL. At the same time, in the plasma, the level of miR-378a-3p was enhanced. Similar elevation of miR-378a-3p was reported in the plasma of patients with intermittent claudication in comparison to healthy donors. Local adeno-associated viral vectors (AAV)-based miR-378a overexpression was enough to improve the revascularization of the ischemic limb of wild type mice on day 7 after FAL, what was not reported after systemic delivery of vectors.In addition, the number of infiltrating CD45+ cells and macrophages (CD45+ CD11b+ F4/80+ Ly6G-) was higher in the ischemic muscles of miR-378a-/- mice, suggesting an anti-inflammatory action of miR-378a. Data indicates miR-378a role in the pro-angiogenic effect of myoblasts and vascularization of skeletal muscle. After the ischemic insult, the anti-angiogenic effect of miR-378a deficiency might be compensated by enhanced inflammation. The study reports elevated expression of miR-378a-3p in the plasma of mice subjected to femoral artery ligation and in the plasma of patients with intermittent claudication. Thus, miR-378a may be considered as a marker of ischemic muscle injury. | [
1,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
7112,
2063,
325,
6151,
1070,
2133,
297,
18109,
1026,
284,
2301,
7799,
29889,
13,
29924,
2357,
29934,
3521,
29899,
29941,
29955,
29947,
29874,
29892,
10712,
13384,
297,
18109,
1026,
284,
2301,
7799,
29892,
471,
28585,
304,
6602,
590,
711,
4230,
29879,
1422,
11685,
322,
304,
27391,
21622,
272,
2614,
29875,
6352,
6656,
29889,
1334,
13752,
267,
1891,
393,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
1033,
1708,
263,
410,
29899,
574,
29875,
6352,
293,
6297,
297,
18109,
1026,
284,
2301,
2841,
322,
1122,
367,
9701,
297,
1072,
759,
362,
1156,
338,
14969,
293,
24092,
297,
286,
625,
29889,
5664,
16750,
310,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
297,
7167,
457,
315,
29906,
29907,
29896,
29906,
590,
711,
4230,
29879,
1258,
451,
6602,
1422,
11685,
541,
2411,
29874,
2859,
1009,
7035,
706,
2614,
29875,
6352,
293,
7037,
7113,
1095,
720,
295,
616,
9101,
29889,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
18232,
449,
313,
2460,
29934,
29899,
29941,
29955,
29947,
29874,
29899,
29914,
15805,
297,
286,
625,
20601,
297,
263,
9263,
1463,
1353,
310,
7307,
29941,
29896,
29899,
1066,
3321,
10416,
24479,
322,
564,
357,
29875,
6544,
297,
330,
579,
10198,
15344,
2482,
2301,
2841,
29889,
512,
6124,
29892,
22964,
3276,
1095,
720,
295,
616,
7689,
449,
292,
515,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
29899,
24028,
263,
441,
293,
28774,
471,
4318,
29889,
23829,
11687,
29892,
5998,
18755,
307,
23190,
14321,
7329,
29871,
29896,
313,
29943,
29887,
29888,
29896,
29897,
4603,
471,
9263,
1463,
297,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
29899,
24028,
2301,
7799,
29892,
445,
14321,
7329,
1258,
451,
14457,
403,
278,
2614,
29875,
6352,
293,
9545,
429,
814,
287,
491,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
29889,
512,
325,
4243,
29892,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
18232,
449,
1258,
451,
6602,
278,
337,
4428,
16637,
2133,
310,
278,
338,
14969,
293,
2301,
7799,
297,
1716,
6056,
29877,
29899,
322,
11266,
16808,
19335,
293,
286,
625,
4967,
287,
304,
4445,
11251,
564,
22005,
14172,
362,
313,
29943,
1964,
467,
1939,
4328,
297,
1072,
759,
1218,
2301,
2841,
18755,
414,
471,
17809,
1546,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
29899,
24028,
322,
3737,
29934,
29899,
29941,
29955,
29947,
29974,
29914,
29974,
286,
625,
29889,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
4603,
5382,
6275,
4845,
1312,
297,
338,
14969,
293,
18109,
1026,
284,
2301,
7799,
310,
3737,
29934,
29899,
29941,
29955,
29947,
29974,
29914,
29974,
286,
625,
2307,
373,
2462,
29871,
29941,
1156,
383,
1964,
29889,
2180,
278,
1021,
931,
29892,
297,
278,
715,
25392,
29892,
278,
3233,
310,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
29899,
29941,
29886,
471,
427,
29308,
29889,
13999,
11858,
362,
310,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
29899,
29941,
29886,
471,
8967,
297,
278,
715,
25392,
310,
22069,
411,
1006,
18344,
296,
3711,
566,
293,
362,
297,
10230,
304,
9045,
29891,
1016,
943,
29889,
9959,
594,
8154,
29899,
21264,
630,
10636,
284,
12047,
313,
6344,
29963,
6817,
6707,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
975,
17471,
471,
3307,
304,
11157,
278,
337,
4428,
16637,
2133,
310,
278,
338,
14969,
293,
2485,
29890,
310,
8775,
1134,
286,
625,
373,
2462,
29871,
29955,
1156,
383,
1964,
29892,
825,
471,
451,
8967,
1156,
1788,
293,
28289,
310,
12047,
29889,
797,
6124,
29892,
278,
1353,
310,
297,
1777,
509,
1218,
7307,
29946,
29945,
29974,
9101,
322,
11758,
561,
1179,
313,
6530,
29946,
29945,
29974,
7307,
29896,
29896,
29890,
29974,
383,
29946,
29914,
29947,
29900,
29974,
8626,
29953,
29954,
15805,
471,
6133,
297,
278,
338,
14969,
293,
2301,
7799,
310,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
29899,
24028,
286,
625,
29892,
26233,
385,
9418,
29899,
13453,
314,
2922,
706,
3158,
310,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
29889,
3630,
14088,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
6297,
297,
278,
410,
29899,
574,
29875,
6352,
293,
2779,
310,
590,
711,
4230,
29879,
322,
325,
6151,
1070,
2133,
310,
18109,
1026,
284,
2301,
2841,
29889,
2860,
278,
338,
14969,
293,
1663,
499,
29892,
278,
9418,
29899,
574,
29875,
6352,
293,
2779,
310,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
822,
293,
13396,
1795,
367,
22874,
630,
491,
427,
29308,
4414,
4850,
362,
29889,
450,
6559,
13676,
11858,
630,
4603,
310,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
29899,
29941,
29886,
297,
278,
715,
25392,
310,
286,
625,
4967,
287,
304,
4445,
11251,
564,
22005,
14172,
362,
322,
297,
278,
715,
25392,
310,
22069,
411,
1006,
18344,
296,
3711,
566,
293,
362,
29889,
6549,
29892,
3737,
29934,
29899,
29941,
29955,
29947,
29874,
1122,
367,
5545,
408,
263,
17456,
310,
338,
14969,
293,
2301,
2841,
24092,
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
] |
Buffalo Pictorial Video By Rob Traquain
A look at Buffalo or North American Bison. From the importance to Native culture, to the buffalo hunters (inc. Buffalo Bill), includes modern images of the majestic beast which was almost lost and has been a symbol of the United States of America and Canada. | [
1,
22274,
7003,
349,
919,
9020,
13987,
2648,
6417,
3201,
339,
475,
13,
13,
29909,
1106,
472,
22274,
7003,
470,
4644,
3082,
350,
2285,
29889,
3645,
278,
13500,
304,
19042,
9257,
29892,
304,
278,
20487,
7003,
9074,
2153,
313,
3742,
29889,
22274,
7003,
6682,
511,
7805,
5400,
4558,
310,
278,
10067,
15931,
367,
579,
607,
471,
4359,
5714,
322,
756,
1063,
263,
5829,
310,
278,
3303,
3900,
310,
6813,
322,
7400,
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
] |
Available Options
GOVERNMENT AND COMMERCIAL BUYERS: GOVERNMENT CONTRACT AND QUANTITY PRICING IS AVAILABLE. CLICK ON THE BLUE BUTTON TO GET A PRICE QUOTATION ON THIS AND ANY OTHER ITEMS YOU NEED TO PURCHASE.
MAGPUL MS1 PADDED SLING - COYOTE
The Magpul MS1 Padded Sling is an optimized, dedicated, two-point sling that serves equally well in a one-point role when using optional adapters. Built around our MS1 slider, this system provides rapid adjustments to either lengthen or shorten the sling with no slipping once set and no tails, loops or other potential snag hazards. In a two-point role, the Magpul MS1 allows easy shoulder transitions, rapid adjustability for hands free rifle carry and shooting support from various positions.
The MS1 system also has a series of adapters that are sold separately and based on the MS3 and MS4 slings. By adding the appropriate adapter (available with Paraclip or QD Sling Swivel) for the sling, you can easily add one-point functionality to your Magpul MS1. | [
1,
7740,
3106,
25186,
13,
13,
17080,
5348,
29940,
13780,
5300,
4810,
7428,
1001,
8426,
1964,
350,
29965,
29979,
23598,
29901,
21947,
5348,
29940,
13780,
8707,
29911,
4717,
1783,
5300,
660,
29965,
13566,
11937,
12089,
2965,
4214,
8519,
16884,
29909,
6227,
6181,
29889,
17332,
2965,
29968,
6732,
6093,
350,
29931,
4462,
350,
2692,
29911,
1164,
7495,
12354,
319,
12089,
12107,
660,
29965,
2891,
8098,
6732,
3446,
3235,
5300,
13764,
29979,
438,
29911,
4448,
306,
4330,
4345,
612,
27269,
14693,
3352,
7495,
349,
4574,
3210,
8127,
29889,
13,
13,
1529,
29954,
7056,
29931,
10888,
29896,
349,
3035,
2287,
29928,
27146,
4214,
448,
4810,
29979,
2891,
29923,
13,
13,
1576,
3561,
29886,
352,
10888,
29896,
349,
23959,
317,
1847,
338,
385,
27545,
29892,
16955,
29892,
1023,
29899,
3149,
269,
1847,
393,
19700,
18018,
1532,
297,
263,
697,
29899,
3149,
6297,
746,
773,
13136,
594,
481,
2153,
29889,
5373,
2782,
2820,
1749,
10888,
29896,
23889,
29892,
445,
1788,
8128,
10952,
10365,
1860,
304,
2845,
3309,
264,
470,
3273,
264,
278,
269,
1847,
411,
694,
20662,
3262,
2748,
731,
322,
694,
260,
2234,
29892,
12104,
470,
916,
7037,
5807,
351,
447,
29920,
3163,
29889,
512,
263,
1023,
29899,
3149,
6297,
29892,
278,
3561,
29886,
352,
10888,
29896,
6511,
4780,
23468,
1301,
2187,
29892,
10952,
10365,
3097,
363,
6567,
3889,
17018,
280,
8677,
322,
27904,
2304,
515,
5164,
11909,
29889,
13,
13,
1576,
10888,
29896,
1788,
884,
756,
263,
3652,
310,
594,
481,
2153,
393,
526,
5239,
16949,
322,
2729,
373,
278,
10888,
29941,
322,
10888,
29946,
2243,
886,
29889,
2648,
4417,
278,
8210,
13304,
313,
16515,
411,
1459,
562,
3466,
470,
660,
29928,
317,
1847,
3925,
13255,
29897,
363,
278,
269,
1847,
29892,
366,
508,
5948,
788,
697,
29899,
3149,
9863,
304,
596,
3561,
29886,
352,
10888,
29896,
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
] |
Trump on Alabama Rally: It’s a ‘Real Happening’
On Friday evening in Mobile, AL, Republican presidential candidate Donald Trump said he expects to participate in a rally promoting his presidential candidacy that will have at least 30,000 people in attendance.
advertisement
Earlier in the day on local Mobile, AL FM Talk 106.5, Trump was interviewed by “Midday Mobile” host Sean Sullivan and explained how the event came to be and why his appearance is predicted to be hot ticket among the locals.
“A group of friends – and you know I’m very close to a lot of people – a lot of friends in Alabama,” he said. “This is just an amazing place. It’s my people. We’re all workers. We all work hard, we think hard and we love the country. And they wanted me to go to Mobile and what happened is we took a hotel ballroom that held like a thousand people and the company – the hotel company calls us up and says we’re getting swamped. And, ‘We don’t have enough room for this.’”
“And then they took another one that was larger and then another one and they went to I believe your convention center and I think it holds 10,000 people,” he continued. “And within a few minutes we were wiped out of that one because we were way over and then they end up going to your stadium – that’s the Ladd-Peebles because that was the only thing that could hold it. It’s become like a happening. It’s become an event and a real happening.” | [
1,
27504,
373,
26911,
390,
635,
29901,
739,
30010,
29879,
263,
5129,
21713,
379,
932,
8333,
30010,
13,
13,
2951,
28728,
11005,
297,
21600,
29892,
14445,
29892,
21178,
6673,
616,
14020,
18935,
27504,
1497,
540,
23347,
304,
5221,
403,
297,
263,
364,
635,
2504,
11427,
670,
6673,
616,
7105,
4135,
393,
674,
505,
472,
3203,
29871,
29941,
29900,
29892,
29900,
29900,
29900,
2305,
297,
14333,
749,
29889,
13,
13,
328,
1765,
275,
882,
13,
13,
29923,
279,
4926,
297,
278,
2462,
373,
1887,
21600,
29892,
14445,
20499,
323,
2235,
29871,
29896,
29900,
29953,
29889,
29945,
29892,
27504,
471,
15593,
287,
491,
1346,
29924,
2205,
388,
21600,
30024,
3495,
922,
273,
317,
913,
20595,
322,
10824,
920,
278,
1741,
2996,
304,
367,
322,
2020,
670,
10097,
338,
25383,
304,
367,
7375,
23381,
4249,
278,
1180,
1338,
29889,
13,
13,
30015,
29909,
2318,
310,
7875,
785,
322,
366,
1073,
306,
30010,
29885,
1407,
3802,
304,
263,
3287,
310,
2305,
785,
263,
3287,
310,
7875,
297,
26911,
3995,
540,
1497,
29889,
1346,
4013,
338,
925,
385,
21863,
292,
2058,
29889,
739,
30010,
29879,
590,
2305,
29889,
1334,
30010,
276,
599,
17162,
29889,
1334,
599,
664,
2898,
29892,
591,
1348,
2898,
322,
591,
5360,
278,
4234,
29889,
1126,
896,
5131,
592,
304,
748,
304,
21600,
322,
825,
9559,
338,
591,
3614,
263,
16730,
8287,
8345,
393,
4934,
763,
263,
10405,
2305,
322,
278,
5001,
785,
278,
16730,
5001,
5717,
502,
701,
322,
4083,
591,
30010,
276,
2805,
2381,
1160,
287,
29889,
1126,
29892,
5129,
4806,
1016,
30010,
29873,
505,
3307,
5716,
363,
445,
16412,
30024,
13,
13,
30015,
2855,
769,
896,
3614,
1790,
697,
393,
471,
7200,
322,
769,
1790,
697,
322,
896,
3512,
304,
306,
4658,
596,
15687,
4818,
322,
306,
1348,
372,
8640,
29871,
29896,
29900,
29892,
29900,
29900,
29900,
2305,
3995,
540,
7572,
29889,
1346,
2855,
2629,
263,
2846,
6233,
591,
892,
281,
666,
287,
714,
310,
393,
697,
1363,
591,
892,
982,
975,
322,
769,
896,
1095,
701,
2675,
304,
596,
10728,
1974,
785,
393,
30010,
29879,
278,
365,
1202,
29899,
15666,
774,
793,
1363,
393,
471,
278,
871,
2655,
393,
1033,
4808,
372,
29889,
739,
30010,
29879,
4953,
763,
263,
10464,
29889,
739,
30010,
29879,
4953,
385,
1741,
322,
263,
1855,
10464,
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
] |
OpenMPI will do this on its own. As shared memory in its mind is preferable to tcp. We can measure the difference here on the same kind of system (Sun x4600). If you want to force omitting tcp (should not be needed) run like this: | [
1,
4673,
29924,
2227,
674,
437,
445,
373,
967,
1914,
29889,
1094,
7258,
3370,
297,
967,
3458,
338,
5821,
519,
304,
22729,
29889,
1334,
508,
5645,
278,
4328,
1244,
373,
278,
1021,
2924,
310,
1788,
313,
29903,
348,
921,
29946,
29953,
29900,
29900,
467,
960,
366,
864,
304,
4889,
2703,
5367,
22729,
313,
9344,
451,
367,
4312,
29897,
1065,
763,
445,
29901
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Information
Reviews
September 11, 2017 - reviewed by Stacey's Posse RV
Lakeview Park RV/Campground
Very nice, quite, relaxing location. Camp Host is very helpful if you have any questions or problems. Electric hook up's at each site and a water and dump station at a central location. Flush toilet available at close shelter/picnic area, but no showers. | [
1,
10343,
13,
13,
1123,
7406,
13,
13,
2008,
3266,
29871,
29896,
29896,
29892,
29871,
29906,
29900,
29896,
29955,
448,
9076,
287,
491,
624,
815,
29891,
29915,
29879,
10321,
344,
390,
29963,
13,
13,
29931,
1296,
1493,
4815,
390,
29963,
29914,
29907,
1160,
2057,
13,
13,
29963,
708,
7575,
29892,
3755,
29892,
26681,
292,
4423,
29889,
7259,
16956,
338,
1407,
8444,
565,
366,
505,
738,
5155,
470,
4828,
29889,
26953,
12422,
701,
29915,
29879,
472,
1269,
3268,
322,
263,
4094,
322,
16766,
5073,
472,
263,
6555,
4423,
29889,
2379,
1878,
304,
488,
29873,
3625,
472,
3802,
27709,
29914,
16447,
7823,
4038,
29892,
541,
694,
1510,
414,
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
] |
Q:
Best way to integrate captcha in angularJS
I'm relatively new to angularJS and I wonder what would be the cleanest solution to the following problem.
Let's say I have a form such as follows
<form name="contactform">
<select id="salutation" name="salutation" required="true" ng-model="contactRequest.salutation"><option value="Herr" selected="">Herr</option><option value="Frau">Frau</option></select>
<img width="255" height="70" alt="" src="/website/var/tmp/aed4d639a26c4614cdac2a967381c61c.png" name="captcha[img]">
<captcha-reloader reload-url="/refresh-captcha" img-tag-name="captcha[img]" hidden-field-name="captcha[id]"></captcha-reloader>
<input type="text" name="captcha[input]" required="true" ng-model="contactRequest.captcha.input">
<input type="text" style="display: none;" ng-model="contactRequest.captcha.id" value="aed4d639a26c4614cdac2a967381c61c" name="captcha[id]">
...
As you can see, it uses a directive to display a button which will reload the CAPTCHA. It is defined as
myApp.directive('captchaReloader', function () {
return {
restrict: 'E',
scope: {
reloadUrl: '@',
imgTagName: '@',
hiddenFieldName: '@'
}, //isolate scope
template: '<a href="" ng-click="reloadCaptcha()" class="captcha-reload"></a>',
link: function (scope, element, attrs) {
},
controller: function ($scope, $element, $attrs, $http) {
$scope.reloadCaptcha = function () {
$http.get($attrs.reloadUrl).then(function (res) {
angular.element('img[name="' + $attrs.imgTagName + '"]').attr('src', res.data.imgSrc);
angular.element('input[name="' + $attrs.hiddenFieldName + '"]').val(res.data.id);
angular.element('input[name="' + $attrs.hiddenFieldName + '"]').trigger('input');
});
};
}
};
)};
If I click on the button, the captcha image and value (hidden field) are updated. It works fine so far.
Now, I want to handle form submission in controller (see methode below). If there is an error (server-side validation), the captcha has to be updated. I don't know whats the best way to trigger the updated-process defined in the directive. Can anyone help?
myApp.controller('KontaktCtrl', function ($scope, $location, CustomerDataService, CaptchaService) {
$scope.contactRequest = {
salutation: 'Herr',
captcha: {
id: initialCaptchaId
}
};
$scope.errors = {};
$scope.submitAction = function () {
CustomerDataService.sendRequest($scope.contactRequest).then(function (res) {
var data = res.data;
if (res.data.data !== null) { //errors in form. Display them
//error handling
$scope.reloadCaptcha();
} else {
goToHomeView();
}
}, function (error) {
console.log('An error occurred while updating!', error);
});
};
var goToHomeView = function () {
$location.path('/');
};
});
Additionally, I have to init the values of select-box and captcha, cause otherwise they are not sent (because the are untouched). Is there any way to avoid this?
PS: I found a reCAPTCHA directive, but reCAPTCHA is no option due to styling limitations.
A:
Its very simple follow the steps...
<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit"
async defer></script>
<script>
var onloadCallback = function() {
widgetId1 = grecaptcha.render('example1', {
'sitekey' : 'Site-Key-',
'theme' : 'light'
});
};
</script>
<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit"
async defer>
Now at the form put it
<div id="example1"></div>
<p style="color:red;">{{ captcha_status }}</p>
Validate with angular
if(grecaptcha.getResponse(widgetId1)==''){
$scope.captcha_status='Please verify captha.';
return;
}
| [
1,
660,
29901,
13,
13,
25353,
982,
304,
22782,
4332,
5815,
297,
6401,
8700,
13,
13,
29902,
29915,
29885,
13774,
716,
304,
6401,
8700,
322,
306,
4997,
825,
723,
367,
278,
5941,
342,
1650,
304,
278,
1494,
1108,
29889,
13,
12024,
29915,
29879,
1827,
306,
505,
263,
883,
1316,
408,
4477,
13,
29966,
689,
1024,
543,
12346,
689,
1013,
13,
259,
529,
2622,
1178,
543,
19585,
329,
362,
29908,
1024,
543,
19585,
329,
362,
29908,
3734,
543,
3009,
29908,
8736,
29899,
4299,
543,
12346,
3089,
29889,
19585,
329,
362,
3254,
3385,
995,
543,
29950,
3127,
29908,
4629,
543,
1013,
29950,
3127,
829,
3385,
5299,
3385,
995,
543,
29943,
336,
29884,
1013,
29943,
336,
29884,
829,
3385,
2565,
2622,
29958,
13,
13,
259,
529,
2492,
2920,
543,
29906,
29945,
29945,
29908,
3171,
543,
29955,
29900,
29908,
5272,
13776,
4765,
13802,
22942,
29914,
1707,
29914,
7050,
29914,
29874,
287,
29946,
29881,
29953,
29941,
29929,
29874,
29906,
29953,
29883,
29946,
29953,
29896,
29946,
2252,
562,
29906,
29874,
29929,
29953,
29955,
29941,
29947,
29896,
29883,
29953,
29896,
29883,
29889,
2732,
29908,
1024,
543,
17885,
5815,
29961,
2492,
29962,
1013,
29871,
13,
13,
259,
529,
17885,
5815,
29899,
276,
12657,
19763,
29899,
2271,
13802,
22379,
29899,
17885,
5815,
29908,
10153,
29899,
4039,
29899,
978,
543,
17885,
5815,
29961,
2492,
18017,
7934,
29899,
2671,
29899,
978,
543,
17885,
5815,
29961,
333,
29962,
5319,
17885,
5815,
29899,
276,
12657,
29958,
13,
13,
259,
529,
2080,
1134,
543,
726,
29908,
1024,
543,
17885,
5815,
29961,
2080,
18017,
3734,
543,
3009,
29908,
8736,
29899,
4299,
543,
12346,
3089,
29889,
17885,
5815,
29889,
2080,
1013,
462,
13,
13,
259,
529,
2080,
1134,
543,
726,
29908,
3114,
543,
4990,
29901,
5642,
15458,
8736,
29899,
4299,
543,
12346,
3089,
29889,
17885,
5815,
29889,
333,
29908,
995,
543,
29874,
287,
29946,
29881,
29953,
29941,
29929,
29874,
29906,
29953,
29883,
29946,
29953,
29896,
29946,
2252,
562,
29906,
29874,
29929,
29953,
29955,
29941,
29947,
29896,
29883,
29953,
29896,
29883,
29908,
1024,
543,
17885,
5815,
29961,
333,
29962,
1013,
1678,
13,
856,
13,
13,
2887,
366,
508,
1074,
29892,
372,
3913,
263,
17041,
304,
2479,
263,
2826,
607,
674,
19763,
278,
315,
3301,
29911,
3210,
29909,
29889,
739,
338,
3342,
408,
13,
1678,
590,
2052,
29889,
11851,
573,
877,
17885,
5815,
29934,
7078,
1664,
742,
740,
3861,
426,
13,
1678,
736,
426,
13,
4706,
9250,
29901,
525,
29923,
742,
13,
4706,
6874,
29901,
426,
13,
9651,
19763,
5983,
29901,
18803,
742,
13,
9651,
10153,
29269,
29901,
18803,
742,
13,
9651,
7934,
3073,
1170,
29901,
18803,
29915,
13,
4706,
2981,
849,
275,
23167,
6874,
13,
4706,
4472,
29901,
12801,
29874,
2822,
13776,
8736,
29899,
3808,
543,
28120,
21133,
5815,
25318,
770,
543,
17885,
5815,
29899,
28120,
5319,
29874,
29958,
742,
13,
4706,
1544,
29901,
740,
313,
6078,
29892,
1543,
29892,
12421,
29879,
29897,
426,
13,
13,
4706,
2981,
13,
4706,
4701,
29901,
740,
3255,
6078,
29892,
395,
5029,
29892,
395,
5552,
29879,
29892,
395,
1124,
29897,
426,
13,
9651,
395,
6078,
29889,
28120,
21133,
5815,
353,
740,
3861,
426,
13,
18884,
395,
1124,
29889,
657,
1566,
5552,
29879,
29889,
28120,
5983,
467,
6098,
29898,
2220,
313,
690,
29897,
426,
13,
462,
1678,
6401,
29889,
5029,
877,
2492,
29961,
978,
543,
29915,
718,
395,
5552,
29879,
29889,
2492,
29269,
718,
525,
3108,
2824,
5552,
877,
4351,
742,
620,
29889,
1272,
29889,
2492,
29903,
2214,
416,
13,
462,
1678,
6401,
29889,
5029,
877,
2080,
29961,
978,
543,
29915,
718,
395,
5552,
29879,
29889,
10892,
3073,
1170,
718,
525,
3108,
2824,
791,
29898,
690,
29889,
1272,
29889,
333,
416,
13,
462,
1678,
6401,
29889,
5029,
877,
2080,
29961,
978,
543,
29915,
718,
395,
5552,
29879,
29889,
10892,
3073,
1170,
718,
525,
3108,
2824,
21001,
877,
2080,
2157,
13,
18884,
2604,
13,
9651,
3980,
13,
4706,
500,
13,
1678,
3980,
13,
2915,
29936,
13,
13,
3644,
306,
2828,
373,
278,
2826,
29892,
278,
4332,
5815,
1967,
322,
995,
313,
10892,
1746,
29897,
526,
4784,
29889,
739,
1736,
2691,
577,
2215,
29889,
13,
10454,
29892,
306,
864,
304,
4386,
883,
29240,
297,
4701,
313,
4149,
286,
621,
356,
2400,
467,
960,
727,
338,
385,
1059,
313,
2974,
29899,
2975,
8845,
511,
278,
4332,
5815,
756,
304,
367,
4784,
29889,
306,
1016,
29915,
29873,
1073,
825,
29879,
278,
1900,
982,
304,
7135,
278,
4784,
29899,
5014,
3342,
297,
278,
17041,
29889,
1815,
5019,
1371,
29973,
13,
1678,
590,
2052,
29889,
8299,
877,
29968,
609,
5867,
18069,
742,
740,
3255,
6078,
29892,
395,
5479,
29892,
21886,
1469,
3170,
29892,
8868,
5815,
3170,
29897,
426,
13,
1678,
395,
6078,
29889,
12346,
3089,
353,
426,
13,
4706,
4497,
329,
362,
29901,
525,
29950,
3127,
742,
13,
4706,
4332,
5815,
29901,
426,
13,
9651,
1178,
29901,
2847,
21133,
5815,
1204,
13,
4706,
500,
13,
1678,
3980,
13,
1678,
395,
6078,
29889,
12523,
353,
15739,
13,
13,
1678,
395,
6078,
29889,
7892,
4276,
353,
740,
3861,
426,
13,
4706,
21886,
1469,
3170,
29889,
6717,
3089,
1566,
6078,
29889,
12346,
3089,
467,
6098,
29898,
2220,
313,
690,
29897,
426,
13,
9651,
722,
848,
353,
620,
29889,
1272,
29936,
13,
9651,
565,
313,
690,
29889,
1272,
29889,
1272,
15639,
1870,
29897,
426,
849,
12523,
297,
883,
29889,
17440,
963,
13,
18884,
849,
2704,
11415,
13,
18884,
395,
6078,
29889,
28120,
21133,
5815,
890,
13,
9651,
500,
1683,
426,
13,
18884,
748,
1762,
11184,
1043,
890,
13,
9651,
500,
13,
4706,
2981,
740,
313,
2704,
29897,
426,
13,
9651,
2991,
29889,
1188,
877,
2744,
1059,
10761,
1550,
13271,
29991,
742,
1059,
416,
13,
4706,
2604,
13,
1678,
3980,
13,
13,
1678,
722,
748,
1762,
11184,
1043,
353,
740,
3861,
426,
13,
4706,
395,
5479,
29889,
2084,
11219,
2157,
13,
1678,
3980,
13,
3680,
13,
13,
2528,
17658,
29892,
306,
505,
304,
2069,
278,
1819,
310,
1831,
29899,
1884,
322,
4332,
5815,
29892,
4556,
6467,
896,
526,
451,
2665,
313,
18103,
278,
526,
443,
16747,
287,
467,
1317,
727,
738,
982,
304,
4772,
445,
29973,
13,
7024,
29901,
306,
1476,
263,
337,
29907,
3301,
29911,
3210,
29909,
17041,
29892,
541,
337,
29907,
3301,
29911,
3210,
29909,
338,
694,
2984,
2861,
304,
15877,
1847,
27028,
29889,
13,
13,
29909,
29901,
13,
13,
29902,
1372,
1407,
2560,
1101,
278,
6576,
856,
13,
29966,
2154,
4765,
543,
991,
597,
1636,
29889,
3608,
29889,
510,
29914,
276,
17885,
5815,
29914,
2754,
29889,
1315,
29973,
265,
1359,
29922,
265,
1359,
10717,
29987,
9482,
29922,
4548,
4019,
29908,
13,
12674,
316,
571,
2565,
2154,
29958,
13,
13,
29966,
2154,
29958,
13,
1678,
722,
373,
1359,
10717,
353,
740,
580,
426,
13,
4706,
11109,
1204,
29896,
353,
1395,
17885,
5815,
29889,
9482,
877,
4773,
29896,
742,
426,
13,
9651,
525,
2746,
1989,
29915,
584,
525,
17033,
29899,
2558,
29899,
742,
13,
9651,
525,
18193,
29915,
584,
525,
4366,
29915,
13,
4706,
2604,
13,
1678,
3980,
13,
829,
2154,
29958,
13,
29966,
2154,
4765,
543,
991,
597,
1636,
29889,
3608,
29889,
510,
29914,
276,
17885,
5815,
29914,
2754,
29889,
1315,
29973,
265,
1359,
29922,
265,
1359,
10717,
29987,
9482,
29922,
4548,
4019,
29908,
13,
12674,
316,
571,
29958,
13,
13,
10454,
472,
278,
883,
1925,
372,
13,
29966,
4563,
1178,
543,
4773,
29896,
5319,
4563,
29958,
29871,
13,
29966,
29886,
3114,
543,
2780,
29901,
1127,
12334,
6224,
4332,
5815,
29918,
4882,
9156,
829,
29886,
29958,
13,
13,
7211,
403,
411,
6401,
13,
361,
29898,
7979,
17885,
5815,
29889,
657,
5103,
29898,
8030,
1204,
29896,
29897,
1360,
29915,
1495,
29912,
13,
1678,
395,
6078,
29889,
17885,
5815,
29918,
4882,
2433,
12148,
11539,
2117,
15457,
29889,
2670,
13,
1678,
736,
29936,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Saturday, January 31, 2009
Critique, Worldbuilding, Rituals
All right, late with this post. I've been writing a lot lately, that's usually how a book goes near the end -- though this does seem to be more stop and go than I remember, but memory is definitely faulty when looking back on writing a book. ;)
Right now I'm stuck because I just realized I needed a wedding ceremony and I've never actually written one for the Celta books...I've written portions...before and after, but not a full ceremony, and even though I'm not going to write words or anything, I figured I needed to allude occasionally to what was going on. So, research, right after this.
Most of my ceremonies are researched and cobbled together into what feels right to me for the world, and what might affect the characters the most -- that was how the Yule ceremony was written in Heart Fate. As for the ritual near the beginning of Heart Fate, that particular one I made up completely and was one of those gifts of inspiration that writers occasionally get.
And I'm having problems making the wedding bit do what needs to be done, so I may have to think on it (or let it simmer in the back of my head) more, and get the bare bones out and come back to it to fix. It could be the last scene I write in the book. ;)
So that's what I've been doing -- oh, and Critique group was today and I didn't bring pages. I always bring pages, but I didn't want to get my head back in chapter 5 of the book when I'm at the end. Mentor's was hashed on until we figured out the one line that was screwing the scene, short story for the anthology was worked on, S.'s was perfect (rewrite of last). We all agreed that we are a TOUGH group. Nobody gets away with anything. Wish I had the time to submit the ms. to the whole group, but that just doesn't work.
Well, I've rambled on a lot now, so I'll let you enjoy, or not.
The kernel advice for this post: modify your rituals for your world, and make them what you can live with for an entire series.
Thursday, January 29, 2009
Scenes vs. Wordcount
When it comes down to the last part of the book, my list of scenes, then my days are not ruled by wordcount. It's a matter of scenes. I plan on which I will work on today and sometimes make it (and wordcount) and sometimes don't.
This is particularly true when I know the book is long. The more words I do is not necessarily better than getting the book done. It's a good gauge for what I've done and may boost my ego if I add it to a yearly wordcount, but that's about it.
So I do keep track of wordcount, but I don't obsess over it (I obsess over the list).
And I suppose that's what people do who plot or outline rather than writing by the seat of their pants (pantzer) or out of sequence. Ah, here's what needs to happen next, I can do that!
It's an interesting feeling, but I still like the surprises of what comes when you aren't entirely sure of what WILL happen next.
Wednesday, January 28, 2009
Tuesday, January 27, 2009
Fear In It's Many Forms
Bottom line at the top: Do it anyway, despite the fear.
I've been getting the heebie jeebies about Heart Change (and I just wrote Heart Fate and had to retype which shows that this is an ongoing thing and I've spoken of it before). The problem is, I sometimes spend too much time analyzing what is bothering me instead of just planting the bottom in the chair and writing.
In pretty much order I've experienced the following;
I'm not meeting my wordcount deadline.I'm not going to be able to finish the book.This is complicated and how am I going to make it work? I'm not going to be able to make it work.I'm going over wordcount.Too much is going on at one time, too many subplots that are not dovetailing.
And the last couple of days:I know what I want to write and I want it so BADLY to be perfect and right and I won't find the right words to make it match my vision...and that's probably true.
I have my list of what the end of the book must look like, so I'm solid there. Some items have even been crossed off.
So what I did to get over the fear was to do another list of the scene I need to write. One item may be a paragraph or two, the next several pages, but at least it's in my head...and I can print it out and fear won't jumble my thoughts and fingers enough to make me miss something...
Monday, January 26, 2009
Louisville Signing February 7
Come join me and 5 of my fellow published Colorado romance writers to celebrate love and romance at the Louisville Public Library on Saturday, February 7, 2009, from 1-3pm. The event is free, but space is limited so call 303-335-4849 ext 4 to register yourself soon.
The six of us represent different sub-genres of romance. I will be joined by: Melissa Mayhue (time travel/paranormal), Tara Janzen (romantic suspense), Renee Knowles (contemporary & Regency), Elaine Levine (Western), and Lynda Hilburn (paranormal/vampire) (edit accordingly). We will be sitting in small intimate groups with you doing readings and answering questions.
This event is being hosted by the Louisville Public Library and is being supported by many of the women business owners of downtown Louisville. They have provided some fabulous prizes that will be given away at the end of the event (clothing, books, gift certificates for consultations, framing services, photography sittings, psychic readings and more.)
Our books will be available for sale and we all would be happy to autograph copies for you.
The library is located at: 951 Spruce Street, downtown Louisville (80027). There is parking under the library as well as on the streets surrounding the building.
Sunday, January 25, 2009
Extroverted Writers, Signings
Of all the writers I know, only a few are extroverts, and I think I may be becoming more hermit since I lost the day job. Sometimes it's hard for me to tell who's an extrovert and who isn't. I always thought my mentor was an extrovert, and she is, like I am, when she's surrounded by our writer friends, when out in the real world, not so much.
I admire extroverted writers tremendously. I think it's easier for them to connect with readers when out, easier for them to push their work, to make people enthusiastic about their work.
For instance, I have some signings coming up (let me know if you're in the area February or March), and I didn't set one of these up. If asked, I usually say I'd be glad to sign, but not by myself. And usually I know who else has books coming out in the general time frame as I do.
Sooo...I'm thinking I should get out and circulate more (though today is Sunday brunch and that pretty much fulfills my need for social interaction for a couple of days). It's also cloudy and snowy which means I think about staying in.
I DID cancel my plans to be at Romantic Times. I've got excuses and rationalizations for that, as well as good reasons for and against. I've always thought it was too expensive, and in these times I can't manage it unless my next new ideas sell big.
So if you're an extrovert and a writer, celebrate. If you're an introvert, welcome to the club, there's plenty of us.
Meanwhile I'm on the last story day of the book and am looking forward to that the next couple of days. I may be able to finish the book as planned in Jan.
Saturday, January 24, 2009
Echoes In the Dark Library Journal Review
As you know, the Library Journal review of my work is important to Mom. So here's what I got:
Library Journal ReviewJan 1, 2009 Issue
Owens, Robin D. Echoes in the Dark. Luna: Harlequin. (The Summoning, Bk. 5). Jan. 2009. c.560p. ISBN 978-0-373-80293-7. pap. $14.95. FANTASYDisillusioned by her career as a singer and devastated by the death of her grandmother, Jikata finds herself transported from Denver, CO, to a strange land called Lladrana. In that realm, music plays a key role in unlocking an ancient mystery that may help defeat the forces of Dark. The conclusion to Owens's "Summoning" series (e.g., Guardian of Honor) features strong and distinct female characters, new forms of magic, and a blend of adventure and romance. A good addition to most fantasy collections.*******Really like it.
Heart Change, Reading, Writing
As I was making tea a couple of nights ago and thinking I needed to go back to the computer and make a list of what was going to happen (I've spoken about how I do my final chapters list, and I knew this would be a very preliminary one), I thought "You know, this is a good story. I wish I were reading it instead of writing it. Easier..."
Tuesday, January 20, 2009
Worldbuilding Complications, Residences, Characters, Climax
Because at the climax your hero/heroine/villain MUST NOT deviate from character. They must all react the same that they have throughout the entire book.
And in the Celta books I have sentient houses, that, as my mentor pointed out, complicates things...like a kidnapping, or evil deeds afoot...and I have telepathy and teleportation. So those in danger should be able to both of those things...
It's true that so far (and I need to check on this), a person can usually only teleport like once a day without wiping themselves out (the younger generation can do it more often as their power/Flair is growing).
So I had all these "why doesn't the Residence give the alarm" and "what can the Residence 'see' outside its doors" (nothing unless there is a scrystone hooked up).
And why would the villain hang around for the hero to find him instead of just doing the evil deed and teleporting away...since villain hopes this will be considered an accident?
I think my brain was close to frying, and, of course, I spoke to my mentor late in the day AFTER I had written one of the climactic scenes that will not work now because it took place in the Residence.
Sunday, January 18, 2009
I know I've said these are very important, and one of my (old) favorite writers could never nail the ending. It was as if she wrote most of the book and rand out of time and ended it in a paragraph or two. Even as a reader I hated that.
And I've also said that I write out of order. Don't know if I told you all, but Heart Dance's, Protector of the Flight's, and Echoes In the Dark's ending were all written and saved as separate scenes, chapters.
Sometimes easier to write climactic bits! Echoes In the Dark's ending battle had to be crafted well (and I hope I did that) and make sense, especially going back and forth between the men and the women. I think I revised those scenes upward of five/six times.
Well, the ending of Heart Change came to me this morning as I was laying in bed after I woke. I knew what I wanted to do, but didn't know how I was going to do it. Ok, I wanted to separate Cratag and Signet at a vital moment and the event needed to have certain pre-requisites. This morning I got the idea and I'm pretty sure I can make it work.
So I'm pleased though I've been researching and haven't written a word other than this, haven't done anything but feed the cats (who are not happy with their venison).
Saturday, January 17, 2009
Visual vs. Auditory Writers, Inspiration
My mentor can't listen to music when she writes because mostly she listens to dialogues and descriptions. I've heard Catie Murphy tell the story that one descriptive passage took her hours to create because she is not a "visual" writer.
For me, as with most, a film can unroll in my minds eye. In my very early days as a writer I had a beginning critique buddy, just like me. We looked at each other's work before we took it to critique group. She complained about not knowing where a scene went, I asked if she could see it and she said yes, and I said just follow the roll of the film. She said the movie stopped...I'm not sure what we went on to talk about after that, probably what should happen next in the scene...but it was her scene and I can still see a man and a woman in the moonlight, sitting in a hot tub...
Anyway, at the best of times, I get a sentence in my head to start the scene so I don't have the blank page. Such as "Mid-morning bell, a very quiet Vinni arrived, carrying a picnic basket."
Now, I know that this is in Signet's POV. I know she opens the door. She/I can see Vinni, more, she/I see MORE than just Vinni that won't be in the story. The door to the house is open and beyond is the gliderway and the front yard and large trees which have just unfurled their full, new leaves, a mass of green with the sun bright behind them. To the right are the flowers and bushes of the garden. Spring is finally here...I'm not going to explain this in the book, but I see it.
Signet's going to study Vinni and note the changes since she'd seen him before, then Vinni will open his mouth and say the first line of dialogue and the scene will take off from there.
That's how it's supposed to work, so why don't I try it and see instead of hang around here? ;)
Friday, January 16, 2009
Juggling Writing Promo Proposals Real Life
When you're a published writer, you need to learn to juggle (which I haven't been doing very well this week. I should be making my wordcount on Heart Change, but I also have a new book out, Echoes In The Dark, that I need to promote, not to mention getting some proposals together (and I'm taking a plotting class that I've posted to once), and, of course, real life.
I cancelled my retreat in the mountains last week because of car/catsitting matters, so there went emotional and spiritual support. I allowed the all day chat, car going in to be serviced (ouch!) and the open mic last night to derail my writing. Yesterday I spent time reading some work for three contests I'm judging.
Sooo....I'm certain you can do it all if you manage your time and EMOTIONS correctly. Yahoo freezing up Tuesday morning did not help with the chat. If I'd used the two hours I spent messing around with that to write instead of trying to understand and fix what was wrong, I'd have made my full wordcount. (But on the plus side, I now have five sets of interview questions I've answered that I can pull from if there's a fast interview that needs to be put together).
Then there was the time taking the car in on Wednesday (more than I expected), the worry about expense WHICH I SHOULD NOT HAVE ALLOWED TO GET TO ME (very much more than I expected, who knew my old SAAB's headlight would cost $300 for the part alone). Then the taxi ride and expense to the mechanic's.
I've been worried about money lately so I've cancelled my trip to Romantic Times convention.
Yesterday I messed around all day reading contest entries (one was wonderful, the rest were good), and practicing reading my segment for the open mic (which was about 45 minutes away). I switched at the last minute from Echoes in the Dark to Heart Fate, which I don't think served me well.
Anyway, bottom line is, that you should sit down and write no matter what. Tune the world out, let the muse come. YOU (I) CAN DO THIS.
I think I need to be journalling to figure out what's stirring around in my innards.
Tuesday, January 13, 2009
More Story Than Pages
My Heart books usually come in right around 500 pages. In fact I like them to be that so I don't use more than one ream of paper (and if the ream is short, I know it).
However, I'm at the 400 page mark and know I have a LOT more story with Heart Change...two small subplots to tie up with a scene each and one major outer plot to get done. Not to mention the black moment and the romance. **Sigh**
So this means I will probably run long, and since I think my set up is slower than I like, I'll be cutting scenes from the front of the book. This can always hurt but 1) I no longer view my words and scenes as "precious" and set in stone, and 2) I've learned to assuage my hurt at cutting by putting some of the extra scenes up on my website.
In the end, all to the good.
I could, of course, start cutting and rearranging now, but it's better to get the full story down so I know how much needs to be cut.
That's all for now as I've been pushing my limits and am brain dead and only want a nap.
May you know what to keep and what to throw away today (or at least save in another file).
Sunday, January 11, 2009
Wordcount Competition, Measuring Youself By Others
Don't measure yourself by others, you and your process are unique.
I always have this problem of needing to equal others' wordcount, even though I KNOW every writer is different...So, for the new year I will try harder NOT to measure myself by others, and be happy when I meet MY OWN Goals.
Saturday, January 10, 2009
Someone asked for a pic of Raine or a prospective cover or whatever. First, I LOVE this artist, Jean Paul Avisse. I have a screensaver by him from Second Nature, and I pass out the Self Care cards that feature a lot of his work at my seminars, retreats, critique groups, etc.
THIS IS A PORTION OF JEAN PAUL AVISSE'S "FROZEN LOVE" WORK, IT IS COPYRIGHTED BY HIM AND YOU CAN CONTACT HIS REPRESENTATIVES AT THE LINK ABOVE.
I don't think of Raine as quite this pale, a little more tanned...and this would have made a fabulous book cover...
Friday, January 09, 2009
Writing Intense Scenes
Yesterday I geared myself up to write a scene I'd been pretty much avoiding for a month. Today was just as intense and after three hours to meet my wordcount, I'm exhausted.
So there's mental work and physical work and day jobs and writing job...and how to weigh one with the other.
I can handle blogging and promotion and research today, but I don't know that I could go back to the writing. And I'm not sure of the emotional punch, either. I think it's there, but I have a feeling I'll have to revise and add to it. I know I got the essence of the scene down but may need to add descriptions and more character emotions to it. I have a feeling this bit is not something I'll be able to judge, and I'll never get the new impact because I know it's been coming longer than I've been published and it will never be a surprise.
Whew.
Meanwhile, my retreat to Fairplay is OFF since Dingo got in a cat fight and needs medicine twice a day (he's actually very well but had a nasty infection), and my regular catsitters are both unavailable. And I didn't get the car in to be serviced beforehand....
Anyway, that's it from me and the days have been grayer than normal with hardly an hour of sunlight and that's hard for me, too. I don't know that I would ever be able to live in Ireland, a dream of mine.
Tuesday, January 06, 2009
Unpublished Work -- Pitch for Betrothal and Blackmail
Liked the name of this one A charming hero, and historical lite, Regency setting and mores is all.
My only NON-paranormal novel length manuscript (I think I have a couple of proposals). I recall that I worked hard on the opening and liked it, and liked Emily, the heroine, and the love scene.
I finished this book a day before I heard Christopher Vogler lecture on The Writer's Journey. I went straight home and checked the manuscript out, and, by golly, I'd hit every one of his archetypal story "beats" right on. I was thrilled. So I recall the Threshold Guardian scene with the French chef especially.
The Pitch:
Betrothal and Blackmail is a historical romance set in Regency England in which the hero and heroine agree to a false betrothal as a condition to obtain his property from his evil aunt. At the houseparty to formally announce their betrothal, the aunt is murdered. The hero and heroine discover the depth of their love for each other while they search for the murderer among a myriad of blackmail victims.
Monday, January 05, 2009
What Every Writer Fears
Sunday, January 04, 2009
Reading and Writing -- Sun or Shadow, Weather Affects Writing
A couple of times in the last couple months (once in SC and once online) I've heard a writer say that when it's a bright and sunny day it's hard for them to write. For me if it's a gray day, I want to burrow in and read and play and munch...not write. I know other local writers who agree.
This may be one of those geographical things. A gray day, especially a misty or rainy day -- all day -- is a rarity here. Usually the sun shines, at least a few minutes of every day. Currently I get sun in my office from about 7:30 am to 4 pm and bright sun in the dining room mid-afternoon. If I didn't work when it was sunny I would hardly work at all.
Friday, January 02, 2009
Favorite Opening
All right, on that 12 hour excerpt deal someone asked me about my novella, Road of Adventure in the anthology What Dreams May Come and I posted the opening. It's one of my favorites, so I'll put it here (though I think it's on my website, too). Contemporary paranormal romance. August. Denver.
***********************************
He was the ugliest cat Jake had ever seen. The black and white tom had an aura of maleness surrounding him, even as he licked his paw and eyed Jake with disdain. One of Jake’s ex-girlfriends had used that aura of maleness phrase to describe him, and he’d thought it was crap, now he knew what she’d meant.
The cat set down his paw and sniffed. “I knew you’d come here.”
Jake must be dreaming. Cats sure as hell didn’t talk. The surroundings hadn’t tipped Jake off. He spent a lot of time in the gym locker room. He shifted. The bench seemed solid and hard for a dream.
He looked back at the cat and choked. Now it sat on what looked to be a small, ancient Greek pillar, like Jake had seen while watching the Olympics. Behind the cat wasn’t the opposite wall of gym lockers, but a temple that showed bright blue sky between fluted pillars.
Jake swallowed. Definitely a dream, though since he’d never had a cat, he wondered what the thing was doing in his dream. He narrowed his eyes. That cat! The battered tom looked familiar. Didn’t he have a run-in or two....
The cat lifted a pink nose with a black spot and sent Jake an icy stare. Jake’s cop instincts rang loud and clear that something was very, very wrong. But what could be too wrong in a dream? He looked down. Yep, fully clothed. He wouldn't walk into the Captain’s office naked.
The cat hissed. “My name is Borisssssssss.”
“Huh,” said Jake. He stood and stretched, all his muscles worked fine. Some called him an endorphin-adrenaline junkie, but he just liked the way his body felt when he was in shape. Though he was thirty-two, he wasn't slowing down at all. Looking around his side of the room, everything was comfortingly familiar, the dull green lockers, the bench, the tile floor. But it changed in the middle of the room, becoming marble slabs.
“Boris, huh?” Jake tested reality by strolling over to the cat and looking down on him. This side of the room remained a Greek temple. Jake could sneer too. “I think we’ve met.”
How the cat could speak and growl at the same time eluded Jake. He shrugged. He was dreaming.
Boris stretched out a paw and sharp, curved claws sprang out. Oh, yeah. Jake remembered those claws. He’d tangled with the tom on the front porch of a house and gotten scratched. Badly enough that he’d had to get a tetanus shot, and that made his arm ache so he couldn’t work out for a day. Yeah, the cat had cost him. Hadn’t it also pissed....
His stare latched onto the cat’s paw where a bloody spot marked the side of the cat’s white foreleg, like where a vein had been opened or a needle inserted.... Jake’s heart started to pound in his ears.
“No,” said the cat. “Your heart....” He sheathed his claws and tapped Jake’s chest.Jake saw it now, the big, dark stain on the chest of his uniform. Fear lanced through him. Woozy, he retreated to the locker room bench. He didn’t want to think about stains. He wanted to wake up. Now!
Nothing happened except the cat lifted its leg to groom. Jake was right, Boris had been fixed.
Boris growled.
Jake couldn't help from rubbing his hand up and down over the stiff, dark spot, hoping it would go away. If it didn't.... Out, out damned spot! What was that from? Bugs Bunny?
“Shakespeare, his play Macbeth.” The cat smirked.
Jake could really dislike this cat.
A door opened on his left. Jake blinked. There wasn't a door there in the locker room. Oh, yeah, he had a really bad feeling about this.
Boris jumped from his pillar and swaggered to the small, balding man in a gray rumpled suit who stepped through the door.
“Hello, Boris,” the guy said. The cat rumbled a purr, then trotted into the next room.
The threshold looked ordinary. The man pinned Jake with eyes as gray as his clothing. Such colorless eyes shouldn’t have had an effect on Jake but he couldn't move.
He’d faced down plenty of tough customers and won. His guts twisted. He should be the one in charge. He could lift this guy with one hand. He tried to speak and couldn't.
“Come in, Jake Forbes. You can call me Gray.” The man turned and stepped across the threshold.
Finally Jake found his voice. “Whatever,” he croaked. He wanted to swagger like Boris, Jake could swagger with the best of them, but his feet dragged until he reached the door and looked in.
**************************************May you get all the chances you need.Robin | [
1,
24211,
29892,
5490,
29871,
29941,
29896,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
29907,
768,
1387,
29892,
2787,
25237,
29892,
390,
277,
27101,
13,
13,
3596,
1492,
29892,
5683,
411,
445,
1400,
29889,
306,
29915,
345,
1063,
5007,
263,
3287,
301,
2486,
29892,
393,
29915,
29879,
5491,
920,
263,
3143,
5771,
2978,
278,
1095,
1192,
2466,
445,
947,
2833,
304,
367,
901,
5040,
322,
748,
1135,
306,
6456,
29892,
541,
3370,
338,
11630,
12570,
29891,
746,
3063,
1250,
373,
5007,
263,
3143,
29889,
15718,
13,
13,
7341,
1286,
306,
29915,
29885,
10771,
1363,
306,
925,
16387,
306,
4312,
263,
14837,
8497,
25672,
322,
306,
29915,
345,
2360,
2869,
3971,
697,
363,
278,
315,
2554,
8277,
856,
29902,
29915,
345,
3971,
2011,
1080,
856,
11083,
322,
1156,
29892,
541,
451,
263,
2989,
25672,
29892,
322,
1584,
2466,
306,
29915,
29885,
451,
2675,
304,
2436,
3838,
470,
3099,
29892,
306,
14788,
306,
4312,
304,
599,
1151,
23025,
304,
825,
471,
2675,
373,
29889,
1105,
29892,
5925,
29892,
1492,
1156,
445,
29889,
13,
13,
29924,
520,
310,
590,
5147,
9857,
583,
526,
5925,
287,
322,
274,
711,
27225,
4208,
964,
825,
23880,
1492,
304,
592,
363,
278,
3186,
29892,
322,
825,
1795,
6602,
278,
4890,
278,
1556,
1192,
393,
471,
920,
278,
612,
1297,
25672,
471,
3971,
297,
17778,
383,
403,
29889,
1094,
363,
278,
10421,
950,
2978,
278,
6763,
310,
17778,
383,
403,
29892,
393,
3153,
697,
306,
1754,
701,
6446,
322,
471,
697,
310,
1906,
330,
17741,
310,
8681,
12232,
393,
23550,
23025,
679,
29889,
13,
13,
2855,
306,
29915,
29885,
2534,
4828,
3907,
278,
14837,
8497,
2586,
437,
825,
4225,
304,
367,
2309,
29892,
577,
306,
1122,
505,
304,
1348,
373,
372,
313,
272,
1235,
372,
1027,
1050,
297,
278,
1250,
310,
590,
2343,
29897,
901,
29892,
322,
679,
278,
16079,
289,
2873,
714,
322,
2041,
1250,
304,
372,
304,
2329,
29889,
739,
1033,
367,
278,
1833,
9088,
306,
2436,
297,
278,
3143,
29889,
15718,
13,
13,
6295,
393,
29915,
29879,
825,
306,
29915,
345,
1063,
2599,
1192,
9360,
29892,
322,
15976,
1387,
2318,
471,
9826,
322,
306,
3282,
29915,
29873,
6963,
6515,
29889,
306,
2337,
6963,
6515,
29892,
541,
306,
3282,
29915,
29873,
864,
304,
679,
590,
2343,
1250,
297,
16385,
29871,
29945,
310,
278,
3143,
746,
306,
29915,
29885,
472,
278,
1095,
29889,
341,
296,
272,
29915,
29879,
471,
6608,
287,
373,
2745,
591,
14788,
714,
278,
697,
1196,
393,
471,
885,
3973,
292,
278,
9088,
29892,
3273,
5828,
363,
278,
24612,
3002,
471,
3796,
373,
29892,
317,
6169,
29879,
471,
4922,
313,
23174,
310,
1833,
467,
1334,
599,
15502,
393,
591,
526,
263,
7495,
23338,
29950,
2318,
29889,
15706,
1486,
4947,
3448,
411,
3099,
29889,
399,
728,
306,
750,
278,
931,
304,
9752,
278,
10887,
29889,
304,
278,
3353,
2318,
29892,
541,
393,
925,
1838,
29915,
29873,
664,
29889,
13,
13,
11284,
29892,
306,
29915,
345,
13472,
27225,
373,
263,
3287,
1286,
29892,
577,
306,
29915,
645,
1235,
366,
13389,
29892,
470,
451,
29889,
13,
13,
1576,
8466,
9848,
363,
445,
1400,
29901,
6623,
596,
10421,
27101,
363,
596,
3186,
29892,
322,
1207,
963,
825,
366,
508,
5735,
411,
363,
385,
4152,
3652,
29889,
13,
13,
1349,
1295,
3250,
29892,
5490,
29871,
29906,
29929,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
4421,
25487,
7186,
29889,
10803,
2798,
13,
13,
10401,
372,
5304,
1623,
304,
278,
1833,
760,
310,
278,
3143,
29892,
590,
1051,
310,
20407,
29892,
769,
590,
3841,
526,
451,
29490,
491,
1734,
2798,
29889,
739,
29915,
29879,
263,
4383,
310,
20407,
29889,
306,
3814,
373,
607,
306,
674,
664,
373,
9826,
322,
6041,
1207,
372,
313,
392,
1734,
2798,
29897,
322,
6041,
1016,
29915,
29873,
29889,
13,
13,
4013,
338,
10734,
1565,
746,
306,
1073,
278,
3143,
338,
1472,
29889,
450,
901,
3838,
306,
437,
338,
451,
12695,
2253,
1135,
2805,
278,
3143,
2309,
29889,
739,
29915,
29879,
263,
1781,
22931,
363,
825,
306,
29915,
345,
2309,
322,
1122,
14505,
590,
321,
1484,
565,
306,
788,
372,
304,
263,
1629,
368,
1734,
2798,
29892,
541,
393,
29915,
29879,
1048,
372,
29889,
13,
13,
6295,
306,
437,
3013,
5702,
310,
1734,
2798,
29892,
541,
306,
1016,
29915,
29873,
20881,
404,
975,
372,
313,
29902,
20881,
404,
975,
278,
1051,
467,
13,
13,
2855,
306,
7755,
393,
29915,
29879,
825,
2305,
437,
1058,
6492,
470,
27887,
3265,
1135,
5007,
491,
278,
12949,
310,
1009,
282,
1934,
313,
29886,
424,
3298,
29897,
470,
714,
310,
5665,
29889,
9070,
29892,
1244,
29915,
29879,
825,
4225,
304,
3799,
2446,
29892,
306,
508,
437,
393,
29991,
13,
13,
3112,
29915,
29879,
385,
8031,
11223,
29892,
541,
306,
1603,
763,
278,
11468,
4637,
310,
825,
5304,
746,
366,
9455,
29915,
29873,
9186,
1854,
310,
825,
399,
24071,
3799,
2446,
29889,
13,
13,
29956,
287,
4515,
3250,
29892,
5490,
29871,
29906,
29947,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
29911,
1041,
3250,
29892,
5490,
29871,
29906,
29955,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
29943,
799,
512,
739,
29915,
29879,
9267,
3812,
29879,
13,
13,
15342,
1196,
472,
278,
2246,
29901,
1938,
372,
8763,
29892,
15020,
278,
8866,
29889,
13,
13,
29902,
29915,
345,
1063,
2805,
278,
540,
774,
347,
1444,
774,
583,
1048,
17778,
10726,
313,
392,
306,
925,
5456,
17778,
383,
403,
322,
750,
304,
337,
1853,
607,
3697,
393,
445,
338,
385,
373,
17696,
2655,
322,
306,
29915,
345,
19182,
310,
372,
1434,
467,
450,
1108,
338,
29892,
306,
6041,
18864,
2086,
1568,
931,
29537,
292,
825,
338,
24738,
292,
592,
2012,
310,
925,
8024,
292,
278,
5970,
297,
278,
11774,
322,
5007,
29889,
13,
13,
797,
5051,
1568,
1797,
306,
29915,
345,
18860,
278,
1494,
29936,
13,
13,
29902,
29915,
29885,
451,
11781,
590,
1734,
2798,
7123,
1220,
29889,
29902,
29915,
29885,
451,
2675,
304,
367,
2221,
304,
8341,
278,
3143,
29889,
4013,
338,
12092,
322,
920,
626,
306,
2675,
304,
1207,
372,
664,
29973,
306,
29915,
29885,
451,
2675,
304,
367,
2221,
304,
1207,
372,
664,
29889,
29902,
29915,
29885,
2675,
975,
1734,
2798,
29889,
1762,
29877,
1568,
338,
2675,
373,
472,
697,
931,
29892,
2086,
1784,
1014,
26762,
393,
526,
451,
437,
5990,
737,
292,
29889,
13,
13,
2855,
278,
1833,
7303,
310,
3841,
29901,
29902,
1073,
825,
306,
864,
304,
2436,
322,
306,
864,
372,
577,
350,
3035,
16786,
304,
367,
4922,
322,
1492,
322,
306,
2113,
29915,
29873,
1284,
278,
1492,
3838,
304,
1207,
372,
1993,
590,
18551,
856,
392,
393,
29915,
29879,
3117,
1565,
29889,
13,
13,
29902,
505,
590,
1051,
310,
825,
278,
1095,
310,
278,
3143,
1818,
1106,
763,
29892,
577,
306,
29915,
29885,
7773,
727,
29889,
3834,
4452,
505,
1584,
1063,
21692,
1283,
29889,
13,
13,
6295,
825,
306,
1258,
304,
679,
975,
278,
8866,
471,
304,
437,
1790,
1051,
310,
278,
9088,
306,
817,
304,
2436,
29889,
3118,
2944,
1122,
367,
263,
14880,
470,
1023,
29892,
278,
2446,
3196,
6515,
29892,
541,
472,
3203,
372,
29915,
29879,
297,
590,
2343,
856,
392,
306,
508,
1596,
372,
714,
322,
8866,
2113,
29915,
29873,
432,
15563,
590,
13133,
322,
23915,
3307,
304,
1207,
592,
3052,
1554,
856,
13,
13,
29924,
898,
388,
29892,
5490,
29871,
29906,
29953,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
25216,
4909,
9954,
292,
6339,
29871,
29955,
13,
13,
27796,
5988,
592,
322,
29871,
29945,
310,
590,
10404,
6369,
21137,
6017,
749,
23550,
304,
10894,
403,
5360,
322,
6017,
749,
472,
278,
5899,
4909,
5236,
9538,
373,
24211,
29892,
6339,
29871,
29955,
29892,
29871,
29906,
29900,
29900,
29929,
29892,
515,
29871,
29896,
29899,
29941,
3358,
29889,
450,
1741,
338,
3889,
29892,
541,
2913,
338,
9078,
577,
1246,
29871,
29941,
29900,
29941,
29899,
29941,
29941,
29945,
29899,
29946,
29947,
29946,
29929,
1294,
29871,
29946,
304,
6036,
7535,
4720,
29889,
13,
13,
1576,
4832,
310,
502,
2755,
1422,
1014,
29899,
1885,
690,
310,
6017,
749,
29889,
306,
674,
367,
8772,
491,
29901,
6286,
16343,
2610,
29882,
434,
313,
2230,
9850,
29914,
862,
273,
2759,
511,
323,
2518,
2627,
2256,
313,
456,
7716,
8872,
1947,
511,
390,
1600,
29872,
19320,
793,
313,
1285,
9059,
653,
669,
2169,
3819,
511,
28637,
457,
20708,
457,
313,
16128,
824,
511,
322,
8626,
299,
29874,
12338,
18712,
313,
862,
273,
2759,
29914,
29894,
1160,
533,
29897,
313,
5628,
16205,
467,
1334,
674,
367,
16246,
297,
2319,
938,
6490,
6471,
411,
366,
2599,
1303,
886,
322,
22862,
5155,
29889,
13,
13,
4013,
1741,
338,
1641,
17791,
491,
278,
5899,
4909,
5236,
9538,
322,
338,
1641,
6969,
491,
1784,
310,
278,
5866,
5381,
1914,
414,
310,
16611,
593,
776,
5899,
4909,
29889,
2688,
505,
4944,
777,
10135,
352,
681,
3691,
10947,
393,
674,
367,
2183,
3448,
472,
278,
1095,
310,
278,
1741,
313,
695,
6046,
29892,
8277,
29892,
19797,
23199,
1078,
363,
8799,
800,
29892,
1424,
11500,
5786,
29892,
6731,
5275,
24835,
886,
29892,
11643,
293,
1303,
886,
322,
901,
1846,
13,
13,
29949,
332,
8277,
674,
367,
3625,
363,
14686,
322,
591,
599,
723,
367,
9796,
304,
1120,
1946,
14591,
363,
366,
29889,
13,
13,
1576,
3489,
338,
5982,
472,
29901,
29871,
29929,
29945,
29896,
14314,
24551,
7103,
29892,
16611,
593,
776,
5899,
4909,
313,
29947,
29900,
29900,
29906,
29955,
467,
1670,
338,
610,
9292,
1090,
278,
3489,
408,
1532,
408,
373,
278,
19756,
18830,
278,
5214,
29889,
13,
13,
29903,
870,
388,
29892,
5490,
29871,
29906,
29945,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
5647,
307,
1765,
287,
16849,
414,
29892,
9954,
886,
13,
13,
2776,
599,
278,
23550,
306,
1073,
29892,
871,
263,
2846,
526,
1294,
307,
369,
1372,
29892,
322,
306,
1348,
306,
1122,
367,
14171,
901,
18606,
277,
1951,
306,
5714,
278,
2462,
4982,
29889,
18512,
372,
29915,
29879,
2898,
363,
592,
304,
2649,
1058,
29915,
29879,
385,
1294,
307,
1765,
322,
1058,
3508,
29915,
29873,
29889,
306,
2337,
2714,
590,
6042,
272,
471,
385,
1294,
307,
1765,
29892,
322,
1183,
338,
29892,
763,
306,
626,
29892,
746,
1183,
29915,
29879,
22047,
491,
1749,
9227,
7875,
29892,
746,
714,
297,
278,
1855,
3186,
29892,
451,
577,
1568,
29889,
13,
13,
29902,
7336,
533,
1294,
307,
1765,
287,
23550,
14586,
355,
5794,
29889,
306,
1348,
372,
29915,
29879,
6775,
363,
963,
304,
4511,
411,
22176,
746,
714,
29892,
6775,
363,
963,
304,
5503,
1009,
664,
29892,
304,
1207,
2305,
23644,
29875,
6288,
1048,
1009,
664,
29889,
13,
13,
2831,
2777,
29892,
306,
505,
777,
1804,
886,
6421,
701,
313,
1026,
592,
1073,
565,
366,
29915,
276,
297,
278,
4038,
6339,
470,
4779,
511,
322,
306,
3282,
29915,
29873,
731,
697,
310,
1438,
701,
29889,
960,
4433,
29892,
306,
5491,
1827,
306,
29915,
29881,
367,
10932,
304,
1804,
29892,
541,
451,
491,
6142,
29889,
1126,
5491,
306,
1073,
1058,
1683,
756,
8277,
6421,
714,
297,
278,
2498,
931,
3515,
408,
306,
437,
29889,
13,
13,
29903,
3634,
29877,
856,
29902,
29915,
29885,
7291,
306,
881,
679,
714,
322,
18342,
403,
901,
313,
3592,
9826,
338,
16340,
1506,
3322,
322,
393,
5051,
1568,
6095,
5589,
29879,
590,
817,
363,
5264,
14881,
363,
263,
7303,
310,
3841,
467,
739,
29915,
29879,
884,
9570,
29891,
322,
15007,
29891,
607,
2794,
306,
1348,
1048,
7952,
292,
297,
29889,
13,
13,
29902,
360,
1367,
12611,
590,
13900,
304,
367,
472,
6033,
7716,
10277,
29889,
306,
29915,
345,
2355,
5566,
6394,
322,
17903,
17063,
363,
393,
29892,
408,
1532,
408,
1781,
9590,
363,
322,
2750,
29889,
306,
29915,
345,
2337,
2714,
372,
471,
2086,
19390,
29892,
322,
297,
1438,
3064,
306,
508,
29915,
29873,
10933,
372,
6521,
590,
2446,
716,
7014,
19417,
4802,
29889,
13,
13,
6295,
565,
366,
29915,
276,
385,
1294,
307,
1765,
322,
263,
9227,
29892,
10894,
403,
29889,
960,
366,
29915,
276,
385,
22909,
1765,
29892,
12853,
304,
278,
4402,
29892,
727,
29915,
29879,
20947,
310,
502,
29889,
13,
13,
6816,
273,
8000,
306,
29915,
29885,
373,
278,
1833,
5828,
2462,
310,
278,
3143,
322,
626,
3063,
6375,
304,
393,
278,
2446,
7303,
310,
3841,
29889,
306,
1122,
367,
2221,
304,
8341,
278,
3143,
408,
20458,
297,
2627,
29889,
13,
13,
29903,
20510,
29892,
5490,
29871,
29906,
29946,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
29923,
1859,
267,
512,
278,
15317,
9538,
8237,
13957,
13,
13,
2887,
366,
1073,
29892,
278,
9538,
8237,
9076,
310,
590,
664,
338,
4100,
304,
341,
290,
29889,
1105,
1244,
29915,
29879,
825,
306,
2355,
29901,
13,
13,
12284,
8237,
13957,
26626,
29871,
29896,
29892,
29871,
29906,
29900,
29900,
29929,
26246,
13,
13,
29949,
29893,
575,
29892,
13104,
360,
29889,
382,
1859,
267,
297,
278,
15317,
29889,
365,
4347,
29901,
3536,
280,
24150,
29889,
313,
1576,
6991,
3712,
292,
29892,
350,
29895,
29889,
29871,
29945,
467,
2627,
29889,
29871,
29906,
29900,
29900,
29929,
29889,
274,
29889,
29945,
29953,
29900,
29886,
29889,
2210,
29871,
29929,
29955,
29947,
29899,
29900,
29899,
29941,
29955,
29941,
29899,
29947,
29900,
29906,
29929,
29941,
29899,
29955,
29889,
3500,
29889,
395,
29896,
29946,
29889,
29929,
29945,
29889,
383,
13566,
3289,
29979,
4205,
453,
3958,
287,
491,
902,
6413,
408,
263,
15640,
322,
2906,
579,
630,
491,
278,
4892,
310,
902,
4595,
29885,
1228,
29892,
435,
638,
532,
14061,
8735,
8608,
287,
515,
3384,
369,
29892,
4810,
29892,
304,
263,
8515,
2982,
2000,
365,
4528,
661,
29874,
29889,
512,
393,
1855,
29885,
29892,
4696,
13582,
263,
1820,
6297,
297,
443,
908,
292,
385,
12297,
29236,
393,
1122,
1371,
20653,
278,
8249,
310,
15317,
29889,
450,
15997,
304,
438,
29893,
575,
29915,
29879,
376,
11139,
3712,
292,
29908,
3652,
313,
29872,
29889,
29887,
1696,
29429,
310,
18236,
29897,
5680,
4549,
322,
8359,
12944,
4890,
29892,
716,
7190,
310,
15709,
29892,
322,
263,
1999,
355,
310,
17623,
545,
322,
6017,
749,
29889,
319,
1781,
6124,
304,
1556,
13568,
8995,
16250,
29889,
2328,
17435,
1123,
635,
763,
372,
29889,
13,
13,
3868,
442,
10726,
29892,
21439,
29892,
28676,
13,
13,
2887,
306,
471,
3907,
23429,
263,
7303,
310,
4646,
29879,
8020,
322,
7291,
306,
4312,
304,
748,
1250,
304,
278,
6601,
322,
1207,
263,
1051,
310,
825,
471,
2675,
304,
3799,
313,
29902,
29915,
345,
19182,
1048,
920,
306,
437,
590,
2186,
10708,
2153,
1051,
29892,
322,
306,
6363,
445,
723,
367,
263,
1407,
758,
2576,
3821,
697,
511,
306,
2714,
376,
3492,
1073,
29892,
445,
338,
263,
1781,
5828,
29889,
306,
6398,
306,
892,
5183,
372,
2012,
310,
5007,
372,
29889,
382,
294,
631,
17794,
13,
13,
29911,
1041,
3250,
29892,
5490,
29871,
29906,
29900,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
14058,
25237,
3831,
5795,
29892,
2538,
333,
2063,
29892,
2896,
21706,
29892,
2233,
326,
1165,
13,
13,
29933,
5658,
472,
278,
10784,
1165,
596,
13444,
29914,
29882,
1489,
457,
29914,
28765,
262,
341,
17321,
6058,
29668,
403,
515,
2931,
29889,
2688,
1818,
599,
7657,
278,
1021,
393,
896,
505,
10106,
278,
4152,
3143,
29889,
13,
13,
2855,
297,
278,
315,
2554,
8277,
306,
505,
2665,
993,
12955,
29892,
393,
29892,
408,
590,
6042,
272,
11520,
714,
29892,
752,
15815,
2712,
856,
4561,
263,
26397,
29876,
20304,
29892,
470,
16126,
316,
5779,
263,
6661,
856,
392,
306,
505,
4382,
2084,
29891,
322,
4382,
637,
362,
29889,
1105,
1906,
297,
9703,
881,
367,
2221,
304,
1716,
310,
1906,
2712,
856,
13,
13,
3112,
29915,
29879,
1565,
393,
577,
2215,
313,
392,
306,
817,
304,
1423,
373,
445,
511,
263,
2022,
508,
5491,
871,
4382,
637,
763,
2748,
263,
2462,
1728,
281,
666,
292,
6053,
714,
313,
1552,
20023,
12623,
508,
437,
372,
901,
4049,
408,
1009,
3081,
29914,
29943,
433,
381,
338,
15678,
467,
13,
13,
6295,
306,
750,
599,
1438,
376,
14606,
1838,
29915,
29873,
278,
2538,
5084,
2367,
278,
21200,
29908,
322,
376,
5816,
508,
278,
2538,
5084,
525,
4149,
29915,
5377,
967,
24189,
29908,
313,
28450,
6521,
727,
338,
263,
885,
719,
12734,
12422,
287,
701,
467,
13,
13,
2855,
2020,
723,
278,
21031,
262,
13958,
2820,
363,
278,
13444,
304,
1284,
1075,
2012,
310,
925,
2599,
278,
16126,
316,
287,
322,
4382,
637,
292,
3448,
856,
16076,
21031,
262,
26926,
445,
674,
367,
5545,
385,
11423,
29973,
13,
13,
29902,
1348,
590,
17294,
471,
3802,
304,
285,
719,
292,
29892,
322,
29892,
310,
3236,
29892,
306,
12707,
304,
590,
6042,
272,
5683,
297,
278,
2462,
23844,
4945,
306,
750,
3971,
697,
310,
278,
10784,
17911,
20407,
393,
674,
451,
664,
1286,
1363,
372,
3614,
2058,
297,
278,
2538,
5084,
29889,
13,
13,
29903,
870,
388,
29892,
5490,
29871,
29896,
29947,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
29902,
1073,
306,
29915,
345,
1497,
1438,
526,
1407,
4100,
29892,
322,
697,
310,
590,
313,
1025,
29897,
25448,
23550,
1033,
2360,
302,
737,
278,
17140,
29889,
739,
471,
408,
565,
1183,
5456,
1556,
310,
278,
3143,
322,
20088,
714,
310,
931,
322,
9698,
372,
297,
263,
14880,
470,
1023,
29889,
7753,
408,
263,
9591,
306,
298,
630,
393,
29889,
13,
13,
2855,
306,
29915,
345,
884,
1497,
393,
306,
2436,
714,
310,
1797,
29889,
3872,
29915,
29873,
1073,
565,
306,
5429,
366,
599,
29892,
541,
17778,
22440,
29915,
29879,
29892,
14409,
2801,
310,
278,
2379,
523,
29915,
29879,
29892,
322,
382,
1859,
267,
512,
278,
15317,
29915,
29879,
17140,
892,
599,
3971,
322,
7160,
408,
5004,
20407,
29892,
10708,
2153,
29889,
13,
13,
29903,
14618,
6775,
304,
2436,
10784,
17911,
9978,
29991,
382,
1859,
267,
512,
278,
15317,
29915,
29879,
17140,
10555,
750,
304,
367,
25554,
287,
1532,
313,
392,
306,
4966,
306,
1258,
393,
29897,
322,
1207,
4060,
29892,
7148,
2675,
1250,
322,
11483,
1546,
278,
1757,
322,
278,
5866,
29889,
306,
1348,
306,
337,
11292,
1906,
20407,
701,
1328,
310,
5320,
29914,
28319,
3064,
29889,
13,
13,
11284,
29892,
278,
17140,
310,
17778,
10726,
2996,
304,
592,
445,
7250,
408,
306,
471,
6568,
292,
297,
6592,
1156,
306,
281,
6946,
29889,
306,
6363,
825,
306,
5131,
304,
437,
29892,
541,
3282,
29915,
29873,
1073,
920,
306,
471,
2675,
304,
437,
372,
29889,
3674,
29892,
306,
5131,
304,
5004,
315,
3605,
351,
322,
9954,
300,
472,
263,
27131,
3256,
322,
278,
1741,
4312,
304,
505,
3058,
758,
29899,
276,
7680,
3246,
29889,
910,
7250,
306,
2355,
278,
2969,
322,
306,
29915,
29885,
5051,
1854,
306,
508,
1207,
372,
664,
29889,
13,
13,
6295,
306,
29915,
29885,
22301,
2466,
306,
29915,
345,
1063,
5925,
292,
322,
7359,
29915,
29873,
3971,
263,
1734,
916,
1135,
445,
29892,
7359,
29915,
29873,
2309,
3099,
541,
8343,
278,
274,
1446,
313,
15970,
526,
451,
9796,
411,
1009,
6003,
2285,
467,
13,
13,
29903,
20510,
29892,
5490,
29871,
29896,
29955,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
16227,
7186,
29889,
8612,
5047,
16849,
414,
29892,
512,
1028,
12232,
13,
13,
3421,
6042,
272,
508,
29915,
29873,
11621,
304,
4696,
746,
1183,
15873,
1363,
11149,
1183,
1051,
575,
304,
7928,
1041,
322,
2342,
1980,
29889,
306,
29915,
345,
6091,
315,
9474,
7487,
11461,
2649,
278,
5828,
393,
697,
29037,
573,
13382,
3614,
902,
6199,
304,
1653,
1363,
1183,
338,
451,
263,
376,
20119,
29908,
9227,
29889,
13,
13,
2831,
592,
29892,
408,
411,
1556,
29892,
263,
2706,
508,
443,
1245,
297,
590,
27656,
10977,
29889,
512,
590,
1407,
4688,
3841,
408,
263,
9227,
306,
750,
263,
6763,
29709,
8619,
4518,
29892,
925,
763,
592,
29889,
1334,
5148,
472,
1269,
916,
29915,
29879,
664,
1434,
591,
3614,
372,
304,
29709,
2318,
29889,
2296,
15313,
1312,
1048,
451,
13797,
988,
263,
9088,
3512,
29892,
306,
4433,
565,
1183,
1033,
1074,
372,
322,
1183,
1497,
4874,
29892,
322,
306,
1497,
925,
1101,
278,
9679,
310,
278,
2706,
29889,
2296,
1497,
278,
14064,
11084,
856,
29902,
29915,
29885,
451,
1854,
825,
591,
3512,
373,
304,
5193,
1048,
1156,
393,
29892,
3117,
825,
881,
3799,
2446,
297,
278,
9088,
856,
4187,
372,
471,
902,
9088,
322,
306,
508,
1603,
1074,
263,
767,
322,
263,
6114,
297,
278,
18786,
4366,
29892,
16246,
297,
263,
7375,
23131,
856,
13,
13,
10773,
1582,
29892,
472,
278,
1900,
310,
3064,
29892,
306,
679,
263,
10541,
297,
590,
2343,
304,
1369,
278,
9088,
577,
306,
1016,
29915,
29873,
505,
278,
9654,
1813,
29889,
10506,
408,
376,
29924,
333,
29899,
12257,
1076,
22623,
29892,
263,
1407,
11813,
12540,
1240,
11977,
29892,
19436,
263,
11942,
7823,
25972,
1213,
13,
13,
10454,
29892,
306,
1073,
393,
445,
338,
297,
9954,
300,
29915,
29879,
21521,
29963,
29889,
306,
1073,
1183,
13246,
278,
3050,
29889,
2296,
29914,
29902,
508,
1074,
12540,
1240,
29892,
901,
29892,
1183,
29914,
29902,
1074,
16999,
1525,
1135,
925,
12540,
1240,
393,
2113,
29915,
29873,
367,
297,
278,
5828,
29889,
450,
3050,
304,
278,
3699,
338,
1722,
322,
8724,
338,
278,
3144,
1241,
1582,
322,
278,
4565,
29413,
322,
2919,
10697,
607,
505,
925,
443,
22613,
839,
1009,
2989,
29892,
716,
11308,
29892,
263,
4158,
310,
7933,
411,
278,
6575,
11785,
5742,
963,
29889,
1763,
278,
1492,
526,
278,
18281,
322,
27089,
267,
310,
278,
16423,
29889,
7206,
338,
7146,
1244,
856,
29902,
29915,
29885,
451,
2675,
304,
5649,
445,
297,
278,
3143,
29892,
541,
306,
1074,
372,
29889,
13,
13,
10140,
300,
29915,
29879,
2675,
304,
6559,
12540,
1240,
322,
4443,
278,
3620,
1951,
1183,
29915,
29881,
3595,
1075,
1434,
29892,
769,
12540,
1240,
674,
1722,
670,
13394,
322,
1827,
278,
937,
1196,
310,
7928,
434,
322,
278,
9088,
674,
2125,
1283,
515,
727,
29889,
13,
13,
7058,
29915,
29879,
920,
372,
29915,
29879,
7424,
304,
664,
29892,
577,
2020,
1016,
29915,
29873,
306,
1018,
372,
322,
1074,
2012,
310,
13958,
2820,
1244,
29973,
15718,
13,
13,
29943,
2429,
388,
29892,
5490,
29871,
29896,
29953,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
29967,
12981,
1847,
28676,
9705,
29877,
1019,
1066,
1338,
8195,
4634,
13,
13,
10401,
366,
29915,
276,
263,
6369,
9227,
29892,
366,
817,
304,
5110,
304,
8740,
6234,
313,
4716,
306,
7359,
29915,
29873,
1063,
2599,
1407,
1532,
445,
4723,
29889,
306,
881,
367,
3907,
590,
1734,
2798,
373,
17778,
10726,
29892,
541,
306,
884,
505,
263,
716,
3143,
714,
29892,
382,
1859,
267,
512,
450,
15317,
29892,
393,
306,
817,
304,
27391,
29892,
451,
304,
3585,
2805,
777,
9551,
1338,
4208,
313,
392,
306,
29915,
29885,
5622,
263,
6492,
1259,
770,
393,
306,
29915,
345,
8059,
304,
2748,
511,
322,
29892,
310,
3236,
29892,
1855,
2834,
29889,
13,
13,
29902,
12611,
839,
590,
22162,
271,
297,
278,
19223,
1833,
4723,
1363,
310,
1559,
29914,
29883,
1446,
5367,
13750,
29892,
577,
727,
3512,
23023,
1848,
322,
20954,
2304,
29889,
306,
6068,
278,
599,
2462,
13563,
29892,
1559,
2675,
297,
304,
367,
3348,
7612,
313,
3222,
14366,
322,
278,
1722,
20710,
1833,
4646,
304,
589,
737,
590,
5007,
29889,
612,
18358,
306,
10398,
931,
5183,
777,
664,
363,
2211,
640,
9197,
306,
29915,
29885,
6577,
3460,
29889,
13,
13,
29903,
3634,
29877,
3045,
29902,
29915,
29885,
3058,
366,
508,
437,
372,
599,
565,
366,
10933,
596,
931,
322,
27295,
2891,
27946,
5149,
29889,
612,
26779,
3889,
19583,
701,
323,
1041,
3250,
7250,
1258,
451,
1371,
411,
278,
13563,
29889,
960,
306,
29915,
29881,
1304,
278,
1023,
6199,
306,
10398,
4473,
292,
2820,
411,
393,
304,
2436,
2012,
310,
1811,
304,
2274,
322,
2329,
825,
471,
2743,
29892,
306,
29915,
29881,
505,
1754,
590,
2989,
1734,
2798,
29889,
313,
6246,
373,
278,
2298,
2625,
29892,
306,
1286,
505,
5320,
6166,
310,
15593,
5155,
306,
29915,
345,
7699,
393,
306,
508,
8206,
515,
565,
727,
29915,
29879,
263,
5172,
15593,
393,
4225,
304,
367,
1925,
4208,
467,
13,
13,
11760,
727,
471,
278,
931,
5622,
278,
1559,
297,
373,
15050,
4515,
3250,
313,
5514,
1135,
306,
3806,
511,
278,
15982,
1048,
1518,
1947,
12317,
2965,
29950,
306,
317,
8187,
29965,
10249,
6058,
379,
7520,
29923,
15149,
9806,
3352,
7495,
12354,
7495,
22986,
313,
1201,
1568,
901,
1135,
306,
3806,
29892,
1058,
6363,
590,
2030,
16698,
2882,
29915,
29879,
2343,
4366,
723,
3438,
395,
29941,
29900,
29900,
363,
278,
760,
7432,
467,
1987,
278,
8818,
29875,
22203,
322,
1518,
1947,
304,
278,
7208,
293,
29915,
29879,
29889,
13,
13,
29902,
29915,
345,
1063,
6365,
1255,
1048,
6909,
301,
2486,
577,
306,
29915,
345,
12611,
839,
590,
17487,
304,
6033,
7716,
10277,
15687,
29889,
13,
13,
29979,
18358,
306,
4473,
287,
2820,
599,
2462,
5183,
17793,
9976,
313,
650,
471,
20695,
29892,
278,
1791,
892,
1781,
511,
322,
4120,
18499,
5183,
590,
10768,
363,
278,
1722,
20710,
313,
4716,
471,
1048,
29871,
29946,
29945,
6233,
3448,
467,
306,
26263,
472,
278,
1833,
11015,
515,
382,
1859,
267,
297,
278,
15317,
304,
17778,
383,
403,
29892,
607,
306,
1016,
29915,
29873,
1348,
6766,
592,
1532,
29889,
13,
13,
10773,
1582,
29892,
5970,
1196,
338,
29892,
393,
366,
881,
7845,
1623,
322,
2436,
694,
4383,
825,
29889,
323,
1540,
278,
3186,
714,
29892,
1235,
278,
23200,
2041,
29889,
612,
27269,
313,
29902,
29897,
315,
2190,
11662,
3446,
3235,
29889,
13,
13,
29902,
1348,
306,
817,
304,
367,
21824,
27855,
304,
4377,
714,
825,
29915,
29879,
23546,
5393,
2820,
297,
590,
7622,
3163,
29889,
13,
13,
29911,
1041,
3250,
29892,
5490,
29871,
29896,
29941,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
20761,
13740,
498,
273,
349,
1179,
13,
13,
3421,
17778,
8277,
5491,
2041,
297,
1492,
2820,
29871,
29945,
29900,
29900,
6515,
29889,
512,
2114,
306,
763,
963,
304,
367,
393,
577,
306,
1016,
29915,
29873,
671,
901,
1135,
697,
337,
314,
310,
5650,
313,
392,
565,
278,
337,
314,
338,
3273,
29892,
306,
1073,
372,
467,
13,
13,
17245,
29892,
306,
29915,
29885,
472,
278,
29871,
29946,
29900,
29900,
1813,
2791,
322,
1073,
306,
505,
263,
365,
2891,
901,
5828,
411,
17778,
10726,
856,
10184,
2319,
1014,
26762,
304,
22134,
701,
411,
263,
9088,
1269,
322,
697,
4655,
11420,
6492,
304,
679,
2309,
29889,
2216,
304,
3585,
278,
4628,
3256,
322,
278,
6017,
749,
29889,
3579,
29903,
1141,
1068,
13,
13,
6295,
445,
2794,
306,
674,
3117,
1065,
1472,
29892,
322,
1951,
306,
1348,
590,
731,
701,
338,
20312,
1135,
306,
763,
29892,
306,
29915,
645,
367,
28967,
20407,
515,
278,
4565,
310,
278,
3143,
29889,
910,
508,
2337,
21682,
541,
29871,
29896,
29897,
306,
694,
5520,
1776,
590,
3838,
322,
20407,
408,
376,
1457,
8802,
29908,
322,
731,
297,
12565,
29892,
322,
29871,
29906,
29897,
306,
29915,
345,
10972,
304,
1223,
29884,
482,
590,
21682,
472,
28967,
491,
10594,
777,
310,
278,
4805,
20407,
701,
373,
590,
4700,
29889,
13,
13,
797,
278,
1095,
29892,
599,
304,
278,
1781,
29889,
13,
13,
29902,
1033,
29892,
310,
3236,
29892,
1369,
28967,
322,
337,
2749,
9776,
1286,
29892,
541,
372,
29915,
29879,
2253,
304,
679,
278,
2989,
5828,
1623,
577,
306,
1073,
920,
1568,
4225,
304,
367,
5700,
29889,
13,
13,
7058,
29915,
29879,
599,
363,
1286,
408,
306,
29915,
345,
1063,
27556,
590,
13071,
322,
626,
17294,
7123,
322,
871,
864,
263,
9709,
29889,
13,
13,
12703,
366,
1073,
825,
304,
3013,
322,
825,
304,
3183,
3448,
9826,
313,
272,
472,
3203,
4078,
297,
1790,
934,
467,
13,
13,
29903,
870,
388,
29892,
5490,
29871,
29896,
29896,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
14463,
2798,
24620,
654,
29892,
2191,
294,
3864,
612,
681,
761,
2648,
438,
3341,
13,
13,
10310,
29915,
29873,
5645,
7535,
491,
4045,
29892,
366,
322,
596,
1889,
526,
5412,
29889,
13,
13,
29902,
2337,
505,
445,
1108,
310,
817,
292,
304,
5186,
4045,
29915,
1734,
2798,
29892,
1584,
2466,
306,
476,
6632,
29956,
1432,
9227,
338,
1422,
856,
6295,
29892,
363,
278,
716,
1629,
306,
674,
1018,
22622,
6058,
304,
5645,
6142,
491,
4045,
29892,
322,
367,
9796,
746,
306,
5870,
19519,
438,
16048,
2921,
1338,
29889,
13,
13,
29903,
20510,
29892,
5490,
29871,
29896,
29900,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
9526,
650,
4433,
363,
263,
11942,
310,
6981,
457,
470,
263,
10791,
12645,
4612,
470,
6514,
29889,
3824,
29892,
306,
11247,
12064,
445,
7664,
29892,
4581,
3739,
319,
1730,
344,
29889,
306,
505,
263,
11844,
12483,
491,
1075,
515,
6440,
17677,
29892,
322,
306,
1209,
714,
278,
21782,
10057,
15889,
393,
4682,
263,
3287,
310,
670,
664,
472,
590,
3031,
262,
1503,
29892,
22162,
1446,
29892,
29709,
6471,
29892,
2992,
29889,
13,
13,
4690,
3235,
8519,
319,
349,
8476,
2725,
8079,
435,
29923,
2190,
17687,
13309,
16884,
3235,
1660,
29915,
29903,
376,
29943,
1672,
29999,
1430,
11247,
12064,
29908,
399,
1955,
29968,
29892,
13315,
8519,
315,
4590,
29979,
22789,
3912,
3352,
6770,
379,
7833,
5300,
612,
27269,
315,
2190,
8707,
6040,
1783,
379,
3235,
5195,
15094,
29903,
3919,
1299,
5667,
2890,
15531,
6093,
21724,
29968,
319,
8456,
12064,
29889,
13,
13,
29902,
1016,
29915,
29873,
1348,
310,
6981,
457,
408,
3755,
445,
15509,
29892,
263,
2217,
901,
260,
11310,
856,
392,
445,
723,
505,
1754,
263,
10135,
352,
681,
3143,
4612,
856,
13,
13,
29943,
2429,
388,
29892,
5490,
29871,
29900,
29929,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
29956,
768,
292,
512,
841,
344,
2522,
25487,
13,
13,
29979,
18358,
306,
1737,
1965,
6142,
701,
304,
2436,
263,
9088,
306,
29915,
29881,
1063,
5051,
1568,
4772,
292,
363,
263,
4098,
29889,
20628,
471,
925,
408,
17818,
344,
322,
1156,
2211,
6199,
304,
5870,
590,
1734,
2798,
29892,
306,
29915,
29885,
18782,
16656,
29889,
13,
13,
6295,
727,
29915,
29879,
19119,
664,
322,
9128,
664,
322,
2462,
17643,
322,
5007,
4982,
856,
392,
920,
304,
591,
1141,
697,
411,
278,
916,
29889,
13,
13,
29902,
508,
4386,
12618,
3460,
322,
22360,
322,
5925,
9826,
29892,
541,
306,
1016,
29915,
29873,
1073,
393,
306,
1033,
748,
1250,
304,
278,
5007,
29889,
1126,
306,
29915,
29885,
451,
1854,
310,
278,
23023,
1848,
282,
3322,
29892,
2845,
29889,
306,
1348,
372,
29915,
29879,
727,
29892,
541,
306,
505,
263,
11223,
306,
29915,
645,
505,
304,
6664,
895,
322,
788,
304,
372,
29889,
306,
1073,
306,
2355,
278,
3686,
663,
310,
278,
9088,
1623,
541,
1122,
817,
304,
788,
2342,
1980,
322,
901,
2931,
23023,
1080,
304,
372,
29889,
306,
505,
263,
11223,
445,
2586,
338,
451,
1554,
306,
29915,
645,
367,
2221,
304,
16833,
29892,
322,
306,
29915,
645,
2360,
679,
278,
716,
10879,
1363,
306,
1073,
372,
29915,
29879,
1063,
6421,
5520,
1135,
306,
29915,
345,
1063,
6369,
322,
372,
674,
2360,
367,
263,
16671,
29889,
13,
13,
29956,
13636,
29889,
13,
13,
6816,
273,
8000,
29892,
590,
22162,
271,
304,
13822,
1456,
338,
438,
4198,
1951,
360,
20191,
2355,
297,
263,
6635,
8589,
322,
4225,
26602,
8951,
263,
2462,
313,
354,
29915,
29879,
2869,
1407,
1532,
541,
750,
263,
11777,
29891,
297,
20309,
511,
322,
590,
4943,
274,
1446,
277,
2153,
526,
1716,
443,
16515,
29889,
1126,
306,
3282,
29915,
29873,
679,
278,
1559,
297,
304,
367,
3348,
7612,
1434,
3179,
3045,
13,
13,
10773,
1582,
29892,
393,
29915,
29879,
372,
515,
592,
322,
278,
3841,
505,
1063,
16749,
261,
1135,
4226,
411,
15155,
385,
7234,
310,
6575,
4366,
322,
393,
29915,
29879,
2898,
363,
592,
29892,
2086,
29889,
306,
1016,
29915,
29873,
1073,
393,
306,
723,
3926,
367,
2221,
304,
5735,
297,
12126,
29892,
263,
12561,
310,
7903,
29889,
13,
13,
29911,
1041,
3250,
29892,
5490,
29871,
29900,
29953,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
2525,
5467,
3726,
5244,
1192,
349,
2335,
363,
6313,
307,
386,
284,
322,
6054,
2549,
13,
13,
29931,
638,
287,
278,
1024,
310,
445,
697,
319,
1373,
4056,
13444,
29892,
322,
15839,
301,
568,
29892,
2169,
3819,
4444,
322,
286,
2361,
338,
599,
29889,
13,
13,
3421,
871,
405,
1164,
29899,
862,
273,
2759,
9554,
3309,
27593,
313,
29902,
1348,
306,
505,
263,
7303,
310,
9551,
1338,
467,
306,
17386,
393,
306,
3796,
2898,
373,
278,
8718,
322,
23289,
372,
29892,
322,
23289,
2812,
2354,
29892,
278,
13444,
457,
29892,
322,
278,
5360,
9088,
29889,
13,
13,
29902,
7743,
445,
3143,
263,
2462,
1434,
306,
6091,
18888,
20797,
1358,
29197,
373,
450,
399,
5385,
29915,
29879,
435,
473,
3801,
29889,
306,
3512,
7812,
3271,
322,
7120,
278,
27593,
714,
29892,
322,
29892,
491,
15192,
368,
29892,
306,
29915,
29881,
7124,
1432,
697,
310,
670,
3190,
300,
1478,
284,
5828,
376,
915,
1446,
29908,
1492,
373,
29889,
306,
471,
1468,
24455,
29889,
1105,
306,
17386,
278,
498,
12268,
29429,
9088,
411,
278,
5176,
14547,
7148,
29889,
13,
13,
1576,
349,
2335,
29901,
13,
13,
29933,
29551,
386,
284,
322,
6054,
2549,
338,
263,
15839,
6017,
749,
731,
297,
2169,
3819,
5408,
297,
607,
278,
13444,
322,
13444,
457,
8661,
304,
263,
2089,
1010,
307,
386,
284,
408,
263,
4195,
304,
4017,
670,
2875,
515,
670,
16126,
263,
1657,
29889,
2180,
278,
3699,
22633,
304,
28269,
7475,
346,
1009,
1010,
307,
386,
284,
29892,
278,
263,
1657,
338,
13406,
287,
29889,
450,
13444,
322,
13444,
457,
6523,
278,
10809,
310,
1009,
5360,
363,
1269,
916,
1550,
896,
2740,
363,
278,
13406,
261,
4249,
263,
590,
374,
328,
310,
4628,
2549,
6879,
9893,
29889,
13,
13,
29924,
898,
388,
29892,
5490,
29871,
29900,
29945,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
5618,
7569,
399,
5385,
383,
15451,
13,
13,
29903,
870,
388,
29892,
5490,
29871,
29900,
29946,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
6359,
292,
322,
28676,
1192,
8991,
470,
1383,
6986,
29892,
1334,
1624,
319,
7161,
29879,
28676,
13,
13,
29909,
7303,
310,
3064,
297,
278,
1833,
7303,
7378,
313,
10646,
297,
12314,
322,
2748,
7395,
29897,
306,
29915,
345,
6091,
263,
9227,
1827,
393,
746,
372,
29915,
29879,
263,
11785,
322,
6575,
1460,
2462,
372,
29915,
29879,
2898,
363,
963,
304,
2436,
29889,
1152,
592,
565,
372,
29915,
29879,
263,
16749,
2462,
29892,
306,
864,
304,
6866,
798,
297,
322,
1303,
322,
1708,
322,
286,
3322,
856,
1333,
2436,
29889,
306,
1073,
916,
1887,
23550,
1058,
8661,
29889,
13,
13,
4013,
1122,
367,
697,
310,
1906,
1737,
19711,
2712,
29889,
319,
16749,
2462,
29892,
7148,
263,
5862,
29891,
470,
1153,
4901,
2462,
1192,
599,
2462,
1192,
338,
263,
364,
279,
537,
1244,
29889,
26991,
278,
6575,
528,
1475,
29892,
472,
3203,
263,
2846,
6233,
310,
1432,
2462,
29889,
15447,
306,
679,
6575,
297,
590,
8034,
515,
1048,
29871,
29955,
29901,
29941,
29900,
626,
304,
29871,
29946,
26354,
322,
11785,
6575,
297,
278,
270,
2827,
5716,
7145,
29899,
2142,
16691,
29889,
960,
306,
3282,
29915,
29873,
664,
746,
372,
471,
6575,
1460,
306,
723,
15155,
664,
472,
599,
29889,
13,
13,
29943,
2429,
388,
29892,
5490,
29871,
29900,
29906,
29892,
29871,
29906,
29900,
29900,
29929,
13,
13,
29943,
17118,
568,
4673,
292,
13,
13,
3596,
1492,
29892,
373,
393,
29871,
29896,
29906,
7234,
429,
2265,
415,
5376,
4856,
4433,
592,
1048,
590,
2420,
3547,
29892,
9321,
310,
21255,
545,
297,
278,
24612,
3002,
1724,
16814,
29879,
2610,
16760,
322,
306,
8059,
278,
8718,
29889,
739,
29915,
29879,
697,
310,
590,
7853,
3246,
29892,
577,
306,
29915,
645,
1925,
372,
1244,
313,
3592,
306,
1348,
372,
29915,
29879,
373,
590,
4700,
29892,
2086,
467,
27183,
653,
610,
273,
2759,
6017,
749,
29889,
3111,
29889,
3384,
369,
29889,
13,
13,
7775,
7775,
17435,
13,
13,
3868,
471,
278,
318,
29887,
20409,
6635,
435,
1296,
750,
3926,
3595,
29889,
450,
4628,
322,
4796,
6454,
750,
385,
263,
2002,
310,
4439,
18543,
18830,
1075,
29892,
1584,
408,
540,
301,
17840,
670,
282,
1450,
322,
321,
28133,
435,
1296,
411,
766,
29881,
475,
29889,
3118,
310,
435,
1296,
30010,
29879,
429,
29899,
29887,
5168,
7932,
1975,
750,
1304,
393,
263,
2002,
310,
4439,
18543,
16549,
304,
8453,
1075,
29892,
322,
540,
30010,
29881,
2714,
372,
471,
274,
2390,
29892,
1286,
540,
6363,
825,
1183,
30010,
29881,
6839,
29889,
13,
13,
1576,
6635,
731,
1623,
670,
282,
1450,
322,
5807,
2593,
287,
29889,
1346,
29902,
6363,
366,
30010,
29881,
2041,
1244,
3178,
13,
13,
29967,
1296,
1818,
367,
12561,
292,
29889,
315,
1446,
1854,
408,
23927,
3282,
30010,
29873,
5193,
29889,
450,
8388,
618,
886,
27222,
30010,
29873,
260,
16242,
435,
1296,
1283,
29889,
940,
10398,
263,
3287,
310,
931,
297,
278,
330,
962,
658,
4937,
5716,
29889,
940,
9500,
287,
29889,
450,
3856,
305,
6140,
7773,
322,
2898,
363,
263,
12561,
29889,
13,
13,
3868,
5148,
1250,
472,
278,
6635,
322,
521,
12504,
29889,
2567,
372,
3290,
373,
825,
5148,
304,
367,
263,
2319,
29892,
12297,
12311,
22549,
279,
29892,
763,
435,
1296,
750,
3595,
1550,
21217,
278,
16373,
29889,
1522,
16887,
278,
6635,
9007,
30010,
29873,
278,
11564,
10090,
310,
330,
962,
7714,
414,
29892,
541,
263,
17567,
393,
10018,
11785,
7254,
14744,
1546,
1652,
3860,
22549,
1503,
29889,
13,
13,
29967,
1296,
2381,
24622,
29889,
5282,
18639,
263,
12561,
29892,
2466,
1951,
540,
30010,
29881,
2360,
750,
263,
6635,
29892,
540,
4997,
287,
825,
278,
2655,
471,
2599,
297,
670,
12561,
29889,
940,
12474,
287,
670,
5076,
29889,
2193,
6635,
29991,
450,
10193,
287,
6454,
5148,
9985,
29889,
7440,
29876,
30010,
29873,
540,
505,
263,
1065,
29899,
262,
470,
1023,
3045,
13,
13,
1576,
6635,
26239,
263,
282,
682,
26414,
411,
263,
4628,
9758,
322,
2665,
435,
1296,
385,
29871,
4245,
380,
598,
29889,
435,
1296,
30010,
29879,
5614,
26508,
29879,
19120,
22526,
322,
2821,
393,
1554,
471,
1407,
29892,
1407,
2743,
29889,
1205,
825,
1033,
367,
2086,
2743,
297,
263,
12561,
29973,
940,
5148,
1623,
29889,
612,
1022,
29892,
8072,
13950,
287,
29889,
940,
7656,
29915,
29873,
6686,
964,
278,
10842,
30010,
29879,
8034,
302,
12535,
29889,
13,
13,
1576,
6635,
670,
8485,
29889,
1346,
3421,
1024,
338,
6780,
790,
893,
893,
893,
29879,
3178,
13,
13,
30015,
29950,
16099,
3995,
1497,
435,
1296,
29889,
940,
8389,
322,
16116,
287,
29892,
599,
670,
2301,
7799,
3796,
2691,
29889,
3834,
2000,
1075,
385,
1095,
5676,
262,
29899,
328,
1267,
284,
457,
432,
2960,
347,
29892,
541,
540,
925,
23289,
278,
982,
670,
3573,
7091,
746,
540,
471,
297,
8267,
29889,
14832,
540,
471,
17058,
29899,
10184,
29892,
540,
9007,
29915,
29873,
5232,
292,
1623,
472,
599,
29889,
21223,
2820,
670,
2625,
310,
278,
5716,
29892,
4129,
471,
13016,
11687,
9985,
29892,
278,
270,
913,
7933,
7714,
414,
29892,
278,
3856,
305,
29892,
278,
25900,
11904,
29889,
1205,
372,
3939,
297,
278,
7256,
310,
278,
5716,
29892,
14171,
1766,
569,
2243,
6897,
29889,
13,
13,
30015,
29933,
29367,
29892,
298,
16099,
6677,
435,
1296,
9528,
16832,
491,
380,
22155,
975,
304,
278,
6635,
322,
3063,
1623,
373,
1075,
29889,
910,
2625,
310,
278,
5716,
9488,
263,
12311,
17567,
29889,
435,
1296,
1033,
269,
484,
261,
2086,
29889,
1346,
29902,
1348,
591,
30010,
345,
1539,
3178,
13,
13,
5328,
278,
6635,
1033,
7726,
322,
6548,
29880,
472,
278,
1021,
931,
560,
566,
287,
435,
1296,
29889,
940,
528,
582,
1505,
287,
29889,
940,
471,
12561,
292,
29889,
13,
13,
29933,
29367,
16116,
287,
714,
263,
282,
1450,
322,
15301,
29892,
3151,
1490,
3711,
5652,
7689,
574,
714,
29889,
6439,
29892,
21915,
29889,
435,
1296,
21832,
1906,
3711,
5652,
29889,
940,
30010,
29881,
18806,
839,
411,
278,
6454,
373,
278,
4565,
1277,
305,
310,
263,
3699,
322,
2355,
841,
22728,
287,
29889,
9178,
368,
3307,
393,
540,
30010,
29881,
750,
304,
679,
263,
260,
300,
24514,
10322,
29892,
322,
393,
1754,
670,
5075,
263,
1173,
577,
540,
8496,
30010,
29873,
664,
714,
363,
263,
2462,
29889,
15011,
29892,
278,
6635,
750,
3438,
1075,
29889,
14302,
29876,
30010,
29873,
372,
884,
282,
790,
287,
3045,
13,
13,
29950,
275,
380,
598,
301,
905,
287,
11480,
278,
6635,
30010,
29879,
282,
1450,
988,
263,
6668,
1486,
9758,
10902,
278,
2625,
310,
278,
6635,
30010,
29879,
4796,
26839,
1397,
29892,
763,
988,
263,
2453,
262,
750,
1063,
6496,
470,
263,
817,
280,
15478,
3045,
435,
1296,
30010,
29879,
5192,
4687,
304,
282,
618,
297,
670,
22827,
29889,
13,
13,
30015,
3782,
3995,
1497,
278,
6635,
29889,
1346,
10858,
5192,
3045,
30024,
940,
1183,
14139,
670,
3711,
5652,
322,
260,
17280,
435,
1296,
30010,
29879,
521,
342,
29889,
29967,
1296,
4446,
372,
1286,
29892,
278,
4802,
29892,
6501,
380,
475,
373,
278,
521,
342,
310,
670,
9090,
29889,
383,
799,
301,
8362,
1549,
1075,
29889,
399,
3634,
1537,
29892,
540,
22162,
630,
304,
278,
658,
4937,
5716,
3856,
305,
29889,
940,
3282,
30010,
29873,
864,
304,
1348,
1048,
380,
2708,
29889,
940,
5131,
304,
281,
1296,
701,
29889,
2567,
29991,
13,
13,
26521,
9559,
5174,
278,
6635,
26239,
967,
2814,
304,
4071,
290,
29889,
435,
1296,
471,
1492,
29892,
6780,
275,
750,
1063,
4343,
29889,
13,
13,
29933,
29367,
6548,
839,
29889,
13,
13,
29967,
1296,
8496,
29915,
29873,
1371,
515,
14051,
10549,
670,
1361,
701,
322,
1623,
975,
278,
380,
2593,
29892,
6501,
9758,
29892,
17231,
372,
723,
748,
3448,
29889,
960,
372,
3282,
29915,
29873,
3045,
4451,
29892,
714,
5625,
9571,
9758,
29991,
1724,
471,
393,
515,
29973,
350,
16926,
27105,
1460,
29973,
13,
13,
30015,
2713,
21273,
598,
29892,
670,
1708,
4326,
29890,
621,
3178,
450,
6635,
1560,
6793,
287,
29889,
13,
13,
29967,
1296,
1033,
2289,
766,
4561,
445,
6635,
29889,
13,
13,
29909,
3050,
6496,
373,
670,
2175,
29889,
435,
1296,
1999,
682,
287,
29889,
1670,
9007,
29915,
29873,
263,
3050,
727,
297,
278,
658,
4937,
5716,
29889,
6439,
29892,
21915,
29892,
540,
750,
263,
2289,
4319,
11223,
1048,
445,
29889,
13,
13,
29933,
29367,
12500,
287,
515,
670,
22549,
279,
322,
2381,
9921,
287,
304,
278,
2319,
29892,
29023,
292,
767,
297,
263,
16749,
16558,
552,
29881,
14726,
1058,
28996,
1549,
278,
3050,
29889,
13,
13,
30015,
10994,
29892,
6780,
275,
3995,
278,
1410,
29891,
1497,
29889,
450,
6635,
364,
25443,
263,
282,
1038,
29892,
769,
3147,
698,
287,
964,
278,
2446,
5716,
29889,
13,
13,
1576,
16897,
5148,
15311,
29889,
450,
767,
282,
27464,
435,
1296,
411,
5076,
408,
16749,
408,
670,
1067,
6046,
29889,
10506,
2927,
2222,
5076,
9273,
30010,
29873,
505,
750,
385,
2779,
373,
435,
1296,
541,
540,
8496,
29915,
29873,
4337,
29889,
13,
13,
3868,
30010,
29881,
20050,
1623,
20947,
310,
260,
820,
20330,
322,
2113,
29889,
3600,
330,
8842,
3252,
12652,
29889,
940,
881,
367,
278,
697,
297,
8323,
29889,
940,
1033,
13777,
445,
1410,
29891,
411,
697,
1361,
29889,
940,
1898,
304,
7726,
322,
8496,
29915,
29873,
29889,
13,
13,
30015,
27796,
297,
29892,
435,
1296,
1152,
5707,
29889,
887,
508,
1246,
592,
18956,
3178,
450,
767,
6077,
322,
28996,
4822,
278,
16897,
29889,
13,
13,
12881,
635,
435,
1296,
1476,
670,
7314,
29889,
1346,
8809,
5564,
3995,
540,
8182,
12535,
29889,
940,
5131,
304,
2381,
9921,
763,
6780,
275,
29892,
435,
1296,
1033,
2381,
9921,
411,
278,
1900,
310,
963,
29892,
541,
670,
6900,
8338,
3192,
2745,
540,
7450,
278,
3050,
322,
5148,
297,
29889,
13,
13,
7775,
7775,
2328,
1068,
12703,
366,
679,
599,
278,
521,
2925,
366,
817,
29889,
21860,
262
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
There are a surprising number of creatures that have discovered the secrets to surviving in cold environments, from Alaskan wood frogs to the larvae of the Antarctic tiny, flightless midge. For J.D. Gantz, doctoral candidate at the cryobiology lab at Miami University in Ohio, one of the subjects of his research whirls around endlessly in circles. In order to understand how low temperatures affect insect muscles, he chills flesh flies and lets them ride on a “fly treadmill”—a rotating apparatus that allows him to measure a fly’s flight velocity.
When Science Friday hit the road to Oxford, Ohio for a live show, radio producer Christie Taylor along with digital producer Lauren Young explored Miami University’s cryobiology lab and learned about the applications of Gantz’s research. Step into the lab with SciFri by scrolling through the photos below while listening to the audio diary.
Photo by Lauren J. Young
J.D. Gantz. Photo by Lauren J. Young
“These don’t actually smell as terrible as they can sometimes,” says Gantz. Flesh fly maggots chow down on dried liver. They develop in decaying flesh. Photo by Lauren J. Young
Meet the Writers
Christie Taylor is an associate producer for Science Friday. Her day involves diligent research, too many phone calls for an introvert, and asking scientists if they have any audio of that narwhal heartbeat. | [
1,
1670,
526,
263,
26800,
1353,
310,
907,
3698,
393,
505,
10943,
278,
22183,
1372,
304,
10503,
4357,
297,
11220,
23136,
29892,
515,
838,
1278,
273,
8112,
14671,
3174,
304,
278,
2203,
1564,
29872,
310,
278,
5459,
279,
20009,
21577,
29892,
16286,
2222,
286,
5525,
29889,
1152,
435,
29889,
29928,
29889,
402,
424,
29920,
29892,
11619,
284,
14020,
472,
278,
10901,
15647,
3002,
9775,
472,
23740,
3014,
297,
15821,
29892,
697,
310,
278,
17800,
310,
670,
5925,
377,
9968,
2820,
1095,
23769,
297,
22558,
29889,
512,
1797,
304,
2274,
920,
4482,
6238,
3698,
6602,
17564,
2301,
7799,
29892,
540,
521,
6090,
28610,
285,
3687,
322,
16869,
963,
22203,
373,
263,
1346,
17652,
260,
949,
19958,
30024,
30003,
29874,
5731,
1218,
7132,
2389,
393,
6511,
1075,
304,
5645,
263,
11340,
30010,
29879,
16286,
12885,
29889,
13,
13,
10401,
9327,
28728,
7124,
278,
6520,
304,
11045,
29892,
15821,
363,
263,
5735,
1510,
29892,
7155,
14297,
2819,
347,
12537,
3412,
411,
13436,
14297,
997,
10732,
10443,
3902,
4395,
23740,
3014,
30010,
29879,
10901,
15647,
3002,
9775,
322,
10972,
1048,
278,
8324,
310,
402,
424,
29920,
30010,
29879,
5925,
29889,
16696,
964,
278,
9775,
411,
5636,
27034,
491,
23064,
1549,
278,
20612,
2400,
1550,
19866,
304,
278,
10348,
652,
653,
29889,
13,
13,
25971,
491,
997,
10732,
435,
29889,
10443,
13,
13,
29967,
29889,
29928,
29889,
402,
424,
29920,
29889,
1963,
3747,
491,
997,
10732,
435,
29889,
10443,
13,
13,
30015,
1349,
968,
1016,
30010,
29873,
2869,
1560,
514,
408,
16403,
408,
896,
508,
6041,
3995,
4083,
402,
424,
29920,
29889,
383,
23854,
11340,
2320,
29887,
1862,
521,
340,
1623,
373,
270,
1255,
619,
369,
29889,
2688,
2693,
297,
20228,
292,
28610,
29889,
1963,
3747,
491,
997,
10732,
435,
29889,
10443,
13,
13,
6816,
300,
278,
16849,
414,
13,
13,
18687,
347,
12537,
338,
385,
25836,
14297,
363,
9327,
28728,
29889,
2439,
2462,
20789,
21749,
25692,
5925,
29892,
2086,
1784,
9008,
5717,
363,
385,
22909,
1765,
29892,
322,
6721,
9638,
2879,
565,
896,
505,
738,
10348,
310,
393,
17655,
1332,
284,
5192,
915,
271,
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
] |
Tag Archives: Best Birthday Status Updates Facebook
Best Birthday Status Updates Facebook: Birthday is the most important day in anyone’s life. Even we also know that people want to celebrate with their family members and with online to friend. Friends are the great gift of God. Wish your on her/him birthday. Do not worry we covered Birthday Saying Lines Best Wishes Greetings… Read More » | [
1,
10522,
28320,
29901,
6407,
350,
7515,
3250,
16034,
5020,
15190,
13327,
13,
13,
25353,
350,
7515,
3250,
16034,
5020,
15190,
13327,
29901,
350,
7515,
3250,
338,
278,
1556,
4100,
2462,
297,
5019,
30010,
29879,
2834,
29889,
7753,
591,
884,
1073,
393,
2305,
864,
304,
10894,
403,
411,
1009,
3942,
5144,
322,
411,
7395,
304,
5121,
29889,
11169,
1975,
526,
278,
2107,
19797,
310,
4177,
29889,
399,
728,
596,
373,
902,
29914,
26994,
12060,
3250,
29889,
1938,
451,
15982,
591,
10664,
350,
7515,
3250,
14891,
292,
365,
1475,
6407,
399,
17006,
4122,
300,
886,
30098,
7523,
5853,
2047
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] |
Lina Khalifeh: Empowering women through martial arts
In 2010, at the age of 24, Lina Khalifeh, the Jordanian entrepreneur decided to use her martial-arts background to set up a self-defense studio in her parents’ basement.
Two years later, after educating herself on violence against women and completing various educational programmes, Lina founded SheFighter in the Jordanian capital of Amman, the first self-defense club dedicated to women. Since then, it has gone from strength to strength. She and her team have trained over 12,000 women and 2,000 Syrian refugees across Jordan and her business continues to grow. | [
1,
365,
1099,
476,
4077,
1607,
29882,
29901,
7361,
1680,
292,
5866,
1549,
14436,
616,
16930,
13,
13,
797,
29871,
29906,
29900,
29896,
29900,
29892,
472,
278,
5046,
310,
29871,
29906,
29946,
29892,
365,
1099,
476,
4077,
1607,
29882,
29892,
278,
18284,
713,
23440,
1600,
332,
8459,
304,
671,
902,
14436,
616,
29899,
5708,
3239,
304,
731,
701,
263,
1583,
29899,
1753,
1947,
8693,
297,
902,
11825,
30010,
2362,
882,
29889,
13,
13,
13985,
2440,
2678,
29892,
1156,
6320,
1218,
8735,
373,
21448,
2750,
5866,
322,
1614,
1259,
5164,
28976,
1824,
4467,
29892,
365,
1099,
11091,
2296,
29943,
14643,
297,
278,
18284,
713,
7483,
310,
1913,
1171,
29892,
278,
937,
1583,
29899,
1753,
1947,
4402,
16955,
304,
5866,
29889,
4001,
769,
29892,
372,
756,
7695,
515,
9324,
304,
9324,
29889,
2296,
322,
902,
3815,
505,
16370,
975,
29871,
29896,
29906,
29892,
29900,
29900,
29900,
5866,
322,
29871,
29906,
29892,
29900,
29900,
29900,
8713,
6392,
25447,
267,
4822,
18284,
322,
902,
5381,
18172,
304,
6548,
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
] |