Problem with comparison.
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/bat/flash.cmd
0,0 → 1,2
rem STMFlashLoader.exe -c --pn 20 --br 115200 --to 1000 -Auto -i STM32_Connectivity-line_256K -e --all -d --fn LED_Blink.hex --v
STMFlashLoader.exe -c --pn 20 --br 115200 --to 1000 -Auto -i STM32_Connectivity-line_256K -o -d --fn LED_Blink.hex
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/Ini.cpp
0,0 → 1,1064
/////////////////////////////////////////////////////////////////////////////////
// Cini Class Implementation
/////////////////////////////////////////////////////////////////////////////////
#include "stdafx.h" // include if you got "fatal error C1010: unexpected end of file..."
#include "Ini.h"
#include <string.h>
#include <stdio.h>
#include <assert.h>
 
#define DEF_PROFILE_NUM_LEN 64 // numeric string length, could be quite long for binary format
#define DEF_PROFILE_THRESHOLD 512 // temporary string length
#define DEF_PROFILE_DELIMITER _T(",") // default string delimiter
#define DEF_PROFILE_TESTSTRING _T("{63788286-AE30-4D6B-95DF-3B451C1C79F9}") // Uuid for internal use
 
// struct used to be passed to __KeyPairProc as a LPVOID parameter
struct STR_LIMIT
{
LPTSTR lpTarget;
DWORD dwRemain;
DWORD dwTotalCopied;
};
 
/////////////////////////////////////////////////////////////////////////////////
// Constructors & Destructor
/////////////////////////////////////////////////////////////////////////////////
CIni::CIni()
{
m_pszPathName = NULL;
}
 
CIni::CIni(LPCTSTR lpPathName)
{
m_pszPathName = NULL;
SetPathName(lpPathName);
}
 
CIni::~CIni()
{
if (m_pszPathName != NULL)
delete [] m_pszPathName;
}
 
/////////////////////////////////////////////////////////////////////////////////
// Ini File Path Access
/////////////////////////////////////////////////////////////////////////////////
 
// Assign ini file path name
void CIni::SetPathName(LPCTSTR lpPathName)
{
if (lpPathName == NULL)
{
if (m_pszPathName != NULL)
*m_pszPathName = _T('\0');
}
else
{
if (m_pszPathName != NULL)
delete [] m_pszPathName;
 
m_pszPathName = _tcsdup(lpPathName);
}
}
 
// Retrieve ini file path name
DWORD CIni::GetPathName(LPTSTR lpBuffer, DWORD dwBufSize) const
{
*lpBuffer = _T('\0');
DWORD dwLen = 0;
if (lpBuffer != NULL)
{
_tcsncpy(lpBuffer, m_pszPathName, dwBufSize);
dwLen = _tcslen(lpBuffer);
}
else
{
// just calculate the required buffer size
dwLen = _tcslen(m_pszPathName);
}
return dwLen;
}
 
#ifdef __AFXWIN_H__
CString CIni::GetPathName() const
{
return CString(m_pszPathName);
}
#endif
 
/////////////////////////////////////////////////////////////////////////////////
// Raw String Access
/////////////////////////////////////////////////////////////////////////////////
 
// Get a profile string value, if the buffer size is not large enough, the result
// may be truncated.
DWORD CIni::GetString(LPCTSTR lpSection, LPCTSTR lpKey, LPTSTR lpBuffer, DWORD dwBufSize, LPCTSTR lpDefault) const
{
if (lpBuffer != NULL)
*lpBuffer = _T('\0');
 
LPTSTR psz = __GetStringDynamic(lpSection, lpKey, lpDefault);
DWORD dwLen = _tcslen(psz);
 
if (lpBuffer != NULL)
{
_tcsncpy(lpBuffer, psz, dwBufSize);
dwLen = min(dwLen, dwBufSize);
}
 
delete [] psz;
return dwLen;
}
 
#ifdef __AFXWIN_H__
CString CIni::GetString(LPCTSTR lpSection, LPCTSTR lpKey, LPCTSTR lpDefault) const
{
LPTSTR psz = __GetStringDynamic(lpSection, lpKey, lpDefault);
CString str(psz);
delete [] psz;
return str;
}
#endif
 
// Write a string value to the ini file
BOOL CIni::WriteString(LPCTSTR lpSection, LPCTSTR lpKey, LPCTSTR lpValue) const
{
if (lpSection == NULL || lpKey == NULL)
return FALSE;
 
return ::WritePrivateProfileString(lpSection, lpKey, lpValue == NULL ? _T("") : lpValue, m_pszPathName);
}
 
// Read a string value from the ini file, append another string after it and then write it
// back to the ini file
BOOL CIni::AppendString(LPCTSTR lpSection, LPCTSTR lpKey, LPCTSTR lpString) const
{
if (lpString == NULL)
return FALSE;
 
TCHAR* psz = __GetStringDynamic(lpSection, lpKey);
TCHAR* pNewString = new TCHAR[_tcslen(psz) + _tcslen(lpString) + 1];
_stprintf(pNewString, _T("%s%s"), psz, lpString);
const BOOL RES = WriteString(lpSection, lpKey, pNewString);
delete [] pNewString;
delete [] psz;
return RES;
}
 
/////////////////////////////////////////////////////////////////////////////////
// Ini File String Array Access
/////////////////////////////////////////////////////////////////////////////////
 
// Get an array of string
DWORD CIni::GetArray(LPCTSTR lpSection, LPCTSTR lpKey, LPTSTR lpBuffer, DWORD dwBufSize, LPCTSTR lpDelimiter, BOOL bTrimString) const
{
if (lpBuffer != NULL)
*lpBuffer = _T('\0');
 
if (lpSection == NULL || lpKey == NULL)
return 0;
 
LPTSTR psz = __GetStringDynamic(lpSection, lpKey);
DWORD dwCopied = 0;
 
if (*psz != _T('\0'))
{
if (lpBuffer == NULL)
{
// just calculate the required buffer size
const DWORD MAX_LEN = _tcslen(psz) + 2;
LPTSTR p = new TCHAR[MAX_LEN + 1];
dwCopied = __StringSplit(psz, p, MAX_LEN, lpDelimiter, bTrimString);
delete [] p;
}
else
{
dwCopied = __StringSplit(psz, lpBuffer, dwBufSize, lpDelimiter, bTrimString);
}
}
 
delete [] psz;
return dwCopied;
}
 
#ifdef __AFXWIN_H__
void CIni::GetArray(LPCTSTR lpSection, LPCTSTR lpKey, CStringArray *pArray, LPCTSTR lpDelimiter, BOOL bTrimString) const
{
if (pArray != NULL)
pArray->RemoveAll();
 
const DWORD LEN = GetArray(lpSection, lpKey, NULL, 0, lpDelimiter);
if (LEN == 0)
return;
 
LPTSTR psz = new TCHAR[LEN + 3];
GetArray(lpSection, lpKey, psz, LEN + 2, lpDelimiter);
ParseDNTString(psz, __SubStrAdd, (LPVOID)pArray);
delete [] psz;
}
#endif
 
#ifdef __AFXWIN_H__
BOOL CIni::WriteArray(LPCTSTR lpSection, LPCTSTR lpKey, const CStringArray *pArray, int nWriteCount, LPCTSTR lpDelimiter) const
{
if (pArray == NULL)
return FALSE;
 
if (nWriteCount < 0)
nWriteCount = pArray->GetSize();
else
nWriteCount = min(nWriteCount, pArray->GetSize());
 
const CString DELIMITER = (lpDelimiter == NULL || *lpDelimiter == _T('\0')) ? _T(",") : lpDelimiter;
CString sLine;
for (int i = 0; i < nWriteCount; i++)
{
sLine += pArray->GetAt(i);
if (i != nWriteCount - 1)
sLine += DELIMITER;
}
return WriteString(lpSection, lpKey, sLine);
}
#endif
 
/////////////////////////////////////////////////////////////////////////////////
// Primitive Data Type Access
/////////////////////////////////////////////////////////////////////////////////
 
// Get a signed integral value
int CIni::GetInt(LPCTSTR lpSection, LPCTSTR lpKey, int nDefault, int nBase) const
{
TCHAR sz[DEF_PROFILE_NUM_LEN + 1] = _T("");
GetString(lpSection, lpKey, sz, DEF_PROFILE_NUM_LEN);
return *sz == _T('\0') ? nDefault : int(_tcstoul(sz, NULL, __ValidateBase(nBase)));
}
 
// Get an unsigned integral value
UINT CIni::GetUInt(LPCTSTR lpSection, LPCTSTR lpKey, UINT nDefault, int nBase) const
{
TCHAR sz[DEF_PROFILE_NUM_LEN + 1] = _T("");
GetString(lpSection, lpKey, sz, DEF_PROFILE_NUM_LEN);
return *sz == _T('\0') ? nDefault : UINT(_tcstoul(sz, NULL, __ValidateBase(nBase)));
}
 
// Get a boolean value
BOOL CIni::GetBool(LPCTSTR lpSection, LPCTSTR lpKey, BOOL bDefault) const
{
TCHAR sz[DEF_PROFILE_NUM_LEN + 1] = _T("");
GetString(lpSection, lpKey, sz, DEF_PROFILE_NUM_LEN);
return StringToBool(sz, bDefault);
}
 
// Get a double floating value
double CIni::GetDouble(LPCTSTR lpSection, LPCTSTR lpKey, double fDefault) const
{
TCHAR sz[DEF_PROFILE_NUM_LEN + 1] = _T("");
GetString(lpSection, lpKey, sz, DEF_PROFILE_NUM_LEN);
return *sz == _T('\0') ? fDefault : _tcstod(sz, NULL);
}
 
// Write a signed integral value to the ini file
BOOL CIni::WriteInt(LPCTSTR lpSection, LPCTSTR lpKey, int nValue, int nBase) const
{
TCHAR szValue[DEF_PROFILE_NUM_LEN + 1] = _T("");
__IntToString(nValue, szValue, nBase);
return WriteString(lpSection, lpKey, szValue);
}
 
// Write an unsigned value to the ini file
BOOL CIni::WriteUInt(LPCTSTR lpSection, LPCTSTR lpKey, UINT nValue, int nBase) const
{
TCHAR szValue[DEF_PROFILE_NUM_LEN + 1] = _T("");
__UIntToString(nValue, szValue, nBase);
return WriteString(lpSection, lpKey, szValue);
}
 
// Write a double floating value to the ini file
BOOL CIni::WriteDouble(LPCTSTR lpSection, LPCTSTR lpKey, double fValue, int nPrecision) const
{
TCHAR szFmt[16] = _T("%f");
 
if (nPrecision > 0)
_stprintf(szFmt, _T("%%.%df"), nPrecision);
 
TCHAR szValue[DEF_PROFILE_NUM_LEN + 1] = _T("");
_stprintf(szValue, szFmt, fValue);
return WriteString(lpSection, lpKey, szValue);
}
 
// Read a double value from the ini file, increase it then write it back
BOOL CIni::IncreaseDouble(LPCTSTR lpSection, LPCTSTR lpKey, double fIncrease, int nPrecision) const
{
double f = GetDouble(lpSection, lpKey, 0.0);
f += fIncrease;
return WriteDouble(lpSection, lpKey, f, nPrecision);
}
 
// Write a boolean value to the ini file
BOOL CIni::WriteBool(LPCTSTR lpSection, LPCTSTR lpKey, BOOL bValue) const
{
return WriteInt(lpSection, lpKey, bValue ? 1 : 0, BASE_DECIMAL);
}
 
// Read a boolean value from the ini file, invert it(true becomes false, false becomes true),
// then write it back
BOOL CIni::InvertBool(LPCTSTR lpSection, LPCTSTR lpKey) const
{
return WriteBool(lpSection, lpKey, !GetBool(lpSection, lpKey, FALSE));
}
 
// Read a int from the ini file, increase it and then write it back to the ini file
BOOL CIni::IncreaseInt(LPCTSTR lpSection, LPCTSTR lpKey, int nIncrease, int nBase) const
{
int nVal = GetInt(lpSection, lpKey, 0, nBase);
nVal += nIncrease;
return WriteInt(lpSection, lpKey, nVal, nBase);
}
 
// Read an UINT from the ini file, increase it and then write it back to the ini file
BOOL CIni::IncreaseUInt(LPCTSTR lpSection, LPCTSTR lpKey, UINT nIncrease, int nBase) const
{
UINT nVal = GetUInt(lpSection, lpKey, 0, nBase);
nVal += nIncrease;
return WriteUInt(lpSection, lpKey, nVal, nBase);
}
 
TCHAR CIni::GetChar(LPCTSTR lpSection, LPCTSTR lpKey, TCHAR cDefault) const
{
TCHAR sz[2] = _T("");
GetString(lpSection, lpKey, sz, 1);
return *sz == _T('\0') ? cDefault : sz[0];
}
 
BOOL CIni::WriteChar(LPCTSTR lpSection, LPCTSTR lpKey, TCHAR c) const
{
TCHAR sz[2] = { c, _T('\0') };
return WriteString(lpSection, lpKey, sz);
}
 
/////////////////////////////////////////////////////////////////////////////////
// User-Defined Data Type Access
/////////////////////////////////////////////////////////////////////////////////
 
// Get a block of raw data from the ini file
DWORD CIni::GetDataBlock(LPCTSTR lpSection, LPCTSTR lpKey, LPVOID lpBuffer, DWORD dwBufSize, DWORD dwOffset) const
{
LPTSTR psz = __GetStringDynamic(lpSection, lpKey);
DWORD dwLen = _tcslen(psz) / 2;
if (dwLen <= dwOffset)
{
delete [] psz;
return 0;
}
 
// verify psz, must be all in hex format
for (int i = 0; psz[i] != _T('\0'); i++)
{
TCHAR c = psz[i];
if ((c >= _T('0') && c <= _T('9'))
|| (c >= _T('a') && c <= _T('f'))
|| (c >= _T('A') && c <= _T('F')))
{
// valid
}
else
{
delete [] psz;
return 0;
}
}
 
DWORD dwProcLen = 0;
LPBYTE lpb = (LPBYTE)lpBuffer;
 
if (lpb != NULL)
{
dwProcLen = min(dwLen - dwOffset, dwBufSize);
LPCTSTR p = &psz[dwOffset * 2];
for (DWORD i = 0; i < dwProcLen; i++)
{
TCHAR sz[3] = _T("");
_tcsncpy(sz, p, 2);
lpb[i] = BYTE(_tcstoul(sz, NULL, 16));
p = &p[2];
}
}
else
{
dwProcLen = dwLen - dwOffset;
}
delete [] psz;
return dwProcLen;
}
 
// Write a block of raw data to the ini file
BOOL CIni::WriteDataBlock(LPCTSTR lpSection, LPCTSTR lpKey, LPCVOID lpData, DWORD dwDataSize) const
{
const BYTE* lpb = (const BYTE*)lpData;
if (lpb == NULL)
return FALSE;
 
LPTSTR psz = new TCHAR[dwDataSize * 2 + 1];
for (DWORD i = 0, j = 0; i < dwDataSize; i++, j += 2)
_stprintf(&psz[j], _T("%02X"), lpb[i]);
const BOOL RES = WriteString(lpSection, lpKey, psz);
delete [] psz;
return RES;
}
 
// Append a block of raw data to a specified key in the ini file
BOOL CIni::AppendDataBlock(LPCTSTR lpSection, LPCTSTR lpKey, LPCVOID lpData, DWORD dwDataSize) const
{
const BYTE* lpb = (const BYTE*)lpData;
if (lpb == NULL)
return FALSE;
 
LPTSTR psz = new TCHAR[dwDataSize * 2 + 1];
for (DWORD i = 0, j = 0; i < dwDataSize; i++, j += 2)
_stprintf(&psz[j], _T("%02X"), lpb[i]);
const BOOL RES = AppendString(lpSection, lpKey, psz);
delete [] psz;
return RES;
}
 
// Get a POINT value
POINT CIni::GetPoint(LPCTSTR lpSection, LPCTSTR lpKey, POINT ptDefault) const
{
POINT pt;
if (GetDataBlock(lpSection, lpKey, &pt, sizeof(POINT)) != sizeof(POINT))
pt = ptDefault;
return pt;
}
 
// Get a RECT value
RECT CIni::GetRect(LPCTSTR lpSection, LPCTSTR lpKey, RECT rcDefault) const
{
RECT rc;
if (GetDataBlock(lpSection, lpKey, &rc, sizeof(RECT)) != sizeof(RECT))
rc = rcDefault;
return rc;
}
 
// Write a POINT to the ini file
BOOL CIni::WritePoint(LPCTSTR lpSection, LPCTSTR lpKey, POINT pt) const
{
return WriteDataBlock(lpSection, lpKey, &pt, sizeof(POINT));
}
 
// Write a RECT to the ini file
BOOL CIni::WriteRect(LPCTSTR lpSection, LPCTSTR lpKey, RECT rc) const
{
return WriteDataBlock(lpSection, lpKey, &rc, sizeof(RECT));
}
 
/////////////////////////////////////////////////////////////////////////////////
// Sections & Keys Access
/////////////////////////////////////////////////////////////////////////////////
 
// Retrieve a list of key-lines(key-pairs) of the specified section
DWORD CIni::GetKeyLines(LPCTSTR lpSection, LPTSTR lpBuffer, DWORD dwBufSize) const
{
if (lpBuffer != NULL)
*lpBuffer = _T('\0');
 
if (lpSection == NULL)
return 0;
 
if (lpBuffer == NULL)
{
// just calculate the required buffer size
DWORD dwLen = DEF_PROFILE_THRESHOLD;
LPTSTR psz = new TCHAR[dwLen + 1];
DWORD dwCopied = ::GetPrivateProfileSection(lpSection, psz, dwLen, m_pszPathName);
 
while (dwCopied + 2 >= dwLen)
{
dwLen += DEF_PROFILE_THRESHOLD;
delete [] psz;
psz = new TCHAR[dwLen + 1];
dwCopied = ::GetPrivateProfileSection(lpSection, psz, dwLen, m_pszPathName);
}
 
delete [] psz;
return dwCopied + 2;
}
else
{
return ::GetPrivateProfileSection(lpSection, lpBuffer, dwBufSize, m_pszPathName);
}
}
 
// Retrieve a list of key names of the specified section
DWORD CIni::GetKeyNames(LPCTSTR lpSection, LPTSTR lpBuffer, DWORD dwBufSize) const
{
if (lpBuffer != NULL)
*lpBuffer = _T('\0');
 
if (lpSection == NULL)
return 0;
 
STR_LIMIT sl;
sl.lpTarget = lpBuffer;
sl.dwRemain = dwBufSize;
sl.dwTotalCopied = 0;
 
const DWORD LEN = GetKeyLines(lpSection, NULL, 0);
if (LEN == 0)
return 0;
 
LPTSTR psz = new TCHAR[LEN + 1];
GetKeyLines(lpSection, psz, LEN);
ParseDNTString(psz, __KeyPairProc, (LPVOID)(&sl));
delete [] psz;
if (lpBuffer != NULL)
lpBuffer[sl.dwTotalCopied] = _T('\0');
return sl.dwTotalCopied;
}
 
// Get all section names from an ini file
DWORD CIni::GetSectionNames(LPTSTR lpBuffer, DWORD dwBufSize) const
{
if (lpBuffer == NULL)
{
// just calculate the required buffer size
DWORD dwLen = DEF_PROFILE_THRESHOLD;
LPTSTR psz = new TCHAR[dwLen + 1];
DWORD dwCopied = ::GetPrivateProfileSectionNames(psz, dwLen, m_pszPathName);
while (dwCopied + 2 >= dwLen)
{
dwLen += DEF_PROFILE_THRESHOLD;
delete [] psz;
psz = new TCHAR[dwLen + 1];
dwCopied = ::GetPrivateProfileSectionNames(psz, dwLen, m_pszPathName);
}
delete [] psz;
return dwCopied + 2;
}
else
{
return ::GetPrivateProfileSectionNames(lpBuffer, dwBufSize, m_pszPathName);
}
}
 
#ifdef __AFXWIN_H__
void CIni::GetSectionNames(CStringArray *pArray) const
{
if (pArray != NULL)
pArray->RemoveAll();
 
const DWORD LEN = GetSectionNames(NULL, 0);
if (LEN == 0)
return;
 
LPTSTR psz = new TCHAR[LEN + 1];
GetSectionNames(psz, LEN);
ParseDNTString(psz, __SubStrAdd, pArray);
delete [] psz;
}
#endif
 
#ifdef __AFXWIN_H__
// Retrieve a list of key-lines(key-pairs) of the specified section
void CIni::GetKeyLines(LPCTSTR lpSection, CStringArray *pArray) const
{
if (pArray != NULL)
pArray->RemoveAll();
 
const DWORD LEN = GetKeyLines(lpSection, NULL, 0);
if (LEN == 0)
return;
 
LPTSTR psz = new TCHAR[LEN + 1];
GetKeyLines(lpSection, psz, LEN);
ParseDNTString(psz, __SubStrAdd, pArray);
delete [] psz;
}
#endif
 
#ifdef __AFXWIN_H__
// Retrieve a list of key names of the specified section
void CIni::GetKeyNames(LPCTSTR lpSection, CStringArray *pArray) const
{
if (pArray == NULL)
return;
 
pArray->RemoveAll();
#ifndef _VS_USED
const int LEN = GetKeyNames(lpSection, NULL, 0);
#else
const LEN = GetKeyNames(lpSection, NULL, 0);
#endif
LPTSTR psz = new TCHAR[LEN + 1];
GetKeyNames(lpSection, psz, LEN);
ParseDNTString(psz, __SubStrAdd, (LPVOID)pArray);
delete [] psz;
}
#endif
 
// Remove whole section from the ini file
BOOL CIni::DeleteSection(LPCTSTR lpSection) const
{
return ::WritePrivateProfileString(lpSection, NULL, _T(""), m_pszPathName);
}
 
// Remove a key from a section
BOOL CIni::DeleteKey(LPCTSTR lpSection, LPCTSTR lpKey) const
{
return ::WritePrivateProfileString(lpSection, lpKey, NULL, m_pszPathName);
}
 
BOOL CIni::IsSectionExist(LPCTSTR lpSection) const
{
if (lpSection == NULL)
return FALSE;
 
// first get the section name list, then check if lpSection exists
// in the list.
const DWORD LEN = GetSectionNames(NULL, 0);
if (LEN == 0)
return FALSE;
 
LPTSTR psz = new TCHAR[LEN + 1];
GetSectionNames(psz, LEN);
BOOL RES = !ParseDNTString(psz, __SubStrCompare, (LPVOID)lpSection);
delete [] psz;
return RES;
}
 
BOOL CIni::IsKeyExist(LPCTSTR lpSection, LPCTSTR lpKey) const
{
if (lpSection == NULL || lpKey == NULL)
return FALSE;
 
// Test it with the default unique string
LPTSTR psz = __GetStringDynamic(lpSection, lpKey, DEF_PROFILE_TESTSTRING);
const BOOL RES = (_tcscmp(psz, DEF_PROFILE_TESTSTRING) != 0);
delete [] psz;
return RES;
}
 
BOOL CIni::CopySection(LPCTSTR lpSrcSection, LPCTSTR lpDestSection, BOOL bFailIfExist) const
{
if (lpSrcSection == NULL || lpDestSection == NULL)
return FALSE;
 
if (_tcsicmp(lpSrcSection, lpDestSection) == 0)
return FALSE;
 
if (!IsSectionExist(lpSrcSection))
return FALSE;
 
if (bFailIfExist && IsSectionExist(lpDestSection))
return FALSE;
 
DeleteSection(lpDestSection);
 
const DWORD SRC_LEN = GetKeyLines(lpSrcSection, NULL, 0);
LPTSTR psz = new TCHAR[SRC_LEN + 2];
//memset(psz, 0, sizeof(TCHAR) * (SRC_LEN + 2));
GetKeyLines(lpSrcSection, psz, SRC_LEN);
const BOOL RES = ::WritePrivateProfileSection(lpDestSection, psz, m_pszPathName);
delete [] psz;
 
return RES;
}
 
BOOL CIni::CopyKey(LPCTSTR lpSrcSection, LPCTSTR lpSrcKey, LPCTSTR lpDestSection, LPCTSTR lpDestKey, BOOL bFailIfExist) const
{
if (lpSrcSection == NULL || lpSrcKey == NULL || lpDestKey == NULL)
return FALSE;
 
if (_tcsicmp(lpSrcSection, lpDestSection) == 0
&& _tcsicmp(lpSrcKey, lpDestKey) == 0)
return FALSE;
 
if (!IsKeyExist(lpSrcSection, lpSrcKey))
return FALSE;
 
if (bFailIfExist && IsKeyExist(lpDestSection, lpDestKey))
return FALSE;
LPTSTR psz = __GetStringDynamic(lpSrcSection, lpSrcKey);
const BOOL RES = WriteString(lpDestSection, lpDestKey, psz);
delete [] psz;
return RES;
}
 
BOOL CIni::MoveSection(LPCTSTR lpSrcSection, LPCTSTR lpDestSection, BOOL bFailIfExist) const
{
return CopySection(lpSrcSection, lpDestSection, bFailIfExist)
&& DeleteSection(lpSrcSection);
}
 
BOOL CIni::MoveKey(LPCTSTR lpSrcSection, LPCTSTR lpSrcKey, LPCTSTR lpDestSection, LPCTSTR lpDestKey, BOOL bFailIfExist) const
{
return CopyKey(lpSrcSection, lpSrcKey, lpDestSection, lpDestKey, bFailIfExist)
&& DeleteKey(lpSrcSection, lpSrcKey);
}
 
/////////////////////////////////////////////////////////////////////////////////
// Helper Functions
/////////////////////////////////////////////////////////////////////////////////
 
// Get a profile string value, return a heap pointer so we do not have to worry
// about the buffer size, however, this function requires the caller to manually
// free the memory.
// This function is the back-bone of all "Getxxx" functions of this class.
LPTSTR CIni::__GetStringDynamic(LPCTSTR lpSection, LPCTSTR lpKey, LPCTSTR lpDefault) const
{
TCHAR* psz = NULL;
if (lpSection == NULL || lpKey == NULL)
{
// Invalid section or key name, just return the default string
if (lpDefault == NULL)
{
// Empty string
psz = new TCHAR[1];
*psz = _T('\0');
}
else
{
psz = new TCHAR[_tcslen(lpDefault) + 1];
_tcscpy(psz, lpDefault);
}
return psz;
}
// Keep enlarging the buffer size until being certain on that the string we
// retrieved was original(not truncated).
DWORD dwLen = DEF_PROFILE_THRESHOLD;
psz = new TCHAR[dwLen + 1];
DWORD dwCopied = ::GetPrivateProfileString(lpSection, lpKey, lpDefault == NULL ? _T("") : lpDefault, psz, dwLen, m_pszPathName);
while (dwCopied + 1 >= dwLen)
{
dwLen += DEF_PROFILE_THRESHOLD;
delete [] psz;
psz = new TCHAR[dwLen + 1];
dwCopied = ::GetPrivateProfileString(lpSection, lpKey, lpDefault == NULL ? _T("") : lpDefault, psz, dwLen, m_pszPathName);
}
return psz; // !!! Requires the caller to free this memory !!!
}
 
// Split a string usinf a particular delimiter, split result are copied into lpBuffer
// in the "double null terminated string" format as the following figure shows:
// xxx\0xxxx\0xx\0xxx\0\0
//
// For example, if the delimiter is ",", then string "ab,cd,e" will be
// splitted into "ab\0cd\0e\0\0", this string format can be parsed into an array
// of sub strings easily using user defined functions or CIni::ParseStringArray.
DWORD CIni::__StringSplit(LPCTSTR lpString, LPTSTR lpBuffer, DWORD dwBufSize, LPCTSTR lpDelimiter, BOOL bTrimString)
{
if (lpString == NULL || lpBuffer == NULL || dwBufSize == 0)
return 0;
 
DWORD dwCopied = 0;
*lpBuffer = _T('\0');
if (*lpString == _T('\0'))
return 0;
 
// If lpDelimiter is NULL, use the default delimiter ",", if delimiter length
// is 0, then return whole string
if (lpDelimiter != NULL && *lpDelimiter == _T('\0'))
{
_tcsncpy(lpBuffer, lpString, dwBufSize - 1);
return _tcslen(lpBuffer);
}
 
LPTSTR pszDel = (lpDelimiter == NULL) ? _tcsdup(DEF_PROFILE_DELIMITER) : _tcsdup(lpDelimiter);
const DWORD DEL_LEN = _tcslen(pszDel);
LPTSTR lpTarget = lpBuffer;
 
// Search through lpString for delimiter matches, and extract sub strings out
LPCTSTR lpPos = lpString;
LPCTSTR lpEnd = _tcsstr(lpPos, pszDel);
 
while (lpEnd != NULL)
{
LPTSTR pszSeg = __StrDupEx(lpPos, lpEnd);
if (bTrimString)
__TrimString(pszSeg);
 
const DWORD SEG_LEN = _tcslen(pszSeg);
const DWORD COPY_LEN = min(SEG_LEN, dwBufSize - dwCopied);
 
// Need to avoid buffer overflow
if (COPY_LEN > 0)
{
dwCopied += COPY_LEN + 1;
_tcsncpy(lpTarget, pszSeg, COPY_LEN);
lpTarget[COPY_LEN] = _T('\0');
lpTarget = &lpTarget[SEG_LEN + 1];
}
delete [] pszSeg;
lpPos = &lpEnd[DEL_LEN]; // Advance the pointer for next search
lpEnd = _tcsstr(lpPos, pszDel);
}
 
// The last part of string, there may not be the trailing delimiter, so we
// need to take care of this part, too
LPTSTR pszSeg = _tcsdup(lpPos);
if (bTrimString)
__TrimString(pszSeg);
 
const DWORD SEG_LEN = _tcslen(pszSeg);
const DWORD COPY_LEN = min(SEG_LEN, dwBufSize - dwCopied);
 
if (COPY_LEN > 0)
{
dwCopied += COPY_LEN + 1;
_tcsncpy(lpTarget, pszSeg, COPY_LEN);
lpTarget[COPY_LEN] = _T('\0');
}
 
delete [] pszSeg;
lpBuffer[dwCopied] = _T('\0');
delete [] pszDel;
return dwCopied;
}
 
// Parse a "double null terminated string", pass each sub string to a user-defined
// callback function
BOOL CIni::ParseDNTString(LPCTSTR lpString, SUBSTRPROC lpFnStrProc, LPVOID lpParam)
{
if (lpString == NULL || lpFnStrProc == NULL)
return FALSE;
 
LPCTSTR p = lpString;
DWORD dwLen = _tcslen(p);
 
while (dwLen > 0)
{
if (!lpFnStrProc(p, lpParam))
return FALSE;
 
p = &p[dwLen + 1];
dwLen = _tcslen(p);
}
return TRUE;
}
 
// Callback function used to compare elements inside of a
// "double null terminated string" with a given string. Useful for
// searching in the section names list.
BOOL CALLBACK CIni::__SubStrCompare(LPCTSTR lpString1, LPVOID lpParam)
{
assert(lpString1 != NULL);
LPCTSTR lpString2 = (LPCTSTR)lpParam;
assert(lpString2 != NULL);
// if two string matches, return zero to stop the parsing
return _tcsicmp(lpString1, lpString2) != 0;
}
 
// Callback function used to process a key-pair, it extracts the
// key name from the key-pair string
BOOL CALLBACK CIni:: __KeyPairProc(LPCTSTR lpString, LPVOID lpParam)
{
STR_LIMIT* psl = (STR_LIMIT*)lpParam;
if (lpString == NULL || psl== NULL)
return FALSE;
LPCTSTR p = _tcschr(lpString, _T('='));
if (p == NULL || p == lpString)
return TRUE;
// extract the sub-string on left side of the '='
LPTSTR psz = new TCHAR[_tcslen(lpString) + 1];
 
//#ifndef _VS6_USED
int i;
//#endif
 
for (int i = 0; &lpString[i] < p; i++)
psz[i] = lpString[i];
psz[i] = _T('\0');
 
// trim
__TrimString(psz);
DWORD dwNameLen = _tcslen(psz);
DWORD dwCopyLen = 0;
//copy to the buffer
if (psl->lpTarget != NULL)
{
dwCopyLen = (psl->dwRemain > 1) ? min(dwNameLen, psl->dwRemain - 1) : 0;
_tcsncpy(psl->lpTarget, psz, dwCopyLen);
psl->lpTarget[dwCopyLen] = _T('\0');
psl->lpTarget = &(psl->lpTarget[dwCopyLen + 1]);
psl->dwRemain -= dwCopyLen + 1;
}
else
{
dwCopyLen = dwNameLen;
}
 
delete [] psz;
psl->dwTotalCopied += dwCopyLen + 1;
return TRUE;
}
 
#ifdef __AFXWIN_H__
// Callback function used to add elements that are extracted from a
// "double null terminated string" to an MFC CStringArray.
BOOL CALLBACK CIni::__SubStrAdd(LPCTSTR lpString, LPVOID lpParam)
{
CStringArray* pArray = (CStringArray*)lpParam;
if (pArray == NULL || lpString == NULL)
return FALSE;
 
pArray->Add(lpString);
return TRUE;
}
#endif
 
// Convert an integer into binary string format
void CIni::__ToBinaryString(UINT nNumber, LPTSTR lpBuffer, DWORD dwBufSize)
{
if (dwBufSize == 0)
return;
DWORD dwIndex = 0;
do
{
lpBuffer[dwIndex++] = (nNumber % 2) ? _T('1') : _T('0');
nNumber /= 2;
} while (nNumber > 0 && dwIndex < dwBufSize);
 
lpBuffer[dwIndex] = _T('\0');
_tcsrev(lpBuffer);
}
 
// Make sure the base will be expected value
int CIni::__ValidateBase(int nBase)
{
switch (nBase)
{
case BASE_BINARY:
case BASE_OCTAL:
case BASE_HEXADECIMAL:
break;
 
default:
nBase = BASE_DECIMAL;
}
 
return nBase;
}
 
// Convert a signed integer into string representation, based on its base
void CIni::__IntToString(int nNumber, LPTSTR lpBuffer, int nBase)
{
switch (nBase)
{
case BASE_BINARY:
case BASE_OCTAL:
case BASE_HEXADECIMAL:
__UIntToString((UINT)nNumber, lpBuffer, nBase);
break;
 
default:
_stprintf(lpBuffer, _T("%d"), nNumber);
break;
}
}
 
// Convert an unsigned integer into string representation, based on its base
void CIni::__UIntToString(UINT nNumber, LPTSTR lpBuffer, int nBase)
{
switch (nBase)
{
case BASE_BINARY:
__ToBinaryString(nNumber, lpBuffer, DEF_PROFILE_NUM_LEN);
break;
 
case BASE_OCTAL:
_stprintf(lpBuffer, _T("%o"), nNumber);
break;
 
case BASE_HEXADECIMAL:
_stprintf(lpBuffer, _T("%X"), nNumber);
break;
 
default:
_stprintf(lpBuffer, _T("%u"), nNumber);
break;
}
}
 
BOOL CIni::StringToBool(LPCTSTR lpString, BOOL bDefault)
{
// Default: empty string
// TRUE: "true", "yes", non-zero decimal numner
// FALSE: all other cases
if (lpString == NULL || *lpString == _T('\0'))
return bDefault;
 
return (_tcsicmp(lpString, _T("true")) == 0
|| _tcsicmp(lpString, _T("yes")) == 0
|| _tcstol(lpString, NULL, BASE_DECIMAL) != 0);
}
 
BOOL CIni::__TrimString(LPTSTR lpString)
{
if (lpString == NULL)
return FALSE;
 
BOOL bTrimmed = FALSE;
int nLen = _tcslen(lpString);
 
// '\n' and '\r' are actually not possible in this case, but anyway...
// Trim right side
while (nLen >= 0
&& (lpString[nLen - 1] == _T(' ')
|| lpString[nLen - 1] == _T('\t')
|| lpString[nLen - 1] == _T('\r')
|| lpString[nLen - 1] == _T('\n')))
{
lpString[--nLen] = _T('\0');
bTrimmed = TRUE;
}
 
// Trim left side
LPCTSTR p = lpString;
while (*p == _T(' ')
|| *p == _T('\t')
|| *p == _T('\r')
|| *p == _T('\n'))
{
p = &p[1];
bTrimmed = TRUE;
}
 
if (p != lpString)
{
LPTSTR psz = _tcsdup(p);
_tcscpy(lpString, psz);
delete [] psz;
}
 
return bTrimmed;
}
 
LPTSTR CIni::__StrDupEx(LPCTSTR lpStart, LPCTSTR lpEnd)
{
const DWORD LEN = ((DWORD)lpEnd - (DWORD)lpStart) / sizeof(TCHAR);
LPTSTR psz = new TCHAR[LEN + 1];
_tcsncpy(psz, lpStart, LEN);
psz[LEN] = _T('\0');
return psz; // !!! Requires the caller to free this memory !!!
}
 
/////////////////////////////////////////////////////////////////////////////////
// End of Cini Class Implementation
/////////////////////////////////////////////////////////////////////////////////
 
// If you are getting this error:
// ----------------------------------------------------------------------------
// "fatal error C1010: unexpected end of file while looking for precompiled
// header directive"
//-----------------------------------------------------------------------------
// Please scroll all the way up and uncomment '#include "stdafx.h"'
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/STMFlashLoader.cpp
0,0 → 1,1749
/******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
* File Name : STMFlashLoader.cpp
* Author : MCD Application Team
* Version : v2.2.0
* Date : 05/03/2010
* Description : STM Flash Loader command line version
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
#include "stdafx.h"
#include "string.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <dos.h>
 
#include "../STBLLIB/STBLLIB.h"
#include "../Files/Files.h"
#include "ini.h"
 
 
#define NONE = 0;
#define ODD = 1;
#define EVEN = 2;
 
typedef enum STATE {OK,KO};
 
char MapFile[256];
PMAPPING pmMapping;
 
int TimeBO = 100;
 
BOOL SHOW_OK = TRUE; // Set to TRUE/FALSE to show/hide OK status messages
BOOL SHOW_KO = TRUE; // Set to TRUE/FALSE to show/hide KO status messages
 
/*******************************************************************************************/
/* Function : FileExist */
/* IN : file name */
/* OUT : boolean */
/* Description : verify if the given file exists */
/*******************************************************************************************/
BOOL FileExist(LPCTSTR filename)
{
// Data structure for FindFirstFile
WIN32_FIND_DATA findData;
 
// Clear find structure
ZeroMemory(&findData, sizeof(findData));
 
// Search the file
HANDLE hFind = FindFirstFile( filename, &findData );
if ( hFind == INVALID_HANDLE_VALUE )
{
// File not found
return false;
}
 
// File found
 
// Release find handle
FindClose( hFind );
hFind = NULL;
 
// The file exists
return true;
}
 
/*******************************************************************************************/
/* Function : void man() */
/* IN : */
/* OUT : */
/* Description : print the manual on the standard output */
/*******************************************************************************************/
void man()
{
printf("STMicroelectronics UART Flash Loader command line v2.2.0 \n\n");
printf(" Usage : \n\n");
printf(" STMFlashLoader.exe [options] [Agrument][[options] [Agrument]...] \n\n");
printf(" -? (Show this help) \n");
printf(" -c (Establish connection to the COM port) \n");
printf(" --pn port_nb : e.g: 1, 2 ..., default 1 \n");
printf(" --br baud_rate : e.g: 115200, 57600 ..., default 57600 \n");
printf(" --db data_bits : value in {5,6,7,8} ..., default 8 \n");
printf(" --pr parity : value in {NONE,ODD,EVEN} ..., default EVEN \n");
printf(" --sb stop_bits : value in {1,1.5,2} ..., default 1 \n");
printf(" --ec echo : value OFF or ECHO or LISTEN ..., default is OFF \n");
printf(" --co control : Enable or Disable RTS and DTR outputs control \n");
printf(" : value OFF or ON ..., default is OFF \n");
printf(" --to time_out : (ms) e.g 1000, 2000, 3000 ..., default 5000 \n");
 
printf(" -Rts (set Rts line to Hi, Lo)\n");
printf(" --State : State in {Hi, Lo} \n");
printf(" -Dtr (Set Rts line to Hi, Lo)\n");
printf(" --State : State in {Hi, Lo}\n");
printf(" -i device_name (e.g STM32_Low-density_16K, [See the Map directory]) \n");
 
printf(" -e (erase flash pages\n");
printf(" --all all pages : erase all pages\n");
printf(" --sec number_of_pages_group pages_group_codes : erase specified group pages \n");
 
printf(" -u (Upload flash contents to a .bin, .hex or .s19 file )\n");
printf(" --fn file_name : full path name of the file \n");
 
printf(" -d (Download the content of a file into MCU flash) \n");
printf(" --a address(hex): start @ in hex ; ignored if it is not a binary file \n");
printf(" --fn file_name : full path name (.bin, .hex or .s19 file) \n");
printf(" --v : verify after download \n");
printf(" --o : optimize; removes FFs data \n");
 
 
printf(" -r (Run the flash code at the specified address \n");
printf(" --a address(hex) : address in hexadecimal) \n");
 
 
printf(" -p (Enable or Disable protections) \n");
printf(" --ewp : enable write protection for sector codes (e.g 1,2,etc.) \n");
printf(" --dwp : disable write protection \n");
printf(" --drp : disable read protection \n");
printf(" --erp : enable read protection, all arguments following this one will fail \n");
 
 
printf(" -o (Get or Set STM32 option bytes: use -d command for STM8!) \n");
printf(" --get --fn file_name : get option bytes from the device \n");
printf(" and write it in the specified file \n");
printf(" --set --fn file_name : load option bytes from the specified file \n");
printf(" and write it to the device \n");
printf(" --set --vals --OPB hex_val : set the specified option byte; OPB in: User, \n");
printf(" RDP, Data0, Data1, WRP0, WRP1, WRP2, WRP3 \n");
 
 
}
 
 
 
 
 
/*******************************************************************************************/
/* Function : ParityToInt */
/* IN : parity as string (NONE, ODD, EVEN) */
/* OUT : integer */
/* Description : Get the integer representation of the given parity */
/*******************************************************************************************/
int ParityToInt(char* parity)
{
if (strcmp(parity,"NONE")==0) return 0;
else if(strcmp(parity,"ODD")==0) return 1;
else if(strcmp(parity,"EVEN")==0) return 2;
else return 2;
}
 
 
/*******************************************************************************************/
/* Function : ModeToInt */
/* IN : Mode as string (OFF, ECHO, LISTEN) */
/* OUT : int */
/* Description : Get the int representation of the given string Mode */
/*******************************************************************************************/
int ModeToInt(char* status)
{
if (strcmp(status,"OFF")==0) return 0;
else if(strcmp(status,"ECHO")==0) return 1;
else if(strcmp(status,"LISTEN")==0) return 2;
else return 0;
}
 
/*******************************************************************************************/
/* Function : StatusToBool */
/* IN : Status as string (ON, OFF) */
/* OUT : Bool */
/* Description : Get the boolean representation of the given string ON/OFF */
/*******************************************************************************************/
bool StatusToBool(char* status)
{
if (strcmp(status,"OFF")==0) return false;
else if(strcmp(status,"ON")==0) return true;
else return false;
}
 
 
/*******************************************************************************************/
/* Function : Is_Option */
/* IN : option as string */
/* OUT : boolean */
/* Description : Verify if the given string present an option */
/*******************************************************************************************/
bool Is_Option(char* option)
{
if (strcmp(option,"-?")==0) return true;
else if (strcmp(option,"-c")==0) return true;
else if (strcmp(option,"-i")==0) return true;
else if (strcmp(option,"-e")==0) return true;
else if (strcmp(option,"-u")==0) return true;
else if (strcmp(option,"-d")==0) return true;
else if (strcmp(option,"-v")==0) return true;
else if (strcmp(option,"-p")==0) return true;
else if (strcmp(option,"-r")==0) return true;
else if (strcmp(option,"-o")==0) return true;
else if (strcmp(option,"-Rts")==0) return true;
else if (strcmp(option,"-Dtr")==0) return true;
else if (strcmp(option,"-Auto")==0) return true;
else return false;
}
 
/*******************************************************************************************/
/* Function : Is_SubOption */
/* IN : sub-option as string */
/* OUT : boolean */
/* Description : Verify if the given string present a sub-option */
/*******************************************************************************************/
bool Is_SubOption(char* suboption)
{
if (strcmp(suboption,"--pn")==0) return true;
else if (strcmp(suboption,"--br")==0) return true;
else if (strcmp(suboption,"--db")==0) return true;
else if (strcmp(suboption,"--pr")==0) return true;
else if (strcmp(suboption,"--sb")==0) return true;
else if (strcmp(suboption,"--ec")==0) return true;
else if (strcmp(suboption,"--co")==0) return true;
else if (strcmp(suboption,"--to")==0) return true;
else if (strcmp(suboption,"--lcs")==0) return true;
else if (strcmp(suboption,"--all")==0) return true;
else if (strcmp(suboption,"--sec")==0) return true;
else if (strcmp(suboption,"--a")==0) return true;
else if (strcmp(suboption,"--s")==0) return true;
else if (strcmp(suboption,"--fn")==0) return true;
else if (strcmp(suboption,"--v")==0) return true;
else if (strcmp(suboption,"--o")==0) return true;
else if (strcmp(suboption,"--erp")==0) return true;
else if (strcmp(suboption,"--drp")==0) return true;
else if (strcmp(suboption,"--ewp")==0) return true;
else if (strcmp(suboption,"--dwp")==0) return true;
else if (strcmp(suboption,"--get")==0) return true;
else if (strcmp(suboption,"--set")==0) return true;
else if (strcmp(suboption,"--vals")==0) return true;
else if (strcmp(suboption,"--RDP")==0) return true;
else if (strcmp(suboption,"--User")==0) return true;
else if (strcmp(suboption,"--Data0")==0) return true;
else if (strcmp(suboption,"--Data1")==0) return true;
else if (strcmp(suboption,"--WRP0")==0) return true;
else if (strcmp(suboption,"--WRP1")==0) return true;
else if (strcmp(suboption,"--WRP2")==0) return true;
else if (strcmp(suboption,"--WRP3")==0) return true;
else if (strcmp(suboption,"--Hi")==0) return true;
else if (strcmp(suboption,"--Lo")==0) return true;
else return false;
}
 
/*******************************************************************************************/
/* Function : write_debug_info */
/* IN : */
/* OUT : */
/* Description : print the output messages on the standart output */
/*******************************************************************************************/
void write_debug_info(char *msg, int page, DWORD addr, float size, STATE status)
{
char d_info[256];
 
if((page==0) && (addr==0) && (size==0))
{
if(status == OK)
sprintf(d_info, "%s \t\t\t\t [OK] \n", msg);
else
sprintf(d_info, "%s \t\t\t\t [KO] \n", msg);
}
else if(status == OK)
sprintf(d_info, "%s \t page %i \t @0x %8X \t size %.2f(KB) \t [OK] \n", msg, page, addr, (float)size);
else
sprintf(d_info, "%s \t page %i \t @0x %8X \t size %.2f(KB) \t [KO] \n", msg, page, addr, (float)size);
 
if((SHOW_OK && (status == OK)) || (SHOW_KO && (status == KO))) printf(d_info);
}
 
/*******************************************************************************************/
/* Function : main */
/* IN : */
/* OUT : */
/* Description : */
/*******************************************************************************************/
int main(int argc, char* argv[])
{
START:
 
BYTE Res = SUCCESS;
BYTE User, RDP, Data0, Data1, WRP0, WRP1, WRP2, WRP3;
bool WaitForMoreSubOpt = TRUE;
 
//Initializing default serial connection parameters
int portname = 1;
long BaudRate = 57600 ;
int DataBits = 8;
int parity = ParityToInt("EVEN");
double nbStopBit = 1;
int timeout = 5000;
bool control = false;
 
int nsec = 0;
DWORD address = 0x00000000;
DWORD size = 0x00000000;
char* filename;
char devname[256] = "STM32_Low-density_32K.STmap";
bool Verify = FALSE;
bool optimize = FALSE;
int becho = 0;
 
char Drive[3], Dir[256], Fname[256], Ext[256];
char *ptr;
 
bool bAuto = false;
 
if (argc == 1) // wrong parameters
man();
else
{
int arg_index = 1;
 
while(arg_index < argc)
{
if(!Is_Option(argv[arg_index]))
{
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
 
if (bAuto)
goto Done_Success;
printf("\n Press any key to continue ...");
getchar();
return 1;
}
 
//============================ Show the man =========================================
if (strcmp(argv[arg_index],"-?")==0)
{
man();
return 0;
}
//=============================== connect ============================================
else if (strcmp(argv[arg_index],"-c")==0)
{
while(arg_index < argc)
{
if (arg_index< argc-1)
arg_index++;
else
break;
 
if(Is_Option(argv[arg_index])) // Set default connection settings and continue with the next option
break;
else if(Is_SubOption(argv[arg_index])) // Get connection settings
{
if (arg_index< argc-1)
arg_index++;
else
break;
 
if (strcmp(argv[arg_index-1],"--pn")==0) portname = atoi(argv[arg_index]);//port name (e.g COM1, COM2 ..., default COM1) \n");
else if (strcmp(argv[arg_index-1],"--br")==0) BaudRate = atoi(argv[arg_index]);//baud reate (e.g 115200, 128000 ..., default 57600) \n");
else if (strcmp(argv[arg_index-1],"--db")==0) DataBits = atoi(argv[arg_index]);//data bits (in {5,6,7,8} ..., default 8) \n");
else if (strcmp(argv[arg_index-1],"--pr")==0) parity = ParityToInt(argv[arg_index]); //parity (in {NONE,ODD,EVEN} ..., default EVEN) \n");
else if (strcmp(argv[arg_index-1],"--sb")==0) nbStopBit= atof(argv[arg_index]);//stop bits (in {1,1.5,2} ..., default 1) \n");
else if (strcmp(argv[arg_index-1],"--to")==0) timeout = atoi(argv[arg_index]);//time out (e.g 1000, 2000, 3000 ..., default 5) \n");
else if (strcmp(argv[arg_index-1],"--ec")==0) becho = ModeToInt(argv[arg_index]); // Echo back mode, default is OFF \n");
else if (strcmp(argv[arg_index-1],"--co")==0) control = StatusToBool(argv[arg_index]); // Outputs Control ON/OFF, default is OFF \n");
}
else
{
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 2");
getchar();
return 1;
}
}
 
 
 
// Apply serial connection settings
TARGET_SetComIntType(0);
SetCOMSettings(portname, BaudRate, DataBits, parity, nbStopBit);
STBL_SetFlowControl(control);
 
 
// Opening serial connection
Res = COM_Open();
SetTimeOut(1000);
 
if ((Res != SUCCESS) && (Res != COM_ALREADY_OPENED))
{
write_debug_info("Opening Port", 0 ,0, 0, KO);
printf("Cannot open the com port, the port may \n be used by another application \n");
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 3");
getchar();
return 1;
}
else
write_debug_info("Opening Port", 0 ,0, 0, OK);
 
 
STBL_SetEcho(becho); // Setting Echo back mode
 
 
 
 
}
 
 
//============================ Auto option =======================================
else if (strcmp(argv[arg_index],"-Auto")==0)
{
if (arg_index< argc)
arg_index++;
else
break;
 
bAuto = true;
// BOOT0 = High
STBL_SetDtr(TRUE);
Sleep(100);
// Reset = Low
STBL_SetRts(TRUE);
 
Sleep(100);
 
// Reset = High
STBL_SetRts(FALSE);
Sleep(100);
 
STBL_SetDtr(FALSE);
Sleep(100);
COM_Close();
COM_Open();
 
STBL_SetDtr(TRUE);
Sleep(100);
// Reset = Low
STBL_SetRts(TRUE);
 
Sleep(100);
 
// Reset = High
STBL_SetRts(FALSE);
Sleep(100);
 
STBL_SetDtr(FALSE);
Sleep(500);
 
write_debug_info("Setting device to BOOT0", 0 ,0, 0, OK);
 
//printf("\n RTS set low. Press any key to continue ... 4");
//getchar();
}
 
//============================ command RTS pin =======================================
else if (strcmp(argv[arg_index],"-Rts")==0)
{
//_sleep(1000);
while(arg_index < argc)
{
if (arg_index< argc-1) arg_index++;
else break;
 
if(Is_Option(argv[arg_index])) break;
else if(Is_SubOption(argv[arg_index]))
{
if (strcmp(argv[arg_index],"--Hi")==0)
{
write_debug_info("Set Rts line", 0 ,0, 0,OK);
STBL_SetRts(TRUE);
 
 
 
}
else if (strcmp(argv[arg_index],"--Lo")==0)
{
write_debug_info("Reset Rts line", 0 ,0, 0,OK);
STBL_SetRts(FALSE);
}
else
{
write_debug_info("bad parameter [Set Rts line] should be Hi or Lo ", 0 ,0, 0,KO);
 
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 5");
getchar();
return 1;
}
}
else
{
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 6");
getchar();
return 1;
}
}
}
//============================ command DTR pin =======================================
else if (strcmp(argv[arg_index],"-Dtr")==0)
{
while(arg_index < argc)
{
if (arg_index< argc-1)
arg_index++;
else
break;
 
if(Is_Option(argv[arg_index]))
break;
 
else if(Is_SubOption(argv[arg_index]))
{
if (strcmp(argv[arg_index],"--Hi")==0)
{
write_debug_info("Set Dtr line", 0 ,0, 0,OK);
STBL_SetDtr(TRUE);
 
}
else if (strcmp(argv[arg_index],"--Lo")==0)
{
write_debug_info("Reset Dtr line", 0 ,0, 0,OK);
STBL_SetDtr(FALSE);
}
else
{
write_debug_info("bad parameter [Set Dtr line] should be Hi or Lo ", 0 ,0, 0,KO);
 
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 7");
getchar();
return 1;
}
}
else
{
if (arg_index < argc - 1) printf("bad parameter [%s] \n", argv[arg_index]);
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 8");
getchar();
return 1;
}
}
}
//============================ ERASE =================================================
else if (strcmp(argv[arg_index],"-e")==0)
{
while(arg_index < argc)
{
if (!WaitForMoreSubOpt)
break;
if (arg_index< argc-1)
arg_index++;
else
break;
 
if(Is_Option(argv[arg_index]))
break;
 
else if(Is_SubOption(argv[arg_index]))
{
if (arg_index< argc)
arg_index++;
else
break;
 
//******************** This section is only for STM8 boot loader *******************
BYTE Version;
Commands pCmds;
CString m_Version;
if (STBL_GET(&Version, &pCmds) == SUCCESS)
{
m_Version.Format("%x.%x",Version/16, Version & 0x0F) ;
}
CIni Ini((LPCSTR)MapFile);
 
if(Ini.IsKeyExist((LPCTSTR)"Product",(LPCTSTR)m_Version))
{
CString E_W_ROUTINEs = Ini.GetString((LPCTSTR)"Product",(LPCTSTR)m_Version, "");
CString Path(*__argv);
 
char fullPath [MAX_PATH];
 
GetModuleFileName(0, fullPath, (MAX_PATH));
 
Path=fullPath;
 
int j=Path.ReverseFind('\\')+1;
if(j) Path=Path.Left(j);
 
CString ToFind;
 
ToFind.Format("%s%s%s", Path, "STM8_Routines\\", E_W_ROUTINEs);
 
if(!E_W_ROUTINEs.IsEmpty())
{
if(!FileExist((LPCTSTR)ToFind))
{
printf("\n!WARNING the erase or download operation may fail \n EW routines file is missing [%s]\n", ToFind);
}
else
{
HANDLE Image;
if (FILES_ImageFromFile((LPSTR)(LPCSTR)ToFind,&Image, 1)== FILES_NOERROR)
{
FILES_SetImageName(Image,(LPSTR)(LPCSTR)ToFind);
 
DWORD NbElements;
if (FILES_GetImageNbElement(Image, &NbElements) == FILES_NOERROR)
{
for (int el=0; el< (int)NbElements;el++)
{
IMAGEELEMENT Element={0};
if (FILES_GetImageElement(Image, el, &Element) == FILES_NOERROR)
{
Element.Data=new BYTE[Element.dwDataLength];
if (FILES_GetImageElement(Image, el, &Element) == FILES_NOERROR)
{
if (STBL_DNLOAD(Element.dwAddress, Element.Data, Element.dwDataLength, FALSE) != SUCCESS)
{
}
}
}
}
 
// Verify writen data
BOOL VerifySuccess = TRUE;
_sleep(100);;
 
//#ifndef _VS6_USED
int el;
//#endif
for (el=0; el< (int)NbElements;el++)
{
IMAGEELEMENT Element={0};
if (FILES_GetImageElement(Image, el, &Element) == FILES_NOERROR)
{
Element.Data=new BYTE[Element.dwDataLength];
if (FILES_GetImageElement(Image, el, &Element) == FILES_NOERROR)
{
if (STBL_VERIFY(Element.dwAddress, Element.Data, Element.dwDataLength, FALSE) != SUCCESS)
{
VerifySuccess = FALSE;
char str[255];
sprintf(str, "%s at address :0x%X. \n%s \nPlease disable the write protection then try agin.", "Data not matching ", Element.dwAddress, "The page may be write protected.");
AfxMessageBox(str, MB_OK|MB_ICONEXCLAMATION);
return 1;
}
}
}
}
}
}
else
{
AfxMessageBox("Unable to load data from this file " + ToFind + " ...");
return -1;
}
}
}
}
else
{
int family = Ini.GetInt((LPCTSTR)"Product",(LPCTSTR)"family", 0);
if(family == 3)
{
printf("\n!WARNING the erase or download operation may fail \n EW routines file is missing\n");
}
}
//End****************** This section is only for STM8 boot loader *******************
 
//End****************** This section is only for STM8 boot loader *******************
 
printf("\n ERASING ... \n");
if (strcmp(argv[arg_index-1],"--all")==0)
{
WaitForMoreSubOpt = false;
Res = STBL_ERASE(0xFFFF, NULL);
 
 
 
if (Res != SUCCESS)
write_debug_info("erasing all pages", 0 ,0, 0, KO);
else
write_debug_info("erasing all pages", 0 ,0, 0, OK);
}
else if (strcmp(argv[arg_index-1],"--sec")==0)
{
WaitForMoreSubOpt = true;
 
nsec = atoi(argv[arg_index]);
LPWORD sectors = (LPWORD)malloc(nsec *2 + 2);
 
 
sectors[0] = 0;
for(int i = 1; i<= nsec; i++)
{
sectors[0]++;
arg_index++;
sectors[sectors[0]] = atoi(argv[arg_index]);
}
 
WaitForMoreSubOpt = false;
 
printf("\nerasing %i sectors : ", sectors[0]);
 
//#ifndef _VS6_USED
int i;
//#endif
 
for(i = 1; i<= nsec; i++)
{
printf("<%i>", sectors[i]);
}
printf("\n");
 
Res = STBL_ERASE(nsec, (LPBYTE)sectors+2);
if (Res != SUCCESS)
{
write_debug_info("erasing", 0 ,0, 0, KO);
if(COM_is_Open())
COM_Close();
printf("\n Press any key to continue ... 9");
getchar();
return 1;
}
else
write_debug_info("erasing", 0 ,0, 0, OK);
 
arg_index++;
}
}
else
{
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 10");
getchar();
return 1;
}
}
}
//============================ UPLOAD ===============================================
else if (strcmp(argv[arg_index],"-u")==0)
{
while(arg_index < argc)
{
if (arg_index< argc-1)
arg_index++;
else
break;
 
if(Is_Option(argv[arg_index]))
break;
 
else if(Is_SubOption(argv[arg_index]))
{
if (arg_index< argc)
arg_index++;
else
break;
 
/*if (strcmp(argv[arg_index-1],"--a")==0)
{
address = _tcstoul(argv[arg_index], 0, 16) ;
}
else if (strcmp(argv[arg_index-1],"--s")==0)
{
size = _tcstoul(argv[arg_index], 0, 16) ;
}
else */if (strcmp(argv[arg_index-1],"--fn")==0)
{
filename = argv[arg_index];
}
}
else
{
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 11");
getchar();
return 1;
}
}
 
printf("\n UPLOADING ... \n\n");
 
HANDLE Handle;
FILES_CreateImage(&Handle, 0);
 
FILES_CreateImageFromMapping(&Handle,pmMapping);
 
DWORD NbElements = 0;
if (FILES_GetImageNbElement(Handle, &NbElements) == FILES_NOERROR)
{
if (NbElements > 0)
{
for(int i = 0; i< (int)NbElements; i++)
{
IMAGEELEMENT Element={0};
// Get element data size
if (FILES_GetImageElement(Handle, i, &Element) == FILES_NOERROR)
{
//Upload element data
Element.Data = (LPBYTE)malloc(Element.dwDataLength);
if (STBL_UPLOAD(Element.dwAddress, Element.Data, Element.dwDataLength) == SUCCESS)
{
//Insert elment in the Image
write_debug_info("Uploading", i ,Element.dwAddress, (float)Element.dwDataLength/(float)1024, OK);
FILES_SetImageElement(Handle,i,FALSE,Element);
}
else
{
write_debug_info("Uploading", i ,Element.dwAddress, (float)Element.dwDataLength/(float)1024, KO);
if(COM_is_Open())
COM_Close();
printf("\n Press any key to continue ... 12");
getchar();
return 1;
}
}
}
}
}
 
if(!FileExist((LPCTSTR)filename))
{
printf( "file %s does not exist .. Creating file\n", filename);
FILE* fp = fopen((LPCTSTR)filename, "a+");
fclose(fp);
}
 
printf( "Writing data ...\n");
 
if (FILES_ImageToFile((LPSTR)(LPCSTR)filename,Handle) != FILES_NOERROR)
{
printf( "cannot write to file %s \n", filename);
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 13");
getchar();
return 1;
}
else
printf("\n Uploaded data is dumped on %s", filename);
}
 
 
 
//============================ Get Device map file name ==============================
else if (strcmp(argv[arg_index],"-i")==0)
{
if (arg_index< argc)
arg_index++;
else
break;
 
 
sprintf(devname,"%s.STmap", argv[arg_index]);
 
char Drive[3], Dir[256], Fname[256], Ext[256];
_splitpath(argv[0],Drive,Dir,Fname,Ext);
sprintf(MapFile, "%s%s%s%s", Drive, Dir , "Map\\", devname);
 
pmMapping = NULL;
WORD size = 0;
 
WORD PacketSize = 0;
pmMapping = NULL;
WORD Size = 0;
char MapName[256];
// Get the number of sectors in the flash target: pmMapping should be NULL
// number of sectors is returned in the Size value
BYTE PagePerSector = 0;
 
if (!FileExist((LPCTSTR)MapFile))
{
printf("This version is not intended to support the <%s> target\n", argv[arg_index]);
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 14");
getchar();
return 1;
}
 
FILES_GetMemoryMapping((LPSTR)(LPCTSTR)MapFile, &Size, (LPSTR)MapName, &PacketSize, pmMapping, &PagePerSector);
// Allocate the mapping structure memory
pmMapping = (PMAPPING)malloc(sizeof(MAPPING));
pmMapping->NbSectors = 0;
pmMapping->pSectors = (PMAPPINGSECTOR) malloc((Size) * sizeof(MAPPINGSECTOR));
 
// Get the mapping info
FILES_GetMemoryMapping((LPSTR)(LPCTSTR)MapFile, &Size, (LPSTR)(LPCTSTR)MapName, &PacketSize, pmMapping, &PagePerSector);
SetPaketSize(PacketSize);
 
 
 
//sending BL config byte (0x7F) & identifing target
 
 
 
Res = STBL_Init_BL();
 
if (Res == UNREOGNIZED_DEVICE)
{
write_debug_info("Activating device", 0 ,0, 0, KO);
 
if(COM_is_Open())
COM_Close();
 
printf("Unrecognized device... Please, reset your device then try again \n");
 
if(COM_is_Open())
COM_Close();
printf("Please, reset your device then press any key to continue \n");
printf("\n Press any key to continue ... 15");
getchar();
goto START;
}
else if (Res != SUCCESS)
{
write_debug_info("Activating device", 0 ,0, 0, KO);
printf("No response from the target, the Boot loader can not be started. \nPlease, verify the boot mode configuration, reset your device then try again. \n");
if(COM_is_Open())
COM_Close();
printf("Please, reset your device then then press any key to continue \n");
printf("\n Press any key to continue ... 16");
getchar();
goto START;
}
 
_sleep(TimeBO);
write_debug_info("Activating device", 0 ,0, 0, OK);
//Getting Target informations (version, available commands)
BYTE Version ;
Commands pCmds;
 
Res = STBL_GET(&Version, &pCmds);
if (Res != SUCCESS)
{
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 17");
getchar();
return 1;
}
 
SetTimeOut(timeout);
 
if (arg_index< argc)
arg_index++;
else
break;
}
//============================ DOWNLOAD ==============================================
else if (strcmp(argv[arg_index],"-d")==0)
{
while(arg_index < argc)
{
if (arg_index< argc-1)
arg_index++;
else
break;
 
if(Is_Option(argv[arg_index]))
break;
 
else if(Is_SubOption(argv[arg_index]))
{
if (arg_index< argc)
arg_index++;
else
break;
 
if (strcmp(argv[arg_index-1],"--a")==0)
{
address = _tcstoul(argv[arg_index], 0, 16) ;
}
else if (strcmp(argv[arg_index-1],"--v")==0)
{
Verify = true;
arg_index--;
}
else if (strcmp(argv[arg_index-1],"--o")==0)
{
optimize = TRUE;
arg_index--;
}
else if (strcmp(argv[arg_index-1],"--fn")==0)
{
filename = argv[arg_index];
_splitpath(filename,Drive,Dir,Fname,Ext);
ptr=strupr(Ext);
strcpy(Ext, ptr);
}
}
else
{
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 18");
getchar();
return 1;
}
}
 
PMAPPINGSECTOR pSector = pmMapping->pSectors;
for(int i = 1; i<= (int)pmMapping->NbSectors; i++)
{
if ((strcmp(Ext, ".BIN")!=0) && (i==0))
address = pSector->dwStartAddress;
 
pSector->UseForOperation = TRUE;
pSector++;
}
 
if(!FileExist((LPCTSTR)filename))
{
printf( "file does not exist %s \n", filename);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 19");
getchar();
return 1;
}
//****************** This section is only for STM8 boot loader *******************
BYTE Version;
Commands pCmds;
CString m_Version;
if (STBL_GET(&Version, &pCmds) == SUCCESS)
{
m_Version.Format("%x.%x",Version/16, Version & 0x0F) ;
}
CIni Ini((LPCSTR)MapFile);
 
if(Ini.IsKeyExist((LPCTSTR)"Product",(LPCTSTR)m_Version))
{
CString E_W_ROUTINEs = Ini.GetString((LPCTSTR)"Product",(LPCTSTR)m_Version, "");
CString Path(*__argv);
int j=Path.ReverseFind('\\')+1;
if(j) Path=Path.Left(j);
 
CString ToFind;
 
ToFind.Format("%s%s%s", Path, "STM8_Routines\\", E_W_ROUTINEs);
 
if(!E_W_ROUTINEs.IsEmpty())
{
if(!FileExist((LPCTSTR)ToFind))
{
printf("\n!WARNING the erase or download operation may fail \n EW routines file is missing [%s]\n", ToFind);
}
else
{
HANDLE Image;
if (FILES_ImageFromFile((LPSTR)(LPCSTR)ToFind,&Image, 1)== FILES_NOERROR)
{
FILES_SetImageName(Image,(LPSTR)(LPCSTR)ToFind);
 
DWORD NbElements;
if (FILES_GetImageNbElement(Image, &NbElements) == FILES_NOERROR)
{
for (int el=0; el< (int)NbElements;el++)
{
IMAGEELEMENT Element={0};
if (FILES_GetImageElement(Image, el, &Element) == FILES_NOERROR)
{
Element.Data=new BYTE[Element.dwDataLength];
if (FILES_GetImageElement(Image, el, &Element) == FILES_NOERROR)
{
if (STBL_DNLOAD(Element.dwAddress, Element.Data, Element.dwDataLength, FALSE) != SUCCESS)
{
}
}
}
}
 
// Verify writen data
BOOL VerifySuccess = TRUE;
_sleep(100);
 
//#ifndef _VS6_USED
int el;
//#endif
 
for (el=0; el< (int)NbElements;el++)
{
IMAGEELEMENT Element={0};
if (FILES_GetImageElement(Image, el, &Element) == FILES_NOERROR)
{
Element.Data=new BYTE[Element.dwDataLength];
if (FILES_GetImageElement(Image, el, &Element) == FILES_NOERROR)
{
if (STBL_VERIFY(Element.dwAddress, Element.Data, Element.dwDataLength, FALSE) != SUCCESS)
{
VerifySuccess = FALSE;
char str[255];
sprintf(str, "%s at address :0x%X. \n%s \nPlease disable the write protection then try agin.", "Data not matching ", Element.dwAddress, "The page may be write protected.");
AfxMessageBox(str, MB_OK|MB_ICONEXCLAMATION);
return 1;
}
}
}
}
}
}
else
{
AfxMessageBox("Unable to load data from this file " + ToFind + " ...");
return -1;
}
}
}
}
else
{
int family = Ini.GetInt((LPCTSTR)"Product",(LPCTSTR)"family", 0);
if(family == 3)
{
printf("\n!WARNING the erase or download operation may fail \n EW routines file is missing\n");
}
}
//End****************** This section is only for STM8 boot loader *******************
 
printf("\n DOWNLOADING ... \n\n");
 
HANDLE Handle;
if (FILES_ImageFromFile((LPSTR)(LPCSTR)filename,&Handle, 1) == FILES_NOERROR)
{
FILES_SetImageName(Handle,(LPSTR)(LPCSTR)filename);
 
DWORD NbElements = 0;
if (FILES_GetImageNbElement(Handle, &NbElements) == FILES_NOERROR)
{
if ( NbElements > 0 )
{ // if binary file -> change the elemnts address
if (strcmp(Ext, ".BIN")==0)
{
for (int i=0;i< (int)NbElements;i++)
{
IMAGEELEMENT Element={0};
if (FILES_GetImageElement(Handle, i, &Element) == FILES_NOERROR)
{
Element.Data= (LPBYTE)malloc(Element.dwDataLength);
if (FILES_GetImageElement(Handle, i, &Element) == FILES_NOERROR)
{
Element.dwAddress = Element.dwAddress + address;
FILES_SetImageElement(Handle, i, FALSE, Element);
}
}
}
}
}
}
 
FILES_FilterImageForOperation(Handle, pmMapping, OPERATION_UPLOAD, optimize);
}
else
{
printf("cannot open file %s \n", filename);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 20");
getchar();
return 1;
}
 
DWORD NbElements = 0;
if (FILES_GetImageNbElement(Handle, &NbElements) == FILES_NOERROR)
{
for (int el=0; el< (int)NbElements;el++)
{
IMAGEELEMENT Element={0};
if (FILES_GetImageElement(Handle, el, &Element) == FILES_NOERROR)
{
Element.Data= (LPBYTE)malloc(Element.dwDataLength);
if (FILES_GetImageElement(Handle, el, &Element) == FILES_NOERROR)
{
if ((strcmp(Ext, ".BIN")==0) && (el==0))
Element.dwAddress = address;
if (STBL_DNLOAD(Element.dwAddress, Element.Data, Element.dwDataLength, optimize) != SUCCESS)
{
write_debug_info( "downloading", el ,Element.dwAddress, (float)Element.dwDataLength/(float)1024, KO);
write_debug_info("The flash may be read protected; use -p --drp to disable write protection." , 0, 0, 0, KO);
if(COM_is_Open())
COM_Close();
printf("\n Press any key to continue ... 21");
getchar();
return 1;
}
 
write_debug_info( "downloading", el ,Element.dwAddress, (float)Element.dwDataLength/(float)1024, OK);
}
}
}
}
 
bool VerifySuccess = true;
if (Verify)
{
printf("\n VERIFYING ... \n\n");
 
 
for (int el=0; el< (int)NbElements;el++)
{
IMAGEELEMENT Element={0};
if (FILES_GetImageElement(Handle, el, &Element) == FILES_NOERROR)
{
Element.Data=(LPBYTE)malloc(Element.dwDataLength);
if (FILES_GetImageElement(Handle, el, &Element) == FILES_NOERROR)
{
if ((strcmp(Ext, ".BIN")==0) && (el==0))
Element.dwAddress = address;
 
if (STBL_VERIFY(Element.dwAddress, Element.Data, Element.dwDataLength, optimize) != SUCCESS)
{
VerifySuccess = false;
write_debug_info("verifying" ,el ,Element.dwAddress, (float)Element.dwDataLength/(float)1024, KO);
write_debug_info("some pages may be write protected; use -p --dwp to disable write protection." , 0, 0, 0, KO);
if(COM_is_Open())
COM_Close();
printf("\n Press any key to continue ... 22");
getchar();
return 1;
}
 
write_debug_info("verifying" ,el ,Element.dwAddress, (float)Element.dwDataLength/(float)1024, OK);
}
}
}
}
 
}
//============================ VERIFY ================================================
else if (strcmp(argv[arg_index],"-v")==0)
{
if (arg_index< argc)
arg_index++;
else
break;
}
//============================ Program option bytes ==================================
else if (strcmp(argv[arg_index],"-o")==0)
{
while(arg_index < argc)
{
if (arg_index< argc-1)
arg_index++;
else
break;
 
if(Is_Option(argv[arg_index]))
break;
 
else if(Is_SubOption(argv[arg_index]))
{
if (arg_index< argc)
arg_index++;
else
break;
 
if (strcmp(argv[arg_index-1],"--get")==0)
{
if (arg_index< argc)
arg_index++;
else
break;
if (strcmp(argv[arg_index-1],"--fn")==0)
filename = argv[arg_index];
if(TARGET_GetSIFData(&User, &RDP, &Data0, &Data1, &WRP0, &WRP1, &WRP2, &WRP3) == SUCCESS)
{
write_debug_info("Getting Option bytes data" ,0 ,0, 0, OK);
 
HANDLE Image;
if (FILES_CreateImage(&Image, 1) == FILES_NOERROR)
{
IMAGEELEMENT Element={0};
Element.dwAddress = 0x1FFFF800;
Element.dwDataLength = 16;
Element.Data = (LPBYTE)malloc(Element.dwDataLength);
 
{
Element.Data[0] = RDP;
Element.Data[1] = ~RDP;
Element.Data[2] = User;
Element.Data[3] = ~User;
Element.Data[4] = Data0;
Element.Data[5] = ~Data0;
Element.Data[6] = Data1;
Element.Data[7] = ~Data1;
Element.Data[8] = WRP0;
Element.Data[9] = ~WRP0;
Element.Data[10] = WRP1;
Element.Data[11] = ~WRP1;
Element.Data[12] = WRP2;
Element.Data[13] = ~WRP2;
Element.Data[14] = WRP3;
Element.Data[15] = ~WRP3;
}
 
FILES_SetImageElement(Image,0,TRUE,Element);
if (FILES_ImageToFile((LPSTR)(LPCSTR)filename,Image) != FILES_NOERROR)
{
write_debug_info("Saving Option bytes data",0 ,0, 0, KO);
}
else write_debug_info("Saving Option bytes data",0 ,0, 0, OK);
}
}
else write_debug_info("Getting Option bytes data" ,0 ,0, 0, KO);
}
else if (strcmp(argv[arg_index-1],"--set")==0)
{
if (arg_index< argc) arg_index++;
else break;
if (strcmp(argv[arg_index-1],"--fn")==0)
{
filename = argv[arg_index];
 
HANDLE OPBImage;
 
if(!FileExist((LPCTSTR)filename))
{
printf( "file does not exist %s \n", filename);
if(COM_is_Open())
COM_Close();
printf("\n Press any key to continue ... 23");
getchar();
return 1;
}
 
if (FILES_ImageFromFile((LPSTR)(LPCSTR)filename, &OPBImage, 0) == FILES_NOERROR)
{
DWORD NbElements = 0;
if (FILES_GetImageNbElement(OPBImage, &NbElements) == FILES_NOERROR)
{
if ( NbElements == 1 )
{
IMAGEELEMENT Element={0};
if (FILES_GetImageElement(OPBImage, 0, &Element) == FILES_NOERROR)
{
Element.Data= (LPBYTE)malloc(Element.dwDataLength);
if (FILES_GetImageElement(OPBImage, 0, &Element) == FILES_NOERROR)
{
RDP = Element.Data[0] ;
User = Element.Data[2] ;
Data0 = Element.Data[4] ;
Data1 = Element.Data[6] ;
WRP0 = Element.Data[8] ;
WRP1 = Element.Data[10];
WRP2 = Element.Data[12];
WRP3 = Element.Data[14];
 
if (TARGET_SetSIFData(User, RDP, Data0, Data1, WRP0, WRP1, WRP2, WRP3) == SUCCESS)
{
write_debug_info("Setting Option bytes data" ,0 ,0, 0, OK);
 
if(COM_is_Open())
COM_Close();
 
COM_Open();
 
if(STBL_Init_BL() != SUCCESS)
write_debug_info("Resetting device" ,0 ,0, 0, KO);
else
write_debug_info("Resetting device" ,0 ,0, 0, OK);
}
else
write_debug_info("Setting Option bytes data" ,0 ,0, 0, KO);
}
}
}
}
}
}
else if (strcmp(argv[arg_index-1],"--vals")==0)
{
TARGET_GetSIFData(&User, &RDP, &Data0, &Data1, &WRP0, &WRP1, &WRP2, &WRP3);
while(arg_index< argc)
{
if(Is_Option(argv[arg_index]))
break;
else if(Is_SubOption(argv[arg_index]))
{
arg_index++;
if(strcmp(argv[arg_index-1],"--RDP")==0) { RDP = _tcstoul(argv[arg_index], 0, 16);arg_index++;}
else if(strcmp(argv[arg_index-1],"--User")==0) { User = _tcstoul(argv[arg_index], 0, 16);arg_index++;}
else if(strcmp(argv[arg_index-1],"--data0")==0){ Data0 = _tcstoul(argv[arg_index], 0, 16);arg_index++;}
else if(strcmp(argv[arg_index-1],"--data1")==0){ Data1 = _tcstoul(argv[arg_index], 0, 16);arg_index++;}
else if(strcmp(argv[arg_index-1],"--WRP0")==0) { WRP0 = _tcstoul(argv[arg_index], 0, 16);arg_index++;}
else if(strcmp(argv[arg_index-1],"--WRP1")==0) { WRP1 = _tcstoul(argv[arg_index], 0, 16);arg_index++;}
else if(strcmp(argv[arg_index-1],"--WRP2")==0) { WRP2 = _tcstoul(argv[arg_index], 0, 16);arg_index++;}
else if(strcmp(argv[arg_index-1],"--WRP3")==0) { WRP3 = _tcstoul(argv[arg_index], 0, 16);arg_index++;}
}
}
if (TARGET_SetSIFData(User, RDP, Data0, Data1, WRP0, WRP1, WRP2, WRP3) != SUCCESS)
write_debug_info("Setting Option bytes data" ,0 ,0, 0, KO);
else
{
write_debug_info("Setting Option bytes data" ,0 ,0, 0, OK);
 
if(COM_is_Open())
COM_Close();
 
COM_Open();
 
if(STBL_Init_BL() != SUCCESS)
write_debug_info("Resetting device" ,0 ,0, 0, KO);
else
write_debug_info("Resetting device" ,0 ,0, 0, OK);
}
arg_index--;
}
}
}
else
{
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 24");
getchar();
return 1;
}
}
}
//============================ Set/Unset R/W protection ==========================
else if (strcmp(argv[arg_index],"-p")==0)
{
while(arg_index < argc)
{
if (arg_index< argc-1)
arg_index++;
else
break;
 
if(Is_Option(argv[arg_index]))
break;
 
else if(Is_SubOption(argv[arg_index]))
{
if (arg_index< argc)
arg_index++;
else
break;
 
if (strcmp(argv[arg_index-1],"--erp")==0)
{
if(STBL_READOUT_PROTECT() != SUCCESS)
write_debug_info( "enabling read protection", 0 , 0, 0, KO);
else
write_debug_info( "enabling read protection", 0 , 0, 0, OK);
_sleep(TimeBO);
 
if(STBL_Init_BL() != SUCCESS)
write_debug_info( "reseting device", 0 , 0, 0, KO);
else
write_debug_info( "reseting device", 0 , 0, 0, OK);
 
arg_index--;
}
else if (strcmp(argv[arg_index-1],"--drp")==0)
{
if(STBL_READOUT_PERM_UNPROTECT() == SUCCESS)
{
write_debug_info( "disabling read protection", 0 , 0, 0, OK);
 
_sleep(TimeBO);
 
if(STBL_Init_BL() != SUCCESS)
write_debug_info( "reseting device", 0 , 0, 0, KO);
else
write_debug_info( "reseting device", 0 , 0, 0, OK);
}
else
write_debug_info( "disabling read protection", 0 , 0, 0, KO);
arg_index--;
}
else if (strcmp(argv[arg_index-1],"--ewp")==0)
{
LPBYTE sectors;
if(Is_Option(argv[arg_index])) break;
 
nsec = atoi(argv[arg_index]);
sectors = (LPBYTE)malloc(nsec + 1);
 
 
sectors[0] = 0;
for(int i = 1; i<= nsec; i++)
{
sectors[0]++;
arg_index++;
sectors[sectors[0]] = atoi(argv[arg_index]);
}
 
 
printf("\nenabling write protection %i sectors : ", sectors[0]);
 
//#ifndef _VS6_USED
int i;
//#endif
 
for(i = 1; i<= nsec; i++)
{
printf("<%i>", sectors[i]);
}
printf("\n");
 
if(STBL_WRITE_PROTECT(((LPBYTE)sectors)[0],&((LPBYTE)sectors)[1]) != SUCCESS)
write_debug_info( "enabling write protection", 0 , 0, 0, KO);
else
write_debug_info( "enabling write protection", 0 , 0, 0, OK);
_sleep(TimeBO);
 
if(STBL_Init_BL() != SUCCESS)
write_debug_info( "reseting device", 0 , 0, 0, KO);
else
write_debug_info( "reseting device", 0 , 0, 0, OK);
}
else if (strcmp(argv[arg_index-1],"--dwp")==0)
{
if(STBL_WRITE_PERM_UNPROTECT() != SUCCESS)
write_debug_info( "disabling write protection", 0 , 0, 0, KO);
else
write_debug_info( "disabling write protection", 0 , 0, 0, OK);
_sleep(TimeBO);
 
if(STBL_Init_BL() != SUCCESS)
write_debug_info( "reseting device", 0 , 0, 0, KO);
else
write_debug_info( "reseting device", 0 , 0, 0, OK);
arg_index--;
}
}
else
{
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 25");
getchar();
return 1;
}
}
}
//============================ Run at address ========================================
else if (strcmp(argv[arg_index],"-r")==0)
{
while(arg_index < argc)
{
if (arg_index< argc-1)
arg_index++;
else
break;
 
if(Is_Option(argv[arg_index]))
break;
 
else if(Is_SubOption(argv[arg_index]))
{
if (arg_index< argc)
arg_index++;
else
break;
 
PMAPPINGSECTOR pSector = pmMapping->pSectors;
address = pSector->dwStartAddress;
 
if (strcmp(argv[arg_index-1],"--a")==0)
{
address = _tcstoul(argv[arg_index], 0, 16) ;
}
}
else
{
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 26");
getchar();
return 1;
}
 
if (STBL_GO(address) == SUCCESS)
{
printf("Your code is running...\n");
}
else
{
printf( "run fails \n");
}
}
}
else
{
if (arg_index < argc - 1)
printf("bad parameter [%s] \n", argv[arg_index]);
 
if(COM_is_Open())
COM_Close();
 
printf("\n Press any key to continue ... 27");
getchar();
return 1;
}
}
}
 
Done_Success:
if (bAuto)
{
// commented
STBL_SetDtr(FALSE);
Sleep(50);
 
if(COM_is_Open())
COM_Close();
COM_Open();
 
// Reset = Low
STBL_SetRts(TRUE);
Sleep(50);
write_debug_info("Unset BOOT0 & RESET ", 0 ,0, 0, OK);
// Reset = High
STBL_SetRts(FALSE);
 
// printf("command executed succesfully, press any key to close the COM port and exit");
// printf("\n RTS set high. Press any key to continue ... 28");
// getchar();
}
 
printf("\nFlashing done. Enjoy ... \n");
 
if(COM_is_Open())
COM_Close();
 
return 0;
}
 
 
/******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE******/
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/Files.lib
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/Ini.h
0,0 → 1,171
#ifndef __INI_H__
#define __INI_H__
 
#define _VS6_USED
 
#include <windows.h>
#include <tchar.h>
 
// If MFC is linked, we will use CStringArray for great convenience
#ifdef __AFXWIN_H__
#include <afxtempl.h>
#endif
 
// Number bases
#define BASE_BINARY 2
#define BASE_OCTAL 8
#define BASE_DECIMAL 10
#define BASE_HEXADECIMAL 16
 
//---------------------------------------------------------------
// Callback Function Type Definition
//---------------------------------------------------------------
// The callback function used for parsing a "double-null terminated string".
// When called, the 1st parameter passed in will store the newly extracted sub
// string, the 2nd parameter is a 32-bit user defined data, this parameter can
// be NULL. The parsing will terminate if this function returns zero. To use
// the callback, function pointer needs to be passed to "CIni::ParseDNTString".
typedef BOOL (CALLBACK *SUBSTRPROC)(LPCTSTR, LPVOID);
 
class CIni
{
public:
 
//-----------------------------------------------------------
// Constructors & Destructor
//-----------------------------------------------------------
CIni(); // Default constructor
CIni(LPCTSTR lpPathName); // Construct with a given file name
virtual ~CIni();
 
//-----------------------------------------------------------
// Ini File Path Name Access
//-----------------------------------------------------------
void SetPathName(LPCTSTR lpPathName); // Specify a new file name
DWORD GetPathName(LPTSTR lpBuffer, DWORD dwBufSize) const; // Retrieve current file name
#ifdef __AFXWIN_H__
CString GetPathName() const;
#endif
//------------------------------------------------------------
// String Access
//------------------------------------------------------------
DWORD GetString(LPCTSTR lpSection, LPCTSTR lpKey, LPTSTR lpBuffer, DWORD dwBufSize, LPCTSTR lpDefault = NULL) const;
#ifdef __AFXWIN_H__
CString GetString(LPCTSTR lpSection, LPCTSTR lpKey, LPCTSTR lpDefault = NULL) const;
#endif
BOOL WriteString(LPCTSTR lpSection, LPCTSTR lpKey, LPCTSTR lpValue) const;
 
// Read a string from the ini file, append it with another string then write it
// back to the ini file.
BOOL AppendString(LPCTSTR Section, LPCTSTR lpKey, LPCTSTR lpString) const;
//------------------------------------------------------------
// Ini File String Array Access
//------------------------------------------------------------
// Parse the string retrieved from the ini file and split it into a set of sub strings.
DWORD GetArray(LPCTSTR lpSection, LPCTSTR lpKey, LPTSTR lpBuffer, DWORD dwBufSize, LPCTSTR lpDelimiter = NULL, BOOL bTrimString = TRUE) const;
#ifdef __AFXWIN_H__
void GetArray(LPCTSTR lpSection, LPCTSTR lpKey, CStringArray* pArray, LPCTSTR lpDelimiter = NULL, BOOL bTrimString = TRUE) const;
BOOL WriteArray(LPCTSTR lpSection, LPCTSTR lpKey, const CStringArray* pArray, int nWriteCount = -1, LPCTSTR lpDelimiter = NULL) const;
#endif
//------------------------------------------------------------
// Primitive Data Type Access
//------------------------------------------------------------
int GetInt(LPCTSTR lpSection, LPCTSTR lpKey, int nDefault, int nBase = BASE_DECIMAL) const;
BOOL WriteInt(LPCTSTR lpSection, LPCTSTR lpKey, int nValue, int nBase = BASE_DECIMAL) const;
BOOL IncreaseInt(LPCTSTR lpSection, LPCTSTR lpKey, int nIncrease = 1, int nBase = BASE_DECIMAL) const;
UINT GetUInt(LPCTSTR lpSection, LPCTSTR lpKey, UINT nDefault, int nBase = BASE_DECIMAL) const;
BOOL WriteUInt(LPCTSTR lpSection, LPCTSTR lpKey, UINT nValue, int nBase = BASE_DECIMAL) const;
BOOL IncreaseUInt(LPCTSTR lpSection, LPCTSTR lpKey, UINT nIncrease = 1, int nBase = BASE_DECIMAL) const;
BOOL GetBool(LPCTSTR lpSection, LPCTSTR lpKey, BOOL bDefault) const;
BOOL WriteBool(LPCTSTR lpSection, LPCTSTR lpKey, BOOL bValue) const;
BOOL InvertBool(LPCTSTR lpSection, LPCTSTR lpKey) const;
double GetDouble(LPCTSTR lpSection, LPCTSTR lpKey, double fDefault) const;
BOOL WriteDouble(LPCTSTR lpSection, LPCTSTR lpKey, double fValue, int nPrecision = -1) const;
BOOL IncreaseDouble(LPCTSTR lpSection, LPCTSTR lpKey, double fIncrease, int nPrecision = -1) const;
 
TCHAR GetChar(LPCTSTR lpSection, LPCTSTR lpKey, TCHAR cDefault) const;
BOOL WriteChar(LPCTSTR lpSection, LPCTSTR lpKey, TCHAR c) const;
 
//------------------------------------------------------------
// User-Defined Data Type & Data Block Access
//------------------------------------------------------------
POINT GetPoint(LPCTSTR lpSection, LPCTSTR lpKey, POINT ptDefault) const;
BOOL WritePoint(LPCTSTR lpSection, LPCTSTR lpKey, POINT pt) const;
RECT GetRect(LPCTSTR lpSection, LPCTSTR lpKey, RECT rcDefault) const;
BOOL WriteRect(LPCTSTR lpSection, LPCTSTR lpKey, RECT rc) const;
 
DWORD GetDataBlock(LPCTSTR lpSection, LPCTSTR lpKey, LPVOID lpBuffer, DWORD dwBufSize, DWORD dwOffset = 0) const;
BOOL WriteDataBlock(LPCTSTR lpSection, LPCTSTR lpKey, LPCVOID lpData, DWORD dwDataSize) const;
BOOL AppendDataBlock(LPCTSTR lpSection, LPCTSTR lpKey, LPCVOID lpData, DWORD dwDataSize) const;
//------------------------------------------------------------
// Section Operations
//------------------------------------------------------------
BOOL IsSectionExist(LPCTSTR lpSection) const;
DWORD GetSectionNames(LPTSTR lpBuffer, DWORD dwBufSize) const;
#ifdef __AFXWIN_H__
void GetSectionNames(CStringArray* pArray) const;
#endif
BOOL CopySection(LPCTSTR lpSrcSection, LPCTSTR lpDestSection, BOOL bFailIfExist) const;
BOOL MoveSection(LPCTSTR lpSrcSection, LPCTSTR lpDestSection, BOOL bFailIfExist = TRUE) const;
BOOL DeleteSection(LPCTSTR lpSection) const;
//------------------------------------------------------------
// Key Operations
//------------------------------------------------------------
BOOL IsKeyExist(LPCTSTR lpSection, LPCTSTR lpKey) const;
DWORD GetKeyLines(LPCTSTR lpSection, LPTSTR lpBuffer, DWORD dwBufSize) const;
#ifdef __AFXWIN_H__
void GetKeyLines(LPCTSTR lpSection, CStringArray* pArray) const;
#endif
DWORD GetKeyNames(LPCTSTR lpSection, LPTSTR lpBuffer, DWORD dwBufSize) const;
#ifdef __AFXWIN_H__
void GetKeyNames(LPCTSTR lpSection, CStringArray* pArray) const;
#endif
BOOL CopyKey(LPCTSTR lpSrcSection, LPCTSTR lpSrcKey, LPCTSTR lpDestSection, LPCTSTR lpDestKey, BOOL bFailIfExist) const;
BOOL MoveKey(LPCTSTR lpSrcSection, LPCTSTR lpSrcKey, LPCTSTR lpDestSection, LPCTSTR lpDestKey, BOOL bFailIfExist = TRUE) const;
BOOL DeleteKey(LPCTSTR lpSection, LPCTSTR lpKey) const;
 
//------------------------------------------------------------
// Parse a "Double-Null Terminated String"
//------------------------------------------------------------
static BOOL ParseDNTString(LPCTSTR lpString, SUBSTRPROC lpFnStrProc, LPVOID lpParam = NULL);
 
//------------------------------------------------------------
// Check for Whether a String Representing TRUE or FALSE
//------------------------------------------------------------
static BOOL StringToBool(LPCTSTR lpString, BOOL bDefault = FALSE);
protected:
 
//------------------------------------------------------------
// Helper Functions
//------------------------------------------------------------
static LPTSTR __StrDupEx(LPCTSTR lpStart, LPCTSTR lpEnd);
static BOOL __TrimString(LPTSTR lpBuffer);
LPTSTR __GetStringDynamic(LPCTSTR lpSection, LPCTSTR lpKey, LPCTSTR lpDefault = NULL) const;
static DWORD __StringSplit(LPCTSTR lpString, LPTSTR lpBuffer, DWORD dwBufSize, LPCTSTR lpDelimiter = NULL, BOOL bTrimString = TRUE);
static void __ToBinaryString(UINT nNumber, LPTSTR lpBuffer, DWORD dwBufSize);
static int __ValidateBase(int nBase);
static void __IntToString(int nNumber, LPTSTR lpBuffer, int nBase);
static void __UIntToString(UINT nNumber, LPTSTR lpBuffer, int nBase);
static BOOL CALLBACK __SubStrCompare(LPCTSTR lpString1, LPVOID lpParam);
static BOOL CALLBACK __KeyPairProc(LPCTSTR lpString, LPVOID lpParam);
#ifdef __AFXWIN_H__
static BOOL CALLBACK __SubStrAdd(LPCTSTR lpString, LPVOID lpParam);
#endif
 
//------------------------------------------------------------
// Member Data
//------------------------------------------------------------
LPTSTR m_pszPathName; // Stores path of the associated ini file
};
 
#endif // #ifndef __INI_H__
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/Release/Ini.obj
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/Release/STMFlashLoader.obj
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/Release/STMFlashLoader.pch
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/Release/vc60.idb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/STBLLIB.lib
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/STMFlashLoader.dsp
0,0 → 1,93
# Microsoft Developer Studio Project File - Name="STMFlashLoader" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
 
# TARGTYPE "Win32 (x86) Console Application" 0x0103
 
CFG=STMFlashLoader - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "STMFlashLoader.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "STMFlashLoader.mak" CFG="STMFlashLoader - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "STMFlashLoader - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "STMFlashLoader - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE
 
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
 
!IF "$(CFG)" == "STMFlashLoader - Win32 Release"
 
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x405 /d "NDEBUG"
# ADD RSC /l 0x405 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
 
!ELSEIF "$(CFG)" == "STMFlashLoader - Win32 Debug"
 
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "Debug"
# PROP BASE Intermediate_Dir "Debug"
# PROP BASE Target_Dir ""
# PROP Use_MFC 2
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "_AFXDLL" /YX /FD /GZ /c
# ADD BASE RSC /l 0x405 /d "_DEBUG"
# ADD RSC /l 0x405 /d "_DEBUG" /d "_AFXDLL"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 STBLLIB.lib Files.lib STUARTBLLIB.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
 
!ENDIF
 
# Begin Target
 
# Name "STMFlashLoader - Win32 Release"
# Name "STMFlashLoader - Win32 Debug"
# Begin Source File
 
SOURCE=.\Ini.cpp
# End Source File
# Begin Source File
 
SOURCE=.\STMFlashLoader.cpp
# End Source File
# End Target
# End Project
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/STMFlashLoader.dsw
0,0 → 1,29
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
 
###############################################################################
 
Project: "STMFlashLoader"=".\STMFlashLoader.dsp" - Package Owner=<4>
 
Package=<5>
{{{
}}}
 
Package=<4>
{{{
}}}
 
###############################################################################
 
Global:
 
Package=<5>
{{{
}}}
 
Package=<3>
{{{
}}}
 
###############################################################################
 
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/STMFlashLoader.ncb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/STMFlashLoader.opt
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/STMFlashLoader.plg
0,0 → 1,27
<html>
<body>
<pre>
<h1>Build Log</h1>
<h3>
--------------------Configuration: STMFlashLoader - Win32 Debug--------------------
</h3>
<h3>Command Lines</h3>
Creating temporary file "C:\DOCUME~1\MIJA~1.ICZ\LOCALS~1\Temp\RSP364.tmp" with contents
[
/nologo /MDd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "_AFXDLL" /Fp"Debug/STMFlashLoader.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
"C:\projekts\ARM-ST32F\sw\UNPACK\Src\STMFlashLoader\STMFlashLoader.cpp"
]
Creating command line "cl.exe @C:\DOCUME~1\MIJA~1.ICZ\LOCALS~1\Temp\RSP364.tmp"
Creating command line "link.exe STBLLIB.lib Files.lib STUARTBLLIB.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/STMFlashLoader.pdb" /debug /machine:I386 /out:"Debug/STMFlashLoader.exe" /pdbtype:sept ".\Debug\STMFlashLoader.obj" ".\Debug\Ini.obj" "
<h3>Output Window</h3>
Compiling...
STMFlashLoader.cpp
Linking...
 
 
 
<h3>Results</h3>
STMFlashLoader.exe - 0 error(s), 0 warning(s)
</pre>
</body>
</html>
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/STMFlashLoader.rc
0,0 → 1,102
// Microsoft Visual C++ generated resource script.
//
#include "resource.h"
 
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"
 
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
 
/////////////////////////////////////////////////////////////////////////////
// English (U.S.) resources
 
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32
 
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
 
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,1,0,0
PRODUCTVERSION 2,1,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x40004L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "STMicroelectronics"
VALUE "FileDescription", "Flash loader command line"
VALUE "FileVersion", "2, 1, 0, 0"
VALUE "InternalName", "STMFlashLoader"
VALUE "LegalCopyright", "Copyright © 2009"
VALUE "OriginalFilename", "STMFlashLoader.exe"
VALUE "ProductName", "STMicroelectronics STMFlashLoader"
VALUE "ProductVersion", "2, 1, 0, 0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
 
 
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
 
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
 
2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
 
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
 
#endif // APSTUDIO_INVOKED
 
#endif // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////
 
 
 
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
 
 
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED
 
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/STMFlashLoader.vcproj
0,0 → 1,281
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="8.00"
Name="STMFlashLoader"
ProjectGUID="{5DED8251-B239-46C2-B2EE-087FF8D46398}"
Keyword="MFCProj"
>
<Platforms>
<Platform
Name="Win32"
/>
</Platforms>
<ToolFiles>
</ToolFiles>
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="false"
CharacterSet="2"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\Release/STMFlashLoader.tlb"
HeaderFileName=""
/>
<Tool
Name="VCCLCompilerTool"
Optimization="2"
InlineFunctionExpansion="1"
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
StringPooling="true"
RuntimeLibrary="0"
EnableFunctionLevelLinking="true"
PrecompiledHeaderFile=".\Release/STMFlashLoader.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="2"
SuppressStartupBanner="true"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="NDEBUG"
Culture="1033"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="&quot;..\STBLLIB\Release\STBLLIB.lib&quot; ..\Files\Release\Files.lib odbc32.lib odbccp32.lib"
OutputFile="..\BIN\Release\STMFlashLoader.exe"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\Release/STMFlashLoader.pdb"
SubSystem="1"
TargetMachine="1"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
SuppressStartupBanner="true"
OutputFile=".\Release/STMFlashLoader.bsc"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
UseOfMFC="1"
ATLMinimizesCRunTimeLibraryUsage="false"
CharacterSet="2"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\Debug/STMFlashLoader.tlb"
HeaderFileName=""
/>
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
MinimalRebuild="true"
BasicRuntimeChecks="3"
RuntimeLibrary="1"
PrecompiledHeaderFile=".\Debug/STMFlashLoader.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="2"
SuppressStartupBanner="true"
DebugInformationFormat="4"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="_DEBUG"
Culture="1033"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="&quot;..\STBLLIB\Release\STBLLIB.lib&quot; ..\Files\Release\Files.lib"
OutputFile="..\BIN\Debug\STMFlashLoader.exe"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\Debug/STMFlashLoader.pdb"
SubSystem="1"
TargetMachine="1"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
SuppressStartupBanner="true"
OutputFile=".\Debug/STMFlashLoader.bsc"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<Filter
Name="Source Files"
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
>
<File
RelativePath=".\Ini.cpp"
>
</File>
<File
RelativePath="StdAfx.cpp"
>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions=""
UsePrecompiledHeader="1"
PrecompiledHeaderThrough="stdafx.h"
/>
</FileConfiguration>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions=""
UsePrecompiledHeader="1"
PrecompiledHeaderThrough="stdafx.h"
/>
</FileConfiguration>
</File>
<File
RelativePath="STMFlashLoader.cpp"
>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions=""
/>
</FileConfiguration>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions=""
/>
</FileConfiguration>
</File>
<File
RelativePath=".\STMFlashLoader.rc"
>
</File>
</Filter>
<Filter
Name="Header Files"
Filter="h;hpp;hxx;hm;inl"
>
<File
RelativePath=".\Ini.h"
>
</File>
<File
RelativePath="StdAfx.h"
>
</File>
</Filter>
<Filter
Name="Resource Files"
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
>
</Filter>
</Files>
<Globals>
</Globals>
</VisualStudioProject>
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/STUARTBLLIB.lib
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/StdAfx.cpp
0,0 → 1,9
 
// stdafx.cpp : source file that includes just the standard includes
// STMFlashLoader.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
 
#include "stdafx.h"
 
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/StdAfx.h
0,0 → 1,22
 
 
#if !defined(AFX_STDAFX_H__0581A7FA_DEC6_4D61_B47A_826059363FA9__INCLUDED_)
#define AFX_STDAFX_H__0581A7FA_DEC6_4D61_B47A_826059363FA9__INCLUDED_
 
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
 
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
 
#include <stdio.h>
 
#include <afxcmn.h> // MFC support for Windows Common Controls
#include "../Files/Files.h"
 
// TODO: reference additional headers your program requires here
 
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
 
#endif // !defined(AFX_STDAFX_H__0581A7FA_DEC6_4D61_B47A_826059363FA9__INCLUDED_)
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMFlashLoader/resource.h
0,0 → 1,15
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by STMFlashLoader.rc
//
 
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 101
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1000
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/Crs232/rs232.cpp
0,0 → 1,494
/******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
* File Name : rs232.cpp
* Author : MCD Application Team
* Version : v2.2.0
* Date : 05/03/2010
* Description : Implements the RS232 class for COM communication
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
#include <windows.h>
#include <stdio.h>
#include <string.h>
#include "rs232.h"
 
 
 
 
/// set serial communication over COM1 with 115200 Bauds, 8 bitand no parity.
CRS232::CRS232()
{
hcom = NULL;
bufferSize = 2048;
 
numPort = 1;
speedInBaud = 115200;
nbBit = 8;
parity = 2;
nbStopBit = 1;
 
isConnected = FALSE;
bEcho =0;
FlowControl = FALSE;
}
CRS232::~CRS232()
{
if(hcom != NULL)
closeCom();
}
 
 
void CRS232::SetComSettings(int _numPort, long _speedInBaud, int _nbBit, int _parity, float _nbStopBit)
{
numPort = _numPort;
speedInBaud = _speedInBaud;
nbBit = _nbBit;
parity = _parity;
nbStopBit = _nbStopBit;
}
 
 
 
bool CRS232::open()
{
char buf[] = "\\\\.\\COM1";
 
if(numPort<1 || numPort>999)
return false;
 
if(speedInBaud<1)
return false;
 
if(nbBit<5 || nbBit > 9)
return false;
 
if(parity<0 || parity > 2)
return false;
 
if(nbStopBit<1 || nbStopBit > 2)
return false;
 
 
 
itoa(numPort, &buf[7], 10);
 
 
hcom=CreateFile(buf, GENERIC_READ | GENERIC_WRITE , 0, NULL, OPEN_EXISTING , 0, NULL);
 
if (hcom==0 || hcom==INVALID_HANDLE_VALUE)
return false;
 
isConnected = TRUE;
 
 
setTimeOut(5000);
 
 
if ( !SetupComm(hcom, bufferSize, bufferSize) )
return false;
 
 
if ( !GetCommState(hcom, &dcb))
return false;
 
 
dcb.BaudRate = speedInBaud;
 
 
dcb.ByteSize = nbBit;
 
if(nbStopBit == 1)
dcb.StopBits = ONESTOPBIT;
if(nbStopBit == 1.5)
dcb.StopBits = ONE5STOPBITS;
if(nbStopBit == 2)
dcb.StopBits = TWOSTOPBITS;
 
if(parity == 0)
dcb.Parity = NOPARITY;
if(parity == 1)
dcb.Parity = ODDPARITY;
if(parity == 2)
dcb.Parity = EVENPARITY;
 
 
 
if ( FlowControl == true)
{
dcb.fDtrControl = DTR_CONTROL_ENABLE;
dcb.fRtsControl = RTS_CONTROL_ENABLE;
}
else
{
 
dcb.fDtrControl = DTR_CONTROL_DISABLE;
dcb.fRtsControl = RTS_CONTROL_DISABLE;
}
 
 
 
if (!SetCommState(hcom, &dcb))
return false;
else
return true;
 
 
 
}
 
void CRS232::closeCom()
{
CloseHandle(hcom);
hcom = NULL;
isConnected = FALSE;
}
 
bool CRS232::setTimeOut(DWORD ms)
{
 
if( ms<0)
return false;
 
ct.ReadIntervalTimeout = ms;
ct.ReadTotalTimeoutMultiplier = ms;
ct.ReadTotalTimeoutConstant = ms;
ct.WriteTotalTimeoutMultiplier = ms;
ct.WriteTotalTimeoutConstant = ms;
if ( !SetCommTimeouts(hcom, &ct) )
return false;
 
return false;
//MSDN: The SetCommTimeouts function sets the time-out parameters for all read and write operations on a specified communications device.
}
 
bool CRS232::setSpeed(DWORD baudrate)
{
if( baudrate<1)
return false;
 
 
if (!GetCommState(hcom, &dcb))
return FALSE;
 
dcb.BaudRate = baudrate;
 
if (!SetCommState(hcom, &dcb))
return FALSE;
else
return TRUE;
 
 
 
//MSDN: The SetCommState function configures a communications device according to the specifications in a device-control block (a DCB structure). The function reinitializes all hardware and control settings, but it does not empty output or input queues.
}
 
int CRS232::sendData(string* data)
{
if( data == NULL )
return false;
 
return sendData((DWORD)data->size(), (LPBYTE)data->data());
}
 
int CRS232::sendData(DWORD lg, LPBYTE data)
{
DWORD result=0;
DWORD result1=0;
DWORD counter =0;
 
if( lg<0 || data==NULL)
return false;
 
 
 
if ( bEcho == 2)
{
 
 
for ( counter =0 ; counter < lg ; counter ++)
 
{
if ( !WriteFile(hcom, data+counter, 1, &result1, 0) )
return -1;
 
if( lg<0 || data==NULL)
return false;
 
 
if (!ReadFile(hcom, data+counter, 1, &result, 0))
return -1;
}
 
return (counter);
 
 
 
}
 
else
{
 
if ( !WriteFile(hcom, data, lg, &result, 0) )
return -1;
else
return (int)result;
}
 
 
 
 
//MSDN: The WriteFile function writes data to a file and is designed for both synchronous
// and asynchronous operation. The function starts writing data to the file at the
// position indicated by the file pointer. After the write operation has been completed
// , the file pointer is adjusted by the number of bytes actually written, except when
// the file is opened with FILE_FLAG_OVERLAPPED. If the file handle was created for
// overlapped input and output (I/O), the application must adjust the position of the
// file pointer after the write operation is finished.
// This function is designed for both synchronous and asynchronous operation.
// The WriteFileEx function is designed solely for asynchronous operation.
// It lets an application perform other processing during a file write operation.
 
}
 
int CRS232::receiveData(string* data)
{ char buffer[1025];
int nbChar=0;
 
 
if( data==NULL)
return false;
 
nbChar = receiveData(1024, (LPBYTE)buffer);
buffer[nbChar] = 0;
data->assign(buffer);
return nbChar;
}
 
int CRS232::receiveData(DWORD lg, LPBYTE data)
{
DWORD result=0;
DWORD result1=0;
DWORD counter =0;
 
if( lg<0 || data==NULL)
return false;
 
 
if ( bEcho == 0)
{
if (!ReadFile(hcom, data, lg, &result, 0))
return -1;
else
return (int)result;
}
else if ( bEcho == 1)
{
for ( counter =0 ; counter < lg ; counter ++)
 
{
if (!ReadFile(hcom, data+counter, 1, &result, 0))
return -1;
 
if( lg<0 || data==NULL)
return false;
 
if ( !WriteFile(hcom, data+counter, 1, &result1, 0) )
return -1;
}
 
return (counter);
}
 
else if ( bEcho == 2)
{
if (!ReadFile(hcom, data, lg, &result, 0))
return -1;
else
return (int)result;
}
 
 
else
{
/* TODO */
 
return -1;
}
 
 
 
//MSDN: The ReadFile function reads data from a file, starting at the position indicated
// by the file pointer. After the read operation has been completed, the file pointer
// is adjusted by the number of bytes actually read, unless the file handle is
// created with the overlapped attribute. If the file handle is created for
// overlapped input and output (I/O), the application must adjust the position of
// the file pointer after the read operation.
// This function is designed for both synchronous and asynchronous operation.
// The ReadFileEx function is designed solely for asynchronous operation. It lets
// an application perform other processing during a file read operation.
 
}
 
/**************************** SetRts(val) **************************************************/
 
bool CRS232::setRts(bool val)
{
if(val)
{
if(EscapeCommFunction(hcom, SETRTS) == TRUE )
return true;
}
else
{
if(EscapeCommFunction(hcom, CLRRTS) == TRUE )
return true;
}
 
return false;
}
 
/**************************** SetTxd(val) ***************************************************/
bool CRS232::setTxd(bool val)
{
if(val)
{
if( EscapeCommFunction(hcom, SETBREAK) == TRUE )
return true;
}
else
{
if( EscapeCommFunction(hcom, CLRBREAK) == TRUE )
return true;
}
return false;
}
/**************************** SetDtr(val) ************************************************** */
bool CRS232::setDtr(bool val)
{
if(val)
{
if( EscapeCommFunction(hcom, SETDTR) == TRUE )
return true;
}
else
{
if( EscapeCommFunction(hcom, CLRDTR) == TRUE )
return false;
}
return false;
}
 
/********************** GetCts() ***********************/
bool CRS232::getCts()
{
DWORD result;
GetCommModemStatus(hcom, &result);
if(result & MS_CTS_ON)
return true;
else
return false;
}
 
/********************** GetDtr() ***********************/
bool CRS232::getDtr()
{
DWORD result;
GetCommModemStatus(hcom, &result);
if(result & MS_DSR_ON)
return true;
else
return false;
}
 
/********************** GetRi() ***********************/
bool CRS232::getRi()
{
DWORD result;
GetCommModemStatus(hcom, &result);
if(result & MS_RING_ON)
return true;
else
return false;
}
 
 
/********************** GetCd() ***********************/
bool CRS232::getCd()
{ int err=0;
DWORD result;
err = GetCommModemStatus(hcom, &result);
if(result & MS_RLSD_ON)
return true;
else
return false;
}
 
 
 
 
string CRS232::getErrorMsg()
{
LPVOID lpMsgBuf;
string sErreur = "";
 
if ( FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, GetLastError(),
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
(LPTSTR) &lpMsgBuf, 0, NULL ))
{
sErreur.assign((LPCTSTR)lpMsgBuf);
}
 
return sErreur;
}
 
 
 
 
void CRS232::SetParity(int _parity)
{
if(_parity == 0)
dcb.Parity = NOPARITY;
if(_parity == 1)
dcb.Parity = ODDPARITY;
if(_parity == 2)
dcb.Parity = EVENPARITY;
 
 
 
SetCommState(hcom, &dcb);
}
 
/******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE******/
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/Crs232/rs232.h
0,0 → 1,80
/******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
* File Name : rs232.h
* Author : MCD Application Team
* Version : v2.2.0
* Date : 05/03/2010
* Description : Defines the RS232 class for COM communication
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
#ifndef LSERIE_H
#define LSERIE_H
 
#include <string>
using namespace std;
 
 
class CRS232
{
public:
void SetParity(int _parity);
BOOL isConnected;
 
int numPort;
long speedInBaud;
int nbBit;
int parity;
float nbStopBit;
int bEcho ; /* Echo back for LIN emulation */
/* 0 : Disabled , 1 : Echo Back , 2 : Listen back */
bool FlowControl;
 
//------ CONSTRUCTOR ------
CRS232();
virtual ~CRS232();
 
//------ OPEN AND CONFIGURE ------
void SetComSettings(int _numPort, long _speedInBaud, int _nbBit, int _parity, float _nbStopBit);
 
 
bool open(); // Open the serial port COM "numPort" at the speed "speedInBaud".
// bauds with and this adjustement : "nbBit" bit / "nbStopBit" stop bit / "parity").
// Return: true if success.
void closeCom(); //Close the serial port.
bool setTimeOut(DWORD ms); //Set the time-out for receive data. Return: true if success.
bool setSpeed(DWORD baudrate); //Set the speed in bauds. Return: true if success.
 
//------ SEND AND RECEIVE DATA ------
int sendData(DWORD lg, LPBYTE data); //Send table "data" of "lg" bytes. Return: number of bytes really sent.
int sendData(string* data); //Send string "data". Return: number of bytes really sent.
int receiveData(DWORD lg, LPBYTE data); //Receive table "data" who is limit at "lg" bytes. Return: number of bytes received.
int receiveData(string* data); //Receive string "data". Return: number of bytes received.
 
//------ READ AND WRITE THE STATE OF THE CONTROL LINE ------
 
bool setRts(bool val); // Set the state of RTS. Return: true if success.
bool setDtr(bool val); // Set the state of DTR. Return: true if success.
bool setTxd(bool val); // Set the state of TXD. Return: true if success.
bool getCts(); // Return: The state of CTS.
bool getDtr(); // Return: The state of DTR.
bool getRi(); // Return: The state of RI.
bool getCd(); // Return: The state of CD.
string getErrorMsg(); // Return: The error message generated by the last function.
 
private:
HANDLE hcom; //Otput file to the COM port | The file stream use for acces to the serial port.
_COMMTIMEOUTS ct; //={0,0,0,0,0}; //Config du Time Out | This variable contain the delay of the time-out.
DCB dcb; //Port configuration struct | This object is use in order to configure the serial port.
int bufferSize;
};
 
#endif
 
/******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE******/
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/Files/Debug/Files.lib
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/Files/Errors.h
0,0 → 1,45
/******************** (C) COPYRIGHT 2009 STMicroelectronics ********************
* File Name : Errors.h
* Author : MCD Application Team
* Version : v2.1.0
* Date : 11/02/2009
* Description : Defines the files Input/Output error codes
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
#ifndef ERRORS_H
#define ERRORS_H
 
#define FILES_ERROR_OFFSET (0x12340000+0x6000)
 
#define FILES_NOERROR (0x12340000+0x0000)
#define FILES_BADSUFFIX (FILES_ERROR_OFFSET+0x0002)
#define FILES_UNABLETOOPENFILE (FILES_ERROR_OFFSET+0x0003)
#define FILES_UNABLETOOPENTEMPFILE (FILES_ERROR_OFFSET+0x0004)
#define FILES_BADFORMAT (FILES_ERROR_OFFSET+0x0005)
#define FILES_BADADDRESSRANGE (FILES_ERROR_OFFSET+0x0006)
#define FILES_BADPARAMETER (FILES_ERROR_OFFSET+0x0008)
#define FILES_UNEXPECTEDERROR (FILES_ERROR_OFFSET+0x000A)
#define FILES_FILEGENERALERROR (FILES_ERROR_OFFSET+0x000D)
 
#define STPRT_ERROR_OFFSET (0x12340000+0x5000)
 
#define STPRT_NOERROR (0x12340000)
#define STPRT_UNABLETOLAUNCHTHREAD (STPRT_ERROR_OFFSET+0x0001)
#define STPRT_ALREADYRUNNING (STPRT_ERROR_OFFSET+0x0007)
#define STPRT_BADPARAMETER (STPRT_ERROR_OFFSET+0x0008)
#define STPRT_BADFIRMWARESTATEMACHINE (STPRT_ERROR_OFFSET+0x0009)
#define STPRT_UNEXPECTEDERROR (STPRT_ERROR_OFFSET+0x000A)
#define STPRT_ERROR (STPRT_ERROR_OFFSET+0x000B)
#define STPRT_RETRYERROR (STPRT_ERROR_OFFSET+0x000C)
#define STPRT_UNSUPPORTEDFEATURE (STPRT_ERROR_OFFSET+0x000D)
 
#endif
 
/******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE******/
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/Files/Files.h
0,0 → 1,99
/******************** (C) COPYRIGHT 2009 STMicroelectronics ********************
* File Name : Files.h
* Author : MCD Application Team
* Version : v2.1.0
* Date : 11/02/2009
* Description : Defines the Files DLL interface
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
 
#if !defined(AFX_FILES_H__E07F909F_97B4_4295_8B8F_5EA1A83ECA92__INCLUDED_)
#define AFX_FILES_H__E07F909F_97B4_4295_8B8F_5EA1A83ECA92__INCLUDED_
 
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
 
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
 
#include "resource.h" // main symbols
#include "FilesInc.h"
#include "Image.h"
#include "Errors.h"
//#include "IniFile.h"
 
 
/////////////////////////////////////////////////////////////////////////////
// CFilesApp
// See Files.cpp for the implementation of this class
//
 
class CFilesApp : public CWinApp
{
public:
CFilesApp();
 
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CFilesApp)
//}}AFX_VIRTUAL
 
//{{AFX_MSG(CFilesApp)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
 
extern "C" DWORD EXPORT FILES_OpenExistingFile(PSTR pPathFile, PHANDLE phFile, PWORD pVid, PWORD pPid, PWORD pBcd,PBYTE pNbImages);
extern "C" DWORD EXPORT FILES_CreateNewFile(PSTR pPathFile, PHANDLE phFile, WORD Vid, WORD Pid, WORD Bcd);
extern "C" DWORD EXPORT FILES_CloseFile(HANDLE hFile);
 
extern "C" DWORD EXPORT FILES_AppendImageToFile(HANDLE hFile, HANDLE Image);
extern "C" DWORD EXPORT FILES_ReadImageFromFile(HANDLE hFile, int Rank, PHANDLE pImage);
 
extern "C" DWORD EXPORT FILES_ImageFromFile(PSTR pPathFile, PHANDLE pImage, BYTE nAlternate);
extern "C" DWORD EXPORT FILES_ImageToFile(PSTR pPathFile, HANDLE Image);
 
extern "C" DWORD EXPORT FILES_CreateImage(PHANDLE pHandle, BYTE nAlternate);
extern "C" DWORD EXPORT FILES_CreateImageFromMapping(PHANDLE pHandle, PMAPPING pMapping);
extern "C" DWORD EXPORT FILES_DuplicateImage(HANDLE hSource, PHANDLE pDest);
 
extern "C" DWORD EXPORT FILES_FilterImageForOperation(HANDLE Handle, PMAPPING pMapping, DWORD Operation, BOOL bTruncateLeadFFForUpgrade);
extern "C" DWORD EXPORT FILES_DestroyImageElement(HANDLE Handle, DWORD dwRank);
extern "C" DWORD EXPORT FILES_DestroyImage(PHANDLE pHandle);
 
extern "C" DWORD EXPORT FILES_GetImageAlternate(HANDLE Handle, PBYTE pAlternate);
extern "C" DWORD EXPORT FILES_GetImageNbElement(HANDLE Handle, PDWORD pNbElements);
extern "C" DWORD EXPORT FILES_GetImageName(HANDLE Handle, PSTR Name);
extern "C" DWORD EXPORT FILES_SetImageName(HANDLE Handle, PSTR Name);
 
extern "C" DWORD EXPORT FILES_SetImageElement(HANDLE Handle, DWORD dwRank, BOOL bInsert, IMAGEELEMENT Element);
extern "C" DWORD EXPORT FILES_GetImageElement(HANDLE Handle, DWORD dwRank, PIMAGEELEMENT pElement);
extern "C" DWORD EXPORT FILES_GetMemoryMapping(PSTR pPathFile, PWORD Size, PSTR MapName, PWORD PacketSize, PMAPPING pMapping, PBYTE PagesPerSector);
 
/*FILES_OpenExistingFile
FILES_CreateNewFile
FILES_CloseFile
FILES_AppendImageToFile
FILES_ReadImageFromFile*/
 
/////////////////////////////////////////////////////////////////////////////
 
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
 
#endif // !defined(AFX_FILES_H__E07F909F_97B4_4295_8B8F_5EA1A83ECA92__INCLUDED_)
 
 
/******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE******/
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/Files/FilesInc.h
0,0 → 1,69
/******************** (C) COPYRIGHT 2009 STMicroelectronics ********************
* File Name : FilesInc.h
* Author : MCD Application Team
* Version : v2.1.0
* Date : 11/02/2009
* Description : Defines the struct types used by Files DLL
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
#ifndef FILES_INC_H
#define FILES_INC_H
 
#define OPERATION_DETACH 0
#define OPERATION_RETURN 1
#define OPERATION_UPLOAD 2
#define OPERATION_ERASE 3
#define OPERATION_DNLOAD 4
 
#ifndef TYPE_STATUS
typedef struct
{
UCHAR bStatus;
UCHAR bwPollTimeout[3];
UCHAR bState;
UCHAR iString;
} STATUS, *PSTATUS;
#endif
 
#define BIT_READABLE 1
#define BIT_ERASABLE 2
#define BIT_WRITEABLE 4
 
typedef struct {
char* Name;
DWORD dwStartAddress;
DWORD dwAliasedAddress;
DWORD dwSectorIndex;
DWORD dwSectorSize;
BYTE bSectorType;
BOOL UseForOperation;
BOOL UseForErase;
BOOL UseForUpload;
BOOL UseForWriteProtect;
} MAPPINGSECTOR, *PMAPPINGSECTOR;
 
typedef struct {
BYTE nAlternate;
char Name[MAX_PATH];
DWORD NbSectors;
PMAPPINGSECTOR pSectors;
} MAPPING, *PMAPPING;
 
typedef struct {
DWORD dwAddress;
DWORD dwDataLength;
PBYTE Data;
} IMAGEELEMENT, *PIMAGEELEMENT;
 
 
#endif
 
/******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE******/
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/Files/Image.h
0,0 → 1,63
/******************** (C) COPYRIGHT 2009 STMicroelectronics ********************
* File Name : Image.h
* Author : MCD Application Team
* Version : v2.1.0
* Date : 11/02/2009
* Description : Defines the CImage class interface
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
#ifndef _IMAGE_H_
#define _IMAGE_H_
 
class CImage : public CObject
{
private:
char m_LastError[1000];
BYTE m_bAlternate;
CPtrArray *m_pElements;
BOOL m_ImageState;
BOOL m_bNamed;
char m_Name[255];
 
BOOL LoadS19(PSTR pFilePath);
BOOL LoadHEX(PSTR pFilePath);
BOOL LoadBIN(PSTR pFilePath);
 
BOOL SaveS19(PSTR pFilePath);
BOOL SaveHEX(PSTR pFilePath);
 
void LDisplayError(PSTR Str) { lstrcpy(m_LastError, Str); }
BOOL ExistsElementsAtAddress(DWORD Address);
void CompactElements();
public:
CImage(CImage *pSource);
CImage(BYTE bAlternate, BOOL bNamed, PSTR Name);
CImage(PMAPPING pMapping, BOOL bNamed, PSTR Name);
CImage(BYTE bAlternate, PSTR pFilePath, BOOL bNamed, PSTR Name);
virtual ~CImage();
 
BOOL DumpToFile(PSTR pFilePath);
BYTE GetAlternate() { return m_bAlternate; }
BOOL GetImageState() { return m_ImageState; }
BOOL GetName(PSTR Name) { if (m_bNamed) lstrcpy(Name, m_Name); return m_bNamed; }
void SetName(PSTR Name) { lstrcpy(m_Name, Name); m_bNamed=TRUE; }
BOOL GetBuffer(DWORD dwAddress, DWORD dwSize, PBYTE pBuffer);
 
DWORD GetNbElements() { return m_pElements->GetSize(); }
BOOL SetImageElement(DWORD dwRank, BOOL bInsert, IMAGEELEMENT Element);
BOOL GetImageElement(DWORD dwRank, PIMAGEELEMENT pElement);
BOOL FilterImageForOperation(PMAPPING pMapping, DWORD Operation, BOOL bTruncateLeadFF);
BOOL DestroyImageElement(DWORD dwRank);
};
 
#endif
 
/******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE******/
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/Files/Release/Files.lib
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/Files/res/Files.rc2
0,0 → 1,13
//
// FILES.RC2 - resources Microsoft Visual C++ does not edit directly
//
 
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
 
 
/////////////////////////////////////////////////////////////////////////////
// Add manually edited resources here...
 
/////////////////////////////////////////////////////////////////////////////
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/Files/resource.h
0,0 → 1,15
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by Files.rc
//
 
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 101
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1000
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Debug/STBLLIB.exp
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Debug/STBLLIB.lib
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Debug/STBLLIB.obj
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Debug/STBLLIB.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Debug/STBLLIB.res
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Debug/STBLLIB.sbr
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Debug/rs232.obj
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Debug/rs232.sbr
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Debug/vc60.idb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Debug/vc60.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Release/STBLLIB.exp
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Release/STBLLIB.lib
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Release/STBLLIB.obj
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Release/STBLLIB.res
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Release/rs232.obj
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/Release/vc60.idb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/STBLLIB.cpp
0,0 → 1,827
/******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
* File Name : STBLLIB.cpp
* Author : MCD Application Team
* Version : v2.2.0
* Date : 05/03/2010
* Description : Implements the System memory boot loader protocol interface
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
 
#include <malloc.h>
#include "stdafx.h"
#include "STBLLIB.h"
 
 
/************************************************************************************/
/* Generic BL API types
/*
/*
/************************************************************************************/
 
typedef BYTE virt_GetProgress(LPBYTE progress);
typedef BYTE virt_GetActivityTime(LPDWORD time);
typedef BYTE virt_SetActivityTime(DWORD time);
typedef BYTE virt_TARGET_GetFlashSize(DWORD Addr, LPWORD val);
typedef BYTE virt_TARGET_GetMemoryAddress(DWORD Addr, LPBYTE val);
typedef BYTE virt_TARGET_GetRDPOptionByte(LPBYTE RDP);
typedef BYTE virt_TARGET_GetWRPOptionBytes(LPBYTE WRP0, LPBYTE WRP1, LPBYTE WRP2, LPBYTE WRP3);
typedef BYTE virt_Send_RQ(LPSTBL_Request pRQ);
typedef BYTE virt_SetCOMSettings(int numPort, long speedInBaud, int nbBit, int parity, float nbStopBit);
typedef BYTE virt_COM_Open();
typedef BYTE virt_COM_Close();
typedef BYTE virt_STBL_SetSpeed(DWORD speed);
typedef BYTE virt_STBL_Init_BL();
typedef BYTE virt_STBL_GET(LPBYTE Version, LPCommands pCmds);
typedef BYTE virt_STBL_GET_VER_ROPS(LPBYTE Version, LPBYTE ROPEnabled, LPBYTE ROPDisabled);
typedef BYTE virt_STBL_GET_ID(LPBYTE size, LPBYTE pID);
typedef BYTE virt_STBL_READ(DWORD Address, BYTE Size, LPBYTE pData);
typedef BYTE virt_STBL_GO(DWORD Address);
typedef BYTE virt_STBL_WRITE(DWORD address, BYTE size, LPBYTE pData);
typedef BYTE virt_STBL_ERASE(WORD NbSectors, LPBYTE pSectors);
typedef BYTE virt_STBL_WRITE_PROTECT(BYTE NbSectors, LPBYTE pSectors);
typedef BYTE virt_STBL_WRITE_TEMP_UNPROTECT();
typedef BYTE virt_STBL_WRITE_PERM_UNPROTECT();
typedef BYTE virt_STBL_READOUT_PROTECT();
typedef BYTE virt_STBL_READOUT_TEMP_UNPROTECT();
typedef BYTE virt_STBL_READOUT_PERM_UNPROTECT();
typedef BYTE virt_STBL_UPLOAD(DWORD Address, LPBYTE pData, DWORD Length);
typedef BYTE virt_STBL_VERIFY(DWORD Address, LPBYTE pData, DWORD Length,BOOL bTruncateLeadFFForDnLoad);
typedef BYTE virt_STBL_DNLOAD(DWORD Address, LPBYTE pData, DWORD Length,BOOL bTruncateLeadFFForDnLoad);
typedef BYTE virt_SetPaketSize(BYTE size);
typedef BYTE virt_GetPaketSize(LPBYTE size);
typedef ACKS virt_GetAckValue();
typedef BOOL virt_COM_is_Open();
typedef BYTE virt_SetTimeOut(DWORD vms);
typedef BYTE virt_TARGET_GetUserOptionByte(LPBYTE User);
typedef BYTE virt_TARGET_GetDataOptionByte(LPBYTE Data0, LPBYTE Data1);
typedef BYTE virt_TARGET_SetSIFData(BYTE User, BYTE RDP, BYTE Data0, BYTE Data1, BYTE WRP0, BYTE WRP1, BYTE WRP2, BYTE WRP3);
typedef BYTE virt_TARGET_GetSIFData(LPBYTE User, LPBYTE RDP, LPBYTE Data0, LPBYTE Data1, LPBYTE WRP0, LPBYTE WRP1, LPBYTE WRP2, LPBYTE WRP3);
typedef BYTE virt_STBL_SetRts(BOOL Val);
typedef BYTE virt_STBL_SetDtr(BOOL Val);
typedef BYTE virt_STBL_setTxd(BOOL val);
typedef BYTE virt_STBL_getCts(BOOL* pval);
typedef BYTE virt_STBL_getDtr(BOOL* pval);
typedef BYTE virt_STBL_getRi(BOOL* pval);
typedef BYTE virt_STBL_getCd(BOOL* pval);
typedef BYTE virt_STBL_SetEcho(int val);
typedef BYTE virt_STBL_SetFlowControl(int Val);
 
/************************************************************************************/
/* Generic BL API references
/*
/*
/************************************************************************************/
 
virt_GetProgress *pt_GetProgress; //(LPBYTE progress);
virt_GetActivityTime *pt_GetActivityTime; //(LPDWORD time);
virt_SetActivityTime *pt_SetActivityTime; //(DWORD time);
virt_TARGET_GetFlashSize *pt_TARGET_GetFlashSize; //(DWORD Addr, LPWORD val);
virt_TARGET_GetMemoryAddress *pt_TARGET_GetMemoryAddress; //(DWORD Addr, LPWORD val);
virt_TARGET_GetRDPOptionByte *pt_TARGET_GetRDPOptionByte; //(LPBYTE RDP);
virt_TARGET_GetWRPOptionBytes *pt_TARGET_GetWRPOptionBytes; //(LPBYTE WRP0, LPBYTE WRP1, LPBYTE WRP2, LPBYTE WRP3);
virt_Send_RQ *pt_Send_RQ; //(LPSTBL_Request pRQ);
virt_SetCOMSettings *pt_SetCOMSettings; //(int numPort, long speedInBaud, int nbBit, int parity, float nbStopBit);
virt_COM_Open *pt_COM_Open; //();
virt_COM_Close *pt_COM_Close; //();
virt_STBL_SetSpeed *pt_STBL_SetSpeed; //(DWORD speed);
virt_STBL_Init_BL *pt_STBL_Init_BL; //();
virt_STBL_GET *pt_STBL_GET; //(LPBYTE Version, LPCommands pCmds);
virt_STBL_GET_VER_ROPS *pt_STBL_GET_VER_ROPS; //(LPBYTE Version, LPBYTE ROPEnabled, LPBYTE ROPDisabled);
virt_STBL_GET_ID *pt_STBL_GET_ID; //(LPBYTE size, LPBYTE pID);
virt_STBL_READ *pt_STBL_READ; //(DWORD Address, BYTE Size, LPBYTE pData);
virt_STBL_GO *pt_STBL_GO; //(DWORD Address);
virt_STBL_WRITE *pt_STBL_WRITE; //(DWORD address, BYTE size, LPBYTE pData);
virt_STBL_ERASE *pt_STBL_ERASE; //(BYTE NbSectors, LPBYTE pSectors);
virt_STBL_WRITE_PROTECT *pt_STBL_WRITE_PROTECT; //(BYTE NbSectors, LPBYTE pSectors);
virt_STBL_WRITE_TEMP_UNPROTECT *pt_STBL_WRITE_TEMP_UNPROTECT; //();
virt_STBL_WRITE_PERM_UNPROTECT *pt_STBL_WRITE_PERM_UNPROTECT; //();
virt_STBL_READOUT_PROTECT *pt_STBL_READOUT_PROTECT; //();
virt_STBL_READOUT_TEMP_UNPROTECT *pt_STBL_READOUT_TEMP_UNPROTECT; //();
virt_STBL_READOUT_PERM_UNPROTECT *pt_STBL_READOUT_PERM_UNPROTECT; //();
virt_STBL_UPLOAD *pt_STBL_UPLOAD; //(DWORD Address, LPBYTE pData, DWORD Length);
virt_STBL_VERIFY *pt_STBL_VERIFY; //(DWORD Address, LPBYTE pData, DWORD Length,BOOL bTruncateLeadFFForDnLoad);
virt_STBL_DNLOAD *pt_STBL_DNLOAD; //(DWORD Address, LPBYTE pData, DWORD Length,BOOL bTruncateLeadFFForDnLoad);
virt_SetPaketSize *pt_SetPaketSize; //(BYTE size);
virt_GetPaketSize *pt_GetPaketSize; //(LPBYTE size);
virt_GetAckValue *pt_GetAckValue; //();
virt_COM_is_Open *pt_COM_is_Open; //();
virt_SetTimeOut *pt_SetTimeOut; //(DWORD vms);
virt_TARGET_GetUserOptionByte *pt_TARGET_GetUserOptionByte; //(LPBYTE User);
virt_TARGET_GetDataOptionByte *pt_TARGET_GetDataOptionByte; //(LPBYTE Data0, LPBYTE Data1);
virt_TARGET_SetSIFData *pt_TARGET_SetSIFData; //(BYTE User, BYTE RDP, BYTE Data0, BYTE Data1, BYTE WRP0, BYTE WRP1, BYTE WRP2, BYTE WRP3);
virt_TARGET_GetSIFData *pt_TARGET_GetSIFData; //(LPBYTE User, LPBYTE RDP, LPBYTE Data0, LPBYTE Data1, LPBYTE WRP0, LPBYTE WRP1, LPBYTE WRP2, LPBYTE WRP3);
virt_STBL_SetRts *pt_STBL_SetRts; //(BOOL val);
virt_STBL_SetDtr *pt_STBL_SetDtr; //(BOOL val);
virt_STBL_setTxd *pt_STBL_setTxd; //(BOOL val);
virt_STBL_getCts *pt_STBL_getCts; //(BOOL* pval);
virt_STBL_getDtr *pt_STBL_getDtr; //(BOOL* pval);
virt_STBL_getRi *pt_STBL_getRi; //(BOOL* pval);
virt_STBL_getCd *pt_STBL_getCd; //(BOOL* pval);
virt_STBL_SetEcho *pt_STBL_SetEcho ; //(int val);
virt_STBL_SetFlowControl *pt_STBL_SetFlowControl ; //(bool val);
 
 
 
 
DWORD MAX_DATA_SIZE = 0xFF; // Packet size(in byte)
BYTE ACK = 0x79;
BYTE NACK = 0x1F;
 
ACKS ACK_VALUE = ST79;
LPTARGET_DESCRIPTOR Target;
CRS232 Cur_COM;
ACKS McuTarget;
DWORD Progress;
DWORD ActivityTime ;
 
HINSTANCE ST_BL_Lib_Hdle = NULL;
 
 
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH :{
McuTarget = UNDEFINED;
Target = (LPTARGET_DESCRIPTOR)malloc(sizeof(TARGET_DESCRIPTOR));
Target->Version = 0x00;
Target->CmdCount = 0x00;
Target->PIDLen = 0x00;
Target->PID = (LPBYTE)malloc(1);
Target->ROPE = 0x00;
Target->ROPD = 0x00;
 
Target->GET_CMD = FALSE ; //Get the version and the allowed commands supported by the current version of the boot loader
Target->GET_VER_ROPS_CMD = FALSE ; //Get the BL version and the Read Protection status of the NVM
Target->GET_ID_CMD = FALSE ; //Get the chip ID
Target->READ_CMD = FALSE ; //Read up to 256 bytes of memory starting from an address specified by the user
Target->GO_CMD = FALSE ; //Jump to an address specified by the user to execute (a loaded) code
Target->WRITE_CMD = FALSE ; //Write maximum 256 bytes to the RAM or the NVM starting from an address specified by the user
Target->ERASE_CMD = FALSE ; //Erase from one to all the NVM sectors
Target->ERASE_EXT_CMD = FALSE ; //Erase from one to all the NVM sectors
Target->WRITE_PROTECT_CMD = FALSE ; //Enable the write protection in a permanent way for some sectors
Target->WRITE_TEMP_UNPROTECT_CMD = FALSE ; //Disable the write protection in a temporary way for all NVM sectors
Target->WRITE_PERM_UNPROTECT_CMD = FALSE ; //Disable the write protection in a permanent way for all NVM sectors
Target->READOUT_PERM_PROTECT_CMD = FALSE ; //Enable the readout protection in a permanent way
Target->READOUT_TEMP_UNPROTECT_CMD = FALSE ; //Disable the readout protection in a temporary way
Target->READOUT_PERM_UNPROTECT_CMD = FALSE ; //Disable the readout protection in a permanent way
}break;
case DLL_THREAD_ATTACH :{
/*McuTarget = UNDEFINED;
Target = (LPTARGET_DESCRIPTOR)malloc(sizeof(TARGET_DESCRIPTOR));
 
Target->Version = 0x00;
Target->CmdCount = 0x00;
Target->PIDLen = 0x00;
Target->PID = (LPBYTE)malloc(1);
Target->ROPE = 0x00;
Target->ROPD = 0x00;
 
Target->GET_CMD = FALSE ; //Get the version and the allowed commands supported by the current version of the boot loader
Target->GET_VER_ROPS_CMD = FALSE ; //Get the BL version and the Read Protection status of the NVM
Target->GET_ID_CMD = FALSE ; //Get the chip ID
Target->READ_CMD = FALSE ; //Read up to 256 bytes of memory starting from an address specified by the user
Target->GO_CMD = FALSE ; //Jump to an address specified by the user to execute (a loaded) code
Target->WRITE_CMD = FALSE ; //Write maximum 256 bytes to the RAM or the NVM starting from an address specified by the user
Target->ERASE_CMD = FALSE ; //Erase from one to all the NVM sectors
Target->WRITE_PROTECT_CMD = FALSE ; //Enable the write protection in a permanent way for some sectors
Target->WRITE_TEMP_UNPROTECT_CMD = FALSE ; //Disable the write protection in a temporary way for all NVM sectors
Target->WRITE_PERM_UNPROTECT_CMD = FALSE ; //Disable the write protection in a permanent way for all NVM sectors
Target->READOUT_PERM_PROTECT_CMD = FALSE ; //Enable the readout protection in a permanent way
Target->READOUT_TEMP_UNPROTECT_CMD = FALSE ; //Disable the readout protection in a temporary way
Target->READOUT_PERM_UNPROTECT_CMD = FALSE ; //Disable the readout protection in a permanent way
*/}break;
case DLL_THREAD_DETACH :{}break;
case DLL_PROCESS_DETACH :{}break;
}
return TRUE;
}
 
/************************************************************************************/
/* SET COMMUNICATION INTERFACE TYPE
/* UART - CAN - ...
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_SetComIntType(BYTE com_int_type)
{
//com_int_type = 0; // This is reserved for Future, When the CANtoUSB Bridge will be available
// The CAN module and DLL should be used in com_int_type =1
 
switch (com_int_type)
{
case 0:{
ST_BL_Lib_Hdle = GetModuleHandle("STUARTBLLIB");
if ( ST_BL_Lib_Hdle == NULL )
{
ST_BL_Lib_Hdle = LoadLibrary("STUARTBLLIB") ;
}
}break;
case 1:{
ST_BL_Lib_Hdle = GetModuleHandle("STCANBLLIB");
if ( ST_BL_Lib_Hdle == NULL )
{
ST_BL_Lib_Hdle = LoadLibrary("STCANBLLIB") ;
}
}break;
}
 
 
pt_GetProgress = (virt_GetProgress*)GetProcAddress(ST_BL_Lib_Hdle,"GetProgress");
pt_GetActivityTime = (virt_GetActivityTime*)GetProcAddress(ST_BL_Lib_Hdle,"GetActivityTime"); //(LPDWORD time);
pt_SetActivityTime = (virt_SetActivityTime*)GetProcAddress(ST_BL_Lib_Hdle,"SetActivityTime"); //(DWORD time);
pt_TARGET_GetFlashSize = (virt_TARGET_GetFlashSize*)GetProcAddress(ST_BL_Lib_Hdle,"TARGET_GetFlashSize");
pt_TARGET_GetMemoryAddress = (virt_TARGET_GetMemoryAddress*)GetProcAddress(ST_BL_Lib_Hdle,"TARGET_GetMemoryAddress");
pt_TARGET_GetRDPOptionByte = (virt_TARGET_GetRDPOptionByte*)GetProcAddress(ST_BL_Lib_Hdle,"TARGET_GetRDPOptionByte");
pt_TARGET_GetWRPOptionBytes = (virt_TARGET_GetWRPOptionBytes*)GetProcAddress(ST_BL_Lib_Hdle,"TARGET_GetWRPOptionBytes");
pt_Send_RQ = (virt_Send_RQ*)GetProcAddress(ST_BL_Lib_Hdle,"Send_RQ");
pt_SetCOMSettings = (virt_SetCOMSettings*)GetProcAddress(ST_BL_Lib_Hdle,"SetCOMSettings");
pt_COM_Open = (virt_COM_Open*)GetProcAddress(ST_BL_Lib_Hdle,"COM_Open");
pt_COM_Close = (virt_COM_Close*)GetProcAddress(ST_BL_Lib_Hdle,"COM_Close");
pt_STBL_SetSpeed = (virt_STBL_SetSpeed*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_SetSpeed");
pt_STBL_Init_BL = (virt_STBL_Init_BL*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_Init_BL");
pt_STBL_GET = (virt_STBL_GET*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_GET");
pt_STBL_GET_VER_ROPS = (virt_STBL_GET_VER_ROPS*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_GET_VER_ROPS");
pt_STBL_GET_ID = (virt_STBL_GET_ID*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_GET_ID");
pt_STBL_READ = (virt_STBL_READ*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_READ");
pt_STBL_GO = (virt_STBL_GO*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_GO");
pt_STBL_WRITE = (virt_STBL_WRITE*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_WRITE");
pt_STBL_ERASE = (virt_STBL_ERASE*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_ERASE");
pt_STBL_WRITE_PROTECT = (virt_STBL_WRITE_PROTECT*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_WRITE_PROTECT");
pt_STBL_WRITE_TEMP_UNPROTECT = (virt_STBL_WRITE_TEMP_UNPROTECT*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_WRITE_TEMP_UNPROTECT");
pt_STBL_WRITE_PERM_UNPROTECT = (virt_STBL_WRITE_PERM_UNPROTECT*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_WRITE_PERM_UNPROTECT");
pt_STBL_READOUT_PROTECT = (virt_STBL_READOUT_PROTECT*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_READOUT_PROTECT");
pt_STBL_READOUT_TEMP_UNPROTECT = (virt_STBL_READOUT_TEMP_UNPROTECT*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_READOUT_TEMP_UNPROTECT");
pt_STBL_READOUT_PERM_UNPROTECT = (virt_STBL_READOUT_PERM_UNPROTECT*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_READOUT_PERM_UNPROTECT");
pt_STBL_UPLOAD = (virt_STBL_UPLOAD*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_UPLOAD");
pt_STBL_VERIFY = (virt_STBL_VERIFY*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_VERIFY");
pt_STBL_DNLOAD = (virt_STBL_DNLOAD*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_DNLOAD");
pt_SetPaketSize = (virt_SetPaketSize*)GetProcAddress(ST_BL_Lib_Hdle,"SetPaketSize");
pt_GetPaketSize = (virt_GetPaketSize*)GetProcAddress(ST_BL_Lib_Hdle,"GetPaketSize");
pt_GetAckValue = (virt_GetAckValue*)GetProcAddress(ST_BL_Lib_Hdle,"GetAckValue");
pt_COM_is_Open = (virt_COM_is_Open*)GetProcAddress(ST_BL_Lib_Hdle,"COM_is_Open");
pt_SetTimeOut = (virt_SetTimeOut*)GetProcAddress(ST_BL_Lib_Hdle,"SetTimeOut");
pt_TARGET_GetUserOptionByte = (virt_TARGET_GetUserOptionByte*)GetProcAddress(ST_BL_Lib_Hdle,"TARGET_GetUserOptionByte");
pt_TARGET_GetDataOptionByte = (virt_TARGET_GetDataOptionByte*)GetProcAddress(ST_BL_Lib_Hdle,"TARGET_GetDataOptionByte");
pt_TARGET_SetSIFData = (virt_TARGET_SetSIFData*)GetProcAddress(ST_BL_Lib_Hdle,"TARGET_SetSIFData");
pt_TARGET_GetSIFData = (virt_TARGET_GetSIFData*)GetProcAddress(ST_BL_Lib_Hdle,"TARGET_GetSIFData");
pt_STBL_SetRts = (virt_STBL_SetRts*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_SetRts");
pt_STBL_SetDtr = (virt_STBL_SetDtr*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_SetDtr");
pt_STBL_setTxd = (virt_STBL_setTxd*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_setTxd");
pt_STBL_getCts = (virt_STBL_getCts*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_getCts");
pt_STBL_getDtr = (virt_STBL_getDtr*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_getDtr");
pt_STBL_getRi = (virt_STBL_getRi*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_getRi");
pt_STBL_getCd = (virt_STBL_getCd*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_getCd");
pt_STBL_SetEcho = (virt_STBL_SetEcho*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_SetEcho");
pt_STBL_SetFlowControl = (virt_STBL_SetFlowControl*)GetProcAddress(ST_BL_Lib_Hdle,"STBL_SetFlowControl");
return 0;
}
 
/************************************************************************************/
/*Set the communication settings for UART, CAN, ...
/* UART - numPort, speedInBaud, nbBit, parity, nbStopBit
/* CAN - only : speedInBaud
/************************************************************************************/
STBLLIB_API BYTE SetCOMSettings(int numPort, long speedInBaud, int nbBit,
int parity, float nbStopBit)
{
if(pt_SetCOMSettings)
return pt_SetCOMSettings(numPort, speedInBaud, nbBit, parity, nbStopBit);
else
return LIB_LOADING_ERROR;
}
 
STBLLIB_API BYTE Send_RQ(LPSTBL_Request pRQ)
{
if(pt_Send_RQ)
return pt_Send_RQ(pRQ);
else
return LIB_LOADING_ERROR;
}
 
STBLLIB_API BYTE COM_Open()
{
if(pt_COM_Open)
return pt_COM_Open();
else
return LIB_LOADING_ERROR;
}
 
STBLLIB_API BYTE COM_Close()
{
if(pt_COM_Close)
return pt_COM_Close();
else
return LIB_LOADING_ERROR;
}
 
STBLLIB_API BYTE STBL_SetSpeed(DWORD speed)
{
if(pt_STBL_SetSpeed)
return pt_STBL_SetSpeed(speed);
else
return LIB_LOADING_ERROR;
}
 
STBLLIB_API BYTE STBL_Init_BL()
{
if(pt_STBL_Init_BL)
return pt_STBL_Init_BL();
else
return LIB_LOADING_ERROR;
}
/******************************************************************************************/
/* Boot Loader commands implementation
/******************************************************************************************/
STBLLIB_API BYTE STBL_GET(LPBYTE Version, LPCommands pCmds)
{
if(pt_STBL_GET)
return pt_STBL_GET(Version, pCmds);
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_GET_VER_ROPS(LPBYTE Version, LPBYTE ROPEnabled, LPBYTE ROPDisabled)
{
if(pt_STBL_GET_VER_ROPS)
return pt_STBL_GET_VER_ROPS(Version, ROPEnabled, ROPDisabled);
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_GET_ID(LPBYTE size, LPBYTE pID)
{
if(pt_STBL_GET_ID)
return pt_STBL_GET_ID(size, pID);
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_READ(DWORD Address, BYTE Size, LPBYTE pData)
{
if(pt_STBL_READ)
return pt_STBL_READ(Address, Size, pData);
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_GO(DWORD Address)
{
if(pt_STBL_GO)
return pt_STBL_GO(Address);
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_WRITE(DWORD address, BYTE size, LPBYTE pData)
{
if(pt_STBL_WRITE)
return pt_STBL_WRITE(address, size, pData);
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_ERASE(WORD NbSectors, LPBYTE pSectors)
{
if(pt_STBL_ERASE)
return pt_STBL_ERASE(NbSectors, pSectors);
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_WRITE_PROTECT(BYTE NbSectors, LPBYTE pSectors)
{
if(pt_STBL_WRITE_PROTECT)
return pt_STBL_WRITE_PROTECT(NbSectors, pSectors);
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_WRITE_TEMP_UNPROTECT()
{
if(pt_STBL_WRITE_TEMP_UNPROTECT)
return pt_STBL_WRITE_TEMP_UNPROTECT();
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_WRITE_PERM_UNPROTECT()
{
if(pt_STBL_WRITE_PERM_UNPROTECT)
return pt_STBL_WRITE_PERM_UNPROTECT();
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_READOUT_PROTECT()
{
if(pt_STBL_READOUT_PROTECT)
return pt_STBL_READOUT_PROTECT();
else
return LIB_LOADING_ERROR;
}
STBLLIB_API BYTE STBL_READOUT_TEMP_UNPROTECT()
{
if(pt_STBL_READOUT_TEMP_UNPROTECT)
return pt_STBL_READOUT_TEMP_UNPROTECT();
else
return LIB_LOADING_ERROR;
}
/************************************************************************************/
/* READOUT_PERM_UNPROTECT
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_READOUT_PERM_UNPROTECT()
{
if(pt_STBL_READOUT_PERM_UNPROTECT)
return pt_STBL_READOUT_PERM_UNPROTECT();
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* UPLOAD
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_UPLOAD(DWORD Address, LPBYTE pData, DWORD Length)
{
if(pt_STBL_UPLOAD)
return pt_STBL_UPLOAD(Address, pData, Length);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* VERIFY
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_VERIFY(DWORD Address, LPBYTE pData, DWORD Length,BOOL bTruncateLeadFFForDnLoad)
{
if(pt_STBL_VERIFY)
return pt_STBL_VERIFY(Address, pData, Length,bTruncateLeadFFForDnLoad);
else
return LIB_LOADING_ERROR;
}
/************************************************************************************/
/* DNLOAD - this command uses the STBL_WRITE function to download a big block of data
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_DNLOAD(DWORD Address, LPBYTE pData, DWORD Length,BOOL bTruncateLeadFFForDnLoad)
{
if(pt_STBL_DNLOAD)
return pt_STBL_DNLOAD(Address, pData, Length,bTruncateLeadFFForDnLoad);
else
return LIB_LOADING_ERROR;
}
/************************************************************************************/
/* SET PACKET SIZE
/*
/*
/************************************************************************************/
STBLLIB_API BYTE SetPaketSize(BYTE size)
{
if(pt_SetPaketSize)
return pt_SetPaketSize(size);
else
return LIB_LOADING_ERROR;
}
/************************************************************************************/
/* GET PACKET SIZE
/*
/*
/************************************************************************************/
STBLLIB_API BYTE GetPaketSize(LPBYTE size)
{
if(pt_GetPaketSize)
return pt_GetPaketSize(size);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* GetAckValue
/*
/*
/************************************************************************************/
STBLLIB_API ACKS GetAckValue()
{
if(pt_GetAckValue)
return pt_GetAckValue();
else
return UNDEFINED;
}
 
/************************************************************************************/
/* IsConnected
/*
/*
/************************************************************************************/
STBLLIB_API BOOL COM_is_Open()
{
if(pt_COM_is_Open)
return pt_COM_is_Open();
else
return FALSE;
}
 
/************************************************************************************/
/* SetTimeOut
/*
/*
/************************************************************************************/
STBLLIB_API BYTE SetTimeOut(DWORD vms)
{
if(pt_SetTimeOut)
return pt_SetTimeOut(vms);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* GetFlashSize
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetFlashSize(DWORD Addr, LPWORD val)
{
if(pt_TARGET_GetFlashSize)
return pt_TARGET_GetFlashSize(Addr, val);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* GetMemoryAddress
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetMemoryAddress(DWORD Addr, LPBYTE val)
{
if(pt_TARGET_GetMemoryAddress)
return pt_TARGET_GetMemoryAddress(Addr, val);
else
return LIB_LOADING_ERROR;
}
 
 
/************************************************************************************/
/* GetRDPOptionByte
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetRDPOptionByte(LPBYTE RDP)
{
if(pt_TARGET_GetRDPOptionByte)
return pt_TARGET_GetRDPOptionByte(RDP);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* GetWRPOptionBytes
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetWRPOptionBytes(LPBYTE WRP0, LPBYTE WRP1, LPBYTE WRP2, LPBYTE WRP3)
{
if(pt_TARGET_GetWRPOptionBytes)
return pt_TARGET_GetWRPOptionBytes(WRP0, WRP1, WRP2, WRP3);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* GetUserOptionByte
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetUserOptionByte(LPBYTE User)
{
if(pt_TARGET_GetUserOptionByte)
return pt_TARGET_GetUserOptionByte(User);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* GetDataOptionByte
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetDataOptionByte(LPBYTE Data0, LPBYTE Data1)
{
if(pt_TARGET_GetDataOptionByte)
return pt_TARGET_GetDataOptionByte(Data0, Data1);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* SetSIFData
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_SetSIFData(BYTE User, BYTE RDP, BYTE Data0, BYTE Data1,
BYTE WRP0, BYTE WRP1, BYTE WRP2, BYTE WRP3)
{
if(pt_TARGET_SetSIFData)
return pt_TARGET_SetSIFData(User, RDP, Data0, Data1, WRP0, WRP1, WRP2, WRP3);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* SetSIFData
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetSIFData(LPBYTE User, LPBYTE RDP, LPBYTE Data0, LPBYTE Data1,
LPBYTE WRP0, LPBYTE WRP1, LPBYTE WRP2, LPBYTE WRP3)
{
if(pt_TARGET_GetSIFData)
return pt_TARGET_GetSIFData(User, RDP, Data0, Data1, WRP0, WRP1, WRP2, WRP3);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* GET PROGRESS STATE
/*
/*
/************************************************************************************/
STBLLIB_API BYTE GetProgress(LPBYTE progress)
{
if(pt_GetProgress)
return pt_GetProgress(progress);
else
return LIB_LOADING_ERROR;
}
/************************************************************************************/
/* Get activity time
/*
/*
/************************************************************************************/
STBLLIB_API BYTE GetActivityTime(LPDWORD time)
{
if(pt_GetActivityTime)
return pt_GetActivityTime(time);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* Set activity time
/*
/*
/************************************************************************************/
STBLLIB_API BYTE SetActivityTime(DWORD time)
{
if(pt_SetActivityTime)
return pt_SetActivityTime(time);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* Set Rts Line State
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_SetRts(BOOL Val)
{
if(pt_STBL_SetRts)
return pt_STBL_SetRts(Val);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* Set Dtr Line State
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_SetDtr(BOOL Val)
{
if(pt_Send_RQ)
return pt_STBL_SetDtr(Val);
else
return LIB_LOADING_ERROR;
}
 
/************************************************************************************/
/* Set the state of TXD. Return: true if success.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_setTxd(BOOL val)
{
if(pt_STBL_setTxd)
return pt_STBL_setTxd(val);
else
return LIB_LOADING_ERROR;
}
/************************************************************************************/
/* Return: The state of CTS.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_getCts(BOOL* pval)
{
if(pt_STBL_getCts)
return pt_STBL_getCts(pval);
else
return LIB_LOADING_ERROR;
}
/************************************************************************************/
/* Return: The state of DTR.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_getDtr(BOOL* pval)
{
if(pt_STBL_getDtr)
return pt_STBL_getDtr(pval);
else
return LIB_LOADING_ERROR;
}
/************************************************************************************/
/* Return: The state of RI.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_getRi(BOOL* pval)
{
if(pt_STBL_getRi)
return pt_STBL_getRi(pval);
else
return LIB_LOADING_ERROR;
}
/************************************************************************************/
/* Return: The state of DTR.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_getCd(BOOL* pval)
{
if(pt_STBL_getCd)
return pt_STBL_getCd(pval);
else
return LIB_LOADING_ERROR;
}
 
 
 
/************************************************************************************/
/* Set Echo back Mode
/* 0 = Echo Disabled
/* 1 = Echo Back Enabled
/* 2 = Listen Echo Enabled
/************************************************************************************/
STBLLIB_API BYTE STBL_SetEcho(int val)
{
 
if(pt_STBL_SetEcho)
return pt_STBL_SetEcho(val);
else
return LIB_LOADING_ERROR;
}
 
 
/************************************************************************************/
/* SetFlowControl : Enable/Disable Flow Control of DTR and RTS
/* FALSE = Disabled
/* TRUE = Enabled
/************************************************************************************/
STBLLIB_API BYTE STBL_SetFlowControl(bool val)
{
 
if(pt_STBL_SetFlowControl)
return pt_STBL_SetFlowControl(val);
else
return LIB_LOADING_ERROR;
}
 
/******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE******/
 
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/STBLLIB.dsp
0,0 → 1,129
# Microsoft Developer Studio Project File - Name="STBLLIB" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
 
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
 
CFG=STBLLIB - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "STBLLIB.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "STBLLIB.mak" CFG="STBLLIB - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "STBLLIB - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
!MESSAGE "STBLLIB - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
!MESSAGE
 
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""$/PC/ST Generic Boot Loader/SOFTWARE/STxx BL Lib/Lib Tester", ESSAAAAA"
# PROP Scc_LocalPath "..\stblgui"
CPP=cl.exe
MTL=midl.exe
RSC=rc.exe
 
!IF "$(CFG)" == "STBLLIB - Win32 Release"
 
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 1
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "STBLLIB_EXPORTS" /Yu"stdafx.h" /FD /c
# ADD CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "STBLLIB_EXPORTS" /D "_VS6_USED" /D "_WINDLL" /FD /c
# SUBTRACT CPP /YX /Yc /Yu
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
# ADD LINK32 /nologo /dll /machine:I386 /out:"..\BIN\Release\STBLLIB.dll"
 
!ELSEIF "$(CFG)" == "STBLLIB - Win32 Debug"
 
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "Debug"
# PROP BASE Intermediate_Dir "Debug"
# PROP BASE Target_Dir ""
# PROP Use_MFC 1
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "STBLLIB_EXPORTS" /Yu"stdafx.h" /FD /GZ /c
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "STBLLIB_EXPORTS" /D "_WINDLL" /D "_VS6_USED" /FR /FD /GZ /c
# SUBTRACT CPP /YX /Yc /Yu
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
# ADD LINK32 /nologo /dll /debug /machine:I386 /out:"..\BIN\Debug\STBLLIB.dll" /pdbtype:sept
 
!ENDIF
 
# Begin Target
 
# Name "STBLLIB - Win32 Release"
# Name "STBLLIB - Win32 Debug"
# Begin Group "Source Files"
 
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# Begin Source File
 
SOURCE=..\Crs232\rs232.cpp
# End Source File
# Begin Source File
 
SOURCE=.\STBLLIB.cpp
# End Source File
# Begin Source File
 
SOURCE=.\STBLLIB.rc
# End Source File
# End Group
# Begin Group "Header Files"
 
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# Begin Source File
 
SOURCE=..\Crs232\rs232.h
# End Source File
# Begin Source File
 
SOURCE=.\STBLLIB.h
# End Source File
# Begin Source File
 
SOURCE=.\StdAfx.h
# End Source File
# End Group
# Begin Group "Resource Files"
 
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
# End Group
# End Target
# End Project
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/STBLLIB.h
0,0 → 1,486
/******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
* File Name : STBLLIB.h
* Author : MCD Application Team
* Version : v2.2.0
* Date : 05/03/2010
* Description : Defines the system memory boot loader protocol interface
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
#ifndef STDLIB_H
#define STDLIB_H
 
#include "StdAfx.h"
#include "../CRs232/rs232.h"
 
#ifdef STBLLIB_EXPORTS
#define STBLLIB_API __declspec(dllexport)
#else
#define STBLLIB_API __declspec(dllimport)
#endif
 
const BYTE INIT_CON = 0x7F;
 
const BYTE GET_CMD = 0x00; //Get the version and the allowed commands supported by the current version of the boot loader
const BYTE GET_VER_ROPS_CMD = 0x01; //Get the BL version and the Read Protection status of the NVM
const BYTE GET_ID_CMD = 0x02; //Get the chip ID
const BYTE SET_SPEED_CMD = 0x03; //set the new baudrate
const BYTE READ_CMD = 0x11; //Read up to 256 bytes of memory starting from an address specified by the user
const BYTE GO_CMD = 0x21; //Jump to an address specified by the user to execute (a loaded) code
const BYTE WRITE_CMD = 0x31; //Write maximum 256 bytes to the RAM or the NVM starting from an address specified by the user
const BYTE ERASE_CMD = 0x43; //Erase from one to all the NVM sectors
const BYTE ERASE_EXT_CMD = 0x44; //Erase from one to all the NVM sectors
const BYTE WRITE_PROTECT_CMD = 0x63; //Enable the write protection in a permanent way for some sectors
const BYTE WRITE_TEMP_UNPROTECT_CMD = 0x71; //Disable the write protection in a temporary way for all NVM sectors
const BYTE WRITE_PERM_UNPROTECT_CMD = 0x73; //Disable the write protection in a permanent way for all NVM sectors
const BYTE READOUT_PROTECT_CMD = 0x82; //Enable the readout protection in a permanent way
const BYTE READOUT_TEMP_UNPROTECT_CMD = 0x91; //Disable the readout protection in a temporary way
const BYTE READOUT_PERM_UNPROTECT_CMD = 0x92; //Disable the readout protection in a permanent way
 
 
const BYTE SUCCESS = 0x00; // No error
const BYTE ERROR_OFFSET = 0x00; //error offset
 
const BYTE COM_ERROR_OFFSET = ERROR_OFFSET + 0x00;
const BYTE NO_CON_AVAILABLE = COM_ERROR_OFFSET + 0x01; // No serial port opened
const BYTE COM_ALREADY_OPENED = COM_ERROR_OFFSET + 0x02; // Serial port already opened
const BYTE CANT_OPEN_COM = COM_ERROR_OFFSET + 0x03; // Fail to open serial port
const BYTE SEND_FAIL = COM_ERROR_OFFSET + 0x04; // send over serial port fail
const BYTE READ_FAIL = COM_ERROR_OFFSET + 0x05; // Read from serial port fail
 
const BYTE SYS_MEM_ERROR_OFFSET = ERROR_OFFSET + 0x10;
const BYTE CANT_INIT_BL = SYS_MEM_ERROR_OFFSET + 0x01; // Fail to start system memory BL
const BYTE UNREOGNIZED_DEVICE = SYS_MEM_ERROR_OFFSET + 0x02; // Unreconized device
const BYTE CMD_NOT_ALLOWED = SYS_MEM_ERROR_OFFSET + 0x03; // Command not allowed
const BYTE CMD_FAIL = SYS_MEM_ERROR_OFFSET + 0x04; // command failed
 
const BYTE PROGRAM_ERROR_OFFSET = ERROR_OFFSET + 0x20;
const BYTE INPUT_PARAMS_ERROR = PROGRAM_ERROR_OFFSET + 0x01;
const BYTE INPUT_PARAMS_MEMORY_ALLOCATION_ERROR = PROGRAM_ERROR_OFFSET + 0x02;
const BYTE LIB_LOADING_ERROR = PROGRAM_ERROR_OFFSET + 0x03;
 
 
 
enum ACKS {UNDEFINED=0x00, ST75=0x75, ST79=0x79};
enum INTERFACE_TYPE {UART, CAN};
 
enum EBaudRate { brCustom,br110, br300, br600, br1200, br2400, br4800, br9600, br14400, br19200, br38400,
br56000, br57600, br115200, br128000, br256000 };// Port Numbers ( custom or COM1..COM16 }
enum EPortNumber { pnCustom,pnCOM1, pnCOM2, pnCOM3, pnCOM4, pnCOM5, pnCOM6, pnCOM7,pnCOM8, pnCOM9, pnCOM10,
pnCOM11, pnCOM12, pnCOM13,pnCOM14, pnCOM15, pnCOM16 };// Data bits ( 5, 6, 7, 8 }
enum EDataBits { db5BITS, db6BITS, db7BITS, db8BITS };
// Stop bits ( 1, 1.5, 2 }
enum EStopBits { sb1BITS, sb1HALFBITS, sb2BITS };
// Parity ( None, odd, even, mark, space }
enum EParity { ptNONE, ptODD, ptEVEN, ptMARK, ptSPACE };
// Hardware Flow Control ( None, None + RTS always on, RTS/CTS }
enum EHwFlowControl { hfNONE, hfNONERTSON, hfRTSCTS };
// Software Flow Control ( None, XON/XOFF }
enum ESwFlowControl { sfNONE, sfXONXOFF };
// What to do with incomplete (incoming} packets ( Discard, Pass }
enum EPacketMode { pmDiscard, pmPass };
 
enum OPERATION {NONE, ERASE, UPLOAD, DNLOAD, DIS_R_PROT, DIS_W_PROT, ENA_R_PROT, ENA_W_PROT};
 
typedef struct RESULT
{
OPERATION operation;
char* filename;
HANDLE Image;
}* LPRESULT;
 
typedef struct Commands
{
BOOL GET_CMD ; //Get the version and the allowed commands supported by the current version of the boot loader
BOOL GET_VER_ROPS_CMD ; //Get the BL version and the Read Protection status of the NVM
BOOL GET_ID_CMD ; //Get the chip ID
BOOL SET_SPEED_CMD ; //Change the CAN baudrate
BOOL READ_CMD ; //Read up to 256 bytes of memory starting from an address specified by the user
BOOL GO_CMD ; //Jump to an address specified by the user to execute (a loaded) code
BOOL WRITE_CMD ; //Write maximum 256 bytes to the RAM or the NVM starting from an address specified by the user
BOOL ERASE_CMD ; //Erase from one to all the NVM sectors
BOOL ERASE_EXT_CMD ; //Erase from one to all the NVM sectors
BOOL WRITE_PROTECT_CMD ; //Enable the write protection in a permanent way for some sectors
BOOL WRITE_TEMP_UNPROTECT_CMD ; //Disable the write protection in a temporary way for all NVM sectors
BOOL WRITE_PERM_UNPROTECT_CMD ; //Disable the write protection in a permanent way for all NVM sectors
BOOL READOUT_PROTECT_CMD ; //Enable the readout protection in a permanent way
BOOL READOUT_TEMP_UNPROTECT_CMD ; //Disable the readout protection in a temporary way
BOOL READOUT_PERM_UNPROTECT_CMD ; //Disable the readout protection in a permanent way
}* LPCommands;
 
typedef struct TARGET_DESCRIPTOR
{
BYTE Version ;
BYTE CmdCount ;
BYTE PIDLen ;
BYTE* PID ;
 
BYTE ROPE ;
BYTE ROPD ;
 
BOOL GET_CMD ; //Get the version and the allowed commands supported by the current version of the boot loader
BOOL GET_VER_ROPS_CMD ; //Get the BL version and the Read Protection status of the NVM
BOOL GET_ID_CMD ; //Get the chip ID
BOOL SET_SPEED_CMD ;
BOOL READ_CMD ; //Read up to 256 bytes of memory starting from an address specified by the user
BOOL GO_CMD ; //Jump to an address specified by the user to execute (a loaded) code
BOOL WRITE_CMD ; //Write maximum 256 bytes to the RAM or the NVM starting from an address specified by the user
BOOL ERASE_CMD ; //Erase from one to all the NVM sectors
BOOL ERASE_EXT_CMD ; //Erase from one to all the NVM sectors
BOOL WRITE_PROTECT_CMD ; //Enable the write protection in a permanent way for some sectors
BOOL WRITE_TEMP_UNPROTECT_CMD ; //Disable the write protection in a temporary way for all NVM sectors
BOOL WRITE_PERM_UNPROTECT_CMD ; //Disable the write protection in a permanent way for all NVM sectors
BOOL READOUT_PERM_PROTECT_CMD ; //Enable the readout protection in a permanent way
BOOL READOUT_TEMP_UNPROTECT_CMD ; //Disable the readout protection in a temporary way
BOOL READOUT_PERM_UNPROTECT_CMD ; //Disable the readout protection in a permanent way
}* LPTARGET_DESCRIPTOR;
 
typedef struct STBL_Request
{
BYTE _cmd;
DWORD _address;
WORD _length;
BYTE _nbSectors;
LPTARGET_DESCRIPTOR _target;
LPBYTE _data;
WORD _wbSectors;
}* LPSTBL_Request;
 
extern "C"
{
/************************************************************************************/
/* GET PROGRESS STATE
/*
/*
/************************************************************************************/
STBLLIB_API BYTE GetProgress(LPBYTE progress);
 
/************************************************************************************/
/* GET ACTIVITY TIME
/*
/*
/************************************************************************************/
STBLLIB_API BYTE GetActivityTime(LPDWORD time);
 
/************************************************************************************/
/* SET ACTIVITY TIME
/*
/*
/************************************************************************************/
STBLLIB_API BYTE SetActivityTime(DWORD time);
 
/************************************************************************************/
/* SET COMMUNICATION INTERFACE TYPE
/* UART - CAN - ...
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_SetComIntType(BYTE com_int_type);
/************************************************************************************/
/* GetFlashSize
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetFlashSize(DWORD Addr, LPWORD val);
/************************************************************************************/
/* GetMemoryAddress
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetMemoryAddress(DWORD Addr, LPBYTE val);
/************************************************************************************/
/* GetRDPOptionByte
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetRDPOptionByte(LPBYTE RDP);
/************************************************************************************/
/* GetWRPOptionBytes
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetWRPOptionBytes(LPBYTE WRP0, LPBYTE WRP1, LPBYTE WRP2, LPBYTE WRP3);
/************************************************************************************/
/* Basic function to send a request
/*
/*
/************************************************************************************/
STBLLIB_API BYTE Send_RQ(LPSTBL_Request pRQ);
 
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
STBLLIB_API BYTE SetCOMSettings(int numPort, long speedInBaud, int nbBit,
int parity, float nbStopBit);
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
/*STBLLIB_API BYTE ESetCOMSettings(EPortNumber numPort, EBaudRate speedInBaud, EDataBits nbBit,
EParity parity, EStopBits nbStopBit);*/
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
STBLLIB_API BYTE COM_Open();
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
STBLLIB_API BYTE COM_Close();
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_SetSpeed(DWORD speed);
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_Init_BL();
/************************************************************************************/
/* 0x00; //Get the version and the allowed commands supported by the current version of the boot loader
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_GET(LPBYTE Version, LPCommands pCmds);
/************************************************************************************/
/* 0x01; //Get the BL version and the Read Protection status of the NVM
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_GET_VER_ROPS(LPBYTE Version, LPBYTE ROPEnabled, LPBYTE ROPDisabled);
/************************************************************************************/
/* 0x02; //Get the chip ID
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_GET_ID(LPBYTE size, LPBYTE pID);
/************************************************************************************/
/* 0x11; //Read up to 256 bytes of memory starting from an address specified by the user
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_READ(DWORD Address, BYTE Size, LPBYTE pData);
/************************************************************************************/
/* 0x21; //Jump to an address specified by the user to execute (a loaded) code
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_GO(DWORD Address);
/************************************************************************************/
/* 0x31; //Write maximum 256 bytes to the RAM or the NVM starting from an address specified by the user
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_WRITE(DWORD address, BYTE size, LPBYTE pData);
/************************************************************************************/
/* 0x43; //Erase from one to all the NVM sectors
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_ERASE(WORD NbSectors, LPBYTE pSectors);
/************************************************************************************/
/* 0x63; //Enable the write protection in a permanent way for some sectors
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_WRITE_PROTECT(BYTE NbSectors, LPBYTE pSectors);
/************************************************************************************/
/* 0x71; //Disable the write protection in a temporary way for all NVM sectors
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_WRITE_TEMP_UNPROTECT();
/************************************************************************************/
/* 0x73; //Disable the write protection in a permanent way for all NVM sectors
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_WRITE_PERM_UNPROTECT();
/************************************************************************************/
/* 0x82; //Enable the readout protection in a permanent way
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_READOUT_PROTECT();
/************************************************************************************/
/* 0x91; //Disable the readout protection in a temporary way
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_READOUT_TEMP_UNPROTECT();
/************************************************************************************/
/* 0x92; //Disable the readout protection in a permanent way
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_READOUT_PERM_UNPROTECT();
/************************************************************************************/
/* UPLOAD
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_UPLOAD(DWORD Address, LPBYTE pData, DWORD Length);
/************************************************************************************/
/* VERIFY
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_VERIFY(DWORD Address, LPBYTE pData, DWORD Length,BOOL bTruncateLeadFFForDnLoad);
/************************************************************************************/
/* DNLOAD
/*
/*
/************************************************************************************/
STBLLIB_API BYTE STBL_DNLOAD(DWORD Address, LPBYTE pData, DWORD Length,BOOL bTruncateLeadFFForDnLoad);
 
/************************************************************************************/
/* SET PACKET SIZE
/*
/*
/************************************************************************************/
STBLLIB_API BYTE SetPaketSize(BYTE WORD);
/************************************************************************************/
/* GET PACKET SIZE
/*
/*
/************************************************************************************/
STBLLIB_API BYTE GetPaketSize(LPBYTE size);
 
/************************************************************************************/
/* GetAckValue
/*
/*
/************************************************************************************/
STBLLIB_API ACKS GetAckValue();
 
/************************************************************************************/
/* IsConnected
/*
/*
/************************************************************************************/
STBLLIB_API BOOL COM_is_Open();
 
/************************************************************************************/
/* SetTimeOut
/*
/*
/************************************************************************************/
STBLLIB_API BYTE SetTimeOut(DWORD vms);
/************************************************************************************/
/* GetUserOptionByte
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetUserOptionByte(LPBYTE User);
/************************************************************************************/
/* GetDataOptionByte
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetDataOptionByte(LPBYTE Data0, LPBYTE Data1);
 
/************************************************************************************/
/* SetSIFData
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_SetSIFData(BYTE User, BYTE RDP, BYTE Data0, BYTE Data1,
BYTE WRP0, BYTE WRP1, BYTE WRP2, BYTE WRP3);
 
/************************************************************************************/
/* GetSIFData
/*
/*
/************************************************************************************/
STBLLIB_API BYTE TARGET_GetSIFData(LPBYTE User, LPBYTE RDP, LPBYTE Data0, LPBYTE Data1,
LPBYTE WRP0, LPBYTE WRP1, LPBYTE WRP2, LPBYTE WRP3);
 
/************************************************************************************/
/* Set Rts Line State
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_SetRts(BOOL Val);
 
/************************************************************************************/
/* Set Dtr Line State
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_SetDtr(BOOL Val);
 
/************************************************************************************/
/* Set the state of TXD. Return: true if success.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_setTxd(BOOL val);
/************************************************************************************/
/* Return: The state of CTS.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_getCts(BOOL* pval);
/************************************************************************************/
/* Return: The state of DTR.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_getDtr(BOOL* pval);
/************************************************************************************/
/* Return: The state of RI.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_getRi(BOOL* pval);
/************************************************************************************/
/* Return: The state of DTR.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STBLLIB_API BYTE STBL_getCd(BOOL* pval);
/************************************************************************************/
/* Set Echo back Mode
/* 0 = Echo Disabled
/* 1 = Echo Back Enabled
/* 2 = Listen Echo Enabled
/************************************************************************************/
STBLLIB_API BYTE STBL_SetEcho(int val);
 
 
/************************************************************************************/
/* SetFlowControl : Enable/Disable Flow Control of DTR and RTS
/* FALSE = Disabled
/* TRUE = Enabled
/************************************************************************************/
STBLLIB_API BYTE STBL_SetFlowControl(bool val);
 
 
}
 
 
 
#endif
 
/******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE******/
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/STBLLIB.plg
0,0 → 1,31
<html>
<body>
<pre>
<h1>Build Log</h1>
<h3>
--------------------Configuration: STBLLIB - Win32 Debug--------------------
</h3>
<h3>Command Lines</h3>
Creating temporary file "C:\DOCUME~1\Cm\LOCALS~1\Temp\RSP1BF.tmp" with contents
[
/nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "STBLLIB_EXPORTS" /D "_WINDLL" /D "_VS6_USED" /FR"Debug/" /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
"c:\Devel\ARM\Flash Loader Demonstrator\Src\Crs232\rs232.cpp"
"c:\Devel\ARM\Flash Loader Demonstrator\Src\STBLLIB\STBLLIB.cpp"
]
Creating command line "cl.exe @C:\DOCUME~1\Cm\LOCALS~1\Temp\RSP1BF.tmp"
Creating command line "link.exe /nologo /dll /incremental:yes /pdb:"Debug/STBLLIB.pdb" /debug /machine:I386 /out:"..\BIN\Debug\STBLLIB.dll" /implib:"Debug/STBLLIB.lib" /pdbtype:sept ".\Debug\rs232.obj" ".\Debug\STBLLIB.obj" ".\Debug\STBLLIB.res" "
<h3>Output Window</h3>
Compiling...
rs232.cpp
STBLLIB.cpp
Generating Code...
Linking...
Creating library Debug/STBLLIB.lib and object Debug/STBLLIB.exp
 
 
 
<h3>Results</h3>
STBLLIB.dll - 0 error(s), 0 warning(s)
</pre>
</body>
</html>
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/STBLLIB.rc
0,0 → 1,109
//Microsoft Developer Studio generated resource script.
//
#include "resource.h"
 
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"
 
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
 
/////////////////////////////////////////////////////////////////////////////
// English (U.S.) resources
 
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32
 
#ifndef _MAC
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
 
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,2,0,0
PRODUCTVERSION 2,2,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x40004L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "Comments", "\0"
VALUE "CompanyName", "STMicroelectronics\0"
VALUE "FileDescription", "Flash Loader protocol Virtual APIs\0"
VALUE "FileVersion", "2, 2, 0, 0\0"
VALUE "InternalName", "STBLLIB\0"
VALUE "LegalCopyright", "Copyright © 2010\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "STBLLIB.dll\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "STMicroelectronics STBLLIB\0"
VALUE "ProductVersion", "2, 2, 0, 0\0"
VALUE "SpecialBuild", "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
 
#endif // !_MAC
 
 
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
 
1 TEXTINCLUDE DISCARDABLE
BEGIN
"resource.h\0"
END
 
2 TEXTINCLUDE DISCARDABLE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
 
3 TEXTINCLUDE DISCARDABLE
BEGIN
"\r\n"
"\0"
END
 
#endif // APSTUDIO_INVOKED
 
#endif // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////
 
 
 
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
 
 
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED
 
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/STBLLIB.vcproj
0,0 → 1,284
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="8.00"
Name="STBLLIB"
ProjectGUID="{F9F56A1E-4355-4CC9-92E9-5815BDC57534}"
RootNamespace="STBLLIB"
Keyword="MFCProj"
>
<Platforms>
<Platform
Name="Win32"
/>
</Platforms>
<ToolFiles>
</ToolFiles>
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="false"
CharacterSet="2"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
PreprocessorDefinitions="NDEBUG"
MkTypLibCompatible="true"
SuppressStartupBanner="true"
TargetEnvironment="1"
TypeLibraryName=".\Release/STBLLIB.tlb"
HeaderFileName=""
/>
<Tool
Name="VCCLCompilerTool"
Optimization="2"
InlineFunctionExpansion="1"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;STBLLIB_EXPORTS"
StringPooling="true"
RuntimeLibrary="0"
EnableFunctionLevelLinking="true"
PrecompiledHeaderFile=".\Release/STBLLIB.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
WarningLevel="3"
SuppressStartupBanner="true"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="NDEBUG"
Culture="1033"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="..\BIN\Release\STBLLIB.dll"
LinkIncremental="1"
SuppressStartupBanner="true"
ProgramDatabaseFile=".\Release/STBLLIB.pdb"
ImportLibrary=".\Release/STBLLIB.lib"
TargetMachine="1"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
SuppressStartupBanner="true"
OutputFile=".\Release/STBLLIB.bsc"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="2"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
UseOfMFC="1"
ATLMinimizesCRunTimeLibraryUsage="false"
CharacterSet="2"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
PreprocessorDefinitions="_DEBUG"
MkTypLibCompatible="true"
SuppressStartupBanner="true"
TargetEnvironment="1"
TypeLibraryName=".\Debug/STBLLIB.tlb"
HeaderFileName=""
/>
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;STBLLIB_EXPORTS"
MinimalRebuild="true"
BasicRuntimeChecks="3"
RuntimeLibrary="1"
PrecompiledHeaderFile=".\Debug/STBLLIB.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="4"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="_DEBUG"
Culture="1033"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="..\BIN\Debug\STBLLIB.dll"
LinkIncremental="2"
SuppressStartupBanner="true"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\Debug/STBLLIB.pdb"
ImportLibrary=".\Debug/STBLLIB.lib"
TargetMachine="1"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
SuppressStartupBanner="true"
OutputFile=".\Debug/STBLLIB.bsc"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<Filter
Name="Source Files"
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
>
<File
RelativePath="..\Crs232\rs232.cpp"
>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions=""
/>
</FileConfiguration>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions=""
/>
</FileConfiguration>
</File>
<File
RelativePath="STBLLIB.cpp"
>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions=""
/>
</FileConfiguration>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions=""
/>
</FileConfiguration>
</File>
<File
RelativePath=".\STBLLIB.rc"
>
</File>
</Filter>
<Filter
Name="Header Files"
Filter="h;hpp;hxx;hm;inl"
>
<File
RelativePath="..\Crs232\rs232.h"
>
</File>
<File
RelativePath="STBLLIB.h"
>
</File>
<File
RelativePath="StdAfx.h"
>
</File>
</Filter>
<Filter
Name="Resource Files"
Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
>
</Filter>
</Files>
<Globals>
</Globals>
</VisualStudioProject>
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/StdAfx.cpp
0,0 → 1,10
 
// stdafx.cpp : source file that includes just the standard includes
// STBLLIB.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
 
#include "stdafx.h"
 
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
 
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/StdAfx.h
0,0 → 1,23
 
#if !defined(AFX_STDAFX_H__5756AFC7_1A09_4C0E_B6E8_BA86A975A687__INCLUDED_)
#define AFX_STDAFX_H__5756AFC7_1A09_4C0E_B6E8_BA86A975A687__INCLUDED_
 
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
 
 
// Insert your headers here
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
 
 
#include <windows.h>
 
//#include "../Files/Files.h"
 
// TODO: reference additional headers your program requires here
 
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
 
#endif // !defined(AFX_STDAFX_H__5756AFC7_1A09_4C0E_B6E8_BA86A975A687__INCLUDED_)
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STBLLIB/resource.h
0,0 → 1,15
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by STBLLIB.rc
//
 
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 101
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1000
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMicroelectronics Flash Loader project.dsw
0,0 → 1,52
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
 
###############################################################################
 
Project: "STBLLIB"=".\STBLLIB\STBLLIB.dsp" - Package Owner=<4>
 
Package=<5>
{{{
begin source code control
"$/PC/ST Generic Boot Loader/SOFTWARE", UBQAAAAA
.
end source code control
}}}
 
Package=<4>
{{{
}}}
 
###############################################################################
 
Project: "STMFlashLoader"=".\STMFlashLoader\STMFlashLoader.dsp" - Package Owner=<4>
 
Package=<5>
{{{
begin source code control
"$/PC/ST Generic Boot Loader/SOFTWARE", UBQAAAAA
.
end source code control
}}}
 
Package=<4>
{{{
Begin Project Dependency
Project_Dep_Name STBLLIB
End Project Dependency
}}}
 
###############################################################################
 
Global:
 
Package=<5>
{{{
}}}
 
Package=<3>
{{{
}}}
 
###############################################################################
 
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMicroelectronics Flash Loader project.ncb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMicroelectronics Flash Loader project.opt
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STMicroelectronics Flash Loader project.sln
0,0 → 1,29

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "STMFlashLoader", "STMFlashLoader\STMFlashLoader.vcproj", "{5DED8251-B239-46C2-B2EE-087FF8D46398}"
ProjectSection(ProjectDependencies) = postProject
{F9F56A1E-4355-4CC9-92E9-5815BDC57534} = {F9F56A1E-4355-4CC9-92E9-5815BDC57534}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "STBLLIB", "STBLLIB\STBLLIB.vcproj", "{F9F56A1E-4355-4CC9-92E9-5815BDC57534}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5DED8251-B239-46C2-B2EE-087FF8D46398}.Debug|Win32.ActiveCfg = Debug|Win32
{5DED8251-B239-46C2-B2EE-087FF8D46398}.Debug|Win32.Build.0 = Debug|Win32
{5DED8251-B239-46C2-B2EE-087FF8D46398}.Release|Win32.ActiveCfg = Release|Win32
{5DED8251-B239-46C2-B2EE-087FF8D46398}.Release|Win32.Build.0 = Release|Win32
{F9F56A1E-4355-4CC9-92E9-5815BDC57534}.Debug|Win32.ActiveCfg = Debug|Win32
{F9F56A1E-4355-4CC9-92E9-5815BDC57534}.Debug|Win32.Build.0 = Debug|Win32
{F9F56A1E-4355-4CC9-92E9-5815BDC57534}.Release|Win32.ActiveCfg = Release|Win32
{F9F56A1E-4355-4CC9-92E9-5815BDC57534}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STUARTBLLIB/Debug/STUARTBLLIB.lib
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STUARTBLLIB/Debug/STUARTBLLIB.res
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STUARTBLLIB/Release/STUARTBLLIB.lib
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STUARTBLLIB/Release/STUARTBLLIB.res
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STUARTBLLIB/STUARTBLLIB.h
0,0 → 1,486
/******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
* File Name : STUARTBLLIB.h
* Author : MCD Application Team
* Version : v2.2.0
* Date : 05/03/2010
* Description : Defines the system memory boot loader protocol interface
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
#ifndef STDLIB_H
#define STDLIB_H
 
#include "StdAfx.h"
#include "../CRs232/rs232.h"
 
#ifdef STUARTBLLIB_EXPORTS
#define STUARTBLLIB_API __declspec(dllexport)
#else
#define STUARTBLLIB_API __declspec(dllimport)
#endif
 
const BYTE INIT_CON = 0x7F;
 
const BYTE GET_CMD = 0x00; //Get the version and the allowed commands supported by the current version of the boot loader
const BYTE GET_VER_ROPS_CMD = 0x01; //Get the BL version and the Read Protection status of the NVM
const BYTE GET_ID_CMD = 0x02; //Get the chip ID
const BYTE SET_SPEED_CMD = 0x03; //set the new baudrate
const BYTE READ_CMD = 0x11; //Read up to 256 bytes of memory starting from an address specified by the user
const BYTE GO_CMD = 0x21; //Jump to an address specified by the user to execute (a loaded) code
const BYTE WRITE_CMD = 0x31; //Write maximum 256 bytes to the RAM or the NVM starting from an address specified by the user
const BYTE ERASE_CMD = 0x43; //Erase from one to all the NVM sectors
const BYTE ERASE_EXT_CMD = 0x44; //Erase from one to all the NVM sectors
const BYTE WRITE_PROTECT_CMD = 0x63; //Enable the write protection in a permanent way for some sectors
const BYTE WRITE_TEMP_UNPROTECT_CMD = 0x71; //Disable the write protection in a temporary way for all NVM sectors
const BYTE WRITE_PERM_UNPROTECT_CMD = 0x73; //Disable the write protection in a permanent way for all NVM sectors
const BYTE READOUT_PROTECT_CMD = 0x82; //Enable the readout protection in a permanent way
const BYTE READOUT_TEMP_UNPROTECT_CMD = 0x91; //Disable the readout protection in a temporary way
const BYTE READOUT_PERM_UNPROTECT_CMD = 0x92; //Disable the readout protection in a permanent way
 
 
const BYTE SUCCESS = 0x00; // No error
const BYTE ERROR_OFFSET = 0x00; //error offset
 
const BYTE COM_ERROR_OFFSET = ERROR_OFFSET + 0x00;
const BYTE NO_CON_AVAILABLE = COM_ERROR_OFFSET + 0x01; // No serial port opened
const BYTE COM_ALREADY_OPENED = COM_ERROR_OFFSET + 0x02; // Serial port already opened
const BYTE CANT_OPEN_COM = COM_ERROR_OFFSET + 0x03; // Fail to open serial port
const BYTE SEND_FAIL = COM_ERROR_OFFSET + 0x04; // send over serial port fail
const BYTE READ_FAIL = COM_ERROR_OFFSET + 0x05; // Read from serial port fail
 
const BYTE SYS_MEM_ERROR_OFFSET = ERROR_OFFSET + 0x10;
const BYTE CANT_INIT_BL = SYS_MEM_ERROR_OFFSET + 0x01; // Fail to start system memory BL
const BYTE UNREOGNIZED_DEVICE = SYS_MEM_ERROR_OFFSET + 0x02; // Unreconized device
const BYTE CMD_NOT_ALLOWED = SYS_MEM_ERROR_OFFSET + 0x03; // Command not allowed
const BYTE CMD_FAIL = SYS_MEM_ERROR_OFFSET + 0x04; // command failed
 
const BYTE PROGRAM_ERROR_OFFSET = ERROR_OFFSET + 0x20;
const BYTE INPUT_PARAMS_ERROR = PROGRAM_ERROR_OFFSET + 0x01;
const BYTE INPUT_PARAMS_MEMORY_ALLOCATION_ERROR = PROGRAM_ERROR_OFFSET + 0x02;
 
 
 
enum ACKS {UNDEFINED=0x00, ST75=0x75, ST79=0x79};
enum INTERFACE_TYPE {UART, CAN};
 
enum EBaudRate { brCustom,br110, br300, br600, br1200, br2400, br4800, br9600, br14400, br19200, br38400,
br56000, br57600, br115200, br128000, br256000 };// Port Numbers ( custom or COM1..COM16 }
enum EPortNumber { pnCustom,pnCOM1, pnCOM2, pnCOM3, pnCOM4, pnCOM5, pnCOM6, pnCOM7,pnCOM8, pnCOM9, pnCOM10,
pnCOM11, pnCOM12, pnCOM13,pnCOM14, pnCOM15, pnCOM16 };// Data bits ( 5, 6, 7, 8 }
enum EDataBits { db5BITS, db6BITS, db7BITS, db8BITS };
// Stop bits ( 1, 1.5, 2 }
enum EStopBits { sb1BITS, sb1HALFBITS, sb2BITS };
// Parity ( None, odd, even, mark, space }
enum EParity { ptNONE, ptODD, ptEVEN, ptMARK, ptSPACE };
// Hardware Flow Control ( None, None + RTS always on, RTS/CTS }
enum EHwFlowControl { hfNONE, hfNONERTSON, hfRTSCTS };
// Software Flow Control ( None, XON/XOFF }
enum ESwFlowControl { sfNONE, sfXONXOFF };
// What to do with incomplete (incoming} packets ( Discard, Pass }
enum EPacketMode { pmDiscard, pmPass };
 
enum OPERATION {NONE, ERASE, UPLOAD, DNLOAD, DIS_R_PROT, DIS_W_PROT, ENA_R_PROT, ENA_W_PROT};
 
typedef struct RESULT
{
OPERATION operation;
char* filename;
HANDLE Image;
}* LPRESULT;
 
typedef struct Commands
{
BOOL GET_CMD ; //Get the version and the allowed commands supported by the current version of the boot loader
BOOL GET_VER_ROPS_CMD ; //Get the BL version and the Read Protection status of the NVM
BOOL GET_ID_CMD ; //Get the chip ID
BOOL SET_SPEED_CMD ; //Change the CAN baudrate
BOOL READ_CMD ; //Read up to 256 bytes of memory starting from an address specified by the user
BOOL GO_CMD ; //Jump to an address specified by the user to execute (a loaded) code
BOOL WRITE_CMD ; //Write maximum 256 bytes to the RAM or the NVM starting from an address specified by the user
BOOL ERASE_CMD ; //Erase from one to all the NVM sectors
BOOL ERASE_EXT_CMD ; //Erase from one to all the NVM sectors
BOOL WRITE_PROTECT_CMD ; //Enable the write protection in a permanent way for some sectors
BOOL WRITE_TEMP_UNPROTECT_CMD ; //Disable the write protection in a temporary way for all NVM sectors
BOOL WRITE_PERM_UNPROTECT_CMD ; //Disable the write protection in a permanent way for all NVM sectors
BOOL READOUT_PROTECT_CMD ; //Enable the readout protection in a permanent way
BOOL READOUT_TEMP_UNPROTECT_CMD ; //Disable the readout protection in a temporary way
BOOL READOUT_PERM_UNPROTECT_CMD ; //Disable the readout protection in a permanent way
}* LPCommands;
 
typedef struct TARGET_DESCRIPTOR
{
BYTE Version ;
BYTE CmdCount ;
BYTE PIDLen ;
BYTE* PID ;
 
BYTE ROPE ;
BYTE ROPD ;
 
BOOL GET_CMD ; //Get the version and the allowed commands supported by the current version of the boot loader
BOOL GET_VER_ROPS_CMD ; //Get the BL version and the Read Protection status of the NVM
BOOL GET_ID_CMD ; //Get the chip ID
BOOL SET_SPEED_CMD ;
BOOL READ_CMD ; //Read up to 256 bytes of memory starting from an address specified by the user
BOOL GO_CMD ; //Jump to an address specified by the user to execute (a loaded) code
BOOL WRITE_CMD ; //Write maximum 256 bytes to the RAM or the NVM starting from an address specified by the user
BOOL ERASE_CMD ; //Erase from one to all the NVM sectors
BOOL ERASE_EXT_CMD ; //Erase from one to all the NVM sectors
BOOL WRITE_PROTECT_CMD ; //Enable the write protection in a permanent way for some sectors
BOOL WRITE_TEMP_UNPROTECT_CMD ; //Disable the write protection in a temporary way for all NVM sectors
BOOL WRITE_PERM_UNPROTECT_CMD ; //Disable the write protection in a permanent way for all NVM sectors
BOOL READOUT_PERM_PROTECT_CMD ; //Enable the readout protection in a permanent way
BOOL READOUT_TEMP_UNPROTECT_CMD ; //Disable the readout protection in a temporary way
BOOL READOUT_PERM_UNPROTECT_CMD ; //Disable the readout protection in a permanent way
}* LPTARGET_DESCRIPTOR;
 
typedef struct STBL_Request
{
BYTE _cmd;
DWORD _address;
WORD _length;
BYTE _nbSectors;
LPTARGET_DESCRIPTOR _target;
LPBYTE _data;
WORD _wbSectors;
}* LPSTBL_Request;
 
 
extern "C"
{
 
/************************************************************************************/
/* SET COMMUNICATION INTERFACE TYPE
/* UART - ...
/*
/************************************************************************************/
STUARTBLLIB_API BYTE TARGET_SetComIntType(BYTE com_int_type);
 
/************************************************************************************/
/* GET PROGRESS STATE
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE GetProgress(LPBYTE progress);
 
/************************************************************************************/
/* GET ACTIVITY TIME
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE GetActivityTime(LPDWORD time);
 
/************************************************************************************/
/* SET ACTIVITY TIME
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE SetActivityTime(DWORD time);
 
/************************************************************************************/
/* GetFlashSize
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE TARGET_GetFlashSize(DWORD Addr, LPWORD val);
/************************************************************************************/
/* GetRAMSize
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE TARGET_GetMemoryAddress(DWORD Addr, LPBYTE val);
/************************************************************************************/
/* GetRDPOptionByte
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE TARGET_GetRDPOptionByte(LPBYTE RDP);
/************************************************************************************/
/* GetWRPOptionBytes
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE TARGET_GetWRPOptionBytes(LPBYTE WRP0, LPBYTE WRP1, LPBYTE WRP2, LPBYTE WRP3);
/************************************************************************************/
/* Basic function to send a request
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE Send_RQ(LPSTBL_Request pRQ);
 
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE SetCOMSettings(int numPort, long speedInBaud, int nbBit,
int parity, float nbStopBit);
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
/*STUARTBLLIB_API BYTE ESetCOMSettings(EPortNumber numPort, EBaudRate speedInBaud, EDataBits nbBit,
EParity parity, EStopBits nbStopBit);*/
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE COM_Open();
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE COM_Close();
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_SetSpeed(DWORD speed);
/************************************************************************************/
/*
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_Init_BL();
/************************************************************************************/
/* 0x00; //Get the version and the allowed commands supported by the current version of the boot loader
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_GET(LPBYTE Version, LPCommands pCmds);
/************************************************************************************/
/* 0x01; //Get the BL version and the Read Protection status of the NVM
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_GET_VER_ROPS(LPBYTE Version, LPBYTE ROPEnabled, LPBYTE ROPDisabled);
/************************************************************************************/
/* 0x02; //Get the chip ID
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_GET_ID(LPBYTE size, LPBYTE pID);
/************************************************************************************/
/* 0x11; //Read up to 256 bytes of memory starting from an address specified by the user
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_READ(DWORD Address, BYTE Size, LPBYTE pData);
/************************************************************************************/
/* 0x21; //Jump to an address specified by the user to execute (a loaded) code
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_GO(DWORD Address);
/************************************************************************************/
/* 0x31; //Write maximum 256 bytes to the RAM or the NVM starting from an address specified by the user
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_WRITE(DWORD address, BYTE size, LPBYTE pData);
/************************************************************************************/
/* 0x43; //Erase from one to all the NVM sectors
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_ERASE(WORD NbSectors, LPBYTE pSectors);
/************************************************************************************/
/* 0x63; //Enable the write protection in a permanent way for some sectors
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_WRITE_PROTECT(BYTE NbSectors, LPBYTE pSectors);
/************************************************************************************/
/* 0x71; //Disable the write protection in a temporary way for all NVM sectors
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_WRITE_TEMP_UNPROTECT();
/************************************************************************************/
/* 0x73; //Disable the write protection in a permanent way for all NVM sectors
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_WRITE_PERM_UNPROTECT();
/************************************************************************************/
/* 0x82; //Enable the readout protection in a permanent way
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_READOUT_PROTECT();
/************************************************************************************/
/* 0x91; //Disable the readout protection in a temporary way
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_READOUT_TEMP_UNPROTECT();
/************************************************************************************/
/* 0x92; //Disable the readout protection in a permanent way
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_READOUT_PERM_UNPROTECT();
/************************************************************************************/
/* UPLOAD
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_UPLOAD(DWORD Address, LPBYTE pData, DWORD Length);
/************************************************************************************/
/* VERIFY
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_VERIFY(DWORD Address, LPBYTE pData, DWORD Length,BOOL bTruncateLeadFFForDnLoad);
/************************************************************************************/
/* DNLOAD
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_DNLOAD(DWORD Address, LPBYTE pData, DWORD Length,BOOL bTruncateLeadFFForDnLoad);
 
/************************************************************************************/
/* SET PACKET SIZE
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE SetPaketSize(BYTE size);
/************************************************************************************/
/* GET PACKET SIZE
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE GetPaketSize(LPBYTE size);
 
/************************************************************************************/
/* GetAckValue
/*
/*
/************************************************************************************/
STUARTBLLIB_API ACKS GetAckValue();
 
/************************************************************************************/
/* IsConnected
/*
/*
/************************************************************************************/
STUARTBLLIB_API BOOL COM_is_Open();
 
/************************************************************************************/
/* SetTimeOut
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE SetTimeOut(DWORD vms);
/************************************************************************************/
/* GetUserOptionByte
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE TARGET_GetUserOptionByte(LPBYTE User);
/************************************************************************************/
/* GetDataOptionByte
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE TARGET_GetDataOptionByte(LPBYTE Data0, LPBYTE Data1);
 
/************************************************************************************/
/* SetSIFData
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE TARGET_SetSIFData(BYTE User, BYTE RDP, BYTE Data0, BYTE Data1,
BYTE WRP0, BYTE WRP1, BYTE WRP2, BYTE WRP3);
 
/************************************************************************************/
/* GetSIFData
/*
/*
/************************************************************************************/
STUARTBLLIB_API BYTE TARGET_GetSIFData(LPBYTE User, LPBYTE RDP, LPBYTE Data0, LPBYTE Data1,
LPBYTE WRP0, LPBYTE WRP1, LPBYTE WRP2, LPBYTE WRP3);
 
/************************************************************************************/
/* Set Rts Line State
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_SetRts(BOOL Val);
 
/************************************************************************************/
/* Set Dtr Line State
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_SetDtr(BOOL Val);
 
/************************************************************************************/
/* Set the state of TXD. Return: true if success.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_setTxd(BOOL val);
/************************************************************************************/
/* Return: The state of CTS.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_getCts(BOOL* pval);
/************************************************************************************/
/* Return: The state of DTR.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_getDtr(BOOL* pval);
/************************************************************************************/
/* Return: The state of RI.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_getRi(BOOL* pval);
/************************************************************************************/
/* Return: The state of DTR.
/* High = TRUE
/* Low = FALSE
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_getCd(BOOL* pval);
 
 
/************************************************************************************/
/* Set Echo Mode
/* 0 = Echo Disabled
/* 1 = Echo Back Enabled
/* 2 = Listen Echo Enabled
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_SetEcho(int val);
 
 
/************************************************************************************/
/* SetFlowControl : Enable/Disable Flow Control of DTR and RTS
/* FALSE = Disabled
/* TRUE = Enabled
/************************************************************************************/
STUARTBLLIB_API BYTE STBL_SetFlowControl(bool val);
 
}
 
#endif
 
/******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE******/
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Src/STUARTBLLIB/resource.h
0,0 → 1,15
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by STUARTBLLIB.rc
//
 
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 101
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1000
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Conf/Default.conf
0,0 → 1,75
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : Default.conf
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : Defines the default parameters configuration
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[INTERFACE]
comm_int=0
 
 
[Serial]
PortNumber=2
BaudRate=0
DataBits=3
Parity=2
StopBits=0
TimeOut=1
Echo=0
 
[MCUs]
f1=STM32F1
f2=STR75x
f3=STM8
f4=STR91xFA
 
[f1]
ADDR_RAM_SIZE =1FFFF7E2;
ADDR_FLASH_SIZE=1FFFF7E0;
 
[f2]
AN=AN2430
Title=STR75x System Memory boot mode
ADDR_RAM_SIZE =FFFFFFFF;
ADDR_FLASH_SIZE=FFFFFFFF;
 
[f3]
ADDR_RAM_SIZE =FFFFFFFF;
ADDR_FLASH_SIZE=FFFFFFFF;
 
[f4]
ADDR_RAM_SIZE =FFFFFFFF;
ADDR_FLASH_SIZE=FFFFFFFF;
 
[Operation]
Index=2
Verify=1
Run=0
Optimize=0
EROP=0
DisEna=1
RW=1
RunAddress=800A000
Family=0
ApplyOPB=0
EraseDnLoad=0
 
 
[Files]
DownloadExt=*.bin
UploadExt=*.hex
OPBExt=*.bin
 
Download=D:\Data\Versaloon\dongle\udisk\image(1024).bin
Upload=D:\stm1.hex
OPBFile=
 
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Files.dll
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_Connectivity-line_128K.STmap
0,0 → 1,475
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_Connectivity-line_128K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_Connectivity-line_128K
PID=0418
FlashSize=0080 ;;ADDR_FLASH_SIZE=1FFFF7E0;
RAMSize=0020 ;;ADDR_RAM_SIZE =1FFFF7E2;
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector=2
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000800
Type=111
UFO=111
 
[Page1]
Name=Page1
Index=01
Address=08000800
Size=00000800
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08001000
Size=00000800
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08001800
Size=00000800
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08002000
Size=00000800
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08002800
Size=00000800
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08003000
Size=00000800
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08003800
Size=00000800
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08004000
Size=00000800
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08004800
Size=00000800
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08005000
Size=00000800
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08005800
Size=00000800
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08006000
Size=00000800
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08006800
Size=00000800
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08007000
Size=00000800
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08007800
Size=00000800
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08008000
Size=00000800
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08008800
Size=00000800
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08009000
Size=00000800
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08009800
Size=00000800
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=0800A000
Size=00000800
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=0800A800
Size=00000800
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=0800B000
Size=00000800
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=0800B800
Size=00000800
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=0800C000
Size=00000800
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=0800C800
Size=00000800
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=0800D000
Size=00000800
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=0800D800
Size=00000800
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=0800E000
Size=00000800
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=0800E800
Size=00000800
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=0800F000
Size=00000800
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=0800F800
Size=00000800
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08010000
Size=00000800
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08010800
Size=00000800
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08011000
Size=00000800
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08011800
Size=00000800
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08012000
Size=00000800
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08012800
Size=00000800
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08013000
Size=00000800
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08013800
Size=00000800
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=08014000
Size=00000800
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=08014800
Size=00000800
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=08015000
Size=00000800
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=08015800
Size=00000800
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=08016000
Size=00000800
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=08016800
Size=00000800
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=08017000
Size=00000800
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=08017800
Size=00000800
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=08018000
Size=00000800
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=08018800
Size=00000800
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=08019000
Size=00000800
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=08019800
Size=00000800
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0801A000
Size=00000800
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0801A800
Size=00000800
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0801B000
Size=00000800
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0801B800
Size=00000800
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0801C000
Size=00000800
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0801C800
Size=00000800
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0801D000
Size=00000800
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0801D800
Size=00000800
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0801E000
Size=00000800
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0801E800
Size=00000800
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0801F000
Size=00000800
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0801F800
Size=00000800
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_Connectivity-line_256K.STmap
0,0 → 1,922
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_Connectivity-line_256K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_Connectivity-line_256K
PID=0418
FlashSize=0100 ;;ADDR_FLASH_SIZE=1FFFF7E0;
RAMSize=0040 ;;ADDR_RAM_SIZE =1FFFF7E2;
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector=2
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000800
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000800
Size=00000800
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08001000
Size=00000800
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08001800
Size=00000800
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08002000
Size=00000800
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08002800
Size=00000800
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08003000
Size=00000800
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08003800
Size=00000800
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08004000
Size=00000800
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08004800
Size=00000800
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08005000
Size=00000800
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08005800
Size=00000800
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08006000
Size=00000800
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08006800
Size=00000800
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08007000
Size=00000800
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08007800
Size=00000800
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08008000
Size=00000800
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08008800
Size=00000800
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08009000
Size=00000800
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08009800
Size=00000800
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=0800A000
Size=00000800
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=0800A800
Size=00000800
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=0800B000
Size=00000800
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=0800B800
Size=00000800
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=0800C000
Size=00000800
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=0800C800
Size=00000800
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=0800D000
Size=00000800
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=0800D800
Size=00000800
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=0800E000
Size=00000800
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=0800E800
Size=00000800
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=0800F000
Size=00000800
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=0800F800
Size=00000800
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08010000
Size=00000800
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08010800
Size=00000800
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08011000
Size=00000800
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08011800
Size=00000800
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08012000
Size=00000800
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08012800
Size=00000800
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08013000
Size=00000800
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08013800
Size=00000800
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=08014000
Size=00000800
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=08014800
Size=00000800
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=08015000
Size=00000800
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=08015800
Size=00000800
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=08016000
Size=00000800
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=08016800
Size=00000800
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=08017000
Size=00000800
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=08017800
Size=00000800
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=08018000
Size=00000800
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=08018800
Size=00000800
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=08019000
Size=00000800
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=08019800
Size=00000800
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0801A000
Size=00000800
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0801A800
Size=00000800
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0801B000
Size=00000800
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0801B800
Size=00000800
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0801C000
Size=00000800
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0801C800
Size=00000800
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0801D000
Size=00000800
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0801D800
Size=00000800
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0801E000
Size=00000800
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0801E800
Size=00000800
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0801F000
Size=00000800
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0801F800
Size=00000800
Type=111
UFO=111
[Page64]
Name=Page64
Index=40
Address=08020000
Size=00000800
Type=111
UFO=111
[Page65]
Name=Page65
Index=41
Address=08020800
Size=00000800
Type=111
UFO=111
[Page66]
Name=Page66
Index=42
Address=08021000
Size=00000800
Type=111
UFO=111
[Page67]
Name=Page67
Index=43
Address=08021800
Size=00000800
Type=111
UFO=111
[Page68]
Name=Page68
Index=44
Address=08022000
Size=00000800
Type=111
UFO=111
[Page69]
Name=Page69
Index=45
Address=08022800
Size=00000800
Type=111
UFO=111
[Page70]
Name=Page70
Index=46
Address=08023000
Size=00000800
Type=111
UFO=111
[Page71]
Name=Page71
Index=47
Address=08023800
Size=00000800
Type=111
UFO=111
[Page72]
Name=Page72
Index=48
Address=08024000
Size=00000800
Type=111
UFO=111
[Page73]
Name=Page73
Index=49
Address=08024800
Size=00000800
Type=111
UFO=111
[Page74]
Name=Page74
Index=4A
Address=08025000
Size=00000800
Type=111
UFO=111
[Page75]
Name=Page75
Index=4B
Address=08025800
Size=00000800
Type=111
UFO=111
[Page76]
Name=Page76
Index=4C
Address=08026000
Size=00000800
Type=111
UFO=111
[Page77]
Name=Page77
Index=4D
Address=08026800
Size=00000800
Type=111
UFO=111
[Page78]
Name=Page78
Index=4E
Address=08027000
Size=00000800
Type=111
UFO=111
[Page79]
Name=Page79
Index=4F
Address=08027800
Size=00000800
Type=111
UFO=111
[Page80]
Name=Page80
Index=50
Address=08028000
Size=00000800
Type=111
UFO=111
[Page81]
Name=Page81
Index=51
Address=08028800
Size=00000800
Type=111
UFO=111
[Page82]
Name=Page82
Index=52
Address=08029000
Size=00000800
Type=111
UFO=111
[Page83]
Name=Page83
Index=53
Address=08029800
Size=00000800
Type=111
UFO=111
[Page84]
Name=Page84
Index=54
Address=0802A000
Size=00000800
Type=111
UFO=111
[Page85]
Name=Page85
Index=55
Address=0802A800
Size=00000800
Type=111
UFO=111
[Page86]
Name=Page86
Index=56
Address=0802B000
Size=00000800
Type=111
UFO=111
[Page87]
Name=Page87
Index=57
Address=0802B800
Size=00000800
Type=111
UFO=111
[Page88]
Name=Page88
Index=58
Address=0802C000
Size=00000800
Type=111
UFO=111
[Page89]
Name=Page89
Index=59
Address=0802C800
Size=00000800
Type=111
UFO=111
[Page90]
Name=Page90
Index=5A
Address=0802D000
Size=00000800
Type=111
UFO=111
[Page91]
Name=Page91
Index=5B
Address=0802D800
Size=00000800
Type=111
UFO=111
[Page92]
Name=Page92
Index=5C
Address=0802E000
Size=00000800
Type=111
UFO=111
[Page93]
Name=Page93
Index=5D
Address=0802E800
Size=00000800
Type=111
UFO=111
[Page94]
Name=Page94
Index=5E
Address=0802F000
Size=00000800
Type=111
UFO=111
[Page95]
Name=Page95
Index=5F
Address=0802F800
Size=00000800
Type=111
UFO=111
[Page96]
Name=Page96
Index=60
Address=08030000
Size=00000800
Type=111
UFO=111
[Page97]
Name=Page97
Index=61
Address=08030800
Size=00000800
Type=111
UFO=111
[Page98]
Name=Page98
Index=62
Address=08031000
Size=00000800
Type=111
UFO=111
[Page99]
Name=Page99
Index=63
Address=08031800
Size=00000800
Type=111
UFO=111
[Page100]
Name=Page100
Index=64
Address=08032000
Size=00000800
Type=111
UFO=111
[Page101]
Name=Page101
Index=65
Address=08032800
Size=00000800
Type=111
UFO=111
[Page102]
Name=Page102
Index=66
Address=08033000
Size=00000800
Type=111
UFO=111
[Page103]
Name=Page103
Index=67
Address=08033800
Size=00000800
Type=111
UFO=111
[Page104]
Name=Page104
Index=68
Address=08034000
Size=00000800
Type=111
UFO=111
[Page105]
Name=Page105
Index=69
Address=08034800
Size=00000800
Type=111
UFO=111
[Page106]
Name=Page106
Index=6A
Address=08035000
Size=00000800
Type=111
UFO=111
[Page107]
Name=Page107
Index=6B
Address=08035800
Size=00000800
Type=111
UFO=111
[Page108]
Name=Page108
Index=6C
Address=08036000
Size=00000800
Type=111
UFO=111
[Page109]
Name=Page109
Index=6D
Address=08036800
Size=00000800
Type=111
UFO=111
[Page110]
Name=Page110
Index=6E
Address=08037000
Size=00000800
Type=111
UFO=111
[Page111]
Name=Page111
Index=6F
Address=08037800
Size=00000800
Type=111
UFO=111
[Page112]
Name=Page112
Index=70
Address=08038000
Size=00000800
Type=111
UFO=111
[Page113]
Name=Page113
Index=71
Address=08038800
Size=00000800
Type=111
UFO=111
[Page114]
Name=Page114
Index=72
Address=08039000
Size=00000800
Type=111
UFO=111
[Page115]
Name=Page115
Index=73
Address=08039800
Size=00000800
Type=111
UFO=111
[Page116]
Name=Page116
Index=74
Address=0803A000
Size=00000800
Type=111
UFO=111
[Page117]
Name=Page117
Index=75
Address=0803A800
Size=00000800
Type=111
UFO=111
[Page118]
Name=Page118
Index=76
Address=0803B000
Size=00000800
Type=111
UFO=111
[Page119]
Name=Page119
Index=77
Address=0803B800
Size=00000800
Type=111
UFO=111
[Page120]
Name=Page120
Index=78
Address=0803C000
Size=00000800
Type=111
UFO=111
[Page121]
Name=Page121
Index=79
Address=0803C800
Size=00000800
Type=111
UFO=111
[Page122]
Name=Page122
Index=7A
Address=0803D000
Size=00000800
Type=111
UFO=111
[Page123]
Name=Page123
Index=7B
Address=0803D800
Size=00000800
Type=111
UFO=111
[Page124]
Name=Page124
Index=7C
Address=0803E000
Size=00000800
Type=111
UFO=111
[Page125]
Name=Page125
Index=7D
Address=0803E800
Size=00000800
Type=111
UFO=111
[Page126]
Name=Page126
Index=7E
Address=0803F000
Size=00000800
Type=111
UFO=111
[Page127]
Name=Page127
Index=7F
Address=0803F800
Size=00000800
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_Connectivity-line_64K.STmap
0,0 → 1,250
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_Connectivity-line_64K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_Connectivity-line_64K
PID=0418
FlashSize=0040 ;;ADDR_FLASH_SIZE=1FFFF7E0;
RAMSize=0014 ;;ADDR_RAM_SIZE =1FFFF7E2;
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector=2
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000800
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000800
Size=00000800
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08001000
Size=00000800
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08001800
Size=00000800
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08002000
Size=00000800
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08002800
Size=00000800
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08003000
Size=00000800
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08003800
Size=00000800
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08004000
Size=00000800
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08004800
Size=00000800
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08005000
Size=00000800
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08005800
Size=00000800
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08006000
Size=00000800
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08006800
Size=00000800
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08007000
Size=00000800
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08007800
Size=00000800
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08008000
Size=00000800
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08008800
Size=00000800
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08009000
Size=00000800
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08009800
Size=00000800
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=0800A000
Size=00000800
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=0800A800
Size=00000800
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=0800B000
Size=00000800
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=0800B800
Size=00000800
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=0800C000
Size=00000800
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=0800C800
Size=00000800
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=0800D000
Size=00000800
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=0800D800
Size=00000800
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=0800E000
Size=00000800
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=0800E800
Size=00000800
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=0800F000
Size=00000800
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=0800F800
Size=00000800
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_High-density_256K.STmap
0,0 → 1,923
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_High-density_256K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_High-density_256K
PID=0414
FlashSize=0100 ;;ADDR_FLASH_SIZE=1FFFF7E0;
RAMSize=0030 ;;ADDR_RAM_SIZE =1FFFF7E2;
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector=2
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000800
Type=111
UFO=111
 
[Page1]
Name=Page1
Index=01
Address=08000800
Size=00000800
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08001000
Size=00000800
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08001800
Size=00000800
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08002000
Size=00000800
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08002800
Size=00000800
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08003000
Size=00000800
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08003800
Size=00000800
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08004000
Size=00000800
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08004800
Size=00000800
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08005000
Size=00000800
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08005800
Size=00000800
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08006000
Size=00000800
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08006800
Size=00000800
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08007000
Size=00000800
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08007800
Size=00000800
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08008000
Size=00000800
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08008800
Size=00000800
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08009000
Size=00000800
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08009800
Size=00000800
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=0800A000
Size=00000800
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=0800A800
Size=00000800
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=0800B000
Size=00000800
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=0800B800
Size=00000800
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=0800C000
Size=00000800
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=0800C800
Size=00000800
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=0800D000
Size=00000800
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=0800D800
Size=00000800
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=0800E000
Size=00000800
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=0800E800
Size=00000800
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=0800F000
Size=00000800
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=0800F800
Size=00000800
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08010000
Size=00000800
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08010800
Size=00000800
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08011000
Size=00000800
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08011800
Size=00000800
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08012000
Size=00000800
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08012800
Size=00000800
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08013000
Size=00000800
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08013800
Size=00000800
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=08014000
Size=00000800
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=08014800
Size=00000800
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=08015000
Size=00000800
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=08015800
Size=00000800
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=08016000
Size=00000800
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=08016800
Size=00000800
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=08017000
Size=00000800
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=08017800
Size=00000800
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=08018000
Size=00000800
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=08018800
Size=00000800
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=08019000
Size=00000800
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=08019800
Size=00000800
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0801A000
Size=00000800
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0801A800
Size=00000800
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0801B000
Size=00000800
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0801B800
Size=00000800
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0801C000
Size=00000800
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0801C800
Size=00000800
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0801D000
Size=00000800
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0801D800
Size=00000800
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0801E000
Size=00000800
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0801E800
Size=00000800
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0801F000
Size=00000800
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0801F800
Size=00000800
Type=111
UFO=111
[Page64]
Name=Page64
Index=40
Address=08020000
Size=00000800
Type=111
UFO=111
[Page65]
Name=Page65
Index=41
Address=08020800
Size=00000800
Type=111
UFO=111
[Page66]
Name=Page66
Index=42
Address=08021000
Size=00000800
Type=111
UFO=111
[Page67]
Name=Page67
Index=43
Address=08021800
Size=00000800
Type=111
UFO=111
[Page68]
Name=Page68
Index=44
Address=08022000
Size=00000800
Type=111
UFO=111
[Page69]
Name=Page69
Index=45
Address=08022800
Size=00000800
Type=111
UFO=111
[Page70]
Name=Page70
Index=46
Address=08023000
Size=00000800
Type=111
UFO=111
[Page71]
Name=Page71
Index=47
Address=08023800
Size=00000800
Type=111
UFO=111
[Page72]
Name=Page72
Index=48
Address=08024000
Size=00000800
Type=111
UFO=111
[Page73]
Name=Page73
Index=49
Address=08024800
Size=00000800
Type=111
UFO=111
[Page74]
Name=Page74
Index=4A
Address=08025000
Size=00000800
Type=111
UFO=111
[Page75]
Name=Page75
Index=4B
Address=08025800
Size=00000800
Type=111
UFO=111
[Page76]
Name=Page76
Index=4C
Address=08026000
Size=00000800
Type=111
UFO=111
[Page77]
Name=Page77
Index=4D
Address=08026800
Size=00000800
Type=111
UFO=111
[Page78]
Name=Page78
Index=4E
Address=08027000
Size=00000800
Type=111
UFO=111
[Page79]
Name=Page79
Index=4F
Address=08027800
Size=00000800
Type=111
UFO=111
[Page80]
Name=Page80
Index=50
Address=08028000
Size=00000800
Type=111
UFO=111
[Page81]
Name=Page81
Index=51
Address=08028800
Size=00000800
Type=111
UFO=111
[Page82]
Name=Page82
Index=52
Address=08029000
Size=00000800
Type=111
UFO=111
[Page83]
Name=Page83
Index=53
Address=08029800
Size=00000800
Type=111
UFO=111
[Page84]
Name=Page84
Index=54
Address=0802A000
Size=00000800
Type=111
UFO=111
[Page85]
Name=Page85
Index=55
Address=0802A800
Size=00000800
Type=111
UFO=111
[Page86]
Name=Page86
Index=56
Address=0802B000
Size=00000800
Type=111
UFO=111
[Page87]
Name=Page87
Index=57
Address=0802B800
Size=00000800
Type=111
UFO=111
[Page88]
Name=Page88
Index=58
Address=0802C000
Size=00000800
Type=111
UFO=111
[Page89]
Name=Page89
Index=59
Address=0802C800
Size=00000800
Type=111
UFO=111
[Page90]
Name=Page90
Index=5A
Address=0802D000
Size=00000800
Type=111
UFO=111
[Page91]
Name=Page91
Index=5B
Address=0802D800
Size=00000800
Type=111
UFO=111
[Page92]
Name=Page92
Index=5C
Address=0802E000
Size=00000800
Type=111
UFO=111
[Page93]
Name=Page93
Index=5D
Address=0802E800
Size=00000800
Type=111
UFO=111
[Page94]
Name=Page94
Index=5E
Address=0802F000
Size=00000800
Type=111
UFO=111
[Page95]
Name=Page95
Index=5F
Address=0802F800
Size=00000800
Type=111
UFO=111
[Page96]
Name=Page96
Index=60
Address=08030000
Size=00000800
Type=111
UFO=111
[Page97]
Name=Page97
Index=61
Address=08030800
Size=00000800
Type=111
UFO=111
[Page98]
Name=Page98
Index=62
Address=08031000
Size=00000800
Type=111
UFO=111
[Page99]
Name=Page99
Index=63
Address=08031800
Size=00000800
Type=111
UFO=111
[Page100]
Name=Page100
Index=64
Address=08032000
Size=00000800
Type=111
UFO=111
[Page101]
Name=Page101
Index=65
Address=08032800
Size=00000800
Type=111
UFO=111
[Page102]
Name=Page102
Index=66
Address=08033000
Size=00000800
Type=111
UFO=111
[Page103]
Name=Page103
Index=67
Address=08033800
Size=00000800
Type=111
UFO=111
[Page104]
Name=Page104
Index=68
Address=08034000
Size=00000800
Type=111
UFO=111
[Page105]
Name=Page105
Index=69
Address=08034800
Size=00000800
Type=111
UFO=111
[Page106]
Name=Page106
Index=6A
Address=08035000
Size=00000800
Type=111
UFO=111
[Page107]
Name=Page107
Index=6B
Address=08035800
Size=00000800
Type=111
UFO=111
[Page108]
Name=Page108
Index=6C
Address=08036000
Size=00000800
Type=111
UFO=111
[Page109]
Name=Page109
Index=6D
Address=08036800
Size=00000800
Type=111
UFO=111
[Page110]
Name=Page110
Index=6E
Address=08037000
Size=00000800
Type=111
UFO=111
[Page111]
Name=Page111
Index=6F
Address=08037800
Size=00000800
Type=111
UFO=111
[Page112]
Name=Page112
Index=70
Address=08038000
Size=00000800
Type=111
UFO=111
[Page113]
Name=Page113
Index=71
Address=08038800
Size=00000800
Type=111
UFO=111
[Page114]
Name=Page114
Index=72
Address=08039000
Size=00000800
Type=111
UFO=111
[Page115]
Name=Page115
Index=73
Address=08039800
Size=00000800
Type=111
UFO=111
[Page116]
Name=Page116
Index=74
Address=0803A000
Size=00000800
Type=111
UFO=111
[Page117]
Name=Page117
Index=75
Address=0803A800
Size=00000800
Type=111
UFO=111
[Page118]
Name=Page118
Index=76
Address=0803B000
Size=00000800
Type=111
UFO=111
[Page119]
Name=Page119
Index=77
Address=0803B800
Size=00000800
Type=111
UFO=111
[Page120]
Name=Page120
Index=78
Address=0803C000
Size=00000800
Type=111
UFO=111
[Page121]
Name=Page121
Index=79
Address=0803C800
Size=00000800
Type=111
UFO=111
[Page122]
Name=Page122
Index=7A
Address=0803D000
Size=00000800
Type=111
UFO=111
[Page123]
Name=Page123
Index=7B
Address=0803D800
Size=00000800
Type=111
UFO=111
[Page124]
Name=Page124
Index=7C
Address=0803E000
Size=00000800
Type=111
UFO=111
[Page125]
Name=Page125
Index=7D
Address=0803E800
Size=00000800
Type=111
UFO=111
[Page126]
Name=Page126
Index=7E
Address=0803F000
Size=00000800
Type=111
UFO=111
[Page127]
Name=Page127
Index=7F
Address=0803F800
Size=00000800
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_High-density_384K.STmap
0,0 → 1,1370
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_High-density_384K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_High-density_384K
PID=0414
FlashSize=0180 ;;ADDR_FLASH_SIZE=1FFFF7E0;
RAMSize=0040 ;;ADDR_RAM_SIZE =1FFFF7E2;
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector=2
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000800
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000800
Size=00000800
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08001000
Size=00000800
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08001800
Size=00000800
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08002000
Size=00000800
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08002800
Size=00000800
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08003000
Size=00000800
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08003800
Size=00000800
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08004000
Size=00000800
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08004800
Size=00000800
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08005000
Size=00000800
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08005800
Size=00000800
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08006000
Size=00000800
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08006800
Size=00000800
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08007000
Size=00000800
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08007800
Size=00000800
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08008000
Size=00000800
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08008800
Size=00000800
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08009000
Size=00000800
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08009800
Size=00000800
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=0800A000
Size=00000800
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=0800A800
Size=00000800
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=0800B000
Size=00000800
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=0800B800
Size=00000800
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=0800C000
Size=00000800
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=0800C800
Size=00000800
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=0800D000
Size=00000800
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=0800D800
Size=00000800
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=0800E000
Size=00000800
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=0800E800
Size=00000800
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=0800F000
Size=00000800
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=0800F800
Size=00000800
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08010000
Size=00000800
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08010800
Size=00000800
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08011000
Size=00000800
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08011800
Size=00000800
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08012000
Size=00000800
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08012800
Size=00000800
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08013000
Size=00000800
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08013800
Size=00000800
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=08014000
Size=00000800
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=08014800
Size=00000800
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=08015000
Size=00000800
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=08015800
Size=00000800
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=08016000
Size=00000800
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=08016800
Size=00000800
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=08017000
Size=00000800
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=08017800
Size=00000800
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=08018000
Size=00000800
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=08018800
Size=00000800
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=08019000
Size=00000800
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=08019800
Size=00000800
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0801A000
Size=00000800
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0801A800
Size=00000800
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0801B000
Size=00000800
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0801B800
Size=00000800
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0801C000
Size=00000800
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0801C800
Size=00000800
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0801D000
Size=00000800
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0801D800
Size=00000800
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0801E000
Size=00000800
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0801E800
Size=00000800
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0801F000
Size=00000800
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0801F800
Size=00000800
Type=111
UFO=111
[Page64]
Name=Page64
Index=40
Address=08020000
Size=00000800
Type=111
UFO=111
[Page65]
Name=Page65
Index=41
Address=08020800
Size=00000800
Type=111
UFO=111
[Page66]
Name=Page66
Index=42
Address=08021000
Size=00000800
Type=111
UFO=111
[Page67]
Name=Page67
Index=43
Address=08021800
Size=00000800
Type=111
UFO=111
[Page68]
Name=Page68
Index=44
Address=08022000
Size=00000800
Type=111
UFO=111
[Page69]
Name=Page69
Index=45
Address=08022800
Size=00000800
Type=111
UFO=111
[Page70]
Name=Page70
Index=46
Address=08023000
Size=00000800
Type=111
UFO=111
[Page71]
Name=Page71
Index=47
Address=08023800
Size=00000800
Type=111
UFO=111
[Page72]
Name=Page72
Index=48
Address=08024000
Size=00000800
Type=111
UFO=111
[Page73]
Name=Page73
Index=49
Address=08024800
Size=00000800
Type=111
UFO=111
[Page74]
Name=Page74
Index=4A
Address=08025000
Size=00000800
Type=111
UFO=111
[Page75]
Name=Page75
Index=4B
Address=08025800
Size=00000800
Type=111
UFO=111
[Page76]
Name=Page76
Index=4C
Address=08026000
Size=00000800
Type=111
UFO=111
[Page77]
Name=Page77
Index=4D
Address=08026800
Size=00000800
Type=111
UFO=111
[Page78]
Name=Page78
Index=4E
Address=08027000
Size=00000800
Type=111
UFO=111
[Page79]
Name=Page79
Index=4F
Address=08027800
Size=00000800
Type=111
UFO=111
[Page80]
Name=Page80
Index=50
Address=08028000
Size=00000800
Type=111
UFO=111
[Page81]
Name=Page81
Index=51
Address=08028800
Size=00000800
Type=111
UFO=111
[Page82]
Name=Page82
Index=52
Address=08029000
Size=00000800
Type=111
UFO=111
[Page83]
Name=Page83
Index=53
Address=08029800
Size=00000800
Type=111
UFO=111
[Page84]
Name=Page84
Index=54
Address=0802A000
Size=00000800
Type=111
UFO=111
[Page85]
Name=Page85
Index=55
Address=0802A800
Size=00000800
Type=111
UFO=111
[Page86]
Name=Page86
Index=56
Address=0802B000
Size=00000800
Type=111
UFO=111
[Page87]
Name=Page87
Index=57
Address=0802B800
Size=00000800
Type=111
UFO=111
[Page88]
Name=Page88
Index=58
Address=0802C000
Size=00000800
Type=111
UFO=111
[Page89]
Name=Page89
Index=59
Address=0802C800
Size=00000800
Type=111
UFO=111
[Page90]
Name=Page90
Index=5A
Address=0802D000
Size=00000800
Type=111
UFO=111
[Page91]
Name=Page91
Index=5B
Address=0802D800
Size=00000800
Type=111
UFO=111
[Page92]
Name=Page92
Index=5C
Address=0802E000
Size=00000800
Type=111
UFO=111
[Page93]
Name=Page93
Index=5D
Address=0802E800
Size=00000800
Type=111
UFO=111
[Page94]
Name=Page94
Index=5E
Address=0802F000
Size=00000800
Type=111
UFO=111
[Page95]
Name=Page95
Index=5F
Address=0802F800
Size=00000800
Type=111
UFO=111
[Page96]
Name=Page96
Index=60
Address=08030000
Size=00000800
Type=111
UFO=111
[Page97]
Name=Page97
Index=61
Address=08030800
Size=00000800
Type=111
UFO=111
[Page98]
Name=Page98
Index=62
Address=08031000
Size=00000800
Type=111
UFO=111
[Page99]
Name=Page99
Index=63
Address=08031800
Size=00000800
Type=111
UFO=111
[Page100]
Name=Page100
Index=64
Address=08032000
Size=00000800
Type=111
UFO=111
[Page101]
Name=Page101
Index=65
Address=08032800
Size=00000800
Type=111
UFO=111
[Page102]
Name=Page102
Index=66
Address=08033000
Size=00000800
Type=111
UFO=111
[Page103]
Name=Page103
Index=67
Address=08033800
Size=00000800
Type=111
UFO=111
[Page104]
Name=Page104
Index=68
Address=08034000
Size=00000800
Type=111
UFO=111
[Page105]
Name=Page105
Index=69
Address=08034800
Size=00000800
Type=111
UFO=111
[Page106]
Name=Page106
Index=6A
Address=08035000
Size=00000800
Type=111
UFO=111
[Page107]
Name=Page107
Index=6B
Address=08035800
Size=00000800
Type=111
UFO=111
[Page108]
Name=Page108
Index=6C
Address=08036000
Size=00000800
Type=111
UFO=111
[Page109]
Name=Page109
Index=6D
Address=08036800
Size=00000800
Type=111
UFO=111
[Page110]
Name=Page110
Index=6E
Address=08037000
Size=00000800
Type=111
UFO=111
[Page111]
Name=Page111
Index=6F
Address=08037800
Size=00000800
Type=111
UFO=111
[Page112]
Name=Page112
Index=70
Address=08038000
Size=00000800
Type=111
UFO=111
[Page113]
Name=Page113
Index=71
Address=08038800
Size=00000800
Type=111
UFO=111
[Page114]
Name=Page114
Index=72
Address=08039000
Size=00000800
Type=111
UFO=111
[Page115]
Name=Page115
Index=73
Address=08039800
Size=00000800
Type=111
UFO=111
[Page116]
Name=Page116
Index=74
Address=0803A000
Size=00000800
Type=111
UFO=111
[Page117]
Name=Page117
Index=75
Address=0803A800
Size=00000800
Type=111
UFO=111
[Page118]
Name=Page118
Index=76
Address=0803B000
Size=00000800
Type=111
UFO=111
[Page119]
Name=Page119
Index=77
Address=0803B800
Size=00000800
Type=111
UFO=111
[Page120]
Name=Page120
Index=78
Address=0803C000
Size=00000800
Type=111
UFO=111
[Page121]
Name=Page121
Index=79
Address=0803C800
Size=00000800
Type=111
UFO=111
[Page122]
Name=Page122
Index=7A
Address=0803D000
Size=00000800
Type=111
UFO=111
[Page123]
Name=Page123
Index=7B
Address=0803D800
Size=00000800
Type=111
UFO=111
[Page124]
Name=Page124
Index=7C
Address=0803E000
Size=00000800
Type=111
UFO=111
[Page125]
Name=Page125
Index=7D
Address=0803E800
Size=00000800
Type=111
UFO=111
[Page126]
Name=Page126
Index=7E
Address=0803F000
Size=00000800
Type=111
UFO=111
[Page127]
Name=Page127
Index=7F
Address=0803F800
Size=00000800
Type=111
UFO=111
[Page128]
Name=Page128
Index=80
Address=08040000
Size=00000800
Type=111
UFO=111
[Page129]
Name=Page129
Index=81
Address=08040800
Size=00000800
Type=111
UFO=111
[Page130]
Name=Page130
Index=82
Address=08041000
Size=00000800
Type=111
UFO=111
[Page131]
Name=Page131
Index=83
Address=08041800
Size=00000800
Type=111
UFO=111
[Page132]
Name=Page132
Index=84
Address=08042000
Size=00000800
Type=111
UFO=111
[Page133]
Name=Page133
Index=85
Address=08042800
Size=00000800
Type=111
UFO=111
[Page134]
Name=Page134
Index=86
Address=08043000
Size=00000800
Type=111
UFO=111
[Page135]
Name=Page135
Index=87
Address=08043800
Size=00000800
Type=111
UFO=111
[Page136]
Name=Page136
Index=88
Address=08044000
Size=00000800
Type=111
UFO=111
[Page137]
Name=Page137
Index=89
Address=08044800
Size=00000800
Type=111
UFO=111
[Page138]
Name=Page138
Index=8A
Address=08045000
Size=00000800
Type=111
UFO=111
[Page139]
Name=Page139
Index=8B
Address=08045800
Size=00000800
Type=111
UFO=111
[Page140]
Name=Page140
Index=8C
Address=08046000
Size=00000800
Type=111
UFO=111
[Page141]
Name=Page141
Index=8D
Address=08046800
Size=00000800
Type=111
UFO=111
[Page142]
Name=Page142
Index=8E
Address=08047000
Size=00000800
Type=111
UFO=111
[Page143]
Name=Page143
Index=8F
Address=08047800
Size=00000800
Type=111
UFO=111
[Page144]
Name=Page144
Index=90
Address=08048000
Size=00000800
Type=111
UFO=111
[Page145]
Name=Page145
Index=91
Address=08048800
Size=00000800
Type=111
UFO=111
[Page146]
Name=Page146
Index=92
Address=08049000
Size=00000800
Type=111
UFO=111
[Page147]
Name=Page147
Index=93
Address=08049800
Size=00000800
Type=111
UFO=111
[Page148]
Name=Page148
Index=94
Address=0804A000
Size=00000800
Type=111
UFO=111
[Page149]
Name=Page149
Index=95
Address=0804A800
Size=00000800
Type=111
UFO=111
[Page150]
Name=Page150
Index=96
Address=0804B000
Size=00000800
Type=111
UFO=111
[Page151]
Name=Page151
Index=97
Address=0804B800
Size=00000800
Type=111
UFO=111
[Page152]
Name=Page152
Index=98
Address=0804C000
Size=00000800
Type=111
UFO=111
[Page153]
Name=Page153
Index=99
Address=0804C800
Size=00000800
Type=111
UFO=111
[Page154]
Name=Page154
Index=9A
Address=0804D000
Size=00000800
Type=111
UFO=111
[Page155]
Name=Page155
Index=9B
Address=0804D800
Size=00000800
Type=111
UFO=111
[Page156]
Name=Page156
Index=9C
Address=0804E000
Size=00000800
Type=111
UFO=111
[Page157]
Name=Page157
Index=9D
Address=0804E800
Size=00000800
Type=111
UFO=111
[Page158]
Name=Page158
Index=9E
Address=0804F000
Size=00000800
Type=111
UFO=111
[Page159]
Name=Page159
Index=9F
Address=0804F800
Size=00000800
Type=111
UFO=111
[Page160]
Name=Page160
Index=A0
Address=08050000
Size=00000800
Type=111
UFO=111
[Page161]
Name=Page161
Index=A1
Address=08050800
Size=00000800
Type=111
UFO=111
[Page162]
Name=Page162
Index=A2
Address=08051000
Size=00000800
Type=111
UFO=111
[Page163]
Name=Page163
Index=A3
Address=08051800
Size=00000800
Type=111
UFO=111
[Page164]
Name=Page164
Index=A4
Address=08052000
Size=00000800
Type=111
UFO=111
[Page165]
Name=Page165
Index=A5
Address=08052800
Size=00000800
Type=111
UFO=111
[Page166]
Name=Page166
Index=A6
Address=08053000
Size=00000800
Type=111
UFO=111
[Page167]
Name=Page167
Index=A7
Address=08053800
Size=00000800
Type=111
UFO=111
[Page168]
Name=Page168
Index=A8
Address=08054000
Size=00000800
Type=111
UFO=111
[Page169]
Name=Page169
Index=A9
Address=08054800
Size=00000800
Type=111
UFO=111
[Page170]
Name=Page170
Index=AA
Address=08055000
Size=00000800
Type=111
UFO=111
[Page171]
Name=Page171
Index=AB
Address=08055800
Size=00000800
Type=111
UFO=111
[Page172]
Name=Page172
Index=AC
Address=08056000
Size=00000800
Type=111
UFO=111
[Page173]
Name=Page173
Index=AD
Address=08056800
Size=00000800
Type=111
UFO=111
[Page174]
Name=Page174
Index=AE
Address=08057000
Size=00000800
Type=111
UFO=111
[Page175]
Name=Page175
Index=AF
Address=08057800
Size=00000800
Type=111
UFO=111
[Page176]
Name=Page176
Index=B0
Address=08058000
Size=00000800
Type=111
UFO=111
[Page177]
Name=Page177
Index=B1
Address=08058800
Size=00000800
Type=111
UFO=111
[Page178]
Name=Page178
Index=B2
Address=08059000
Size=00000800
Type=111
UFO=111
[Page179]
Name=Page179
Index=B3
Address=08059800
Size=00000800
Type=111
UFO=111
[Page180]
Name=Page180
Index=B4
Address=0805A000
Size=00000800
Type=111
UFO=111
[Page181]
Name=Page181
Index=B5
Address=0805A800
Size=00000800
Type=111
UFO=111
[Page182]
Name=Page182
Index=B6
Address=0805B000
Size=00000800
Type=111
UFO=111
[Page183]
Name=Page183
Index=B7
Address=0805B800
Size=00000800
Type=111
UFO=111
[Page184]
Name=Page184
Index=B8
Address=0805C000
Size=00000800
Type=111
UFO=111
[Page185]
Name=Page185
Index=B9
Address=0805C800
Size=00000800
Type=111
UFO=111
[Page186]
Name=Page186
Index=BA
Address=0805D000
Size=00000800
Type=111
UFO=111
[Page187]
Name=Page187
Index=BB
Address=0805D800
Size=00000800
Type=111
UFO=111
[Page188]
Name=Page188
Index=BC
Address=0805E000
Size=00000800
Type=111
UFO=111
[Page189]
Name=Page189
Index=BD
Address=0805E800
Size=00000800
Type=111
UFO=111
[Page190]
Name=Page190
Index=BE
Address=0805F000
Size=00000800
Type=111
UFO=111
[Page191]
Name=Page191
Index=BF
Address=0805F800
Size=00000800
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_High-density_512K.STmap
0,0 → 1,1818
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_High-density_512K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_High-density_512K
PID=0414
FlashSize=0200 ;;ADDR_FLASH_SIZE=1FFFF7E0;
RAMSize=0040 ;;ADDR_RAM_SIZE =1FFFF7E2;
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector=2
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000800
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000800
Size=00000800
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08001000
Size=00000800
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08001800
Size=00000800
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08002000
Size=00000800
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08002800
Size=00000800
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08003000
Size=00000800
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08003800
Size=00000800
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08004000
Size=00000800
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08004800
Size=00000800
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08005000
Size=00000800
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08005800
Size=00000800
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08006000
Size=00000800
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08006800
Size=00000800
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08007000
Size=00000800
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08007800
Size=00000800
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08008000
Size=00000800
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08008800
Size=00000800
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08009000
Size=00000800
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08009800
Size=00000800
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=0800A000
Size=00000800
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=0800A800
Size=00000800
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=0800B000
Size=00000800
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=0800B800
Size=00000800
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=0800C000
Size=00000800
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=0800C800
Size=00000800
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=0800D000
Size=00000800
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=0800D800
Size=00000800
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=0800E000
Size=00000800
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=0800E800
Size=00000800
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=0800F000
Size=00000800
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=0800F800
Size=00000800
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08010000
Size=00000800
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08010800
Size=00000800
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08011000
Size=00000800
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08011800
Size=00000800
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08012000
Size=00000800
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08012800
Size=00000800
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08013000
Size=00000800
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08013800
Size=00000800
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=08014000
Size=00000800
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=08014800
Size=00000800
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=08015000
Size=00000800
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=08015800
Size=00000800
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=08016000
Size=00000800
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=08016800
Size=00000800
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=08017000
Size=00000800
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=08017800
Size=00000800
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=08018000
Size=00000800
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=08018800
Size=00000800
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=08019000
Size=00000800
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=08019800
Size=00000800
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0801A000
Size=00000800
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0801A800
Size=00000800
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0801B000
Size=00000800
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0801B800
Size=00000800
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0801C000
Size=00000800
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0801C800
Size=00000800
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0801D000
Size=00000800
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0801D800
Size=00000800
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0801E000
Size=00000800
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0801E800
Size=00000800
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0801F000
Size=00000800
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0801F800
Size=00000800
Type=111
UFO=111
[Page64]
Name=Page64
Index=40
Address=08020000
Size=00000800
Type=111
UFO=111
[Page65]
Name=Page65
Index=41
Address=08020800
Size=00000800
Type=111
UFO=111
[Page66]
Name=Page66
Index=42
Address=08021000
Size=00000800
Type=111
UFO=111
[Page67]
Name=Page67
Index=43
Address=08021800
Size=00000800
Type=111
UFO=111
[Page68]
Name=Page68
Index=44
Address=08022000
Size=00000800
Type=111
UFO=111
[Page69]
Name=Page69
Index=45
Address=08022800
Size=00000800
Type=111
UFO=111
[Page70]
Name=Page70
Index=46
Address=08023000
Size=00000800
Type=111
UFO=111
[Page71]
Name=Page71
Index=47
Address=08023800
Size=00000800
Type=111
UFO=111
[Page72]
Name=Page72
Index=48
Address=08024000
Size=00000800
Type=111
UFO=111
[Page73]
Name=Page73
Index=49
Address=08024800
Size=00000800
Type=111
UFO=111
[Page74]
Name=Page74
Index=4A
Address=08025000
Size=00000800
Type=111
UFO=111
[Page75]
Name=Page75
Index=4B
Address=08025800
Size=00000800
Type=111
UFO=111
[Page76]
Name=Page76
Index=4C
Address=08026000
Size=00000800
Type=111
UFO=111
[Page77]
Name=Page77
Index=4D
Address=08026800
Size=00000800
Type=111
UFO=111
[Page78]
Name=Page78
Index=4E
Address=08027000
Size=00000800
Type=111
UFO=111
[Page79]
Name=Page79
Index=4F
Address=08027800
Size=00000800
Type=111
UFO=111
[Page80]
Name=Page80
Index=50
Address=08028000
Size=00000800
Type=111
UFO=111
[Page81]
Name=Page81
Index=51
Address=08028800
Size=00000800
Type=111
UFO=111
[Page82]
Name=Page82
Index=52
Address=08029000
Size=00000800
Type=111
UFO=111
[Page83]
Name=Page83
Index=53
Address=08029800
Size=00000800
Type=111
UFO=111
[Page84]
Name=Page84
Index=54
Address=0802A000
Size=00000800
Type=111
UFO=111
[Page85]
Name=Page85
Index=55
Address=0802A800
Size=00000800
Type=111
UFO=111
[Page86]
Name=Page86
Index=56
Address=0802B000
Size=00000800
Type=111
UFO=111
[Page87]
Name=Page87
Index=57
Address=0802B800
Size=00000800
Type=111
UFO=111
[Page88]
Name=Page88
Index=58
Address=0802C000
Size=00000800
Type=111
UFO=111
[Page89]
Name=Page89
Index=59
Address=0802C800
Size=00000800
Type=111
UFO=111
[Page90]
Name=Page90
Index=5A
Address=0802D000
Size=00000800
Type=111
UFO=111
[Page91]
Name=Page91
Index=5B
Address=0802D800
Size=00000800
Type=111
UFO=111
[Page92]
Name=Page92
Index=5C
Address=0802E000
Size=00000800
Type=111
UFO=111
[Page93]
Name=Page93
Index=5D
Address=0802E800
Size=00000800
Type=111
UFO=111
[Page94]
Name=Page94
Index=5E
Address=0802F000
Size=00000800
Type=111
UFO=111
[Page95]
Name=Page95
Index=5F
Address=0802F800
Size=00000800
Type=111
UFO=111
[Page96]
Name=Page96
Index=60
Address=08030000
Size=00000800
Type=111
UFO=111
[Page97]
Name=Page97
Index=61
Address=08030800
Size=00000800
Type=111
UFO=111
[Page98]
Name=Page98
Index=62
Address=08031000
Size=00000800
Type=111
UFO=111
[Page99]
Name=Page99
Index=63
Address=08031800
Size=00000800
Type=111
UFO=111
[Page100]
Name=Page100
Index=64
Address=08032000
Size=00000800
Type=111
UFO=111
[Page101]
Name=Page101
Index=65
Address=08032800
Size=00000800
Type=111
UFO=111
[Page102]
Name=Page102
Index=66
Address=08033000
Size=00000800
Type=111
UFO=111
[Page103]
Name=Page103
Index=67
Address=08033800
Size=00000800
Type=111
UFO=111
[Page104]
Name=Page104
Index=68
Address=08034000
Size=00000800
Type=111
UFO=111
[Page105]
Name=Page105
Index=69
Address=08034800
Size=00000800
Type=111
UFO=111
[Page106]
Name=Page106
Index=6A
Address=08035000
Size=00000800
Type=111
UFO=111
[Page107]
Name=Page107
Index=6B
Address=08035800
Size=00000800
Type=111
UFO=111
[Page108]
Name=Page108
Index=6C
Address=08036000
Size=00000800
Type=111
UFO=111
[Page109]
Name=Page109
Index=6D
Address=08036800
Size=00000800
Type=111
UFO=111
[Page110]
Name=Page110
Index=6E
Address=08037000
Size=00000800
Type=111
UFO=111
[Page111]
Name=Page111
Index=6F
Address=08037800
Size=00000800
Type=111
UFO=111
[Page112]
Name=Page112
Index=70
Address=08038000
Size=00000800
Type=111
UFO=111
[Page113]
Name=Page113
Index=71
Address=08038800
Size=00000800
Type=111
UFO=111
[Page114]
Name=Page114
Index=72
Address=08039000
Size=00000800
Type=111
UFO=111
[Page115]
Name=Page115
Index=73
Address=08039800
Size=00000800
Type=111
UFO=111
[Page116]
Name=Page116
Index=74
Address=0803A000
Size=00000800
Type=111
UFO=111
[Page117]
Name=Page117
Index=75
Address=0803A800
Size=00000800
Type=111
UFO=111
[Page118]
Name=Page118
Index=76
Address=0803B000
Size=00000800
Type=111
UFO=111
[Page119]
Name=Page119
Index=77
Address=0803B800
Size=00000800
Type=111
UFO=111
[Page120]
Name=Page120
Index=78
Address=0803C000
Size=00000800
Type=111
UFO=111
[Page121]
Name=Page121
Index=79
Address=0803C800
Size=00000800
Type=111
UFO=111
[Page122]
Name=Page122
Index=7A
Address=0803D000
Size=00000800
Type=111
UFO=111
[Page123]
Name=Page123
Index=7B
Address=0803D800
Size=00000800
Type=111
UFO=111
[Page124]
Name=Page124
Index=7C
Address=0803E000
Size=00000800
Type=111
UFO=111
[Page125]
Name=Page125
Index=7D
Address=0803E800
Size=00000800
Type=111
UFO=111
[Page126]
Name=Page126
Index=7E
Address=0803F000
Size=00000800
Type=111
UFO=111
[Page127]
Name=Page127
Index=7F
Address=0803F800
Size=00000800
Type=111
UFO=111
[Page128]
Name=Page128
Index=80
Address=08040000
Size=00000800
Type=111
UFO=111
[Page129]
Name=Page129
Index=81
Address=08040800
Size=00000800
Type=111
UFO=111
[Page130]
Name=Page130
Index=82
Address=08041000
Size=00000800
Type=111
UFO=111
[Page131]
Name=Page131
Index=83
Address=08041800
Size=00000800
Type=111
UFO=111
[Page132]
Name=Page132
Index=84
Address=08042000
Size=00000800
Type=111
UFO=111
[Page133]
Name=Page133
Index=85
Address=08042800
Size=00000800
Type=111
UFO=111
[Page134]
Name=Page134
Index=86
Address=08043000
Size=00000800
Type=111
UFO=111
[Page135]
Name=Page135
Index=87
Address=08043800
Size=00000800
Type=111
UFO=111
[Page136]
Name=Page136
Index=88
Address=08044000
Size=00000800
Type=111
UFO=111
[Page137]
Name=Page137
Index=89
Address=08044800
Size=00000800
Type=111
UFO=111
[Page138]
Name=Page138
Index=8A
Address=08045000
Size=00000800
Type=111
UFO=111
[Page139]
Name=Page139
Index=8B
Address=08045800
Size=00000800
Type=111
UFO=111
[Page140]
Name=Page140
Index=8C
Address=08046000
Size=00000800
Type=111
UFO=111
[Page141]
Name=Page141
Index=8D
Address=08046800
Size=00000800
Type=111
UFO=111
[Page142]
Name=Page142
Index=8E
Address=08047000
Size=00000800
Type=111
UFO=111
[Page143]
Name=Page143
Index=8F
Address=08047800
Size=00000800
Type=111
UFO=111
[Page144]
Name=Page144
Index=90
Address=08048000
Size=00000800
Type=111
UFO=111
[Page145]
Name=Page145
Index=91
Address=08048800
Size=00000800
Type=111
UFO=111
[Page146]
Name=Page146
Index=92
Address=08049000
Size=00000800
Type=111
UFO=111
[Page147]
Name=Page147
Index=93
Address=08049800
Size=00000800
Type=111
UFO=111
[Page148]
Name=Page148
Index=94
Address=0804A000
Size=00000800
Type=111
UFO=111
[Page149]
Name=Page149
Index=95
Address=0804A800
Size=00000800
Type=111
UFO=111
[Page150]
Name=Page150
Index=96
Address=0804B000
Size=00000800
Type=111
UFO=111
[Page151]
Name=Page151
Index=97
Address=0804B800
Size=00000800
Type=111
UFO=111
[Page152]
Name=Page152
Index=98
Address=0804C000
Size=00000800
Type=111
UFO=111
[Page153]
Name=Page153
Index=99
Address=0804C800
Size=00000800
Type=111
UFO=111
[Page154]
Name=Page154
Index=9A
Address=0804D000
Size=00000800
Type=111
UFO=111
[Page155]
Name=Page155
Index=9B
Address=0804D800
Size=00000800
Type=111
UFO=111
[Page156]
Name=Page156
Index=9C
Address=0804E000
Size=00000800
Type=111
UFO=111
[Page157]
Name=Page157
Index=9D
Address=0804E800
Size=00000800
Type=111
UFO=111
[Page158]
Name=Page158
Index=9E
Address=0804F000
Size=00000800
Type=111
UFO=111
[Page159]
Name=Page159
Index=9F
Address=0804F800
Size=00000800
Type=111
UFO=111
[Page160]
Name=Page160
Index=A0
Address=08050000
Size=00000800
Type=111
UFO=111
[Page161]
Name=Page161
Index=A1
Address=08050800
Size=00000800
Type=111
UFO=111
[Page162]
Name=Page162
Index=A2
Address=08051000
Size=00000800
Type=111
UFO=111
[Page163]
Name=Page163
Index=A3
Address=08051800
Size=00000800
Type=111
UFO=111
[Page164]
Name=Page164
Index=A4
Address=08052000
Size=00000800
Type=111
UFO=111
[Page165]
Name=Page165
Index=A5
Address=08052800
Size=00000800
Type=111
UFO=111
[Page166]
Name=Page166
Index=A6
Address=08053000
Size=00000800
Type=111
UFO=111
[Page167]
Name=Page167
Index=A7
Address=08053800
Size=00000800
Type=111
UFO=111
[Page168]
Name=Page168
Index=A8
Address=08054000
Size=00000800
Type=111
UFO=111
[Page169]
Name=Page169
Index=A9
Address=08054800
Size=00000800
Type=111
UFO=111
[Page170]
Name=Page170
Index=AA
Address=08055000
Size=00000800
Type=111
UFO=111
[Page171]
Name=Page171
Index=AB
Address=08055800
Size=00000800
Type=111
UFO=111
[Page172]
Name=Page172
Index=AC
Address=08056000
Size=00000800
Type=111
UFO=111
[Page173]
Name=Page173
Index=AD
Address=08056800
Size=00000800
Type=111
UFO=111
[Page174]
Name=Page174
Index=AE
Address=08057000
Size=00000800
Type=111
UFO=111
[Page175]
Name=Page175
Index=AF
Address=08057800
Size=00000800
Type=111
UFO=111
[Page176]
Name=Page176
Index=B0
Address=08058000
Size=00000800
Type=111
UFO=111
[Page177]
Name=Page177
Index=B1
Address=08058800
Size=00000800
Type=111
UFO=111
[Page178]
Name=Page178
Index=B2
Address=08059000
Size=00000800
Type=111
UFO=111
[Page179]
Name=Page179
Index=B3
Address=08059800
Size=00000800
Type=111
UFO=111
[Page180]
Name=Page180
Index=B4
Address=0805A000
Size=00000800
Type=111
UFO=111
[Page181]
Name=Page181
Index=B5
Address=0805A800
Size=00000800
Type=111
UFO=111
[Page182]
Name=Page182
Index=B6
Address=0805B000
Size=00000800
Type=111
UFO=111
[Page183]
Name=Page183
Index=B7
Address=0805B800
Size=00000800
Type=111
UFO=111
[Page184]
Name=Page184
Index=B8
Address=0805C000
Size=00000800
Type=111
UFO=111
[Page185]
Name=Page185
Index=B9
Address=0805C800
Size=00000800
Type=111
UFO=111
[Page186]
Name=Page186
Index=BA
Address=0805D000
Size=00000800
Type=111
UFO=111
[Page187]
Name=Page187
Index=BB
Address=0805D800
Size=00000800
Type=111
UFO=111
[Page188]
Name=Page188
Index=BC
Address=0805E000
Size=00000800
Type=111
UFO=111
[Page189]
Name=Page189
Index=BD
Address=0805E800
Size=00000800
Type=111
UFO=111
[Page190]
Name=Page190
Index=BE
Address=0805F000
Size=00000800
Type=111
UFO=111
[Page191]
Name=Page191
Index=BF
Address=0805F800
Size=00000800
Type=111
UFO=111
[Page192]
Name=Page192
Index=C0
Address=08060000
Size=00000800
Type=111
UFO=111
[Page193]
Name=Page193
Index=C1
Address=08060800
Size=00000800
Type=111
UFO=111
[Page194]
Name=Page194
Index=C2
Address=08061000
Size=00000800
Type=111
UFO=111
[Page195]
Name=Page195
Index=C3
Address=08061800
Size=00000800
Type=111
UFO=111
[Page196]
Name=Page196
Index=C4
Address=08062000
Size=00000800
Type=111
UFO=111
[Page197]
Name=Page197
Index=C5
Address=08062800
Size=00000800
Type=111
UFO=111
[Page198]
Name=Page198
Index=C6
Address=08063000
Size=00000800
Type=111
UFO=111
[Page199]
Name=Page199
Index=C7
Address=08063800
Size=00000800
Type=111
UFO=111
[Page200]
Name=Page200
Index=C8
Address=08064000
Size=00000800
Type=111
UFO=111
[Page201]
Name=Page201
Index=C9
Address=08064800
Size=00000800
Type=111
UFO=111
[Page202]
Name=Page202
Index=CA
Address=08065000
Size=00000800
Type=111
UFO=111
[Page203]
Name=Page203
Index=CB
Address=08065800
Size=00000800
Type=111
UFO=111
[Page204]
Name=Page204
Index=CC
Address=08066000
Size=00000800
Type=111
UFO=111
[Page205]
Name=Page205
Index=CD
Address=08066800
Size=00000800
Type=111
UFO=111
[Page206]
Name=Page206
Index=CE
Address=08067000
Size=00000800
Type=111
UFO=111
[Page207]
Name=Page207
Index=CF
Address=08067800
Size=00000800
Type=111
UFO=111
[Page208]
Name=Page208
Index=D0
Address=08068000
Size=00000800
Type=111
UFO=111
[Page209]
Name=Page209
Index=D1
Address=08068800
Size=00000800
Type=111
UFO=111
[Page210]
Name=Page210
Index=D2
Address=08069000
Size=00000800
Type=111
UFO=111
[Page211]
Name=Page211
Index=D3
Address=08069800
Size=00000800
Type=111
UFO=111
[Page212]
Name=Page212
Index=D4
Address=0806A000
Size=00000800
Type=111
UFO=111
[Page213]
Name=Page213
Index=D5
Address=0806A800
Size=00000800
Type=111
UFO=111
[Page214]
Name=Page214
Index=D6
Address=0806B000
Size=00000800
Type=111
UFO=111
[Page215]
Name=Page215
Index=D7
Address=0806B800
Size=00000800
Type=111
UFO=111
[Page216]
Name=Page216
Index=D8
Address=0806C000
Size=00000800
Type=111
UFO=111
[Page217]
Name=Page217
Index=D9
Address=0806C800
Size=00000800
Type=111
UFO=111
[Page218]
Name=Page218
Index=DA
Address=0806D000
Size=00000800
Type=111
UFO=111
[Page219]
Name=Page219
Index=DB
Address=0806D800
Size=00000800
Type=111
UFO=111
[Page220]
Name=Page220
Index=DC
Address=0806E000
Size=00000800
Type=111
UFO=111
[Page221]
Name=Page221
Index=DD
Address=0806E800
Size=00000800
Type=111
UFO=111
[Page222]
Name=Page222
Index=DE
Address=0806F000
Size=00000800
Type=111
UFO=111
[Page223]
Name=Page223
Index=DF
Address=0806F800
Size=00000800
Type=111
UFO=111
[Page224]
Name=Page224
Index=E0
Address=08070000
Size=00000800
Type=111
UFO=111
[Page225]
Name=Page225
Index=E1
Address=08070800
Size=00000800
Type=111
UFO=111
[Page226]
Name=Page226
Index=E2
Address=08071000
Size=00000800
Type=111
UFO=111
[Page227]
Name=Page227
Index=E3
Address=08071800
Size=00000800
Type=111
UFO=111
[Page228]
Name=Page228
Index=E4
Address=08072000
Size=00000800
Type=111
UFO=111
[Page229]
Name=Page229
Index=E5
Address=08072800
Size=00000800
Type=111
UFO=111
[Page230]
Name=Page230
Index=E6
Address=08073000
Size=00000800
Type=111
UFO=111
[Page231]
Name=Page231
Index=E7
Address=08073800
Size=00000800
Type=111
UFO=111
[Page232]
Name=Page232
Index=E8
Address=08074000
Size=00000800
Type=111
UFO=111
[Page233]
Name=Page233
Index=E9
Address=08074800
Size=00000800
Type=111
UFO=111
[Page234]
Name=Page234
Index=EA
Address=08075000
Size=00000800
Type=111
UFO=111
[Page235]
Name=Page235
Index=EB
Address=08075800
Size=00000800
Type=111
UFO=111
[Page236]
Name=Page236
Index=EC
Address=08076000
Size=00000800
Type=111
UFO=111
[Page237]
Name=Page237
Index=ED
Address=08076800
Size=00000800
Type=111
UFO=111
[Page238]
Name=Page238
Index=EE
Address=08077000
Size=00000800
Type=111
UFO=111
[Page239]
Name=Page239
Index=EF
Address=08077800
Size=00000800
Type=111
UFO=111
[Page240]
Name=Page240
Index=F0
Address=08078000
Size=00000800
Type=111
UFO=111
[Page241]
Name=Page241
Index=F1
Address=08078800
Size=00000800
Type=111
UFO=111
[Page242]
Name=Page242
Index=F2
Address=08079000
Size=00000800
Type=111
UFO=111
[Page243]
Name=Page243
Index=F3
Address=08079800
Size=00000800
Type=111
UFO=111
[Page244]
Name=Page244
Index=F4
Address=0807A000
Size=00000800
Type=111
UFO=111
[Page245]
Name=Page245
Index=F5
Address=0807A800
Size=00000800
Type=111
UFO=111
[Page246]
Name=Page246
Index=F6
Address=0807B000
Size=00000800
Type=111
UFO=111
[Page247]
Name=Page247
Index=F7
Address=0807B800
Size=00000800
Type=111
UFO=111
[Page248]
Name=Page248
Index=F8
Address=0807C000
Size=00000800
Type=111
UFO=111
[Page249]
Name=Page249
Index=F9
Address=0807C800
Size=00000800
Type=111
UFO=111
[Page250]
Name=Page250
Index=FA
Address=0807D000
Size=00000800
Type=111
UFO=111
[Page251]
Name=Page251
Index=FB
Address=0807D800
Size=00000800
Type=111
UFO=111
[Page252]
Name=Page252
Index=FC
Address=0807E000
Size=00000800
Type=111
UFO=111
[Page253]
Name=Page253
Index=FD
Address=0807E800
Size=00000800
Type=111
UFO=111
[Page254]
Name=Page254
Index=FE
Address=0807F000
Size=00000800
Type=111
UFO=111
[Page255]
Name=Page255
Index=FF
Address=0807F800
Size=00000800
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_Low-density_16K.STmap
0,0 → 1,140
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_Low-density_16K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_Low-density_16K
PID=0412
FlashSize=0010
RAMSize=0006
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector = 4
family = 1;
 
 
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000400
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000400
Size=00000400
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08000800
Size=00000400
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08000C00
Size=00000400
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08001000
Size=00000400
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08001400
Size=00000400
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08001800
Size=00000400
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08001C00
Size=00000400
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08002000
Size=00000400
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08002400
Size=00000400
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08002800
Size=00000400
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08002C00
Size=00000400
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08003000
Size=00000400
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08003400
Size=00000400
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08003800
Size=00000400
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08003C00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_Low-density_32K.STmap
0,0 → 1,250
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_Low-density_32K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_Low-density_32K
PID=0412
FlashSize=0020
RAMSize=000A
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector = 4
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000400
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000400
Size=00000400
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08000800
Size=00000400
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08000C00
Size=00000400
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08001000
Size=00000400
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08001400
Size=00000400
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08001800
Size=00000400
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08001C00
Size=00000400
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08002000
Size=00000400
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08002400
Size=00000400
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08002800
Size=00000400
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08002C00
Size=00000400
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08003000
Size=00000400
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08003400
Size=00000400
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08003800
Size=00000400
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08003C00
Size=00000400
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08004000
Size=00000400
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08004400
Size=00000400
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08004800
Size=00000400
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08004C00
Size=00000400
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=08005000
Size=00000400
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=08005400
Size=00000400
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=08005800
Size=00000400
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=08005C00
Size=00000400
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=08006000
Size=00000400
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=08006400
Size=00000400
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=08006800
Size=00000400
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=08006C00
Size=00000400
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=08007000
Size=00000400
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=08007400
Size=00000400
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=08007800
Size=00000400
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=08007C00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_Med-density-value_128K.STmap
0,0 → 1,923
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_Med-density-value_128K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_Med-density-value_128K
PID=0420
BID=1FFFF7D6
FlashSize=0080
RAMSize=0008
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector = 4
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000400
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000400
Size=00000400
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08000800
Size=00000400
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08000C00
Size=00000400
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08001000
Size=00000400
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08001400
Size=00000400
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08001800
Size=00000400
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08001C00
Size=00000400
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08002000
Size=00000400
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08002400
Size=00000400
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08002800
Size=00000400
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08002C00
Size=00000400
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08003000
Size=00000400
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08003400
Size=00000400
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08003800
Size=00000400
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08003C00
Size=00000400
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08004000
Size=00000400
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08004400
Size=00000400
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08004800
Size=00000400
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08004C00
Size=00000400
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=08005000
Size=00000400
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=08005400
Size=00000400
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=08005800
Size=00000400
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=08005C00
Size=00000400
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=08006000
Size=00000400
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=08006400
Size=00000400
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=08006800
Size=00000400
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=08006C00
Size=00000400
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=08007000
Size=00000400
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=08007400
Size=00000400
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=08007800
Size=00000400
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=08007C00
Size=00000400
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08008000
Size=00000400
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08008400
Size=00000400
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08008800
Size=00000400
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08008C00
Size=00000400
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08009000
Size=00000400
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08009400
Size=00000400
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08009800
Size=00000400
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08009C00
Size=00000400
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=0800A000
Size=00000400
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=0800A400
Size=00000400
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=0800A800
Size=00000400
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=0800AC00
Size=00000400
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=0800B000
Size=00000400
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=0800B400
Size=00000400
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=0800B800
Size=00000400
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=0800BC00
Size=00000400
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=0800C000
Size=00000400
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=0800C400
Size=00000400
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=0800C800
Size=00000400
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=0800CC00
Size=00000400
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0800D000
Size=00000400
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0800D400
Size=00000400
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0800D800
Size=00000400
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0800DC00
Size=00000400
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0800E000
Size=00000400
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0800E400
Size=00000400
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0800E800
Size=00000400
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0800EC00
Size=00000400
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0800F000
Size=00000400
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0800F400
Size=00000400
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0800F800
Size=00000400
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0800FC00
Size=00000400
Type=111
UFO=111
[Page64]
Name=Page64
Index=40
Address=08010000
Size=00000400
Type=111
UFO=111
[Page65]
Name=Page65
Index=41
Address=08010400
Size=00000400
Type=111
UFO=111
[Page66]
Name=Page66
Index=42
Address=08010800
Size=00000400
Type=111
UFO=111
[Page67]
Name=Page67
Index=43
Address=08010C00
Size=00000400
Type=111
UFO=111
[Page68]
Name=Page68
Index=44
Address=08011000
Size=00000400
Type=111
UFO=111
[Page69]
Name=Page69
Index=45
Address=08011400
Size=00000400
Type=111
UFO=111
[Page70]
Name=Page70
Index=46
Address=08011800
Size=00000400
Type=111
UFO=111
[Page71]
Name=Page71
Index=47
Address=08011C00
Size=00000400
Type=111
UFO=111
[Page72]
Name=Page72
Index=48
Address=08012000
Size=00000400
Type=111
UFO=111
[Page73]
Name=Page73
Index=49
Address=08012400
Size=00000400
Type=111
UFO=111
[Page74]
Name=Page74
Index=4A
Address=08012800
Size=00000400
Type=111
UFO=111
[Page75]
Name=Page75
Index=4B
Address=08012C00
Size=00000400
Type=111
UFO=111
[Page76]
Name=Page76
Index=4C
Address=08013000
Size=00000400
Type=111
UFO=111
[Page77]
Name=Page77
Index=4D
Address=08013400
Size=00000400
Type=111
UFO=111
[Page78]
Name=Page78
Index=4E
Address=08013800
Size=00000400
Type=111
UFO=111
[Page79]
Name=Page79
Index=4F
Address=08013C00
Size=00000400
Type=111
UFO=111
[Page80]
Name=Page80
Index=50
Address=08014000
Size=00000400
Type=111
UFO=111
[Page81]
Name=Page81
Index=51
Address=08014400
Size=00000400
Type=111
UFO=111
[Page82]
Name=Page82
Index=52
Address=08014800
Size=00000400
Type=111
UFO=111
[Page83]
Name=Page83
Index=53
Address=08014C00
Size=00000400
Type=111
UFO=111
[Page84]
Name=Page84
Index=54
Address=08015000
Size=00000400
Type=111
UFO=111
[Page85]
Name=Page85
Index=55
Address=08015400
Size=00000400
Type=111
UFO=111
[Page86]
Name=Page86
Index=56
Address=08015800
Size=00000400
Type=111
UFO=111
[Page87]
Name=Page87
Index=57
Address=08015C00
Size=00000400
Type=111
UFO=111
[Page88]
Name=Page88
Index=58
Address=08016000
Size=00000400
Type=111
UFO=111
[Page89]
Name=Page89
Index=59
Address=08016400
Size=00000400
Type=111
UFO=111
[Page90]
Name=Page90
Index=5A
Address=08016800
Size=00000400
Type=111
UFO=111
[Page91]
Name=Page91
Index=5B
Address=08016C00
Size=00000400
Type=111
UFO=111
[Page92]
Name=Page92
Index=5C
Address=08017000
Size=00000400
Type=111
UFO=111
[Page93]
Name=Page93
Index=5D
Address=08017400
Size=00000400
Type=111
UFO=111
[Page94]
Name=Page94
Index=5E
Address=08017800
Size=00000400
Type=111
UFO=111
[Page95]
Name=Page95
Index=5F
Address=08017C00
Size=00000400
Type=111
UFO=111
[Page96]
Name=Page96
Index=60
Address=08018000
Size=00000400
Type=111
UFO=111
[Page97]
Name=Page97
Index=61
Address=08018400
Size=00000400
Type=111
UFO=111
[Page98]
Name=Page98
Index=62
Address=08018800
Size=00000400
Type=111
UFO=111
[Page99]
Name=Page99
Index=63
Address=08018C00
Size=00000400
Type=111
UFO=111
[Page100]
Name=Page100
Index=64
Address=08019000
Size=00000400
Type=111
UFO=111
[Page101]
Name=Page101
Index=65
Address=08019400
Size=00000400
Type=111
UFO=111
[Page102]
Name=Page102
Index=66
Address=08019800
Size=00000400
Type=111
UFO=111
[Page103]
Name=Page103
Index=67
Address=08019C00
Size=00000400
Type=111
UFO=111
[Page104]
Name=Page104
Index=68
Address=0801A000
Size=00000400
Type=111
UFO=111
[Page105]
Name=Page105
Index=69
Address=0801A400
Size=00000400
Type=111
UFO=111
[Page106]
Name=Page106
Index=6A
Address=0801A800
Size=00000400
Type=111
UFO=111
[Page107]
Name=Page107
Index=6B
Address=0801AC00
Size=00000400
Type=111
UFO=111
[Page108]
Name=Page108
Index=6C
Address=0801B000
Size=00000400
Type=111
UFO=111
[Page109]
Name=Page109
Index=6D
Address=0801B400
Size=00000400
Type=111
UFO=111
[Page110]
Name=Page110
Index=6E
Address=0801B800
Size=00000400
Type=111
UFO=111
[Page111]
Name=Page111
Index=6F
Address=0801BC00
Size=00000400
Type=111
UFO=111
[Page112]
Name=Page112
Index=70
Address=0801C000
Size=00000400
Type=111
UFO=111
[Page113]
Name=Page113
Index=71
Address=0801C400
Size=00000400
Type=111
UFO=111
[Page114]
Name=Page114
Index=72
Address=0801C800
Size=00000400
Type=111
UFO=111
[Page115]
Name=Page115
Index=73
Address=0801CC00
Size=00000400
Type=111
UFO=111
[Page116]
Name=Page116
Index=74
Address=0801D000
Size=00000400
Type=111
UFO=111
[Page117]
Name=Page117
Index=75
Address=0801D400
Size=00000400
Type=111
UFO=111
[Page118]
Name=Page118
Index=76
Address=0801D800
Size=00000400
Type=111
UFO=111
[Page119]
Name=Page119
Index=77
Address=0801DC00
Size=00000400
Type=111
UFO=111
[Page120]
Name=Page120
Index=78
Address=0801E000
Size=00000400
Type=111
UFO=111
[Page121]
Name=Page121
Index=79
Address=0801E400
Size=00000400
Type=111
UFO=111
[Page122]
Name=Page122
Index=7A
Address=0801E800
Size=00000400
Type=111
UFO=111
[Page123]
Name=Page123
Index=7B
Address=0801EC00
Size=00000400
Type=111
UFO=111
[Page124]
Name=Page124
Index=7C
Address=0801F000
Size=00000400
Type=111
UFO=111
[Page125]
Name=Page125
Index=7D
Address=0801F400
Size=00000400
Type=111
UFO=111
[Page126]
Name=Page126
Index=7E
Address=0801F800
Size=00000400
Type=111
UFO=111
[Page127]
Name=Page127
Index=7F
Address=0801FC00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_Med-density-value_64K.STmap
0,0 → 1,475
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_Med-density-value_64K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_Med-density-value_64K
PID=0420
BID=1FFFF7D6
FlashSize=0040
RAMSize=0008
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector = 4
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000400
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000400
Size=00000400
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08000800
Size=00000400
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08000C00
Size=00000400
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08001000
Size=00000400
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08001400
Size=00000400
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08001800
Size=00000400
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08001C00
Size=00000400
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08002000
Size=00000400
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08002400
Size=00000400
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08002800
Size=00000400
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08002C00
Size=00000400
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08003000
Size=00000400
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08003400
Size=00000400
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08003800
Size=00000400
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08003C00
Size=00000400
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08004000
Size=00000400
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08004400
Size=00000400
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08004800
Size=00000400
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08004C00
Size=00000400
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=08005000
Size=00000400
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=08005400
Size=00000400
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=08005800
Size=00000400
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=08005C00
Size=00000400
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=08006000
Size=00000400
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=08006400
Size=00000400
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=08006800
Size=00000400
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=08006C00
Size=00000400
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=08007000
Size=00000400
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=08007400
Size=00000400
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=08007800
Size=00000400
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=08007C00
Size=00000400
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08008000
Size=00000400
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08008400
Size=00000400
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08008800
Size=00000400
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08008C00
Size=00000400
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08009000
Size=00000400
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08009400
Size=00000400
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08009800
Size=00000400
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08009C00
Size=00000400
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=0800A000
Size=00000400
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=0800A400
Size=00000400
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=0800A800
Size=00000400
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=0800AC00
Size=00000400
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=0800B000
Size=00000400
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=0800B400
Size=00000400
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=0800B800
Size=00000400
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=0800BC00
Size=00000400
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=0800C000
Size=00000400
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=0800C400
Size=00000400
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=0800C800
Size=00000400
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=0800CC00
Size=00000400
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0800D000
Size=00000400
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0800D400
Size=00000400
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0800D800
Size=00000400
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0800DC00
Size=00000400
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0800E000
Size=00000400
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0800E400
Size=00000400
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0800E800
Size=00000400
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0800EC00
Size=00000400
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0800F000
Size=00000400
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0800F400
Size=00000400
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0800F800
Size=00000400
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0800FC00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_Med-density_128K.STmap
0,0 → 1,922
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_Med-density_128K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_Med-density_128K
PID=0410
FlashSize=0080
RAMSize=0014
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector = 4
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000400
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000400
Size=00000400
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08000800
Size=00000400
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08000C00
Size=00000400
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08001000
Size=00000400
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08001400
Size=00000400
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08001800
Size=00000400
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08001C00
Size=00000400
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08002000
Size=00000400
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08002400
Size=00000400
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08002800
Size=00000400
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08002C00
Size=00000400
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08003000
Size=00000400
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08003400
Size=00000400
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08003800
Size=00000400
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08003C00
Size=00000400
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08004000
Size=00000400
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08004400
Size=00000400
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08004800
Size=00000400
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08004C00
Size=00000400
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=08005000
Size=00000400
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=08005400
Size=00000400
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=08005800
Size=00000400
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=08005C00
Size=00000400
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=08006000
Size=00000400
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=08006400
Size=00000400
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=08006800
Size=00000400
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=08006C00
Size=00000400
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=08007000
Size=00000400
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=08007400
Size=00000400
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=08007800
Size=00000400
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=08007C00
Size=00000400
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08008000
Size=00000400
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08008400
Size=00000400
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08008800
Size=00000400
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08008C00
Size=00000400
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08009000
Size=00000400
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08009400
Size=00000400
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08009800
Size=00000400
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08009C00
Size=00000400
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=0800A000
Size=00000400
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=0800A400
Size=00000400
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=0800A800
Size=00000400
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=0800AC00
Size=00000400
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=0800B000
Size=00000400
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=0800B400
Size=00000400
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=0800B800
Size=00000400
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=0800BC00
Size=00000400
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=0800C000
Size=00000400
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=0800C400
Size=00000400
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=0800C800
Size=00000400
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=0800CC00
Size=00000400
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0800D000
Size=00000400
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0800D400
Size=00000400
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0800D800
Size=00000400
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0800DC00
Size=00000400
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0800E000
Size=00000400
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0800E400
Size=00000400
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0800E800
Size=00000400
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0800EC00
Size=00000400
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0800F000
Size=00000400
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0800F400
Size=00000400
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0800F800
Size=00000400
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0800FC00
Size=00000400
Type=111
UFO=111
[Page64]
Name=Page64
Index=40
Address=08010000
Size=00000400
Type=111
UFO=111
[Page65]
Name=Page65
Index=41
Address=08010400
Size=00000400
Type=111
UFO=111
[Page66]
Name=Page66
Index=42
Address=08010800
Size=00000400
Type=111
UFO=111
[Page67]
Name=Page67
Index=43
Address=08010C00
Size=00000400
Type=111
UFO=111
[Page68]
Name=Page68
Index=44
Address=08011000
Size=00000400
Type=111
UFO=111
[Page69]
Name=Page69
Index=45
Address=08011400
Size=00000400
Type=111
UFO=111
[Page70]
Name=Page70
Index=46
Address=08011800
Size=00000400
Type=111
UFO=111
[Page71]
Name=Page71
Index=47
Address=08011C00
Size=00000400
Type=111
UFO=111
[Page72]
Name=Page72
Index=48
Address=08012000
Size=00000400
Type=111
UFO=111
[Page73]
Name=Page73
Index=49
Address=08012400
Size=00000400
Type=111
UFO=111
[Page74]
Name=Page74
Index=4A
Address=08012800
Size=00000400
Type=111
UFO=111
[Page75]
Name=Page75
Index=4B
Address=08012C00
Size=00000400
Type=111
UFO=111
[Page76]
Name=Page76
Index=4C
Address=08013000
Size=00000400
Type=111
UFO=111
[Page77]
Name=Page77
Index=4D
Address=08013400
Size=00000400
Type=111
UFO=111
[Page78]
Name=Page78
Index=4E
Address=08013800
Size=00000400
Type=111
UFO=111
[Page79]
Name=Page79
Index=4F
Address=08013C00
Size=00000400
Type=111
UFO=111
[Page80]
Name=Page80
Index=50
Address=08014000
Size=00000400
Type=111
UFO=111
[Page81]
Name=Page81
Index=51
Address=08014400
Size=00000400
Type=111
UFO=111
[Page82]
Name=Page82
Index=52
Address=08014800
Size=00000400
Type=111
UFO=111
[Page83]
Name=Page83
Index=53
Address=08014C00
Size=00000400
Type=111
UFO=111
[Page84]
Name=Page84
Index=54
Address=08015000
Size=00000400
Type=111
UFO=111
[Page85]
Name=Page85
Index=55
Address=08015400
Size=00000400
Type=111
UFO=111
[Page86]
Name=Page86
Index=56
Address=08015800
Size=00000400
Type=111
UFO=111
[Page87]
Name=Page87
Index=57
Address=08015C00
Size=00000400
Type=111
UFO=111
[Page88]
Name=Page88
Index=58
Address=08016000
Size=00000400
Type=111
UFO=111
[Page89]
Name=Page89
Index=59
Address=08016400
Size=00000400
Type=111
UFO=111
[Page90]
Name=Page90
Index=5A
Address=08016800
Size=00000400
Type=111
UFO=111
[Page91]
Name=Page91
Index=5B
Address=08016C00
Size=00000400
Type=111
UFO=111
[Page92]
Name=Page92
Index=5C
Address=08017000
Size=00000400
Type=111
UFO=111
[Page93]
Name=Page93
Index=5D
Address=08017400
Size=00000400
Type=111
UFO=111
[Page94]
Name=Page94
Index=5E
Address=08017800
Size=00000400
Type=111
UFO=111
[Page95]
Name=Page95
Index=5F
Address=08017C00
Size=00000400
Type=111
UFO=111
[Page96]
Name=Page96
Index=60
Address=08018000
Size=00000400
Type=111
UFO=111
[Page97]
Name=Page97
Index=61
Address=08018400
Size=00000400
Type=111
UFO=111
[Page98]
Name=Page98
Index=62
Address=08018800
Size=00000400
Type=111
UFO=111
[Page99]
Name=Page99
Index=63
Address=08018C00
Size=00000400
Type=111
UFO=111
[Page100]
Name=Page100
Index=64
Address=08019000
Size=00000400
Type=111
UFO=111
[Page101]
Name=Page101
Index=65
Address=08019400
Size=00000400
Type=111
UFO=111
[Page102]
Name=Page102
Index=66
Address=08019800
Size=00000400
Type=111
UFO=111
[Page103]
Name=Page103
Index=67
Address=08019C00
Size=00000400
Type=111
UFO=111
[Page104]
Name=Page104
Index=68
Address=0801A000
Size=00000400
Type=111
UFO=111
[Page105]
Name=Page105
Index=69
Address=0801A400
Size=00000400
Type=111
UFO=111
[Page106]
Name=Page106
Index=6A
Address=0801A800
Size=00000400
Type=111
UFO=111
[Page107]
Name=Page107
Index=6B
Address=0801AC00
Size=00000400
Type=111
UFO=111
[Page108]
Name=Page108
Index=6C
Address=0801B000
Size=00000400
Type=111
UFO=111
[Page109]
Name=Page109
Index=6D
Address=0801B400
Size=00000400
Type=111
UFO=111
[Page110]
Name=Page110
Index=6E
Address=0801B800
Size=00000400
Type=111
UFO=111
[Page111]
Name=Page111
Index=6F
Address=0801BC00
Size=00000400
Type=111
UFO=111
[Page112]
Name=Page112
Index=70
Address=0801C000
Size=00000400
Type=111
UFO=111
[Page113]
Name=Page113
Index=71
Address=0801C400
Size=00000400
Type=111
UFO=111
[Page114]
Name=Page114
Index=72
Address=0801C800
Size=00000400
Type=111
UFO=111
[Page115]
Name=Page115
Index=73
Address=0801CC00
Size=00000400
Type=111
UFO=111
[Page116]
Name=Page116
Index=74
Address=0801D000
Size=00000400
Type=111
UFO=111
[Page117]
Name=Page117
Index=75
Address=0801D400
Size=00000400
Type=111
UFO=111
[Page118]
Name=Page118
Index=76
Address=0801D800
Size=00000400
Type=111
UFO=111
[Page119]
Name=Page119
Index=77
Address=0801DC00
Size=00000400
Type=111
UFO=111
[Page120]
Name=Page120
Index=78
Address=0801E000
Size=00000400
Type=111
UFO=111
[Page121]
Name=Page121
Index=79
Address=0801E400
Size=00000400
Type=111
UFO=111
[Page122]
Name=Page122
Index=7A
Address=0801E800
Size=00000400
Type=111
UFO=111
[Page123]
Name=Page123
Index=7B
Address=0801EC00
Size=00000400
Type=111
UFO=111
[Page124]
Name=Page124
Index=7C
Address=0801F000
Size=00000400
Type=111
UFO=111
[Page125]
Name=Page125
Index=7D
Address=0801F400
Size=00000400
Type=111
UFO=111
[Page126]
Name=Page126
Index=7E
Address=0801F800
Size=00000400
Type=111
UFO=111
[Page127]
Name=Page127
Index=7F
Address=0801FC00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_Med-density_64K.STmap
0,0 → 1,474
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_Med-density_64K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_Med-density_64K.STmap
PID=0410
FlashSize=0040
RAMSize=0014
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector = 4
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000400
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000400
Size=00000400
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08000800
Size=00000400
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08000C00
Size=00000400
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08001000
Size=00000400
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08001400
Size=00000400
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08001800
Size=00000400
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08001C00
Size=00000400
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08002000
Size=00000400
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08002400
Size=00000400
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08002800
Size=00000400
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08002C00
Size=00000400
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08003000
Size=00000400
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08003400
Size=00000400
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08003800
Size=00000400
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08003C00
Size=00000400
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08004000
Size=00000400
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08004400
Size=00000400
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08004800
Size=00000400
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08004C00
Size=00000400
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=08005000
Size=00000400
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=08005400
Size=00000400
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=08005800
Size=00000400
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=08005C00
Size=00000400
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=08006000
Size=00000400
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=08006400
Size=00000400
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=08006800
Size=00000400
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=08006C00
Size=00000400
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=08007000
Size=00000400
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=08007400
Size=00000400
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=08007800
Size=00000400
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=08007C00
Size=00000400
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08008000
Size=00000400
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08008400
Size=00000400
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08008800
Size=00000400
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08008C00
Size=00000400
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08009000
Size=00000400
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08009400
Size=00000400
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08009800
Size=00000400
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08009C00
Size=00000400
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=0800A000
Size=00000400
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=0800A400
Size=00000400
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=0800A800
Size=00000400
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=0800AC00
Size=00000400
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=0800B000
Size=00000400
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=0800B400
Size=00000400
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=0800B800
Size=00000400
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=0800BC00
Size=00000400
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=0800C000
Size=00000400
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=0800C400
Size=00000400
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=0800C800
Size=00000400
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=0800CC00
Size=00000400
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0800D000
Size=00000400
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0800D400
Size=00000400
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0800D800
Size=00000400
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0800DC00
Size=00000400
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0800E000
Size=00000400
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0800E400
Size=00000400
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0800E800
Size=00000400
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0800EC00
Size=00000400
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0800F000
Size=00000400
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0800F400
Size=00000400
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0800F800
Size=00000400
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0800FC00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_XL-density_1024K.STmap
0,0 → 1,3611
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_XL-density_1024K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_XL-density_1024K
PID=0430
BID=1FFFF7D6
FlashSize=0400
RAMSize=0060
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector=2
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000800
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000800
Size=00000800
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08001000
Size=00000800
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08001800
Size=00000800
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08002000
Size=00000800
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08002800
Size=00000800
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08003000
Size=00000800
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08003800
Size=00000800
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08004000
Size=00000800
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08004800
Size=00000800
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08005000
Size=00000800
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08005800
Size=00000800
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08006000
Size=00000800
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08006800
Size=00000800
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08007000
Size=00000800
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08007800
Size=00000800
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08008000
Size=00000800
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08008800
Size=00000800
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08009000
Size=00000800
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08009800
Size=00000800
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=0800A000
Size=00000800
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=0800A800
Size=00000800
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=0800B000
Size=00000800
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=0800B800
Size=00000800
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=0800C000
Size=00000800
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=0800C800
Size=00000800
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=0800D000
Size=00000800
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=0800D800
Size=00000800
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=0800E000
Size=00000800
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=0800E800
Size=00000800
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=0800F000
Size=00000800
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=0800F800
Size=00000800
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08010000
Size=00000800
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08010800
Size=00000800
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08011000
Size=00000800
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08011800
Size=00000800
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08012000
Size=00000800
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08012800
Size=00000800
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08013000
Size=00000800
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08013800
Size=00000800
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=08014000
Size=00000800
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=08014800
Size=00000800
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=08015000
Size=00000800
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=08015800
Size=00000800
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=08016000
Size=00000800
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=08016800
Size=00000800
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=08017000
Size=00000800
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=08017800
Size=00000800
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=08018000
Size=00000800
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=08018800
Size=00000800
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=08019000
Size=00000800
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=08019800
Size=00000800
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0801A000
Size=00000800
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0801A800
Size=00000800
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0801B000
Size=00000800
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0801B800
Size=00000800
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0801C000
Size=00000800
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0801C800
Size=00000800
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0801D000
Size=00000800
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0801D800
Size=00000800
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0801E000
Size=00000800
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0801E800
Size=00000800
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0801F000
Size=00000800
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0801F800
Size=00000800
Type=111
UFO=111
[Page64]
Name=Page64
Index=40
Address=08020000
Size=00000800
Type=111
UFO=111
[Page65]
Name=Page65
Index=41
Address=08020800
Size=00000800
Type=111
UFO=111
[Page66]
Name=Page66
Index=42
Address=08021000
Size=00000800
Type=111
UFO=111
[Page67]
Name=Page67
Index=43
Address=08021800
Size=00000800
Type=111
UFO=111
[Page68]
Name=Page68
Index=44
Address=08022000
Size=00000800
Type=111
UFO=111
[Page69]
Name=Page69
Index=45
Address=08022800
Size=00000800
Type=111
UFO=111
[Page70]
Name=Page70
Index=46
Address=08023000
Size=00000800
Type=111
UFO=111
[Page71]
Name=Page71
Index=47
Address=08023800
Size=00000800
Type=111
UFO=111
[Page72]
Name=Page72
Index=48
Address=08024000
Size=00000800
Type=111
UFO=111
[Page73]
Name=Page73
Index=49
Address=08024800
Size=00000800
Type=111
UFO=111
[Page74]
Name=Page74
Index=4A
Address=08025000
Size=00000800
Type=111
UFO=111
[Page75]
Name=Page75
Index=4B
Address=08025800
Size=00000800
Type=111
UFO=111
[Page76]
Name=Page76
Index=4C
Address=08026000
Size=00000800
Type=111
UFO=111
[Page77]
Name=Page77
Index=4D
Address=08026800
Size=00000800
Type=111
UFO=111
[Page78]
Name=Page78
Index=4E
Address=08027000
Size=00000800
Type=111
UFO=111
[Page79]
Name=Page79
Index=4F
Address=08027800
Size=00000800
Type=111
UFO=111
[Page80]
Name=Page80
Index=50
Address=08028000
Size=00000800
Type=111
UFO=111
[Page81]
Name=Page81
Index=51
Address=08028800
Size=00000800
Type=111
UFO=111
[Page82]
Name=Page82
Index=52
Address=08029000
Size=00000800
Type=111
UFO=111
[Page83]
Name=Page83
Index=53
Address=08029800
Size=00000800
Type=111
UFO=111
[Page84]
Name=Page84
Index=54
Address=0802A000
Size=00000800
Type=111
UFO=111
[Page85]
Name=Page85
Index=55
Address=0802A800
Size=00000800
Type=111
UFO=111
[Page86]
Name=Page86
Index=56
Address=0802B000
Size=00000800
Type=111
UFO=111
[Page87]
Name=Page87
Index=57
Address=0802B800
Size=00000800
Type=111
UFO=111
[Page88]
Name=Page88
Index=58
Address=0802C000
Size=00000800
Type=111
UFO=111
[Page89]
Name=Page89
Index=59
Address=0802C800
Size=00000800
Type=111
UFO=111
[Page90]
Name=Page90
Index=5A
Address=0802D000
Size=00000800
Type=111
UFO=111
[Page91]
Name=Page91
Index=5B
Address=0802D800
Size=00000800
Type=111
UFO=111
[Page92]
Name=Page92
Index=5C
Address=0802E000
Size=00000800
Type=111
UFO=111
[Page93]
Name=Page93
Index=5D
Address=0802E800
Size=00000800
Type=111
UFO=111
[Page94]
Name=Page94
Index=5E
Address=0802F000
Size=00000800
Type=111
UFO=111
[Page95]
Name=Page95
Index=5F
Address=0802F800
Size=00000800
Type=111
UFO=111
[Page96]
Name=Page96
Index=60
Address=08030000
Size=00000800
Type=111
UFO=111
[Page97]
Name=Page97
Index=61
Address=08030800
Size=00000800
Type=111
UFO=111
[Page98]
Name=Page98
Index=62
Address=08031000
Size=00000800
Type=111
UFO=111
[Page99]
Name=Page99
Index=63
Address=08031800
Size=00000800
Type=111
UFO=111
[Page100]
Name=Page100
Index=64
Address=08032000
Size=00000800
Type=111
UFO=111
[Page101]
Name=Page101
Index=65
Address=08032800
Size=00000800
Type=111
UFO=111
[Page102]
Name=Page102
Index=66
Address=08033000
Size=00000800
Type=111
UFO=111
[Page103]
Name=Page103
Index=67
Address=08033800
Size=00000800
Type=111
UFO=111
[Page104]
Name=Page104
Index=68
Address=08034000
Size=00000800
Type=111
UFO=111
[Page105]
Name=Page105
Index=69
Address=08034800
Size=00000800
Type=111
UFO=111
[Page106]
Name=Page106
Index=6A
Address=08035000
Size=00000800
Type=111
UFO=111
[Page107]
Name=Page107
Index=6B
Address=08035800
Size=00000800
Type=111
UFO=111
[Page108]
Name=Page108
Index=6C
Address=08036000
Size=00000800
Type=111
UFO=111
[Page109]
Name=Page109
Index=6D
Address=08036800
Size=00000800
Type=111
UFO=111
[Page110]
Name=Page110
Index=6E
Address=08037000
Size=00000800
Type=111
UFO=111
[Page111]
Name=Page111
Index=6F
Address=08037800
Size=00000800
Type=111
UFO=111
[Page112]
Name=Page112
Index=70
Address=08038000
Size=00000800
Type=111
UFO=111
[Page113]
Name=Page113
Index=71
Address=08038800
Size=00000800
Type=111
UFO=111
[Page114]
Name=Page114
Index=72
Address=08039000
Size=00000800
Type=111
UFO=111
[Page115]
Name=Page115
Index=73
Address=08039800
Size=00000800
Type=111
UFO=111
[Page116]
Name=Page116
Index=74
Address=0803A000
Size=00000800
Type=111
UFO=111
[Page117]
Name=Page117
Index=75
Address=0803A800
Size=00000800
Type=111
UFO=111
[Page118]
Name=Page118
Index=76
Address=0803B000
Size=00000800
Type=111
UFO=111
[Page119]
Name=Page119
Index=77
Address=0803B800
Size=00000800
Type=111
UFO=111
[Page120]
Name=Page120
Index=78
Address=0803C000
Size=00000800
Type=111
UFO=111
[Page121]
Name=Page121
Index=79
Address=0803C800
Size=00000800
Type=111
UFO=111
[Page122]
Name=Page122
Index=7A
Address=0803D000
Size=00000800
Type=111
UFO=111
[Page123]
Name=Page123
Index=7B
Address=0803D800
Size=00000800
Type=111
UFO=111
[Page124]
Name=Page124
Index=7C
Address=0803E000
Size=00000800
Type=111
UFO=111
[Page125]
Name=Page125
Index=7D
Address=0803E800
Size=00000800
Type=111
UFO=111
[Page126]
Name=Page126
Index=7E
Address=0803F000
Size=00000800
Type=111
UFO=111
[Page127]
Name=Page127
Index=7F
Address=0803F800
Size=00000800
Type=111
UFO=111
[Page128]
Name=Page128
Index=80
Address=08040000
Size=00000800
Type=111
UFO=111
[Page129]
Name=Page129
Index=81
Address=08040800
Size=00000800
Type=111
UFO=111
[Page130]
Name=Page130
Index=82
Address=08041000
Size=00000800
Type=111
UFO=111
[Page131]
Name=Page131
Index=83
Address=08041800
Size=00000800
Type=111
UFO=111
[Page132]
Name=Page132
Index=84
Address=08042000
Size=00000800
Type=111
UFO=111
[Page133]
Name=Page133
Index=85
Address=08042800
Size=00000800
Type=111
UFO=111
[Page134]
Name=Page134
Index=86
Address=08043000
Size=00000800
Type=111
UFO=111
[Page135]
Name=Page135
Index=87
Address=08043800
Size=00000800
Type=111
UFO=111
[Page136]
Name=Page136
Index=88
Address=08044000
Size=00000800
Type=111
UFO=111
[Page137]
Name=Page137
Index=89
Address=08044800
Size=00000800
Type=111
UFO=111
[Page138]
Name=Page138
Index=8A
Address=08045000
Size=00000800
Type=111
UFO=111
[Page139]
Name=Page139
Index=8B
Address=08045800
Size=00000800
Type=111
UFO=111
[Page140]
Name=Page140
Index=8C
Address=08046000
Size=00000800
Type=111
UFO=111
[Page141]
Name=Page141
Index=8D
Address=08046800
Size=00000800
Type=111
UFO=111
[Page142]
Name=Page142
Index=8E
Address=08047000
Size=00000800
Type=111
UFO=111
[Page143]
Name=Page143
Index=8F
Address=08047800
Size=00000800
Type=111
UFO=111
[Page144]
Name=Page144
Index=90
Address=08048000
Size=00000800
Type=111
UFO=111
[Page145]
Name=Page145
Index=91
Address=08048800
Size=00000800
Type=111
UFO=111
[Page146]
Name=Page146
Index=92
Address=08049000
Size=00000800
Type=111
UFO=111
[Page147]
Name=Page147
Index=93
Address=08049800
Size=00000800
Type=111
UFO=111
[Page148]
Name=Page148
Index=94
Address=0804A000
Size=00000800
Type=111
UFO=111
[Page149]
Name=Page149
Index=95
Address=0804A800
Size=00000800
Type=111
UFO=111
[Page150]
Name=Page150
Index=96
Address=0804B000
Size=00000800
Type=111
UFO=111
[Page151]
Name=Page151
Index=97
Address=0804B800
Size=00000800
Type=111
UFO=111
[Page152]
Name=Page152
Index=98
Address=0804C000
Size=00000800
Type=111
UFO=111
[Page153]
Name=Page153
Index=99
Address=0804C800
Size=00000800
Type=111
UFO=111
[Page154]
Name=Page154
Index=9A
Address=0804D000
Size=00000800
Type=111
UFO=111
[Page155]
Name=Page155
Index=9B
Address=0804D800
Size=00000800
Type=111
UFO=111
[Page156]
Name=Page156
Index=9C
Address=0804E000
Size=00000800
Type=111
UFO=111
[Page157]
Name=Page157
Index=9D
Address=0804E800
Size=00000800
Type=111
UFO=111
[Page158]
Name=Page158
Index=9E
Address=0804F000
Size=00000800
Type=111
UFO=111
[Page159]
Name=Page159
Index=9F
Address=0804F800
Size=00000800
Type=111
UFO=111
[Page160]
Name=Page160
Index=A0
Address=08050000
Size=00000800
Type=111
UFO=111
[Page161]
Name=Page161
Index=A1
Address=08050800
Size=00000800
Type=111
UFO=111
[Page162]
Name=Page162
Index=A2
Address=08051000
Size=00000800
Type=111
UFO=111
[Page163]
Name=Page163
Index=A3
Address=08051800
Size=00000800
Type=111
UFO=111
[Page164]
Name=Page164
Index=A4
Address=08052000
Size=00000800
Type=111
UFO=111
[Page165]
Name=Page165
Index=A5
Address=08052800
Size=00000800
Type=111
UFO=111
[Page166]
Name=Page166
Index=A6
Address=08053000
Size=00000800
Type=111
UFO=111
[Page167]
Name=Page167
Index=A7
Address=08053800
Size=00000800
Type=111
UFO=111
[Page168]
Name=Page168
Index=A8
Address=08054000
Size=00000800
Type=111
UFO=111
[Page169]
Name=Page169
Index=A9
Address=08054800
Size=00000800
Type=111
UFO=111
[Page170]
Name=Page170
Index=AA
Address=08055000
Size=00000800
Type=111
UFO=111
[Page171]
Name=Page171
Index=AB
Address=08055800
Size=00000800
Type=111
UFO=111
[Page172]
Name=Page172
Index=AC
Address=08056000
Size=00000800
Type=111
UFO=111
[Page173]
Name=Page173
Index=AD
Address=08056800
Size=00000800
Type=111
UFO=111
[Page174]
Name=Page174
Index=AE
Address=08057000
Size=00000800
Type=111
UFO=111
[Page175]
Name=Page175
Index=AF
Address=08057800
Size=00000800
Type=111
UFO=111
[Page176]
Name=Page176
Index=B0
Address=08058000
Size=00000800
Type=111
UFO=111
[Page177]
Name=Page177
Index=B1
Address=08058800
Size=00000800
Type=111
UFO=111
[Page178]
Name=Page178
Index=B2
Address=08059000
Size=00000800
Type=111
UFO=111
[Page179]
Name=Page179
Index=B3
Address=08059800
Size=00000800
Type=111
UFO=111
[Page180]
Name=Page180
Index=B4
Address=0805A000
Size=00000800
Type=111
UFO=111
[Page181]
Name=Page181
Index=B5
Address=0805A800
Size=00000800
Type=111
UFO=111
[Page182]
Name=Page182
Index=B6
Address=0805B000
Size=00000800
Type=111
UFO=111
[Page183]
Name=Page183
Index=B7
Address=0805B800
Size=00000800
Type=111
UFO=111
[Page184]
Name=Page184
Index=B8
Address=0805C000
Size=00000800
Type=111
UFO=111
[Page185]
Name=Page185
Index=B9
Address=0805C800
Size=00000800
Type=111
UFO=111
[Page186]
Name=Page186
Index=BA
Address=0805D000
Size=00000800
Type=111
UFO=111
[Page187]
Name=Page187
Index=BB
Address=0805D800
Size=00000800
Type=111
UFO=111
[Page188]
Name=Page188
Index=BC
Address=0805E000
Size=00000800
Type=111
UFO=111
[Page189]
Name=Page189
Index=BD
Address=0805E800
Size=00000800
Type=111
UFO=111
[Page190]
Name=Page190
Index=BE
Address=0805F000
Size=00000800
Type=111
UFO=111
[Page191]
Name=Page191
Index=BF
Address=0805F800
Size=00000800
Type=111
UFO=111
[Page192]
Name=Page192
Index=C0
Address=08060000
Size=00000800
Type=111
UFO=111
[Page193]
Name=Page193
Index=C1
Address=08060800
Size=00000800
Type=111
UFO=111
[Page194]
Name=Page194
Index=C2
Address=08061000
Size=00000800
Type=111
UFO=111
[Page195]
Name=Page195
Index=C3
Address=08061800
Size=00000800
Type=111
UFO=111
[Page196]
Name=Page196
Index=C4
Address=08062000
Size=00000800
Type=111
UFO=111
[Page197]
Name=Page197
Index=C5
Address=08062800
Size=00000800
Type=111
UFO=111
[Page198]
Name=Page198
Index=C6
Address=08063000
Size=00000800
Type=111
UFO=111
[Page199]
Name=Page199
Index=C7
Address=08063800
Size=00000800
Type=111
UFO=111
[Page200]
Name=Page200
Index=C8
Address=08064000
Size=00000800
Type=111
UFO=111
[Page201]
Name=Page201
Index=C9
Address=08064800
Size=00000800
Type=111
UFO=111
[Page202]
Name=Page202
Index=CA
Address=08065000
Size=00000800
Type=111
UFO=111
[Page203]
Name=Page203
Index=CB
Address=08065800
Size=00000800
Type=111
UFO=111
[Page204]
Name=Page204
Index=CC
Address=08066000
Size=00000800
Type=111
UFO=111
[Page205]
Name=Page205
Index=CD
Address=08066800
Size=00000800
Type=111
UFO=111
[Page206]
Name=Page206
Index=CE
Address=08067000
Size=00000800
Type=111
UFO=111
[Page207]
Name=Page207
Index=CF
Address=08067800
Size=00000800
Type=111
UFO=111
[Page208]
Name=Page208
Index=D0
Address=08068000
Size=00000800
Type=111
UFO=111
[Page209]
Name=Page209
Index=D1
Address=08068800
Size=00000800
Type=111
UFO=111
[Page210]
Name=Page210
Index=D2
Address=08069000
Size=00000800
Type=111
UFO=111
[Page211]
Name=Page211
Index=D3
Address=08069800
Size=00000800
Type=111
UFO=111
[Page212]
Name=Page212
Index=D4
Address=0806A000
Size=00000800
Type=111
UFO=111
[Page213]
Name=Page213
Index=D5
Address=0806A800
Size=00000800
Type=111
UFO=111
[Page214]
Name=Page214
Index=D6
Address=0806B000
Size=00000800
Type=111
UFO=111
[Page215]
Name=Page215
Index=D7
Address=0806B800
Size=00000800
Type=111
UFO=111
[Page216]
Name=Page216
Index=D8
Address=0806C000
Size=00000800
Type=111
UFO=111
[Page217]
Name=Page217
Index=D9
Address=0806C800
Size=00000800
Type=111
UFO=111
[Page218]
Name=Page218
Index=DA
Address=0806D000
Size=00000800
Type=111
UFO=111
[Page219]
Name=Page219
Index=DB
Address=0806D800
Size=00000800
Type=111
UFO=111
[Page220]
Name=Page220
Index=DC
Address=0806E000
Size=00000800
Type=111
UFO=111
[Page221]
Name=Page221
Index=DD
Address=0806E800
Size=00000800
Type=111
UFO=111
[Page222]
Name=Page222
Index=DE
Address=0806F000
Size=00000800
Type=111
UFO=111
[Page223]
Name=Page223
Index=DF
Address=0806F800
Size=00000800
Type=111
UFO=111
[Page224]
Name=Page224
Index=E0
Address=08070000
Size=00000800
Type=111
UFO=111
[Page225]
Name=Page225
Index=E1
Address=08070800
Size=00000800
Type=111
UFO=111
[Page226]
Name=Page226
Index=E2
Address=08071000
Size=00000800
Type=111
UFO=111
[Page227]
Name=Page227
Index=E3
Address=08071800
Size=00000800
Type=111
UFO=111
[Page228]
Name=Page228
Index=E4
Address=08072000
Size=00000800
Type=111
UFO=111
[Page229]
Name=Page229
Index=E5
Address=08072800
Size=00000800
Type=111
UFO=111
[Page230]
Name=Page230
Index=E6
Address=08073000
Size=00000800
Type=111
UFO=111
[Page231]
Name=Page231
Index=E7
Address=08073800
Size=00000800
Type=111
UFO=111
[Page232]
Name=Page232
Index=E8
Address=08074000
Size=00000800
Type=111
UFO=111
[Page233]
Name=Page233
Index=E9
Address=08074800
Size=00000800
Type=111
UFO=111
[Page234]
Name=Page234
Index=EA
Address=08075000
Size=00000800
Type=111
UFO=111
[Page235]
Name=Page235
Index=EB
Address=08075800
Size=00000800
Type=111
UFO=111
[Page236]
Name=Page236
Index=EC
Address=08076000
Size=00000800
Type=111
UFO=111
[Page237]
Name=Page237
Index=ED
Address=08076800
Size=00000800
Type=111
UFO=111
[Page238]
Name=Page238
Index=EE
Address=08077000
Size=00000800
Type=111
UFO=111
[Page239]
Name=Page239
Index=EF
Address=08077800
Size=00000800
Type=111
UFO=111
[Page240]
Name=Page240
Index=F0
Address=08078000
Size=00000800
Type=111
UFO=111
[Page241]
Name=Page241
Index=F1
Address=08078800
Size=00000800
Type=111
UFO=111
[Page242]
Name=Page242
Index=F2
Address=08079000
Size=00000800
Type=111
UFO=111
[Page243]
Name=Page243
Index=F3
Address=08079800
Size=00000800
Type=111
UFO=111
[Page244]
Name=Page244
Index=F4
Address=0807A000
Size=00000800
Type=111
UFO=111
[Page245]
Name=Page245
Index=F5
Address=0807A800
Size=00000800
Type=111
UFO=111
[Page246]
Name=Page246
Index=F6
Address=0807B000
Size=00000800
Type=111
UFO=111
[Page247]
Name=Page247
Index=F7
Address=0807B800
Size=00000800
Type=111
UFO=111
[Page248]
Name=Page248
Index=F8
Address=0807C000
Size=00000800
Type=111
UFO=111
[Page249]
Name=Page249
Index=F9
Address=0807C800
Size=00000800
Type=111
UFO=111
[Page250]
Name=Page250
Index=FA
Address=0807D000
Size=00000800
Type=111
UFO=111
[Page251]
Name=Page251
Index=FB
Address=0807D800
Size=00000800
Type=111
UFO=111
[Page252]
Name=Page252
Index=FC
Address=0807E000
Size=00000800
Type=111
UFO=111
[Page253]
Name=Page253
Index=FD
Address=0807E800
Size=00000800
Type=111
UFO=111
[Page254]
Name=Page254
Index=FE
Address=0807F000
Size=00000800
Type=111
UFO=111
[Page255]
Name=Page255
Index=FF
Address=0807F800
Size=00000800
Type=111
UFO=111
[Page256]
Name=Page256
Index=100
Address=08080000
Size=00000800
Type=111
UFO=111
[Page257]
Name=Page257
Index=101
Address=08080800
Size=00000800
Type=111
UFO=111
[Page258]
Name=Page258
Index=102
Address=08081000
Size=00000800
Type=111
UFO=111
[Page259]
Name=Page259
Index=103
Address=08081800
Size=00000800
Type=111
UFO=111
[Page260]
Name=Page260
Index=104
Address=08082000
Size=00000800
Type=111
UFO=111
[Page261]
Name=Page261
Index=105
Address=08082800
Size=00000800
Type=111
UFO=111
[Page262]
Name=Page262
Index=106
Address=08083000
Size=00000800
Type=111
UFO=111
[Page263]
Name=Page263
Index=107
Address=08083800
Size=00000800
Type=111
UFO=111
[Page264]
Name=Page264
Index=108
Address=08084000
Size=00000800
Type=111
UFO=111
[Page265]
Name=Page265
Index=109
Address=08084800
Size=00000800
Type=111
UFO=111
[Page266]
Name=Page266
Index=10A
Address=08085000
Size=00000800
Type=111
UFO=111
[Page267]
Name=Page267
Index=10B
Address=08085800
Size=00000800
Type=111
UFO=111
[Page268]
Name=Page268
Index=10C
Address=08086000
Size=00000800
Type=111
UFO=111
[Page269]
Name=Page269
Index=10D
Address=08086800
Size=00000800
Type=111
UFO=111
[Page270]
Name=Page270
Index=10E
Address=08087000
Size=00000800
Type=111
UFO=111
[Page271]
Name=Page271
Index=10F
Address=08087800
Size=00000800
Type=111
UFO=111
[Page272]
Name=Page272
Index=110
Address=08088000
Size=00000800
Type=111
UFO=111
[Page273]
Name=Page273
Index=111
Address=08088800
Size=00000800
Type=111
UFO=111
[Page274]
Name=Page274
Index=112
Address=08089000
Size=00000800
Type=111
UFO=111
[Page275]
Name=Page275
Index=113
Address=08089800
Size=00000800
Type=111
UFO=111
[Page276]
Name=Page276
Index=114
Address=0808A000
Size=00000800
Type=111
UFO=111
[Page277]
Name=Page277
Index=115
Address=0808A800
Size=00000800
Type=111
UFO=111
[Page278]
Name=Page278
Index=116
Address=0808B000
Size=00000800
Type=111
UFO=111
[Page279]
Name=Page279
Index=117
Address=0808B800
Size=00000800
Type=111
UFO=111
[Page280]
Name=Page280
Index=118
Address=0808C000
Size=00000800
Type=111
UFO=111
[Page281]
Name=Page281
Index=119
Address=0808C800
Size=00000800
Type=111
UFO=111
[Page282]
Name=Page282
Index=11A
Address=0808D000
Size=00000800
Type=111
UFO=111
[Page283]
Name=Page283
Index=11B
Address=0808D800
Size=00000800
Type=111
UFO=111
[Page284]
Name=Page284
Index=11C
Address=0808E000
Size=00000800
Type=111
UFO=111
[Page285]
Name=Page285
Index=11D
Address=0808E800
Size=00000800
Type=111
UFO=111
[Page286]
Name=Page286
Index=11E
Address=0808F000
Size=00000800
Type=111
UFO=111
[Page287]
Name=Page287
Index=11F
Address=0808F800
Size=00000800
Type=111
UFO=111
[Page288]
Name=Page288
Index=120
Address=08090000
Size=00000800
Type=111
UFO=111
[Page289]
Name=Page289
Index=121
Address=08090800
Size=00000800
Type=111
UFO=111
[Page290]
Name=Page290
Index=122
Address=08091000
Size=00000800
Type=111
UFO=111
[Page291]
Name=Page291
Index=123
Address=08091800
Size=00000800
Type=111
UFO=111
[Page292]
Name=Page292
Index=124
Address=08092000
Size=00000800
Type=111
UFO=111
[Page293]
Name=Page293
Index=125
Address=08092800
Size=00000800
Type=111
UFO=111
[Page294]
Name=Page294
Index=126
Address=08093000
Size=00000800
Type=111
UFO=111
[Page295]
Name=Page295
Index=127
Address=08093800
Size=00000800
Type=111
UFO=111
[Page296]
Name=Page296
Index=128
Address=08094000
Size=00000800
Type=111
UFO=111
[Page297]
Name=Page297
Index=129
Address=08094800
Size=00000800
Type=111
UFO=111
[Page298]
Name=Page298
Index=12A
Address=08095000
Size=00000800
Type=111
UFO=111
[Page299]
Name=Page299
Index=12B
Address=08095800
Size=00000800
Type=111
UFO=111
[Page300]
Name=Page300
Index=12C
Address=08096000
Size=00000800
Type=111
UFO=111
[Page301]
Name=Page301
Index=12D
Address=08096800
Size=00000800
Type=111
UFO=111
[Page302]
Name=Page302
Index=12E
Address=08097000
Size=00000800
Type=111
UFO=111
[Page303]
Name=Page303
Index=12F
Address=08097800
Size=00000800
Type=111
UFO=111
[Page304]
Name=Page304
Index=130
Address=08098000
Size=00000800
Type=111
UFO=111
[Page305]
Name=Page305
Index=131
Address=08098800
Size=00000800
Type=111
UFO=111
[Page306]
Name=Page306
Index=132
Address=08099000
Size=00000800
Type=111
UFO=111
[Page307]
Name=Page307
Index=133
Address=08099800
Size=00000800
Type=111
UFO=111
[Page308]
Name=Page308
Index=134
Address=0809A000
Size=00000800
Type=111
UFO=111
[Page309]
Name=Page309
Index=135
Address=0809A800
Size=00000800
Type=111
UFO=111
[Page310]
Name=Page310
Index=136
Address=0809B000
Size=00000800
Type=111
UFO=111
[Page311]
Name=Page311
Index=137
Address=0809B800
Size=00000800
Type=111
UFO=111
[Page312]
Name=Page312
Index=138
Address=0809C000
Size=00000800
Type=111
UFO=111
[Page313]
Name=Page313
Index=139
Address=0809C800
Size=00000800
Type=111
UFO=111
[Page314]
Name=Page314
Index=13A
Address=0809D000
Size=00000800
Type=111
UFO=111
[Page315]
Name=Page315
Index=13B
Address=0809D800
Size=00000800
Type=111
UFO=111
[Page316]
Name=Page316
Index=13C
Address=0809E000
Size=00000800
Type=111
UFO=111
[Page317]
Name=Page317
Index=13D
Address=0809E800
Size=00000800
Type=111
UFO=111
[Page318]
Name=Page318
Index=13E
Address=0809F000
Size=00000800
Type=111
UFO=111
[Page319]
Name=Page319
Index=13F
Address=0809F800
Size=00000800
Type=111
UFO=111
[Page320]
Name=Page320
Index=140
Address=080A0000
Size=00000800
Type=111
UFO=111
[Page321]
Name=Page321
Index=141
Address=080A0800
Size=00000800
Type=111
UFO=111
[Page322]
Name=Page322
Index=142
Address=080A1000
Size=00000800
Type=111
UFO=111
[Page323]
Name=Page323
Index=143
Address=080A1800
Size=00000800
Type=111
UFO=111
[Page324]
Name=Page324
Index=144
Address=080A2000
Size=00000800
Type=111
UFO=111
[Page325]
Name=Page325
Index=145
Address=080A2800
Size=00000800
Type=111
UFO=111
[Page326]
Name=Page326
Index=146
Address=080A3000
Size=00000800
Type=111
UFO=111
[Page327]
Name=Page327
Index=147
Address=080A3800
Size=00000800
Type=111
UFO=111
[Page328]
Name=Page328
Index=148
Address=080A4000
Size=00000800
Type=111
UFO=111
[Page329]
Name=Page329
Index=149
Address=080A4800
Size=00000800
Type=111
UFO=111
[Page330]
Name=Page330
Index=14A
Address=080A5000
Size=00000800
Type=111
UFO=111
[Page331]
Name=Page331
Index=14B
Address=080A5800
Size=00000800
Type=111
UFO=111
[Page332]
Name=Page332
Index=14C
Address=080A6000
Size=00000800
Type=111
UFO=111
[Page333]
Name=Page333
Index=14D
Address=080A6800
Size=00000800
Type=111
UFO=111
[Page334]
Name=Page334
Index=14E
Address=080A7000
Size=00000800
Type=111
UFO=111
[Page335]
Name=Page335
Index=14F
Address=080A7800
Size=00000800
Type=111
UFO=111
[Page336]
Name=Page336
Index=150
Address=080A8000
Size=00000800
Type=111
UFO=111
[Page337]
Name=Page337
Index=151
Address=080A8800
Size=00000800
Type=111
UFO=111
[Page338]
Name=Page338
Index=152
Address=080A9000
Size=00000800
Type=111
UFO=111
[Page339]
Name=Page339
Index=153
Address=080A9800
Size=00000800
Type=111
UFO=111
[Page340]
Name=Page340
Index=154
Address=080AA000
Size=00000800
Type=111
UFO=111
[Page341]
Name=Page341
Index=155
Address=080AA800
Size=00000800
Type=111
UFO=111
[Page342]
Name=Page342
Index=156
Address=080AB000
Size=00000800
Type=111
UFO=111
[Page343]
Name=Page343
Index=157
Address=080AB800
Size=00000800
Type=111
UFO=111
[Page344]
Name=Page344
Index=158
Address=080AC000
Size=00000800
Type=111
UFO=111
[Page345]
Name=Page345
Index=159
Address=080AC800
Size=00000800
Type=111
UFO=111
[Page346]
Name=Page346
Index=15A
Address=080AD000
Size=00000800
Type=111
UFO=111
[Page347]
Name=Page347
Index=15B
Address=080AD800
Size=00000800
Type=111
UFO=111
[Page348]
Name=Page348
Index=15C
Address=080AE000
Size=00000800
Type=111
UFO=111
[Page349]
Name=Page349
Index=15D
Address=080AE800
Size=00000800
Type=111
UFO=111
[Page350]
Name=Page350
Index=15E
Address=080AF000
Size=00000800
Type=111
UFO=111
[Page351]
Name=Page351
Index=15F
Address=080AF800
Size=00000800
Type=111
UFO=111
[Page352]
Name=Page352
Index=160
Address=080B0000
Size=00000800
Type=111
UFO=111
[Page353]
Name=Page353
Index=161
Address=080B0800
Size=00000800
Type=111
UFO=111
[Page354]
Name=Page354
Index=162
Address=080B1000
Size=00000800
Type=111
UFO=111
[Page355]
Name=Page355
Index=163
Address=080B1800
Size=00000800
Type=111
UFO=111
[Page356]
Name=Page356
Index=164
Address=080B2000
Size=00000800
Type=111
UFO=111
[Page357]
Name=Page357
Index=165
Address=080B2800
Size=00000800
Type=111
UFO=111
[Page358]
Name=Page358
Index=166
Address=080B3000
Size=00000800
Type=111
UFO=111
[Page359]
Name=Page359
Index=167
Address=080B3800
Size=00000800
Type=111
UFO=111
[Page360]
Name=Page360
Index=168
Address=080B4000
Size=00000800
Type=111
UFO=111
[Page361]
Name=Page361
Index=169
Address=080B4800
Size=00000800
Type=111
UFO=111
[Page362]
Name=Page362
Index=16A
Address=080B5000
Size=00000800
Type=111
UFO=111
[Page363]
Name=Page363
Index=16B
Address=080B5800
Size=00000800
Type=111
UFO=111
[Page364]
Name=Page364
Index=16C
Address=080B6000
Size=00000800
Type=111
UFO=111
[Page365]
Name=Page365
Index=16D
Address=080B6800
Size=00000800
Type=111
UFO=111
[Page366]
Name=Page366
Index=16E
Address=080B7000
Size=00000800
Type=111
UFO=111
[Page367]
Name=Page367
Index=16F
Address=080B7800
Size=00000800
Type=111
UFO=111
[Page368]
Name=Page368
Index=170
Address=080B8000
Size=00000800
Type=111
UFO=111
[Page369]
Name=Page369
Index=171
Address=080B8800
Size=00000800
Type=111
UFO=111
[Page370]
Name=Page370
Index=172
Address=080B9000
Size=00000800
Type=111
UFO=111
[Page371]
Name=Page371
Index=173
Address=080B9800
Size=00000800
Type=111
UFO=111
[Page372]
Name=Page372
Index=174
Address=080BA000
Size=00000800
Type=111
UFO=111
[Page373]
Name=Page373
Index=175
Address=080BA800
Size=00000800
Type=111
UFO=111
[Page374]
Name=Page374
Index=176
Address=080BB000
Size=00000800
Type=111
UFO=111
[Page375]
Name=Page375
Index=177
Address=080BB800
Size=00000800
Type=111
UFO=111
[Page376]
Name=Page376
Index=178
Address=080BC000
Size=00000800
Type=111
UFO=111
[Page377]
Name=Page377
Index=179
Address=080BC800
Size=00000800
Type=111
UFO=111
[Page378]
Name=Page378
Index=17A
Address=080BD000
Size=00000800
Type=111
UFO=111
[Page379]
Name=Page379
Index=17B
Address=080BD800
Size=00000800
Type=111
UFO=111
[Page380]
Name=Page380
Index=17C
Address=080BE000
Size=00000800
Type=111
UFO=111
[Page381]
Name=Page381
Index=17D
Address=080BE800
Size=00000800
Type=111
UFO=111
[Page382]
Name=Page382
Index=17E
Address=080BF000
Size=00000800
Type=111
UFO=111
[Page383]
Name=Page383
Index=17F
Address=080BF800
Size=00000800
Type=111
UFO=111
[Page384]
Name=Page384
Index=180
Address=080C0000
Size=00000800
Type=111
UFO=111
[Page385]
Name=Page385
Index=181
Address=080C0800
Size=00000800
Type=111
UFO=111
[Page386]
Name=Page386
Index=182
Address=080C1000
Size=00000800
Type=111
UFO=111
[Page387]
Name=Page387
Index=183
Address=080C1800
Size=00000800
Type=111
UFO=111
[Page388]
Name=Page388
Index=184
Address=080C2000
Size=00000800
Type=111
UFO=111
[Page389]
Name=Page389
Index=185
Address=080C2800
Size=00000800
Type=111
UFO=111
[Page390]
Name=Page390
Index=186
Address=080C3000
Size=00000800
Type=111
UFO=111
[Page391]
Name=Page391
Index=187
Address=080C3800
Size=00000800
Type=111
UFO=111
[Page392]
Name=Page392
Index=188
Address=080C4000
Size=00000800
Type=111
UFO=111
[Page393]
Name=Page393
Index=189
Address=080C4800
Size=00000800
Type=111
UFO=111
[Page394]
Name=Page394
Index=18A
Address=080C5000
Size=00000800
Type=111
UFO=111
[Page395]
Name=Page395
Index=18B
Address=080C5800
Size=00000800
Type=111
UFO=111
[Page396]
Name=Page396
Index=18C
Address=080C6000
Size=00000800
Type=111
UFO=111
[Page397]
Name=Page397
Index=18D
Address=080C6800
Size=00000800
Type=111
UFO=111
[Page398]
Name=Page398
Index=18E
Address=080C7000
Size=00000800
Type=111
UFO=111
[Page399]
Name=Page399
Index=18F
Address=080C7800
Size=00000800
Type=111
UFO=111
[Page400]
Name=Page400
Index=190
Address=080C8000
Size=00000800
Type=111
UFO=111
[Page401]
Name=Page401
Index=191
Address=080C8800
Size=00000800
Type=111
UFO=111
[Page402]
Name=Page402
Index=192
Address=080C9000
Size=00000800
Type=111
UFO=111
[Page403]
Name=Page403
Index=193
Address=080C9800
Size=00000800
Type=111
UFO=111
[Page404]
Name=Page404
Index=194
Address=080CA000
Size=00000800
Type=111
UFO=111
[Page405]
Name=Page405
Index=195
Address=080CA800
Size=00000800
Type=111
UFO=111
[Page406]
Name=Page406
Index=196
Address=080CB000
Size=00000800
Type=111
UFO=111
[Page407]
Name=Page407
Index=197
Address=080CB800
Size=00000800
Type=111
UFO=111
[Page408]
Name=Page408
Index=198
Address=080CC000
Size=00000800
Type=111
UFO=111
[Page409]
Name=Page409
Index=199
Address=080CC800
Size=00000800
Type=111
UFO=111
[Page410]
Name=Page410
Index=19A
Address=080CD000
Size=00000800
Type=111
UFO=111
[Page411]
Name=Page411
Index=19B
Address=080CD800
Size=00000800
Type=111
UFO=111
[Page412]
Name=Page412
Index=19C
Address=080CE000
Size=00000800
Type=111
UFO=111
[Page413]
Name=Page413
Index=19D
Address=080CE800
Size=00000800
Type=111
UFO=111
[Page414]
Name=Page414
Index=19E
Address=080CF000
Size=00000800
Type=111
UFO=111
[Page415]
Name=Page415
Index=19F
Address=080CF800
Size=00000800
Type=111
UFO=111
[Page416]
Name=Page416
Index=1A0
Address=080D0000
Size=00000800
Type=111
UFO=111
[Page417]
Name=Page417
Index=1A1
Address=080D0800
Size=00000800
Type=111
UFO=111
[Page418]
Name=Page418
Index=1A2
Address=080D1000
Size=00000800
Type=111
UFO=111
[Page419]
Name=Page419
Index=1A3
Address=080D1800
Size=00000800
Type=111
UFO=111
[Page420]
Name=Page420
Index=1A4
Address=080D2000
Size=00000800
Type=111
UFO=111
[Page421]
Name=Page421
Index=1A5
Address=080D2800
Size=00000800
Type=111
UFO=111
[Page422]
Name=Page422
Index=1A6
Address=080D3000
Size=00000800
Type=111
UFO=111
[Page423]
Name=Page423
Index=1A7
Address=080D3800
Size=00000800
Type=111
UFO=111
[Page424]
Name=Page424
Index=1A8
Address=080D4000
Size=00000800
Type=111
UFO=111
[Page425]
Name=Page425
Index=1A9
Address=080D4800
Size=00000800
Type=111
UFO=111
[Page426]
Name=Page426
Index=1AA
Address=080D5000
Size=00000800
Type=111
UFO=111
[Page427]
Name=Page427
Index=1AB
Address=080D5800
Size=00000800
Type=111
UFO=111
[Page428]
Name=Page428
Index=1AC
Address=080D6000
Size=00000800
Type=111
UFO=111
[Page429]
Name=Page429
Index=1AD
Address=080D6800
Size=00000800
Type=111
UFO=111
[Page430]
Name=Page430
Index=1AE
Address=080D7000
Size=00000800
Type=111
UFO=111
[Page431]
Name=Page431
Index=1AF
Address=080D7800
Size=00000800
Type=111
UFO=111
[Page432]
Name=Page432
Index=1B0
Address=080D8000
Size=00000800
Type=111
UFO=111
[Page433]
Name=Page433
Index=1B1
Address=080D8800
Size=00000800
Type=111
UFO=111
[Page434]
Name=Page434
Index=1B2
Address=080D9000
Size=00000800
Type=111
UFO=111
[Page435]
Name=Page435
Index=1B3
Address=080D9800
Size=00000800
Type=111
UFO=111
[Page436]
Name=Page436
Index=1B4
Address=080DA000
Size=00000800
Type=111
UFO=111
[Page437]
Name=Page437
Index=1B5
Address=080DA800
Size=00000800
Type=111
UFO=111
[Page438]
Name=Page438
Index=1B6
Address=080DB000
Size=00000800
Type=111
UFO=111
[Page439]
Name=Page439
Index=1B7
Address=080DB800
Size=00000800
Type=111
UFO=111
[Page440]
Name=Page440
Index=1B8
Address=080DC000
Size=00000800
Type=111
UFO=111
[Page441]
Name=Page441
Index=1B9
Address=080DC800
Size=00000800
Type=111
UFO=111
[Page442]
Name=Page442
Index=1BA
Address=080DD000
Size=00000800
Type=111
UFO=111
[Page443]
Name=Page443
Index=1BB
Address=080DD800
Size=00000800
Type=111
UFO=111
[Page444]
Name=Page444
Index=1BC
Address=080DE000
Size=00000800
Type=111
UFO=111
[Page445]
Name=Page445
Index=1BD
Address=080DE800
Size=00000800
Type=111
UFO=111
[Page446]
Name=Page446
Index=1BE
Address=080DF000
Size=00000800
Type=111
UFO=111
[Page447]
Name=Page447
Index=1BF
Address=080DF800
Size=00000800
Type=111
UFO=111
[Page448]
Name=Page448
Index=1C0
Address=080E0000
Size=00000800
Type=111
UFO=111
[Page449]
Name=Page449
Index=1C1
Address=080E0800
Size=00000800
Type=111
UFO=111
[Page450]
Name=Page450
Index=1C2
Address=080E1000
Size=00000800
Type=111
UFO=111
[Page451]
Name=Page451
Index=1C3
Address=080E1800
Size=00000800
Type=111
UFO=111
[Page452]
Name=Page452
Index=1C4
Address=080E2000
Size=00000800
Type=111
UFO=111
[Page453]
Name=Page453
Index=1C5
Address=080E2800
Size=00000800
Type=111
UFO=111
[Page454]
Name=Page454
Index=1C6
Address=080E3000
Size=00000800
Type=111
UFO=111
[Page455]
Name=Page455
Index=1C7
Address=080E3800
Size=00000800
Type=111
UFO=111
[Page456]
Name=Page456
Index=1C8
Address=080E4000
Size=00000800
Type=111
UFO=111
[Page457]
Name=Page457
Index=1C9
Address=080E4800
Size=00000800
Type=111
UFO=111
[Page458]
Name=Page458
Index=1CA
Address=080E5000
Size=00000800
Type=111
UFO=111
[Page459]
Name=Page459
Index=1CB
Address=080E5800
Size=00000800
Type=111
UFO=111
[Page460]
Name=Page460
Index=1CC
Address=080E6000
Size=00000800
Type=111
UFO=111
[Page461]
Name=Page461
Index=1CD
Address=080E6800
Size=00000800
Type=111
UFO=111
[Page462]
Name=Page462
Index=1CE
Address=080E7000
Size=00000800
Type=111
UFO=111
[Page463]
Name=Page463
Index=1CF
Address=080E7800
Size=00000800
Type=111
UFO=111
[Page464]
Name=Page464
Index=1D0
Address=080E8000
Size=00000800
Type=111
UFO=111
[Page465]
Name=Page465
Index=1D1
Address=080E8800
Size=00000800
Type=111
UFO=111
[Page466]
Name=Page466
Index=1D2
Address=080E9000
Size=00000800
Type=111
UFO=111
[Page467]
Name=Page467
Index=1D3
Address=080E9800
Size=00000800
Type=111
UFO=111
[Page468]
Name=Page468
Index=1D4
Address=080EA000
Size=00000800
Type=111
UFO=111
[Page469]
Name=Page469
Index=1D5
Address=080EA800
Size=00000800
Type=111
UFO=111
[Page470]
Name=Page470
Index=1D6
Address=080EB000
Size=00000800
Type=111
UFO=111
[Page471]
Name=Page471
Index=1D7
Address=080EB800
Size=00000800
Type=111
UFO=111
[Page472]
Name=Page472
Index=1D8
Address=080EC000
Size=00000800
Type=111
UFO=111
[Page473]
Name=Page473
Index=1D9
Address=080EC800
Size=00000800
Type=111
UFO=111
[Page474]
Name=Page474
Index=1DA
Address=080ED000
Size=00000800
Type=111
UFO=111
[Page475]
Name=Page475
Index=1DB
Address=080ED800
Size=00000800
Type=111
UFO=111
[Page476]
Name=Page476
Index=1DC
Address=080EE000
Size=00000800
Type=111
UFO=111
[Page477]
Name=Page477
Index=1DD
Address=080EE800
Size=00000800
Type=111
UFO=111
[Page478]
Name=Page478
Index=1DE
Address=080EF000
Size=00000800
Type=111
UFO=111
[Page479]
Name=Page479
Index=1DF
Address=080EF800
Size=00000800
Type=111
UFO=111
[Page480]
Name=Page480
Index=1E0
Address=080F0000
Size=00000800
Type=111
UFO=111
[Page481]
Name=Page481
Index=1E1
Address=080F0800
Size=00000800
Type=111
UFO=111
[Page482]
Name=Page482
Index=1E2
Address=080F1000
Size=00000800
Type=111
UFO=111
[Page483]
Name=Page483
Index=1E3
Address=080F1800
Size=00000800
Type=111
UFO=111
[Page484]
Name=Page484
Index=1E4
Address=080F2000
Size=00000800
Type=111
UFO=111
[Page485]
Name=Page485
Index=1E5
Address=080F2800
Size=00000800
Type=111
UFO=111
[Page486]
Name=Page486
Index=1E6
Address=080F3000
Size=00000800
Type=111
UFO=111
[Page487]
Name=Page487
Index=1E7
Address=080F3800
Size=00000800
Type=111
UFO=111
[Page488]
Name=Page488
Index=1E8
Address=080F4000
Size=00000800
Type=111
UFO=111
[Page489]
Name=Page489
Index=1E9
Address=080F4800
Size=00000800
Type=111
UFO=111
[Page490]
Name=Page490
Index=1EA
Address=080F5000
Size=00000800
Type=111
UFO=111
[Page491]
Name=Page491
Index=1EB
Address=080F5800
Size=00000800
Type=111
UFO=111
[Page492]
Name=Page492
Index=1EC
Address=080F6000
Size=00000800
Type=111
UFO=111
[Page493]
Name=Page493
Index=1ED
Address=080F6800
Size=00000800
Type=111
UFO=111
[Page494]
Name=Page494
Index=1EE
Address=080F7000
Size=00000800
Type=111
UFO=111
[Page495]
Name=Page495
Index=1EF
Address=080F7800
Size=00000800
Type=111
UFO=111
[Page496]
Name=Page496
Index=1F0
Address=080F8000
Size=00000800
Type=111
UFO=111
[Page497]
Name=Page497
Index=1F1
Address=080F8800
Size=00000800
Type=111
UFO=111
[Page498]
Name=Page498
Index=1F2
Address=080F9000
Size=00000800
Type=111
UFO=111
[Page499]
Name=Page499
Index=1F3
Address=080F9800
Size=00000800
Type=111
UFO=111
[Page500]
Name=Page500
Index=1F4
Address=080FA000
Size=00000800
Type=111
UFO=111
[Page501]
Name=Page501
Index=1F5
Address=080FA800
Size=00000800
Type=111
UFO=111
[Page502]
Name=Page502
Index=1F6
Address=080FB000
Size=00000800
Type=111
UFO=111
[Page503]
Name=Page503
Index=1F7
Address=080FB800
Size=00000800
Type=111
UFO=111
[Page504]
Name=Page504
Index=1F8
Address=080FC000
Size=00000800
Type=111
UFO=111
[Page505]
Name=Page505
Index=1F9
Address=080FC800
Size=00000800
Type=111
UFO=111
[Page506]
Name=Page506
Index=1FA
Address=080FD000
Size=00000800
Type=111
UFO=111
[Page507]
Name=Page507
Index=1FB
Address=080FD800
Size=00000800
Type=111
UFO=111
[Page508]
Name=Page508
Index=1FC
Address=080FE000
Size=00000800
Type=111
UFO=111
[Page509]
Name=Page509
Index=1FD
Address=080FE800
Size=00000800
Type=111
UFO=111
[Page510]
Name=Page510
Index=1FE
Address=080FF000
Size=00000800
Type=111
UFO=111
[Page511]
Name=Page511
Index=1FF
Address=080FF800
Size=00000800
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM32_XL-density_768K.STmap
0,0 → 1,5403
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM32_XL-density_768K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM32_XL-density_768K
PID=0430
BID=1FFFF7D6
FlashSize=0300
RAMSize=0060
PacketSize=FF
ACKVAL=79
MAPNAME=Pages
PagesPerSector=2
family = 1;
 
[Page0]
Name=Page0
Index=00
Address=08000000
Size=00000400
Type=111
UFO=111
[Page1]
Name=Page1
Index=01
Address=08000400
Size=00000400
Type=111
UFO=111
[Page2]
Name=Page2
Index=02
Address=08000800
Size=00000400
Type=111
UFO=111
[Page3]
Name=Page3
Index=03
Address=08000C00
Size=00000400
Type=111
UFO=111
[Page4]
Name=Page4
Index=04
Address=08001000
Size=00000400
Type=111
UFO=111
[Page5]
Name=Page5
Index=05
Address=08001400
Size=00000400
Type=111
UFO=111
[Page6]
Name=Page6
Index=06
Address=08001800
Size=00000400
Type=111
UFO=111
[Page7]
Name=Page7
Index=07
Address=08001C00
Size=00000400
Type=111
UFO=111
[Page8]
Name=Page8
Index=08
Address=08002000
Size=00000400
Type=111
UFO=111
[Page9]
Name=Page9
Index=09
Address=08002400
Size=00000400
Type=111
UFO=111
[Page10]
Name=Page10
Index=0A
Address=08002800
Size=00000400
Type=111
UFO=111
[Page11]
Name=Page11
Index=0B
Address=08002C00
Size=00000400
Type=111
UFO=111
[Page12]
Name=Page12
Index=0C
Address=08003000
Size=00000400
Type=111
UFO=111
[Page13]
Name=Page13
Index=0D
Address=08003400
Size=00000400
Type=111
UFO=111
[Page14]
Name=Page14
Index=0E
Address=08003800
Size=00000400
Type=111
UFO=111
[Page15]
Name=Page15
Index=0F
Address=08003C00
Size=00000400
Type=111
UFO=111
[Page16]
Name=Page16
Index=10
Address=08004000
Size=00000400
Type=111
UFO=111
[Page17]
Name=Page17
Index=11
Address=08004400
Size=00000400
Type=111
UFO=111
[Page18]
Name=Page18
Index=12
Address=08004800
Size=00000400
Type=111
UFO=111
[Page19]
Name=Page19
Index=13
Address=08004C00
Size=00000400
Type=111
UFO=111
[Page20]
Name=Page20
Index=14
Address=08005000
Size=00000400
Type=111
UFO=111
[Page21]
Name=Page21
Index=15
Address=08005400
Size=00000400
Type=111
UFO=111
[Page22]
Name=Page22
Index=16
Address=08005800
Size=00000400
Type=111
UFO=111
[Page23]
Name=Page23
Index=17
Address=08005C00
Size=00000400
Type=111
UFO=111
[Page24]
Name=Page24
Index=18
Address=08006000
Size=00000400
Type=111
UFO=111
[Page25]
Name=Page25
Index=19
Address=08006400
Size=00000400
Type=111
UFO=111
[Page26]
Name=Page26
Index=1A
Address=08006800
Size=00000400
Type=111
UFO=111
[Page27]
Name=Page27
Index=1B
Address=08006C00
Size=00000400
Type=111
UFO=111
[Page28]
Name=Page28
Index=1C
Address=08007000
Size=00000400
Type=111
UFO=111
[Page29]
Name=Page29
Index=1D
Address=08007400
Size=00000400
Type=111
UFO=111
[Page30]
Name=Page30
Index=1E
Address=08007800
Size=00000400
Type=111
UFO=111
[Page31]
Name=Page31
Index=1F
Address=08007C00
Size=00000400
Type=111
UFO=111
[Page32]
Name=Page32
Index=20
Address=08008000
Size=00000400
Type=111
UFO=111
[Page33]
Name=Page33
Index=21
Address=08008400
Size=00000400
Type=111
UFO=111
[Page34]
Name=Page34
Index=22
Address=08008800
Size=00000400
Type=111
UFO=111
[Page35]
Name=Page35
Index=23
Address=08008C00
Size=00000400
Type=111
UFO=111
[Page36]
Name=Page36
Index=24
Address=08009000
Size=00000400
Type=111
UFO=111
[Page37]
Name=Page37
Index=25
Address=08009400
Size=00000400
Type=111
UFO=111
[Page38]
Name=Page38
Index=26
Address=08009800
Size=00000400
Type=111
UFO=111
[Page39]
Name=Page39
Index=27
Address=08009C00
Size=00000400
Type=111
UFO=111
[Page40]
Name=Page40
Index=28
Address=0800A000
Size=00000400
Type=111
UFO=111
[Page41]
Name=Page41
Index=29
Address=0800A400
Size=00000400
Type=111
UFO=111
[Page42]
Name=Page42
Index=2A
Address=0800A800
Size=00000400
Type=111
UFO=111
[Page43]
Name=Page43
Index=2B
Address=0800AC00
Size=00000400
Type=111
UFO=111
[Page44]
Name=Page44
Index=2C
Address=0800B000
Size=00000400
Type=111
UFO=111
[Page45]
Name=Page45
Index=2D
Address=0800B400
Size=00000400
Type=111
UFO=111
[Page46]
Name=Page46
Index=2E
Address=0800B800
Size=00000400
Type=111
UFO=111
[Page47]
Name=Page47
Index=2F
Address=0800BC00
Size=00000400
Type=111
UFO=111
[Page48]
Name=Page48
Index=30
Address=0800C000
Size=00000400
Type=111
UFO=111
[Page49]
Name=Page49
Index=31
Address=0800C400
Size=00000400
Type=111
UFO=111
[Page50]
Name=Page50
Index=32
Address=0800C800
Size=00000400
Type=111
UFO=111
[Page51]
Name=Page51
Index=33
Address=0800CC00
Size=00000400
Type=111
UFO=111
[Page52]
Name=Page52
Index=34
Address=0800D000
Size=00000400
Type=111
UFO=111
[Page53]
Name=Page53
Index=35
Address=0800D400
Size=00000400
Type=111
UFO=111
[Page54]
Name=Page54
Index=36
Address=0800D800
Size=00000400
Type=111
UFO=111
[Page55]
Name=Page55
Index=37
Address=0800DC00
Size=00000400
Type=111
UFO=111
[Page56]
Name=Page56
Index=38
Address=0800E000
Size=00000400
Type=111
UFO=111
[Page57]
Name=Page57
Index=39
Address=0800E400
Size=00000400
Type=111
UFO=111
[Page58]
Name=Page58
Index=3A
Address=0800E800
Size=00000400
Type=111
UFO=111
[Page59]
Name=Page59
Index=3B
Address=0800EC00
Size=00000400
Type=111
UFO=111
[Page60]
Name=Page60
Index=3C
Address=0800F000
Size=00000400
Type=111
UFO=111
[Page61]
Name=Page61
Index=3D
Address=0800F400
Size=00000400
Type=111
UFO=111
[Page62]
Name=Page62
Index=3E
Address=0800F800
Size=00000400
Type=111
UFO=111
[Page63]
Name=Page63
Index=3F
Address=0800FC00
Size=00000400
Type=111
UFO=111
[Page64]
Name=Page64
Index=40
Address=08010000
Size=00000400
Type=111
UFO=111
[Page65]
Name=Page65
Index=41
Address=08010400
Size=00000400
Type=111
UFO=111
[Page66]
Name=Page66
Index=42
Address=08010800
Size=00000400
Type=111
UFO=111
[Page67]
Name=Page67
Index=43
Address=08010C00
Size=00000400
Type=111
UFO=111
[Page68]
Name=Page68
Index=44
Address=08011000
Size=00000400
Type=111
UFO=111
[Page69]
Name=Page69
Index=45
Address=08011400
Size=00000400
Type=111
UFO=111
[Page70]
Name=Page70
Index=46
Address=08011800
Size=00000400
Type=111
UFO=111
[Page71]
Name=Page71
Index=47
Address=08011C00
Size=00000400
Type=111
UFO=111
[Page72]
Name=Page72
Index=48
Address=08012000
Size=00000400
Type=111
UFO=111
[Page73]
Name=Page73
Index=49
Address=08012400
Size=00000400
Type=111
UFO=111
[Page74]
Name=Page74
Index=4A
Address=08012800
Size=00000400
Type=111
UFO=111
[Page75]
Name=Page75
Index=4B
Address=08012C00
Size=00000400
Type=111
UFO=111
[Page76]
Name=Page76
Index=4C
Address=08013000
Size=00000400
Type=111
UFO=111
[Page77]
Name=Page77
Index=4D
Address=08013400
Size=00000400
Type=111
UFO=111
[Page78]
Name=Page78
Index=4E
Address=08013800
Size=00000400
Type=111
UFO=111
[Page79]
Name=Page79
Index=4F
Address=08013C00
Size=00000400
Type=111
UFO=111
[Page80]
Name=Page80
Index=50
Address=08014000
Size=00000400
Type=111
UFO=111
[Page81]
Name=Page81
Index=51
Address=08014400
Size=00000400
Type=111
UFO=111
[Page82]
Name=Page82
Index=52
Address=08014800
Size=00000400
Type=111
UFO=111
[Page83]
Name=Page83
Index=53
Address=08014C00
Size=00000400
Type=111
UFO=111
[Page84]
Name=Page84
Index=54
Address=08015000
Size=00000400
Type=111
UFO=111
[Page85]
Name=Page85
Index=55
Address=08015400
Size=00000400
Type=111
UFO=111
[Page86]
Name=Page86
Index=56
Address=08015800
Size=00000400
Type=111
UFO=111
[Page87]
Name=Page87
Index=57
Address=08015C00
Size=00000400
Type=111
UFO=111
[Page88]
Name=Page88
Index=58
Address=08016000
Size=00000400
Type=111
UFO=111
[Page89]
Name=Page89
Index=59
Address=08016400
Size=00000400
Type=111
UFO=111
[Page90]
Name=Page90
Index=5A
Address=08016800
Size=00000400
Type=111
UFO=111
[Page91]
Name=Page91
Index=5B
Address=08016C00
Size=00000400
Type=111
UFO=111
[Page92]
Name=Page92
Index=5C
Address=08017000
Size=00000400
Type=111
UFO=111
[Page93]
Name=Page93
Index=5D
Address=08017400
Size=00000400
Type=111
UFO=111
[Page94]
Name=Page94
Index=5E
Address=08017800
Size=00000400
Type=111
UFO=111
[Page95]
Name=Page95
Index=5F
Address=08017C00
Size=00000400
Type=111
UFO=111
[Page96]
Name=Page96
Index=60
Address=08018000
Size=00000400
Type=111
UFO=111
[Page97]
Name=Page97
Index=61
Address=08018400
Size=00000400
Type=111
UFO=111
[Page98]
Name=Page98
Index=62
Address=08018800
Size=00000400
Type=111
UFO=111
[Page99]
Name=Page99
Index=63
Address=08018C00
Size=00000400
Type=111
UFO=111
[Page100]
Name=Page100
Index=64
Address=08019000
Size=00000400
Type=111
UFO=111
[Page101]
Name=Page101
Index=65
Address=08019400
Size=00000400
Type=111
UFO=111
[Page102]
Name=Page102
Index=66
Address=08019800
Size=00000400
Type=111
UFO=111
[Page103]
Name=Page103
Index=67
Address=08019C00
Size=00000400
Type=111
UFO=111
[Page104]
Name=Page104
Index=68
Address=0801A000
Size=00000400
Type=111
UFO=111
[Page105]
Name=Page105
Index=69
Address=0801A400
Size=00000400
Type=111
UFO=111
[Page106]
Name=Page106
Index=6A
Address=0801A800
Size=00000400
Type=111
UFO=111
[Page107]
Name=Page107
Index=6B
Address=0801AC00
Size=00000400
Type=111
UFO=111
[Page108]
Name=Page108
Index=6C
Address=0801B000
Size=00000400
Type=111
UFO=111
[Page109]
Name=Page109
Index=6D
Address=0801B400
Size=00000400
Type=111
UFO=111
[Page110]
Name=Page110
Index=6E
Address=0801B800
Size=00000400
Type=111
UFO=111
[Page111]
Name=Page111
Index=6F
Address=0801BC00
Size=00000400
Type=111
UFO=111
[Page112]
Name=Page112
Index=70
Address=0801C000
Size=00000400
Type=111
UFO=111
[Page113]
Name=Page113
Index=71
Address=0801C400
Size=00000400
Type=111
UFO=111
[Page114]
Name=Page114
Index=72
Address=0801C800
Size=00000400
Type=111
UFO=111
[Page115]
Name=Page115
Index=73
Address=0801CC00
Size=00000400
Type=111
UFO=111
[Page116]
Name=Page116
Index=74
Address=0801D000
Size=00000400
Type=111
UFO=111
[Page117]
Name=Page117
Index=75
Address=0801D400
Size=00000400
Type=111
UFO=111
[Page118]
Name=Page118
Index=76
Address=0801D800
Size=00000400
Type=111
UFO=111
[Page119]
Name=Page119
Index=77
Address=0801DC00
Size=00000400
Type=111
UFO=111
[Page120]
Name=Page120
Index=78
Address=0801E000
Size=00000400
Type=111
UFO=111
[Page121]
Name=Page121
Index=79
Address=0801E400
Size=00000400
Type=111
UFO=111
[Page122]
Name=Page122
Index=7A
Address=0801E800
Size=00000400
Type=111
UFO=111
[Page123]
Name=Page123
Index=7B
Address=0801EC00
Size=00000400
Type=111
UFO=111
[Page124]
Name=Page124
Index=7C
Address=0801F000
Size=00000400
Type=111
UFO=111
[Page125]
Name=Page125
Index=7D
Address=0801F400
Size=00000400
Type=111
UFO=111
[Page126]
Name=Page126
Index=7E
Address=0801F800
Size=00000400
Type=111
UFO=111
[Page127]
Name=Page127
Index=7F
Address=0801FC00
Size=00000400
Type=111
UFO=111
[Page128]
Name=Page128
Index=80
Address=08020000
Size=00000400
Type=111
UFO=111
[Page129]
Name=Page129
Index=81
Address=08020400
Size=00000400
Type=111
UFO=111
[Page130]
Name=Page130
Index=82
Address=08020800
Size=00000400
Type=111
UFO=111
[Page131]
Name=Page131
Index=83
Address=08020C00
Size=00000400
Type=111
UFO=111
[Page132]
Name=Page132
Index=84
Address=08021000
Size=00000400
Type=111
UFO=111
[Page133]
Name=Page133
Index=85
Address=08021400
Size=00000400
Type=111
UFO=111
[Page134]
Name=Page134
Index=86
Address=08021800
Size=00000400
Type=111
UFO=111
[Page135]
Name=Page135
Index=87
Address=08021C00
Size=00000400
Type=111
UFO=111
[Page136]
Name=Page136
Index=88
Address=08022000
Size=00000400
Type=111
UFO=111
[Page137]
Name=Page137
Index=89
Address=08022400
Size=00000400
Type=111
UFO=111
[Page138]
Name=Page138
Index=8A
Address=08022800
Size=00000400
Type=111
UFO=111
[Page139]
Name=Page139
Index=8B
Address=08022C00
Size=00000400
Type=111
UFO=111
[Page140]
Name=Page140
Index=8C
Address=08023000
Size=00000400
Type=111
UFO=111
[Page141]
Name=Page141
Index=8D
Address=08023400
Size=00000400
Type=111
UFO=111
[Page142]
Name=Page142
Index=8E
Address=08023800
Size=00000400
Type=111
UFO=111
[Page143]
Name=Page143
Index=8F
Address=08023C00
Size=00000400
Type=111
UFO=111
[Page144]
Name=Page144
Index=90
Address=08024000
Size=00000400
Type=111
UFO=111
[Page145]
Name=Page145
Index=91
Address=08024400
Size=00000400
Type=111
UFO=111
[Page146]
Name=Page146
Index=92
Address=08024800
Size=00000400
Type=111
UFO=111
[Page147]
Name=Page147
Index=93
Address=08024C00
Size=00000400
Type=111
UFO=111
[Page148]
Name=Page148
Index=94
Address=08025000
Size=00000400
Type=111
UFO=111
[Page149]
Name=Page149
Index=95
Address=08025400
Size=00000400
Type=111
UFO=111
[Page150]
Name=Page150
Index=96
Address=08025800
Size=00000400
Type=111
UFO=111
[Page151]
Name=Page151
Index=97
Address=08025C00
Size=00000400
Type=111
UFO=111
[Page152]
Name=Page152
Index=98
Address=08026000
Size=00000400
Type=111
UFO=111
[Page153]
Name=Page153
Index=99
Address=08026400
Size=00000400
Type=111
UFO=111
[Page154]
Name=Page154
Index=9A
Address=08026800
Size=00000400
Type=111
UFO=111
[Page155]
Name=Page155
Index=9B
Address=08026C00
Size=00000400
Type=111
UFO=111
[Page156]
Name=Page156
Index=9C
Address=08027000
Size=00000400
Type=111
UFO=111
[Page157]
Name=Page157
Index=9D
Address=08027400
Size=00000400
Type=111
UFO=111
[Page158]
Name=Page158
Index=9E
Address=08027800
Size=00000400
Type=111
UFO=111
[Page159]
Name=Page159
Index=9F
Address=08027C00
Size=00000400
Type=111
UFO=111
[Page160]
Name=Page160
Index=A0
Address=08028000
Size=00000400
Type=111
UFO=111
[Page161]
Name=Page161
Index=A1
Address=08028400
Size=00000400
Type=111
UFO=111
[Page162]
Name=Page162
Index=A2
Address=08028800
Size=00000400
Type=111
UFO=111
[Page163]
Name=Page163
Index=A3
Address=08028C00
Size=00000400
Type=111
UFO=111
[Page164]
Name=Page164
Index=A4
Address=08029000
Size=00000400
Type=111
UFO=111
[Page165]
Name=Page165
Index=A5
Address=08029400
Size=00000400
Type=111
UFO=111
[Page166]
Name=Page166
Index=A6
Address=08029800
Size=00000400
Type=111
UFO=111
[Page167]
Name=Page167
Index=A7
Address=08029C00
Size=00000400
Type=111
UFO=111
[Page168]
Name=Page168
Index=A8
Address=0802A000
Size=00000400
Type=111
UFO=111
[Page169]
Name=Page169
Index=A9
Address=0802A400
Size=00000400
Type=111
UFO=111
[Page170]
Name=Page170
Index=AA
Address=0802A800
Size=00000400
Type=111
UFO=111
[Page171]
Name=Page171
Index=AB
Address=0802AC00
Size=00000400
Type=111
UFO=111
[Page172]
Name=Page172
Index=AC
Address=0802B000
Size=00000400
Type=111
UFO=111
[Page173]
Name=Page173
Index=AD
Address=0802B400
Size=00000400
Type=111
UFO=111
[Page174]
Name=Page174
Index=AE
Address=0802B800
Size=00000400
Type=111
UFO=111
[Page175]
Name=Page175
Index=AF
Address=0802BC00
Size=00000400
Type=111
UFO=111
[Page176]
Name=Page176
Index=B0
Address=0802C000
Size=00000400
Type=111
UFO=111
[Page177]
Name=Page177
Index=B1
Address=0802C400
Size=00000400
Type=111
UFO=111
[Page178]
Name=Page178
Index=B2
Address=0802C800
Size=00000400
Type=111
UFO=111
[Page179]
Name=Page179
Index=B3
Address=0802CC00
Size=00000400
Type=111
UFO=111
[Page180]
Name=Page180
Index=B4
Address=0802D000
Size=00000400
Type=111
UFO=111
[Page181]
Name=Page181
Index=B5
Address=0802D400
Size=00000400
Type=111
UFO=111
[Page182]
Name=Page182
Index=B6
Address=0802D800
Size=00000400
Type=111
UFO=111
[Page183]
Name=Page183
Index=B7
Address=0802DC00
Size=00000400
Type=111
UFO=111
[Page184]
Name=Page184
Index=B8
Address=0802E000
Size=00000400
Type=111
UFO=111
[Page185]
Name=Page185
Index=B9
Address=0802E400
Size=00000400
Type=111
UFO=111
[Page186]
Name=Page186
Index=BA
Address=0802E800
Size=00000400
Type=111
UFO=111
[Page187]
Name=Page187
Index=BB
Address=0802EC00
Size=00000400
Type=111
UFO=111
[Page188]
Name=Page188
Index=BC
Address=0802F000
Size=00000400
Type=111
UFO=111
[Page189]
Name=Page189
Index=BD
Address=0802F400
Size=00000400
Type=111
UFO=111
[Page190]
Name=Page190
Index=BE
Address=0802F800
Size=00000400
Type=111
UFO=111
[Page191]
Name=Page191
Index=BF
Address=0802FC00
Size=00000400
Type=111
UFO=111
[Page192]
Name=Page192
Index=C0
Address=08030000
Size=00000400
Type=111
UFO=111
[Page193]
Name=Page193
Index=C1
Address=08030400
Size=00000400
Type=111
UFO=111
[Page194]
Name=Page194
Index=C2
Address=08030800
Size=00000400
Type=111
UFO=111
[Page195]
Name=Page195
Index=C3
Address=08030C00
Size=00000400
Type=111
UFO=111
[Page196]
Name=Page196
Index=C4
Address=08031000
Size=00000400
Type=111
UFO=111
[Page197]
Name=Page197
Index=C5
Address=08031400
Size=00000400
Type=111
UFO=111
[Page198]
Name=Page198
Index=C6
Address=08031800
Size=00000400
Type=111
UFO=111
[Page199]
Name=Page199
Index=C7
Address=08031C00
Size=00000400
Type=111
UFO=111
[Page200]
Name=Page200
Index=C8
Address=08032000
Size=00000400
Type=111
UFO=111
[Page201]
Name=Page201
Index=C9
Address=08032400
Size=00000400
Type=111
UFO=111
[Page202]
Name=Page202
Index=CA
Address=08032800
Size=00000400
Type=111
UFO=111
[Page203]
Name=Page203
Index=CB
Address=08032C00
Size=00000400
Type=111
UFO=111
[Page204]
Name=Page204
Index=CC
Address=08033000
Size=00000400
Type=111
UFO=111
[Page205]
Name=Page205
Index=CD
Address=08033400
Size=00000400
Type=111
UFO=111
[Page206]
Name=Page206
Index=CE
Address=08033800
Size=00000400
Type=111
UFO=111
[Page207]
Name=Page207
Index=CF
Address=08033C00
Size=00000400
Type=111
UFO=111
[Page208]
Name=Page208
Index=D0
Address=08034000
Size=00000400
Type=111
UFO=111
[Page209]
Name=Page209
Index=D1
Address=08034400
Size=00000400
Type=111
UFO=111
[Page210]
Name=Page210
Index=D2
Address=08034800
Size=00000400
Type=111
UFO=111
[Page211]
Name=Page211
Index=D3
Address=08034C00
Size=00000400
Type=111
UFO=111
[Page212]
Name=Page212
Index=D4
Address=08035000
Size=00000400
Type=111
UFO=111
[Page213]
Name=Page213
Index=D5
Address=08035400
Size=00000400
Type=111
UFO=111
[Page214]
Name=Page214
Index=D6
Address=08035800
Size=00000400
Type=111
UFO=111
[Page215]
Name=Page215
Index=D7
Address=08035C00
Size=00000400
Type=111
UFO=111
[Page216]
Name=Page216
Index=D8
Address=08036000
Size=00000400
Type=111
UFO=111
[Page217]
Name=Page217
Index=D9
Address=08036400
Size=00000400
Type=111
UFO=111
[Page218]
Name=Page218
Index=DA
Address=08036800
Size=00000400
Type=111
UFO=111
[Page219]
Name=Page219
Index=DB
Address=08036C00
Size=00000400
Type=111
UFO=111
[Page220]
Name=Page220
Index=DC
Address=08037000
Size=00000400
Type=111
UFO=111
[Page221]
Name=Page221
Index=DD
Address=08037400
Size=00000400
Type=111
UFO=111
[Page222]
Name=Page222
Index=DE
Address=08037800
Size=00000400
Type=111
UFO=111
[Page223]
Name=Page223
Index=DF
Address=08037C00
Size=00000400
Type=111
UFO=111
[Page224]
Name=Page224
Index=E0
Address=08038000
Size=00000400
Type=111
UFO=111
[Page225]
Name=Page225
Index=E1
Address=08038400
Size=00000400
Type=111
UFO=111
[Page226]
Name=Page226
Index=E2
Address=08038800
Size=00000400
Type=111
UFO=111
[Page227]
Name=Page227
Index=E3
Address=08038C00
Size=00000400
Type=111
UFO=111
[Page228]
Name=Page228
Index=E4
Address=08039000
Size=00000400
Type=111
UFO=111
[Page229]
Name=Page229
Index=E5
Address=08039400
Size=00000400
Type=111
UFO=111
[Page230]
Name=Page230
Index=E6
Address=08039800
Size=00000400
Type=111
UFO=111
[Page231]
Name=Page231
Index=E7
Address=08039C00
Size=00000400
Type=111
UFO=111
[Page232]
Name=Page232
Index=E8
Address=0803A000
Size=00000400
Type=111
UFO=111
[Page233]
Name=Page233
Index=E9
Address=0803A400
Size=00000400
Type=111
UFO=111
[Page234]
Name=Page234
Index=EA
Address=0803A800
Size=00000400
Type=111
UFO=111
[Page235]
Name=Page235
Index=EB
Address=0803AC00
Size=00000400
Type=111
UFO=111
[Page236]
Name=Page236
Index=EC
Address=0803B000
Size=00000400
Type=111
UFO=111
[Page237]
Name=Page237
Index=ED
Address=0803B400
Size=00000400
Type=111
UFO=111
[Page238]
Name=Page238
Index=EE
Address=0803B800
Size=00000400
Type=111
UFO=111
[Page239]
Name=Page239
Index=EF
Address=0803BC00
Size=00000400
Type=111
UFO=111
[Page240]
Name=Page240
Index=F0
Address=0803C000
Size=00000400
Type=111
UFO=111
[Page241]
Name=Page241
Index=F1
Address=0803C400
Size=00000400
Type=111
UFO=111
[Page242]
Name=Page242
Index=F2
Address=0803C800
Size=00000400
Type=111
UFO=111
[Page243]
Name=Page243
Index=F3
Address=0803CC00
Size=00000400
Type=111
UFO=111
[Page244]
Name=Page244
Index=F4
Address=0803D000
Size=00000400
Type=111
UFO=111
[Page245]
Name=Page245
Index=F5
Address=0803D400
Size=00000400
Type=111
UFO=111
[Page246]
Name=Page246
Index=F6
Address=0803D800
Size=00000400
Type=111
UFO=111
[Page247]
Name=Page247
Index=F7
Address=0803DC00
Size=00000400
Type=111
UFO=111
[Page248]
Name=Page248
Index=F8
Address=0803E000
Size=00000400
Type=111
UFO=111
[Page249]
Name=Page249
Index=F9
Address=0803E400
Size=00000400
Type=111
UFO=111
[Page250]
Name=Page250
Index=FA
Address=0803E800
Size=00000400
Type=111
UFO=111
[Page251]
Name=Page251
Index=FB
Address=0803EC00
Size=00000400
Type=111
UFO=111
[Page252]
Name=Page252
Index=FC
Address=0803F000
Size=00000400
Type=111
UFO=111
[Page253]
Name=Page253
Index=FD
Address=0803F400
Size=00000400
Type=111
UFO=111
[Page254]
Name=Page254
Index=FE
Address=0803F800
Size=00000400
Type=111
UFO=111
[Page255]
Name=Page255
Index=FF
Address=0803FC00
Size=00000400
Type=111
UFO=111
[Page256]
Name=Page256
Index=100
Address=08040000
Size=00000400
Type=111
UFO=111
[Page257]
Name=Page257
Index=101
Address=08040400
Size=00000400
Type=111
UFO=111
[Page258]
Name=Page258
Index=102
Address=08040800
Size=00000400
Type=111
UFO=111
[Page259]
Name=Page259
Index=103
Address=08040C00
Size=00000400
Type=111
UFO=111
[Page260]
Name=Page260
Index=104
Address=08041000
Size=00000400
Type=111
UFO=111
[Page261]
Name=Page261
Index=105
Address=08041400
Size=00000400
Type=111
UFO=111
[Page262]
Name=Page262
Index=106
Address=08041800
Size=00000400
Type=111
UFO=111
[Page263]
Name=Page263
Index=107
Address=08041C00
Size=00000400
Type=111
UFO=111
[Page264]
Name=Page264
Index=108
Address=08042000
Size=00000400
Type=111
UFO=111
[Page265]
Name=Page265
Index=109
Address=08042400
Size=00000400
Type=111
UFO=111
[Page266]
Name=Page266
Index=10A
Address=08042800
Size=00000400
Type=111
UFO=111
[Page267]
Name=Page267
Index=10B
Address=08042C00
Size=00000400
Type=111
UFO=111
[Page268]
Name=Page268
Index=10C
Address=08043000
Size=00000400
Type=111
UFO=111
[Page269]
Name=Page269
Index=10D
Address=08043400
Size=00000400
Type=111
UFO=111
[Page270]
Name=Page270
Index=10E
Address=08043800
Size=00000400
Type=111
UFO=111
[Page271]
Name=Page271
Index=10F
Address=08043C00
Size=00000400
Type=111
UFO=111
[Page272]
Name=Page272
Index=110
Address=08044000
Size=00000400
Type=111
UFO=111
[Page273]
Name=Page273
Index=111
Address=08044400
Size=00000400
Type=111
UFO=111
[Page274]
Name=Page274
Index=112
Address=08044800
Size=00000400
Type=111
UFO=111
[Page275]
Name=Page275
Index=113
Address=08044C00
Size=00000400
Type=111
UFO=111
[Page276]
Name=Page276
Index=114
Address=08045000
Size=00000400
Type=111
UFO=111
[Page277]
Name=Page277
Index=115
Address=08045400
Size=00000400
Type=111
UFO=111
[Page278]
Name=Page278
Index=116
Address=08045800
Size=00000400
Type=111
UFO=111
[Page279]
Name=Page279
Index=117
Address=08045C00
Size=00000400
Type=111
UFO=111
[Page280]
Name=Page280
Index=118
Address=08046000
Size=00000400
Type=111
UFO=111
[Page281]
Name=Page281
Index=119
Address=08046400
Size=00000400
Type=111
UFO=111
[Page282]
Name=Page282
Index=11A
Address=08046800
Size=00000400
Type=111
UFO=111
[Page283]
Name=Page283
Index=11B
Address=08046C00
Size=00000400
Type=111
UFO=111
[Page284]
Name=Page284
Index=11C
Address=08047000
Size=00000400
Type=111
UFO=111
[Page285]
Name=Page285
Index=11D
Address=08047400
Size=00000400
Type=111
UFO=111
[Page286]
Name=Page286
Index=11E
Address=08047800
Size=00000400
Type=111
UFO=111
[Page287]
Name=Page287
Index=11F
Address=08047C00
Size=00000400
Type=111
UFO=111
[Page288]
Name=Page288
Index=120
Address=08048000
Size=00000400
Type=111
UFO=111
[Page289]
Name=Page289
Index=121
Address=08048400
Size=00000400
Type=111
UFO=111
[Page290]
Name=Page290
Index=122
Address=08048800
Size=00000400
Type=111
UFO=111
[Page291]
Name=Page291
Index=123
Address=08048C00
Size=00000400
Type=111
UFO=111
[Page292]
Name=Page292
Index=124
Address=08049000
Size=00000400
Type=111
UFO=111
[Page293]
Name=Page293
Index=125
Address=08049400
Size=00000400
Type=111
UFO=111
[Page294]
Name=Page294
Index=126
Address=08049800
Size=00000400
Type=111
UFO=111
[Page295]
Name=Page295
Index=127
Address=08049C00
Size=00000400
Type=111
UFO=111
[Page296]
Name=Page296
Index=128
Address=0804A000
Size=00000400
Type=111
UFO=111
[Page297]
Name=Page297
Index=129
Address=0804A400
Size=00000400
Type=111
UFO=111
[Page298]
Name=Page298
Index=12A
Address=0804A800
Size=00000400
Type=111
UFO=111
[Page299]
Name=Page299
Index=12B
Address=0804AC00
Size=00000400
Type=111
UFO=111
[Page300]
Name=Page300
Index=12C
Address=0804B000
Size=00000400
Type=111
UFO=111
[Page301]
Name=Page301
Index=12D
Address=0804B400
Size=00000400
Type=111
UFO=111
[Page302]
Name=Page302
Index=12E
Address=0804B800
Size=00000400
Type=111
UFO=111
[Page303]
Name=Page303
Index=12F
Address=0804BC00
Size=00000400
Type=111
UFO=111
[Page304]
Name=Page304
Index=130
Address=0804C000
Size=00000400
Type=111
UFO=111
[Page305]
Name=Page305
Index=131
Address=0804C400
Size=00000400
Type=111
UFO=111
[Page306]
Name=Page306
Index=132
Address=0804C800
Size=00000400
Type=111
UFO=111
[Page307]
Name=Page307
Index=133
Address=0804CC00
Size=00000400
Type=111
UFO=111
[Page308]
Name=Page308
Index=134
Address=0804D000
Size=00000400
Type=111
UFO=111
[Page309]
Name=Page309
Index=135
Address=0804D400
Size=00000400
Type=111
UFO=111
[Page310]
Name=Page310
Index=136
Address=0804D800
Size=00000400
Type=111
UFO=111
[Page311]
Name=Page311
Index=137
Address=0804DC00
Size=00000400
Type=111
UFO=111
[Page312]
Name=Page312
Index=138
Address=0804E000
Size=00000400
Type=111
UFO=111
[Page313]
Name=Page313
Index=139
Address=0804E400
Size=00000400
Type=111
UFO=111
[Page314]
Name=Page314
Index=13A
Address=0804E800
Size=00000400
Type=111
UFO=111
[Page315]
Name=Page315
Index=13B
Address=0804EC00
Size=00000400
Type=111
UFO=111
[Page316]
Name=Page316
Index=13C
Address=0804F000
Size=00000400
Type=111
UFO=111
[Page317]
Name=Page317
Index=13D
Address=0804F400
Size=00000400
Type=111
UFO=111
[Page318]
Name=Page318
Index=13E
Address=0804F800
Size=00000400
Type=111
UFO=111
[Page319]
Name=Page319
Index=13F
Address=0804FC00
Size=00000400
Type=111
UFO=111
[Page320]
Name=Page320
Index=140
Address=08050000
Size=00000400
Type=111
UFO=111
[Page321]
Name=Page321
Index=141
Address=08050400
Size=00000400
Type=111
UFO=111
[Page322]
Name=Page322
Index=142
Address=08050800
Size=00000400
Type=111
UFO=111
[Page323]
Name=Page323
Index=143
Address=08050C00
Size=00000400
Type=111
UFO=111
[Page324]
Name=Page324
Index=144
Address=08051000
Size=00000400
Type=111
UFO=111
[Page325]
Name=Page325
Index=145
Address=08051400
Size=00000400
Type=111
UFO=111
[Page326]
Name=Page326
Index=146
Address=08051800
Size=00000400
Type=111
UFO=111
[Page327]
Name=Page327
Index=147
Address=08051C00
Size=00000400
Type=111
UFO=111
[Page328]
Name=Page328
Index=148
Address=08052000
Size=00000400
Type=111
UFO=111
[Page329]
Name=Page329
Index=149
Address=08052400
Size=00000400
Type=111
UFO=111
[Page330]
Name=Page330
Index=14A
Address=08052800
Size=00000400
Type=111
UFO=111
[Page331]
Name=Page331
Index=14B
Address=08052C00
Size=00000400
Type=111
UFO=111
[Page332]
Name=Page332
Index=14C
Address=08053000
Size=00000400
Type=111
UFO=111
[Page333]
Name=Page333
Index=14D
Address=08053400
Size=00000400
Type=111
UFO=111
[Page334]
Name=Page334
Index=14E
Address=08053800
Size=00000400
Type=111
UFO=111
[Page335]
Name=Page335
Index=14F
Address=08053C00
Size=00000400
Type=111
UFO=111
[Page336]
Name=Page336
Index=150
Address=08054000
Size=00000400
Type=111
UFO=111
[Page337]
Name=Page337
Index=151
Address=08054400
Size=00000400
Type=111
UFO=111
[Page338]
Name=Page338
Index=152
Address=08054800
Size=00000400
Type=111
UFO=111
[Page339]
Name=Page339
Index=153
Address=08054C00
Size=00000400
Type=111
UFO=111
[Page340]
Name=Page340
Index=154
Address=08055000
Size=00000400
Type=111
UFO=111
[Page341]
Name=Page341
Index=155
Address=08055400
Size=00000400
Type=111
UFO=111
[Page342]
Name=Page342
Index=156
Address=08055800
Size=00000400
Type=111
UFO=111
[Page343]
Name=Page343
Index=157
Address=08055C00
Size=00000400
Type=111
UFO=111
[Page344]
Name=Page344
Index=158
Address=08056000
Size=00000400
Type=111
UFO=111
[Page345]
Name=Page345
Index=159
Address=08056400
Size=00000400
Type=111
UFO=111
[Page346]
Name=Page346
Index=15A
Address=08056800
Size=00000400
Type=111
UFO=111
[Page347]
Name=Page347
Index=15B
Address=08056C00
Size=00000400
Type=111
UFO=111
[Page348]
Name=Page348
Index=15C
Address=08057000
Size=00000400
Type=111
UFO=111
[Page349]
Name=Page349
Index=15D
Address=08057400
Size=00000400
Type=111
UFO=111
[Page350]
Name=Page350
Index=15E
Address=08057800
Size=00000400
Type=111
UFO=111
[Page351]
Name=Page351
Index=15F
Address=08057C00
Size=00000400
Type=111
UFO=111
[Page352]
Name=Page352
Index=160
Address=08058000
Size=00000400
Type=111
UFO=111
[Page353]
Name=Page353
Index=161
Address=08058400
Size=00000400
Type=111
UFO=111
[Page354]
Name=Page354
Index=162
Address=08058800
Size=00000400
Type=111
UFO=111
[Page355]
Name=Page355
Index=163
Address=08058C00
Size=00000400
Type=111
UFO=111
[Page356]
Name=Page356
Index=164
Address=08059000
Size=00000400
Type=111
UFO=111
[Page357]
Name=Page357
Index=165
Address=08059400
Size=00000400
Type=111
UFO=111
[Page358]
Name=Page358
Index=166
Address=08059800
Size=00000400
Type=111
UFO=111
[Page359]
Name=Page359
Index=167
Address=08059C00
Size=00000400
Type=111
UFO=111
[Page360]
Name=Page360
Index=168
Address=0805A000
Size=00000400
Type=111
UFO=111
[Page361]
Name=Page361
Index=169
Address=0805A400
Size=00000400
Type=111
UFO=111
[Page362]
Name=Page362
Index=16A
Address=0805A800
Size=00000400
Type=111
UFO=111
[Page363]
Name=Page363
Index=16B
Address=0805AC00
Size=00000400
Type=111
UFO=111
[Page364]
Name=Page364
Index=16C
Address=0805B000
Size=00000400
Type=111
UFO=111
[Page365]
Name=Page365
Index=16D
Address=0805B400
Size=00000400
Type=111
UFO=111
[Page366]
Name=Page366
Index=16E
Address=0805B800
Size=00000400
Type=111
UFO=111
[Page367]
Name=Page367
Index=16F
Address=0805BC00
Size=00000400
Type=111
UFO=111
[Page368]
Name=Page368
Index=170
Address=0805C000
Size=00000400
Type=111
UFO=111
[Page369]
Name=Page369
Index=171
Address=0805C400
Size=00000400
Type=111
UFO=111
[Page370]
Name=Page370
Index=172
Address=0805C800
Size=00000400
Type=111
UFO=111
[Page371]
Name=Page371
Index=173
Address=0805CC00
Size=00000400
Type=111
UFO=111
[Page372]
Name=Page372
Index=174
Address=0805D000
Size=00000400
Type=111
UFO=111
[Page373]
Name=Page373
Index=175
Address=0805D400
Size=00000400
Type=111
UFO=111
[Page374]
Name=Page374
Index=176
Address=0805D800
Size=00000400
Type=111
UFO=111
[Page375]
Name=Page375
Index=177
Address=0805DC00
Size=00000400
Type=111
UFO=111
[Page376]
Name=Page376
Index=178
Address=0805E000
Size=00000400
Type=111
UFO=111
[Page377]
Name=Page377
Index=179
Address=0805E400
Size=00000400
Type=111
UFO=111
[Page378]
Name=Page378
Index=17A
Address=0805E800
Size=00000400
Type=111
UFO=111
[Page379]
Name=Page379
Index=17B
Address=0805EC00
Size=00000400
Type=111
UFO=111
[Page380]
Name=Page380
Index=17C
Address=0805F000
Size=00000400
Type=111
UFO=111
[Page381]
Name=Page381
Index=17D
Address=0805F400
Size=00000400
Type=111
UFO=111
[Page382]
Name=Page382
Index=17E
Address=0805F800
Size=00000400
Type=111
UFO=111
[Page383]
Name=Page383
Index=17F
Address=0805FC00
Size=00000400
Type=111
UFO=111
[Page384]
Name=Page384
Index=180
Address=08060000
Size=00000400
Type=111
UFO=111
[Page385]
Name=Page385
Index=181
Address=08060400
Size=00000400
Type=111
UFO=111
[Page386]
Name=Page386
Index=182
Address=08060800
Size=00000400
Type=111
UFO=111
[Page387]
Name=Page387
Index=183
Address=08060C00
Size=00000400
Type=111
UFO=111
[Page388]
Name=Page388
Index=184
Address=08061000
Size=00000400
Type=111
UFO=111
[Page389]
Name=Page389
Index=185
Address=08061400
Size=00000400
Type=111
UFO=111
[Page390]
Name=Page390
Index=186
Address=08061800
Size=00000400
Type=111
UFO=111
[Page391]
Name=Page391
Index=187
Address=08061C00
Size=00000400
Type=111
UFO=111
[Page392]
Name=Page392
Index=188
Address=08062000
Size=00000400
Type=111
UFO=111
[Page393]
Name=Page393
Index=189
Address=08062400
Size=00000400
Type=111
UFO=111
[Page394]
Name=Page394
Index=18A
Address=08062800
Size=00000400
Type=111
UFO=111
[Page395]
Name=Page395
Index=18B
Address=08062C00
Size=00000400
Type=111
UFO=111
[Page396]
Name=Page396
Index=18C
Address=08063000
Size=00000400
Type=111
UFO=111
[Page397]
Name=Page397
Index=18D
Address=08063400
Size=00000400
Type=111
UFO=111
[Page398]
Name=Page398
Index=18E
Address=08063800
Size=00000400
Type=111
UFO=111
[Page399]
Name=Page399
Index=18F
Address=08063C00
Size=00000400
Type=111
UFO=111
[Page400]
Name=Page400
Index=190
Address=08064000
Size=00000400
Type=111
UFO=111
[Page401]
Name=Page401
Index=191
Address=08064400
Size=00000400
Type=111
UFO=111
[Page402]
Name=Page402
Index=192
Address=08064800
Size=00000400
Type=111
UFO=111
[Page403]
Name=Page403
Index=193
Address=08064C00
Size=00000400
Type=111
UFO=111
[Page404]
Name=Page404
Index=194
Address=08065000
Size=00000400
Type=111
UFO=111
[Page405]
Name=Page405
Index=195
Address=08065400
Size=00000400
Type=111
UFO=111
[Page406]
Name=Page406
Index=196
Address=08065800
Size=00000400
Type=111
UFO=111
[Page407]
Name=Page407
Index=197
Address=08065C00
Size=00000400
Type=111
UFO=111
[Page408]
Name=Page408
Index=198
Address=08066000
Size=00000400
Type=111
UFO=111
[Page409]
Name=Page409
Index=199
Address=08066400
Size=00000400
Type=111
UFO=111
[Page410]
Name=Page410
Index=19A
Address=08066800
Size=00000400
Type=111
UFO=111
[Page411]
Name=Page411
Index=19B
Address=08066C00
Size=00000400
Type=111
UFO=111
[Page412]
Name=Page412
Index=19C
Address=08067000
Size=00000400
Type=111
UFO=111
[Page413]
Name=Page413
Index=19D
Address=08067400
Size=00000400
Type=111
UFO=111
[Page414]
Name=Page414
Index=19E
Address=08067800
Size=00000400
Type=111
UFO=111
[Page415]
Name=Page415
Index=19F
Address=08067C00
Size=00000400
Type=111
UFO=111
[Page416]
Name=Page416
Index=1A0
Address=08068000
Size=00000400
Type=111
UFO=111
[Page417]
Name=Page417
Index=1A1
Address=08068400
Size=00000400
Type=111
UFO=111
[Page418]
Name=Page418
Index=1A2
Address=08068800
Size=00000400
Type=111
UFO=111
[Page419]
Name=Page419
Index=1A3
Address=08068C00
Size=00000400
Type=111
UFO=111
[Page420]
Name=Page420
Index=1A4
Address=08069000
Size=00000400
Type=111
UFO=111
[Page421]
Name=Page421
Index=1A5
Address=08069400
Size=00000400
Type=111
UFO=111
[Page422]
Name=Page422
Index=1A6
Address=08069800
Size=00000400
Type=111
UFO=111
[Page423]
Name=Page423
Index=1A7
Address=08069C00
Size=00000400
Type=111
UFO=111
[Page424]
Name=Page424
Index=1A8
Address=0806A000
Size=00000400
Type=111
UFO=111
[Page425]
Name=Page425
Index=1A9
Address=0806A400
Size=00000400
Type=111
UFO=111
[Page426]
Name=Page426
Index=1AA
Address=0806A800
Size=00000400
Type=111
UFO=111
[Page427]
Name=Page427
Index=1AB
Address=0806AC00
Size=00000400
Type=111
UFO=111
[Page428]
Name=Page428
Index=1AC
Address=0806B000
Size=00000400
Type=111
UFO=111
[Page429]
Name=Page429
Index=1AD
Address=0806B400
Size=00000400
Type=111
UFO=111
[Page430]
Name=Page430
Index=1AE
Address=0806B800
Size=00000400
Type=111
UFO=111
[Page431]
Name=Page431
Index=1AF
Address=0806BC00
Size=00000400
Type=111
UFO=111
[Page432]
Name=Page432
Index=1B0
Address=0806C000
Size=00000400
Type=111
UFO=111
[Page433]
Name=Page433
Index=1B1
Address=0806C400
Size=00000400
Type=111
UFO=111
[Page434]
Name=Page434
Index=1B2
Address=0806C800
Size=00000400
Type=111
UFO=111
[Page435]
Name=Page435
Index=1B3
Address=0806CC00
Size=00000400
Type=111
UFO=111
[Page436]
Name=Page436
Index=1B4
Address=0806D000
Size=00000400
Type=111
UFO=111
[Page437]
Name=Page437
Index=1B5
Address=0806D400
Size=00000400
Type=111
UFO=111
[Page438]
Name=Page438
Index=1B6
Address=0806D800
Size=00000400
Type=111
UFO=111
[Page439]
Name=Page439
Index=1B7
Address=0806DC00
Size=00000400
Type=111
UFO=111
[Page440]
Name=Page440
Index=1B8
Address=0806E000
Size=00000400
Type=111
UFO=111
[Page441]
Name=Page441
Index=1B9
Address=0806E400
Size=00000400
Type=111
UFO=111
[Page442]
Name=Page442
Index=1BA
Address=0806E800
Size=00000400
Type=111
UFO=111
[Page443]
Name=Page443
Index=1BB
Address=0806EC00
Size=00000400
Type=111
UFO=111
[Page444]
Name=Page444
Index=1BC
Address=0806F000
Size=00000400
Type=111
UFO=111
[Page445]
Name=Page445
Index=1BD
Address=0806F400
Size=00000400
Type=111
UFO=111
[Page446]
Name=Page446
Index=1BE
Address=0806F800
Size=00000400
Type=111
UFO=111
[Page447]
Name=Page447
Index=1BF
Address=0806FC00
Size=00000400
Type=111
UFO=111
[Page448]
Name=Page448
Index=1C0
Address=08070000
Size=00000400
Type=111
UFO=111
[Page449]
Name=Page449
Index=1C1
Address=08070400
Size=00000400
Type=111
UFO=111
[Page450]
Name=Page450
Index=1C2
Address=08070800
Size=00000400
Type=111
UFO=111
[Page451]
Name=Page451
Index=1C3
Address=08070C00
Size=00000400
Type=111
UFO=111
[Page452]
Name=Page452
Index=1C4
Address=08071000
Size=00000400
Type=111
UFO=111
[Page453]
Name=Page453
Index=1C5
Address=08071400
Size=00000400
Type=111
UFO=111
[Page454]
Name=Page454
Index=1C6
Address=08071800
Size=00000400
Type=111
UFO=111
[Page455]
Name=Page455
Index=1C7
Address=08071C00
Size=00000400
Type=111
UFO=111
[Page456]
Name=Page456
Index=1C8
Address=08072000
Size=00000400
Type=111
UFO=111
[Page457]
Name=Page457
Index=1C9
Address=08072400
Size=00000400
Type=111
UFO=111
[Page458]
Name=Page458
Index=1CA
Address=08072800
Size=00000400
Type=111
UFO=111
[Page459]
Name=Page459
Index=1CB
Address=08072C00
Size=00000400
Type=111
UFO=111
[Page460]
Name=Page460
Index=1CC
Address=08073000
Size=00000400
Type=111
UFO=111
[Page461]
Name=Page461
Index=1CD
Address=08073400
Size=00000400
Type=111
UFO=111
[Page462]
Name=Page462
Index=1CE
Address=08073800
Size=00000400
Type=111
UFO=111
[Page463]
Name=Page463
Index=1CF
Address=08073C00
Size=00000400
Type=111
UFO=111
[Page464]
Name=Page464
Index=1D0
Address=08074000
Size=00000400
Type=111
UFO=111
[Page465]
Name=Page465
Index=1D1
Address=08074400
Size=00000400
Type=111
UFO=111
[Page466]
Name=Page466
Index=1D2
Address=08074800
Size=00000400
Type=111
UFO=111
[Page467]
Name=Page467
Index=1D3
Address=08074C00
Size=00000400
Type=111
UFO=111
[Page468]
Name=Page468
Index=1D4
Address=08075000
Size=00000400
Type=111
UFO=111
[Page469]
Name=Page469
Index=1D5
Address=08075400
Size=00000400
Type=111
UFO=111
[Page470]
Name=Page470
Index=1D6
Address=08075800
Size=00000400
Type=111
UFO=111
[Page471]
Name=Page471
Index=1D7
Address=08075C00
Size=00000400
Type=111
UFO=111
[Page472]
Name=Page472
Index=1D8
Address=08076000
Size=00000400
Type=111
UFO=111
[Page473]
Name=Page473
Index=1D9
Address=08076400
Size=00000400
Type=111
UFO=111
[Page474]
Name=Page474
Index=1DA
Address=08076800
Size=00000400
Type=111
UFO=111
[Page475]
Name=Page475
Index=1DB
Address=08076C00
Size=00000400
Type=111
UFO=111
[Page476]
Name=Page476
Index=1DC
Address=08077000
Size=00000400
Type=111
UFO=111
[Page477]
Name=Page477
Index=1DD
Address=08077400
Size=00000400
Type=111
UFO=111
[Page478]
Name=Page478
Index=1DE
Address=08077800
Size=00000400
Type=111
UFO=111
[Page479]
Name=Page479
Index=1DF
Address=08077C00
Size=00000400
Type=111
UFO=111
[Page480]
Name=Page480
Index=1E0
Address=08078000
Size=00000400
Type=111
UFO=111
[Page481]
Name=Page481
Index=1E1
Address=08078400
Size=00000400
Type=111
UFO=111
[Page482]
Name=Page482
Index=1E2
Address=08078800
Size=00000400
Type=111
UFO=111
[Page483]
Name=Page483
Index=1E3
Address=08078C00
Size=00000400
Type=111
UFO=111
[Page484]
Name=Page484
Index=1E4
Address=08079000
Size=00000400
Type=111
UFO=111
[Page485]
Name=Page485
Index=1E5
Address=08079400
Size=00000400
Type=111
UFO=111
[Page486]
Name=Page486
Index=1E6
Address=08079800
Size=00000400
Type=111
UFO=111
[Page487]
Name=Page487
Index=1E7
Address=08079C00
Size=00000400
Type=111
UFO=111
[Page488]
Name=Page488
Index=1E8
Address=0807A000
Size=00000400
Type=111
UFO=111
[Page489]
Name=Page489
Index=1E9
Address=0807A400
Size=00000400
Type=111
UFO=111
[Page490]
Name=Page490
Index=1EA
Address=0807A800
Size=00000400
Type=111
UFO=111
[Page491]
Name=Page491
Index=1EB
Address=0807AC00
Size=00000400
Type=111
UFO=111
[Page492]
Name=Page492
Index=1EC
Address=0807B000
Size=00000400
Type=111
UFO=111
[Page493]
Name=Page493
Index=1ED
Address=0807B400
Size=00000400
Type=111
UFO=111
[Page494]
Name=Page494
Index=1EE
Address=0807B800
Size=00000400
Type=111
UFO=111
[Page495]
Name=Page495
Index=1EF
Address=0807BC00
Size=00000400
Type=111
UFO=111
[Page496]
Name=Page496
Index=1F0
Address=0807C000
Size=00000400
Type=111
UFO=111
[Page497]
Name=Page497
Index=1F1
Address=0807C400
Size=00000400
Type=111
UFO=111
[Page498]
Name=Page498
Index=1F2
Address=0807C800
Size=00000400
Type=111
UFO=111
[Page499]
Name=Page499
Index=1F3
Address=0807CC00
Size=00000400
Type=111
UFO=111
[Page500]
Name=Page500
Index=1F4
Address=0807D000
Size=00000400
Type=111
UFO=111
[Page501]
Name=Page501
Index=1F5
Address=0807D400
Size=00000400
Type=111
UFO=111
[Page502]
Name=Page502
Index=1F6
Address=0807D800
Size=00000400
Type=111
UFO=111
[Page503]
Name=Page503
Index=1F7
Address=0807DC00
Size=00000400
Type=111
UFO=111
[Page504]
Name=Page504
Index=1F8
Address=0807E000
Size=00000400
Type=111
UFO=111
[Page505]
Name=Page505
Index=1F9
Address=0807E400
Size=00000400
Type=111
UFO=111
[Page506]
Name=Page506
Index=1FA
Address=0807E800
Size=00000400
Type=111
UFO=111
[Page507]
Name=Page507
Index=1FB
Address=0807EC00
Size=00000400
Type=111
UFO=111
[Page508]
Name=Page508
Index=1FC
Address=0807F000
Size=00000400
Type=111
UFO=111
[Page509]
Name=Page509
Index=1FD
Address=0807F400
Size=00000400
Type=111
UFO=111
[Page510]
Name=Page510
Index=1FE
Address=0807F800
Size=00000400
Type=111
UFO=111
[Page511]
Name=Page511
Index=1FF
Address=0807FC00
Size=00000400
Type=111
UFO=111
[Page512]
Name=Page512
Index=200
Address=08080000
Size=00000400
Type=111
UFO=111
[Page513]
Name=Page513
Index=201
Address=08080400
Size=00000400
Type=111
UFO=111
[Page514]
Name=Page514
Index=202
Address=08080800
Size=00000400
Type=111
UFO=111
[Page515]
Name=Page515
Index=203
Address=08080C00
Size=00000400
Type=111
UFO=111
[Page516]
Name=Page516
Index=204
Address=08081000
Size=00000400
Type=111
UFO=111
[Page517]
Name=Page517
Index=205
Address=08081400
Size=00000400
Type=111
UFO=111
[Page518]
Name=Page518
Index=206
Address=08081800
Size=00000400
Type=111
UFO=111
[Page519]
Name=Page519
Index=207
Address=08081C00
Size=00000400
Type=111
UFO=111
[Page520]
Name=Page520
Index=208
Address=08082000
Size=00000400
Type=111
UFO=111
[Page521]
Name=Page521
Index=209
Address=08082400
Size=00000400
Type=111
UFO=111
[Page522]
Name=Page522
Index=20A
Address=08082800
Size=00000400
Type=111
UFO=111
[Page523]
Name=Page523
Index=20B
Address=08082C00
Size=00000400
Type=111
UFO=111
[Page524]
Name=Page524
Index=20C
Address=08083000
Size=00000400
Type=111
UFO=111
[Page525]
Name=Page525
Index=20D
Address=08083400
Size=00000400
Type=111
UFO=111
[Page526]
Name=Page526
Index=20E
Address=08083800
Size=00000400
Type=111
UFO=111
[Page527]
Name=Page527
Index=20F
Address=08083C00
Size=00000400
Type=111
UFO=111
[Page528]
Name=Page528
Index=210
Address=08084000
Size=00000400
Type=111
UFO=111
[Page529]
Name=Page529
Index=211
Address=08084400
Size=00000400
Type=111
UFO=111
[Page530]
Name=Page530
Index=212
Address=08084800
Size=00000400
Type=111
UFO=111
[Page531]
Name=Page531
Index=213
Address=08084C00
Size=00000400
Type=111
UFO=111
[Page532]
Name=Page532
Index=214
Address=08085000
Size=00000400
Type=111
UFO=111
[Page533]
Name=Page533
Index=215
Address=08085400
Size=00000400
Type=111
UFO=111
[Page534]
Name=Page534
Index=216
Address=08085800
Size=00000400
Type=111
UFO=111
[Page535]
Name=Page535
Index=217
Address=08085C00
Size=00000400
Type=111
UFO=111
[Page536]
Name=Page536
Index=218
Address=08086000
Size=00000400
Type=111
UFO=111
[Page537]
Name=Page537
Index=219
Address=08086400
Size=00000400
Type=111
UFO=111
[Page538]
Name=Page538
Index=21A
Address=08086800
Size=00000400
Type=111
UFO=111
[Page539]
Name=Page539
Index=21B
Address=08086C00
Size=00000400
Type=111
UFO=111
[Page540]
Name=Page540
Index=21C
Address=08087000
Size=00000400
Type=111
UFO=111
[Page541]
Name=Page541
Index=21D
Address=08087400
Size=00000400
Type=111
UFO=111
[Page542]
Name=Page542
Index=21E
Address=08087800
Size=00000400
Type=111
UFO=111
[Page543]
Name=Page543
Index=21F
Address=08087C00
Size=00000400
Type=111
UFO=111
[Page544]
Name=Page544
Index=220
Address=08088000
Size=00000400
Type=111
UFO=111
[Page545]
Name=Page545
Index=221
Address=08088400
Size=00000400
Type=111
UFO=111
[Page546]
Name=Page546
Index=222
Address=08088800
Size=00000400
Type=111
UFO=111
[Page547]
Name=Page547
Index=223
Address=08088C00
Size=00000400
Type=111
UFO=111
[Page548]
Name=Page548
Index=224
Address=08089000
Size=00000400
Type=111
UFO=111
[Page549]
Name=Page549
Index=225
Address=08089400
Size=00000400
Type=111
UFO=111
[Page550]
Name=Page550
Index=226
Address=08089800
Size=00000400
Type=111
UFO=111
[Page551]
Name=Page551
Index=227
Address=08089C00
Size=00000400
Type=111
UFO=111
[Page552]
Name=Page552
Index=228
Address=0808A000
Size=00000400
Type=111
UFO=111
[Page553]
Name=Page553
Index=229
Address=0808A400
Size=00000400
Type=111
UFO=111
[Page554]
Name=Page554
Index=22A
Address=0808A800
Size=00000400
Type=111
UFO=111
[Page555]
Name=Page555
Index=22B
Address=0808AC00
Size=00000400
Type=111
UFO=111
[Page556]
Name=Page556
Index=22C
Address=0808B000
Size=00000400
Type=111
UFO=111
[Page557]
Name=Page557
Index=22D
Address=0808B400
Size=00000400
Type=111
UFO=111
[Page558]
Name=Page558
Index=22E
Address=0808B800
Size=00000400
Type=111
UFO=111
[Page559]
Name=Page559
Index=22F
Address=0808BC00
Size=00000400
Type=111
UFO=111
[Page560]
Name=Page560
Index=230
Address=0808C000
Size=00000400
Type=111
UFO=111
[Page561]
Name=Page561
Index=231
Address=0808C400
Size=00000400
Type=111
UFO=111
[Page562]
Name=Page562
Index=232
Address=0808C800
Size=00000400
Type=111
UFO=111
[Page563]
Name=Page563
Index=233
Address=0808CC00
Size=00000400
Type=111
UFO=111
[Page564]
Name=Page564
Index=234
Address=0808D000
Size=00000400
Type=111
UFO=111
[Page565]
Name=Page565
Index=235
Address=0808D400
Size=00000400
Type=111
UFO=111
[Page566]
Name=Page566
Index=236
Address=0808D800
Size=00000400
Type=111
UFO=111
[Page567]
Name=Page567
Index=237
Address=0808DC00
Size=00000400
Type=111
UFO=111
[Page568]
Name=Page568
Index=238
Address=0808E000
Size=00000400
Type=111
UFO=111
[Page569]
Name=Page569
Index=239
Address=0808E400
Size=00000400
Type=111
UFO=111
[Page570]
Name=Page570
Index=23A
Address=0808E800
Size=00000400
Type=111
UFO=111
[Page571]
Name=Page571
Index=23B
Address=0808EC00
Size=00000400
Type=111
UFO=111
[Page572]
Name=Page572
Index=23C
Address=0808F000
Size=00000400
Type=111
UFO=111
[Page573]
Name=Page573
Index=23D
Address=0808F400
Size=00000400
Type=111
UFO=111
[Page574]
Name=Page574
Index=23E
Address=0808F800
Size=00000400
Type=111
UFO=111
[Page575]
Name=Page575
Index=23F
Address=0808FC00
Size=00000400
Type=111
UFO=111
[Page576]
Name=Page576
Index=240
Address=08090000
Size=00000400
Type=111
UFO=111
[Page577]
Name=Page577
Index=241
Address=08090400
Size=00000400
Type=111
UFO=111
[Page578]
Name=Page578
Index=242
Address=08090800
Size=00000400
Type=111
UFO=111
[Page579]
Name=Page579
Index=243
Address=08090C00
Size=00000400
Type=111
UFO=111
[Page580]
Name=Page580
Index=244
Address=08091000
Size=00000400
Type=111
UFO=111
[Page581]
Name=Page581
Index=245
Address=08091400
Size=00000400
Type=111
UFO=111
[Page582]
Name=Page582
Index=246
Address=08091800
Size=00000400
Type=111
UFO=111
[Page583]
Name=Page583
Index=247
Address=08091C00
Size=00000400
Type=111
UFO=111
[Page584]
Name=Page584
Index=248
Address=08092000
Size=00000400
Type=111
UFO=111
[Page585]
Name=Page585
Index=249
Address=08092400
Size=00000400
Type=111
UFO=111
[Page586]
Name=Page586
Index=24A
Address=08092800
Size=00000400
Type=111
UFO=111
[Page587]
Name=Page587
Index=24B
Address=08092C00
Size=00000400
Type=111
UFO=111
[Page588]
Name=Page588
Index=24C
Address=08093000
Size=00000400
Type=111
UFO=111
[Page589]
Name=Page589
Index=24D
Address=08093400
Size=00000400
Type=111
UFO=111
[Page590]
Name=Page590
Index=24E
Address=08093800
Size=00000400
Type=111
UFO=111
[Page591]
Name=Page591
Index=24F
Address=08093C00
Size=00000400
Type=111
UFO=111
[Page592]
Name=Page592
Index=250
Address=08094000
Size=00000400
Type=111
UFO=111
[Page593]
Name=Page593
Index=251
Address=08094400
Size=00000400
Type=111
UFO=111
[Page594]
Name=Page594
Index=252
Address=08094800
Size=00000400
Type=111
UFO=111
[Page595]
Name=Page595
Index=253
Address=08094C00
Size=00000400
Type=111
UFO=111
[Page596]
Name=Page596
Index=254
Address=08095000
Size=00000400
Type=111
UFO=111
[Page597]
Name=Page597
Index=255
Address=08095400
Size=00000400
Type=111
UFO=111
[Page598]
Name=Page598
Index=256
Address=08095800
Size=00000400
Type=111
UFO=111
[Page599]
Name=Page599
Index=257
Address=08095C00
Size=00000400
Type=111
UFO=111
[Page600]
Name=Page600
Index=258
Address=08096000
Size=00000400
Type=111
UFO=111
[Page601]
Name=Page601
Index=259
Address=08096400
Size=00000400
Type=111
UFO=111
[Page602]
Name=Page602
Index=25A
Address=08096800
Size=00000400
Type=111
UFO=111
[Page603]
Name=Page603
Index=25B
Address=08096C00
Size=00000400
Type=111
UFO=111
[Page604]
Name=Page604
Index=25C
Address=08097000
Size=00000400
Type=111
UFO=111
[Page605]
Name=Page605
Index=25D
Address=08097400
Size=00000400
Type=111
UFO=111
[Page606]
Name=Page606
Index=25E
Address=08097800
Size=00000400
Type=111
UFO=111
[Page607]
Name=Page607
Index=25F
Address=08097C00
Size=00000400
Type=111
UFO=111
[Page608]
Name=Page608
Index=260
Address=08098000
Size=00000400
Type=111
UFO=111
[Page609]
Name=Page609
Index=261
Address=08098400
Size=00000400
Type=111
UFO=111
[Page610]
Name=Page610
Index=262
Address=08098800
Size=00000400
Type=111
UFO=111
[Page611]
Name=Page611
Index=263
Address=08098C00
Size=00000400
Type=111
UFO=111
[Page612]
Name=Page612
Index=264
Address=08099000
Size=00000400
Type=111
UFO=111
[Page613]
Name=Page613
Index=265
Address=08099400
Size=00000400
Type=111
UFO=111
[Page614]
Name=Page614
Index=266
Address=08099800
Size=00000400
Type=111
UFO=111
[Page615]
Name=Page615
Index=267
Address=08099C00
Size=00000400
Type=111
UFO=111
[Page616]
Name=Page616
Index=268
Address=0809A000
Size=00000400
Type=111
UFO=111
[Page617]
Name=Page617
Index=269
Address=0809A400
Size=00000400
Type=111
UFO=111
[Page618]
Name=Page618
Index=26A
Address=0809A800
Size=00000400
Type=111
UFO=111
[Page619]
Name=Page619
Index=26B
Address=0809AC00
Size=00000400
Type=111
UFO=111
[Page620]
Name=Page620
Index=26C
Address=0809B000
Size=00000400
Type=111
UFO=111
[Page621]
Name=Page621
Index=26D
Address=0809B400
Size=00000400
Type=111
UFO=111
[Page622]
Name=Page622
Index=26E
Address=0809B800
Size=00000400
Type=111
UFO=111
[Page623]
Name=Page623
Index=26F
Address=0809BC00
Size=00000400
Type=111
UFO=111
[Page624]
Name=Page624
Index=270
Address=0809C000
Size=00000400
Type=111
UFO=111
[Page625]
Name=Page625
Index=271
Address=0809C400
Size=00000400
Type=111
UFO=111
[Page626]
Name=Page626
Index=272
Address=0809C800
Size=00000400
Type=111
UFO=111
[Page627]
Name=Page627
Index=273
Address=0809CC00
Size=00000400
Type=111
UFO=111
[Page628]
Name=Page628
Index=274
Address=0809D000
Size=00000400
Type=111
UFO=111
[Page629]
Name=Page629
Index=275
Address=0809D400
Size=00000400
Type=111
UFO=111
[Page630]
Name=Page630
Index=276
Address=0809D800
Size=00000400
Type=111
UFO=111
[Page631]
Name=Page631
Index=277
Address=0809DC00
Size=00000400
Type=111
UFO=111
[Page632]
Name=Page632
Index=278
Address=0809E000
Size=00000400
Type=111
UFO=111
[Page633]
Name=Page633
Index=279
Address=0809E400
Size=00000400
Type=111
UFO=111
[Page634]
Name=Page634
Index=27A
Address=0809E800
Size=00000400
Type=111
UFO=111
[Page635]
Name=Page635
Index=27B
Address=0809EC00
Size=00000400
Type=111
UFO=111
[Page636]
Name=Page636
Index=27C
Address=0809F000
Size=00000400
Type=111
UFO=111
[Page637]
Name=Page637
Index=27D
Address=0809F400
Size=00000400
Type=111
UFO=111
[Page638]
Name=Page638
Index=27E
Address=0809F800
Size=00000400
Type=111
UFO=111
[Page639]
Name=Page639
Index=27F
Address=0809FC00
Size=00000400
Type=111
UFO=111
[Page640]
Name=Page640
Index=280
Address=080A0000
Size=00000400
Type=111
UFO=111
[Page641]
Name=Page641
Index=281
Address=080A0400
Size=00000400
Type=111
UFO=111
[Page642]
Name=Page642
Index=282
Address=080A0800
Size=00000400
Type=111
UFO=111
[Page643]
Name=Page643
Index=283
Address=080A0C00
Size=00000400
Type=111
UFO=111
[Page644]
Name=Page644
Index=284
Address=080A1000
Size=00000400
Type=111
UFO=111
[Page645]
Name=Page645
Index=285
Address=080A1400
Size=00000400
Type=111
UFO=111
[Page646]
Name=Page646
Index=286
Address=080A1800
Size=00000400
Type=111
UFO=111
[Page647]
Name=Page647
Index=287
Address=080A1C00
Size=00000400
Type=111
UFO=111
[Page648]
Name=Page648
Index=288
Address=080A2000
Size=00000400
Type=111
UFO=111
[Page649]
Name=Page649
Index=289
Address=080A2400
Size=00000400
Type=111
UFO=111
[Page650]
Name=Page650
Index=28A
Address=080A2800
Size=00000400
Type=111
UFO=111
[Page651]
Name=Page651
Index=28B
Address=080A2C00
Size=00000400
Type=111
UFO=111
[Page652]
Name=Page652
Index=28C
Address=080A3000
Size=00000400
Type=111
UFO=111
[Page653]
Name=Page653
Index=28D
Address=080A3400
Size=00000400
Type=111
UFO=111
[Page654]
Name=Page654
Index=28E
Address=080A3800
Size=00000400
Type=111
UFO=111
[Page655]
Name=Page655
Index=28F
Address=080A3C00
Size=00000400
Type=111
UFO=111
[Page656]
Name=Page656
Index=290
Address=080A4000
Size=00000400
Type=111
UFO=111
[Page657]
Name=Page657
Index=291
Address=080A4400
Size=00000400
Type=111
UFO=111
[Page658]
Name=Page658
Index=292
Address=080A4800
Size=00000400
Type=111
UFO=111
[Page659]
Name=Page659
Index=293
Address=080A4C00
Size=00000400
Type=111
UFO=111
[Page660]
Name=Page660
Index=294
Address=080A5000
Size=00000400
Type=111
UFO=111
[Page661]
Name=Page661
Index=295
Address=080A5400
Size=00000400
Type=111
UFO=111
[Page662]
Name=Page662
Index=296
Address=080A5800
Size=00000400
Type=111
UFO=111
[Page663]
Name=Page663
Index=297
Address=080A5C00
Size=00000400
Type=111
UFO=111
[Page664]
Name=Page664
Index=298
Address=080A6000
Size=00000400
Type=111
UFO=111
[Page665]
Name=Page665
Index=299
Address=080A6400
Size=00000400
Type=111
UFO=111
[Page666]
Name=Page666
Index=29A
Address=080A6800
Size=00000400
Type=111
UFO=111
[Page667]
Name=Page667
Index=29B
Address=080A6C00
Size=00000400
Type=111
UFO=111
[Page668]
Name=Page668
Index=29C
Address=080A7000
Size=00000400
Type=111
UFO=111
[Page669]
Name=Page669
Index=29D
Address=080A7400
Size=00000400
Type=111
UFO=111
[Page670]
Name=Page670
Index=29E
Address=080A7800
Size=00000400
Type=111
UFO=111
[Page671]
Name=Page671
Index=29F
Address=080A7C00
Size=00000400
Type=111
UFO=111
[Page672]
Name=Page672
Index=2A0
Address=080A8000
Size=00000400
Type=111
UFO=111
[Page673]
Name=Page673
Index=2A1
Address=080A8400
Size=00000400
Type=111
UFO=111
[Page674]
Name=Page674
Index=2A2
Address=080A8800
Size=00000400
Type=111
UFO=111
[Page675]
Name=Page675
Index=2A3
Address=080A8C00
Size=00000400
Type=111
UFO=111
[Page676]
Name=Page676
Index=2A4
Address=080A9000
Size=00000400
Type=111
UFO=111
[Page677]
Name=Page677
Index=2A5
Address=080A9400
Size=00000400
Type=111
UFO=111
[Page678]
Name=Page678
Index=2A6
Address=080A9800
Size=00000400
Type=111
UFO=111
[Page679]
Name=Page679
Index=2A7
Address=080A9C00
Size=00000400
Type=111
UFO=111
[Page680]
Name=Page680
Index=2A8
Address=080AA000
Size=00000400
Type=111
UFO=111
[Page681]
Name=Page681
Index=2A9
Address=080AA400
Size=00000400
Type=111
UFO=111
[Page682]
Name=Page682
Index=2AA
Address=080AA800
Size=00000400
Type=111
UFO=111
[Page683]
Name=Page683
Index=2AB
Address=080AAC00
Size=00000400
Type=111
UFO=111
[Page684]
Name=Page684
Index=2AC
Address=080AB000
Size=00000400
Type=111
UFO=111
[Page685]
Name=Page685
Index=2AD
Address=080AB400
Size=00000400
Type=111
UFO=111
[Page686]
Name=Page686
Index=2AE
Address=080AB800
Size=00000400
Type=111
UFO=111
[Page687]
Name=Page687
Index=2AF
Address=080ABC00
Size=00000400
Type=111
UFO=111
[Page688]
Name=Page688
Index=2B0
Address=080AC000
Size=00000400
Type=111
UFO=111
[Page689]
Name=Page689
Index=2B1
Address=080AC400
Size=00000400
Type=111
UFO=111
[Page690]
Name=Page690
Index=2B2
Address=080AC800
Size=00000400
Type=111
UFO=111
[Page691]
Name=Page691
Index=2B3
Address=080ACC00
Size=00000400
Type=111
UFO=111
[Page692]
Name=Page692
Index=2B4
Address=080AD000
Size=00000400
Type=111
UFO=111
[Page693]
Name=Page693
Index=2B5
Address=080AD400
Size=00000400
Type=111
UFO=111
[Page694]
Name=Page694
Index=2B6
Address=080AD800
Size=00000400
Type=111
UFO=111
[Page695]
Name=Page695
Index=2B7
Address=080ADC00
Size=00000400
Type=111
UFO=111
[Page696]
Name=Page696
Index=2B8
Address=080AE000
Size=00000400
Type=111
UFO=111
[Page697]
Name=Page697
Index=2B9
Address=080AE400
Size=00000400
Type=111
UFO=111
[Page698]
Name=Page698
Index=2BA
Address=080AE800
Size=00000400
Type=111
UFO=111
[Page699]
Name=Page699
Index=2BB
Address=080AEC00
Size=00000400
Type=111
UFO=111
[Page700]
Name=Page700
Index=2BC
Address=080AF000
Size=00000400
Type=111
UFO=111
[Page701]
Name=Page701
Index=2BD
Address=080AF400
Size=00000400
Type=111
UFO=111
[Page702]
Name=Page702
Index=2BE
Address=080AF800
Size=00000400
Type=111
UFO=111
[Page703]
Name=Page703
Index=2BF
Address=080AFC00
Size=00000400
Type=111
UFO=111
[Page704]
Name=Page704
Index=2C0
Address=080B0000
Size=00000400
Type=111
UFO=111
[Page705]
Name=Page705
Index=2C1
Address=080B0400
Size=00000400
Type=111
UFO=111
[Page706]
Name=Page706
Index=2C2
Address=080B0800
Size=00000400
Type=111
UFO=111
[Page707]
Name=Page707
Index=2C3
Address=080B0C00
Size=00000400
Type=111
UFO=111
[Page708]
Name=Page708
Index=2C4
Address=080B1000
Size=00000400
Type=111
UFO=111
[Page709]
Name=Page709
Index=2C5
Address=080B1400
Size=00000400
Type=111
UFO=111
[Page710]
Name=Page710
Index=2C6
Address=080B1800
Size=00000400
Type=111
UFO=111
[Page711]
Name=Page711
Index=2C7
Address=080B1C00
Size=00000400
Type=111
UFO=111
[Page712]
Name=Page712
Index=2C8
Address=080B2000
Size=00000400
Type=111
UFO=111
[Page713]
Name=Page713
Index=2C9
Address=080B2400
Size=00000400
Type=111
UFO=111
[Page714]
Name=Page714
Index=2CA
Address=080B2800
Size=00000400
Type=111
UFO=111
[Page715]
Name=Page715
Index=2CB
Address=080B2C00
Size=00000400
Type=111
UFO=111
[Page716]
Name=Page716
Index=2CC
Address=080B3000
Size=00000400
Type=111
UFO=111
[Page717]
Name=Page717
Index=2CD
Address=080B3400
Size=00000400
Type=111
UFO=111
[Page718]
Name=Page718
Index=2CE
Address=080B3800
Size=00000400
Type=111
UFO=111
[Page719]
Name=Page719
Index=2CF
Address=080B3C00
Size=00000400
Type=111
UFO=111
[Page720]
Name=Page720
Index=2D0
Address=080B4000
Size=00000400
Type=111
UFO=111
[Page721]
Name=Page721
Index=2D1
Address=080B4400
Size=00000400
Type=111
UFO=111
[Page722]
Name=Page722
Index=2D2
Address=080B4800
Size=00000400
Type=111
UFO=111
[Page723]
Name=Page723
Index=2D3
Address=080B4C00
Size=00000400
Type=111
UFO=111
[Page724]
Name=Page724
Index=2D4
Address=080B5000
Size=00000400
Type=111
UFO=111
[Page725]
Name=Page725
Index=2D5
Address=080B5400
Size=00000400
Type=111
UFO=111
[Page726]
Name=Page726
Index=2D6
Address=080B5800
Size=00000400
Type=111
UFO=111
[Page727]
Name=Page727
Index=2D7
Address=080B5C00
Size=00000400
Type=111
UFO=111
[Page728]
Name=Page728
Index=2D8
Address=080B6000
Size=00000400
Type=111
UFO=111
[Page729]
Name=Page729
Index=2D9
Address=080B6400
Size=00000400
Type=111
UFO=111
[Page730]
Name=Page730
Index=2DA
Address=080B6800
Size=00000400
Type=111
UFO=111
[Page731]
Name=Page731
Index=2DB
Address=080B6C00
Size=00000400
Type=111
UFO=111
[Page732]
Name=Page732
Index=2DC
Address=080B7000
Size=00000400
Type=111
UFO=111
[Page733]
Name=Page733
Index=2DD
Address=080B7400
Size=00000400
Type=111
UFO=111
[Page734]
Name=Page734
Index=2DE
Address=080B7800
Size=00000400
Type=111
UFO=111
[Page735]
Name=Page735
Index=2DF
Address=080B7C00
Size=00000400
Type=111
UFO=111
[Page736]
Name=Page736
Index=2E0
Address=080B8000
Size=00000400
Type=111
UFO=111
[Page737]
Name=Page737
Index=2E1
Address=080B8400
Size=00000400
Type=111
UFO=111
[Page738]
Name=Page738
Index=2E2
Address=080B8800
Size=00000400
Type=111
UFO=111
[Page739]
Name=Page739
Index=2E3
Address=080B8C00
Size=00000400
Type=111
UFO=111
[Page740]
Name=Page740
Index=2E4
Address=080B9000
Size=00000400
Type=111
UFO=111
[Page741]
Name=Page741
Index=2E5
Address=080B9400
Size=00000400
Type=111
UFO=111
[Page742]
Name=Page742
Index=2E6
Address=080B9800
Size=00000400
Type=111
UFO=111
[Page743]
Name=Page743
Index=2E7
Address=080B9C00
Size=00000400
Type=111
UFO=111
[Page744]
Name=Page744
Index=2E8
Address=080BA000
Size=00000400
Type=111
UFO=111
[Page745]
Name=Page745
Index=2E9
Address=080BA400
Size=00000400
Type=111
UFO=111
[Page746]
Name=Page746
Index=2EA
Address=080BA800
Size=00000400
Type=111
UFO=111
[Page747]
Name=Page747
Index=2EB
Address=080BAC00
Size=00000400
Type=111
UFO=111
[Page748]
Name=Page748
Index=2EC
Address=080BB000
Size=00000400
Type=111
UFO=111
[Page749]
Name=Page749
Index=2ED
Address=080BB400
Size=00000400
Type=111
UFO=111
[Page750]
Name=Page750
Index=2EE
Address=080BB800
Size=00000400
Type=111
UFO=111
[Page751]
Name=Page751
Index=2EF
Address=080BBC00
Size=00000400
Type=111
UFO=111
[Page752]
Name=Page752
Index=2F0
Address=080BC000
Size=00000400
Type=111
UFO=111
[Page753]
Name=Page753
Index=2F1
Address=080BC400
Size=00000400
Type=111
UFO=111
[Page754]
Name=Page754
Index=2F2
Address=080BC800
Size=00000400
Type=111
UFO=111
[Page755]
Name=Page755
Index=2F3
Address=080BCC00
Size=00000400
Type=111
UFO=111
[Page756]
Name=Page756
Index=2F4
Address=080BD000
Size=00000400
Type=111
UFO=111
[Page757]
Name=Page757
Index=2F5
Address=080BD400
Size=00000400
Type=111
UFO=111
[Page758]
Name=Page758
Index=2F6
Address=080BD800
Size=00000400
Type=111
UFO=111
[Page759]
Name=Page759
Index=2F7
Address=080BDC00
Size=00000400
Type=111
UFO=111
[Page760]
Name=Page760
Index=2F8
Address=080BE000
Size=00000400
Type=111
UFO=111
[Page761]
Name=Page761
Index=2F9
Address=080BE400
Size=00000400
Type=111
UFO=111
[Page762]
Name=Page762
Index=2FA
Address=080BE800
Size=00000400
Type=111
UFO=111
[Page763]
Name=Page763
Index=2FB
Address=080BEC00
Size=00000400
Type=111
UFO=111
[Page764]
Name=Page764
Index=2FC
Address=080BF000
Size=00000400
Type=111
UFO=111
[Page765]
Name=Page765
Index=2FD
Address=080BF400
Size=00000400
Type=111
UFO=111
[Page766]
Name=Page766
Index=2FE
Address=080BF800
Size=00000400
Type=111
UFO=111
[Page767]
Name=Page767
Index=2FF
Address=080BFC00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM8L_32K.STmap
0,0 → 1,273
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM8L_32K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM8L_32K
FlashSize=FFFF
RAMSize=FFFF
PacketSize=80
ACKVAL=79
MAPNAME=sectors
PagesPerSector=2
family = 3
 
;; Erase Write Routines files /* BL_VER = FileName */
1.0 = E_W_ROUTINEs_32K_verL_1.0.s19
1.1 = E_W_ROUTINEs_32K_verL_1.0.s19
 
;; EEPROM information
[DataEE]
Name=DataEE
Index=20
Address=00001000
Size=00000400
Type=111
UFO=111
 
 
;; OPTION bytes information
[OptBytes]
Name=OptBytes
Address=00004800
Size=00000080
Type=101
UFO=111
 
 
;; Flash information
[SEC0]
Name=SEC0
Index=00
Address=00008000
Size=00000400
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00008400
Size=00000400
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=00008800
Size=00000400
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=00008C00
Size=00000400
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=00009000
Size=00000400
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=00009400
Size=00000400
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=00009800
Size=00000400
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=00009C00
Size=00000400
Type=111
UFO=111
[SEC8]
Name=SEC8
Index=08
Address=0000A000
Size=00000400
Type=111
UFO=111
[SEC9]
Name=SEC9
Index=09
Address=0000A400
Size=00000400
Type=111
UFO=111
[SEC10]
Name=SEC10
Index=0A
Address=0000A800
Size=00000400
Type=111
UFO=111
[SEC11]
Name=SEC11
Index=0B
Address=0000AC00
Size=00000400
Type=111
UFO=111
[SEC12]
Name=SEC12
Index=0C
Address=0000B000
Size=00000400
Type=111
UFO=111
[SEC13]
Name=SEC13
Index=0D
Address=0000B400
Size=00000400
Type=111
UFO=111
[SEC14]
Name=SEC14
Index=0E
Address=0000B800
Size=00000400
Type=111
UFO=111
[SEC15]
Name=SEC15
Index=0F
Address=0000BC00
Size=00000400
Type=111
UFO=111
[SEC16]
Name=SEC16
Index=10
Address=0000C000
Size=00000400
Type=111
UFO=111
[SEC17]
Name=SEC17
Index=11
Address=0000C400
Size=00000400
Type=111
UFO=111
[SEC18]
Name=SEC18
Index=12
Address=0000C800
Size=00000400
Type=111
UFO=111
[SEC19]
Name=SEC19
Index=13
Address=0000CC00
Size=00000400
Type=111
UFO=111
[SEC20]
Name=SEC20
Index=14
Address=0000D000
Size=00000400
Type=111
UFO=111
[SEC21]
Name=SEC21
Index=15
Address=0000D400
Size=00000400
Type=111
UFO=111
[SEC22]
Name=SEC22
Index=16
Address=0000D800
Size=00000400
Type=111
UFO=111
[SEC23]
Name=SEC23
Index=17
Address=0000DC00
Size=00000400
Type=111
UFO=111
[SEC24]
Name=SEC24
Index=18
Address=0000E000
Size=00000400
Type=111
UFO=111
[SEC25]
Name=SEC25
Index=19
Address=0000E400
Size=00000400
Type=111
UFO=111
[SEC26]
Name=SEC26
Index=1A
Address=0000E800
Size=00000400
Type=111
UFO=111
[SEC27]
Name=SEC27
Index=1B
Address=0000EC00
Size=00000400
Type=111
UFO=111
[SEC28]
Name=SEC28
Index=1C
Address=0000F000
Size=00000400
Type=111
UFO=111
[SEC29]
Name=SEC29
Index=1D
Address=0000F400
Size=00000400
Type=111
UFO=111
[SEC30]
Name=SEC30
Index=1E
Address=0000F800
Size=00000400
Type=111
UFO=111
[SEC31]
Name=SEC31
Index=1F
Address=0000FC00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM8L_64K.STmap
0,0 → 1,505
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM8L_64K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
 
[Product]
Name=STM8L_64K
FlashSize=FFFF
RAMSize=FFFF
PacketSize=80
ACKVAL=79
MAPNAME=sectors
PagesPerSector=2
family = 3
 
;; Erase Write Routines files /* BL_VER = FileName */
1.0 = E_W_ROUTINEs_32K_verL_1.0.s19
 
;; EEPROM information
[DataEE0]
Name=DataEE0
Index=40
Address=00001000
Size=00000400
Type=111
UFO=111
 
[DataEE1]
Name=DataEE1
Index=41
Address=00001400
Size=00000400
Type=111
UFO=111
 
 
;; OPTION bytes information
[OptBytes]
Name=OptBytes
Address=00004800
Size=00000080
Type=101
UFO=111
 
 
;; Flash information
[SEC0]
Name=SEC0
Index=00
Address=00008000
Size=00000400
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00008400
Size=00000400
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=00008800
Size=00000400
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=00008C00
Size=00000400
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=00009000
Size=00000400
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=00009400
Size=00000400
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=00009800
Size=00000400
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=00009C00
Size=00000400
Type=111
UFO=111
[SEC8]
Name=SEC8
Index=08
Address=0000A000
Size=00000400
Type=111
UFO=111
[SEC9]
Name=SEC9
Index=09
Address=0000A400
Size=00000400
Type=111
UFO=111
[SEC10]
Name=SEC10
Index=0A
Address=0000A800
Size=00000400
Type=111
UFO=111
[SEC11]
Name=SEC11
Index=0B
Address=0000AC00
Size=00000400
Type=111
UFO=111
[SEC12]
Name=SEC12
Index=0C
Address=0000B000
Size=00000400
Type=111
UFO=111
[SEC13]
Name=SEC13
Index=0D
Address=0000B400
Size=00000400
Type=111
UFO=111
[SEC14]
Name=SEC14
Index=0E
Address=0000B800
Size=00000400
Type=111
UFO=111
[SEC15]
Name=SEC15
Index=0F
Address=0000BC00
Size=00000400
Type=111
UFO=111
[SEC16]
Name=SEC16
Index=10
Address=0000C000
Size=00000400
Type=111
UFO=111
[SEC17]
Name=SEC17
Index=11
Address=0000C400
Size=00000400
Type=111
UFO=111
[SEC18]
Name=SEC18
Index=12
Address=0000C800
Size=00000400
Type=111
UFO=111
[SEC19]
Name=SEC19
Index=13
Address=0000CC00
Size=00000400
Type=111
UFO=111
[SEC20]
Name=SEC20
Index=14
Address=0000D000
Size=00000400
Type=111
UFO=111
[SEC21]
Name=SEC21
Index=15
Address=0000D400
Size=00000400
Type=111
UFO=111
[SEC22]
Name=SEC22
Index=16
Address=0000D800
Size=00000400
Type=111
UFO=111
[SEC23]
Name=SEC23
Index=17
Address=0000DC00
Size=00000400
Type=111
UFO=111
[SEC24]
Name=SEC24
Index=18
Address=0000E000
Size=00000400
Type=111
UFO=111
[SEC25]
Name=SEC25
Index=19
Address=0000E400
Size=00000400
Type=111
UFO=111
[SEC26]
Name=SEC26
Index=1A
Address=0000E800
Size=00000400
Type=111
UFO=111
[SEC27]
Name=SEC27
Index=1B
Address=0000EC00
Size=00000400
Type=111
UFO=111
[SEC28]
Name=SEC28
Index=1C
Address=0000F000
Size=00000400
Type=111
UFO=111
[SEC29]
Name=SEC29
Index=1D
Address=0000F400
Size=00000400
Type=111
UFO=111
[SEC30]
Name=SEC30
Index=1E
Address=0000F800
Size=00000400
Type=111
UFO=111
[SEC31]
Name=SEC31
Index=1F
Address=0000FC00
Size=00000400
Type=111
UFO=111
[SEC32]
Name=SEC32
Index=20
Address=00010000
Size=00000400
Type=111
UFO=111
[SEC33]
Name=SEC33
Index=21
Address=00010400
Size=00000400
Type=111
UFO=111
[SEC34]
Name=SEC34
Index=22
Address=00010800
Size=00000400
Type=111
UFO=111
[SEC35]
Name=SEC35
Index=23
Address=00010C00
Size=00000400
Type=111
UFO=111
[SEC36]
Name=SEC36
Index=24
Address=00011000
Size=00000400
Type=111
UFO=111
[SEC37]
Name=SEC37
Index=25
Address=00011400
Size=00000400
Type=111
UFO=111
[SEC38]
Name=SEC38
Index=26
Address=00011800
Size=00000400
Type=111
UFO=111
[SEC39]
Name=SEC39
Index=27
Address=00011C00
Size=00000400
Type=111
UFO=111
[SEC40]
Name=SEC40
Index=28
Address=00012000
Size=00000400
Type=111
UFO=111
[SEC41]
Name=SEC41
Index=29
Address=00012400
Size=00000400
Type=111
UFO=111
[SEC42]
Name=SEC42
Index=2A
Address=00012800
Size=00000400
Type=111
UFO=111
[SEC43]
Name=SEC43
Index=2B
Address=00012C00
Size=00000400
Type=111
UFO=111
[SEC44]
Name=SEC44
Index=2C
Address=00013000
Size=00000400
Type=111
UFO=111
[SEC45]
Name=SEC45
Index=2D
Address=00013400
Size=00000400
Type=111
UFO=111
[SEC46]
Name=SEC46
Index=2E
Address=00013800
Size=00000400
Type=111
UFO=111
[SEC47]
Name=SEC47
Index=2F
Address=00013C00
Size=00000400
Type=111
UFO=111
[SEC48]
Name=SEC48
Index=30
Address=00014000
Size=00000400
Type=111
UFO=111
[SEC49]
Name=SEC49
Index=31
Address=00014400
Size=00000400
Type=111
UFO=111
[SEC50]
Name=SEC50
Index=32
Address=00014800
Size=00000400
Type=111
UFO=111
[SEC51]
Name=SEC51
Index=33
Address=00014C00
Size=00000400
Type=111
UFO=111
[SEC52]
Name=SEC52
Index=34
Address=00015000
Size=00000400
Type=111
UFO=111
[SEC53]
Name=SEC53
Index=35
Address=00015400
Size=00000400
Type=111
UFO=111
[SEC54]
Name=SEC54
Index=36
Address=00015800
Size=00000400
Type=111
UFO=111
[SEC55]
Name=SEC55
Index=37
Address=00015C00
Size=00000400
Type=111
UFO=111
[SEC56]
Name=SEC56
Index=38
Address=00016000
Size=00000400
Type=111
UFO=111
[SEC57]
Name=SEC57
Index=39
Address=00016400
Size=00000400
Type=111
UFO=111
[SEC58]
Name=SEC58
Index=3A
Address=00016800
Size=00000400
Type=111
UFO=111
[SEC59]
Name=SEC59
Index=3B
Address=00016C00
Size=00000400
Type=111
UFO=111
[SEC60]
Name=SEC60
Index=3C
Address=00017000
Size=00000400
Type=111
UFO=111
[SEC61]
Name=SEC61
Index=3D
Address=00017400
Size=00000400
Type=111
UFO=111
[SEC62]
Name=SEC62
Index=3E
Address=00017800
Size=00000400
Type=111
UFO=111
[SEC63]
Name=SEC63
Index=3F
Address=00017C00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM8_128K.STmap
0,0 → 1,956
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM8_128K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM8_128K
FlashSize=FFFF
RAMSize=FFFF
PacketSize=80
ACKVAL=79
MAPNAME=sectors
PagesPerSector=2
family = 3
 
;; Erase Write Routines files /* BL_VER = FileName */
2.0 = E_W_ROUTINEs_128K_ver_2.0.s19
2.1 = E_W_ROUTINEs_128K_ver_2.1.s19
2.2 = E_W_ROUTINEs_128K_ver_2.2.s19
 
 
;; EEPROM information
[DataEE0]
Name=DataEE0
Index=80
Address=00004000
Size=00000400
Type=111
UFO=111
 
 
[DataEE1]
Name=DataEE1
Index=81
Address=00004400
Size=00000400
Type=111
UFO=111
 
 
;; OPTION bytes information
[OptBytes]
Name=OptBytes
Address=00004800
Size=00000080
Type=101
UFO=111
 
 
;; Flash information
[SEC0]
Name=SEC0
Index=00
Address=00008000
Size=00000400
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00008400
Size=00000400
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=00008800
Size=00000400
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=00008C00
Size=00000400
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=00009000
Size=00000400
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=00009400
Size=00000400
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=00009800
Size=00000400
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=00009C00
Size=00000400
Type=111
UFO=111
[SEC8]
Name=SEC8
Index=08
Address=0000A000
Size=00000400
Type=111
UFO=111
[SEC9]
Name=SEC9
Index=09
Address=0000A400
Size=00000400
Type=111
UFO=111
[SEC10]
Name=SEC10
Index=0A
Address=0000A800
Size=00000400
Type=111
UFO=111
[SEC11]
Name=SEC11
Index=0B
Address=0000AC00
Size=00000400
Type=111
UFO=111
[SEC12]
Name=SEC12
Index=0C
Address=0000B000
Size=00000400
Type=111
UFO=111
[SEC13]
Name=SEC13
Index=0D
Address=0000B400
Size=00000400
Type=111
UFO=111
[SEC14]
Name=SEC14
Index=0E
Address=0000B800
Size=00000400
Type=111
UFO=111
[SEC15]
Name=SEC15
Index=0F
Address=0000BC00
Size=00000400
Type=111
UFO=111
[SEC16]
Name=SEC16
Index=10
Address=0000C000
Size=00000400
Type=111
UFO=111
[SEC17]
Name=SEC17
Index=11
Address=0000C400
Size=00000400
Type=111
UFO=111
[SEC18]
Name=SEC18
Index=12
Address=0000C800
Size=00000400
Type=111
UFO=111
[SEC19]
Name=SEC19
Index=13
Address=0000CC00
Size=00000400
Type=111
UFO=111
[SEC20]
Name=SEC20
Index=14
Address=0000D000
Size=00000400
Type=111
UFO=111
[SEC21]
Name=SEC21
Index=15
Address=0000D400
Size=00000400
Type=111
UFO=111
[SEC22]
Name=SEC22
Index=16
Address=0000D800
Size=00000400
Type=111
UFO=111
[SEC23]
Name=SEC23
Index=17
Address=0000DC00
Size=00000400
Type=111
UFO=111
[SEC24]
Name=SEC24
Index=18
Address=0000E000
Size=00000400
Type=111
UFO=111
[SEC25]
Name=SEC25
Index=19
Address=0000E400
Size=00000400
Type=111
UFO=111
[SEC26]
Name=SEC26
Index=1A
Address=0000E800
Size=00000400
Type=111
UFO=111
[SEC27]
Name=SEC27
Index=1B
Address=0000EC00
Size=00000400
Type=111
UFO=111
[SEC28]
Name=SEC28
Index=1C
Address=0000F000
Size=00000400
Type=111
UFO=111
[SEC29]
Name=SEC29
Index=1D
Address=0000F400
Size=00000400
Type=111
UFO=111
[SEC30]
Name=SEC30
Index=1E
Address=0000F800
Size=00000400
Type=111
UFO=111
[SEC31]
Name=SEC31
Index=1F
Address=0000FC00
Size=00000400
Type=111
UFO=111
[SEC32]
Name=SEC32
Index=20
Address=00010000
Size=00000400
Type=111
UFO=111
[SEC33]
Name=SEC33
Index=21
Address=00010400
Size=00000400
Type=111
UFO=111
[SEC34]
Name=SEC34
Index=22
Address=00010800
Size=00000400
Type=111
UFO=111
[SEC35]
Name=SEC35
Index=23
Address=00010C00
Size=00000400
Type=111
UFO=111
[SEC36]
Name=SEC36
Index=24
Address=00011000
Size=00000400
Type=111
UFO=111
[SEC37]
Name=SEC37
Index=25
Address=00011400
Size=00000400
Type=111
UFO=111
[SEC38]
Name=SEC38
Index=26
Address=00011800
Size=00000400
Type=111
UFO=111
[SEC39]
Name=SEC39
Index=27
Address=00011C00
Size=00000400
Type=111
UFO=111
[SEC40]
Name=SEC40
Index=28
Address=00012000
Size=00000400
Type=111
UFO=111
[SEC41]
Name=SEC41
Index=29
Address=00012400
Size=00000400
Type=111
UFO=111
[SEC42]
Name=SEC42
Index=2A
Address=00012800
Size=00000400
Type=111
UFO=111
[SEC43]
Name=SEC43
Index=2B
Address=00012C00
Size=00000400
Type=111
UFO=111
[SEC44]
Name=SEC44
Index=2C
Address=00013000
Size=00000400
Type=111
UFO=111
[SEC45]
Name=SEC45
Index=2D
Address=00013400
Size=00000400
Type=111
UFO=111
[SEC46]
Name=SEC46
Index=2E
Address=00013800
Size=00000400
Type=111
UFO=111
[SEC47]
Name=SEC47
Index=2F
Address=00013C00
Size=00000400
Type=111
UFO=111
[SEC48]
Name=SEC48
Index=30
Address=00014000
Size=00000400
Type=111
UFO=111
[SEC49]
Name=SEC49
Index=31
Address=00014400
Size=00000400
Type=111
UFO=111
[SEC50]
Name=SEC50
Index=32
Address=00014800
Size=00000400
Type=111
UFO=111
[SEC51]
Name=SEC51
Index=33
Address=00014C00
Size=00000400
Type=111
UFO=111
[SEC52]
Name=SEC52
Index=34
Address=00015000
Size=00000400
Type=111
UFO=111
[SEC53]
Name=SEC53
Index=35
Address=00015400
Size=00000400
Type=111
UFO=111
[SEC54]
Name=SEC54
Index=36
Address=00015800
Size=00000400
Type=111
UFO=111
[SEC55]
Name=SEC55
Index=37
Address=00015C00
Size=00000400
Type=111
UFO=111
[SEC56]
Name=SEC56
Index=38
Address=00016000
Size=00000400
Type=111
UFO=111
[SEC57]
Name=SEC57
Index=39
Address=00016400
Size=00000400
Type=111
UFO=111
[SEC58]
Name=SEC58
Index=3A
Address=00016800
Size=00000400
Type=111
UFO=111
[SEC59]
Name=SEC59
Index=3B
Address=00016C00
Size=00000400
Type=111
UFO=111
[SEC60]
Name=SEC60
Index=3C
Address=00017000
Size=00000400
Type=111
UFO=111
[SEC61]
Name=SEC61
Index=3D
Address=00017400
Size=00000400
Type=111
UFO=111
[SEC62]
Name=SEC62
Index=3E
Address=00017800
Size=00000400
Type=111
UFO=111
[SEC63]
Name=SEC63
Index=3F
Address=00017C00
Size=00000400
Type=111
UFO=111
[SEC64]
Name=SEC64
Index=40
Address=00018000
Size=00000400
Type=111
UFO=111
[SEC65]
Name=SEC65
Index=41
Address=00018400
Size=00000400
Type=111
UFO=111
[SEC66]
Name=SEC66
Index=42
Address=00018800
Size=00000400
Type=111
UFO=111
[SEC67]
Name=SEC67
Index=43
Address=00018C00
Size=00000400
Type=111
UFO=111
[SEC68]
Name=SEC68
Index=44
Address=00019000
Size=00000400
Type=111
UFO=111
[SEC69]
Name=SEC69
Index=45
Address=00019400
Size=00000400
Type=111
UFO=111
[SEC70]
Name=SEC70
Index=46
Address=00019800
Size=00000400
Type=111
UFO=111
[SEC71]
Name=SEC71
Index=47
Address=00019C00
Size=00000400
Type=111
UFO=111
[SEC72]
Name=SEC72
Index=48
Address=0001A000
Size=00000400
Type=111
UFO=111
[SEC73]
Name=SEC73
Index=49
Address=0001A400
Size=00000400
Type=111
UFO=111
[SEC74]
Name=SEC74
Index=4A
Address=0001A800
Size=00000400
Type=111
UFO=111
[SEC75]
Name=SEC75
Index=4B
Address=0001AC00
Size=00000400
Type=111
UFO=111
[SEC76]
Name=SEC76
Index=4C
Address=0001B000
Size=00000400
Type=111
UFO=111
[SEC77]
Name=SEC77
Index=4D
Address=0001B400
Size=00000400
Type=111
UFO=111
[SEC78]
Name=SEC78
Index=4E
Address=0001B800
Size=00000400
Type=111
UFO=111
[SEC79]
Name=SEC79
Index=4F
Address=0001BC00
Size=00000400
Type=111
UFO=111
[SEC80]
Name=SEC80
Index=50
Address=0001C000
Size=00000400
Type=111
UFO=111
[SEC81]
Name=SEC81
Index=51
Address=0001C400
Size=00000400
Type=111
UFO=111
[SEC82]
Name=SEC82
Index=52
Address=0001C800
Size=00000400
Type=111
UFO=111
[SEC83]
Name=SEC83
Index=53
Address=0001CC00
Size=00000400
Type=111
UFO=111
[SEC84]
Name=SEC84
Index=54
Address=0001D000
Size=00000400
Type=111
UFO=111
[SEC85]
Name=SEC85
Index=55
Address=0001D400
Size=00000400
Type=111
UFO=111
[SEC86]
Name=SEC86
Index=56
Address=0001D800
Size=00000400
Type=111
UFO=111
[SEC87]
Name=SEC87
Index=57
Address=0001DC00
Size=00000400
Type=111
UFO=111
[SEC88]
Name=SEC88
Index=58
Address=0001E000
Size=00000400
Type=111
UFO=111
[SEC89]
Name=SEC89
Index=59
Address=0001E400
Size=00000400
Type=111
UFO=111
[SEC90]
Name=SEC90
Index=5A
Address=0001E800
Size=00000400
Type=111
UFO=111
[SEC91]
Name=SEC91
Index=5B
Address=0001EC00
Size=00000400
Type=111
UFO=111
[SEC92]
Name=SEC92
Index=5C
Address=0001F000
Size=00000400
Type=111
UFO=111
[SEC93]
Name=SEC93
Index=5D
Address=0001F400
Size=00000400
Type=111
UFO=111
[SEC94]
Name=SEC94
Index=5E
Address=0001F800
Size=00000400
Type=111
UFO=111
[SEC95]
Name=SEC95
Index=5F
Address=0001FC00
Size=00000400
Type=111
UFO=111
[SEC96]
Name=SEC96
Index=60
Address=00020000
Size=00000400
Type=111
UFO=111
[SEC97]
Name=SEC97
Index=61
Address=00020400
Size=00000400
Type=111
UFO=111
[SEC98]
Name=SEC98
Index=62
Address=00020800
Size=00000400
Type=111
UFO=111
[SEC99]
Name=SEC99
Index=63
Address=00020C00
Size=00000400
Type=111
UFO=111
[SEC100]
Name=SEC100
Index=64
Address=00021000
Size=00000400
Type=111
UFO=111
[SEC101]
Name=SEC101
Index=65
Address=00021400
Size=00000400
Type=111
UFO=111
[SEC102]
Name=SEC102
Index=66
Address=00021800
Size=00000400
Type=111
UFO=111
[SEC103]
Name=SEC103
Index=67
Address=00021C00
Size=00000400
Type=111
UFO=111
[SEC104]
Name=SEC104
Index=68
Address=00022000
Size=00000400
Type=111
UFO=111
[SEC105]
Name=SEC105
Index=69
Address=00022400
Size=00000400
Type=111
UFO=111
[SEC106]
Name=SEC106
Index=6A
Address=00022800
Size=00000400
Type=111
UFO=111
[SEC107]
Name=SEC107
Index=6B
Address=00022C00
Size=00000400
Type=111
UFO=111
[SEC108]
Name=SEC108
Index=6C
Address=00023000
Size=00000400
Type=111
UFO=111
[SEC109]
Name=SEC109
Index=6D
Address=00023400
Size=00000400
Type=111
UFO=111
[SEC110]
Name=SEC110
Index=6E
Address=00023800
Size=00000400
Type=111
UFO=111
[SEC111]
Name=SEC111
Index=6F
Address=00023C00
Size=00000400
Type=111
UFO=111
[SEC112]
Name=SEC112
Index=70
Address=00024000
Size=00000400
Type=111
UFO=111
[SEC113]
Name=SEC113
Index=71
Address=00024400
Size=00000400
Type=111
UFO=111
[SEC114]
Name=SEC114
Index=72
Address=00024800
Size=00000400
Type=111
UFO=111
[SEC115]
Name=SEC115
Index=73
Address=00024C00
Size=00000400
Type=111
UFO=111
[SEC116]
Name=SEC116
Index=74
Address=00025000
Size=00000400
Type=111
UFO=111
[SEC117]
Name=SEC117
Index=75
Address=00025400
Size=00000400
Type=111
UFO=111
[SEC118]
Name=SEC118
Index=76
Address=00025800
Size=00000400
Type=111
UFO=111
[SEC119]
Name=SEC119
Index=77
Address=00025C00
Size=00000400
Type=111
UFO=111
[SEC120]
Name=SEC120
Index=78
Address=00026000
Size=00000400
Type=111
UFO=111
[SEC121]
Name=SEC121
Index=79
Address=00026400
Size=00000400
Type=111
UFO=111
[SEC122]
Name=SEC122
Index=7A
Address=00026800
Size=00000400
Type=111
UFO=111
[SEC123]
Name=SEC123
Index=7B
Address=00026C00
Size=00000400
Type=111
UFO=111
[SEC124]
Name=SEC124
Index=7C
Address=00027000
Size=00000400
Type=111
UFO=111
[SEC125]
Name=SEC125
Index=7D
Address=00027400
Size=00000400
Type=111
UFO=111
[SEC126]
Name=SEC126
Index=7E
Address=00027800
Size=00000400
Type=111
UFO=111
[SEC127]
Name=SEC127
Index=7F
Address=00027C00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM8_16K.STmap
0,0 → 1,161
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM8_16K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM8_16K
FlashSize=FFFF
RAMSize=FFFF
PacketSize=80
ACKVAL=79
MAPNAME=sectors
PagesPerSector=2
family = 3
 
;; Erase Write Routines files /* BL_VER = FileName */
1.0 = E_W_ROUTINEs_32K_ver_1.0.s19
1.2 = E_W_ROUTINEs_32K_ver_1.2.s19
 
 
;; EEPROM information
[DataEE]
Name=DataEE
Index=20
Address=00004000
Size=00000400
Type=111
UFO=111
 
 
;; OPTION bytes information
[OptBytes]
Name=OptBytes
Address=00004800
Size=00000080
Type=101
UFO=111
 
;; Flash information
[SEC0]
Name=SEC0
Index=00
Address=00008000
Size=00000400
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00008400
Size=00000400
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=00008800
Size=00000400
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=00008C00
Size=00000400
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=00009000
Size=00000400
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=00009400
Size=00000400
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=00009800
Size=00000400
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=00009C00
Size=00000400
Type=111
UFO=111
[SEC8]
Name=SEC8
Index=08
Address=0000A000
Size=00000400
Type=111
UFO=111
[SEC9]
Name=SEC9
Index=09
Address=0000A400
Size=00000400
Type=111
UFO=111
[SEC10]
Name=SEC10
Index=0A
Address=0000A800
Size=00000400
Type=111
UFO=111
[SEC11]
Name=SEC11
Index=0B
Address=0000AC00
Size=00000400
Type=111
UFO=111
[SEC12]
Name=SEC12
Index=0C
Address=0000B000
Size=00000400
Type=111
UFO=111
[SEC13]
Name=SEC13
Index=0D
Address=0000B400
Size=00000400
Type=111
UFO=111
[SEC14]
Name=SEC14
Index=0E
Address=0000B800
Size=00000400
Type=111
UFO=111
[SEC15]
Name=SEC15
Index=0F
Address=0000BC00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM8_256K.STmap
0,0 → 1,953
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM8_256K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM8_256K
FlashSize=FFFF
RAMSize=FFFF
PacketSize=80
ACKVAL=79
MAPNAME=sectors
PagesPerSector=2
family = 3
 
;; Erase Write Routines files /* BL_VER = FileName */
1.0 = E_W_ROUTINEs_256K_ver_1.0.s19
 
 
;; EEPROM information
[DataEE0]
Name=DataEE0
Index=80
Address=00003800
Size=00000800
Type=111
UFO=111
 
[DataEE1]
Name=DataEE1
Index=81
Address=00004000
Size=00000800
Type=111
UFO=111
 
 
;; OPTION bytes information
[OptBytes]
Name=OptBytes
Address=00004800
Size=00000080
Type=101
UFO=111
 
 
;; Flash information
[SEC0]
Name=SEC0
Index=00
Address=00008000
Size=00000800
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00008800
Size=00000800
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=00009000
Size=00000800
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=00009800
Size=00000800
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=0000A000
Size=00000800
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=0000A800
Size=00000800
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=0000B000
Size=00000800
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=0000B800
Size=00000800
Type=111
UFO=111
[SEC8]
Name=SEC8
Index=08
Address=0000C000
Size=00000800
Type=111
UFO=111
[SEC9]
Name=SEC9
Index=09
Address=0000C800
Size=00000800
Type=111
UFO=111
[SEC10]
Name=SEC10
Index=0A
Address=0000D000
Size=00000800
Type=111
UFO=111
[SEC11]
Name=SEC11
Index=0B
Address=0000D800
Size=00000800
Type=111
UFO=111
[SEC12]
Name=SEC12
Index=0C
Address=0000E000
Size=00000800
Type=111
UFO=111
[SEC13]
Name=SEC13
Index=0D
Address=0000E800
Size=00000800
Type=111
UFO=111
[SEC14]
Name=SEC14
Index=0E
Address=0000F000
Size=00000800
Type=111
UFO=111
[SEC15]
Name=SEC15
Index=0F
Address=0000F800
Size=00000800
Type=111
UFO=111
[SEC16]
Name=SEC16
Index=10
Address=00010000
Size=00000800
Type=111
UFO=111
[SEC17]
Name=SEC17
Index=11
Address=00010800
Size=00000800
Type=111
UFO=111
[SEC18]
Name=SEC18
Index=12
Address=00011000
Size=00000800
Type=111
UFO=111
[SEC19]
Name=SEC19
Index=13
Address=00011800
Size=00000800
Type=111
UFO=111
[SEC20]
Name=SEC20
Index=14
Address=00012000
Size=00000800
Type=111
UFO=111
[SEC21]
Name=SEC21
Index=15
Address=00012800
Size=00000800
Type=111
UFO=111
[SEC22]
Name=SEC22
Index=16
Address=00013000
Size=00000800
Type=111
UFO=111
[SEC23]
Name=SEC23
Index=17
Address=00013800
Size=00000800
Type=111
UFO=111
[SEC24]
Name=SEC24
Index=18
Address=00014000
Size=00000800
Type=111
UFO=111
[SEC25]
Name=SEC25
Index=19
Address=00014800
Size=00000800
Type=111
UFO=111
[SEC26]
Name=SEC26
Index=1A
Address=00015000
Size=00000800
Type=111
UFO=111
[SEC27]
Name=SEC27
Index=1B
Address=00015800
Size=00000800
Type=111
UFO=111
[SEC28]
Name=SEC28
Index=1C
Address=00016000
Size=00000800
Type=111
UFO=111
[SEC29]
Name=SEC29
Index=1D
Address=00016800
Size=00000800
Type=111
UFO=111
[SEC30]
Name=SEC30
Index=1E
Address=00017000
Size=00000800
Type=111
UFO=111
[SEC31]
Name=SEC31
Index=1F
Address=00017800
Size=00000800
Type=111
UFO=111
[SEC32]
Name=SEC32
Index=20
Address=00018000
Size=00000800
Type=111
UFO=111
[SEC33]
Name=SEC33
Index=21
Address=00018800
Size=00000800
Type=111
UFO=111
[SEC34]
Name=SEC34
Index=22
Address=00019000
Size=00000800
Type=111
UFO=111
[SEC35]
Name=SEC35
Index=23
Address=00019800
Size=00000800
Type=111
UFO=111
[SEC36]
Name=SEC36
Index=24
Address=0001A000
Size=00000800
Type=111
UFO=111
[SEC37]
Name=SEC37
Index=25
Address=0001A800
Size=00000800
Type=111
UFO=111
[SEC38]
Name=SEC38
Index=26
Address=0001B000
Size=00000800
Type=111
UFO=111
[SEC39]
Name=SEC39
Index=27
Address=0001B800
Size=00000800
Type=111
UFO=111
[SEC40]
Name=SEC40
Index=28
Address=0001C000
Size=00000800
Type=111
UFO=111
[SEC41]
Name=SEC41
Index=29
Address=0001C800
Size=00000800
Type=111
UFO=111
[SEC42]
Name=SEC42
Index=2A
Address=0001D000
Size=00000800
Type=111
UFO=111
[SEC43]
Name=SEC43
Index=2B
Address=0001D800
Size=00000800
Type=111
UFO=111
[SEC44]
Name=SEC44
Index=2C
Address=0001E000
Size=00000800
Type=111
UFO=111
[SEC45]
Name=SEC45
Index=2D
Address=0001E800
Size=00000800
Type=111
UFO=111
[SEC46]
Name=SEC46
Index=2E
Address=0001F000
Size=00000800
Type=111
UFO=111
[SEC47]
Name=SEC47
Index=2F
Address=0001F800
Size=00000800
Type=111
UFO=111
[SEC48]
Name=SEC48
Index=30
Address=00020000
Size=00000800
Type=111
UFO=111
[SEC49]
Name=SEC49
Index=31
Address=00020800
Size=00000800
Type=111
UFO=111
[SEC50]
Name=SEC50
Index=32
Address=00021000
Size=00000800
Type=111
UFO=111
[SEC51]
Name=SEC51
Index=33
Address=00021800
Size=00000800
Type=111
UFO=111
[SEC52]
Name=SEC52
Index=34
Address=00022000
Size=00000800
Type=111
UFO=111
[SEC53]
Name=SEC53
Index=35
Address=00022800
Size=00000800
Type=111
UFO=111
[SEC54]
Name=SEC54
Index=36
Address=00023000
Size=00000800
Type=111
UFO=111
[SEC55]
Name=SEC55
Index=37
Address=00023800
Size=00000800
Type=111
UFO=111
[SEC56]
Name=SEC56
Index=38
Address=00024000
Size=00000800
Type=111
UFO=111
[SEC57]
Name=SEC57
Index=39
Address=00024800
Size=00000800
Type=111
UFO=111
[SEC58]
Name=SEC58
Index=3A
Address=00025000
Size=00000800
Type=111
UFO=111
[SEC59]
Name=SEC59
Index=3B
Address=00025800
Size=00000800
Type=111
UFO=111
[SEC60]
Name=SEC60
Index=3C
Address=00026000
Size=00000800
Type=111
UFO=111
[SEC61]
Name=SEC61
Index=3D
Address=00026800
Size=00000800
Type=111
UFO=111
[SEC62]
Name=SEC62
Index=3E
Address=00027000
Size=00000800
Type=111
UFO=111
[SEC63]
Name=SEC63
Index=3F
Address=00027800
Size=00000800
Type=111
UFO=111
[SEC64]
Name=SEC64
Index=40
Address=00028000
Size=00000800
Type=111
UFO=111
[SEC65]
Name=SEC65
Index=41
Address=00028800
Size=00000800
Type=111
UFO=111
[SEC66]
Name=SEC66
Index=42
Address=00029000
Size=00000800
Type=111
UFO=111
[SEC67]
Name=SEC67
Index=43
Address=00029800
Size=00000800
Type=111
UFO=111
[SEC68]
Name=SEC68
Index=44
Address=0002A000
Size=00000800
Type=111
UFO=111
[SEC69]
Name=SEC69
Index=45
Address=0002A800
Size=00000800
Type=111
UFO=111
[SEC70]
Name=SEC70
Index=46
Address=0002B000
Size=00000800
Type=111
UFO=111
[SEC71]
Name=SEC71
Index=47
Address=0002B800
Size=00000800
Type=111
UFO=111
[SEC72]
Name=SEC72
Index=48
Address=0002C000
Size=00000800
Type=111
UFO=111
[SEC73]
Name=SEC73
Index=49
Address=0002C800
Size=00000800
Type=111
UFO=111
[SEC74]
Name=SEC74
Index=4A
Address=0002D000
Size=00000800
Type=111
UFO=111
[SEC75]
Name=SEC75
Index=4B
Address=0002D800
Size=00000800
Type=111
UFO=111
[SEC76]
Name=SEC76
Index=4C
Address=0002E000
Size=00000800
Type=111
UFO=111
[SEC77]
Name=SEC77
Index=4D
Address=0002E800
Size=00000800
Type=111
UFO=111
[SEC78]
Name=SEC78
Index=4E
Address=0002F000
Size=00000800
Type=111
UFO=111
[SEC79]
Name=SEC79
Index=4F
Address=0002F800
Size=00000800
Type=111
UFO=111
[SEC80]
Name=SEC80
Index=50
Address=00030000
Size=00000800
Type=111
UFO=111
[SEC81]
Name=SEC81
Index=51
Address=00030800
Size=00000800
Type=111
UFO=111
[SEC82]
Name=SEC82
Index=52
Address=00031000
Size=00000800
Type=111
UFO=111
[SEC83]
Name=SEC83
Index=53
Address=00031800
Size=00000800
Type=111
UFO=111
[SEC84]
Name=SEC84
Index=54
Address=00032000
Size=00000800
Type=111
UFO=111
[SEC85]
Name=SEC85
Index=55
Address=00032800
Size=00000800
Type=111
UFO=111
[SEC86]
Name=SEC86
Index=56
Address=00033000
Size=00000800
Type=111
UFO=111
[SEC87]
Name=SEC87
Index=57
Address=00033800
Size=00000800
Type=111
UFO=111
[SEC88]
Name=SEC88
Index=58
Address=00034000
Size=00000800
Type=111
UFO=111
[SEC89]
Name=SEC89
Index=59
Address=00034800
Size=00000800
Type=111
UFO=111
[SEC90]
Name=SEC90
Index=5A
Address=00035000
Size=00000800
Type=111
UFO=111
[SEC91]
Name=SEC91
Index=5B
Address=00035800
Size=00000800
Type=111
UFO=111
[SEC92]
Name=SEC92
Index=5C
Address=00036000
Size=00000800
Type=111
UFO=111
[SEC93]
Name=SEC93
Index=5D
Address=00036800
Size=00000800
Type=111
UFO=111
[SEC94]
Name=SEC94
Index=5E
Address=00037000
Size=00000800
Type=111
UFO=111
[SEC95]
Name=SEC95
Index=5F
Address=00037800
Size=00000800
Type=111
UFO=111
[SEC96]
Name=SEC96
Index=60
Address=00038000
Size=00000800
Type=111
UFO=111
[SEC97]
Name=SEC97
Index=61
Address=00038800
Size=00000800
Type=111
UFO=111
[SEC98]
Name=SEC98
Index=62
Address=00039000
Size=00000800
Type=111
UFO=111
[SEC99]
Name=SEC99
Index=63
Address=00039800
Size=00000800
Type=111
UFO=111
[SEC100]
Name=SEC100
Index=64
Address=0003A000
Size=00000800
Type=111
UFO=111
[SEC101]
Name=SEC101
Index=65
Address=0003A800
Size=00000800
Type=111
UFO=111
[SEC102]
Name=SEC102
Index=66
Address=0003B000
Size=00000800
Type=111
UFO=111
[SEC103]
Name=SEC103
Index=67
Address=0003B800
Size=00000800
Type=111
UFO=111
[SEC104]
Name=SEC104
Index=68
Address=0003C000
Size=00000800
Type=111
UFO=111
[SEC105]
Name=SEC105
Index=69
Address=0003C800
Size=00000800
Type=111
UFO=111
[SEC106]
Name=SEC106
Index=6A
Address=0003D000
Size=00000800
Type=111
UFO=111
[SEC107]
Name=SEC107
Index=6B
Address=0003D800
Size=00000800
Type=111
UFO=111
[SEC108]
Name=SEC108
Index=6C
Address=0003E000
Size=00000800
Type=111
UFO=111
[SEC109]
Name=SEC109
Index=6D
Address=0003E800
Size=00000800
Type=111
UFO=111
[SEC110]
Name=SEC110
Index=6E
Address=0003F000
Size=00000800
Type=111
UFO=111
[SEC111]
Name=SEC111
Index=6F
Address=0003F800
Size=00000800
Type=111
UFO=111
[SEC112]
Name=SEC112
Index=70
Address=00040000
Size=00000800
Type=111
UFO=111
[SEC113]
Name=SEC113
Index=71
Address=00040800
Size=00000800
Type=111
UFO=111
[SEC114]
Name=SEC114
Index=72
Address=00041000
Size=00000800
Type=111
UFO=111
[SEC115]
Name=SEC115
Index=73
Address=00041800
Size=00000800
Type=111
UFO=111
[SEC116]
Name=SEC116
Index=74
Address=00042000
Size=00000800
Type=111
UFO=111
[SEC117]
Name=SEC117
Index=75
Address=00042800
Size=00000800
Type=111
UFO=111
[SEC118]
Name=SEC118
Index=76
Address=00043000
Size=00000800
Type=111
UFO=111
[SEC119]
Name=SEC119
Index=77
Address=00043800
Size=00000800
Type=111
UFO=111
[SEC120]
Name=SEC120
Index=78
Address=00044000
Size=00000800
Type=111
UFO=111
[SEC121]
Name=SEC121
Index=79
Address=00044800
Size=00000800
Type=111
UFO=111
[SEC122]
Name=SEC122
Index=7A
Address=00045000
Size=00000800
Type=111
UFO=111
[SEC123]
Name=SEC123
Index=7B
Address=00045800
Size=00000800
Type=111
UFO=111
[SEC124]
Name=SEC124
Index=7C
Address=00046000
Size=00000800
Type=111
UFO=111
[SEC125]
Name=SEC125
Index=7D
Address=00046800
Size=00000800
Type=111
UFO=111
[SEC126]
Name=SEC126
Index=7E
Address=00047000
Size=00000800
Type=111
UFO=111
[SEC127]
Name=SEC127
Index=7F
Address=00047800
Size=00000800
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM8_32K.STmap
0,0 → 1,275
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM8_32K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM8_32K
FlashSize=FFFF
RAMSize=FFFF
PacketSize=80
ACKVAL=79
MAPNAME=sectors
PagesPerSector=2
family = 3
 
;; Erase Write Routines files /* BL_VER = FileName */
1.0 = E_W_ROUTINEs_32K_ver_1.0.s19
1.2 = E_W_ROUTINEs_32K_ver_1.2.s19
1.3 = E_W_ROUTINEs_32K_ver_1.3.s19
1.4 = E_W_ROUTINEs_32K_ver_1.4.s19
 
 
;; EEPROM information
[DataEE]
Name=DataEE
Index=20
Address=00004000
Size=00000400
Type=111
UFO=111
 
 
;; OPTION bytes information
[OptBytes]
Name=OptBytes
Address=00004800
Size=00000080
Type=101
UFO=111
 
;; Flash information
[SEC0]
Name=SEC0
Index=00
Address=00008000
Size=00000400
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00008400
Size=00000400
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=00008800
Size=00000400
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=00008C00
Size=00000400
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=00009000
Size=00000400
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=00009400
Size=00000400
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=00009800
Size=00000400
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=00009C00
Size=00000400
Type=111
UFO=111
[SEC8]
Name=SEC8
Index=08
Address=0000A000
Size=00000400
Type=111
UFO=111
[SEC9]
Name=SEC9
Index=09
Address=0000A400
Size=00000400
Type=111
UFO=111
[SEC10]
Name=SEC10
Index=0A
Address=0000A800
Size=00000400
Type=111
UFO=111
[SEC11]
Name=SEC11
Index=0B
Address=0000AC00
Size=00000400
Type=111
UFO=111
[SEC12]
Name=SEC12
Index=0C
Address=0000B000
Size=00000400
Type=111
UFO=111
[SEC13]
Name=SEC13
Index=0D
Address=0000B400
Size=00000400
Type=111
UFO=111
[SEC14]
Name=SEC14
Index=0E
Address=0000B800
Size=00000400
Type=111
UFO=111
[SEC15]
Name=SEC15
Index=0F
Address=0000BC00
Size=00000400
Type=111
UFO=111
[SEC16]
Name=SEC16
Index=10
Address=0000C000
Size=00000400
Type=111
UFO=111
[SEC17]
Name=SEC17
Index=11
Address=0000C400
Size=00000400
Type=111
UFO=111
[SEC18]
Name=SEC18
Index=12
Address=0000C800
Size=00000400
Type=111
UFO=111
[SEC19]
Name=SEC19
Index=13
Address=0000CC00
Size=00000400
Type=111
UFO=111
[SEC20]
Name=SEC20
Index=14
Address=0000D000
Size=00000400
Type=111
UFO=111
[SEC21]
Name=SEC21
Index=15
Address=0000D400
Size=00000400
Type=111
UFO=111
[SEC22]
Name=SEC22
Index=16
Address=0000D800
Size=00000400
Type=111
UFO=111
[SEC23]
Name=SEC23
Index=17
Address=0000DC00
Size=00000400
Type=111
UFO=111
[SEC24]
Name=SEC24
Index=18
Address=0000E000
Size=00000400
Type=111
UFO=111
[SEC25]
Name=SEC25
Index=19
Address=0000E400
Size=00000400
Type=111
UFO=111
[SEC26]
Name=SEC26
Index=1A
Address=0000E800
Size=00000400
Type=111
UFO=111
[SEC27]
Name=SEC27
Index=1B
Address=0000EC00
Size=00000400
Type=111
UFO=111
[SEC28]
Name=SEC28
Index=1C
Address=0000F000
Size=00000400
Type=111
UFO=111
[SEC29]
Name=SEC29
Index=1D
Address=0000F400
Size=00000400
Type=111
UFO=111
[SEC30]
Name=SEC30
Index=1E
Address=0000F800
Size=00000400
Type=111
UFO=111
[SEC31]
Name=SEC31
Index=1F
Address=0000FC00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STM8_64K.STmap
0,0 → 1,507
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STM8_64K.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STM8_64K
FlashSize=FFFF
RAMSize=FFFF
PacketSize=80
ACKVAL=79
MAPNAME=sectors
PagesPerSector=2
family = 3
 
;; Erase Write Routines files /* BL_VER = FileName */
2.0 = E_W_ROUTINEs_128K_ver_2.0.s19
2.1 = E_W_ROUTINEs_128K_ver_2.1.s19
 
 
;; EEPROM information
[DataEE0]
Name=DataEE0
Index=80
Address=00004000
Size=00000400
Type=111
UFO=111
 
 
[DataEE1]
Name=DataEE1
Index=81
Address=00004400
Size=00000400
Type=111
UFO=111
 
 
;; OPTION bytes information
[OptBytes]
Name=OptBytes
Address=00004800
Size=00000080
Type=101
UFO=111
 
 
;; Flash information
[SEC0]
Name=SEC0
Index=00
Address=00008000
Size=00000400
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00008400
Size=00000400
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=00008800
Size=00000400
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=00008C00
Size=00000400
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=00009000
Size=00000400
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=00009400
Size=00000400
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=00009800
Size=00000400
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=00009C00
Size=00000400
Type=111
UFO=111
[SEC8]
Name=SEC8
Index=08
Address=0000A000
Size=00000400
Type=111
UFO=111
[SEC9]
Name=SEC9
Index=09
Address=0000A400
Size=00000400
Type=111
UFO=111
[SEC10]
Name=SEC10
Index=0A
Address=0000A800
Size=00000400
Type=111
UFO=111
[SEC11]
Name=SEC11
Index=0B
Address=0000AC00
Size=00000400
Type=111
UFO=111
[SEC12]
Name=SEC12
Index=0C
Address=0000B000
Size=00000400
Type=111
UFO=111
[SEC13]
Name=SEC13
Index=0D
Address=0000B400
Size=00000400
Type=111
UFO=111
[SEC14]
Name=SEC14
Index=0E
Address=0000B800
Size=00000400
Type=111
UFO=111
[SEC15]
Name=SEC15
Index=0F
Address=0000BC00
Size=00000400
Type=111
UFO=111
[SEC16]
Name=SEC16
Index=10
Address=0000C000
Size=00000400
Type=111
UFO=111
[SEC17]
Name=SEC17
Index=11
Address=0000C400
Size=00000400
Type=111
UFO=111
[SEC18]
Name=SEC18
Index=12
Address=0000C800
Size=00000400
Type=111
UFO=111
[SEC19]
Name=SEC19
Index=13
Address=0000CC00
Size=00000400
Type=111
UFO=111
[SEC20]
Name=SEC20
Index=14
Address=0000D000
Size=00000400
Type=111
UFO=111
[SEC21]
Name=SEC21
Index=15
Address=0000D400
Size=00000400
Type=111
UFO=111
[SEC22]
Name=SEC22
Index=16
Address=0000D800
Size=00000400
Type=111
UFO=111
[SEC23]
Name=SEC23
Index=17
Address=0000DC00
Size=00000400
Type=111
UFO=111
[SEC24]
Name=SEC24
Index=18
Address=0000E000
Size=00000400
Type=111
UFO=111
[SEC25]
Name=SEC25
Index=19
Address=0000E400
Size=00000400
Type=111
UFO=111
[SEC26]
Name=SEC26
Index=1A
Address=0000E800
Size=00000400
Type=111
UFO=111
[SEC27]
Name=SEC27
Index=1B
Address=0000EC00
Size=00000400
Type=111
UFO=111
[SEC28]
Name=SEC28
Index=1C
Address=0000F000
Size=00000400
Type=111
UFO=111
[SEC29]
Name=SEC29
Index=1D
Address=0000F400
Size=00000400
Type=111
UFO=111
[SEC30]
Name=SEC30
Index=1E
Address=0000F800
Size=00000400
Type=111
UFO=111
[SEC31]
Name=SEC31
Index=1F
Address=0000FC00
Size=00000400
Type=111
UFO=111
[SEC32]
Name=SEC32
Index=20
Address=00010000
Size=00000400
Type=111
UFO=111
[SEC33]
Name=SEC33
Index=21
Address=00010400
Size=00000400
Type=111
UFO=111
[SEC34]
Name=SEC34
Index=22
Address=00010800
Size=00000400
Type=111
UFO=111
[SEC35]
Name=SEC35
Index=23
Address=00010C00
Size=00000400
Type=111
UFO=111
[SEC36]
Name=SEC36
Index=24
Address=00011000
Size=00000400
Type=111
UFO=111
[SEC37]
Name=SEC37
Index=25
Address=00011400
Size=00000400
Type=111
UFO=111
[SEC38]
Name=SEC38
Index=26
Address=00011800
Size=00000400
Type=111
UFO=111
[SEC39]
Name=SEC39
Index=27
Address=00011C00
Size=00000400
Type=111
UFO=111
[SEC40]
Name=SEC40
Index=28
Address=00012000
Size=00000400
Type=111
UFO=111
[SEC41]
Name=SEC41
Index=29
Address=00012400
Size=00000400
Type=111
UFO=111
[SEC42]
Name=SEC42
Index=2A
Address=00012800
Size=00000400
Type=111
UFO=111
[SEC43]
Name=SEC43
Index=2B
Address=00012C00
Size=00000400
Type=111
UFO=111
[SEC44]
Name=SEC44
Index=2C
Address=00013000
Size=00000400
Type=111
UFO=111
[SEC45]
Name=SEC45
Index=2D
Address=00013400
Size=00000400
Type=111
UFO=111
[SEC46]
Name=SEC46
Index=2E
Address=00013800
Size=00000400
Type=111
UFO=111
[SEC47]
Name=SEC47
Index=2F
Address=00013C00
Size=00000400
Type=111
UFO=111
[SEC48]
Name=SEC48
Index=30
Address=00014000
Size=00000400
Type=111
UFO=111
[SEC49]
Name=SEC49
Index=31
Address=00014400
Size=00000400
Type=111
UFO=111
[SEC50]
Name=SEC50
Index=32
Address=00014800
Size=00000400
Type=111
UFO=111
[SEC51]
Name=SEC51
Index=33
Address=00014C00
Size=00000400
Type=111
UFO=111
[SEC52]
Name=SEC52
Index=34
Address=00015000
Size=00000400
Type=111
UFO=111
[SEC53]
Name=SEC53
Index=35
Address=00015400
Size=00000400
Type=111
UFO=111
[SEC54]
Name=SEC54
Index=36
Address=00015800
Size=00000400
Type=111
UFO=111
[SEC55]
Name=SEC55
Index=37
Address=00015C00
Size=00000400
Type=111
UFO=111
[SEC56]
Name=SEC56
Index=38
Address=00016000
Size=00000400
Type=111
UFO=111
[SEC57]
Name=SEC57
Index=39
Address=00016400
Size=00000400
Type=111
UFO=111
[SEC58]
Name=SEC58
Index=3A
Address=00016800
Size=00000400
Type=111
UFO=111
[SEC59]
Name=SEC59
Index=3B
Address=00016C00
Size=00000400
Type=111
UFO=111
[SEC60]
Name=SEC60
Index=3C
Address=00017000
Size=00000400
Type=111
UFO=111
[SEC61]
Name=SEC61
Index=3D
Address=00017400
Size=00000400
Type=111
UFO=111
[SEC62]
Name=SEC62
Index=3E
Address=00017800
Size=00000400
Type=111
UFO=111
[SEC63]
Name=SEC63
Index=3F
Address=00017C00
Size=00000400
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STR750F.STmap
0,0 → 1,104
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STR750F.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STR750F
FlashSize=FFFF
RAMSize=FFFF
PacketSize=FF
ACKVAL=75
MAPNAME=Sectors
PagesPerSector = 1
family = 2;
 
[B0F0]
Name=B0F0 ;; page or sector name
Index=0 ;; page or sector code
Address=20000000 ;; start address (hexa format)
Size=2000 ;; size (hexa format)
Type=111 ;; reserved
UFO=1 ;; reserved
 
[B0F1]
Name=B0F1
Index=1
Address=20002000
Size=2000
Type=111
UFO=1
 
[B0F2]
Name=B0F2
Index=2
Address=20004000
Size=2000
Type=111
UFO=1
 
[B0F3]
Name=B0F3
Index=3
Address=20006000
Size=2000
Type=111
UFO=1
 
[B0F4]
Name=B0F4
Index=4
Address=20008000
Size=8000
Type=111
UFO=1
 
[B0F5]
Name=B0F5
Index=5
Address=20010000
Size=10000
Type=111
UFO=1
 
[B0F6]
Name=B0F6
Index=6
Address=20020000
Size=10000
Type=111
UFO=1
 
[B0F7]
Name=B0F7
Index=7
Address=20030000
Size=10000
Type=111
UFO=1
 
[B1F0]
Name=B1F0
Index=10
Address=200C0000
Size=2000
Type=111
UFO=1
 
[B1F1]
Name=B1F1
Index=11
Address=200C2000
Size=2000
Type=111
UFO=1
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STR91xFA.STmap
0,0 → 1,250
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STR91xFA.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STR91xFA
PID=25966041
FlashSize=FFFF
RAMSize=FFFF
PacketSize=FF
ACKVAL=79
MAPNAME=Sectors
PagesPerSector = 1
family = 4;
 
[SEC0]
Name=SEC0
Index=00
Address=00200000
Size=00010000
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00210000
Size=00010000
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=00220000
Size=00010000
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=00230000
Size=00010000
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=00240000
Size=00010000
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=00250000
Size=00010000
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=00260000
Size=00010000
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=00270000
Size=00010000
Type=111
UFO=111
[SEC8]
Name=SEC8
Index=08
Address=00280000
Size=00010000
Type=111
UFO=111
[SEC9]
Name=SEC9
Index=09
Address=00290000
Size=00010000
Type=111
UFO=111
[SEC10]
Name=SEC10
Index=0A
Address=002A0000
Size=00010000
Type=111
UFO=111
[SEC11]
Name=SEC11
Index=0B
Address=002B0000
Size=00010000
Type=111
UFO=111
[SEC12]
Name=SEC12
Index=0C
Address=002C0000
Size=00010000
Type=111
UFO=111
[SEC13]
Name=SEC13
Index=0D
Address=002D0000
Size=00010000
Type=111
UFO=111
[SEC14]
Name=SEC14
Index=0E
Address=002E0000
Size=00010000
Type=111
UFO=111
[SEC15]
Name=SEC15
Index=0F
Address=002F0000
Size=00010000
Type=111
UFO=111
[SEC16]
Name=SEC16
Index=10
Address=00300000
Size=00010000
Type=111
UFO=111
[SEC17]
Name=SEC17
Index=11
Address=00310000
Size=00010000
Type=111
UFO=111
[SEC18]
Name=SEC18
Index=12
Address=00320000
Size=00010000
Type=111
UFO=111
[SEC19]
Name=SEC19
Index=13
Address=00330000
Size=00010000
Type=111
UFO=111
[SEC20]
Name=SEC20
Index=14
Address=00340000
Size=00010000
Type=111
UFO=111
[SEC21]
Name=SEC21
Index=15
Address=00350000
Size=00010000
Type=111
UFO=111
[SEC22]
Name=SEC22
Index=16
Address=00360000
Size=00010000
Type=111
UFO=111
[SEC23]
Name=SEC23
Index=17
Address=00370000
Size=00010000
Type=111
UFO=111
[SEC24]
Name=SEC24
Index=18
Address=00380000
Size=00010000
Type=111
UFO=111
[SEC25]
Name=SEC25
Index=19
Address=00390000
Size=00010000
Type=111
UFO=111
[SEC26]
Name=SEC26
Index=1A
Address=003A0000
Size=00010000
Type=111
UFO=111
[SEC27]
Name=SEC27
Index=1B
Address=003B0000
Size=00010000
Type=111
UFO=111
[SEC28]
Name=SEC28
Index=1C
Address=003C0000
Size=00010000
Type=111
UFO=111
[SEC29]
Name=SEC29
Index=1D
Address=003D0000
Size=00010000
Type=111
UFO=111
[SEC30]
Name=SEC30
Index=1E
Address=003E0000
Size=00010000
Type=111
UFO=111
[SEC31]
Name=SEC31
Index=1F
Address=003F0000
Size=00010000
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STR91xFAWy2.STmap
0,0 → 1,55
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STR91xFAWy2.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
 
[Product]
Name=STR91xFAWy2
PID=25966041
FlashSize=FFFF
RAMSize=FFFF
PacketSize=FF
ACKVAL=79
MAPNAME=Sectors
PagesPerSector = 1
family = 4;
 
[SEC0]
Name=SEC0
Index=00
Address=00080000
Size=00010000
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00090000
Size=00010000
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=000A0000
Size=00010000
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=000B0000
Size=00010000
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STR91xFAWy4.STmap
0,0 → 1,81
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STR91xFAWy4.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
[Product]
Name=STR91xFAWy4
PID=25966041
FlashSize=FFFF
RAMSize=FFFF
PacketSize=FF
ACKVAL=79
MAPNAME=Sectors
PagesPerSector = 1
family = 4;
 
[SEC0]
Name=SEC0
Index=00
Address=00080000
Size=00010000
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00090000
Size=00010000
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=000A0000
Size=00010000
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=000B0000
Size=00010000
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=000C0000
Size=00010000
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=000D0000
Size=00010000
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=000E0000
Size=00010000
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=000F0000
Size=00010000
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STR91xFAWy6.STmap
0,0 → 1,138
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STR91xFAWy6.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STR91xFAWy6
PID=25966041
FlashSize=FFFF
RAMSize=FFFF
PacketSize=FF
ACKVAL=79
MAPNAME=Sectors
PagesPerSector = 1
family = 4;
 
[SEC0]
Name=SEC0
Index=00
Address=0200000
Size=00010000
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=0210000
Size=00010000
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=0220000
Size=00010000
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=0230000
Size=00010000
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=0240000
Size=00010000
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=0250000
Size=00010000
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=0260000
Size=00010000
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=0270000
Size=00010000
Type=111
UFO=111
[SEC8]
Name=SEC8
Index=08
Address=0280000
Size=00010000
Type=111
UFO=111
[SEC9]
Name=SEC9
Index=09
Address=0290000
Size=00010000
Type=111
UFO=111
[SEC10]
Name=SEC10
Index=0A
Address=02A0000
Size=00010000
Type=111
UFO=111
[SEC11]
Name=SEC11
Index=0B
Address=02B0000
Size=00010000
Type=111
UFO=111
[SEC12]
Name=SEC12
Index=0C
Address=02C0000
Size=00010000
Type=111
UFO=111
[SEC13]
Name=SEC13
Index=0D
Address=02D0000
Size=00010000
Type=111
UFO=111
[SEC14]
Name=SEC14
Index=0E
Address=02E0000
Size=00010000
Type=111
UFO=111
[SEC15]
Name=SEC15
Index=0F
Address=02F0000
Size=00010000
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/Map/STR91xFAWy7.STmap
0,0 → 1,250
;;******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
;;* File Name : STR91xFAWy7.STmap
;;* Author : MCD Application Team
;;* Version : V2.2.0
;;* Date : 05/03/2010
;;* Description : memory mapping
;;********************************************************************************
;;* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
;;* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
;;* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
;;* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
;;* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
;;* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
;;********************************************************************************
 
[Product]
Name=STR91xFAWy7
PID=25966041
FlashSize=FFFF
RAMSize=FFFF
PacketSize=FF
ACKVAL=79
MAPNAME=Sectors
PagesPerSector = 1
family = 4;
 
[SEC0]
Name=SEC0
Index=00
Address=00200000
Size=00010000
Type=111
UFO=111
[SEC1]
Name=SEC1
Index=01
Address=00210000
Size=00010000
Type=111
UFO=111
[SEC2]
Name=SEC2
Index=02
Address=00220000
Size=00010000
Type=111
UFO=111
[SEC3]
Name=SEC3
Index=03
Address=00230000
Size=00010000
Type=111
UFO=111
[SEC4]
Name=SEC4
Index=04
Address=00240000
Size=00010000
Type=111
UFO=111
[SEC5]
Name=SEC5
Index=05
Address=00250000
Size=00010000
Type=111
UFO=111
[SEC6]
Name=SEC6
Index=06
Address=00260000
Size=00010000
Type=111
UFO=111
[SEC7]
Name=SEC7
Index=07
Address=00270000
Size=00010000
Type=111
UFO=111
[SEC8]
Name=SEC8
Index=08
Address=00280000
Size=00010000
Type=111
UFO=111
[SEC9]
Name=SEC9
Index=09
Address=00290000
Size=00010000
Type=111
UFO=111
[SEC10]
Name=SEC10
Index=0A
Address=002A0000
Size=00010000
Type=111
UFO=111
[SEC11]
Name=SEC11
Index=0B
Address=002B0000
Size=00010000
Type=111
UFO=111
[SEC12]
Name=SEC12
Index=0C
Address=002C0000
Size=00010000
Type=111
UFO=111
[SEC13]
Name=SEC13
Index=0D
Address=002D0000
Size=00010000
Type=111
UFO=111
[SEC14]
Name=SEC14
Index=0E
Address=002E0000
Size=00010000
Type=111
UFO=111
[SEC15]
Name=SEC15
Index=0F
Address=002F0000
Size=00010000
Type=111
UFO=111
[SEC16]
Name=SEC16
Index=10
Address=00300000
Size=00010000
Type=111
UFO=111
[SEC17]
Name=SEC17
Index=11
Address=00310000
Size=00010000
Type=111
UFO=111
[SEC18]
Name=SEC18
Index=12
Address=00320000
Size=00010000
Type=111
UFO=111
[SEC19]
Name=SEC19
Index=13
Address=00330000
Size=00010000
Type=111
UFO=111
[SEC20]
Name=SEC20
Index=14
Address=00340000
Size=00010000
Type=111
UFO=111
[SEC21]
Name=SEC21
Index=15
Address=00350000
Size=00010000
Type=111
UFO=111
[SEC22]
Name=SEC22
Index=16
Address=00360000
Size=00010000
Type=111
UFO=111
[SEC23]
Name=SEC23
Index=17
Address=00370000
Size=00010000
Type=111
UFO=111
[SEC24]
Name=SEC24
Index=18
Address=00380000
Size=00010000
Type=111
UFO=111
[SEC25]
Name=SEC25
Index=19
Address=00390000
Size=00010000
Type=111
UFO=111
[SEC26]
Name=SEC26
Index=1A
Address=003A0000
Size=00010000
Type=111
UFO=111
[SEC27]
Name=SEC27
Index=1B
Address=003B0000
Size=00010000
Type=111
UFO=111
[SEC28]
Name=SEC28
Index=1C
Address=003C0000
Size=00010000
Type=111
UFO=111
[SEC29]
Name=SEC29
Index=1D
Address=003D0000
Size=00010000
Type=111
UFO=111
[SEC30]
Name=SEC30
Index=1E
Address=003E0000
Size=00010000
Type=111
UFO=111
[SEC31]
Name=SEC31
Index=1F
Address=003F0000
Size=00010000
Type=111
UFO=111
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STBLLIB.dll
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STM8_Routines/E_W_ROUTINEs_128K_ver_2.0.s19
0,0 → 1,19
S0090000424C2E736D3723
S11300A05F3F907209008E16CD6087B690E7005CC2
S11300B04CB790A18226F1A681B7885F3F90E600F5
S11300C0A18026073F8AAE4000203FA18126073F3A
S11300D08AAE44002034A120240E3F8AAE00804220
S11300E05858581C80002022A1602411A020AE0082
S11300F08042585858A601B78A200F20C1A060AE8C
S1130100008042585858A602B78A905FCD60879EF7
S1130110B78B9FB78CA620C7505B43C7505C4F92E8
S1130120BD008A5C9FB78C4F92BD008A5C9FB78CE0
S11301304F92BD008A5C9FB78C4F92BD008A7205B6
S1130140505FFB90A30007270A905C1D00031C006E
S11301508020B9B690B18827085F3C90B69097206C
S11301609A815F720D008E1A720000980BA601C767
S1130170505B43C7505C200A3581505B357E505C30
S11301803F98CD6087F692A7008A720C008E0572A4
S113019005505FFB9FB18827035C20E6720D008E3B
S10A01A0057205505FFB81AD
S903FFFFFE
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STM8_Routines/E_W_ROUTINEs_128K_ver_2.1.s19
0,0 → 1,24
S00F000044656275675C424C2E736D38D9
S11300A05F3F903F9C7209008E16CD608CB690E73E
S11300B0005C4CB790A18226F1A681B7885F3F907F
S11300C0E600A18026073F8AAE4000203DA181269C
S11300D0073F8AAE44002032A120240E3F8AAE009E
S11300E080425858581C80002020A160240FA02072
S11300F0AE008042585858A601B78A200DA060AEC1
S1130100008042585858A602B78A905FCD608C9EF2
S1130110B78B9FB78CA620C7505B43C7505C4F92E8
S1130120BD008A5C9FB78C4F92BD008A5C9FB78CE0
S11301304F92BD008A5C9FB78C4F92BD008A7200BB
S1130140505F077205505FFB20047210009C90A35F
S11301500007270A905C1D00031C008020AEB690A7
S1130160B188271B5F3C90B69097CC00C09D9D9DA5
S11301709D9D9D9D9D9D9D9D9D9D9D9D9D9D9D81C7
S1130180CD608C5F3F9D720D008E18720000980B3D
S1130190A601C7505B43C7505C20083581505B35CE
S11301A07E505C3F98F692A7008A720C008E137200
S11301B000505F077205505FFB20047210009DCD54
S11301C0608C9FB18827035C20DB720D008E107257
S11301D000505F077205505FFB20247210009D20C1
S11301E01E9D9D9D9D9D9D9D9D9D9D9D9D9D9D9DBA
S11301F09D9D9D9D9D9D9D9D9D9D9D9D9D9D9D8147
S903FFFFFE
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STM8_Routines/E_W_ROUTINEs_128K_ver_2.2.s19
0,0 → 1,12
S12300A05F3F903F9B7209008E16CD608AB690E7005C4CB790A18226F1A681B7885F3F9074
S12300C0E600A18026073F8AAE4000203DA18126073F8AAE44002032A120240E3F8AAE000E
S12300E080425858581C80002020A160240FA020AE008042585858A601B78A200DA060AE27
S1230100008042585858A602B78A905FCD608A9EB78B9FB78CA620C7505B43C7505C4F92F1
S1230120BD008A5C9FB78C4F92BD008A5C9FB78C4F92BD008A5C9FB78C4F92BD008A7200D0
S1230140505F077205505FFB20047210009B90A30007270A905C1D00031C008020AEB6905C
S1230160B188271B5F3C90B69097CC00C09D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D81E1
S1230180CD608A5F3F9C720D008E18720000980BA601C7505B43C7505C20083581505B35A3
S12301A07E505C3F98F692A7008A720C008E137200505F077205505FFB20047210009CCD0A
S12301C0608A9FB18827035C20DB720D008E107200505F077205505FFB20247210009C20F0
S12301E01E9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D81F6
S903FFFFFE
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STM8_Routines/E_W_ROUTINEs_256K_ver_1.0.s19
0,0 → 1,22
S00F000044656275675C626C2E736D3899
S11300A05F3F907209008E16CD6097B690E7005CB2
S11300B04CB790A18226F1A681B7885F3F90E600F5
S11300C0A18026073F8AAE38002068A18126073F19
S11300D08AAE4000205DA110240F3F8AAE0080420A
S11300E0585858581C8000204AA1302410A010AE43
S11300F000804258585858A601B78A2036A1502487
S113010010A030AE00804258585858A602B78A2032
S113011022A1702410A050AE00804258585858A60E
S113012003B78A200EA070AE00804258585858A6D3
S113013004B78A905FCD60979EB78B9FB78CA6203B
S1130140C7505B43C7505C4F92BD008A5C9FB78C1D
S11301504F92BD008A5C9FB78C4F92BD008A5C9F12
S1130160B78C4F92BD008A7205505FFB90A3000FBD
S1130170270A905C1D00031C008020B9B690B1884A
S113018027095F3C90B69097CC00BE815F720D004A
S11301908E18720000980BA601C7505B43C7505CD1
S11301A020083581505B357E505C3F98CD6097F6D2
S11301B092A7008A720C008E057205505FFB9FB1F6
S11301C08827035C20E6720D008E057205505FFBE4
S10401D081A9
S903FFFFFE
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STM8_Routines/E_W_ROUTINEs_32K_verL_1.0.s19
--- SW/RS232_bootloader/STM8_Routines/E_W_ROUTINEs_32K_ver_1.0.s19 (nonexistent)
+++ SW/RS232_bootloader/STM8_Routines/E_W_ROUTINEs_32K_ver_1.0.s19 (revision 2063)
@@ -0,0 +1,16 @@
+S00F000044656275675C626C2E736D3899
+S11300A05F3F907209008E16CD605FB690E7005CEA
+S11300B04CB790A12126F1A620B7885F3F90E600B7
+S11300C0A12026073F8AAE4000200C3F8AAE008064
+S11300D0425858581C8000905FCD605F9EB78B9F3C
+S11300E0B78CA620C7505B43C7505C4F92BD008AB3
+S11300F05C9FB78C4F92BD008A5C9FB78C4F92BDBA
+S1130100008A5C9FB78C4F92BD008A7205505FFBDA
+S113011090A30007270A905C1D00031C008020B9EF
+S1130120B690B18827085F3C90B690972090815F85
+S1130130720D008E1A720000940BA601C7505B4327
+S1130140C7505C200A3581505B357E505C3F94CDAE
+S1130150605FF692A7008A720C008E057205505FEC
+S1130160FB9FB18827035C20E6720D008E057205A3
+S1070170505FFB815C
+S903FFFFFE
\ No newline at end of file
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STM8_Routines/E_W_ROUTINEs_32K_ver_1.2.s19
0,0 → 1,21
S00F000044656275675C626C2E736D3899
S11300A05F3F903F977209008E16CD606DB690E762
S11300B0005C4CB790A12126F1A620B7885F3F9041
S11300C0E600A12026073F8AAE4000200C3F8AAEFE
S11300D00080425858581C8000905FCD606D9EB7D8
S11300E08B9FB78CA620C7505B43C7505C4F92BD13
S11300F0008A5C9FB78C4F92BD008A5C9FB78C4F7F
S113010092BD008A5C9FB78C4F92BD008A720050EA
S11301105F077205505FFB20047210009790A300E4
S113012007270A905C1D00031C008020AEB690B126
S113013088271C5F3C90B69097CC00C09D9D9D9DE8
S11301409D9D9D9D9D9D9D9D9D9D9D9D9D9D9D81F7
S1130150CD606D5F3F98720D008E18720000940B95
S1130160A601C7505B43C7505C20083581505B35FE
S11301707E505C3F94CD606DF692A7008A720C00AD
S11301808E137200505F077205505FFB20047210DB
S11301900098CD606D9FB18827035C20D8720D0054
S11301A08E107200505F077205505FFB20217210A1
S11301B00098201B9D9D9D9D9D9D9D9D9D9D9D9D0C
S11301C09D9D9D9D9D9D9D9D9D9D9D9D9D9D9D8177
S903FFFFFE
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STM8_Routines/E_W_ROUTINEs_32K_ver_1.3.s19
0,0 → 1,21
S00F000044656275675C626C2E736D3899
S11300A05F3F903F967209008E16CD6065B690E76B
S11300B0005C4CB790A12126F1A620B7885F3F9041
S11300C0E600A12026073F8AAE4000200C3F8AAEFE
S11300D00080425858581C8000905FCD60659EB7E0
S11300E08B9FB78CA620C7505B43C7505C4F92BD13
S11300F0008A5C9FB78C4F92BD008A5C9FB78C4F7F
S113010092BD008A5C9FB78C4F92BD008A720050EA
S11301105F077205505FFB20047210009690A300E5
S113012007270A905C1D00031C008020AEB690B126
S113013088271C5F3C90B69097CC00C09D9D9D9DE8
S11301409D9D9D9D9D9D9D9D9D9D9D9D9D9D9D81F7
S1130150CD60655F3F97720D008E18720000940B9E
S1130160A601C7505B43C7505C20083581505B35FE
S11301707E505C3F94F692A7008A720C008E137234
S113018000505F077205505FFB200472100097CD8A
S113019060659FB18827035C20DB720D008E1072AE
S11301A000505F077205505FFB20247210009720F7
S11301B01E9D9D9D9D9D9D9D9D9D9D9D9D9D9D9DEA
S11301C09D9D9D9D9D9D9D9D9D9D9D9D9D9D9D8177
S903FFFFFE
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STM8_Routines/E_W_ROUTINEs_32K_ver_1.4.s19
0,0 → 1,20
S11300A05F3F903F967209008E16CD6063B690E76D
S11300B0005C4CB790A12126F1A620B7885F3F9041
S11300C0E600A12026073F8AAE4000200C3F8AAEFE
S11300D00080425858581C8000905FCD60639EB7E2
S11300E08B9FB78CA620C7505B43C7505C4F92BD13
S11300F0008A5C9FB78C4F92BD008A5C9FB78C4F7F
S113010092BD008A5C9FB78C4F92BD008A720050EA
S11301105F077205505FFB20047210009690A300E5
S113012007270A905C1D00031C008020AEB690B126
S113013088271C5F3C90B6909720859D9D9D9D9D32
S11301409D9D9D9D9D9D9D9D9D9D9D9D9D9D9D81F7
S1130150CD60635F3F97720D008E18720000940BA0
S1130160A601C7505B43C7505C20083581505B35FE
S11301707E505C3F94F692A7008A720C008E137234
S113018000505F077205505FFB200472100097CD8A
S113019060639FB18827035C20DB720D008E1072B0
S11301A000505F077205505FFB20247210009720F7
S11301B01E9D9D9D9D9D9D9D9D9D9D9D9D9D9D9DEA
S11301C09D9D9D9D9D9D9D9D9D9D9D9D9D9D9D8177
S903FFFFFE
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STMFlashLoader.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STMFlashLoader.exe.new
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/STUARTBLLIB.dll
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/readme.txt
0,0 → 1,32
/******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
* File Name : readme.txt
* Author : MCD Application Team
* Version : V2.2.0
* Date : 05/03/2010
* Description : readme file for Flash Loader Demonstrator
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
Last version V2.2.0 - 05/03/2010
 
Supported Microsoft OS:
 
Windows 98SE, 2000, XP, Vista, Seven.
 
How to use :
 
1- Uninstall previous versions:
use "Start-> Settings-> Control Panel-> Add or Remove Programs"
to remove the old versions V2.x.y
 
2- Run the setup
 
 
******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE******
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/test.hex
0,0 → 1,1977
:020000040800F2
:1000000000C00020C17100080572000805720008D8
:100010000572000805720008057200080000000063
:100020000000000000000000000000000572000851
:100030000572000800000000057200080D050008A8
:1000400005720008057200080572000805720008B4
:1000500005720008057200080572000805720008A4
:100060000572000805720008057200080572000894
:100070000572000805720008057200080572000884
:100080000572000805720008057200080572000874
:100090000572000805720008057200080572000864
:1000A0000572000805720008057200080572000854
:1000B0000572000805720008057200080572000844
:1000C0000572000805720008057200080572000834
:1000D0000572000805720008057200080572000824
:1000E0000572000805720008057200080000000093
:1000F0000000000000000000000000000000000000
:1001000000000000000000000572000805720008F1
:1001100005720008057200080572000805720008E3
:1001200005720008057200080572000805720008D3
:1001300005720008057200080572000805720008C3
:1001400005720008057200080572000805720008B3
:10015000000000000000000000000000000000009F
:10016000000000000000000000000000000000008F
:10017000000000000000000000000000000000007F
:10018000000000000000000000000000000000006F
:10019000000000000000000000000000000000005F
:1001A000000000000000000000000000000000004F
:1001B000000000000000000000000000000000003F
:1001C000000000000000000000000000000000002F
:1001D000000000000000000000000000000000001F
:0401E0005FF8E0F1F3
:1001E80040F20453C2F200031A780AB901201870C9
:1001F800704700BF40F20450C2F2000008B503681F
:100208002BB140F20003C0F2000303B1984708BDC8
:1002180041F20003C4F2020310B41868194640F012
:1002280001021A600C6841F2000314F0020FC4F2D4
:100238000203F7D05C68194624F0030058605A6836
:100248005A604A6841F2000312F00C0FC4F202032C
:10025800F7D1996940F6004241F008009861C4F26C
:10026800010214684EF2100024F070411160146805
:10027800CEF2000044F080511160546842F2080C3C
:1002880024F00F015160546840F6000144F0805496
:1002980044F0010454600268C4F2010142F0030210
:1002A80002604FF47A724260986943F6000240F0A7
:1002B800040098614868C4F2010220F0F000486028
:1002C800486840F0A0004860996941F4804040F2D5
:1002D80041319861A2F80CC0118162B610BC704718
:1002E80043F60003C4F20103198843F6000211F033
:1002F800800FC4F20102F7D09080704743F60003E4
:10030800C4F20103198843F6000211F0800FC4F209
:100318000102F7D048F21F5CC5F2EB1CACFB0013DE
:1003280064215B0901FB130030339380C0B211884C
:1003380043F6000311F0800FC4F20103F7D04CF626
:10034800CD4CCCF6CC4CACFB0012D20830329A80A3
:10035800198843F6000211F0800FC4F20102F7D0A9
:100368004CF6CD4CCCF6CC4CACFB0013D90801EBC9
:100378008103A0EB43013031C8B29080704700BFC1
:1003880043F60003C4F20103198843F6000211F092
:10039800800FC4F20102F7D041F2597CCDF2B71CAC
:1003A800ACFB001342F2107C5B0B0CFB13003033E8
:1003B800938080B2118843F6000311F0800FC4F2D5
:1003C8000103F7D044F6D35CC1F2620CACFB001217
:1003D8004FF47A7C92090CFB120030329A8080B27A
:1003E80019460A8843F6000312F0800FC4F201038D
:1003F800F7D048F21F5CC5F2EB1CACFB001264217D
:10040800520901FB12003032D1B2998080B21946EC
:100418000A8843F6000312F0800FC4F20103F7D0F4
:100428004CF6CD4CCCF6CC4CACFB0012D20830329A
:10043800D1B29980198843F6000211F0800FC4F2F6
:100448000102F7D04CF6CD4CCCF6CC4CACFB0013EB
:10045800D90801EB810CA0EB4C003030C3B293807B
:10046800704700BF0309092B43F600018CBF03F155
:10047800370C03F1300CC4F201010A8843F600037B
:1004880012F0800FC4F20103F7D000F00F00092822
:10049800A3F804C00FD9373043F60001C4F20101B4
:1004A800B1F800C043F600031CF0800FC4F201034A
:1004B800F6D0988070473030EEE700BF10B504469C
:1004C800000AFFF7CFFFE0B2BDE81040CAE700BF5F
:1004D80010B50446000CFFF7F1FFA0B2BDE81040CC
:1004E800ECE700BF017861B143F60002C4F20102F3
:1004F800138813F0800FFBD0918010F8011F00299A
:10050800F6D1704740F20553C2F200031878421C36
:10051800D2B2172A1A7098BF99781AD95A78002136
:1005280019702ABB9978481CC1B2182999702BD028
:1005380008290ED11020987048F29C1248F2A01396
:10054800C4F22122C4F22123002001211060196085
:1005580070479142F0D848F29C1248F2A013C4F2B6
:100568002122C4F221230120002110601960704764
:100578009A78511ECAB29A700AB95A70EBE7102AD3
:10058800DAD10C209870D7E701225A70D4E700BF5F
:100598002DE9F04F48F29C1148F2A0120020C4F255
:1005A800212243F60003C4F221210860C4F20103AA
:1005B8001060814ABBB0184612F8011C39B1B3F873
:1005C80000C01CF0800FFAD081800132F4E743F6B6
:1005D80000040125C4F2010446F2676706952B461C
:1005E800C6F2666721AE0DF1200925464FF0000AD4
:1005F8004FF0000BCDE904ABCDE902AB07974FF004
:1006080000081F46384600F03DFA02460B46DDE971
:10061800040100F09DFACDE9000100F0ABFCDDE932
:10062800022300F1140A1946104606F808A000F043
:10063800DDF80B4647F274510246C0F60001484601
:1006480000F0C0FC9DF820206AB14946DDE902AB04
:10065800238813F0800FFBD0A28011F8012F002A05
:10066800F6D1CDE902AB08F10108B8F1400F11D07D
:100678004FA3D3E90023DDE9020100F0B7F80246F1
:100688000B46CDE9020100F0B1F805F0F3FACDE927
:100698000401B7E7079F4FF0000CCCF128000121B7
:1006A800002216F802801FFA82FE80450FD0BCF1A6
:1006B800140F59D0BEF1000F1BD1B4F8008018F008
:1006C800800FFAD04FF07C0EA5F804E00DE0B4F8E6
:1006D80000B01BF0800FFAD04FF02A0EA5F804E006
:1006E8000FFA81FABAF13F0F10DC0131013289B2F9
:1006F800D7E7B4F800B01BF0800FFAD00FFA81FAF0
:100708004FF02003BAF13F0FAB80EEDD208810F0E8
:10071800800FFBD04FF00D02AA80218811F0800FC6
:10072800FBD00CF1010C4FF00A08BCF1290FA5F819
:100738000480B2D147F28452C0F600026421B4F8B2
:1007480000C01CF0800FFAD0A18012F8011F002908
:10075800F5D1069A501C83B206931BB2142B7FF76F
:1007680045AF0123069341E70FFA8EFB87FB0BA8E1
:100778004FEAEB7ACAEBA80303EB8308ABEB480A12
:100788000FFA8AF34BB9B4F800E01EF0800FFAD0E4
:100798004FF07C0BA5F804B0A2E7238813F0800F74
:1007A800FBD04FF02D0AA5F804A099E7AFF300801D
:1007B8001A271792BF15B03F61750008AFF3008084
:1007C80040F20852C2F20002136840F24451002B72
:1007D800C2F2000108BF0B4618181060184670478F
:1007E80081F0004102E000BF83F0004330B54FEADA
:1007F80041044FEA430594EA050F08BF90EA020F47
:100808001FBF54EA000C55EA020C7FEA645C7FEAD9
:10081800655C00F0E2804FEA5454D4EB5555B8BFFC
:100828006D420CDD2C4480EA020281EA030382EA6D
:10083800000083EA010180EA020281EA0303362DFF
:1008480088BF30BD11F0004F4FEA01314FF4801CD2
:100858004CEA113102D0404261EB410113F0004FE4
:100868004FEA03334CEA133302D0524263EB43039B
:1008780094EA050F00F0A780A4F10104D5F1200E39
:100888000DDB02FA0EFC22FA05F2801841F1000194
:1008980003FA0EF2801843FA05F359410EE0A5F168
:1008A80020050EF1200E012A03FA0EFC28BF4CF099
:1008B800020C43FA05F3C01851EBE37101F000454F
:1008C80007D54FF0000EDCF1000C7EEB00006EEB5C
:1008D8000101B1F5801F1BD3B1F5001F0CD34908E6
:1008E8005FEA30004FEA3C0C04F101044FEA44523D
:1008F80012F5800F80F09A80BCF1004F08BF5FEAC4
:10090800500C50F1000041EB045141EA050130BDA3
:100918005FEA4C0C404141EB010111F4801FA4F146
:100928000104E9D191F0000F04BF01460020B1FA9B
:1009380081F308BF2033A3F10B03B3F120020CDAD3
:100948000C3208DD02F1140CC2F10C0201FA0CF0B1
:1009580021FA02F10CE002F11402D8BFC2F1200C16
:1009680001FA02F120FA0CFCDCBF41EA0C019040CC
:10097800E41AA2BF01EB0451294330BD6FEA040415
:100988001F3C1CDA0C340EDC04F11404C4F1200200
:1009980020FA04F001FA02F340EA030021FA04F312
:1009A80045EA030130BDC4F10C04C4F1200220FA69
:1009B80002F001FA04F340EA0300294630BD21FAA7
:1009C80004F0294630BD94F0000F83F4801306BF6D
:1009D80081F480110134013D4EE77FEA645C18BF61
:1009E8007FEA655C29D094EA050F08BF90EA020FF8
:1009F80005D054EA000C04BF1946104630BD91EAF0
:100A0800030F1EBF0021002030BD5FEA545C05D1F2
:100A18004000494128BF41F0004130BD14F5800431
:100A28003CBF01F5801130BD01F0004545F0FE41A5
:100A380041F470014FF0000030BD7FEA645C1ABFDA
:100A4800194610467FEA655C1CBF0B46024650EA11
:100A5800013406BF52EA033591EA030F41F400213D
:100A680030BD00BF90F0000F04BF0021704730B5C3
:100A78004FF4806404F132044FF000054FF0000198
:100A880050E700BF90F0000F04BF0021704730B559
:100A98004FF4806404F1320410F0004548BF40422E
:100AA8004FF000013EE700BF42004FEAE2014FEA83
:100AB80031014FEA02701FBF12F07F4393F07F4F5E
:100AC80081F06051704792F0000F14BF93F07F4F90
:100AD800704730B54FF4607401F0004521F00041D3
:100AE80020E700BF50EA010208BF704730B54FF059
:100AF80000050AE050EA010208BF704730B511F05E
:100B0800004502D5404261EB41014FF4806404F195
:100B180032045FEA915C3FF4DCAE4FF003025FEA17
:100B2800DC0C18BF03325FEADC0C18BF033202EB9F
:100B3800DC02C2F1200300FA03FC20FA02F001FAF9
:100B480003FE40EA0E0021FA02F11444C1E600BF98
:100B580070B54FF0FF0C4CF4E06C1CEA11541DBF4B
:100B68001CEA135594EA0C0F95EA0C0F00F0DEF816
:100B78002C4481EA030621EA4C5123EA4C5350EAFB
:100B8800013518BF52EA033541F4801143F480134C
:100B980038D0A0FB02CE4FF00005E1FB02E506F0DD
:100BA8000042E0FB03E54FF00006E1FB03569CF032
:100BB800000F18BF4EF0010EA4F1FF04B6F5007F38
:100BC80064F5407404D25FEA4E0E6D4146EB0606AA
:100BD80042EAC62141EA55514FEAC52040EA5E5033
:100BE8004FEACE2EB4F1FD0C88BFBCF5E06F1ED8DD
:100BF800BEF1004F08BF5FEA500E50F1000041EB14
:100C0800045170BD06F0004646EA010140EA0200C0
:100C180081EA0301B4EB5C04C2BFD4EB0C0541EAE2
:100C2800045170BD41F480114FF0000E013C00F3F7
:100C3800AB8014F1360FDEBF002001F0004170BD1B
:100C4800C4F10004203C35DA0C341BDC04F1140434
:100C5800C4F1200500FA05F320FA04F001FA05F2C0
:100C680040EA020001F0004221F0004110EBD3708D
:100C780021FA04F642EB06015EEA430E08BF20EAB9
:100C8800D37070BDC4F10C04C4F1200500FA04F35C
:100C980020FA05F001FA04F240EA020001F00041EE
:100CA80010EBD37041F100015EEA430E08BF20EA61
:100CB800D37070BDC4F1200500FA05F24EEA020EA9
:100CC80020FA04F301FA05F243EA020321FA04F0D8
:100CD80001F0004121FA04F220EA020000EBD3708F
:100CE8005EEA430E08BF20EAD37070BD94F0000F8F
:100CF8000FD101F00046400041EB010111F4801FC3
:100D080008BF013CF7D041EA060195F0000F18BF73
:100D1800704703F00046520043EB030313F4801FAF
:100D280008BF013DF7D043EA0603704794EA0C0F69
:100D38000CEA135518BF95EA0C0F0CD050EA41067F
:100D480018BF52EA4306D1D181EA030101F00041FC
:100D58004FF0000070BD50EA410606BF1046194624
:100D680052EA430619D094EA0C0F02D150EA013630
:100D780013D195EA0C0F05D152EA03361CBF104671
:100D880019460AD181EA030101F0004141F0FE4110
:100D980041F470014FF0000070BD41F0FE4141F494
:100DA800780170BD70B54FF0FF0C4CF4E06C1CEA94
:100DB80011541DBF1CEA135594EA0C0F95EA0C0F49
:100DC80000F0A7F8A4EB050481EA030E52EA033504
:100DD8004FEA013100F088804FEA03334FF0805525
:100DE80045EA131343EA12634FEA022245EA111552
:100DF80045EA10654FEA00260EF000419D4208BF03
:100E0800964244F1FD0404F5407402D25B084FEAAF
:100E18003202B61A65EB03055B084FEA32024FF45B
:100E280080104FF4002CB6EB020E75EB030E22BFB8
:100E3800B61A754640EA0C005B084FEA3202B6EB78
:100E4800020E75EB030E22BFB61A754640EA5C0027
:100E58005B084FEA3202B6EB020E75EB030E22BFB7
:100E6800B61A754640EA9C005B084FEA3202B6EBB8
:100E7800020E75EB030E22BFB61A754640EADC0077
:100E880055EA060E18D04FEA051545EA16754FEAD9
:100E980006164FEAC30343EA52734FEAC2025FEAF7
:100EA8001C1CC0D111F4801F0BD141EA00014FF086
:100EB80000004FF0004CB6E711F4801F04BF014357
:100EC8000020B4F1FD0C88BFBCF5E06F3FF6AFAE73
:100ED800B5EB030C04BFB6EB020C5FEA500C50F103
:100EE800000041EB045170BD0EF0004E4EEA113186
:100EF80014EB5C04C2BFD4EB0C0541EA045170BD8D
:100F080041F480114FF0000E013C90E645EA060ED0
:100F18008DE60CEA135594EA0C0F08BF95EA0C0FFE
:100F28003FF43BAF94EA0C0F0AD150EA01347FF446
:100F380034AF95EA0C0F7FF425AF104619462CE71D
:100F480095EA0C0F06D152EA03353FF4FDAE104680
:100F5800194622E750EA410618BF52EA43067FF4D1
:100F6800C5AE50EA41047FF40DAF52EA43057FF461
:100F7800EBAE12E74FEA410212F5001215D211D575
:100F88006FF47873B3EB625212D94FEAC12343F07E
:100F9800004343EA505311F0004F23FA02F018BF00
:100FA800404270474FF00000704750EA013005D1C9
:100FB80011F0004008BF6FF0004070474FF000008C
:100FC800704700BF0EB440F2000330B59CB01FACB0
:100FD800C2F20003054601A954F8042B4FF0FF3C68
:100FE80018684FF40273ADF8103023460595019543
:100FF8006FF00045ADF812C0069503951B9400F0FC
:10100800B9F8019B00221A701CB0BDE8304003B04B
:10101800704700BF0CB40B4610B59CB01EAC01A9BC
:1010280005934FF4027C54F8042B01934FF0FF33DF
:10103800ADF8123023461B946FF00044ADF810C091
:101048000694039400F096F8019B00221A701CB0D5
:10105800BDE8104002B070472DE9F04F85B09246C8
:101068000C46039090681768002800F081804FF0C4
:1010780000090B684D46002D54D0A668B542B0460D
:101088003EBF18462E46A8463CD3A08910F4906F60
:1010980008BF184636D06269216902EB420B5B1A19
:1010A80003F1010C0BEBDB7BAC444FEA6B0BE34524
:1010B8005A463CBFE3465A4610F4806F37D0114673
:1010C8000398019302F0F6FB019B00283BD01A46D7
:1010D80021690193029002F0F9FEA289019BDDF8D3
:1010E80008C022F4906242F08002A2812E46A846EF
:1010F800C3EB0B020CEB0300A260C4F810C0206025
:10110800C4F814B04246494602F0A8FFA268236812
:10111800961BA660DAF8082043442360551BCAF8DA
:101128000850FDB1D7F800907D680837A3E7039809
:10113800019303F09FFC019B84460028D6D10398B5
:10114800216902F08DFA039A0C234FF0FF301360E7
:101158000023A289CAF8043042F04002CAF80830D5
:10116800A28102E02846CAF8045005B0BDE8F08F15
:101178005060FAE72DE9F04FC5B00E469A4615467D
:10118800099002F053FBB38913F0800F00681B909D
:1011980003D03369002B01F08C800DF17409B3463C
:1011A8004C46002210920023189217921A920D9220
:1011B8002DAA199328320DF1F703169207930023ED
:1011C800CDF8DC90389339932B78B3F1250218BF0A
:1011D8000122002B0CBF002202F0010202B32E46AE
:1011E80016F8013F1A1E18BF0122252B0CBF00223A
:1011F80002F00102002AF3D1771B08BF35460FD051
:101208006760389B399A01332560D219072B3992C8
:10121800389379DC08340D983546C0190D90337829
:10122800002B00F0378700214FF00002CDF828A0EE
:101238006B1C0C914FF0FF388DF80F218A466A78A5
:101248002B204FF0200C5D1CA2F12003582B00F23C
:101258001982DFE813F02902170217023502170274
:10126800170217021702170217023C024802170258
:10127800C802CF021702EF02F602F602F602F602E1
:10128800F602F602F602F602F60217021702170233
:1012980017021702170217021702170217024F0246
:1012A8008802170288021702170217021702C102E2
:1012B80017021702EE031702170217021702170286
:1012C800930317021702AD0317021702170217023A
:1012D800170217021702170217021702C703D803CB
:1012E8008802880288020B03D803170217020F032B
:1012F8001702190329033E038C0317025903170227
:10130800840317021702EA000998594637AAFFF71B
:10131800A3FE00287CD14C467DE71899012940F3AB
:101328005284119A01236360389B2260399A0133F1
:1013380038930132072B399200F39685083401233C
:101348006360389B399A01331B980132072B399215
:101358002060389300F37D8508341098002200231C
:10136800199904F0E1F8002840F003851899119BB9
:101378004A1E6260591C389B2160399901333893A1
:101388008A18072B399200F32F8408341A9A1A986E
:1013980062603EAA389B2260399A0133389312184A
:1013A800072B399200F34F8104F108031AF0040F58
:1013B80000F056810C990B9A8E1A002E40F350813A
:1013C800102E47F20827D8BFC0F6000740F3DE8387
:1013D8001024C0F600070DF1DC08DDF824A003E0B6
:1013E800103E102E40F3D2835C60389A399901324E
:1013F8001F601031072A399103F108033892EFDD95
:10140800504659464246FFF727FE4B460028E7D08C
:101418005E46B3890D9813F0400F18BF4FF0FF30A8
:101428000D900D9845B0BDE8F08F1AF0200F47F2E7
:10143800B050C0F600001492179000F0C3820A99C9
:10144800CB1D23F0070303F108020A92D3E90067D2
:1014580056EA07010CBF002201221AEA020F40F0E7
:10146800BC8402234FF000018DF80F11B8F1000F72
:10147800A8BF2AF0800AB8F1000F18BF42F0010295
:10148800002A00F06081012B00F03484022B00F068
:1014980017841699CDF82C8011914FEAD6084FEA97
:1014A800D70C48EA477806F00700674646463030CA
:1014B80056EA070201F8010DEFD11AF0010FDDF825
:1014C8002C80119140F0DB84169B5B1A0E930E9BC7
:1014D800CDF854804345B8BF43460B939DF80F3170
:1014E80013B10B9901310B911AF00202139202D039
:1014F8000B9B02330B931AF08400129038D10C998D
:101508000B9A8E1A002E33DD102E47F20827D8BF0B
:10151800C0F6000720DD4FF01008C0F6000702E013
:10152800103E102E18DDC4F80480389B399A013318
:1015380027601032072B399204F108043893EFDD45
:101548000998594637AA4C46FFF786FD00287FF4CC
:101558005FAF103E102EE6DC6660389B27605A1C91
:10156800399B38929B19072A399300F3F78308347B
:101578009DF80F3173B101236360389B43AA03328E
:101588002260399A013338930132072B399200F3DC
:1015980040830834139B6BB102236360389B43AAD2
:1015A8002260399A013338930232072B399200F3BB
:1015B8003A8308341298802800F0B28215980E9B5E
:1015C800C61A002E2EDD102EA74FC8BF4FF01008E8
:1015D80003DC1BE0103E102E18DDC4F80480389B95
:1015E800399A013327601032072B399204F1080425
:1015F8003893EFDD0998594637AA4C46FFF72CFD7A
:1016080000287FF405AF103E102EE6DC6660389B9C
:1016180027605A1C399B38929B19072A399300F383
:10162800EE8208341AF4807F40F019820E99119ADC
:101638006160389B2260399A013338935218072B1E
:1016480039927FF7B1AE0998594637AAFFF704FDDA
:1016580000287FF4DDAE1AF0040F4B467FF4AAAEE3
:10166800399B0D980B9A0C998A42ACBF8018401888
:101678000D90002B40F09E820023DDF828A03893BF
:101688004C46A1E51492002A00F0048501208DF84B
:10169800B4204FF000012DAA0B908DF80F11119274
:1016A8000E90002115911FE79DF80F31002B40F097
:1016B8000C840A992B468DF80FC12A780A91C2E545
:1016C8000A994AF0010A2A782B460A91BBE50A9B37
:1016D8000A9A1B68111D002B0C93C0F2B2852A7858
:1016E8002B460A91AFE50A992B468DF80F012A7807
:1016F8000A91A8E54AF0100A14921AF0200F00F097
:1017080087810A98C31D23F0070303F108010A9192
:10171800D3E90067002E77F10000C0F2768356EA1D
:1017280007014FF001030CBF00220122B8F1000F9E
:10173800A8BF2AF0800AB8F1000F18BF42F00102D2
:10174800002A7FF4A0AE002B40F0E5811AF0010FCB
:1017580000F0E18130238DF8DB302DAB01202733F9
:101768000E901193B3E61AF0080F149200F0BF839D
:101778000A98C31D23F0070303F108010A915E6864
:101788001F68199610973846314603F04DFB0346FB
:10179800002800F09384384600220023314603F0E5
:1017A800CDFE002840F015849DF80F31032047F244
:1017B800A45247F2A0510B901498C0F60001C0F64D
:1017C80000022AF0800A4728D8BF0A46032111924E
:1017D80000220E91159283E60A994AF0080A2A789F
:1017E8002B460A912FE50A992A784AF0040A2B46D3
:1017F8000A9128E52B4613F8012B2A2A00F0CF86F8
:10180800A2F13001092988BF4FF0000810D802352D
:101818004FF0000815F8012C08EB88082B46013515
:1018280001EB4808A2F130010929F3D948EAE87820
:101838001D4609E50A994AF0800A2A782B460A913A
:1018480001E5A2F1300100262B4606EB860613F8C7
:10185800012B01EB4606A2F130011D460929F3D9F7
:101868000C961D46F0E400BF187200084AF0400AC2
:101878000A9934E72A786C2A00F018840A994AF001
:10188800100A2B460A91DEE41AF0200F00F0238399
:101898000A990D9A0B6810464FEAE0710A9AC3E953
:1018A800000102F1040A8FE41AF02003149200F0F8
:1018B800C7800A9BDA1D002322F0070202F1080004
:1018C8000A90D2E9006756EA07010CBF00220122FC
:1018D800C8E50A9A47F2B0500A997823C0F6000082
:1018E8001493166804318DF80D314AF0020A30233A
:1018F800321E18BF01228DF80C3136464FF0000712
:10190800179002230A91ADE50A9B14924FF000024A
:10191800181D8DF80F211B680A901193002B00F0F9
:101928004D85B8F1000F1198C0F22A850021424672
:1019380002F092FA0346002800F06E8511981B1AEF
:101948000E93434540F38284CDF83880002128EA7D
:10195800E8789DF80F31CDF82C801591C0E51AF084
:10196800200F149210D00A9BDA1D0123A4E70A99CC
:101978004AF0200A2A782B460A9164E44AF0100AB1
:1019880014921AF0200FEED11AF0100F40F0548282
:101998001AF0400F00F050820A980123011D0A91A5
:1019A8000688321E18BF012236464FF0000759E557
:1019B8001AF0200F149247F28C52C0F600021792C8
:1019C8007FF43DAD1AF0100F40F02D821AF0400F51
:1019D80000F029820A990A1D0A920E8836464FF0AD
:1019E800000735E5149201200A9A4FF000010B9088
:1019F8000E90136804328DF80F110A922DAA8DF8F3
:101A0800B43011924DE61AF0200F14927FF479AE9B
:101A18001AF0100F40F0ED811AF0400F00F0E98144
:101A28000A98011D0A91B0F9006036464FEAE67738
:101A380070E64AF0100A14921AF020037FF439AFC6
:101A48001AF0100200F05F820A9A101D0A901668B8
:101A5800321E18BF012236464FF0000702E5149BDC
:101A6800652B7FF75AAC109800220023199903F0D0
:101A78005BFD002800F0E18001236360389A47F29B
:101A8800CC53C0F600032360399B013238920133EE
:101A9800072A3993D8BF04F1080300F39F82429ABA
:101AA8001898824203DB1AF0010F3FF47FAC1B99B0
:101AB80001225A60389A19603999013238920131F5
:101AC800072A399100F3EB830833189A561E002E23
:101AD8007FF76CAC102EA04F40F3E98110240DF174
:101AE800DC0803E0103E102E40F3E1815C60389A78
:101AF800399901321F601031072A399103F108031F
:101B08003892EFDD099859464246FFF7A5FA4B4649
:101B18000028E7D07CE4169900220E921191D6E4B1
:101B28000C990B9A8E1A002E7FF748AD102E8A4F0B
:101B3800C8BF4FF0100803DC1BE0103E102E18DD64
:101B4800C4F80480389B399A013327601032072B78
:101B5800399204F108043893EFDD0998594637AAF9
:101B68004C46FFF779FA00287FF452AC103E102E4D
:101B7800E6DC6660389B27605A1C399B38929B19B3
:101B8800072A399300F38881083417E55E60389A8C
:101B98001F60399B01323892F318072A39937FF76F
:101BA80060AD0998594637AAFFF756FA00283FF45E
:101BB80057AD2DE40998594637AAFFF74DFA002882
:101BC8003FF45AAD24E41AF0010F7FF4AAAB0123C5
:101BD8006360389B399A013311990132072B399286
:101BE800216038937FF7D1AB0998594637AAFFF798
:101BF80033FA00287FF40CAC4C46FFF7C7BB0998B2
:101C0800594637AAFFF728FA00287FF401AC4C465A
:101C180008E50998594637AAFFF71EFA00287FF405
:101C2800F7AB4C46B6E40998594637AAFFF714FAB9
:101C380000287FF4EDAB4C46BCE4429B002B40F3FC
:101C4800D98118998B42C0F26F81119A6160389BD3
:101C58002260399A013338935218072B3992D8BF2A
:101C680004F1080300F3BA83429C1898241A002C44
:101C780040F39B81102C384F40F38B81CDF838A06E
:101C88001026AA460DF1DC08099D03E0103C102C33
:101C980040F37C815E60389A399901321F601031B7
:101CA800072A399103F108033892EFDD284659468F
:101CB8004246FFF7D1F94B460028E7D0FFF7A8BB0B
:101CC8001698DDF85CC003461190310906F00F0242
:101CD80041EA077138091CF802200E46074656EA01
:101CE800070103F8012DF0D1169A1193D21A0E921A
:101CF800FFF7EDBB00230922B24273EB0700169BE6
:101D08003EBFCDF82C80A0461C461AD23046394634
:101D18000A22002303F03AFC30463946002302F138
:101D2800300C0A2204F801CD03F030FC06460F46B9
:101D380009200021B042B941E8D323464446DDF8E2
:101D48002C805A1E3036119203F8016C169B9B1A90
:101D58000E93FFF7BCBB00BF1872000809985946DC
:101D680037AAFFF779F900287FF452AB4C46FFF702
:101D7800FFBB1898461E002E7FF708AB102E9C4F0D
:101D8800C8BF4FF0100803DC1BE0103E102E18DD12
:101D9800C4F80480389B399A013327601032072B26
:101DA800399204F108043893EFDD0998594637AAA7
:101DB8004C46FFF751F900287FF42AAB103E102E4D
:101DC800E6DC6660389B399A013327609219072B45
:101DD800399238937FF7D9AA06E7149830214AF048
:101DE800020A012202238DF80C118DF80D01FFF76C
:101DF80039BB0A9A131D16680A9336464FEAE677E6
:101E0800002E77F10000BFF68AAC764267EB4707F1
:101E18002D2356EA07028DF80F310CBF002201224C
:101E28000123FFF723BB0A9B181D1E680A9036463C
:101E38004FF00007FFF70CBB0A9A131D16680A93A8
:101E48000123321E18BF012236464FF00007FFF764
:101E580009BB0998594637AAFFF7FEF800287FF40E
:101E6800D7AA4C46FFF779BA0998594637AAFFF717
:101E7800F3F800287FF4CCAA4C46FFF760BA302864
:101E880000F09682119A302302F8013D169B1192B8
:101E98009B1A0E93FFF71BBB0998594637AAFFF701
:101EA800DBF800287FF4B4AA4C46FFF787BB5E60D6
:101EB800389A399901321F608919072A399138925D
:101EC8003FF7C1AB0833FFF771BA0A992B462A7856
:101ED8000A91FFF7B8B91AF0100F00F0CD810A98EF
:101EE8000D9900F1040A03681960FFF76DB90A9AA1
:101EF800D31D23F0070303F108000A905E681F68EA
:101F0800199610973FE41AF0400300F0A9810A9946
:101F180013460A1D0A920E88321E18BF0122364641
:101F28004FF00007FFF79EBA119A63603899226054
:101F3800399A01313891D3180729399300F362820D
:101F480008340123429E6360389B399A01331B98F9
:101F58000132072B3893D8BF04F108032060399267
:101F680000F34682429A119918988E191E60811AB8
:101F7800596039998A1A3899121839920131389169
:101F880007293FF760AB0833FFF710BA5546DDF86D
:101F980038A05C60389A399901321F600919072AFC
:101FA8003991389200F37F8208331AF0010F3FF419
:101FB800FDA91B9901225A60389A19603999013292
:101FC80038920131072A39913FF73DAB0833FFF7C3
:101FD800EDB92D238DF80F31FFF7E8BB0998594665
:101FE80037AAFFF739F800287FF412AA4B4656E5BE
:101FF8001872000801236360389A47F2CC53C0F680
:1020080000032360399B013238920133072A399340
:10201800D8BF04F1080300F37381429A2AB91898CB
:1020280018B91AF0010F3FF4C1A91B9901225A608F
:10203800389A19603999013238920131072A399151
:1020480000F368810833429C6442002C40F3878186
:10205800102C9E4F40F3A08110260DF1DC0803E000
:10206800103C102C40F398815E60389A39990132FF
:102078001F601031072A399103F108033892EFDD08
:10208800099859464246FEF7E7FF4B460028E7D035
:10209800FFF7BEB9399B5E46002B3FF4BAA90998F1
:1020A800594637AAFEF7D8FFFFF7B3B90A994AF09D
:1020B800200A6A786B1C0A91FFF7C5B83846314682
:1020C800089302F0C3FE089B002840F00181B8F194
:1020D800FF3F08BF08F107080ED0149A672A14BFFB
:1020E80000230123472A08BF43F0010323B1B8F1B5
:1020F800000F08BF4FF0010833463A46CDE93A23AE
:102108004AF4807A3B9B002BC0F20A820023159385
:102118001499662914BF00230123462908BF43F0F8
:1021280001031293002B00F08A810323CDF82C8041
:102138000B990E970F9600930998DDE90E230191EC
:1021480042A9029141A9039140A9049100F0E8FA3B
:10215800149AB2F1670318BF0123472A0CBF002362
:1021680003F0010311902BB91AF0010F08BFDDF835
:1021780000C11AD0119B0B98129903EB000C29B1DE
:102188001B78302B00F0D080429B9C4438460022BC
:1021980000233146CDF820C003F0C6F9DDF820C091
:1021A800002800F07381CDF800C1149811996728B0
:1021B80014BF00230123472808BF43F00103C1EBE4
:1021C8000C011891002B00F04A81429A12F1030F7A
:1021D8000E9202DB904580F24B81149B023B1493D4
:1021E8000E9A1498531E4293002B8DF8F800C0F2F3
:1021F800D1812B228DF8F920092B00F362813FA9A8
:1022080030338DF8FB3030238DF8FA303EAB189A16
:10221800CB1A18991A935918012A0E9140F3CC81B8
:102228000E9801300E9020EAE0710B91159B002B5F
:1022380000F0FD802D2300208DF80F311590FFF759
:1022480050B90C9B5B420C93FFF7CEBA0E9A002054
:102258009DF80F3122EAE27215900B92FFF740B910
:102268000A98011D0A910668321E18BF01223646D7
:102278004FF00007FFF7F6B81AF0400F17BF0A9A99
:102288000A990D9802F1040A11BF136801F1040AB2
:102298000B680D9A14BF18801A60FEF795BF09984D
:1022A800594637AAFEF7D8FE00287FF4B1A84B4656
:1022B8000BE40998402101F0FDFA306030610028F4
:1022C80000F08D8140237361FEF767BF1872000824
:1022D800032047F2AC5247F2A8510B901498C0F66D
:1022E8000001C0F6000215934728D8BF0A462AF015
:1022F800800A032111929DF80F310E91FFF7F0B873
:102308000998594637AAFEF7A7FE00287FF480A847
:102318004B4682E60998594637AAFEF79DFE0028E3
:102328007FF476A84B468EE63846002200233146D5
:10233800CDF820C003F0F8F8DDF820C000287FF4BD
:1023480023AF0B9AC2F1010342931EE7099859463D
:1023580037AAFEF781FE00287FF45AA84B46189A40
:1023680011985A60389A3999186001321898389239
:102378000918072A39913FF766A90833FFF716B8F5
:102388000021159102F072FE9DF80F3120EAE072EB
:102398000E900B92FFF7A4B85C60389A1F60511C2E
:1023A800399A3891121907293992CFDC0833D6E7C0
:1023B80016991198081A0E90FFF789B8B8F1060F08
:1023C80034BF4146062147F2C452C0F6000221EA52
:1023D800E1730E9111920B93FFF763B9099859466F
:1023E80037AAFEF739FE00287FF412A84B463BE4D3
:1023F8000998594637AAFEF72FFE00287FF408A847
:102408004B46AFE50998594637AAFEF725FE00283E
:102418007EF4FEAF4C4694E5CDF8388028EAE8789B
:102428001590CDF82C809DF80F31FFF759B80E980C
:102438009DF80F3120EAE0700B90FFF751B8149A1D
:10244800652A14BF00230123452A08BF43F001036E
:10245800002B32D008F101030B93022368E614988D
:10246800652862DD149A662A1CBF429B0E936FD0C2
:10247800189A0E9B9A425BDC1AF0010F40F081809B
:1024880023EAE37067210B901491CFE6409B9C45AB
:1024980098BF9C467FF689AE302203F8012B9C45F5
:1024A8004093FAD881E60998594637AAFEF7D4FD31
:1024B80000287EF4ADAF4B4677E5CDF82C8002338B
:1024C80036E646F2676C0DF1F700C6F2666C8CFBD7
:1024D8000321DA17C2EBA10202EB8201A3EB41014F
:1024E80013463031092A00F8011DF0DC3033421E52
:1024F800D9B200F8011C079B934298BF0DF1FA016D
:102508007FF684AE02460DF1FB0301E012F8011BD1
:1025180003F8011C1946079801339042F6D875E66E
:102528002D2006F100461590F2E542990E9157E6E6
:102538000E9918980029DABF0E9AC2F102030123F6
:102548001B18672123EAE3720E9314910B926DE630
:10255800429800280E9038DDB8F1000F07D11AF024
:10256800010F04BF20EAE0710B913FF45FAE0E9AB1
:1025780066201490531C43440E9323EAE3710B9195
:1025880054E60E9A6723149301320E9222EAE270FF
:102598000B904BE62D225B428DF8F9202CE60A9928
:1025A8001A78D1F8008004310A91B8F1000FB8BF49
:1025B8004FF0FF38FEF747BE1AF0010F04BF21EABB
:1025C800E1730B933FF432AE2AE6B8F1000F0ED157
:1025D8001AF0010F0BD101220B920E9226E60998F0
:1025E8000C234FF0FF310D910360FEF71ABF08F17D
:1025F8000203662023EAE3710E9314900B9115E60B
:102608002DE9F84F03690E69824689469E4200F318
:102618008380F21C01F1140500F11404013E9200BC
:102628008B18121803F1040859685068013102F038
:10263800E7FD0746002839D000239C461A46E9588A
:10264800E0581FFA81FE4FEA114B81B20EFB07CE0C
:1026580051180BFB07FC0CEB1E4C1FFA8EFECEEB41
:1026680001011FFA8CF24FEA1C4CC2EB10421FFA10
:1026780081FE02EB21424EEA0241E150043312147A
:1026880059198845DBD2321D0AEB8203596869B9AA
:102698009C4209D25AF8222012B105E01A681AB9E8
:1026A800043B013E9C42F9D3CAF8106049465046A3
:1026B80001F086FD00282CDB002301379C46EA58F0
:1026C800E05891B2120C1FFA80F9C2EB1042C1EB2C
:1026D8000901614402EB214289B241EA0241E15019
:1026E80004334FEA224C5A199045E8D2321D0AEBBE
:1026F8008203596869B99C4209D25AF8222012B15A
:1027080005E01A681AB9043B013E9C42F9D3CAF89D
:1027180010603846BDE8F88F0020BDE8F88F00BF8C
:102728002DE9F04F466AA1B00446904699462D9D82
:10273800002E00F02384326882B1616A4FF0010CE8
:10274800766820460B6856604A6819460CFA02F209
:102758009A6001F06FFE636A00221A60B9F1000600
:1027680038DB00232B6040F20003C7F6F0731A46EB
:1027780006EA0303934217D0002200234046494645
:10278800CDE9068902F0D0FE002829D02C98012333
:102798002E990360002900F0D080794B581E2E9A9C
:1027A800136021B0BDE8F08F2C9842F20F730360DC
:1027B800B8F1000F00F0958047F2DC50C0F6000039
:1027C8002E990029EDD0C278C31C002AE7D000F169
:1027D8000803E4E726F000460123B1462B60C2E770
:1027E8002046DDE906231EA900911FA9019101F0E9
:1027F80073FEC6F30A558346002D7ED0DDE9060137
:10280800A5F57E751F9F073D21F07F4323F47003D4
:1028180043F07E51002341F4E001199340F2000394
:102828000022C3F6F873FDF7DFFF4FA3D3E90023B7
:10283800FEF78EF94EA3D3E90023FDF7D7FFCDE9C4
:1028480008012846FEF71EF94BA3D3E90023FEF73B
:102858007FF902460B46DDE90801FDF7C7FFCDE920
:102868000801FEF787FB002200230646DDE9080180
:1028780002F064FE40B13046FEF704F9DDE90823B2
:1028880002F052FE00B9013E162E5BD901231893BF
:10289800013FB7EB050A42BFCAF1000ACDF83CA0D8
:1028A8004FF0000A01D400220F92002EC0F271836B
:1028B800B2440023179615932A9B092B62D8052B3F
:1028C80040F377862A98002704382A902A998B1E85
:1028D800032B00F2DD83DFE813F0A503D803D5034B
:1028E800C40326F07F4626F47006002E7FF464AFFA
:1028F80047F2D050C0F6000062E71F9F1E9BFB18EE
:1029080003F586639D1C202DDCBFC5F1200008FA65
:1029180000F008DD1E3BC5F1400216FA02F228FA63
:1029280003F342EA0300FEF79DF8A5F58665012248
:10293800033D1992A1F1F87170E747F2CC50C0F647
:1029480000002EE747F26023DDE90601C0F6000328
:1029580003EBC603D3E9002302F0F0FD002840F0A2
:102968002083189094E700BF61436F63A787D23F25
:10297800B3C8608B288AC63FFB799F501344D33F66
:10298800CD75000800234FF0FF301F4601212A9320
:102998001190169108902B93656A00236B6020466E
:1029A800696801F063FD636A28601B681093002F53
:1029B80000F05B81002E40F32A8447F2602306F082
:1029C8000F02C0F60003351103EBC20315F0100F18
:1029D800D3E90001CDE90C0100F0E78247F2383372
:1029E800DDE90601C0F6000305F00F054FF0030806
:1029F800D3E90823FEF7D6F9CDE91201BDB147F2B4
:102A08003837DDE90C23C0F6000715F0010F104632
:102A1800194607D0D7E9002308F10108FEF798F80E
:102A280002460B4608376D10EFD1CDE90C23DDE9DE
:102A38000C23DDE91201FEF7B5F9CDE90C0118996F
:102A4800002900F0DE8040F20003DDE90C010022DD
:102A5800C3F6F0734FF0000502F070FD08B14FF0B7
:102A68000105089A002AD4BF002505F00105002DAC
:102A780000F0C780119B002B40F3F58040F2000363
:102A88000022C4F22403DDE90C01FEF761F8CDE968
:102A98000C0108F10100711E1291FDF7F3FF0246C7
:102AA8000B46DDE90C01FEF753F840F20003002263
:102AB800C4F21C03FDF79AFEDDF844C08046A1F17C
:102AC8005079169B002B00F0AD8347F2602340F24B
:102AD8000001C0F60003002003EBCC03C3F6E0714D
:102AE800CDF80CC053E90223FEF75CF942464B4689
:102AF800109DFDF779FE80468946DDE90C01FEF759
:102B080039FA0746FDF7BEFF02460B46DDE90C0120
:102B1800FDF76AFE07F13003CDE90C01404605F8E0
:102B2800013B4946DDE90C2302F026FD002840F070
:102B3800138240F20001DDE90C230020C3F6F07196
:102B4800FDF752FE02460B464046494602F014FD88
:102B5800DDF80CC0002840F0E783BCF1010F40F31A
:102B68008280CDF868B00127CDF870A01D96664622
:102B7800DDE90CAB0C9410E040F200010020C3F634
:102B8800F071FDF731FE42464B4602F0D7FC0028B3
:102B980040F0C783B74280F28B8440F2000340467E
:102BA80049460022C4F224030135FDF7D1FF40F263
:102BB80000030022C4F22403804689465046594641
:102BC800FDF7C6FF8B468246FEF7D4F90446FDF7AB
:102BD80059FF303402460B4650465946FDF704FE6D
:102BE800109A4B46D4554246013782468B4602F02E
:102BF800A5FC52465B460028BED0DDF868B00C9CA8
:102C0800AAE14046FDF73EFFDDE90C23FDF7A0FFF2
:102C180040F200030022C4F21C03FDF7E7FD089A06
:102C2800A1F150758046A946002A40F0EC8240F296
:102C38000003DDE90C010022C4F21403FDF7D4FD02
:102C480042462B46CDE90C0102F096FC002840F0E4
:102C58004A824246DDE90C0105F1004302F06EFCB0
:102C6800002840F0D581DDE906891E9B6FEA03073D
:102C78004FEAD7770E2ECCBF002707F00107002FA9
:102C880000F0B7802B9847F26023C0F6000308993C
:102C980003EBC603C20F0029CCBF002202F00102D9
:102CA800D3E90001CDE90401002A40F0A0810246E1
:102CB8000B4640464946FEF775F8109DFEF75AF94F
:102CC8008246FDF7DFFEDDE90423FDF741FF0246FA
:102CD8000B4640464946FDF787FD0AF1300305F8E3
:102CE800013B089A012A8046894652D040F20003E7
:102CF8000022C4F22403FDF72BFF00220023CDE9B4
:102D0800060102F011FC002840F0EB8110984FF00A
:102D18000108CDF82CB0A346871C0F96DDF820904B
:102D2800DDE906450AE0FDF713FF0022002304460B
:102D38000D4602F0F9FB002840F0CE81DDE90423BE
:102D48002046294608F10108FEF72CF83E46FEF712
:102D580011F98246FDF796FEDDE90423FDF7F8FE3A
:102D680002460B4620462946FDF73EFD00220AF1A1
:102D7800300C07F801CC0137C14540F20003C4F21A
:102D88002403D0D135465C460F9E8046DDF82CB032
:102D9800894642464B4640464946FDF727FD804650
:102DA80089464246DDE904014B4602F0C7FB60B99B
:102DB800DDE9040142464B4602F0B6FB002800F06C
:102DC80090811AF0010F00F08C81109900E01D46E7
:102DD80015F8012C6B1E392A40F067838B42F6D117
:102DE80010993023013631220B70109B1A701296FD
:102DF800B2E0169A002A40F0DF80159F0F9D0C92D2
:102E0800002DD4BF00230123BAF1000FD4BF002343
:102E180003F001034BB1AA45B4BF53462B460F98A4
:102E2800C3EB0A0AED1AC01A0F90159900291CDD88
:102E3800169A002A00F0E982002F12DD0C993A4612
:102E4800204601F073FD5A460C9020460C9901F07B
:102E580085FC594603462046039301F0EBFA039B91
:102E68009B46159BDA1B40F011830121204601F097
:102E78000FFD06901798002805DD06992046179A39
:102E880001F054FD06902A99012940F30A81002790
:102E9800179B002B40F061820123534413F01F035A
:102EA80040F02A811C230F9A9A44ED18D2180F92E9
:102EB8000F9B002B05DD59461A46204601F0F0FB12
:102EC8008346BAF1000F05DD06995246204601F007
:102ED800E7FB06901898002840F029822A9808995C
:102EE8000228D4BF002301230029CCBF002303F00C
:102EF8000103002B00F00C81002940F08C80052292
:102F08000699089B204601F0CDFC06905846069984
:102F180001F056F900287EDD109D01360027DDF806
:102F280030A0312305F8013B0699204601F082FACA
:102F3800BAF1000F00F0D5803B1E18BF012357459A
:102F48000CBF002303F00103002B40F0D080514652
:102F5800204601F06FFA12962046594601F06AFAA7
:102F6800129A531C00222A702C982E99036000296B
:102F780000F0D4812E9A1098156012E4102000F009
:102F880091FCC66046608660066006466062FFF790
:102F9800D2BB0F98714200221591801B17920F9097
:102FA8008AE40021013E189172E4DDE906234FF01E
:102FB8000208CDE9122321E52A98012840F36C8202
:102FC800089A1598531E9842C0F25882C71A089B4F
:102FD800002BA8BF0F9DC0F273820F9A20460121D3
:102FE8009A44D2180F9201F053FC0C9008E7089B02
:102FF80073B940F200030022C4F21403DDE90401AE
:10300800FDF7A6FD42464B4602F0ACFA00286AD00E
:10301800002206920C922B9B0027DDF830A0DE439D
:10302800109D81E7002116912B98002840F39F817D
:103038002B98014611900890656A002217296A604A
:1030480040F2AB8204235B00013203F11400884292
:10305800F9D9089B6A600E2B8CBF002707F001077F
:103068009DE4012216922B9BF3181193591C0029F9
:10307800C8BF0891E0DC0E298CBF002707F00107C4
:10308800089189E401231693CEE700221692EAE715
:103098004FF0FF33002701201193169008932B97C8
:1030A8007AE4B8F1000F7FF4F2AE29F07F4323F4FD
:1030B8007003002B7FF4EBAE40F20003C7F6F07309
:1030C80009EA0303002B3FF4E2AE0F9A0AF1010A62
:1030D800012701320F92DBE635465C460F9EDDF88C
:1030E8002CB0129638E7002006900C9014E7394669
:1030F800204601F09FF92AE7C3F12003042B40F38F
:1031080054820F99043B9A44ED18C9180F91CFE6E1
:103118001699002900F03181002D05DD0C992A4609
:10312800204601F0BDFA0C90002F40F0EA81DDF84E
:1031380030A0109D012308F001000C9F11900F95FD
:103148001D460C9606995846FFF75AFA394630300C
:103158000B90584601F034F8069952460646204628
:1031680001F022FAC3688046002B3DD04FF00109D8
:103178004146204601F05EF92A9959EA010103D136
:10318800119A002A00F0EB81002EC0F29E812A9A43
:10319800324303D1119B002B00F09781B9F1000F46
:1031A80000F3CE810F990B9A01F8012B089B0F9120
:1031B8009D4200F0C28159460A220023204601F0B0
:1031C80071FB57453946834614D00A22002320460E
:1031D800013501F067FB51460A22002307462046C5
:1031E80001F060FB8246ADE75846414600F0E8FF33
:1031F8008146BDE720460A220023013501F052FB33
:10320800074682469EE71296DDF820C059E47542CB
:10321800002D40F00181DDE906014FF00208CDE9FB
:103228000C010CE447F260214246C0F600014B460F
:1032380001EBCC01CDF80CC0109D51E90201FDF75E
:1032480087FCCDE91A01DDE90C01FDF793FE07467D
:10325800FDF718FC0B460246DDE90C01FDF7C4FA40
:1032680007F13003CDE90C0105F8013BDDF80CC08E
:10327800BCF1010F29D0D146DDE90C01B246109E00
:103288001C9501276546A04640F200030022C4F2BF
:103298002403FDF75DFCCDE90C01FDF76BFE044648
:1032A800FDF7F0FB303402460B46DDE90C01FDF773
:1032B8009BFAF4550137AF42E6D11C9D013F5646B3
:1032C8004446CA46ED19CDE90C0140F2000300223C
:1032D800C3F6E073DDE91A01FDF788FA02460B46EA
:1032E800DDE90C0102F048F9F0B940F20001DDE92E
:1032F8001A230020C3F6E071FDF776FA02460B4662
:10330800DDE90C0102F01AF900283FF4ACAC2B46B9
:103318001D4613F8012D302AFAD01DE61098FFF744
:1033280040BADDF868B00C9C129E109950E55846DA
:10333800069900F045FF0028BFF6D0AD5946204653
:103348000A22002301F0AEFA1699013E83460029AD
:1033580040F01981119A0892C0E50698036900EBBC
:103368008303186900F0DAFEC0F1200395E5012116
:10337800119108912B91FFF70FBB109DB146169F35
:10338800AA46DDF81880089E02E001F08BFA834611
:1033980041465846FFF734F901350A2200235946B9
:1033A80000F1300C0AF807C001372046BE42ECDCB9
:1033B800DDF830A04E460027CDF82CC05946012232
:1033C800204601F06DF90699834600F0F9FE0028C1
:1033D8000FDD109900E01D4615F8012C6B1E392AE7
:1033E80040F08C808B42F6D11099312301360B7056
:1033F8009AE503D10B9810F0010FEAD12B461D4630
:1034080013F8012D302AFAD08EE55946159A204630
:1034180001F08CFA834628E505F00F0347F2602295
:10342800C0F60002DDE9060102EBC303D3E900237D
:10343800FDF78EFB2D1108BF4FF00208CDE90C01F6
:103448003FF4FDAA47F23837DDE90C234FF00208B4
:10345800C0F6000715F0010F1046194607D0D7E946
:10346800002308F10108FDF773FB02460B460837F5
:103478006D10EFD1CDE90C23FFF7E1BA1599179A32
:103488005B1AC918D21815911792A0E5594620461B
:1034980001F04CFA8346E8E41999002947D003F56E
:1034A8008663159F03330F9D97E50132D2B29DE4E1
:1034B800DDF868B0DDF870A01D9E0C9CFFF7D3BB4B
:1034C8000F99002308980D1A87E5B9F1000F0F9D91
:1034D8000C9E0FDD59460122204601F0E1F80699BD
:1034E800834600F06DFE002847DD0B99392931D05D
:1034F80001310B910B9A05F8012B15E501321A7071
:1035080012E50C9A2046516800F0B0FF0C9B03F1BD
:103518000C011A690232920005460C3000F0D6FC04
:1035280020462946012201F0BBF8824601E61F9B8E
:10353800159F0F9DC3F136034FE50F9D0C9E3DE788
:103548000B9B0F9D392B0C9E04D00B98431C05F840
:10355800013BE9E4392305F8013B10993CE70B9856
:1035680033460F9D39280C9EF4D0002B01DD013025
:103578000B900B9905F8011BD6E4BBD10B9810F002
:10358800010FB7D0B1E700230C9920460A2201F0B9
:1035980089F9119B08930C90A0E408990E298CBF17
:1035A800002707F00107FFF7FAB93FF481AC1C3395
:1035B80079E40127FFF78AB9F8B540F2F404C2F2BA
:1035C80000040F46054600F0A5FDA3685E6826F0D6
:1035D800030606F57E630F33DF1B3F0B013F3F03F6
:1035E800B7F5805F07DB0021284601F03DFCA368A2
:1035F800F318834204D0284600F08EFD0020F8BD61
:103608007942284601F030FCB0F1FF3F10D0A268A3
:1036180040F21053C2F20003F61B46F0010628469A
:1036280056601A68D71B1F6000F076FD0120F8BDB0
:103638000021284601F018FCA368C21A0F2ADADD17
:1036480040F2FC4440F21051C2F20004C2F2000100
:1036580042F001022468001B08605A60CBE700BFF3
:103668002DE9F04105460C46002900F0888000F05D
:1036780051FDA4F1080240F2F4005668C2F20000BD
:1036880026F00103D0F808C0D1188C454F6827F000
:10369800030700F0958016F001064F605FD0002602
:1036A800CC19646814F0010F06D1DB19002E7AD00A
:1036B8008C68C9688C60E16043F00101D3505160A7
:1036C800002E47D1B3F5007F5BD3590A04299EBF6A
:1036D8004FEA931C0CF1380C4FEACC0428D9142972
:1036E8009CBF01F15B0C4FEACC0421D954299EBF41
:1036F8004FEA133C0CF16E0C4FEACC0418D9B1F523
:10370800AA7F9EBF4FEAD33C0CF1770C4FEACC045A
:103718000ED940F2545C614595BF4FEA934C4FF483
:103728007C740CF17C0C4FF07E0C98BF4FEACC04F3
:103738000419A168A14203D164E089688C4204D0CD
:10374800486820F003008342F7D3CB68D3609160C8
:10375800CA609A602846BDE8F04100F0DDBC54F824
:10376800084C00F1080C121B1B199468644547D0DB
:10377800D2F80CC0CCF80840C4F80CC090E7BDE8FB
:10378800F081DB084FF0010C466800EBC3019B1089
:103798000CFA03F3D1608C6846EA03034360946033
:1037A800E2608A60D6E78C681C4FBC4281D1D35056
:1037B80043F00103E260A26053609460D460C9E7FB
:1037C800FB1816F0010F07D154F8081C521A5B18A1
:1037D800D4689168A160CC6040F200518260C2F266
:1037E800000143F0010050600A689342B2D340F2EE
:1037F8000C532846C2F200031968FFF7DDFEA9E75B
:1038080001264DE7012644684FEAAC0C0B4606FA40
:103818000CFC44EA0C04446098E700BFFC0000205C
:1038280047F22823C0F6000318687047004870471D
:103838002C720008004870472C72000870B50546C5
:103848000E46144672B147F2E0511046C0F6000128
:1038580001F01EFB58B947F2E0502C62C0F6000098
:10386800EE6170BD47F2E050C0F6000070BD47F24F
:103878009C512046C0F6000101F00AFB0028EAD05E
:10388800002070BD40F200030A46C2F20003014660
:103898001868D3E740F200030146C2F20003186833
:1038A800FFF7DEBE40F200030146C2F200031868CB
:1038B80000F000B82DE9F04F01F10B04162C83B08D
:1038C80006462FD8002310248C422CBF194643F0FB
:1038D8000101002930D1304600F01CFCB4F5FC7F12
:1038E8002ED24FEAD40E40F2F405C2F2000505EBE1
:1038F800CE02D368934200F006825A6803F10805A5
:10390800D968304622F0030C9A6863445C688A6080
:1039180044F00104D1605C6000F0FEFB284603B06F
:10392800BDE8F08F24F00704E30F8C422CBF194642
:1039380043F001010029CED00C2300253360EDE7C8
:103948005FEA542E04BF4FEAD40E4FEACE0040F08F
:10395800908040F2F405C2F200052818C368984226
:1039680006D10DE0002A80F26F81DB68984207D00B
:10397800596821F003010A1B0F2AF3DD0EF1FF3EFF
:103988000EF1010E40F2F407C2F2000707F1080138
:103998008B68994208BF7A6826D05A6822F0030CCF
:1039A800C4EB0C020F2A00F39481002AC9608960D5
:1039B80080F29980BCF5007F80F065814FEADC0CCD
:1039C8004FF0010A7A6807EBCC004FEAAC0C0AFA10
:1039D8000CFCD860D0F808804CEA02027A60C3F880
:1039E8000880C8F80C3083604FF0010C4FEAAE0332
:1039F8000CFA03FC944500F2828012EA0C0F08D1FD
:103A08002EF0030E4FEA4C0C0EF1040E12EA0C0FC6
:103A1800F8D007EBCE09F246C846D8F80C309845DE
:103A280007D168E1002A80F27881DB68984500F0C8
:103A38006281586820F00300021B0F2AF2DD1D4640
:103A48001F19D3F80CC044F0010E55F8084F304642
:103A5800BA5042F00102C3F804E0CCF80840C4F8B8
:103A68000CC08F60CF607A60B960F96000F054FBD9
:103A780054E7BEF1040F9EBF4FEA941E0EF1380EB4
:103A88004FEACE007FF665AFBEF1140F9CBF0EF172
:103A98005B0E4FEACE007FF65CAFBEF1540F9EBFBF
:103AA8004FEA143E0EF16E0E4FEACE007FF651AF8C
:103AB800BEF5AA7F9EBF4FEAD43E0EF1770E4FEABD
:103AC800CE007FF646AF40F254539E4595BF4FEA6D
:103AD800944E4FF47C700EF17C0E4FF07E0E98BF22
:103AE8004FEACE0035E703EB0C0203F10805304638
:103AF800536843F00103536000F00EFB0EE7D7F85C
:103B08000880D8F8043023F00309C4EB09024C45B7
:103B180094BF002301230F2AD8BF43F00103002BD1
:103B280000F0A18040F20C5BD5F80824C2F2000B2B
:103B3800DBF8003010331B19B2F1FF3F06D003F554
:103B48007E631F3323F47E6323F01F031946304638
:103B5800019301F089F9019BB0F1FF3F824600F023
:103B6800F48008EB0901814200F2EC80DBF80420C4
:103B78009A185145CBF8042000F04581D5F808542F
:103B880040F2F400C2F20000B5F1FF3F08BFC0F8F0
:103B980008A403D05244511ACBF804101AF00705B0
:103BA800304617BFC5F108054FF48055AA4405F5FE
:103BB800805553441B051B0DED1A294601F054F995
:103BC800B0F1FF3F00F02C81CAEB0001491941F028
:103BD8000101DBF8042040F20C53C7F808A0C2F238
:103BE8000003AA18B845CBF80420CAF8041017D067
:103BF800B9F10F0F40F2DF80A9F10C01052521F082
:103C0800070108EB01000F2985604560D8F804001A
:103C180000F0010041EA0000C8F8040000F2AC809E
:103C2800D04640F20C53DBF82C10C2F200038A4253
:103C3800DBF8301088BFDA6240F20C53C2F200039E
:103C48008A4288BF1A6382E05C189A68D96830464D
:103C5800666803F108058A6046F00103D160636075
:103C680000F05AFA5AE608EB040342F0010244F065
:103C780001043046C8F8044008F108055A60BB60E2
:103C880000F04AFA4AE64FEA5C22042A54D9142A78
:103C980000F289805B324FEAC208A84440F2F40778
:103CA800C2F20007D8F80800404503D16FE08068E9
:103CB800804504D0426822F003029445F7D3D0F837
:103CC8000CC0C3F80CC098607A68C360CCF80830A0
:103CD8008AE61F19304644F00104CF605C6003F1A6
:103CE8000805BA5042F001028F607A60B960F96045
:103CF80000F012FA12E60AF1010A1AF0030F5FD077
:103D080003F1080889E603F10802D3689A4208BF5C
:103D18000EF1020E3FF436AEEFE51D461918DA68CB
:103D2800304655F8083F4C68936044F00104DA6067
:103D38004C6000F0F1F9F1E54FEA9C1238324FEA95
:103D4800C208AAE7B8453FF411AFD7F80880D8F8F9
:103D5800042022F00302944294BF00230123121B83
:103D68000F2AD8BF43F00103002B3FF47CAF304645
:103D7800002500F0D1F9D1E508F10801304601939A
:103D8800FFF76EFC019BD7F808805A6849E74FF0A7
:103D9800010AD7F80480921084460AFA02F248EA27
:103DA80002027A608DE7542A24D84FEA1C326E3218
:103DB8004FEAC20871E70123D046CAF80430C6E7C3
:103DC8004A461EF0030F13460EF1FF3E33D053F858
:103DD80008299A42F5D07B684FEA4C0C9C453FF67F
:103DE8008EAEBCF1000F3FF48AAE1CEA030F27D059
:103DF800D6460EE6B2F5AA7F15D84FEADC327732FE
:103E08004FEAC20849E70805000D00287FF4B6AE5E
:103E1800D7F808804B4443F00103C8F8043000E7A2
:103E280001210025D5E640F2545082420DD94FF4C5
:103E38007C787E2231E77B6823EA0C037B60CBE742
:103E48004FEA4C0C0AF1040ACFE74FEA9C427C3255
:103E58004FEAC20821E700BF10F0030FC9B210B43F
:103E680010D0002A2FD003788B422AD0013A05E0DF
:103E7800002A28D00378013A8B4222D0013010F072
:103E8800030FF5D1032A11D941EA012444EA044475
:103E9800036884EA0303A3F1013C2CEA030313F04B
:103EA800803F03D1043A0430032AF1D85AB1037889
:103EB8008B4206D0013A32B110F8013F013A8B42E9
:103EC800F9D110BC70470020FBE700BF032A2DE999
:103ED800F0070BD83AB1002311F803C000F803C06B
:103EE80001339342F8D1BDE8F007704782180C46B9
:103EF800034603E014F8011C03F8011C03F0030651
:103F08001946A44601330134002EF3D11CF00304F2
:103F1800634608BFC1EB020C68D06542C4F1040ACD
:103F28000CEB050733464FEACA0A5CF805604FEA0E
:103F3800C408551A08E057F8044F264604FA0AF44C
:103F480049EA0404CC5004335C18032D26FA08F916
:103F5800A5F104050CEB0306EDDC002302E0F15C9F
:103F6800E154013319199142F9D3BCE753F8404C95
:103F780041F8404C53F83C4C41F83C4C53F8384C11
:103F880041F8384C53F8344C41F8344C53F8304C21
:103F980041F8304C53F82C4C41F82C4C53F8284C31
:103FA80041F8284C53F8244C41F8244C53F8204C41
:103FB80041F8204C53F81C4C41F81C4C53F8184C51
:103FC80041F8184C53F8144C41F8144C53F8104C61
:103FD80041F8104C53F80C4C41F80C4C53F8084C71
:103FE80041F8084C53F8044C41F8044C1C460D4663
:103FF80040334031BCF13F0FACF1400CB6DC2146F8
:104008002B46541B0FE051F8105C43F8105C51F834
:104018000C5C43F80C5C51F8085C43F8085C51F8F8
:10402800045C43F8045C0F2C0D469C4601F110011A
:1040380003F11003A4F11004E5DCCCEB020100232A
:1040480003E0EC584CF8034004335E19032903EBF2
:104058000C04A1F10401F4DC7FE700BF88428C4620
:1040680070B4054614460ED98B1898420BD242B14B
:10407800C2EB030C0146531E1CF80320CA54013B33
:10408800FAD270BC70470F2A09D8002CF9D0002347
:104098001CF80320EA540133A342F9D1F1E741EABD
:1040A800000313F0030FF0D194460C46034625682D
:1040B800ACF1100C1D6065685D60A5689D60E568E1
:1040C8001034DD601033BCF10F0FF0D8103A4FEA0E
:1040D800121C0CF10105CCEB0C7C2D0102EB0C162B
:1040E80001EB050C4519032E3446CED900235CF8A4
:1040F8000320EA500433F21A032AF8D8043EB3081E
:104108005A1CC3EB83739200944406EB8304AD18E6
:10411800BBE700BF704700BF704700BF020C0346F3
:104128001204B2B1002013F07F4F01D108301B02F6
:1041380013F0704F01D104301B0113F0404F01D12F
:1041480002309B00002B03DB13F0804F04D00130BA
:10415800704703041020E6E72020704703680246F2
:1041680013F0070009D013F0010F21D113F0020F4B
:1041780022D19B0802201360704799B209B91B0C21
:10418800102013F0FF0F01D108301B0A13F00F0F96
:1041980001D104301B0913F0030F01D102309B0831
:1041A80013F0010F02D15B0804D00130136070478F
:1041B80000207047202070475B080120136070477B
:1041C80003460A69006910B4801A11D1043203F158
:1041D800140C92009B1889180431043353F8044CCA
:1041E800043B51F8042C0439944203D19C45F5D37F
:1041F80010BC704738BF4FF0FF30F9D30120F7E704
:1042080040F20003C7F6F07301EA0303A3F1507309
:10421800002B02DD1946002070475B421B15132B4B
:104228000EDD143B1E2B03DD0123002118467047C9
:104238000122C3F11F03002112FA03F31846704745
:104248004FF40022002052FA03F170472DE9F041A3
:10425800046900F114060F46043450F8245000EBAA
:104268008404A0462846FFF759FF0A28C0F1200316
:104278003B6014DCA642C0F10B0337D254F8041C8F
:10428800D94025FA03FC15304CF07E53854043F4A1
:10429800E00341EA050210461946BDE8F081A6424E
:1042A80020D300210B3802BF45F07E530A4643F461
:1042B800E003F0D0B442C0F1200319D954F8044CFB
:1042C800DC40854021FA03FC45F07E5511FA00F0E8
:1042D80045F4E00544EA000245EA0C031046194695
:1042E800BDE8F08154F8041C043CDBE70021C8E772
:1042F8000024E6E72DE9F04383B00E4601A90746FE
:10430800FFF7A4FF0D46044669463046FFF79EFFB7
:10431800DDF804C0A946A0460B4602463169164698
:1043280038691F46401A0099C1EB0C0101EB401196
:104338000029C9BF05EB0159A3EB015724464D4697
:10434800DCBF12463B4620462946FCF72BFD03B04E
:10435800BDE8F083172810B504460EDD40F20001D1
:104368000020C3F6F07140F200030022C4F22403D7
:10437800FCF7EEFB013CF6D110BD47F26023C0F616
:10438800000303EBC003D3E9000110BD1369013931
:1043980002F1140C10B402EB83024C1114320134F4
:1043A800944500EB84040FD200235CF80310C1503D
:1043B800043303EB0C018A42F7D86FEA0C0C624411
:1043C80022F0030204328018844204D9002340F802
:1043D800043B8442FBD810BC704700BF02694B11F4
:1043E8009A4210DB0EDD11F01F010BD01A4600EBCC
:1043F80083035B6923FA01FC0CFA01F1994202D0AC
:10440800012070471A46043200F1140100EB8203C0
:1044180003F1040C61450BD250F82220002AEFD199
:10442800994205D253F8042D002AE9D19942F9D3CB
:104438000020704730B5456A83B0044655B139B19C
:10444800636A4A68DB6853F82200086043F8221060
:1044580003B030BD10200191FFF724FA0199606282
:10446800C560456085600560E9E700BF70B5446ACE
:1044780006460D4664B1E268A2B152F82530EBB1A8
:10448800196842F825100022DA601A61184670BDD2
:104498001020FFF707FA002304467062C3604360E8
:1044A8008360036010223046042100F00FFE736A17
:1044B800E060DA68002AE0D11346E7E701243046D5
:1044C8002146AC40621D920000F000FE0346002821
:1044D800DCD045608460D6E72DE9F04583B0012142
:1044E8001D4614460A9F0B9EFFF7C0FF25F00042A9
:1044F80025F07F4323F4700315465FEA125A0093B0
:104508001CBF43F4801300938046002C23D002A8DC
:1045180040F8044DFFF722FE0346002837D10199E1
:10452800009AC8F81410002A14BF02240124C8F8FD
:104538001820C8F81040BAF1000F1BD0AAF5866AF7
:10454800C3F13502AAF1030A53443B603260404686
:1045580003B0BDE8F0856846FFF700FE01231C465E
:10456800C8F81030009BC8F8143000F12003BAF1E5
:10457800000FE3D108EB8402A3F58663023B3B609E
:104588001069FFF7CBFDC0EB44103060DFE7009AFD
:10459800C0F1200112FA01F1C24001980143C8F8A4
:1045A80014100092BFE700BF2DE9F84F13690F6997
:1045B8000C461546FF1A002F4FD06ADB002701F181
:1045C80014066168FFF752FFD5F81080D4F810C0C0
:1045D80005F11401002205EB880504EB8C0405F1B4
:1045E8001408143400F11403C76051F8047B56F81A
:1045F800045BBB461FFA87FA3F0C1FFA85F9C7EB25
:104608001547CAEB090A524407EB224792B242EA1D
:10461800074243F8042B3A148845E6D8A6420ED23E
:1046280056F8041B8DB2090C521901EB224192B2C3
:1046380042EA014243F8042B0A14B442F0D853F872
:10464800042C32B953F8082C0CF1FF3C043B002A27
:10465800F8D0C0F810C0BDE8F88F043301F1140693
:104668009B00D218CB180433043253F804CC043B13
:1046780052F8041C043A8C450AD19E42F5D3002115
:10468800FFF7F4FE0123036100234361BDE8F88FBF
:1046980097D223462C4601271D4604F1140690E7BD
:1046A8002DE9F8450D698B68561101350C46AD1991
:1046B80090469D428246496803DD5B0001319D4278
:1046C800FBDC5046FFF7D2FE002E074600F114022D
:1046D8000ADD0023194642F823100133B342FAD108
:1046E80007EB830303F11402206904F1140304EBBC
:1046F8008000143018F01F081BD0C8F1200E0021CC
:104708001E6806FA08FC41EA0C0142F8041B53F83B
:10471800041B984221FA0EF1F2D8116001B101355B
:104728005046013D21463D61FFF784FE3846BDE80D
:10473800F88553F8081042F8081008F1040808EB47
:1047480003018842ECD953F8081042F8081008F120
:10475800040808EB03018842EBD8E1E72DE9F04FA4
:10476800D1F8108017690D46164687B0B845B5BF11
:1047780015463B460B464746B4BF1E469846AB68AF
:1047880008EB070469689C42C8BF0131FFF76EFE59
:1047980000EB840300F1140B143303909B4504933E
:1047A80006D204995B46002243F8042B9942FBD8B1
:1047B80006EB880806F1140908F1140805EB870CC4
:1047C8001435C145CDF804800CF1140C02954BD278
:1047D8004FF0000A059459F80A400AEB0B08A0B2FA
:1047E800D8B1029A4346002452F8045B1968AFB264
:1047F8002D0C8EB2090C00FB076600FB051136195B
:1048080001EB1641B6B20C0C944546EA014643F852
:10481800046BE9D81C6059F80A40240C1CD05BF8DA
:104828000A204146029B002510461E8897B206FBC7
:10483800045505EB104547EA05470F6051F8040F8A
:1048480053F8042B86B2120C02FB046202EB1542E9
:10485800150C9C45E9D80A600AF1040A019A0AEB8A
:1048680009039A42B7D8059C002C0BDD049A52F82C
:10487800043C3BB9134603E053F8082C043B0AB93F
:10488800013CF9D1039B18461C6107B0BDE8F08FC5
:1048980010B50C460121FFF7E9FD012244610261D0
:1048A80010BD00BF2DE9F0450D46002106462C69D4
:1048B80083B005F11408084658F8017001301FFA52
:1048C80087FA4FEA174C0AFB02330CFB02FC0CEB8D
:1048D800134C9BB203EB0C4348F80130043184427B
:1048E8004FEA1C43E8DC3BB1AA68944208DA05EBBE
:1048F800840201342C615361284603B0BDE8F08579
:104908006968304601930131FFF7B0FD2A6905F166
:104918000C010232920007460C30FFF7D7FA2946FD
:1049280030463D46FFF786FD019BE0E72DE9F04163
:10493800154612F00302044688462CD1AD101ED04D
:10494800666A002E34D0B768002F3BD015F0010FEF
:1049580008D16D1013D03E68A6B13046074615F051
:10496800010FF6D041463A462046FFF7F7FE41468A
:1049780006462046FFF75EFD6D10B046EBD1404677
:10498800BDE8F08139463A462046FFF7E7FE386031
:1049980007460660E3E747F2602C0023C0F6000CE8
:1049A8000CEB8202D2F8C420FFF77CFF8046C5E7F3
:1049B8001020FEF777FF002306466062C36043605D
:1049C80083600360204640F27121FFF761FF0023F6
:1049D800B06007460360B9E72DE9F8451E4648F67A
:1049E800396306F1080CC3F6E30388460546174603
:1049F80083FB0C134FEAEC7CCCEB630CBCF1010F8E
:104A080035DD00210122520001319445FBDC2846A6
:104A1800FFF72CFD089B43610123092F036122DD69
:104A280008F1090A092418F8043001460A22013459
:104A3800303B2846FFF736FFA742F4DC0AEB0708AD
:104A4800A8F10808BE420CDD002418F8043001461D
:104A580001340A22303B2846FFF724FFE3199E421F
:104A6800F3DCBDE8F88508F10A080927EAE7002120
:104A7800CDE700BF2DE9F04F914683B007460E46BB
:104A8800002900F03A81A1F1080809F10B04FFF7A9
:104A980041FB162CD8F804100B4600F2A080102217
:104AA800002514464C4538BF45F00105002D40F05F
:104AB8002A8121F0030A9245A2BF4046554608F1D3
:104AC800080875DA40F2F40308EB0A00C2F20003A2
:104AD800D3F808E0864500F01A81D0F804C02CF01D
:104AE800010B8344DBF804B01BF0010F7CD0AC460B
:104AF800284611F0010F40F09B8056F8081CC1EBC6
:104B0800080BDBF8045025F00305002800F0DD80D1
:104B1800704500F01F8105EB0A030CEB0305954275
:104B2800B8BF1D46C0F2D28081685B46C068AAF152
:104B38000402242A8160C86053F8081FDBF80C00BF
:104B48008160C86000F2D080132A9C4621D9314682
:104B58000BF1100C51F8040BCBF8080070680E1D0F
:104B68001B2ACBF80C0014D94868311D0BF1180C1E
:104B7800CBF8100070680E1D242ACBF8140008D159
:104B88004A680BF1200CCBF8182072680836CBF86D
:104B98001C20314698466246584651F8043B42F874
:104BA800043B7368CCF804304B685360DBF804307E
:104BB800C4EB050CBCF10F0F26D8421903F0010312
:104BC80043EA05054560536843F0010353603846DE
:104BD8004546FFF7A1FA284603B0BDE8F08F24F058
:104BE80007042246E50F5DE72CF0030C0CEB0A05E1
:104BF8009542FFF67EAF82680B46C168404608F1D1
:104C080008088A60D160D3E7011903F0010301EBBA
:104C18000C0243EA04044CF0010344604B6038463C
:104C28005368083143F001035360FEF719FDCEE7DE
:104C380049463846FEF73EFE0546002841D0D8F8DA
:104C48000430A0F1080223F0010141448A4200F037
:104C5800D780AAF104023146242A78D8132A0346B9
:104C680021D9344654F8043B211D40F8043B031D68
:104C7800D6F804C01B2AC5F804C014D9D4F804E037
:104C88001C1D01F1040CC0F804E048680CF1040193
:104C98005860231D242A06D1DCF8042062604A6883
:104CA80008315A60083308461A4650F8044B42F84F
:104CB800044B496859604368536031463846FEF7EB
:104CC800CFFC3846FFF728FA85E755449542AFDB15
:104CD8005B46DBF80C00AAF1040253F8081F242AEB
:104CE8008160C8607FF630AF184631469846FFF7B6
:104CF800B5F95846DBF804305AE7114603B0BDE869
:104D0800F04FFEF7D7BD0C2300253B6063E7DEF8C4
:104D1800045004F1100B25F0030C0CEB0A00584565
:104D2800B8BF7046FFF6E5AE08EB0402011B41F080
:104D380001019A6051603846D8F80410354601F0F0
:104D480001031C43C8F80440FFF7E6F943E7FFF7FF
:104D580085F9B2E7554404F11001AC448C45B5DB44
:104D68005D46DBF80C00AAF1040255F8081F242A56
:104D78008160C8604CD8132A284624D931460BF1E3
:104D8800100051F804EBCBF808E0D6F804E00E1D4B
:104D98001B2ACBF80CE016D9D1F804E0311D0BF131
:104DA8001800CBF810E0D6F804E00E1D242ACBF842
:104DB80014E008D14A680BF12000CBF8182072687B
:104DC8000836CBF81C203146024651F804EB42F86D
:104DD80004EB76684660496851600BEB0402C4EB4B
:104DE8000C0141F001019A6051603846DBF804106B
:104DF80001F001031C43CBF80440FFF78DF9EAE604
:104E08005568404608F1080825F003055544CFE6E3
:104E1800314628460093CDF804C0FFF71FF9DDF8A6
:104E280004C0009BD9E700BF0246404240EA0203A3
:104E380021F0004141EAD373C3F1FE4303F5700347
:104E4800584240EA0303D8170130704702464042EF
:104E5800104321F0004141EAD070C0F1FE4000F556
:104E68007000C00F704700BF38B540F24054C2F21E
:104E780000040546084600232360FBF7A1FCB0F1B7
:104E8800FF3F00D038BD2368002BFBD02B6038BD16
:104E980080EA010212F0030F3AD110F0030220F069
:104EA800030021F0030150F804CB08BF51F8043B7C
:104EB8000DD082F003024FEAC2026FF07F4323FA5B
:104EC80002F251F8043B4CEA020C43EA020300BF29
:104ED800ACF101329C4501BF22EA0C0212F0803F7E
:104EE80050F804CB51F8043BF2D04FEA0C604FEA7B
:104EF8001C2C012828BFB0EB036F08BF1B0AF4D095
:104F080003F0FF034FEA1060A0EB0300704700BFF7
:104F180010F0030F0AD010F8012B11F8013B012AF9
:104F280028BF9A42F4D0A2EB030070474DF8045D05
:104F38004DF8044D4FF0010242EA022242EA0242D1
:104F480001F0030C21F0030150F8044B51F8045B05
:104F5800BCF1020F26D04BD824F07F4CBCEB152FA8
:104F6800A4EB020323EA04030DD113EAC21308BF1A
:104F780051F8045B0AD18CEA040CBCEB056F0CD128
:104F880050F8044BE8E74FEA15255CE033F07F431F
:104F980052D10D784FEA146C55E04FEA146C05F0C5
:104FA800FF0550E04FEA044CA4EB02034FEA1C4C07
:104FB80023EA0403BCEB154F17D113EAC21308BF49
:104FC80051F8045B07D18CEA040CBCEB054F08D1FF
:104FD80050F8044BE6E71B042ED10D884FEA144C19
:104FE80031E04FEA05454FEA144C4FEA15452AE0EF
:104FF80004F0FF0CBCEB156FA4EB020323EA0403D7
:105008000DD113EAC21308BF51F8045B0AD18CEA28
:10501800040CBCEB052F0AD150F8044BE8E74FEA23
:10502800156510E014F0FF0F06D051F8045B4FEA45
:10503800142C25F07F4506E04FF000005DF8044B86
:105048005DF8045B70470CF0FF0205F0FF000128D3
:1050580028BF904204BF4FEA1C2C2D0AF3D0A2EBC4
:1050680000005DF8044B5DF8045B704720F0030115
:1050780010F00300C0F1000051F8043B00F1040CEB
:105088004FEACC0C6FF000021CBF22FA0CF213435B
:105098004FF0010C4CEA0C2C4CEA0C4CA3EB0C0224
:1050A80022EA030212EACC1204BF51F8043B04308E
:1050B800F4D013F0FF0F1FBF013013F47F4F0130FE
:1050C80013F47F0F18BF0130704700BF38B501FBDC
:1050D80002F1FEF7EFFB0446F8B150F8042C22F079
:1050E8000302043A242A1AD8132A03460FD90021A6
:1050F80040F8041B031D1B2A616008D91D1D41606F
:1051080059602B1D242A02BF6960596008331A466A
:10511800002142F8041B59605160204638BD002127
:1051280000F002F8204638BD032AC9B230B407D8C7
:1051380022B10023C15401339342FBD130BC7047E4
:1051480000EB020C034601E003F8011C03F0030422
:105158001A460133002CF7D14FF00133C2EB0C048F
:1051680003FB01F31FE042F8403C42F83C3C42F8A4
:10517800383C42F8343C42F8303C42F82C3C42F887
:10518800283C42F8243C42F8203C42F81C3C42F8B7
:10519800183C42F8143C42F8103C42F80C3C42F8E7
:1051A800083C42F8043C154640323F2CA4F1400428
:1051B800D9DC2A46C5EB0C0407E042F8103C42F85B
:1051C8000C3C42F8083C42F8043C154610320F2CBF
:1051D800A4F11004F1DC2A46C5EB0C0501E042F805
:1051E800043C14460432032DA5F10405F7DC01E064
:1051F80004F8011B6445FBD3A0E700BF00000000D2
:105208004A1E08BF7047C0F02481884240F21681C8
:10521800114200F01781B0FA80F3B1FA81F2A2EBE3
:105228000303C3F11F0304A202EB03134FF00002B0
:105238009F4600BFAFF30080B0EBC17F00BF42EBD9
:10524800020228BFA0EBC170B0EB817F00BF42EB28
:10525800020228BFA0EB8170B0EB417F00BF42EB98
:10526800020228BFA0EB4170B0EB017F00BF42EB08
:10527800020228BFA0EB0170B0EBC16F00BF42EB88
:10528800020228BFA0EBC160B0EB816F00BF42EB08
:10529800020228BFA0EB8160B0EB416F00BF42EB78
:1052A800020228BFA0EB4160B0EB016F00BF42EBE8
:1052B800020228BFA0EB0160B0EBC15F00BF42EB68
:1052C800020228BFA0EBC150B0EB815F00BF42EBE8
:1052D800020228BFA0EB8150B0EB415F00BF42EB58
:1052E800020228BFA0EB4150B0EB015F00BF42EBC8
:1052F800020228BFA0EB0150B0EBC14F00BF42EB48
:10530800020228BFA0EBC140B0EB814F00BF42EBC7
:10531800020228BFA0EB8140B0EB414F00BF42EB37
:10532800020228BFA0EB4140B0EB014F00BF42EBA7
:10533800020228BFA0EB0140B0EBC13F00BF42EB27
:10534800020228BFA0EBC130B0EB813F00BF42EBA7
:10535800020228BFA0EB8130B0EB413F00BF42EB17
:10536800020228BFA0EB4130B0EB013F00BF42EB87
:10537800020228BFA0EB0130B0EBC12F00BF42EB07
:10538800020228BFA0EBC120B0EB812F00BF42EB87
:10539800020228BFA0EB8120B0EB412F00BF42EBF7
:1053A800020228BFA0EB4120B0EB012F00BF42EB67
:1053B800020228BFA0EB0120B0EBC11F00BF42EBE7
:1053C800020228BFA0EBC110B0EB811F00BF42EB67
:1053D800020228BFA0EB8110B0EB411F00BF42EBD7
:1053E800020228BFA0EB4110B0EB011F00BF42EB47
:1053F800020228BFA0EB0110B0EBC10F00BF42EBC7
:10540800020228BFA0EBC100B0EB810F00BF42EB46
:10541800020228BFA0EB8100B0EB410F00BF42EBB6
:10542800020228BFA0EB4100B0EB010F00BF42EB26
:10543800020228BFA0EB0100104670470CBF0120F4
:1054480000207047B1FA81F2C2F11F0220FA02F07F
:10545800704708B14FF0FF3000F00EB80029F8D0BF
:105468002DE90340FFF7CCFEBDE8064002FB00F340
:10547800A1EB0301704700BF704700BF4FF0FF3C2E
:1054880006E000BF4FF0010C02E000BF4FF0010C36
:105498004DF804CD4FEA410C7FEA6C5C4FEA430CAF
:1054A80018BF7FEA6C5C1BD001B050EA410C0CBFFE
:1054B80052EA430C91EA030F02BF90EA020F002060
:1054C800704710F1000F91EA030F58BF994208BFC7
:1054D80090422CBFD8176FEAE37040F00100704784
:1054E8004FEA410C7FEA6C5C02D150EA013C07D1DB
:1054F8004FEA430C7FEA6C5CD6D152EA033CD3D026
:105508005DF8040B704700BF8446104662468C461F
:105518001946634600E000BF01B5FFF7B7FF002852
:1055280048BF10F1000F01BD4DF808EDFFF7F4FF7B
:105538000CBF012000205DF808FB00BF4DF808ED06
:10554800FFF7EAFF34BF012000205DF808FB00BF29
:105558004DF808EDFFF7E0FF94BF012000205DF84B
:1055680008FB00BF4DF808EDFFF7CEFF94BF012000
:1055780000205DF808FB00BF4DF808EDFFF7C4FFF9
:1055880034BF012000205DF808FB00BF4BB942B9C9
:10559800002908BF002802D04FF0FF310846FFF766
:1055A8006BBF82B0EC462DE9005000F005F8DDF83D
:1055B80004E002B00CBC7047F8B514461D46064618
:1055C8000F4600F0D7F900FB05F5A0FB042304FB08
:1055D8000154E318B61A67EB0307069BC3E9006793
:1055E800F8BD00BFF8B514461D4606460F4600F044
:1055F8000FF800FB05F5A0FB042304FB0154E31896
:10560800B61A67EB0307069BC3E90067F8BD00BF3E
:1056180000292DE9F04F85B0C0F2C8800026002B84
:10562800C0F2BF808946144605469B46002B4AD1E6
:105638008A4257D9B2FA82F353B1C3F1200001FA72
:1056480003F925FA00F812FA03F49D4048EA09091B
:10565800270C484639461FFA84FBFFF7D1FD394627
:1056680082464846FFF7FAFE2A0C0BFB0AF342EA89
:1056780001494B4509D919EB04090AF1FF3A04D24B
:105688004B4584BF0AF1FF3AA144C3EB09093946E7
:105698004846ADB2FFF7B4FD394680464846FFF7A5
:1056A800DDFE0BFB08FB45EA0145AB4507D92D1983
:1056B80008F1FF3803D2AB4588BF08F1FF3848EA44
:1056C8000A48002703E08B4257D90027B8464246CC
:1056D8003B4616B1524263EB43031946104605B0E8
:1056E800BDE8F08F22B911460120FFF789FD044675
:1056F800B4FA84F8B8F1000F5ED1C4EB0908270C9E
:105708001FFA84F90121029139464046FFF778FDD6
:10571800394682464046FFF7A1FE4FEA154809FB85
:105728000AF348EA014B5B4509D91BEB040B0AF164
:10573800FF3A04D25B4584BF0AF1FF3AA344C3EBA6
:105748000B0B39465846ADB2FFF75AFD394680462D
:105758005846FFF783FE09FB08F945EA0145A945C4
:1057680007D92D1908F1FF3803D2A94588BF08F1D8
:10577800FF3848EA0A48029FA9E7B3FA83F7002FDF
:1057880068D18B422CBF4FF000094FF001098242CB
:105798008CBF4C4649F00104002C96D04FF001080C
:1057A80095E7524263EB4303F6433BE7404261EB24
:1057B80041014FF0FF3632E704FA08F4C8F1200738
:1057C80035FA07F329FA07FA270C09FA08FB3946CC
:1057D800504643EA0B020292FFF712FD39461FFAC0
:1057E80084F983465046FFF739FE029809FB0BF20D
:1057F800030C43EA01439A4204D91B190BF1FF3BFE
:10580800C0F0B1809B1A394618460193FFF7F8FC9F
:105818000199824608463946FFF720FEDDF808C0A0
:1058280009FB0AF31FFA8CF040EA0142934208D9B7
:1058380012190AF1FF3A04D2934284BF0AF1FF3ADF
:10584800121905FA08F54AEA0B4EC3EB0208CDF81F
:1058580008E059E7C7F1200003FA07FAC24035FA11
:1058680000F342EA0A0B21FA00F801FA07F9404668
:105878004FEA1B4A43EA0901029151461FFA8BF28B
:105888000392FFF7BDFC514681464046FFF7E6FD0F
:10589800039BDDF808C003FB09F24FEA1C4014FA29
:1058A80007F340EA0144A24204D914EB0B0409F1BE
:1058B800FF3952D3A41A514620460193FFF7A0FCA2
:1058C800514680462046FFF7C9FD0398DDF808C019
:1058D80000FB08F21FFA8CF343EA0140019B824265
:1058E80004D910EB0B0008F1FF3830D348EA094817
:1058F8001FFA83FC1B0C801A1FFA88FE4FEA184A0D
:105908000CFB0EF90CFB0AFC03FB0EC103FB0AF2AD
:1059180001EB19418C4588BF02F5803202EB114E2C
:10592800704510D31FFA89F905FA07F709EB01400A
:1059380014BF0022012287422CBF002702F0010772
:10594800002F3FF4C4AE08F1FF380027BFE68242BB
:1059580084BF584408F1FF38C8E7A24284BF09F160
:10596800FF395C44A6E79A4284BF0BF1FF3B1B1941
:1059780048E700BF2DE9F04F0C4683B08046164635
:1059880089461F4615468A46002B4BD18A425CD968
:10599800B2FA82F35BB1C3F1200001FA03FA28FAE4
:1059A80000F216FA03F508FA03F842EA0A0A2E0C7E
:1059B80050463146AFB2FFF723FC31464FEA184450
:1059C80081465046FFF74AFD07FB09F344EA014ABE
:1059D800534509D91AEB050A09F1FF3904D2534591
:1059E80084BF09F1FF39AA44C3EB0A0A314650467D
:1059F8001FFA88F8FFF704FC314604465046FFF7C3
:105A08002DFD07FB04F748EA0148474506D9013C44
:105A180018EB050802D2474588BF013C44EA09440F
:105A280000265CE08B4258D8B3FA83F6002E5BD18F
:105A38008B422CBF0022012285428CBF154642F0C2
:105A48000105002D49D0012449E022B91146012061
:105A5800FFF7D6FB0546B5FA85F6002E40F0BA806A
:105A6800641B2F0C1FFA85FA012639462046FFF7DA
:105A7800C7FB39464FEA184B81462046FFF7EEFC34
:105A88000AFB09F34BEA014B5B4509D91BEB050BF4
:105A980009F1FF3904D25B4584BF09F1FF39AB44F2
:105AA800C3EB0B0B394658461FFA88F8FFF7A8FBDB
:105AB800394604465846FFF7D1FC0AFB04FA48EA7F
:105AC8000148C24506D9013C18EB050802D2C24577
:105AD80088BF013C44EA094401E0002634463146C7
:105AE800204603B0BDE8F08FC6F12000B34032FA7B
:105AF80000F721FA00FB1F4314FA06F228FA00F116
:105B080058464FEA174A114300915146BBB20193D8
:105B1800FFF776FB5146B54081465846FFF79EFC95
:105B2800019C009804FB09F34FEA104C4CEA014B26
:105B38005B4505D91BEB070B09F1FF39C0F08E80D7
:105B4800C3EB0B0B51465846FFF75AFB5146044628
:105B58005846FFF783FC0198009A00FB04F31FFAEC
:105B680082FC4CEA0142934206D9013CD21903D285
:105B7800934201D9D219013C44EA0944A8B2D21A85
:105B88002D0C1FFA84FC230C00FB0CF700FB03FE12
:105B980005FB0CE105FB03F501EB17418E4588BFBA
:105BA80005F5803505EB1145AA4210D3BFB208FAB6
:105BB80006F607EB014214BF4FF0000E4FF0010E3E
:105BC80096422CBF00260EF00106002E87D0013C1D
:105BD800002684E7B540C6F1200124FA01F928FA25
:105BE80001F22F0CB4403946484622430092FFF791
:105BF80007FB39461FFA85FA83464846FFF72EFC0D
:105C0800009B1A0C0AFB0BF342EA0144A34203D996
:105C180064190BF1FF3B27D3E41A39462046FFF7F6
:105C2800EFFA394681462046FFF718FC00980AFB30
:105C380009F31FFA80FC4CEA0144A34208D964190D
:105C480009F1FF3904D2A34284BF09F1FF3964196D
:105C580008FA06F8E41A49EA0B4606E75B4584BFEA
:105C680009F1FF39BB446BE7A34284BF0BF1FF3B4B
:105C78006419D1E742F2FB1321F0004CC3F6E97333
:105C88009C45F0B5044687B00D4606460F461EDD16
:105C98004FF6FF73C7F6EF739C4505DD02460B46CA
:105CA800FAF7A2FD07B0F0BD02AA00F035F800F03F
:105CB800030001281DD0022810D008BB0123DDE90C
:105CC80002010093DDE9042300F036FFEAE7002231
:105CD80000230024009400F02FFFE3E70123DDE90F
:105CE80002010093DDE9042300F026FF01F10041E1
:105CF800D8E7DDE90201DDE9042300F019FAD1E76C
:105D0800DDE90201DDE9042300F012FA01F10041A6
:105D1800C8E700BF0000000042F2FB132DE9F04F76
:105D2800C3F6E97321F000468DB09E4282468B4649
:105D38000D46144640F39E804DF67B13C4F20203D1
:105D48009E4226DC0029DDA3D3E9002340F36181CC
:105D5800FAF74AFD42F2FB13C3F6F9739E428046F6
:105D6800894600F09C80D2A3D3E900230127FAF7E3
:105D78003BFD02460B46C4E9000140464946FAF796
:105D880033FDCBA3D3E90023FAF72EFDC4E90201C2
:105D980077E042F2FB13C4F239139E4240F39C8031
:105DA8004FF6FF73C7F6EF739E426EDC4FEA265834
:105DB8000246A8F582680DF11809A8F1060803271C
:105DC800A6EB0853CDE90223194609F10806FBF7AB
:105DD800D1F8083EFAF756FE02460B46CDE9060111
:105DE800DDE90201FAF700FD40F200030022C4F2E7
:105DF8007013FAF7ADFECDE90401FBF7BBF8FAF72B
:105E080041FE02460B46CDE90801DDE90401FAF737
:105E1800EBFC40F200030022C4F27013FAF798FE7C
:105E280000220023CDE90A01FFF77EFB48B1D6E93D
:105E3800020100220023013F083EFFF775FB0028FE
:105E4800F5D19D4E3B4648464246214601960226DC
:105E5800009600F095FA002D074612DA04F10803BF
:105E680062687F4202F1004262605A6802F10042B1
:105E78005A6006E00027C2E900AB00230022C4E90B
:105E8800022338460DB0BDE8F08F02460B46FAF7FC
:105E9800ABFC0027C4E90001C4E90201F1E77CA3D7
:105EA800D3E900230127FAF79FFC7BA3D3E900235A
:105EB80080468946FAF798FC02460B46C4E9000179
:105EC80040464946FAF790FC73A3D3E90023FAF752
:105ED8008BFCC4E90201D4E700F0E6FE70A3D3E925
:105EE800002380468946FAF733FE40F20003002279
:105EF800C3F6E073FAF77AFCFBF73CF80746FAF7C3
:105F0800C1FD69A3D3E90023CDE90201FAF720FE18
:105F180002460B4640464946FAF768FC64A3D3E9B3
:105F2800002380468946DDE90201FAF711FE1F2F9A
:105F380082468B4621DC47F288337A1EC0F600037E
:105F480053F82230B34218D052465B464046494681
:105F5800FAF74AFC02460B46C4E900234046494684
:105F6800FAF742FC5B465246FAF73EFC002D04F174
:105F78000803C4E9020184DA72E752465B464046E8
:105F88004946FAF731FC36150B46C1F30A51711A26
:105F980002461029C4E90023E0DD3DA3D3E900232C
:105FA800DDE90201FAF7D4FD82468B4652465B468C
:105FB80040464946FAF718FCCDE904014046DDE9B8
:105FC80004234946FAF710FC52465B46FAF70CFCE4
:105FD80031A3D3E9002380468946DDE90201FAF7B7
:105FE800B7FD42464B46FAF7FFFB82468B465246C0
:105FF8005B46DDE90401FAF7F7FB0B46C1F30A51EA
:10600800761A0246312EC4E900235BDCDDE90489F7
:10601800A4E7FAF7EBFB42F2FB13C3F6F9739E42CF
:106028008046894616D022A3D3E900234FF0FF37D4
:10603800FAF7DCFB02460B46C4E900014046494634
:10604800FAF7D2FB1AA3D3E90023FAF7CFFBC4E986
:10605800020116E70EA3D3E900234FF0FF37FAF742
:10606800C5FB0DA3D3E9002380468946FAF7BEFB9A
:1060780002460B46C4E9000140464946FAF7B4FB1C
:1060880005A3D3E90023FAF7B1FBC4E90201F8E656
:106098000000601A61B4D03D7370032E8A19A33BC7
:1060A80083C8C96D305FE43F00004054FB21F9BF4D
:1060B8003163621A61B4D03D08740008000040548E
:1060C800FB21F93F16A3D3E90023DDE90201FAF722
:1060D8003FFD82468B4652465B46DDE90401FAF7EE
:1060E80083FB8046894642464B46DDE90401FAF7C0
:1060F8007BFB52465B46FAF777FB0BA3D3E90023F9
:1061080082468B46DDE90201FAF722FD52465B46DC
:10611800FAF76AFB82468B4616E700BFAFF30080AA
:106128000000002E8A19A33BC14920259A837B3998
:106138002DE9F04F21F00046B6F1795F85B0804631
:10614800894692469B466FDAFAF714FF002800F05A
:10615800F98042464B4640464946FAF7F9FC7CA38B
:10616800D3E9002304460D46FAF7F2FC7AA3D3E9F3
:106178000023FAF73BFB22462B46FAF7E9FC78A303
:10618800D3E90023FAF730FB22462B46FAF7E0FC66
:1061980075A3D3E90023FAF729FB22462B46FAF721
:1061A800D7FC73A3D3E90023FAF71EFB22462B463C
:1061B800FAF7CEFC70A3D3E90023FAF717FB2246BF
:1061C8002B46FAF7C5FCCDE9000140F20003002296
:1061D80020462946C3F6E073FAF7BAFCDDE9002346
:1061E80006460F4620462946FAF7B2FC52465B4659
:1061F80004460D4640464946FAF7AAFC02460B46B5
:1062080020462946FAF7F0FA02460B463046394648
:10621800FAF7EAFA0B4640F200010246C3F6F071BB
:106228000020FAF7E1FA84E002460B46FAF790FC00
:1062380047A3D3E9002304460D46FAF789FC46A391
:10624800D3E90023FAF7D2FA22462B46FAF780FC64
:1062580043A3D3E90023FAF7C7FA22462B46FAF7F5
:1062680077FC41A3D3E90023FAF7C0FA22462B466C
:10627800FAF76EFC3EA3D3E90023FAF7B5FA2246F3
:106288002B46FAF765FC3CA3D3E90023FAF7AEFAEC
:106298002B462246FAF75CFC43F23233C3F6D3733B
:1062A8009E42CDE9000190DD40F20003C3F6E97398
:1062B8009E4241DD40F200070026C3F6D27740F245
:1062C800000132463B460020C3F6F071FAF78CFA1B
:1062D80040F200030022C3F6E073CDE90201204634
:1062E8002946FAF735FC32463B46FAF77DFADDE9EE
:1062F800002306460F4620462946FAF729FC52464F
:106308005B4604460D4640464946FAF721FC0246DC
:106318000B4620462946FAF767FA02460B463046EE
:106328003946FAF761FA02460B46DDE90201FAF747
:106338005BFA05B0BDE8F08FA6F5001300221646FB
:106348001F46BCE740F200010020C3F6F071F0E7F9
:10635800D43888BEE9FAA8BDC4B1B4BD9EEE213ECA
:10636800AD529C804F7E923E9015CB19A001FA3E0B
:106378007751C1166CC1563F4C5555555555A53FDB
:106388002DE9F04FADF51F7D144647F210558046B4
:10639800D01EA89AC0F600050A9118210C9355F84A
:1063A80022500B9500F0B0FD0C9B18220B9D013B71
:1063B800079320EAE0700E90C34302FB0342079C58
:1063C8002F1909921BD4041BA99862AEE71900EB98
:1063D800840509E028680435FAF754FBBC4204F147
:1063E8000104E6E802010AD0002CF3DA00200021BB
:1063F8000435BC42E6E8020104F10104F4D10B992A
:1064080000292FDB0C9B0DF1480BDDF81C900C9A32
:106418004FEAC30A8A180392DDF81CC0BCF1000FCA
:10642800C0F2AF8162A8002400EBC905002600274E
:1064380008EB040175E802230834D1E90001FAF7F2
:1064480087FB02460B4630463946FAF7CFF95445E2
:1064580006460F46ECD1039C09F10109EBE80267F7
:10646800A145D9D10B999EAC8AA80DF1480C4B1EB9
:1064780089468A00CDF804C004EB830410180F92F3
:10648800119410904FEAC90112AA8D18B9F1000FA2
:106498000391D5E9006730DD0024CB46C24640F2BF
:1064A80000030022C3F6706330463946FAF750FB02
:1064B800FAF760FDFAF7E6FA40F200030022CCF2A0
:1064C800701380468946FAF743FB32463B46FAF793
:1064D8008DF9FAF74FFD0DF50A7C75E90223494657
:1064E8004CF804004046FAF781F90434064601984E
:1064F8000F468542D3D1D946D04630463946099A07
:1065080000F06AFC00224FF07F5304460D46FAF76C
:106518001FFB00F0CDFB40F200030022CCF2200369
:10652800FAF716FB02460B4620462946FAF75EF9AB
:106538000D460446FAF71EFD8246FAF7A3FA02460C
:106548000B4620462946FAF74FF9099A002A0646CB
:106558000F4640F3F58009F1FF339EACC2F11801F4
:10656800C2F1170C04EB830353F8502C52FA01F0D4
:10657800824410FA01F1521A43F8502C42FA0CF5F1
:10658800002D3BDDB9F1000F0AF1010A40F3AA82A0
:1065980000234FEA89001C4607E019B10124C1F124
:1065A8008071D1500433834210D08AAAD158002C6C
:1065B800F3D04FF6FF720DF50A7CC0F2FF020124FA
:1065C800521A4CF8032004338342EED1099800286C
:1065D80011DD012800F0BD8002280CD109F1FF323D
:1065E8009EAB03EB820252F8503C23F07F4323F426
:1065F800400342F8503C022D00F083803046394673
:1066080000220023FEF790FF002800F0BF800B9CBB
:1066180009F1FF3084420EDC0DF50A7C00220CEBF8
:106628008903DDF840C053F8041D0A436345FAD1D5
:10663800002A40F03A82119850F8503C002B40F064
:106648004F820F998AAA5318012253F8081C013265
:10665800043B0029F9D04A440D9291454BDA0E9B30
:1066680012A8039903F1010B0C9C401804900C9894
:10667800CB44A99A09EB0403DDF834C0994602EB30
:106688008B0B4FEAC00A62AC844404EBC304CDF818
:1066980020C00394DBF80000FAF7F4F9079B039A8B
:1066A800002BC2E9000129DB62AC002604EBC90516
:1066B8000027002408EB040175E802230834D1E917
:1066C8000001FAF745FA02460B4630463946FAF712
:1066D8008DF8544506460F46ECD1039909F1010996
:1066E800089A0BF1040B0498083191450391E0E9ED
:1066F80002670490CED1DDF83490C3E60026002767
:10670800EBE740F2000132463B460020C3F6F07149
:10671800FAF76AF806460F46002C3FF46FAF40F2CE
:106728000001099A0020C3F6F07100F055FB0246FB
:106738000B4630463946FAF757F806460F465DE7E6
:1067480015D10DF51E7C0CEB890353F8545CED153F
:1067580016E709F1FF329EA901EB820252F8503C7C
:1067680023F07F4323F4000342F8503C43E740F210
:1067780000030022C3F6E073FEF7F4FE20B90025FB
:106788003CE70026002766E60225FBE60395CDF8E0
:106798001CA0002840F0AA81099B304639465A427D
:1067A80000F01AFB40F200030022C4F27013044602
:1067B8000D46FEF7D7FE002800F09B8140F200034B
:1067C8000022C3F6706320462946FAF7C1F90DF591
:1067D8001E7C0CEB8906FAF7CDFBFAF753F909F1A1
:1067E800010940F200030DF51E7C0022CCF2701363
:1067F8000CEB890782468B46FAF7AAF90B46024644
:1068080029462046F9F7F2FF099A18320992FAF751
:10681800B1FB594646F8500C5046FAF7ABFB47F81F
:10682800500C40F200010020099AC3F6F07100F004
:10683800D3FAB9F1000F06460F4658DB12AC8AAD01
:10684800A4F1080805EB890504EBC90455F8040907
:10685800FAF718F932463B46FAF77AF940F200039C
:106868000022C3F6706364E8020130463946FAF73D
:106878006FF9444506460F46E8D10B9F4FF00008D4
:10688800CDF81090002FC0F20981B8F1000FC0F2C6
:1068980005810DF1480C944E0CEBC9054FF0000A28
:1068A8004FF0000B002401E0444512DCD5E9002339
:1068B8000134D6E900010835FAF74AF908360246E4
:1068C8000B4650465946F9F791FFA74282468B4638
:1068D800EADA3AAC09F1FF3904EBC803B9F1FF3F32
:1068E80008F10108C3E900ABCCD1DDF81090A898F5
:1068F80003281CD8DFE810F0B7007D007D002300D6
:1069080000200146039A002A00F00681E36801F19D
:1069180000416268266803F10043A56802F100425D
:106928000A9C61612660A5606260E3602061DDF811
:106938001CC00CF007000DF51F7DBDE8F08FB9F104
:10694800000F3AACDCDD4FEAC9073B191E461D466D
:10695800D3E90001CDE90401DDE9042355E9020189
:10696800F9F744FF82468B46524655E902015B46D9
:10697800F9F73AFFDDE90423F9F738FFCDE904AB6D
:10698800C5E9000165E902ABA542E5D1B9F1010FFE
:10699800B6DD3F1909F1FF35D7E900AB04EBC505B2
:1069A800D5E9002350465946F9F720FF8046894625
:1069B8004246D5E900014B46F9F716FF02460B4659
:1069C80050465946F9F712FFC246CB46C5E90201BF
:1069D80065E80289A542E3D1002004F108050146D3
:1069E80076E8022380468946F9F700FFAE42F7D1E0
:1069F80088E7B9F1000FC0F28B803AAC002004EBB5
:106A0800C905A4F10806014675E8022382468B46AB
:106A1800F9F7ECFEB542F7D1039A002A43D001F109
:106A2800004C024606460A9867460B46C0E90067CE
:106A3800D4E90001F9F7D8FEB9F1000F09DD04EB3C
:106A4800C909F4E9022306460F46F9F7CFFE4C457B
:106A5800F7D1039A0AB101F100410A9C02460B469C
:106A6800C4E9022363E7B9F1000F4EDB3AAD002019
:106A780005EBC9040146083D74E8022306460F46A3
:106A8800F9F7B4FEAC42F7D1039A0AB101F100411B
:106A98000A9C02460B46C4E9002348E74FF0000A67
:106AA8004FF0000B15E78C46BBE70395CDF81CA00B
:106AB80083000DF51E7C03EB0C02099C52F8502C48
:106AC800183C0994FAB98AAA8146D318099A53F846
:106AD800041D09F1FF39183A0029F8D00992A0E6F7
:106AE8000122B8E5002471E52075000809F1FF309E
:106AF800DEE720469EAB294603EB8904FAF73AFA0B
:106B080044F8500C8DE681468BE600200146BBE731
:106B180000203AAC01467FE7D4E90267024630CC50
:106B28000B460A98C0E90423C0E90267C0E900459A
:106B3800FDE600BF000000002DE9F04F9B4621F064
:106B4800004385B0B3F1795F04460D46924603DAF7
:106B5800FAF710FA00286FD022462B46204629461D
:106B6800F9F7F6FF22462B4606460F46F9F7F0FFDF
:106B780041A3D3E900238046894630463946F9F7D0
:106B8800E7FF3FA3D3E90023F9F72EFE32463B4641
:106B9800F9F7DEFF3CA3D3E90023F9F727FE3246D5
:106BA8003B46F9F7D5FF3AA3D3E90023F9F71CFED2
:106BB80032463B46F9F7CCFF37A3D3E90023F9F770
:106BC80015FE0E9BCDE90001002B3AD040F20003E0
:106BD8000022C3F6E07350465946F9F7B9FFDDE9DC
:106BE8000023CDE9020140464946F9F7B1FF0246C4
:106BF8000B46DDE90201F9F7F7FD32463B46F9F7A6
:106C0800A7FF52465B46F9F7EFFD25A3D3E900231A
:106C180006460F4640464946F9F79AFF02460B4694
:106C280030463946F9F7E2FD02460B46204629462A
:106C3800F9F7DAFD04460D462046294605B0BDE8B9
:106C4800F08F02460B4630463946F9F781FF14A308
:106C5800D3E90023F9F7C8FD42464B46F9F778FF18
:106C680002460B4620462946F9F7C0FD04460D4664
:106C7800E2E700BFAFF300807CD5CF5A3AD9E53DB3
:106C8800EB9C2B8AE6E55A3E7DFEB157E31DC73ED5
:106C9800D561C119A0012A3FA6F810111111813F31
:106CA800495555555555C53F21F00043194670477C
:106CB8002DE9F047C1F30A54A4F57E740246073C57
:106CC8000B46132C06460F460D468A46804621DCA5
:106CD800002C40DB4FF6FF7CC0F20F0C4CFA04F995
:106CE80009EA0105054311D039A3D3E90023F9F7CF
:106CF8007DFD00220023FEF73FFC00283CD0002F3A
:106D08005DDB2AEA090A002553462A461046194639
:106D1800BDE8F087332C07DDB4F5806FF6D1F9F7BD
:106D280065FD02460B46F1E74FF0FF35A4F1140C60
:106D380025FA0CF50542E9D025A3D3E90023F9F794
:106D480055FD00220023FEF717FCA8B1002F1BDB1E
:106D580026EA05050AE01EA3D3E90023F9F746FD54
:106D680000220023FEF708FC48B9354653462A4658
:106D780010461946BDE8F0873546BA46F6E7002FB3
:106D880010DB0025AA46F1E7142C06D00126C4F131
:106D98003404A64016EB0806DAD30AF1010A26EAFB
:106DA8000505E3E727F0004540F2000A3543CBF636
:106DB800F07A002D08BFBA4618BF0025D6E74FF471
:106DC800801353FA04F407EB040A9AE7AFF3008040
:106DD8009C7500883CE4377EC1F30A532DE9D04303
:106DE800144606460F46804689460A46002B2FD190
:106DF80021F00042024327D040F200030022C4F2EF
:106E08005033F9F7A5FE43F6B043CFF6FF739C4223
:106E180006460F46804689463ADBC1F30A530A46BE
:106E2800363B40F2FE711B198B421ADD32463B4657
:106E38002BA1D1E9000100F05BF829A3D3E90023D5
:106E4800F9F786FE06460F4630463946BDE8D08338
:106E580040F2FF7C634526D01B1940F2FE718B423D
:106E6800E4DC002BC2BF22F0FE4222F4700242EAA8
:106E78000357E9DC13F1350F1FDA4CF250339C420B
:106E8800D4DC32463B4618A1D1E9000100F030F8C5
:106E980015A3D3E90023F9F75BFE06460F463046F3
:106EA8003946BDE8D08302460B46F9F79FFC0646F3
:106EB8000F4630463946BDE8D083363322F0FE42CD
:106EC80022F47002304642EA035740F20003394682
:106ED8000022C3F69043F9F73BFE06460F46B3E798
:106EE8009C7500883CE4377E59F3F8C21F6EA501F3
:106EF80003F0004321F0004230B40D46044643EA53
:106F0800020130BC704700BF002900F03E8180EAD2
:106F1800010C48BF49424A1E00F01F81031C48BFAC
:106F280043428B4240F21E81114200F02381B3FAA2
:106F380083F2B1FA81F0A0EB0202C2F11F0204A0B1
:106F480000EB02124FF00000974600BFAFF300803D
:106F5800B3EBC17F00BF40EB000028BFA3EBC173B8
:106F6800B3EB817F00BF40EB000028BFA3EB817328
:106F7800B3EB417F00BF40EB000028BFA3EB417398
:106F8800B3EB017F00BF40EB000028BFA3EB017308
:106F9800B3EBC16F00BF40EB000028BFA3EBC16398
:106FA800B3EB816F00BF40EB000028BFA3EB816308
:106FB800B3EB416F00BF40EB000028BFA3EB416378
:106FC800B3EB016F00BF40EB000028BFA3EB0163E8
:106FD800B3EBC15F00BF40EB000028BFA3EBC15378
:106FE800B3EB815F00BF40EB000028BFA3EB8153E8
:106FF800B3EB415F00BF40EB000028BFA3EB415358
:10700800B3EB015F00BF40EB000028BFA3EB0153C7
:10701800B3EBC14F00BF40EB000028BFA3EBC14357
:10702800B3EB814F00BF40EB000028BFA3EB8143C7
:10703800B3EB414F00BF40EB000028BFA3EB414337
:10704800B3EB014F00BF40EB000028BFA3EB0143A7
:10705800B3EBC13F00BF40EB000028BFA3EBC13337
:10706800B3EB813F00BF40EB000028BFA3EB8133A7
:10707800B3EB413F00BF40EB000028BFA3EB413317
:10708800B3EB013F00BF40EB000028BFA3EB013387
:10709800B3EBC12F00BF40EB000028BFA3EBC12317
:1070A800B3EB812F00BF40EB000028BFA3EB812387
:1070B800B3EB412F00BF40EB000028BFA3EB4123F7
:1070C800B3EB012F00BF40EB000028BFA3EB012367
:1070D800B3EBC11F00BF40EB000028BFA3EBC113F7
:1070E800B3EB811F00BF40EB000028BFA3EB811367
:1070F800B3EB411F00BF40EB000028BFA3EB4113D7
:10710800B3EB011F00BF40EB000028BFA3EB011346
:10711800B3EBC10F00BF40EB000028BFA3EBC103D6
:10712800B3EB810F00BF40EB000028BFA3EB810346
:10713800B3EB410F00BF40EB000028BFA3EB4103B6
:10714800B3EB010F00BF40EB000028BFA3EB010326
:10715800BCF1000F48BF404270479CEA000F48BF8F
:107168004042704738BF002004BF4FEAEC7040F03F
:1071780001007047B1FA81F2C2F11F02BCF1000FA1
:1071880023FA02F048BF404270470028C8BF6FF09A
:107198000040B8BF4FF00040FEF76EB90029F4D0A8
:1071A8002DE90340FFF7B3FEBDE8064002FB00F3FC
:1071B800A1EB0301704700BF002103E00A4B5B58B5
:1071C8004350043109480A4B42189A42F6D3094AF7
:1071D80002E0002342F8043B074B9A42F9D3F9F73F
:1071E80017F8F9F7D5F970471C7600080000002059
:1071F800040500200405002044050020FEE70000E7
:107208002020202020202020202020202020202076
:107218003030303030303030303030303030303066
:10722800E8750008E47500089C7500089C7500085E
:107238009C7500089C7500089C7500089C750008E2
:107248009C7500089C7500089C750008FFFFFFFFEF
:10725800FFFFFFFF00000000000000000000F03FFB
:107268000000000000002440000000000000594019
:107278000000000000408F40000000000088C3406C
:1072880000000000006AF8400000000080842E41E1
:1072980000000000D01263410000000084D797412D
:1072A8000000000065CDCD41000000205FA0024233
:1072B800000000E876483742000000A2941A6D42A8
:1072C800000040E59C30A2420000901EC4BCD6429B
:1072D80000003426F56B0C430080E03779C3414346
:1072E80000A0D8855734764300C84E676DC1AB43BC
:1072F800003D9160E458E143408CB5781DAF1544DA
:1073080050EFE2D6E41A4B4492D54D06CFF08044B4
:10731800F64AE1C7022DB544B49DD9794378EA44C9
:1073280005000000190000007D00000000000000BA
:107338000080E03779C34143176E05B5B5B8934669
:10734800F5F93FE9034F384D321D30F94877825A35
:107358003CBF737FDD4F1575BC89D897B2D29C3C72
:1073680033A7A8D523F649393DA7F444FD0FA53224
:107378009D978CCF08BA5B25436FAC642806C80A72
:10738800FB21F93FFB2109407CD91240FB21194020
:107398007A6A1F407CD92240BBFD2540FB21294049
:1073A8003A462C407A6A2F405C4731407CD93240BB
:1073B8009C6B3440BBFD3540DB8F3740FB213940A7
:1073C8001BB43A403A463C405AD83D407A6A3F405E
:1073D8004C7E40405C4741406C1042407CD9424062
:1073E8008CA243409C6B4440AC344540BBFD4540B7
:1073F800CBC64640DB8F4740EB584840FB2149400D
:1074080083F9A200444E6E00FC291500D1572700CD
:10741800DD34F50062DBC0003C99950041904300E3
:107428006351FE00BBDEAB00B761C5003A6E2400B5
:10743800D24D42004906E00009EA2E001C92D10014
:10744800EB1DFE0029B11C00E83EA700F5358200BF
:1074580044BB2E009CE98400B4267000417E5F0086
:10746800D6913900538339009CF439008B5F84002E
:1074780028F9BD00F81F3B00DEFF97000F980500B4
:10748800112FEF000A5A8B006D1F6D00CF7E36005A
:1074980009CB2700464FB7009E663F002DEA5F00E4
:1074A800BA277500E5EBC7003D7BF100F739070007
:1074B80092528A00FB6BEA001FB15F00085D8D00E5
:1074C800300356007BFC4600F0AB6B0020BCCF00BD
:1074D80036F49A00E3A91D005E619100081BE600DE
:1074E80085996500A0145F008D40680080D8FF0072
:1074F80027734D0006063100CA561500C9A8730047
:107508007BE260006B8CC0000200000003000000FA
:10751800040000000600000000000040FB21F93FC5
:10752800000000002D44743E000000809846F83C9E
:107538000000006051CC783B00000080831BF039CC
:107548000000004020257A38000000802282E336BF
:10755800000000001DF369350A5465737420666CD9
:107568006F61742073696E75730D0A00252E3230B1
:107578006C6609252E32306C660D0A00646F6E65E4
:107588000A0D00003031323334353637383941424C
:107598004344454600000000494E4600696E6600B7
:1075A8004E414E006E616E0030313233343536371D
:1075B800383961626364656600000000286E756C86
:1075C8006C29000030000000496E66696E697479A4
:1075D800000000004E614E00430000002E00000035
:1075E80049534F2D383835392D310000F8B500BFD3
:1075F800F8BC08BC9E467047F8B500BFF8BC08BC8C
:047608009E467047E3
:08760C000CE0FF7F010000000B
:04761400FD0100086C
:04761800E90100087C
:10761C00040000200000000000000000000000003A
:10762C00000000000000000000000000000000004E
:10763C0000000000E07500080000000000000000E1
:10764C00000000000000000000000000000000002E
:10765C00000000000000000000000000000000001E
:10766C00000000000000000000000000000000000E
:10767C0000000000000000000000000000000000FE
:10768C0000000000000000000000000000000000EE
:10769C0000000000000000000000000000000000DE
:1076AC0000000000000000000000000000000000CE
:1076BC0000000000000000000000000000000000BE
:1076CC0000000000000000000000000000000000AE
:1076DC00000000000000000000000000000000009E
:1076EC00000000000000000000000000000000008E
:1076FC00000000000000000000000000000000007E
:10770C00000000000000000000000000F400002059
:10771C00F4000020FC000020FC00002004010020EC
:10772C00040100200C0100200C0100201401002099
:10773C00140100201C0100201C0100202401002049
:10774C00240100202C0100202C01002034010020F9
:10775C00340100203C0100203C01002044010020A9
:10776C00440100204C0100204C0100205401002059
:10777C00540100205C0100205C0100206401002009
:10778C00640100206C0100206C01002074010020B9
:10779C00740100207C0100207C0100208401002069
:1077AC00840100208C0100208C0100209401002019
:1077BC00940100209C0100209C010020A4010020C9
:1077CC00A4010020AC010020AC010020B401002079
:1077DC00B4010020BC010020BC010020C401002029
:1077EC00C4010020CC010020CC010020D4010020D9
:1077FC00D4010020DC010020DC010020E401002089
:10780C00E4010020EC010020EC010020F401002038
:10781C00F4010020FC010020FC01002004020020E7
:10782C00040200200C0200200C0200201402002094
:10783C00140200201C0200201C0200202402002044
:10784C00240200202C0200202C02002034020020F4
:10785C00340200203C0200203C02002044020020A4
:10786C00440200204C0200204C0200205402002054
:10787C00540200205C0200205C0200206402002004
:10788C00640200206C0200206C02002074020020B4
:10789C00740200207C0200207C0200208402002064
:1078AC00840200208C0200208C0200209402002014
:1078BC00940200209C0200209C020020A4020020C4
:1078CC00A4020020AC020020AC020020B402002074
:1078DC00B4020020BC020020BC020020C402002024
:1078EC00C4020020CC020020CC020020D4020020D4
:1078FC00D4020020DC020020DC020020E402002084
:10790C00E4020020EC020020EC020020F402002033
:10791C00F4020020FC020020FC02002004030020E2
:10792C00040300200C0300200C030020140300208F
:10793C00140300201C0300201C030020240300203F
:10794C00240300202C0300202C03002034030020EF
:10795C00340300203C0300203C030020440300209F
:10796C00440300204C0300204C030020540300204F
:10797C00540300205C0300205C03002064030020FF
:10798C00640300206C0300206C03002074030020AF
:10799C00740300207C0300207C030020840300205F
:1079AC00840300208C0300208C030020940300200F
:1079BC00940300209C0300209C030020A4030020BF
:1079CC00A4030020AC030020AC030020B40300206F
:1079DC00B4030020BC030020BC030020C40300201F
:1079EC00C4030020CC030020CC030020D4030020CF
:1079FC00D4030020DC030020DC030020E40300207F
:107A0C00E4030020EC030020EC030020F40300202E
:107A1C00F4030020FC030020FC03002004040020DD
:107A2C00040400200C0400200C040020140400208A
:107A3C00140400201C0400201C040020240400203A
:107A4C00240400202C0400202C04002034040020EA
:107A5C00340400203C0400203C040020440400209A
:107A6C00440400204C0400204C040020540400204A
:107A7C00540400205C0400205C04002064040020FA
:107A8C00640400206C0400206C04002074040020AA
:107A9C00740400207C0400207C040020840400205A
:107AAC00840400208C0400208C040020940400200A
:107ABC00940400209C0400209C040020A4040020BA
:107ACC00A4040020AC040020AC040020B40400206A
:107ADC00B4040020BC040020BC040020C40400201A
:107AEC00C4040020CC040020CC040020D4040020CA
:107AFC00D4040020DC040020DC040020E40400207A
:107B0C00E4040020EC040020EC040020FFFFFFFF45
:047B1C000000020063
:04000005080071C1BD
:00000001FF
/Modules/ARM/STM32F10xRxT/SW/RS232_bootloader/version.txt
0,0 → 1,156
/******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
* File Name : version.txt
* Author : MCD Application Team
* Version : V2.2.0
* Date : 05/03/2010
* Description : Version file for Flash Loader Demonstrator
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
 
 
* V2.2.0 - 05/03/2010
=====================
 
New Features
************
+ Adding support of STM32F1xx Value line and XL density devices
+ Adding support of new STM8L devices
 
Enhancements
************
+ Fix of "removes FFs data" when using GUI demo or Command line utility
+ Fix of sending extra "0xFF" or a random byte at the end of flash if sending odd data
+ Fix of RTS and DTR Outputs control in Command line version
+ Fix of special Echo modes for LIN emulation over UART for STM8 while using a tranceiver
Known Limitations
*****************
+ Automatic selection of some STM8 devices may not work properly. If required, use
command line version with batch files customization.
+ STM32F1xx Write protection of last pages which is controlled by the last protection bit7
in WPR3 options byte is working properly but the Graphical view of check boxes may not updated
accordingly on some devices with large size greater than 128Kbytes.
To enable/disable the write protection of last pages, you can check/uncheck only the first
page of this group of pages on the graphical view.
 
 
 
* V2.1.0 - 11/02/2009
=====================
 
New Features
************
+ Adding New STM8 map files with options bytes support,
+ Adding "Echo" mode option in UART communication for LIN emulation over UART for STM8
+ Adding a new combox with "No erase" option when downlading a file.
 
Enhancements
************
+ Fix of COM ports number > 9 using when using some USB-to-Serial commercial bridges,
+ Fix of --o option (removes FFs data) when using Command line utility,
+ Fix of GUI map files selection in some particular cases,
+ Fix of refresh of the window values after reading Options Bytes,
+ Removing "Stop Bits" combox in the GUI first Window,
+ Removing CAN selection over the COMBox bridge board,
+ Removing DFU Selection for the GUI; To use DFU bootloader refer to DFuSe Software,
+ Minor enhancemenst for dialog box messages and comments for the GUI and Command Line versions.
Known Limitations
*****************
+ Automatic selection of some STM8 devices may not work properly. If required, use
command line version with batch files customization.
 
 
* V2.0.0 - 07/03/2009
=====================
 
New Features
************
+ Adding STM32 connectivity line and STM8 devices
+ Adding CAN communication for connectivity line devices over COMBox bridge
+ Adding Access to DfuSe Demo (the DfuSe Demo should be installed on your machine)
 
 
* V1.3.0 - 03/05/2009
=====================
 
Enhancements
************
 
+ Allow device selection in the flash loader GUI for non programmed flash size devices
+ Add Visual studio 2005 workspace template under INSTALLDIR\src directory
 
 
* V1.2.0 - 10/23/2008
=====================
 
New Features
************
 
+ Support of Low density and STM32 USB Access line devices
 
Enhancements
************
 
+ Fix a minor issue of COM ports with greater than 9 numbers
+ Fix a minor issue of the GUI pages transition after enabling or disabling protection
+ RAM size information in the Device information page is removed
 
 
* V1.1.1 - 06/16/2008
=====================
 
+ Remove the Software License Agreement file
+ Update the source files's header to remove reference to the License
 
 
* V1.1.0 - 06/02/2008
===================
 
New Features
************
+ Add SOFTWARE License Agreement file
+ Save the last used configuration for the serial communication
 
+ Save the last used file names for upload and download operations
 
+ Add Enable/Diable the Read/Write protection commands
 
+ Add Option bytes Window for flexible usage
 
+ Add Option bytes upgrade thru files option to the download operation
 
+ Add of a Command line version of the flash loader demonstrator
 
+ Add of Source Files of the command line version
 
+ Add headers and and library files of common run-time DLLs
 
+ Support all STM32 family products,STR75x products, and all
STMicroelectronics products implementing the bootloader protocol
 
 
Enhancements
************
 
+ Fix a minor issue of format with the Upload operation in a binary file
+ Fix a minor issue with erase command status update
+ Fix an issue of Download, Upload and erase operations with an image size (>32k)
 
 
* V1.0.0 - 10/25/2007
====================
Created.
 
******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE******
/Modules/ARM/STM32F10xRxT/opravit.txt
0,0 → 1,0
BS250 neni, misto nej pouzit BSS83P
/Modules/ARM/STM32F10xRxT/CAM_DOC/O1.pdf
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/CAM_DOC/O2.pdf
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/CAM_DOC/STM32F10XRXT.pdf
0,0 → 1,91166
%PDF-1.2
zG_ÕùßJ¤·°#s6¦dR L„s
1 0 obj
<<
/Type /Catalog
/Pages 3 0 R
/Outlines 2 0 R
/PageMode /UseOutlines
>>
endobj
2 0 obj
<<
/Type /Outlines
/Count 6
/First 4194 0 R
/Last 6671 0 R
>>
endobj
3 0 obj
<<
/Type /Pages
/Count 6
/Kids [ 5 0 R 7 0 R 9 0 R 11 0 R 13 0 R 15 0 R ]
>>
endobj
4 0 obj
[/PDF /Text]
endobj
5 0 obj
<<
/Type /Page
/Parent 3 0 R
/Resources <<
/Font <<
/Fcpdf1 18 0 R
>>
/ProcSet 4 0 R >>
/MediaBox [0 0 595 842]
/CropBox [0 0 595 842]
/Rotate 0
/Contents 6 0 R
/Annots [ 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R 40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R 46 0 R 47 0 R 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 59 0 R 60 0 R 61 0 R 62 0 R 63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 72 0 R 73 0 R 74 0 R 75 0 R 76 0 R 77 0 R 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R 90 0 R 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R 102 0 R ]
>>
endobj
6 0 obj
<<
/Length 13485
/Filter [/FlateDecode]
>>
stream
+¯\þ1ק˜+õ¢ƒ­¸E¼¼eaO_q=,¤HÖT܃%N¯Ö¯˜_éœóT¸®?¥~ü«ùúJIŒºy±’õ¢œŸ…\ô _ËþÚ¦üÅ¢•Þ¿Š‹©ÿ`+(£§ãó¾é5mé‹=ãk
+J·•ÊoÁ­=¼ï_{
+ì9øn+ºàŠVH„žNÞ[PÌa.oâdßíôŠëUEÓi.Op-¡°¸â1‡P¿ÄÚúìíؽ•ÓLz7µ…:Qîl‡lìíd¿Lù®„ìüR-]U”§ºU£_ûœ¾R!]‡pc(Ñ×bÀåý`;飷g÷VþåÕ/vÀބ•^S`wi‡lèíe¿ÌŽ'f>’ہú¹b~­sQ­¼Àõ™¥ðZë3ãG¶‹èór<si}övìÞ¿蒋¿dï¢é–•:Šõ獻´7Ù¤·“ý0…dœÜ'xyÍù²"¿–íd^ê;±¿ÖpÈоحøþUL#®Y*„~ëݱ{+ÿâb«ç`ïõµ­†z+¾ w´S¶Ö»“ý0ëԳƩhª­«FÆ6f0B½§©hªI隸P'0ÂíÑÓÉþˆáPG}ÊUMù ,êfæi-õ,«£‘_P踾Ók_ÕÙìÅ7MÊEu6ÒNѽSâFÓv¸6—÷^¯*¶WˆÕašõ㛏A„ »3ÆóTߓ¬í ÞžÝ[ù×aLэ½—‰¡ÞŠÕ݀;Ú)z{Ù†áƒqQ¦×j°©_ÝhÀaYÑÑ_€ )t\ßFŽ­øeE¨:Þl bY1’_ˆÜ ÐéñÈç
+!œ~Î öÓ>yköÁp£ýàƒ#í Ïގ~®Êx®Yzب±pg;dco'û-`Òzp(>bõÛԊû+„Xb®:,YOÅöã?}ß?o}4áŠÊnÄ8• Ly«_¥XKe³Äúý ybé]CÞ½vZ™”[OÏç-|ëÀ1|±gUF¥ÛJï_äŠVH„žNÞ{ŸÉ¥ŒÕô È'PÍm:ù\ß[„å€ò©Ü`-ÏãSÓ /_Öi5¤†Ê«<Rn==Ÿ·ðm°²gƒœtù@È­¨õôòÞsÅ,âáûè)JƒTü)Ûk?fúØ£/K‡¤)ŽxvÒ B¥)Ϟ}_!]nÉSFԝòÞlT(­G_~FKÑsE‡â)`ßW<‚ÎÖ\´Ag?Ô6è´
+A=úò#耖A§17è@<ƒìûŠGÐi<KÄÜ&’NåtÌ(abiَJL¡T¾˜mzˆ­ ŒžŽÏ[ø®Gö\ڇt~çÁ­=¼·œL~͉p„©§2ô™_›A¢ É,e´¤@€në瘼ɳé‚^P$0D+„NÔ{rÙÛCý8{`ÚÌÖòäíaÛ­=rëéù¼…oSˆ=›²¤K(È­Áڃ—÷ (J,»ZÕOåýx0j:Ež0÷A…Z™”[OÏG (aí¬P„tX
+è¢$P°5pŽxV(„î(fÿnlÑ¿,ãÙ®öÝ(ñ—{7¶`_RFÏÙ¿,Ã*‚}AH—VA®höñò>…XHŸÊx¶
+Ï"‹U@!´‚2z:>­¢õÄs]±
+Ê 0ªIé˜Â?Râ½]ý)£§ãó¾Í°gó¤K?B®h…Dèéä}
+ñ }*7o@¡š§ Èô#T­ ŒžŽ@o€žð +~\Ù
+‰ÐÓÉ{/º+èVÅþ¦6Ôª!h¾¨¨&Y-µ<ô­-à´3B XÆJå2²½Ñ—ÞŽÝ[ùo-ÔEïê…&¥Žbýyã.í–½ì7g¥çÇò2îù¢‚ª•Wy7À”<9`j¼n€}éíؽ•?TCo*ê
+ ¸K;„eo'û½žÆAýFÓçT†7hêÁS€¿øˆÇVPNVyßYnހ=‹šúp…D«Åÿ ?‘Ôo4Ò§2¼„š¬Š¡BhåÝZ»¼ï,7o€žð «~¤q¥D›}G»¬ÉÇ.,·g[ÍQ­¢˜®‹]êä•Z)£gð± ËíÙ²g{î¤K« W´&»xyŸ€B¬¤Oåöl)T{î™VA…&ÚLìâùx¶è‰çºbàÊÖdc/ï='šÛ<Nñ˘qaÅÂù”½Mìœ+2çd<{3.ùHo´ò BØçxÌ~+TGã¦<M·ò8‡OE.ŽsEDæeGã|Œ<¨ö€ã\¡ò8àÃ1akðَ9^G_.ö4ÁÇÈe…=áè+Œ<ŽÆ½eŠèçê‚A¾(7ßYGGêuË77P~dæH=£Ÿ`¹ùNöl~•téuÉ­»ðòÞr5I¼,HŸÊÍwR¨æW)2½.š(™ð|
+xyo/öúɁºbêg´¦øuÅÕÎÌóÚMÔ5[;C \H!tsZÓÂ|¥Ðf”§ T
+lŠ5AcMPR~A.´GÏÕÀ$¶@˜h+„I¬I`Â/DJPèôx$Ÿ‘&Ȁ¶/‡C$†ÂË!å ƒ £Ñ
+Ê­§ç#x]Õ¼.•NB% ÀQæìOëéå}dNSTÇa_˜]lÊrî‘Ppf­ ŒžŽÌiR¡Ö“Ê6º
+EãÊÖ&{:y
+Ru­úrSˆƒ²¦,‡l„‚º…“ϳBáùÈP
+¡'”]\ÙÚ$bO'ï#sT±}_n
+;åLwf†1gºÙúìíØéL7_öÆûCê ³‹Éí½ìÌt+œØ>U@5ÎtCqÎt 0œéf;è³·c§3ÝT½¡8© 0äÎvÈÆÞNöG,ƎLìW5«´Ç&#<W3VÁƒ×_ )x®o#G¤À‘yèX…Rð”’¼ÏÀdF& Qñ
+äH„*èX…JÊ/ȅ<W“Œ4G"„IÇ*„‰¿ ”¤àõ¸÷UBö˜Žäj*š!HöV²“$jHL@b;éG—¬$OX*š Hï`§vԄ„{àTÆn ¨“ý`ÄXHü\Ñ=EƒePt1IlC;é—Ê&ÏT*ÚC`v»Ò F#ÀìœîڍÉt²?☍·w»ª÷€wï÷iüü«þbv†Ós}9à=„¼‹ðÿ#RðљO¯Ç30©·!ù‹x
+HïBÔÿPIùÅį̀çj`¢÷˜à]&ñ?1õz܋•vŽæÛÔ~ù`†tQ.£³x|]Ã\þÄ#Ð)üë:JGL“Bf™”[OÏç-|ÃkJù‹=ÛöOҝ±;”\Ñ
+‰ÐÓÉ{/VJLÖhªoó±wçTn
+mÓ±“PìǐB±[(ٚ8J;@t|ÞÂ
+¯WKDNíÕitQ{`+$DO'ïö šf£»2õ™™×>{ x²­˜™›>‹=ˆ¸(6]Z/ªÙH*![!@p¢>aû‰…†ï©¼Ê<aù³Ç6ÐžJbleôt|ÄöÓß­çÔ&@wâü¸N2¯™µ§“÷{PÍȧ2ôi‡º¶‡'H´'‹"è¶~Ž íº ÔI Ñ
+a‚õ {¨[æWk³Ì—Ö?S“ώE1
+i'}ôöìÔ.vL54»h0Ñ.2Ç°‹,“¼Y{z±0 ƒT9W@)ü¡Êíg
+ $D™Ôá`/1˜Fû/Ó DЀ &^^â{Øûá‘$£¥ ææ|QFÎèr¸Aæ“·ÇÒlÓéðgÌ+eä:>oá‹lSôD¶)è2Å\Ñ
+‰ÐÓÉû’ÑÒ§2rF!òI!²d›B!ä‚2ò
+›°Nål÷Ïqà×6wɉoØúÅVPÎvÿœœÌÆr²ûç80]¢A®ÑîŸcO'ï#PðKBÒ}y¶ûç8üƒÈü¬P¡`÷ϱ§ã#Pìvû\¶»çøUËl÷ÎívëÜüÀ'…//aÔWœ+§J ^oÕyH:è/6V%uu’Úƒœ­Ý†«,ªó`;e›lĪÔï;…!¸ä-S±Ø¨UôÆ;.¸p4°šÀ•}=/qÐ
+ôtNL¸·
+‘m±ã#bLf¿Hü\Ñæ²(¦º(ºÌ…I¬ŽöäfÂ:v
+ f±˜ÝNè,˜Ó*D¶ÉÍ)<8ÆÄ(ãLú
+&Jáýf^ÞÕ»Hz–*'钺ñ.›u%‹¾+ùhWÚ)ìfã]¥þ€wÙ}„{® fxÉ©7œ€à²»¬;PG_ÏK½Ëf"_Q™n+ùØWÚ)çf£ßg YºÌZ™ì<UÀ»l.­Stê]8ƒÇöÅåÔvìÞÊþau µB]¼ËæÒiE¶ÅÎO>â](˜:“Ü¥ÒJ¼Ëæi)ºx™Fûâ²h;v
+ ýÃêRhñ.›K Ù&7ƒý¤wA*ƒq&§ŠÍM˜0“Þ%w&’ú››0uõ.’œÞ«û²¨Þ…í”-ºY¡~ß»( t&§ŠÍ͚PozâBï’í¬ úz^â] {®v l !ãÕΜ$^웶ûÄýj‘ùº†K{»O܏¹Oܯÿ²K{…bçe´† sÉ'î ]ÚÛ}â¾H
+ÏÀ¤ y$QtÁÞ-íå>qŸJÊ/¢s9=W“,Ì%Ÿ¸/0éÒÞî÷EJPèôxÄó ‰A͹buS.Ìa€o@Q=¤‚€þê¦\@]=¤e ÷ì¦\PTÏÃvÊܔ‹P¿ïy†àoLÅê¦\¨7„಻ R_픋ˆÍr°S.T™„2žÝ” !ñb?“Xgþ‰«šàŘ]ˆl=”MF ü‚\‚;[‚<LF`ØÝéõŒd{¼Ë&#P~‘e¸gO˜PO$.)(4Š‹šàN™˜T¤0ñÊ/È%¸“& Lb»;kB@ …‰RÈ/¢
+ö¼‰G`Âd²É“œº$\©hŸ Ìcó … gý„a>ZÚI?Úݙúm‘Šöñ‘ÞÁnՏ—pGâ$e[ìžÒG¾\Ló$§.íV*ÚG‡¢á›DÑå£EÕØNúÁ _©hŸf·çèçJ€Aâ$e›ìÏ|«ä½_¸¼.ïñ¹&¶©yóS› ߐ˜€ ރ¿ Rð\­ÿ mzB(àXiá!O‹ü¥$¯Ç3þGA‘÷ø\%åÍâ&ñü¹‚çjý”
+·ìk^ý”ÍK~A)£ŸYO|±zú‹šÍ§ú~M&~oää²ù Ra’šèSý ‚ð˜D
+H[¾ª —˜üAÿû!»ú˜)»Í¨¤ÞžÝ[ùÃK°7Ïüuõ1“ÛHKÙècœìc\Êlg®L½Äd/ÑÅÇP5¶ƒ>z{v
+ ½zӇ€ºñ1“›(£lô1Nö{¯W>èR6.¦œ*?ÃŕĬ4¿÷u3K+ùØsgw¾vìÞÊÙ7ììR§Ù̾¯éÈm³{^;ÙF\
+¡Ù̪™†½½ì÷ÌÝrÎÛÿÎt‹=çœwõ3ٓÎI¾uöÌÞœþe²G iñ/dÍö՞vÞ þ(êM@û\A±ØÏEru/“=óœä[gÏL@ß2ÙCÏIZ} XKûjÏ=ï&â†{3ñõ¹OcÝÙ-Ó³l#nþ‚ñ4)x®&â†×
+pÊÂeqË/(7)x=ž‰¸Y¸<ÕPI‰ug·¦h`’x™¿`<M
+Þ]¤$<‚Û¹§³Á¬À|îî"%Hòm ]>é6XêUxèû$w ‹_?×,îÄ2¹óX¾r+²|]ø rYÜ©eæVd©™Ü¹e¼õ,ôVdÈ íY¬yw§'nE–‚ "Ný\³¸ÃËô^h~8ôæèà†`Êeq˜Ù›£g1{„1 Å2H{ƒÞÝ—é ŒðüöØ%ޜ+’KÄÙ7—‡ƒ¢š´ƒ~rI8 ®ö³/.g.Ec>ÁåßHo'û#Æ£8ösEr©7TœOuëo¤ô“K»Q`X±¸¤*Nê¡K¹‘öÈ1›pó0xbyëR%λKØ'—9¢±˜ÉåMHoÇN-&'—4‘£Ë™@Q-FÚ3sãm„PÀb&é*v—,AÅùL§.UBÚAw‰
+ +’K“ â ®À0i0º éídÆb¦n©ò\1»¥K\“(Ï4t —Ò¾r?“]¶uµÜ×ÈÞ¼ÛÔQT‹‘ö&›ôv²?c1‚Q?UÌn±’Šó™
+0|ælŸ¹ŸÉ.T*0¨ jèMÅA]wio²Io'û#ƒýŸj çŠÕ…ÞÜÊg»À[ÚAua7¨‹ .èæÆURŸ»[Ú![p·PÀb>„SÅê‚m*Îg*Àð™³ôWh+0¬.̦â¤.À;Û![p!ö#À䖻‘&úÚÜò/Î8ð*¯<°úp®¹ew XÃá–ý!í ÏގÝ[øG¸…Þçq:Šõ獻´G:Þz;ÙoÓÂÅaoaȹªí3O>ß[œc€ÙeIíô Œc÷þ¢ZëMÅA]wio²±·—ýæúÙßTnjès&ƒ‘!ÍÉ`$/ëd0²›ÙNúÉåBëz+xQôn¯¬ê2Lîl_ì­uì£ó¿ ~®À„0E›\ò»NS5´“þîréu½‰˜ÕEoÎù‚ºÎ ƒ»´/ö»Nö›ÀÌþ´氞+øÌ£=p†é¦Æb‚=rFè³·c÷Vþ´˜`êb1äÎödOžéd5?Wð™G{üŒˆ®ì4BŸ½;F,&ØChH]-Ü¥=Ùsh:ÙïMcïbûÊX0JÖ¿ VӋëë]H9Ù¨O—š‚u-ì¹ØS̄\ѺY·âå}
+±>•±L”¬G¡È4*„Ö`݉ç#Pàá¢'ž<èŠa€+[7ëH¼¼7WV†påó–ÒEEMH=fó+ÍáHH­¯C܎ÛõPl» §µ}•t×£·c÷VþY–»kïºMyRê(֟7îÒa³¬êٟ&Ðmø©bÁT+D[1õ ÑWúªÆvÐgoÇÎ3ËLúÑ{ÂL9¨Oô#äÎvÈ6ËD±‘ý0©ž]bqHñµ†«
+¨–Ê ¼)0e°6e Lª+k
+ é³·c÷VþP½¡8© 0äÎvÈÆÞNög€‘7‡Äû
+¾ ¯
+D×W ªI{£/½; ^ƒW…ÀÈ«D`ØaÙÛÉ~˜xÜs™òq½dÁakÇœ*¶ººµ~Í%
+ÛòZƒ±\EÛ,VÑó+ÌIÚAŸ½=»·ò/¶ôÅސz¹%©£X~îÒaÑÛËþ0uº¾¾Í
+ÄUMý(6um¸©MñYVtäÂ:®o#G=“DÚ˟¬,PT„¤"¢{§Ä#›¹q³ îÝ>W$»b- òªÍ¯YëýŒ’·kV­I]7sË]‰èìÂ5‹º™›í”m±k×Jýþfn…!H–nW‘ìúµè͓ª6·‚Í2©'³†­b³¼˜UlQ™„ƒ_ǖvŠµØ•ìG ‘#úÌÊõ.о†kÙ<8‘kÙ[—‰''ýÉ/ȅ<×·‘ƒËѤÀåjòÐmJÁ_PJRðz<“Y¿Þ»¤<­áŠvö·PP=FBN˜ä/ȅ<W“,J'Æ-&]Ö&LüÅ.ŸFw(æËÚXŒÐiò6Ë-ìÁJB",UHÀ„• ¶F[{>oáÛÂö\ì‹L䊀i²Qµ—÷ (4@š|HÍr {(Ôd—³$`¢Bh6šö|
+„=艐t%`WL“£½¼7ç0÷öU-q>¾Ð{y'§ëšâÜæ:¹¼Â$ú¯‹ÙÌ5Ô©Æâ5sÖ_P踾UŽúM ùK(”/Ð1("”+H!¿€”BÁëq¦pÜ9_TÜ(偅麦¼÷‡’eÜpÀÄ×W:`ÚèXëÜõA.¤à¹¾åsS•
+֚P6Ö$¿ ”¤àõxȚv:ly
+£Bä\œá<‰<±µ7“SEvf#ïT{¢òþ𑳝ô³7™µ³˜ÝÙKtÖ;[‰ÎRvo'O¼MuÈ6ïu
+d éX¸-ã«xQQÏƞÛàeYæz¡r^S»,;‹mi6®›¶7úìíÙ½•Ýu¿Ø{®ŽT©£øþEîl§°èíe˜í5e C_.±Ë¦¨ÔфŠÝJŠ [eôt|îŠÇúŠI鶒¢VH„žNޛEÅ
+Ó¢ªÇ©(r.C¡ò"¯[¤²kyqó¢P¬©ˆ'@2{Z>oá …Ðʂ®@®h…Dèéä}
+};@ûTAƒ‡\| ¶¾.ÐJÚ}éíØ)$4xôæëêúº€;Û),z{ÙïäÔr(ê”{(0¬[qQçò6•¡Tª—²¯q=r¾¶cïÎÒÖ jéýk­÷t&im”ÙÓñy ߢøž¿Ð3mÇ%  ‹Òû¸²¢§“÷ (¶âË¨QUïËuSR(Òq/'¡h%…­ ŒžŽ@Q·Êî+¡¨yt“Òm%‚­=¼÷ÎøoÇÇn²§xm¤ûrFëJ‡PË+…£ò¹•Ž+@…Ð:QÙ£§ãó¾õ¦¡Ã«h‹­ ‹Òû¸²u¥=¼÷î¨.Þg
+Mˋ½gU=ÆWÞ.ÊM¡¸¾ò"Êƺƒ&+±npIÒ
+Êèéø¼…oSˆ=›²¤K(È­=¼O,£á¤9Y4;•g{ škÓð(É
+šœÏGDÌ2 «»>y\^Ûõ¹ÙûcPÒ]Ÿ›½=†=¼,œ©æÈêì˳½8†º"C”Hìö BНͥ1".v}fse ÕÄ®OavG+bŸg¶×Å<ŸÓæoú8•³½øƒÇ8Áv퇜~Õ(ó@(ËGìA£záæ9sãJbl…DÑ^÷!tïۃhìÁbZÎöªê
+{ »= t³¹æCÄE1šK>¨&H
+³;¸ ÂD{ÁÇ à¹$Y&Ýí ?ZŽöª¹Óž[’ÓääeÞcùˆ=ÈÁA­'AAWI³;F-ö‚†ôÀòh¶Ç2Éó?•£½œº"?]¶AÛ#›@7š‹D\s-ÕIav‡LA˜Å^Éð¼ßMփå9_ö}‚k‹ee8¹ÃS"wm˜ÃóeàÃ2yiö€Õ^؃¬gwä $šì±ùO ¨²=BGžÿ©ì‘ùÔwË®o{¼Næ¶=._ÄEq2‡åSM؃€0» ÌdÊ„ºu"‡¶â^ÓÈþ:¦ì[¾Ç©¦ÈX3Ëê‰5¶Ã5j.Yj:æ»Qn 9eý¹BÇõmä؎ì6¡0¥#ùMx üþ%RÈ/(7(tz܄©ã (9IªBW#J¶Q¤‚ÐÆ{¦6Ô_€‹Pð\ßFÂ
+<&J!¿ Ü¤àõ¸™ø°|b` –ÛösM(¡Dh3ÂÇ>°E29å(”«ŸY°)¿ Rð\ß*G PքÜl“;€&”kH!¿€”BÁëqsI«
+ʆ$ً(¹!o– l-µÕÀ´!÷U~A.¤à¹¾U*I
+¤ùµÇ–üz¬°§éOl+¿ÍsÊú á
+×·‘c)áô¥ê|åÑÊ-Ÿ¿IÁ_PJPèô¸ýí”-IW5P²xå:+- ¿~¤(LåI®“I¸‚çú6r@I¡„‡À$Rð”’¼ÏÀ´„#5ʀrQS8^¦%¾Öê÷¨Ê&ù¹‚çj`ª—„bWB£P†x»åÑÊ&ù¥$¯Ç3/‚Bc½¨’4w‚ÀBaâ+Ã_P踚—ŽJ
+ñÄmd
+†M~[†Œ³™1;­²É̽Ëc†Ø´Ãy7›O?Ê¿¹â3¬ÿµ>ÿ(ÿ3ZaÇlH.Õz5Æ^‡,¹Ôk™ÏCìuК‹r³#ìõÛE—[1$3¸YÇø(šbý‚©^£ÚbÏm„1Ö‹/ŒqÈzK½GäÂ-·(7gŒß®¶Ü2Æe1ÃÄuh¼Wy|'nC¦˜œÞY㘠¯Øŕ9Ž
+ýN܆®¸Ô3»Ípgì’KefÆ £×\NìF¼Ùa½ZsY‡Ä€Ëtµä²
+•›{­ÇDÆ g3+¶Ž‰Õ g3UµŽ
+Õ ;vCæ$Òå—fH,Xíð ƒÊÍä·á Â¸î¯ùCƒÌûU’ɧߙß
+ÑêµÝg?ÿÌü™qôWf^Ì×:ŽÙ¡$/u½jD5µGI^êžÝ\òåÒ‡3Õ0.ÌqP0£Üœ=J«§™ž&lã˜h¦fflã¨h†Üܔm´ÉfºóÄ1‰céjÌGeŽ¥«1O3]V'†ÏÊqL,3Ï)ÊqT,CnÞÇì³IÛU’IÊÔû7.¬qP$£Üœ5Ž dö|±s.ŽÉ›Ö‹­sqTê¹ycÇLÉL˜ÅÁqLafTÇôìNôÔã&Æ1™c˜ç©‡M¨V£òÆ0ÍÓ3Ãìéê;ýñ™,¿µÌ4…«ïôçŽñ§Ü¬güÖ1Þ{¥÷ݬǤ±ALá¥+$it Ós c03Žil¶pÝÛ¦ŠZÖ;nCaÌÑ8Æ4fa¬»öT±Q»ˆcÏm(ŒÛff&Ò =D€qËÖYŠ cÏm,Œ“í¤1ËZãd¿0£VµƎÛ¹Eû8šX` fÌÆl_³Q‘àŽ/uÏmÌÎÀíâȅ4hQ+\œ¹F­i‘›‹aÒ }Dõâ£3ŒcBÁ¢Ð9¯1
+‰É˝ê?˜cùYFþ„Ü*¯Ù˜1™õªûL[[PêT3< ³^µ1ßÐym‰jcò‚ȬWmÌFŠÚ8«Síã<“Bïóõ2ëU»º¹ïÿÖéý_
+endstream
+endobj
+7 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Resources <<
+/Font <<
+/Fcpdf1 18 0 R
+>>
+/ProcSet 4 0 R >>
+/MediaBox [0 0 595 842]
+/CropBox [0 0 595 842]
+/Rotate 0
+/Contents 8 0 R
+/Annots [ 103 0 R 104 0 R 105 0 R 106 0 R 107 0 R 108 0 R 109 0 R 110 0 R 111 0 R 112 0 R 113 0 R 114 0 R 115 0 R 116 0 R 117 0 R 118 0 R 119 0 R 120 0 R 121 0 R 122 0 R 123 0 R 124 0 R 125 0 R 126 0 R 127 0 R 128 0 R 129 0 R 130 0 R 131 0 R 132 0 R 133 0 R 134 0 R 135 0 R 136 0 R 137 0 R 138 0 R 139 0 R 140 0 R 141 0 R 142 0 R 143 0 R 144 0 R 145 0 R 146 0 R 147 0 R 148 0 R 149 0 R 150 0 R 151 0 R 152 0 R 153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R 163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R 170 0 R 171 0 R 172 0 R 173 0 R 174 0 R 175 0 R 176 0 R 177 0 R 178 0 R 179 0 R 180 0 R 181 0 R 182 0 R 183 0 R 184 0 R 185 0 R 186 0 R 187 0 R 188 0 R 189 0 R 190 0 R 191 0 R 192 0 R 193 0 R 194 0 R 195 0 R 196 0 R 197 0 R 198 0 R 199 0 R 200 0 R 201 0 R 202 0 R 203 0 R 204 0 R 205 0 R 206 0 R 207 0 R 208 0 R 209 0 R 210 0 R 211 0 R 212 0 R 213 0 R 214 0 R 215 0 R 216 0 R 217 0 R 218 0 R 219 0 R 220 0 R 221 0 R 222 0 R 223 0 R 224 0 R 225 0 R 226 0 R 227 0 R 228 0 R 229 0 R 230 0 R 231 0 R 232 0 R ]
+>>
+endobj
+8 0 obj
+<<
+/Length 33536
+/Filter [/FlateDecode]
+>>
+stream
+ ékƒ»Ÿ»XÆò¤AµÂT¾ŽÐZPÉ(úr¥kP>lüw€+‡pDz¨¤ƒUÕ»0l€”l‰%8öø™êò™:SÉR?÷ÐÝ9™ªËµa™ÈÌýÓgO?wY;t¸C§Ê®PR² öÚðÍH YWë1à¼ü×æãPIw°ü.=ý¼ì‰—Oø µ)Rœ™Ì\žÔY^Äå\ˆ—ÑÚÜþ9Ù°ï«u Uu<5ëëˆò©3fw@ªHk®d®UÉ*Yü!’Aò
+*Ò®ÈßSۍŸ§Ð)BV4þ‘ËC¯ a°EïB¢üöåRQà¼ö:FŒŒ7'9&wOÍ=ÔöA‡±Ê½yé*P[ÛRí@g«ó@íCÑÑعׅÃjÝkAÎ{Àm‡jîk§¨$}ûJ¬‚ܨ3“¯@7êÌw@΀€ÞM‹é÷ÌdÈ Ý–„aN;€­ê€ØÕQŽ:ñÏç‰ä¾7¨®š•jø*ë˜ªj+ 5LuìVÒíôÉF€Ë'GÜ&ê
+òó8 ™ªƒ¹kÃA’)¤Ñ«$ÊǪgÎ; .=jKŒC
+‘[æé:áç’:]w€Ìu ‡Dó?ãíh$ÄP~xȸ#´
+ªƒú俾þWãPIŸ2kPŒ
+ÿ|‹YJĺföÂÖõpDz._
+1Àìü…λ¯=&W;ì¹mÕ(dڏ2¯F‹(ubÉ´¢!
+;þډ sª¦‰‡­ÈQm6>`¦¿¦BTà’¹vÔíì±ÑMÝÆ~¦¶²­?hه­W!ªÔ½S­7DÔ0Ûa9©sÁ°ãbÇpkóf3òB “[?íEì3ª6v²¯8 pðpìð}Y‡yՉý¼šG*”ÔÝ+1`#vIäá·FÖ¹ÍsyªÄIËÿ8—ˆCŠ¤OÌ}¸’—¬#Àå÷<4O×½ÆV%ó¾êÿÂAF9ò´[mëvÐ
+èç‘7ä#pà¸ÊT¸À抑uñ]ŽÒ•“€Xv«VëMœºÏ¥t
+ð5lüW Ó~Ã8dÚ Bƒµ÷‰23`§­üù PMvªX¾b]Í æˆi'/$îô_œwÀF#ãP×ñu +¶¤‹ôóÄ^¦àòXÏÂ`ŌÏå•,¾/?'Ñ«°’;œ""ÖLCƒ|`/‡ÉlÕ4O |"3‘Å1ÉV±hqV¼³ðyOkE*¿Y]2ìG€ËÖÒ'&‹ãê(²–ß -8ï€\×Ó»qØ3­Úàƒk£‘™§ŒÔ(å°Ó 2V{\»*F1ªÃÍ46*Ã:Ûb¡žÌÝ¥~¼äÙ}‚ÙºëJf_UVWø]%#O#p°×Í{ö¢K³’<äX^ 3Év$û¢Ày”àŒC%1Ÿ€¬Øc­?ðϹSŽÀIÀÎ-ðŽ §®•÷>±¸Nʇø,NAÖjÑ>²BF&1¬$êÛç/@fo
+ kbOgá©Ã¥MI±ôè£ œ÷¶Ì$è4ð¤6ò[?Uû›J?õ\€j°33¤¹®tx3ƹtØmŠa¨S£Í¦Ð•sdο"Këã%öƎÐJ³Ëƒé*?qWú¼¡=HZž¾µq7*òʟiâpþ@7ùßöwþïè󖎭fÓñô5(²~Êú‰±³J´~`¯š=4?0½¨§nç뺡n±å;ؙÌ[tvo¸ºÎ‚#S½#½“Ø}%¬pöƒu¨‰Ü“)&¡xe”°‘ ú¼¥·j¥t $¥p®Ô†­2ÕËcæ´ö¾pÈH™i,IØEMTµú•Âv!ò¶„)¶#˜-™>oi¸÷µôNÈZÓÁT¢ßê˜îi^‰Ðæ­NN…V¬ò—À'U7·ŽÎ…0§Öö×Y5X²†j6ë&‡ Ê¤ü–é:Rqˆ$%ë'NØ~c¬vÙ0I½ûÎ~o
+]¶¶•©aoۜ\¨m„MGÛ"í4‹éöi'—JÛlõ4×sĶ5Ûh§Û6¥§2ã¿dxþè¶g¾m*áÄØû]èœ8×m[…ÔM­ü¼í‚€ËS…ºmqtS-dÔ5ŽðG•^þ; Ó‘Ç@²7_­Ž‚ºñ÷[ÔÏxê¢ÆÉY%}æ 2b<¦ÜS ³×nRgÂ
+`Y
+2zb—‹<ùŸ&TgÉ(_v©n"Ô-2PN‚*«­’ͶNœw@ZChj vâPlœՕ—ç#ªÀ[t¬Ìø4ü¨ºÆbÍ9ÚëĺVOK%CÝd6_Ç*´wÍÜ©X8¾‰NéqŸàÚd'0\g´:ÌT`«$¼ÆÐٱWÀÆ:­‡£Ÿä/4ŒLÇ&?°g:m>¹3@&µÓ"w…XgfXkÂ,^¿ ¯±î€ŒPƒÍ>Èpu.‘IZoӗû–Ÿ²ÎX؃V›pAîD‘fóƒOÔF€7X
+é+ÐÁ\ý˜T°Ë)˜T< ï¨pµô[Œƒª¬JU†®ÔޞiÊ¥)g O¢a¼=¯ü*å˜Â”â
+íz¼ԁFÙÌòJS¥ªTô¨·`PV
+k¦jÙÍÑáÓçGá9ð'2‘)b²Ôm°£ECÝeW'ŒžÎ÷¾?
+,Eþ,tlrސ¹.
+™Q5ûC2í
+Å]€Hpºê–Iå°~Ntž’?‚iûXx¸ÉåÆû`q$ÙôÎäF
+I·ú`âIþHgÕä ÒÕeKŠý¦×ÖÓn3ZëýFc\›{%±¾eÒ4ÁÖ>Tâë%ú.ÒªÎk…öÎ74FÖµDá]íÑdIØvb²á)Œ<{#}‚¦ÁW׏µI <MX{&wb'®£ýÂHײž\u¬cûè°lK0´.­csüR/N*È%½Áû¾y2Z;ÀLÇ*´_ÆpéZ4Meá²ÇXÉÿ•(—Èó͇64ê
+ÑøŽÞ¨dÃBûO²‘ÛÑTOܤÂÁ\ý0@ÎÓ^Ü,ÞLÂ2Ô¾/ôy¥ñ1’•†(Œø:q.Ìk ©,BœªÊêt†_ãÙa¯Je1õâSx)ÛÑT!|Èú©…a§¿ä=le™¦²p.UÚ×Õ0¤€©#
+æ²ž+} \–¨Pç,ôÏǐWƒ¾’èœ4AtÌLáà
+bbㄭ[H;z
+l!
+Ï}‹ÃøÜ·c‘zç%ÏÄûÎËփRppÐ(pÞ¬
+d‰’¢¹ñ CpmI¡•‡:x±>:
+r»Ã÷"Œt Q×}
+ȞvÖÌ?ÓP±ú³Œ™óÐ6
+…‘zÑN
+@vLµrfd™ì$NrיÅ;n ·Q<"H9K
+¡I¸æ8oºj£_¤“SbxÞv>ZÊê¡H™Ë“¿’‰ë?Õ[KÓùbÒÏ{€«ÃÑ N²6r’J锹4RWÿè‚ÿg@<;wä]y™äq4ì"v  ëYÈÚÏu?0Ü t‡wFê¾@¤[Ÿ@CŠÜß8bß¿¸(•$/<õMÎ`ç"à<,¿‘^® *5˜îg€Û蝪¨ଠ®SÙPy
+)€ ¾ÔË (}RO‡& qV‡ÈWŠÕðQ‚!â‚c†; „̃
+îÄ:[ú6Æ*™|èF)<˜Ã ¼J7J=NbÚ(õrbn£@7JAv£¥‡Q:\]7J1cu£ÔH¥è üoTÈgh_ð ãßÀ `ïF©‘ÒƒôçÖåF€ԍRGz°’:J°Aù3 £èàûÕ2ÆÄÅÕF©xµÚ ¼°«6ìꉙH¼[ yꚀóC^0׉˫#±¥Ê÷•ÇJÂ*dח‰“¥¹Ú ñw5ùï€Ü5Hœ`Ê_ü^M  8?Ħ-gXG–8•/CƒÄ%f²SÌÄa·X× Cì É]ƒÄ=¦üÅ#Öš€óCœdÚq“ɞ±®üœâ,³
+Ù]fâ¸ibY“ÿ
+ð`4<?½N  òG÷…ā֑nlÐœâF³
+ïY“ÿ
+°CMq©)ñ¢5&àüǚ¶@\kâT>Ä©|î$.6'MFAüjMþ; 7
+âlSþâ_kMÀù!.7m8Ý:r4
+åG£ N9­PÜr*Ž8æZƒÄ×ä¿z£ :ãŸ&£0燸é´â¨32OFaÎq×Y…y0
+V…ä#=Y• aƒU‰q´*•ž¬
+Vø·£Å²(RטÉïÂãgd£s]©eGHàþirTz‹^õ
+´ã
+93g><љ/ïÁHÇ® ò@'§ "p@«+í^ͼ¡ßåŠÈ^ró2ꃯ»N$šhô.áâŠT5¸¬ öM’hÕ.†¤ ‘SdÑF^¢0Ã8åËæéà+jÈ×'_‘HgI¾(‹ós!A¿‡Ï’yŠ>8xZÈoKr*ÀyêiÊ¡ð¥å¯$×ÿý¡€ˆ|þH‘5rs¦RèîASÙ°@¸S£:.…Baõ 4Òñe_ê.¡KÂàgä ls…. }°Pt«mÛi]ñMÙâ6íÜnöAKî¥Ì5WE®î¶ÑTvž“ÚعA6
+ÙÝ%™äGî7Ë>7,’dhº:%%™þ\ôL—§
+«Ø9‰îÍAo^v—GŠšÄ‹:"•G"ú¹$¬$YÚ%7æFLé¨_r€”CIVhdéœw²‡Æ!»,©×›Éˆ•If*¢¦úPÿ-óGt† æ´’´å¢Àù°ïƁrbPrò
+‚;))8Ç&@x|z9Kù+€´×ðú±„øòød›£´·Lò°•<á)밟Gù%”CBª²@¤ça‘1ªaê.Û
+IHǠ–º¸|Þ(Ï92ªéI>>5s”ýäî¥|pù ÕuNY®‹džÁÊTÄåú€G †'ix§È-€´ë”Ä}ÝÈoJ8‹©ç=Ç­q(´:¯$=˲®§6b†Àå‘A¹%á™除c–BIHZâøò±eš'²XúÄùä[âúàÍ
+L8¥‰´W œ¸ž£Ê:yµÉ»8 ÄýôRLâRˆä¤³ø\D&-߬…*§|RXs¡DkÁØ)ʶ;%yùéñpç=rÇa§¸eDIÓÞs§¢p¼K&ÿàòx’˜1÷Jî¼Ύ–ïȍ%G…’âlƒFÞˆX~²g?UNhĊK¬º¸ÄY %Á˜ÞØc×câØÀ“n“ÌOÀMó¶Ã#p
+à À'!rÂޓr™Z€äåªßof@J/^è~zá QÉàÕUÑ\žæ„Õ*7(ó;"HøÅ%EÊ7@Ê{z åg ¥äŒœº‘Þ0‰³âi‚óW€"ÞI Ã–c¥äî%šG9ÚÓ5FFùBòsy g¸~T¨Oçˆ8ú°N#å5ø­žó ÐNˆø;ÊôKÁəÏÎ+‰<¸"P¤A p
+ûb"Jn—ñÒÝ[ùHý‘7
+Nƒ~…þFz¥¤’œìœg2!;w°³Hd’¾X E~¨L‚j˜)…¼‘%»®Qä¬âyŒcם÷~ЙÌÀ›‰¼î Ãð5ÔÃÞü
+ J>ËÄG¦G¡=»ÑpMg
+(ŠÎÓï·$W¨bKtgÇÊ
+p؋ZH̀®´À"¸;µ>“=§¶b̍¬ˆµÛSc­t/sG?¨ð3¾ì“ºðñ]5²îëýL§9ÁSF?¨zdõúü ê
+2|½WpbˆƒŸ¥ìŽ{¿«ëÉñ}Y-â<€_”­†N¸lH7AÕAVEåah"ÄÌ®ÅÒÊúVÏHñ‡wa-Æ×b/A¿ÿþê¯Q¢ûµmü$Œ”R,¦áì\gçr™òà_$룞Ý`£GbÛNrÚk>뢎_z°ê Hœà¹[º¢ŽôXÅu;»ió÷ð`bpô¿p˜5vüD̆2×Oë3žy’:<¹ ª÷؃>öv&ãBÍÑE™Ÿ®îi|̓¯6:J4ӓ³¯a1ö2Z=УSl±£n<\5G©»¼+ô·Òm
+š&חÜ7}…ÿ|WEÑÀ;¯þ
+êdD !¹|L“ã 
+H¬)—Èù¶¹Òpx¡w˜< ¼´^Μ[ëX¥[çWZA© €±GF®ý(u¼W†<¶ÍY`v¬m¹ï|×6‡èOµ%VþÁIáz€,•É³R@ó%fÚ]tQ åyðìÄ«yRW07Õºæ '=9½¯„QhÃx¹°økʅ¹n“‹Ö'YÜ´í:yºÕþÅýTýÈëe¡É+˜›åªæ:ŽÿÆu;hN*”Ø]5¹@µ×ÕXžfämAܵÜW…¥èژ2Y³|¿’R`emoxÈoäiv_ÒXB<øã…éy®„æç(ë÷<ô™ºù«4V+ûÞɒ8VnÀÞ`µÈ_VJk4¯øqP\£\pPgŠ+ôYªC›A¥qØã–T}¹Î°{…GJ.AËêø¥´×'éÄ$Œ¬,Y‹]ÐÕ¿/°>#«ÖŠB÷~è<©]ÑW‰FŸÜR£z€ SO¹ÞŒ†+‡2p!ÕÖ?)p¼£x[xl ™í½âŒ¬^X‰ýп/ø#+j"múªˆÖ‚«'uÀ"ï!âNJ5œFg΂M>ÙØhd0s™ilþ‘ÂLÿz‰;8L;Y–ìd‘¤n8¥ ù9
+žÒk.Ñ÷çÑ&®rz!†ÎsXâ—y½fu<s2|­}]èpde¬Ã®/Ðd–“·ºÐx‡•;‡¢)„^Ñ¡ÄL·¥ÀŠ…0…Ý:”ô::TALV î²—XÑ]&^¯ԑ™%Døy0¦‡rĕõ¡WôŸ‘•±Æmy2HÈe(oB¤x6¡ ^0sLCíÁ}©ÑKúO‘3bë?,é?Ž³è·þ#^›"o­Q¹U(ƒªKúÏÈëe¼bµõÌQÏ™ý¸úzE‡Yñqt?#
+vÒY«è=òiF¯Xb /ö­zE+)o'e‘âôyÅӅ!¡OпÒ|¹£É,Î2aô3SÔ±zä.np¹ðY7»›Ž`¤KèiÒR”ÖQktßäu=ûJëê¨jƒ€žøs¦Ü/™µ‘S8S"s£W½¯¨GìcÉN£‘óQ¢BHÝ:Ä3­¥éHJ%vUÖÙ=–Xµ‘WǼv.º?«MÁ«°t?vjì³ñžÉB¶ñÎô’ñ>°"ÖCÒ%¥ =ßIÍ*ž‚àsٍ›æ”À^æÂÉσé=Yý%v¼}ð»f—S×åØ£Gµ=E~:ÛV`Iו$íë
+€d¢¾0ºqÔ™Zñðrß>Nc
+,ùú#¯ÆœÞ§˜} u0àQm¯WꏳF\âíÞ¨ke¼U;?A)¡§ôºÕÞÇÌkø-‰o €I•–0õ›OÇfaO½b®Q¦'‡ Rz‹Z£s<âkñ=rÔÊ[N-Ò/ŽøTß¿Vï lÝ#
+Àˉg«M'KƑג¦\&צ'±4–ûKŸBÔ΃\Ÿº’Ü«J¼ŽŠÜDä_¶›£
+,ø”GœÌòØđ¿‘——1G6ïøVŒ8ç ©ÍæW^éÅøLãIò-òî]‡à-CxVv{ÓoçD†,ø­!;Ì]C6<—˜û0Ñú%ÓæºÈKûnŠy³,tSÒE–|¹ž}á,[ÒÜŠÈýgÁỼ álÃç>HŠdÃ@$m*åk)òDp¼á+zôá1<µ
+$Kš7zA“ºOC4Ո[p“õ*‚¤ÂRdu›¯}aì´¾€~éé
+›f¶Þ¸"¸H a­3
+âºyC¦`69ÈÓ\öùè2—-ì³À{¢{qÙøñO³ÞuuÓA·!+»vŽK§v}/ÐÍôíéý·‰Y×JÚcÙåËÖmr4°dÙÚ^AP¯7÷ËV,[…×’¦\—­¦'¹³dùC0å'Ÿ;¦&Fº6ãœëm+&¸ÖñYÚñõ,^%
+yë®Áb"°Cð’Ën»!ìÝÅLïûS³;1coÄcÒ0l’Þƒ-q‡LŠZ³lZWdéÞZoßN«˜žÏîÎ| ¥oÞOHäó <þ‚+°XÝ=îy3þ KAÏìè®mH=2iîÙe>ÖÃsö¥ð½¢+€Žˆ§{åöÙé4\éCòž%OΙ6íF؂‘‰tu-r.<÷Ì_Xý·IòçËe–¼N2{ݐYvtÏû‚ëÒ7šr`ÐÃU…’©JbæÓD«ë0òÿô0ßskÙЭ¬è³8=0hð°"‰z½$'¢<F>v=6 ØTúSW¼½‡nAk}xÁ
+ ¢-ùÚZõ(Ê
+ Ÿ}Ñ;­4Š
+ˇ|²œe¬Ò‰i/‘Q”·Ré‡*ZÄEõëá\%ïŸf‚÷oàî›ÄébÆ?j‡áPL¡£ø>þÒa«#¯ÓÃÊÁaë“ôO;Â3dÅÁ©0ÃÁiË(²Ð*$3æûœº9J*à¿OœÝÆç>ELʹëwB\é@W̌ΈvM0ˆ…“–2]ÿ ^;Þë«ÖŸ2֍ïá֘mvàò
+ üÒ#`‘ªÿRÕþ§ÿ××ðx>¢5U \§6cmänÚ«>¨âÀ£ÙñL-9¯œx½ Xqü¢GE’º§îð0&q<Ûh±þê‚b6Y¾#.‡^”S¬.
+ǐÇK²ù¦ë·Ž\uº?ôŜýÁ#@ò©<¯ôZ¶G92hÙ5S+Ò@²WJ>¦OVcUaðüamC'˜¶<óÏÛ¸2w_9ïÐނ—E+jy½>äÔE·Zt໽ÊešÄÚN¡y-òÿø2g«ö6…>ɀÓAFÿ¨‹‡‰~l–%µÌžÉòS·ƒÞq”åF
+ÜäÂ
+¾!.PðE.¤mo_o¯‹Û0|O{£>lryfÅ|';¿ ¨ˆ±7—Û’
+;/¯ZØPm
+^綸!ñ¨àÖ4D5`EŸtV½£HÖÅõ`@Zs1’ç ^UjÛn¯Wr8[ŠY×£8Dï–gù)Àóë€d³žŒ½(lMà…,ù_Ôȟ&ÈÙÞö„ç÷/_„o9Ç<5käyiÎX¬Ÿv¤™uý^{6úÔ¬Ì֊}0…dk4œÒxƒœ_;9….´ÿëyó’}—·æÕߟ§ Q\Wõ&®¬'Q]«¥RëӘžÒLУqï–yI;]cDؐ¼÷!­4úɑˆ¼ß¡ßBTYÐ*ïTažʚéGßbdµTj}¿H¿bB÷-<Òù6$¥•F?ZKq(´æe@µc^Žù]Ñ
+ä8‘<=<ŒÔµ[ü„~ӛ@4‰Võ-†G!±ü&h°p¹ÌɗÊ`¼Q-¯(”—ߪ¿_}Ó¤ìZÿ1Dôÿã÷‹äˆþCN6•ÜjóNAôìkS(´I[ÜyuÌëʔ&¤-ؾŗgDZ
+7@¾›ìðnñw
+p6 üuHáì‡ü¿e:ÌG)`¼ÛsúY-ÍÛ×ìðF™
+á,=ƒ' oõ'f“‚¨Öžµ-ügTÈïúàŠZ¯2å ñšgào*Üx𻺬á±æSá ‰>ÜЅ~æ
+=ƒƒ4ÿ…a·¯P߸S†ÿп
+g)9Ôómõ&Jwª%#½ð«|™úþÐZå¯"‘”äýþø/UažYa}¡‘é*ñ ëhyb“)S…þU8KÉ¡SŎÌçEU±Ç/¿5¾L™*ô¯"‘”ä}¤
+ÍØ/w¥
+!›±±¿«ˆR|jÄ3m™ÌB»^XÇ?^Á½ðŽÁ`T.˜| -"ìzb‘5'Á.íïÂ_JÕ}·ú±Œá瞩´§ûòƝÉï«]þ®²IéQö%Šén6
+÷9T;ÝPR—N9J7í´_H-Êaªõ»“wL›†`xK§"¥›Žì&·p˜Ú±dºêÒαɿIúO8AÝڄ"d›®ìïÂ_Kյ骮ç¸Hi'ýC¸;ë?R»þ]dÓ҃ìãGûÖ
+wZèMÀù!»ø?à O·€2}ÓmB*ÍзI€&à{`ßèïÀ$~ ÓGãÜÓ¾
+(’6ç`AþhL/ÀTíƒ6Õja2¬I#}­ÒÍ4ÂFà-ø ‰?sOö“Ö¦€ñ$²¾£O¥ñJ…>&<ҞöÑïèÆo¦§ú4%EêÂ֔‘>•6Ñ.4ÿwtã7ÓS}O–;ñ@øG  OMÙL¢Ä‹üJ'¹þu¡…ß;Zù=o
+€i‡5Ò&Ú[Úіê†~ïhå÷¤)˜6û¯2ДÃûôžV-Ï´ò{G¯ø*̪}•6ÑÞÒªå™V~ïè_wÖ]BÞù u O£±0 w´'Ì[ÚøÍôTß³±‚/mMéÓhm¦ýAÛ¿·´‰>Ñs} ¾ÊFïY½&Ú´†3ÍîhÖò;ºñ›é©¾_E›2Ò¦5m¦EËïè&úDÏõ=Yev~Ôó5§u¤J Ö`{ôè˜^€©Ú'mJ|ŽÑÚ4§MÀ € …Xa½º&ÌÀ\í“G+;ì¸"…ÁO@]Ù'Z-þ `›  LßÊtE›
+h^HÇ ïŽé˜ª}¶‘ çBê®+ò>dݟÑ%Ä´† É?>Dz+¤ØñLE'Æ}Wñ…æߟSùgfßӄ®
+R5à Ÿ’¤j`(»B
+SˆÒª©øB«ÆòÏzýá5‰€“œ&Pûc9hAñ8œ<Êt„é{À˜®h“½ß7]Þ^²Ò\eúP¦,®\·qgמôR²f•3mHã¶î* I³GM~¢Õπyx6‘í$M£©Ú iƒKÌôí0¯¦©¼iGÅkʐêg`‰v2Ç!vڑ’M; ˜6¤ÄL/юðê´Ã•wÚñLZý ,ÑßbòYŽê”öôF±žPt–#µ±ü#Q
+Ì3ªE.À
+¬cêI‡Ñ5aŒ¿Ô/Ó®$(`—#´ÈXà'S^æ(ÓêÍóeò¨k̪ŸÎ29 jý'¹iÎ7@»‹¹ úò²þ£Õ[g0y´»Xõ3°¤ÿlyŒ¤C†ù<öŸ}Œ¥³"`Eÿ^]ÿÙÇx:“Ǻ‹V?K.˜øéô8Óá±Ú]¬ÈXДWë?Çtnlòhw±êg`ÉLŒW)ôåŒÖ}ÐÞ¢%fzAçV­ïHÝ­ï¨0ÚU´ò‰^yB{c?ÇïsË‘Rç…Ïš9¾ e³µ‰`3úiBM|Vlï冏íîåNíå/tOI~¼³7I„ÜÆSÑ ‡SÒrèñY·‚.Ó¼e€ù¬ÌYáRfm]¦©ËD2/ pAV.£eÔv#LÆy?žfD
+X¡Ÿ}šà[õªŽ °O³ûy
+{V$·í‹îÁîµd·È»y§¹Vä‘<<I5yž‘š<tÕs‘ °Dñl·´¸ÃÛ
+ZÛoi‘ °b&¼Ú"Zªo‹h•Çö[Zý ,YF‹¿¶éGœ¼]΅4†Y‘ °D?û ¤Õ7ý¨<Mû 4ñx¶çqc÷‘YӚª´m·ÜØwÆò+D1ÍHÕÖJÅ6[nì6cù‡[
+ñTq¯—+¥ΠŸ5š
+»utmsÒnmz¹ Rê¼ðyÖVya&w¼P{ÍÀـƒì¾ÏõÓ 0Wû M»–¾Mp6@¼Ç×64ágÀ˜^€¹ÚG'~mu闷¯²;ñÌuºÅ^{oøÀS:è[@˜¾”é‚6ՕŸ[×&š€ÚKÝÂô= LŸ„ñê3ˆvŽ·3]î>ë?㏄úþ¨¦'x%…/*ù–:ùçü¿Ã˜¨+æ¾°°ê0†O¾iæÞà 9ê€ZÂ$¾PCÝ\Fü›’h'‘aSú›M^Ô~¡µ(‡©ÖïNOM4¸ÛGš”:„®%T
+-üÞÑÊïySœ§×_m¢½¥÷¯ž¿ÐÂï­üž4Ç%¬­ZGš^mŠ<±ÿNW‰èy֙V~ïhå÷¼)õƒ—-´¦m¢½¥uÍ2ÓÊï­üžFT«’jgë=gÂWÛ}ø’֍阪}tG˜Ÿðnm³&àp_±š¨?Ó 0Uûȉ’¿Â~ qœwÔ&ïêvìp[µ …NʽßÑßKàCÀÃJ~“7$†ÜþÎüµôXÝw«¿î‡|üÔÒ;Î|w!¿?´vý»
+ª»À£6¶N¼[ñM!UñLQÂYKöõ|[½Ò ))¾¦
+þ£BÖh;Ö]¯m:m‡¯#¦ÏN4ÄÛw¢ç°õÚfà¼T=Ä¡)ø+ÉõwÚ6 –ˆÙEµD\“¶8omRT[© þ£BÖh»N$µg½fàìŸ}ÓvúÚcnÚf²Ó6ç-Àêª<áßHÔßiÛj€X"f—ÕquLvÚf༴IYm¥6˜ø
+Ñv›óÐ&µ•ªâ?*d¶±
+&þ£BÖh;RÜák:m‡¯’óg'Zª2w¢ƒì´ÍÀy ¨zˆƒ*Oø+ÉõwÚ6 –ˆÙEµD\“¶8omRT[© þ£BÖh;}Å4ØmÎpGÛ¹Wr˝Ýf²Ó6ç-Àêª<áßȘ»m5@,³Ëj‰¸:&;m3pÞÚ¤¬¶RLüG…¬Ñv!—^Û œ=w÷ىŽ¶s²Ó6ç- ê!ª<áßHÔßiÛR ¨%bvE-WÇd§í"A W@›TÔVrƒ…ÿ¨5Ú>¾üÑïÜ8{`wm玃½í܅ì´ÍÀy ¨zˆƒ*Oø7õwÚ6 –ˆÙj‰¸:&;m3pÞÚ¤Cm¥6˜ø
+Y¢m‡ 1½ÝàìÚν’pc«èB6m pÞ¤å ÊSþ,{o·›@
+ÿQ!´Ýמ!k¬û(ìÜ'€>:ÿ#@%ÎRq/¸n:2ÐFـƒîîŸ?¾
+òLÛµJçzm=”µÇÔWŽ ™N4%EÛ
+˜rT=Â_•'õ7m ¤–H
+¨%vløLÛ
+˜r¨IÂ_<*䙶óWézîkN1ûVy®“R×)ÚVÀ”û êþª<©¿i{(jG-(f‰ˆMÛ
+òHÛtA"tڞ€@ØÚÀBÒ­£MàÉÚ6@•û# êQþ¢<­ß´=T^-ØÍ;!MÛ¨r¤Ilú¬Á½BžiÛ}m]Ï}ÍÉR\›%*™¶Ö:R´­€)÷' ©‡ø«ò¤þ¦í x>ßuöâÌ;!›¶0åþP“„¿6xTÈ3m#,¾·Û@/ºÐV%7×ìvGŠ¶0åþ¨z„¿*OêoÚ~¢0Ǿ€Z"adžϴ­€)÷@šÄ¦ÏÜ+䙶Ã×áR¯í €Ý”ºø
+ŠŠÖHѶ¦ÜŸUðWåIýMÛ#@i—ÔQh–ˆØ Ù´­€)÷€š$ü[ƒ{…<ÓvâÛñMÛ#pØr7°âWI{/š’¢mL¹?ªá¯Ê“ú›¶G€J]gG{vløLÛ
+˜r¨IÂ_<*䙶óWNƒÝ
+,$³Û[GèHÖ¶ªÜQòåiý¦í  ò¥ëìÇn–ˆØ iÚ6@•û M*]gžòLÛu}³÷v{H–Ú,A©QšÝîHѶ¦ÜŸ€¦â¯Ê“ú›¶G€®è©%’j‰ˆMÛ
+±ã$V¦9h"jZƒ;D›ÅHßlÔ1+f‘Þ5‘ÇŒœ¢Ðu™8Z4™‡µ[swܬ¨Mí„Îb'lâȽØd2€“mtŸ©8ºÏÌÉ<ú®ÁÉ;îÖ€´fs³bVœvà‡vØ!´u-ùG¨°§vÐq$:Ö=¤3+çLGÄZ/SvÆ!´q´_ì>NDq=v¾!r¿Ð;giáÐþÇvMµm‡vZ1Ÿ¸©PF‰j…6Uþ@‹B„³(Kê5Õ´Õµ_ö'¡LµB›*¤¥ƒgë<]ûWœ?7Õ´>kÅ|t¬B%ªÚTù-
+΢,©×T;Ðv謿æãö‘ˆ2Õ
+mªü‘–Vgka×þ¦Ú‘¶0
+¡%B„j«ViUåO4+D9³²´^UíH[ôDûub?qJU«´ªògzçÈ â,-Ú¿""¨©v -H+æ`Ê(Q­Ð¦ÊhQHÖAMʒzMµma@úkŽái‰(Sm1ó½KÑ´t±*Ò®ý+BۚjÚÛ´bŽJS¡ŒÕ
+mªü…$Ô¤,©×T;ÐÏÖ~]Ø[%œˆ2Õ
+mªü‘Þ9Ž8K ‡ö¯ˆÑlªh‹ÐԊ9¼R…2JT+´©òZtP“²¤^Sí@[`¦þš£*•“P¦Z¡M•?ÒÒAˆ³µ°kÿŠ`ã¦Ú¶Pc­ØÛº‰ãz…Õ
+mªü…xÔ¤,©×T;ÐaÜ~}{lj(S­Ð¦Êiiq¶ví_5ßT;Ð3¯sÀ»
+e”¨VhSå´(d×AMʒzMµm¡òí×17[+”©VhSåôÎaö>6“7´Åõ¦Ú¶ËZ1ßÜP¡ŒÕ
+mªü…l:¨IYR¯©v í·þš/l´D”©VhS叴´â[×®ý+î1™jGÚn1 -WD¨F±j•VUþD³B”3+KëUՎ´]^j¿ÎÞú¿RªZ¥U•?Ó;_|"ÎÒ¡ý+.ä5Õ´]Çӊù.
+e”¨VhSå´($ë &eI½¦Ú¶[xúk¾B×>Q¦Z¡M•?ÒÒAˆ³µ°kÿŠ›¥Mµm÷Jµb¾ªB%ªÚTù-
+I:¨IYR¯©v í:iûõ±…ŽQ¦Z¡M•?Ò;_E%ÎÒ¡ý+®H7Õ´]ÖŠùv³
+e”¨VhSå´($è &eI½¦Ú¶{Ñíס´þ/”©VhS叴tâl§kÿŠ»þMµm7ýµb¾¦¯B%ªÚTù-
+ñ:¨IYR¯©v í‚¿þšo総D”©VhS叴´‚8[ »ö¯HZÑT;Ж²B+æ|*”Q¢Z¡M•?Т]5)Kê5Õ´eªh¿NÑÖJ™j…6UþHïœå‚8K ‡ö?Rmðœ‚ÿ uÑë#dzr¦óöå
+üQ>¥dªŠÛ¯Põ·\«þU$”’ƒ¼+T>M/¬iÓgo 9SEÝ®§bª`ª©Bþ*œ¥äP©¢~Ôãª
+|â­ñeÊT¡‰¤ä ï³·±Hu,г*•'±ži¼FL#„âÅ+H"3EN2Ð_7m,•êù¶z9z[J&ö¦ _¡È®Q¯¿í§Tr÷‘*<ü£qxÐÓtöᆮÓJ®xCÎÓ´ïkiçƒRß¾ð
+ù«pæ’c=ßV¯£ç{µäNJT¾»¨XkeZ%⒣¼Ï^¸®û(­é1~•|Csƒb¨ Bklāoiªˆ®ÚÈdÎRr¨çÛêåiIn¬òUUh­òW‘HJò>;^Œ,·£þúRºAyö çšfZ~NåŸ=¶CŘ$L¶Š½87ÓVñPú᳛ܤºáêUR?È1¨`¦ù÷çT~…JT!­bQÁLkÅCé*I‰*0•$G5˜
+.t’WÇò Tb’i³
+R‡;icÿ:)¿ç/‡‹Õ€DàB@§u
+h¿°Z„ÃTëw'Gµ1èÆÁÑÖ´ÕÁt-aRè/TJá0µã™C“Îi¥äȃè‘FÖU8åT%dG;ÒNMõÛR2Bû…Ö¢ÆZ¿;9¤‘ÆA”`u˜šL
+ý…J©Æv¬Q“w\Ü)å u«šš|ü
+uv±&Ý©É~¡µ(‡±ÖNMXߢ.ã°}ù£¯ƒéNMö •R9Œíxè—Îޔ¢õ‘FjwW%è€hjÒ!£¿°Z„ÃTk7贑ÆA”`u˜šL
+h^dNú czþOmײ+ÉmC÷ó³LîèýXƞ8ÀÀ^äz {ŸÀ‹ ‚¬ùúz•JU0UÒånº§ûžæ)ŠâC"ؽKM)Û jö<æ̂ªéñü:”È¿||xÙ>ý?$֜uù!±&¥Ëk[’Öõóãëøqcºg֑RJyMÌòº²P??¾~ZÚߪ¼ÔßR嬯+í —7ޅ±g&Ýví©©o\äoŒ¯ß‡›ò·*7í×TQÛå+—7ރü«'v¤HI›ƒòFc£|c|ý.ìÔ¿ÕØ©¿¦±SßhdÔ¯\Þxv”ÊÙփŸS«;ùÆFùÆøú]Ø©ë`§üšƒòF#£~åòÆ;°U
+høÓßÈ3"ú€1æÞ]a†úúçy0¡ƒ ^àöÝïƒ9xΉB<Õçç(Œf½ÂƒˆIü>NʆÏ
+äó³R¡4&uÝ,|lë+ñÀVÑ$„¼¢©÷'G°¡_Å²ÐHdËk<׬”jRIqNœóW0‚BØ´KBä‡F`‰6ÝÕÖǂE ™—q&-/û’rV,v*ùêþX]Šâp ŒºÄìfcáÛC^8ÔbYp`ՅCÍÃa;s¨9–2ÄÙNæSÆñXʆcui‡SU‚:V—áYÊx.mïÆH!ú$ªQh9)t˜ßkRY^
+G0
+Éh€÷ &W1¨^JaçËÊ:cεOíßÑWû¬ó1ƒ[†~F*b± ]8Àäôãj`UC
+Ááš%„çñ0#žiôÕ’Îõ’%ôx?“:öäOÎõ’%tJy£‚<p'•Lh ‡“Z܊Bð*-°‰p­1š„2ìÌ´!gU¦ƒz/£CE¢ì±Äc,ƒmCM…â \pX%gú·z>؉ƒéó<ôU¬ž>OÒ§S…­ Vu'Wpð™?XŒÛ¹%,Ò#ć†)<ɜ`}ÚåÈÔÌɧH¯à
+æ_aÞ
+60p0ÜFqhÒág4ƒxsv+± îè‚yw:«Æg´/Œ›r¬Ú´aÂó/Ê©>“U¼M,$¥#¼´U0ÿRÂØA0¡ÙÄ#öþE0Íõ‰{ä&Ö ±`Æ%뼌óµë—E×ɏ7‰¨ÿ7cnšy°”áGaë<Òڄ"Ëÿ‹`Ø»ûŒŠÆ›ÝÐxQzŽBïд¥´|g6XÄ
+w2Œô1·%×Qæ°s ’%îÄßðÈxh'é“nk
+wb’<ívXHœ’æ˜ÄÞ$é|B:âY ä¬Ãó(BK'™Ñ`áß*Õ¼·óËcpqÅbQEØÏnÍ£ˆqUEÍÈp½*j2Ù©9¦)~My|ïRs¨#Y«¹<ïRsÁ)ôé {¥Åí®”:¤br»+…##…Qt£æ©P
+êðà4W¢P8‚qRèñÐa¥Çç®úÞr¹Ü•ÂŒ¥<QÏ ÷)FÍâo[mü)Ũ™¼í
+üðfÀá.ÖÈOÙËÅú]ÐX+.Øa¾swxK.Öù Ü5— ÇÊVæ®æbXb@-îJ.†)<ÐN˚'
+ìRvY1Ã
+)»T•á
+…àXrîv§a‰Qo’)<ÐN
+²‹‰ÆXvêçf ¿i¹à˜ŠZê¦ç‚ãªiU´S ã˜îáüµ+<¡ ¶ï½ÒÈ
+V´3<—ˆ¢¼SF–@ý]d
++ؙC2{Š­×¿¤Þ³C‘Ú¹ ‡7‰lé]áxÂ@ìw‹×Q‚ïYäŠ+˜þУñxr4XÞ ñ8<md’ð dž2øÎccŸ.Y‚ŠpÄþ¹ q€F7ÝáoåTªêƒéÖªk§RU·SÏâÅS©g0Ž,ά½IÏ⇉‰x— ž·Ä«h}äÁ¹‚'q}ãÌâGb…xã̛á%¬ÓfFa•&{%Ë!aUOêa/¯Š4öVF°ïg›#i×·U'W3Vܱ½ª„ßÚ$û~¾Mí3¸€Ùn„ÃU=Ül7¦Eéà¹ùn¶Óªt§õp³™¥ÃÎV=ÜlO¦Eéàk'U!6´ˆÃtj¨ÛõðþÝU 4Ú‘ExÁ~˜G̃nõÖ´HãHäËÂÊ+PÓÃOIpw`ódÂËÏzÅؼ;]í¯³B GãÉ<@ž²™ï$x©5¦AlßùÃÄh¼-0KÖæä?ÐGAÀ{Ãa ib]ŒsB4‚ƒ À) 2Ϟþ‘é€yÔ²^‰—ŠÁVÀŒDñ·$NgˆÎÇ!Ö4{ÄB#%P.‰Ãêšd¤fì<¬³\„©ß|\g±È\íÞ뵐Š‘6W¯†©S'K#~´Š“!‹È3½D›ÓÛôà3Á¬Pf‚,*!Õ¸ïm~œö3¬øòÂ_°H÷¦Ÿp³S;qú¹¬ctepz®;xzZ/`i€lÄ ¡U®sÝ¡ ºá¯hÓ»$8`VO҈³*p'ÖäÔ¡“oTk÷¶sÁ·õ¼¥ñ¶™6ØÆ»•ßèÞî›hF#dßèæîkÚK?MIJMÉ1aKúaBe¨q‚wŒÜTÑÀ单F]{ÐH Û¢‡‚‘›Ø&#Ú¼ë;ŸCÑR'$ Þ½uUOû¾ Øü2³ð»ÐÅ£±Î¯y{àü®¡ôî]Cã Ñ
+ ‘Å—­Ä9zE,‹£ƒPªðÒ5~x#5q Âæ>¼ñè!ìC*«á1Ðø
+ßÈËD´±Ž4~{2zž@¨M"P)Y$§B/ %áÃà-цM …ÞÁ‚‡e›_CWÖ²Àщ.…´¶YC¢º²j "8­X-5XÄ(b‘å•E0àNâ2À(% øõtV@¼ììE…åTün(,®õÓ/Óåùdf=|:
+M¾LT“Ô<%Ø­3¬9½]c´1zÁSÆp„)Y…ÃùåÎ]ác²
+n¾×ûG˜“U8lH.ÕŽšPµ
+0®³W8ª°¹_>Ø+™Ô¼£E8ՔÐ7dREâE8XJܐIoá øÔ>\ᨮ‹pàÌ[{C&U xž\ݐÉcU^D‰7dòX•êÆò
+ÇcUðҁ2W25U‰
+Âsy%“š«°
+çÉŽùn<’K{ÍkÌ"h4¥Ž¾Q›
+É"ÕË]P¹9àßÈ{ ºØ,°¯h¢HmkbÕǿɯŸfÑ0E?æ^^$´®½ ýu^¶¸‚ï¨í'â¡)¼ì“ø
+¬ˆÄ>
+ڕ+W?ýÂs%Ä)ôMîBX}qcºî6À»Ôºl€ã‘®Áiü»ŽçÊK#s„£êg@F̹6ómœ{ÌAÃÒçÆ/TË9ð&r§ÖÔ<.>Y`±<ÖG$æŒEß,[C æeÀmÚG«`g‡IûÒt¿ŸÃÓ]W_'Þ[¦<`Å"z0žôœ¥¡úY2žDVEã é…Ï]$Ñx¢Þ
+6ŠÆJ“»=¢ñ4¯`£h<ӓR«hÓÍ¥áïÍ;lº>„û»ÈWç‹aßeåôGÜkŒÉöêGêÄ\¬¿}Éá<îb…$ôC*p–f¥Šð»H…5´*Õçïi{_ÄzÖS@ ˆû-º©U.»ìÿt˜-y
+endstream
+endobj
+9 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Resources <<
+/Font <<
+/Fcpdf0 17 0 R
+/Fcpdf1 18 0 R
+>>
+/ProcSet 4 0 R >>
+/MediaBox [0 0 595 842]
+/CropBox [0 0 595 842]
+/Rotate 0
+/Contents 10 0 R
+/Annots [ 233 0 R 234 0 R 235 0 R 236 0 R 237 0 R 238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 249 0 R 250 0 R 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R 257 0 R 258 0 R 259 0 R 260 0 R 261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R 267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R 279 0 R 280 0 R 281 0 R 282 0 R 283 0 R 284 0 R 285 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R 292 0 R 293 0 R 294 0 R 295 0 R 296 0 R 297 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R 304 0 R 305 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R ]
+>>
+endobj
+10 0 obj
+<<
+/Length 19399
+/Filter [/FlateDecode]
+>>
+stream
+xœÍ}K¯e»®V¿~E5¡Á"ïG]@B¢C ú]¤«¹$t;Hüzòùg̹«ÖÞk,êéìUöLÛÉHÇqâ[XÿûŽ?QþŒôV[ªßsªo3Œðýïïßâ÷ÿ²þÿ/ßÂ[¯i~?ÿüëÿzÿoÿø´hþŸõÜíøþ.0ÿ÷ñm•y«éÖòKýÇ·ߢ2ßú(¨Y±òO¬ÔÞÀJ«oqý£¾•Nðñ­µ·¹*´·’Ë÷6Þ¨ßÇ"҈᭔¥”o
+/u¥ü]êŲ~m߅h\T¡ÀÅ®5_'µ¤Íàã[ío-V4_Ó÷ÚH «ùEYk^áÕ|Œß¥šOã»uÍÿem•ü6Óf÷ßJ]ý¡Ú*ímՖƮ¬-©'Ú¢¯´•ÇÑYøø–Û[\ßÒPm `Í+Ìڒz¢-!z‡¶booa5aÁ¯Â)¾¥Žc-ÄÑ‚k<.>5Ð¥<éÏéDRÀ‡‚‰š{Xé+¬Å?ÁHïDÓ8‘qúá
+[ÓgýÏ}üÓ+á]akúÊÚµé³þ§XY_:>Ö ƒEkò`âÒÊ3Bª<®4>§šôÖÕ0lª¸ªêªŠ³þ§X‰k‚v­$ÞúŽJ'ª‚xB}X•'„Uù?BÃT#ðVÅUUUœõ?7jâù- lM—q~K[ÓgýÏõÒ,D«f’³Ý¤ âa›T´Êª|‚ŸœÏo[୊«ª.ª8ëN5q\>nÃØÇc¼|ކ±ÏùJçsL-ƒ®L)ƱðÌ故+[>uǔb6 Ïl>±p¥sÇ÷» l™ê~ž
+šë¤Ö3Æj}òÜ(ô
+ˆhn(|(PŠ®•;ÎÄEÇl
+_Ïw?;ÆÆGݾoLLomÐz?ÛHÏ©õx¢sÏÇZ@s;Î8r§áŸû#µOt>ɔ̮:xâ¡!¸nQÄ»“*Oˆ;†ÐZ iڎmµÊ=wÁ ½BqÖó)V¸õKžõ;øˆ´ø \™¡µ"f-µ7
+k¦
+¥˜eqô~µv:̐ä‹+æeñ¥Úý¬í9,DôÙä˜{Á¼.¾hÅ4|qÁ\ŠsxÎêYµï—@À ÌúXúw­­­ÓÎú·`ðßi XZVB[Q
+áBK—Bá"ÇçºXˆØ݁-Î`ô—°Ý 8êsüÙÛ8z4°>.|–kOS1xÈ=5,ýÁ^_p„øqÙ?pæÒÁ­%W~—Fôr”ß3Ô
+4®Y{¬mÁqd†{¡ß3Y!ît±ËOZv”ÞúƛЧö֞£U†k=á‘|ùLó.6Ñ°¬D|ü8yÃÁ
+» 5i
+£d†nìÛ1øŒ#FT‚ìCà8b{¦ªk][¦UÒ°‹†U$Ž|M 11M›¦xæ¸:ÓÃ8µß呦­8zi-Êɵg0[
+Š]AK`AoU­ùHµú*ˈQDÚÍ.EZ+p:8ßwUD¸M°•JáD(R¥ª…«D=ëÔìÚþ´ƒ1 Ö}n½ˆ UkQAtLª Ñ&>AêWodMi»øbM5»‹NÑˉ€é¨BO+Q|ÃíèDCä\Ï*"x†eœø8gô](nÔ‡à}MR]y|ßœV0}\6œ@ˆ{nØè{ÎËe€ïᘍãD¬ßYG™Žè2ÙSõÍ
+¹ ²)/ã*j[ÜúÚúÆ~tÇÔ|Öây:ÎbãÂÓé
+«Ç ºXsQƒ2Û(Jü´ÖâÆ0ʬ#ÏðL×Mî–ìFÉ¥\0r1ÛjU‹ŒWÊk~âZk½Òû¡ŒÉÅc¾Ørÿ•Crm³Ì"óNq£Pص;H]n¥Äb0]º¨«#ÚÂS`\ÌÜpç)°õê¯!–äw\ü„S6Îæ¬Z>Rà;¿Ø»8‰µý†çzq8:ÆEOÿVžÓûÀ©&ôo’UáôyÏáE8-‹_®ÊÐ>ÚHޜZS…20lVàbp
+˜§‡ߞÀy|ÍÅǃ͈—:Dñ$Ýy6 žã»w‰ÓLŽæõƒçÙI‘y´ZȽ}Ü+ óã$™ä"\ÊIH&¹œ—#M5Ð99Í¡<‹fí^yî«A^ƒX3ŸÎÕ@ù“Îrˏ5ÒÁÿ‰iõ¬É3@ó5Ÿš@}Vñ‚‘ø«År1¦ËÀÈ‡Û C k±Í×-´©¡QÄ;Ïcc<ÉõAÕr4‹$^'³U#,F¢0\-‰–1ÊUã ¬u»ù¿01zÌoŽ{a¹Š2$W[ò­q/ÖþÑi ©­´?(›ÁúFÛÙ°Æ{+üÐT‹ZßA:­å£j̘ÁÜ*å«F¿vZ×ë«í#±B}“dWhk¬y˜øwåa ÎW³1,›°fÍ;rj,kk‹Î÷F·è…Ví-êj³5óµÒ-ºÔ7Ñ+Y[tƒEt)o¢Ó¥O'J¡»Å[ÔBö€‡‰ÿ²sxÀͳEÇßòZôLª-ºÀUsb$òimR¸ÕìYKth³‚ûþé€S¬GùȽnô÷ºµ'pÿšk¸ç¶éç¾JâEõ.ÖN¾uÕtà4Ø3ý®p׉õÇOŠ"CäøÞ!­Hx7|äþ¡l3»j£­„À4ü°Ièì–'wÚ7Üh+ԇ\ ‘ú îQ~ÇA`·eÅàP|ù5ƲÐÇÆ¥w¦«´mé{9¡‹ÿ¾<2u¸Ÿ’|.‘èõ~ÕgÇÙ¢3ÜÙ3ÿÐl9›gËÙMq¶œÍ
+gËñ0&_§žNÿ|{û^ú]§sš†„‰âÈ·Þ”^sÒev³Èm)0OékmŸÈE=yʧߑ¡È’²ö? .]~Ç÷0ò
+<ÕA™U7J#¬’R‘݁¥°¨…+lµITSk¡Ý×V{¦„؆»¼$)Åmù=­ùgÁ9\­’Ä›®­FLl%1‡§µæ’áy‹Ò½y‰t§ÉÃ>ñå±(ozêÉ®=ƒwgý¶crâE/§äùÎSò(
+·iùi‹\”þñ\”¢÷+éâb¦ô/‹†·6ª£Ŝ‡Sbé¸fŶ٠Æ\¿àÆù"›ùú³Ò÷5х6c.ßå_PòŠ‰²ŝ¨°&9ÕòÌ?Á½Ñï•>°cYC¢­1^ŠŽHß@¢'Ž;"¤(v¼ï¦pE/8ÖmNÃoÃüš†–×ܧJoPVš‡µ‡ëI¢
+\‹4ø÷@‘4KeÄN’|FùÖ|©¼ ŽoŠÄ½‹W„mãc””ÝöñÁù–aÉÁöJ‰P¤¶î@”ÜNDlG¾^e»y ŠòA©Â_·²ýü`Y¬
+¡ª·*&8»Âœj:m;òTZ‡`Ö­Š
+¬Â
+5‡À-ö£
+h4¦_D8Ó|÷ˆ$q[ˆC˜\à"G“XD_ÇÝä“ßÙU”i#ªbéÍ_‡àð<W…ø”¨E8j³ˆ»bMc!¬ï*[8!ºÅ—fO}|¹¯ñWs"©%\¢Ë­ÙCÄ&;ön6)î›&o“.DWC—xši^w ²c“Âï†øXaÙ4ÑoÙ«!Ðk#^ì¢|mBÐuåævQ¸sÝ¢ÛEÑ¥çævQƝî¢<‚vQ¾
+í¢<QÚ4ùf±™¾76áOäÜTkš%OU¹30gÁ¥YÎ;ŽË98ØÖXcZ—p’.Ñ·ö(Hâ•]€P®Èöæª ò’\¡J´i…šE´f“V(Nx#Gï*£‘›>â4º…IgJG¡…^_5¦9è}×ÖРŸ^[Ý]Ž!Ö@
+ãjkDÎèlPX@"rsñ8£[@=‡ãwãŒãªp,ŽÕPkVãnŒé/ ÄùS3&‹”.q8åÖÜò]fíñIض q‰^Ä M„!ð6¿ÜÔÁ4x@²ßç¹ÉjfÔ®J¥Ëì;AêÌ_
+=O_­‚`N‘½Aƒ^`§à^…E±ÈÃï­
+erÍLNýR+¥y¡¥û²½b¡˜Íþo;~bnªŠ¥^É;c;˜M àÀû}#Vg—‹é{ùíýÆ¢d?ØO!] w‰³ÂŒøya|?YRÐu<C¬’×x
+æqHZƒLɁŒiEüÞ-)‰Ô›ò#1ƒåÞЊ@ÏñÅTiÏóî0‰îã]¶bOőÐ%ðEåUÏÃ5ÌeNÉäÛ“¥¯IäCnö)(QBLYú;_þ1.y– èµ(ó©£Üé¹ßúÆ<³Oóü8ԅ¤r…0z4Ò3kƒ »éQ1\ cQ1“V=dOÑ ¶4€&v½NK.û… EËPNKuÅLz÷ÇƄ}[úT $ÚT D¯N“}cTŠ]K%ݔçՏÖ7F9ÔZ[ŠH7NIcémT:æòc)¶VUÒ­ùÑÞÑZ»UvîåÇS¿ÿîð~ QR!u…úªî t(“\‰ê}b"=y@«LæÅõÆÈU‡Ü ‚’FWŜ·JÔü½Ú¬yQ ’ifô¨«‚ãœá‰ržæݬ"Œ1­b¬+Qî"þ!­!FõUðØ},[nú„¹ªµŠy·q×sz}øÌ{*–ºÜ Ÿñsᵖhæ òâ…ÏØj«Ï¸ދ™Ï·(%ÉûŒMõwê3vö»*ì36¢ê3¶fÕElLÏøO…>B¤>¯>ã;Cf¤ðÿiˆANŠÇ·™è8Ý!&7AÂ¥DlâÙ"³Æ!&Í®V…"¢vF”,4XÒ)w)¦ÄìHR¹9%ÄÖ#¹@g¡«ût¼K™CTVVÅdY+Âà‘FÑÌt½Ÿ3€]ŦšN~‡wÎc#¹.Ÿ¤5Ød®0–=«œþF]ž‘Œh£ûåÝl“D° £G|qìÄ/†-‹düÈÉÞ½>¾!‚¦\S;Ž Á<áw§#(.Ó-fÆJ˜Ôµ ’¢: lRŒÕ] IGqøÓ“¦Úç⌺ÅK!VžÍ_Š¼‚°¿®f<w âxy(?Á†åòµ°MÏJHiىөÉõ¼CwÙNyŠiˆ©ûnGRöÝ®YÙw;Ödß}`hß}Ô¢}÷A™vÙ®õáwÛY<›}õ|àVžä¾Ï<«|¥ž= Ó(W±¯¥Z۔}kÝDTßՁ!ÿ–«%^GY’Ù¸Ö³9ÔZ[
+¡Ù­ŠÉ‚Àr.Á)
+±¬÷JW‡%?l„#§QpÖ FÁKg‚³*gD5
+Κՠ·ÊW‡¿2ÿŸq
+Å5¨o©KUž5D¡k®J!+ÜåǏÝl‘<¼ÖÁŠø½g6,RP~$H§ÞúLIÀ1UÑåûFèÎöNjÂü
+/½_Úõn©¶ýèFÈnIwÚt{¸…À.ã(La{?º²ÝUd?"]ڻ͐(;Ùޏ.2·%‡¼÷£ς·U9m?º²Õ*[–L¤ö~4$zcëå~TUcûÑU¸Åâö£JÎö£Ú íG•%ۏn„ìGwُ
+Qö› ™K,Œ‹yc­•Ñ"•ùU¨b­àJ™!.‹vb‹ÜàlÈX†çËÉèN
+Dãµ"(³U°3ÝRȵÌaqȊèäAuU,F^‰ZÀ³6kbQìýðrò­¨]E…;ï—=|´¾ „­²µ)D=ëÔ¬¿9@Œy±~H;=Ñ«ø/z÷•Ô±¯!ðÔüu¿ùI4ÕßGuºâ먷Q*ð.8¢|óÔ5kˆÍôï[~åÒ!K¤s­q§âæüœÃ»yoñ0§âXƒÈüÄðø:»8G œŽM#èûƒâ¼D¢Èú¥û*}RNLJy7ñN–ñ×*RI6ï}=å¨‚Ó@$Õ̖!bµ‡´›O/hÈ!ƈ”KöÝÎFÔç¨äèÁ©†ÏFŽOv9wXš˜Ç±Ã֕ 4&WÅi‚‰:±¸Y'x ó¼¿£
+„sDù¨Åu€!ZôU†Æ&(Q×Íܬ¢ }xiEBô*þ‹S˜=6ô¢EÏNp³;XŽ`¶àr³U#0ç/G¿8¢|Öâš5ÄfúwNäfg‰t’¸÷9Wþâ{YÊUËxJhô\X>º$¯ëá†!^|…H‡¦û
+;žÄRS_¡ÐwŸƒGÐcUô“*ò®±º,ñ†0µJ’pX#šè•3׬êÀ¾B ¯ÐW!á6Qù蒆n„êJªd‰6¢Æº6ËwAcA¬{iI8#zÿÅW¸ûS|_Õ}…|ÅÕ}…&¸~…¦ý
+±™þmnmû
+I"ý
+ïͪ†N
+a”C%Žü@Gø/ÚúùòÆä\€ÈíÚÆY"NE€S­M¥ï
+-Ñë›Bļò5Ÿ„õ¸*²Ù.¢mh äpúÒMeWÅi‚‰:±¸Y'8g‹;xÖÄUaáQN–ç:Àʇèa7ž¨c›uý.úðˆÆ¯¯oiI›èEü£G*åWp£W^ z>z×Á•\ôNp<t;¼j O^¢sU
+=Èçˆ:’uÍb3ýÛ¦bf4–h}<ÜzOɽ–*àídçâ©Aˆ(O>Âϟ7äaC4_Za|:iÝ¢\¬]È¿I1ö<}#ž+Ÿ¼Â´« ¶›[¢ˆþæV¤Ùèó¨ÒèÔmfpBp.³kAùðˆ‡«¢¬Q„|çìšÝՇI«¬ Ñ-ÜEü/z¤Ðë(®GŠžuk ‘e=5=’5r@{ç9‡XÉą% åYU¯Õ°f7B^#ÞUf>z„…s=‚G^ŽñRžUQ֍¨v€5»ª«¢¬ Ñ-ÜEüKzñP<»'à¨7Ë×ʂ8ÉvŽËÓ«§ôùDȖkWI#œD£¤ß“f£Æs(ÓÑEÜ;YaFýðÁ$‰Ôó“uººõ`2EJEWqÈüTD“Ô±?^æßP¯S¤oº&ÔC&'$–¢»Eüdf¢Ãtc‡¿!!—)偐uuWÿ;ÒC%
+Q䃰*òìƒeáì4§χG Ç·«"¬o¢H“;}³†PƬŠ².D½>ñ_u¾¡ Ý‹!X
+{ÂòÐU$'•SMTët#ĺ«ðåc#hŸúØÍbÕ1­ˆßûú’ˆ”˜ÍPÛî žx܃¯lõÆi}Z¤ëW³KFdÿÎj
+­¡¼ý;^£‰ŠÀS¼WÃFÚBÄÕÉ‘hRpUÒúé šhšfDKG¤
+<ˆv
++qÍvÉýfŒy±î«p›è!¾Cxi©
+ÍöRç·1–œƒ®UF:©Nð>ɀڪÁaJÍ'Çæ®Ê #:hòsÍb3ý…{ŸŸ;j˜™ Is»õLUΆÆWÇÕ âú¦ÿž‘À»“‘Âê¯÷ ¿M¹ +² w&DàŠô¾•È.%(¥ÑGQ?nDækÇ»
+Þמh¦<b®Ùh㫺¸Î?xِù„$BUêâ[ï辞ឯÁý£º1η éÊ,7Zò|M ó»{¾Æaäù«eÏ×e{¾ÆZ·tŒ¸!5<æÇ+ö‡¾bW ³d=c/ ^ܖ<hM‰'·û‰éTß×êt¡ŠÂÇy“Œ'âåi˒µL-ò¶%ïFñ2·¦´³ ̾ÅáÝL «Á×"—Dwš:=~bbIG­-…Rޒjëö¼‘q¸1*…×O•ÄpSnÀnm$þ؜Æø¥­Õ-…j~Kª½ã19_ki/«ìg¿ùgúËðxôE”ÄÇö¤Ñ†#,¦ÔÉ0ŸKK0œ£¼ç‡T20ä£<ŗ2•”ÅBa<“]y\^’·‰§²|X{I y,å39Ÿlwå+¥Øô–1’kO`ãGÊ¿BÏä9äõòŒ×±wùAËM£¹v{'Ê?³Ë'q¬á%Àèä?S$Ö£ÜÕÇÑV1˜HÁ¡›£$¬SÒQöhÚt”,y
+)ùÒ“e“<é3=óS?:)[ ¥PíòÈ°=10~]­‰¸çì)Ï@&³kÝaB«¾…W(&u}gXùI¡dŸj[Mòû?¶ËcÇ2
+9ÖÊŽ†Ý8“©Î#8Ó¤UA°»Ü0ŽR¢ÈX­ãæ¼p™_Žœ§Â2í½,¬óÞ_-þqF¤N“Ç€¼'ÀVä×ÆV E¼ZQž
+ëlThlðdÔ[߈—“Ëu*zÕÔsa™Y^։å¯ė-Œ=¾Íº~lò+ã­Áœ¸–Ç6K”P
+zNp_³(^^Ìé€kê»|tµú¡ô6«ÜÞ…3ß{xÄäÊsRÿM¯Óû*»=ƒ….¿ùez[nÏ:ø”ÿ7GÌ£›‹”!Þ¨~k‚
+>‡/aamnV}Ñã'Ž0@5S0Ì.*p¦˜~˜æâô%j EºÉ5‚üpƒÍH4ü=Œ]è.ŸhÜôÖÂ…Y{·ø51bv/kvƒ0èN¾·.æ<<{¢§ÜßuøÌ(¾¹™çØÃÇÃ^–µá×ù]YNHôŸò—êËzìy÷I) ƎrÁ­d÷¹,Ÿ—•—Ϗ_9¶áÝ9ÁÅ«á¼Eç1k¢?ç]T†³rñ<œwQùaæ=œAÎ&€ gP†³ƒi8[yÎF‡ïnÏ`N‰÷1œ!L’sú~ëUu=)@š\óŽ&tŠk¾„>”¢Õ¼i´ë6ÌA Q4š'€ ót/ÕÿÈ~/ä%ýö0îÒQ\0ՑÍJ[%Jo,A…•@ ¼»]Ë$IÜŠ– =˜B"øZ…Ƙ§\(èÕ·¾1õ‹B¶þDÊaæ&¨XºÞßê¹ÃÔG矉‚¯1eN))˜aÈoÛû¬]+c·N†N±+j™InۍÁ´šŽZˆ{ß9‰™bè‘-ºö.ebV ñŒ,>Ik!//¥ñ1žéxB~Œ¡ãˆCrµè¤¯O-ƒ»iäTl×ݺœ”šòÚ¤£Á­¼£øù#ŠÎîj<Ŷûâ‚AÆ6‡Z#€c¸5r)8¡Z#§„¼5Îÿz`ÄÖ
+E
+gI‘¾'x—? Ñpjµ6&k€ÈåñzaQº$¢™—v^\
+<ÚYUÖL„÷zéI‚ª®"æ÷x׸Êrþšëôœ.ŠHìú±†ÈC8Eː·Eâ‹Ô×"ÑӑkhÙI-¥æ%úÕ`ø+-Á0xnéÅÔú閐 -­žòM½ði^(<mõ$Ô ßæ§GDÄÅ,4EFª‰~¡O …woŸ…úՇûWZ*áÕè{ayû–ß‰[‚ÉñÑ¥÷á铂K}ÈÍá/}ùÅ8O_ñíââÅ@O_ñõ/Úú
+ÕâVÞW—íîj/q톾Puk0ì¥ðՅ•Ï¯Ox³‹Õ—†µõ%ka‹²ÇÁ«uæ~÷}ƒ£"á=9:ü(6½ŠuýôÉ<Å-JpŠÔ½z8ÿ«>Üóc©êǧs~kðNnqþqðÎÔøáüvÛég|BñÿúF¹
+endstream
+endobj
+11 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Resources <<
+/Font <<
+/Fcpdf0 17 0 R
+/Fcpdf1 18 0 R
+>>
+/ProcSet 4 0 R >>
+/MediaBox [0 0 595 842]
+/CropBox [0 0 595 842]
+/Rotate 0
+/Contents 12 0 R
+/Annots [ 313 0 R 314 0 R 315 0 R 316 0 R 317 0 R 318 0 R 319 0 R 320 0 R 321 0 R 322 0 R 323 0 R 324 0 R 325 0 R 326 0 R 327 0 R 328 0 R 329 0 R 330 0 R 331 0 R 332 0 R 333 0 R 334 0 R 335 0 R 336 0 R 337 0 R 338 0 R 339 0 R 340 0 R 341 0 R 342 0 R 343 0 R 344 0 R 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R 356 0 R ]
+>>
+endobj
+12 0 obj
+<<
+/Length 10869
+/Filter [/FlateDecode]
+>>
+stream
+˜.•PË×Y®—Ο…Õ·²ÓB‡õ$•͟Ç"eåIJë{R_Ó¢–K­N -_V1{-¬|¯Å$¥RORK+%5µ^¤>;SÐùrž\jcf
+Í5•m4<Û4ø̵|e2Óy¶úVÞmšÔÒ"E6Lˆu‘²²¡Z}Oê“Z©†Ùˆ–ƒXð…MÀÐ博,c6ºÊ­&‚MCüèž\P+rbßåKڌÊó„éÀ~Š6U ‰‘3ˆ mú>““#˜K—µÈÐO ‚ôµ1C&¶Ô:•íÝH66
+¦ó¥¢,†JtcøYë´±24p€]‘F«jùúM§ÙÚU:-7™•¯VŸFLä-©Ò›e×4µ¤îXÕêY_­<QµþFê³;‰Î-X:·,Ù}…m-“Ý'ßMd‰?)-cá»PêÓsð¾SéͲ·Ñî›Éª4Ïúj剪õ7RŸ¶=:þÉÛ¤‡8 °V6Y¬vÀïÇ=9R¶OŽZ§²¬Ó”ɺýŽ4ýÀˆ_¥¿P D¿¨ï!Cì78˜®€™A/A™€m};Øm±ÈÕ {’#ü4Í­hr5Ã[PC%º1ü¬¾½óˆ ?âB1í³H|¸d¹6|=<€¾·Ã£(@‰î-b ³º€ Іõ¯bßå«(øÕ°teqÑ_ ¸N@
+Ã$g€IÎPžÑ7*Z«:ù˜ð
+pÚD[›Mœh³È©ð‹œi3ə6žÜ§µ"´ð5þÔ&„¦dvփD9ƒ֝¥Ì2>¡îI’¥¨¥­N ‚õ5[8ðôiŸ%îU-ÓR)¶na?Ê]YêïV ¢’m+N_)Ò3ZPoËZÿk«æ3¡ª>+'õ0PەzR®ÎápCª«7DË$µì“õ¶¬õ¿¶³l<!a¬¶,MÄ-× ¹.}`rÚeHàw–…§¤EpDž´=,rŠ²‘û‚mn²á£Æz¦ø:B'dè–had³Ïë”OI¶4UP’²H–'ùI­hf<hhÃ<bg†•ÝÜÒÜ
+Óã®,õ7m•¾ÊŽ +ê£TÔ»²ÔÿšO¦]:ºù™[Yzb•ä`ò¶Üï=~Ššd•Ÿ¤¨:oõ®,õ¿ö…a^"yÈ<
+2b01åj€ë ¶j¯ Åþ늁ݳ‹\¨ìXä °È)Š'÷OkSkGPÂ1#¦õCü@)«IÜ}ƒ>ñã ×
+ÜE]GVô"§€ENQvrÃŸüÖ澝ûãd—æo½¼]ÁáGJ (­ˆéš’ÔH=yi\€Ý“T¸é‰l)žBx² C£OŸ†ÝQw@Éã  †E2¢4›ò¦`²Å’gî©£1@v 9ñÆj„Ú<
+€#w¨D{C!K°tO´êÙþdKóó.˜)>E÷Vn¡¨ú‹¨6±Ýz?7S\]z9zÅ#ÏÝÚ[¨dØ ‡ì•.‡ Èj0Ñ%£²]Z`)Š; Õ£?x¢Z3z¶
+X‚)Ê]‰.å”íê÷­=~ÁP„Ë©Ì¡¸½¿ÝÍòT‡¶
+O¼ˆHAr™M*·TP>æýŠ¯? ¬ÇñZn4Åݬ °»$ÊPIÑF(G
+'ÞőÒò )2dbgÔD½IB_¤pÐÖ8´¯U-×椤mD !êË©W?ò‰Õ¢Gx9Œ—«¸¥%ôv•ãáë›ámô¨qªçG‹÷&©jòº2ë3뫾“ž¶‡ñû
+•­Óˆ9åie•k‹[ýNËú¢—hnWúÌ/s's™ö‚®Lóuóõ3õ6Ók&ƑØÆ#ùZo®œy1Ù#y•}/¼¢rÁŒ‹v8ÑiÇÀS¦‘²ò»VëðjŽE
+c";­1&ò±HS9d×J.¨âêw2¿U¦×iORÖã[2ÕW«t9Dç2¶m«LÍ3Š«O&C*Žu—ðW~¢ê’GËS^­?õQzS_å'íñËWŠw6‘ÝCÆØÍÒðQ}cé‰c¬ÐÂ
+¾Pe ┋˥݌9R5ǁ1Ù«Yîp œT³¦¼ËZ¬­¼“Š’žc^¤ðMÆ"¤šÞ¶V”4Ö¡”¶òÁߨÕ'e²ŠÂôºz-òÙõJoê€ÕV_e<c¸úÂhÒÓVœüTÕ)Ï*‹¼Vßô1z¦¯ñ“öøÍcŽeÚŒ¹ûú4æòÇ\†Õ—ØIP0欜´u¼Sµr ~Ëú¹Óï‘,Yö¨èÜÔú0)™g©\º/¤WùL
+DÑpì6,DŠú=G
+ýÞP.IËõû"MöZ¨«| Óª`ŽEÊ‰vÞʏ˙¦pÄN´æÊ´
+¾Ì¶“úôyÏü¼©ÛŸÇ4väÂÛ:-s<Rh|Y،²ß1gt)co‰mDÖßs[9п꼱DÄe²rà𢐲û½-/ËGÛÏ£ÛJ(‡¦åƒ&xÄöʯ‘=¹Ê*ÿ¬_icϱó)êïpÀŽêÖBc¬Ò2‡Uî2&²¥pÈÓ²ŒÁXªk*-ë}L–̨1`É¡r¥)x‘Â\]P®"5¾áèH>ÔñeXñ¾~ÍÑ4؊ñÓ1•W/¬²¶ºÖ'cwôf«+¿ÙŠ*Ïle•w–UŸY_õô´=Œßo“ÔI„‡Cïã1y[ŸÆdy¦/vš9‹åPL
+ì ²KÇ¡Ðö81®¬F¡‰“·%a¤TJ—£¾EæúƶĬ‹«bJ.;
+”sDq•6‚ma˜ÚôDèÂvÀÑ´µÇh{xm¸½Qÿöì@® ¢ñ$Ì¡Žb]$Gü¯«0[âæº[kŒˆë7ô–=¹ƒ†Nð݇8Óêé#qì€^ŠG¡¹·$O”&ÏŒ­Ò±µ’ ÞÜß,ÅuÝ'l]‹`îÑ7@O‘¡ˆúŽ¨4Ðdûü æʃCiû¨ðž ÐQŸ8E¤ÂÆ;Î2[y¸ªQÂ\¨zâpp« A)m ©ÑxF˜€ªl¥r\ƒ#Z/GU.¶j|"b!ú Ï#n( !šØ¯–2}Q"Xâ ¶ ¨ü!íñ`¦ø¡W8ô@É KìÕ« tì x‡’-¨Ûˆâ¨S¶b¯^­¤› sñú„sð(ˆƒž(ýCåP¶¦ølTtC™ÊÑ©¾±=|¸Ö3‡NÇQÛcÛ9‘?j«´öá~î áõgúPø2µeƝŸlSyŸ™¹á3'{.'¾
+ô+>=Z'ŽÇfq•?h«|ì•;Cxýã™n \˜*4VqO©ÊYàV(÷B‚?“/½*à(75J—+–lMÀÁ>‡Bk©|Óˆµ
+Èíåٚ´àˆ…¾EæhCAŠ‡ª&Šì"AۊÙbs‘|kÒ,¾ñ< ·èQ´ñQm‰ÉÖÚj
+¶*º¡LåŒèTßØJýæÁÆòmêÒÛ ÂëOõGPÃÀÏT:{!Þ$EÍéhA¦«Ì‡€ÛZÈ´±µ¡´ÄDÅpå!)"EMͪ†êO”Ê6#J“öÎ1ŽF#ҷ崓Ïã¨r‹(wd9 Ç¶LEiŠäˆzљ-­HuÌXtÂÊ-¢7êßÜn´ØD–KÀ:»èʀA ˆkïÂGg®GȐ Éc´^v”Ñ£'
+Ãë-£ØorÄá±Òp±êL9áôÙZŸ¹'Ä|h¿ªÙÁxiý¾ãøŠª7©ZLÆÖDS6ñg›™†³Í¬Œ­¶Ó/7Pßä"ÿl¦üá ?Cxýc<sÃ¿F–;5iã.r&Ù@—­'ЍH|”d3¢€Ô\w¡9´ò›dm UÕa#l³Å÷g\Mž!,ßÉ
+œ<ìjÐÍ{h(ð84O> Ï)B§lja¢?¨ÖYåg~V…´0²B…1i88=Axýó™Qê—
+o°’ë½pç-·Ø1œµ\%®6Í,«êZáÙћª+¿©ŠÊ3UUy­ü¾*÷UÓ'/²*Lþð“?©ÿúçSO.pÓ9-DËCÏôqÔ €›cï»Ê™2
+®ólª˜ïB·›¬ù!Ø
+ )]Îf8d* ö>"¤:jk
+¨‘­YÈT
+€Ó‡’$_è"šøðʱÕ6X‚)@DÿH­³ÊOýàpé÷Á3††(KÓ?#9Cxýó©_8ÛcԌ˜7`T£’ÅgY¹=VÑv°<â]=!P¥³ÿ(ÁbÄf¥jb«F(`I‹ÞÒáÙô¡#vkJ
+X´¥ê·YMaCŒâÚ
+Üe’£YÄëVF‰ñØâ>›({ÿºˆ6õúO¶ôéȇÙ0<FïáQ’<[²ˆÂöží˜`Š²DW¢^9§þ¦­$w±CµìÛ·©»o4þ´
+(\S9ÿ ›Å.€8¡§Z•ã€Z•§ÀUC9ZðË Ù÷™”2<ŠÊ¸ˆª“­é9[€•uñ§jV~êȤ=èRUa’J?^ÍN^ÿ|¦·ù~à Dz5c#\[ˆi ¿{ÕÔöäÁ¼½îÙ(±ßÞ¾!95<•ïVÊo·Ø¿â¢=Íí±iT„‰&Múp=Cxýק¦záÄÖ|GKówõƒïñ(àʀ4²ìµƒpß
+*v;í¥áU>Q,ìøÁ»KMs^·ƒ~§7V†µp›N»ò³´¥ß-Âh=­*OÐ)U®Ê¯É¥Šƒ †¡›Âᅤ–AgÒ"µ/‹[×êWމ/zUºÆOD½Ny¬üž¨ZÞ´zê4E+mzÐ YŠõÆdzÔIý×ïÏÍGE-Xø‘¾.»ì 7B`{é.€pFŽ,á—
+É ò|T)ý Ü0ï§FG>q!^"¤]Jçۚ°Ó£ÕÀÅʆ‡£nçeŒ-Ì!2æd°!á\<sÈØB–×4˜Ü 6ä)Õ6ÁÖJüIe$ +®pz$Ç
+œÜnä‰r(’'
+«Ú›I¹èÕ¶Å]y§–r*w×–iº(#‹Waˆ¦Cq“Ç°šÅnLÊ^ áN‹AÙ%ôÑÂc‰¦‹òmklñY’ÑXœm’µ¯³Gh)½ó—4{HÞòŽqïEIªìû¬sÒñ=Za²zÑ Óbz¬¥­Q^Ú÷fWɦ„íäæÕ½ø²iûT{«‘¡ñàּύ‹óÀm3Œ×ïϼ%YH)pˆìÛ,GŽ˜ÜÚwÿ‰ªü^b
+z÷ÛW-|¥ïBò>F«Æá¯zmTcã¤qS€Øõ"¼ß‚*éÞàC%ö¯«RÎ#.Ò]Ž¿WáR¾~á+‹ÞUùi¹i»÷DU­¶ª¿É˜Y‚
+ôÁ'ZU2¾É³³‰/¿yòŠ8Ù¨3…!p~R+_Îå6²;:”ÈîMG4rBÈ:%.€lü'
+n™nD‰²±ùM0`Ñ=
+ä"׉ª3‹¥ÑŸY,Àúb¢h’P#:“„ÛÕÁ*˜ÞZ›†¿Ëºa´½Óøظ;Axýþœ˜f<&óŸx×Z2ãFö½-@R»¼#+‚äšӝ‰¾pocË#’I7˜6Û±¼bºP¢8yÑȯw:¶ˆº˜(Q7œP¨2@ö9È`T:
+uã{v€NñƒL3ß 覍óæAÉû:ÄÊÂlÄ8Î
+à§AC²˜rô€,Å/”,~çE”z>¢ÅÖÖx¿ó£4J0>ގœ!¼þÛSåù18âjŒh‘d…/ÿÉ [¥éœE® éóö7gP™l­ü¶ÔSÁÐR‘˜¬`'ŠÌ„q }ܶ­Ž¾œf¶×Ն‚'7Qñ´9¶
+0-~k’i” =°-=Axý·§†>!QÓDL£hrÝÄ錊žMýx¿:m»ä6’›Ç "Éöî²ñM_5$
+zKçۃÔz×qi¢±RÈ¢UwbÁw,Dƒï”—øÆÝ "á‡â›¶[õ'Ïu¾ª¥ÒLqËà{‡ñúý©OI«e¾)ƒkáo’Ùí®]ƒ•iíCžÝ·×iüÔ4è¨ÃÍAòž\*ÞWŽ‚5$¬É+¾Õ)œúÓdHV-ŠÜ³æ›‚•FÚ Y¯!,¬¥͆Aêèå?$Æl)ávrç/g蘭!Y«[s&» 81ÈݘEõ >®U=òE哏>ó[õÝì&}•Gì@ hîÔƙ:QîÔĘȘÝ!Ö} Ë>ŒEy‰oÜ¢~(¾j»Wÿc67GÃÈ?³·4fŸzøÁ r ¿ñ"6ÅàS`<÷&›4yÿM.
+:€¼9Qì<pRŒ¤M,†ÎGÁx³M¶¥ñ‰ö€yíP~G´²ÝïØN@ÔPVE9h'R<ÑÃî‡#¯mcy0sʱßŠŠ¾ˆv>ævl'À›ÚšèJÔ+·©ÿcïn¼ÄQ*o«‹’š
+ʸ½'ï+yÓõuԘ%À7ï«ï|£ '°ZÜP´ÁÑ)´±€
+%GÕá -J’2‰`l±1¤IönŽªC™êlBŠžmÿð$q3ôà{´ð¾>ä 9ù¾©ŽwŒúC8Ø
+ùáÉar;O=Š<Â#j
+¬Ñ·à²®Ä⭐ޕÏɵ¿¯2Âc$Aç 7“ÑGmxb$NØ?þ˜fÁˁ_1?ý뜐ìóŽÓI@æWI¾£˜0c5ÞÉFøYŒpe=MF'ÖûWñNœzÇ+ÒÆéÄd8ï¥{àÇRT§)\ÙѺéƒï¯Ò`ÄéGµxƒcàÓËÈJ¡IRÎÞÇú²Nü–>=܌:}ðA|ŽSBöâ“xrzô‹€÷/>Ê ‰F;Mz…¬¯9}ðE|Š5w°çW~zñåÆCþŠ¨^½Ô¬ñNŽ¿ÌiTqsweãtr–µäUÓM>ØMxE¾g¤0CJ¥Ÿ%ÈÝ»‰_ú‡¤—{P'”xý©áB9~š¦ôˌ0ˆ`±a؍ÑÃQ‘9ñ#‚Û!Ë-­òPý,'à×{© @ÀkÍzéƒa3;Š¡nÁ>T‡óhâÔùŽÙøif¨]§¡Ý„ ðÂsÉ1œ)Ám~šÖè'£©?ü7Âþ8ù3ܟ¶²Ÿeºñœ
+,µ¥i҇³£gä^͸–Nøg1ç«;ž¡ô5šï2.{å¶V÷³Sù¯Ï°ü^(FSڦ؇7Ÿâ…ðÝ<y}dK|ŠW)r¯fó;`WȧÃrMÿáé¼éé2âYÀû37ÝÆ*qÀ¹î7^:pPȸvÛÊOýFÿ1 ­
+endstream
+endobj
+13 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Resources <<
+/Font <<
+/Fcpdf0 17 0 R
+/Fcpdf1 18 0 R
+>>
+/ProcSet 4 0 R >>
+/MediaBox [0 0 595 842]
+/CropBox [0 0 595 842]
+/Rotate 0
+/Contents 14 0 R
+/Annots [ 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R 418 0 R 419 0 R 420 0 R 421 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R 483 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R 539 0 R 540 0 R 541 0 R 542 0 R 543 0 R 544 0 R 545 0 R 546 0 R 547 0 R 548 0 R 549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 556 0 R 557 0 R 558 0 R 559 0 R 560 0 R 561 0 R 562 0 R 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R 569 0 R 570 0 R 571 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R 577 0 R 578 0 R 579 0 R 580 0 R 581 0 R 582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 591 0 R 592 0 R 593 0 R 594 0 R 595 0 R 596 0 R 597 0 R 598 0 R 599 0 R 600 0 R 601 0 R 602 0 R 603 0 R 604 0 R 605 0 R 606 0 R 607 0 R 608 0 R 609 0 R 610 0 R 611 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R 625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 656 0 R 657 0 R 658 0 R 659 0 R 660 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R 674 0 R 675 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 681 0 R 682 0 R 683 0 R 684 0 R 685 0 R 686 0 R 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 694 0 R 695 0 R 696 0 R 697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R 729 0 R 730 0 R 731 0 R 732 0 R 733 0 R 734 0 R 735 0 R 736 0 R 737 0 R 738 0 R 739 0 R 740 0 R 741 0 R 742 0 R 743 0 R 744 0 R 745 0 R 746 0 R 747 0 R 748 0 R 749 0 R 750 0 R 751 0 R 752 0 R 753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R 761 0 R 762 0 R 763 0 R 764 0 R 765 0 R 766 0 R 767 0 R 768 0 R 769 0 R 770 0 R 771 0 R 772 0 R 773 0 R 774 0 R 775 0 R 776 0 R 777 0 R 778 0 R 779 0 R 780 0 R 781 0 R 782 0 R 783 0 R 784 0 R 785 0 R 786 0 R 787 0 R 788 0 R 789 0 R 790 0 R 791 0 R 792 0 R 793 0 R 794 0 R 795 0 R 796 0 R 797 0 R 798 0 R 799 0 R 800 0 R 801 0 R 802 0 R 803 0 R 804 0 R 805 0 R 806 0 R 807 0 R 808 0 R 809 0 R 810 0 R 811 0 R 812 0 R 813 0 R 814 0 R 815 0 R 816 0 R 817 0 R 818 0 R 819 0 R 820 0 R 821 0 R 822 0 R 823 0 R 824 0 R 825 0 R 826 0 R 827 0 R 828 0 R 829 0 R 830 0 R 831 0 R 832 0 R 833 0 R 834 0 R 835 0 R 836 0 R 837 0 R 838 0 R 839 0 R 840 0 R 841 0 R 842 0 R 843 0 R 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R 849 0 R 850 0 R 851 0 R 852 0 R 853 0 R 854 0 R 855 0 R 856 0 R 857 0 R 858 0 R 859 0 R 860 0 R 861 0 R 862 0 R 863 0 R 864 0 R 865 0 R 866 0 R 867 0 R 868 0 R 869 0 R 870 0 R 871 0 R 872 0 R 873 0 R 874 0 R 875 0 R 876 0 R 877 0 R 878 0 R 879 0 R 880 0 R 881 0 R 882 0 R 883 0 R 884 0 R 885 0 R 886 0 R 887 0 R 888 0 R 889 0 R 890 0 R 891 0 R 892 0 R 893 0 R 894 0 R 895 0 R 896 0 R 897 0 R 898 0 R 899 0 R 900 0 R 901 0 R 902 0 R 903 0 R 904 0 R 905 0 R 906 0 R 907 0 R 908 0 R 909 0 R 910 0 R 911 0 R 912 0 R 913 0 R 914 0 R 915 0 R 916 0 R 917 0 R 918 0 R 919 0 R 920 0 R 921 0 R 922 0 R 923 0 R 924 0 R 925 0 R 926 0 R 927 0 R 928 0 R 929 0 R 930 0 R 931 0 R 932 0 R 933 0 R 934 0 R 935 0 R 936 0 R 937 0 R 938 0 R 939 0 R 940 0 R 941 0 R 942 0 R 943 0 R 944 0 R 945 0 R 946 0 R 947 0 R 948 0 R 949 0 R 950 0 R 951 0 R 952 0 R 953 0 R 954 0 R 955 0 R 956 0 R 957 0 R 958 0 R 959 0 R 960 0 R 961 0 R 962 0 R 963 0 R 964 0 R 965 0 R 966 0 R 967 0 R 968 0 R 969 0 R 970 0 R 971 0 R 972 0 R 973 0 R 974 0 R 975 0 R 976 0 R 977 0 R 978 0 R 979 0 R 980 0 R 981 0 R 982 0 R 983 0 R 984 0 R 985 0 R 986 0 R 987 0 R 988 0 R 989 0 R 990 0 R 991 0 R 992 0 R 993 0 R 994 0 R 995 0 R 996 0 R 997 0 R 998 0 R 999 0 R 1000 0 R 1001 0 R 1002 0 R 1003 0 R 1004 0 R 1005 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R 1021 0 R 1022 0 R 1023 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1051 0 R 1052 0 R 1053 0 R 1054 0 R 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1059 0 R 1060 0 R 1061 0 R 1062 0 R 1063 0 R 1064 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R 1069 0 R 1070 0 R 1071 0 R 1072 0 R 1073 0 R 1074 0 R 1075 0 R 1076 0 R 1077 0 R 1078 0 R 1079 0 R 1080 0 R 1081 0 R 1082 0 R 1083 0 R 1084 0 R 1085 0 R 1086 0 R 1087 0 R 1088 0 R 1089 0 R 1090 0 R 1091 0 R 1092 0 R 1093 0 R 1094 0 R 1095 0 R 1096 0 R 1097 0 R 1098 0 R 1099 0 R 1100 0 R 1101 0 R 1102 0 R 1103 0 R 1104 0 R 1105 0 R 1106 0 R 1107 0 R 1108 0 R 1109 0 R 1110 0 R 1111 0 R 1112 0 R 1113 0 R 1114 0 R 1115 0 R 1116 0 R 1117 0 R 1118 0 R 1119 0 R 1120 0 R 1121 0 R 1122 0 R 1123 0 R 1124 0 R 1125 0 R 1126 0 R 1127 0 R 1128 0 R 1129 0 R 1130 0 R 1131 0 R 1132 0 R 1133 0 R 1134 0 R 1135 0 R 1136 0 R 1137 0 R 1138 0 R 1139 0 R 1140 0 R 1141 0 R 1142 0 R 1143 0 R 1144 0 R 1145 0 R 1146 0 R 1147 0 R 1148 0 R 1149 0 R 1150 0 R 1151 0 R 1152 0 R 1153 0 R 1154 0 R 1155 0 R 1156 0 R 1157 0 R 1158 0 R 1159 0 R 1160 0 R 1161 0 R 1162 0 R 1163 0 R 1164 0 R 1165 0 R 1166 0 R 1167 0 R 1168 0 R 1169 0 R 1170 0 R 1171 0 R 1172 0 R 1173 0 R 1174 0 R 1175 0 R 1176 0 R 1177 0 R 1178 0 R 1179 0 R 1180 0 R 1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R 1186 0 R 1187 0 R 1188 0 R 1189 0 R 1190 0 R 1191 0 R 1192 0 R 1193 0 R 1194 0 R 1195 0 R 1196 0 R 1197 0 R 1198 0 R 1199 0 R 1200 0 R 1201 0 R 1202 0 R 1203 0 R 1204 0 R 1205 0 R 1206 0 R 1207 0 R 1208 0 R 1209 0 R 1210 0 R 1211 0 R 1212 0 R 1213 0 R 1214 0 R 1215 0 R 1216 0 R 1217 0 R 1218 0 R 1219 0 R 1220 0 R 1221 0 R 1222 0 R 1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R 1230 0 R 1231 0 R 1232 0 R 1233 0 R 1234 0 R 1235 0 R 1236 0 R 1237 0 R 1238 0 R 1239 0 R 1240 0 R 1241 0 R 1242 0 R 1243 0 R 1244 0 R 1245 0 R 1246 0 R 1247 0 R 1248 0 R 1249 0 R 1250 0 R 1251 0 R 1252 0 R 1253 0 R 1254 0 R 1255 0 R 1256 0 R 1257 0 R 1258 0 R 1259 0 R 1260 0 R 1261 0 R 1262 0 R 1263 0 R 1264 0 R 1265 0 R 1266 0 R 1267 0 R 1268 0 R 1269 0 R 1270 0 R 1271 0 R 1272 0 R 1273 0 R 1274 0 R 1275 0 R 1276 0 R 1277 0 R 1278 0 R 1279 0 R 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R 1287 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R 1292 0 R 1293 0 R 1294 0 R 1295 0 R 1296 0 R 1297 0 R 1298 0 R 1299 0 R 1300 0 R 1301 0 R 1302 0 R 1303 0 R 1304 0 R 1305 0 R 1306 0 R 1307 0 R 1308 0 R 1309 0 R 1310 0 R 1311 0 R 1312 0 R 1313 0 R 1314 0 R 1315 0 R 1316 0 R 1317 0 R 1318 0 R 1319 0 R 1320 0 R 1321 0 R 1322 0 R 1323 0 R 1324 0 R 1325 0 R 1326 0 R 1327 0 R 1328 0 R 1329 0 R 1330 0 R 1331 0 R 1332 0 R 1333 0 R 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R 1345 0 R 1346 0 R 1347 0 R 1348 0 R 1349 0 R 1350 0 R 1351 0 R 1352 0 R 1353 0 R 1354 0 R 1355 0 R 1356 0 R 1357 0 R 1358 0 R 1359 0 R 1360 0 R 1361 0 R 1362 0 R 1363 0 R 1364 0 R 1365 0 R 1366 0 R 1367 0 R 1368 0 R 1369 0 R 1370 0 R 1371 0 R 1372 0 R 1373 0 R 1374 0 R 1375 0 R 1376 0 R 1377 0 R 1378 0 R 1379 0 R 1380 0 R 1381 0 R 1382 0 R 1383 0 R 1384 0 R 1385 0 R 1386 0 R 1387 0 R 1388 0 R 1389 0 R 1390 0 R 1391 0 R 1392 0 R 1393 0 R 1394 0 R 1395 0 R 1396 0 R 1397 0 R 1398 0 R 1399 0 R 1400 0 R 1401 0 R 1402 0 R 1403 0 R 1404 0 R 1405 0 R 1406 0 R 1407 0 R 1408 0 R 1409 0 R 1410 0 R 1411 0 R 1412 0 R 1413 0 R 1414 0 R 1415 0 R 1416 0 R 1417 0 R 1418 0 R 1419 0 R 1420 0 R 1421 0 R 1422 0 R 1423 0 R 1424 0 R 1425 0 R 1426 0 R 1427 0 R 1428 0 R 1429 0 R 1430 0 R 1431 0 R 1432 0 R 1433 0 R 1434 0 R 1435 0 R 1436 0 R 1437 0 R 1438 0 R 1439 0 R 1440 0 R 1441 0 R 1442 0 R 1443 0 R 1444 0 R 1445 0 R 1446 0 R 1447 0 R 1448 0 R 1449 0 R 1450 0 R 1451 0 R 1452 0 R 1453 0 R 1454 0 R 1455 0 R 1456 0 R 1457 0 R 1458 0 R 1459 0 R 1460 0 R 1461 0 R 1462 0 R 1463 0 R 1464 0 R 1465 0 R 1466 0 R 1467 0 R 1468 0 R 1469 0 R 1470 0 R 1471 0 R 1472 0 R 1473 0 R 1474 0 R 1475 0 R 1476 0 R 1477 0 R 1478 0 R 1479 0 R 1480 0 R 1481 0 R 1482 0 R 1483 0 R 1484 0 R 1485 0 R 1486 0 R 1487 0 R 1488 0 R 1489 0 R 1490 0 R 1491 0 R 1492 0 R 1493 0 R 1494 0 R 1495 0 R 1496 0 R 1497 0 R 1498 0 R 1499 0 R 1500 0 R 1501 0 R 1502 0 R 1503 0 R 1504 0 R 1505 0 R 1506 0 R 1507 0 R 1508 0 R 1509 0 R 1510 0 R 1511 0 R 1512 0 R 1513 0 R 1514 0 R 1515 0 R 1516 0 R 1517 0 R 1518 0 R 1519 0 R 1520 0 R 1521 0 R 1522 0 R 1523 0 R 1524 0 R 1525 0 R 1526 0 R 1527 0 R 1528 0 R 1529 0 R 1530 0 R 1531 0 R 1532 0 R 1533 0 R 1534 0 R 1535 0 R 1536 0 R 1537 0 R 1538 0 R 1539 0 R 1540 0 R 1541 0 R 1542 0 R 1543 0 R 1544 0 R 1545 0 R 1546 0 R 1547 0 R 1548 0 R 1549 0 R 1550 0 R 1551 0 R 1552 0 R 1553 0 R 1554 0 R 1555 0 R 1556 0 R 1557 0 R 1558 0 R 1559 0 R 1560 0 R 1561 0 R 1562 0 R 1563 0 R 1564 0 R 1565 0 R 1566 0 R 1567 0 R 1568 0 R 1569 0 R 1570 0 R 1571 0 R 1572 0 R 1573 0 R 1574 0 R 1575 0 R 1576 0 R 1577 0 R 1578 0 R 1579 0 R 1580 0 R 1581 0 R 1582 0 R 1583 0 R 1584 0 R 1585 0 R 1586 0 R 1587 0 R 1588 0 R 1589 0 R 1590 0 R 1591 0 R 1592 0 R 1593 0 R 1594 0 R 1595 0 R 1596 0 R 1597 0 R 1598 0 R 1599 0 R 1600 0 R 1601 0 R 1602 0 R 1603 0 R 1604 0 R 1605 0 R 1606 0 R 1607 0 R 1608 0 R 1609 0 R 1610 0 R 1611 0 R 1612 0 R 1613 0 R 1614 0 R 1615 0 R 1616 0 R 1617 0 R 1618 0 R 1619 0 R 1620 0 R 1621 0 R 1622 0 R 1623 0 R 1624 0 R 1625 0 R 1626 0 R 1627 0 R 1628 0 R 1629 0 R 1630 0 R 1631 0 R 1632 0 R 1633 0 R 1634 0 R 1635 0 R 1636 0 R 1637 0 R 1638 0 R 1639 0 R 1640 0 R 1641 0 R 1642 0 R 1643 0 R 1644 0 R 1645 0 R 1646 0 R 1647 0 R 1648 0 R 1649 0 R 1650 0 R 1651 0 R 1652 0 R 1653 0 R 1654 0 R 1655 0 R 1656 0 R 1657 0 R 1658 0 R 1659 0 R 1660 0 R 1661 0 R 1662 0 R 1663 0 R 1664 0 R 1665 0 R 1666 0 R 1667 0 R 1668 0 R 1669 0 R 1670 0 R 1671 0 R 1672 0 R 1673 0 R 1674 0 R 1675 0 R 1676 0 R 1677 0 R 1678 0 R 1679 0 R 1680 0 R 1681 0 R 1682 0 R 1683 0 R 1684 0 R 1685 0 R 1686 0 R 1687 0 R 1688 0 R 1689 0 R 1690 0 R 1691 0 R 1692 0 R 1693 0 R 1694 0 R 1695 0 R 1696 0 R 1697 0 R 1698 0 R 1699 0 R 1700 0 R 1701 0 R 1702 0 R 1703 0 R 1704 0 R 1705 0 R 1706 0 R 1707 0 R 1708 0 R 1709 0 R 1710 0 R 1711 0 R 1712 0 R 1713 0 R 1714 0 R 1715 0 R 1716 0 R 1717 0 R 1718 0 R 1719 0 R 1720 0 R 1721 0 R 1722 0 R 1723 0 R 1724 0 R 1725 0 R 1726 0 R 1727 0 R 1728 0 R 1729 0 R 1730 0 R 1731 0 R 1732 0 R 1733 0 R 1734 0 R 1735 0 R 1736 0 R 1737 0 R 1738 0 R 1739 0 R 1740 0 R 1741 0 R 1742 0 R 1743 0 R 1744 0 R 1745 0 R 1746 0 R 1747 0 R 1748 0 R 1749 0 R 1750 0 R 1751 0 R 1752 0 R 1753 0 R 1754 0 R 1755 0 R 1756 0 R 1757 0 R 1758 0 R 1759 0 R 1760 0 R 1761 0 R 1762 0 R 1763 0 R 1764 0 R 1765 0 R 1766 0 R 1767 0 R 1768 0 R 1769 0 R 1770 0 R 1771 0 R 1772 0 R 1773 0 R 1774 0 R 1775 0 R 1776 0 R 1777 0 R 1778 0 R 1779 0 R 1780 0 R 1781 0 R 1782 0 R 1783 0 R 1784 0 R 1785 0 R 1786 0 R 1787 0 R 1788 0 R 1789 0 R 1790 0 R 1791 0 R 1792 0 R 1793 0 R 1794 0 R 1795 0 R 1796 0 R 1797 0 R 1798 0 R 1799 0 R 1800 0 R 1801 0 R 1802 0 R 1803 0 R 1804 0 R 1805 0 R 1806 0 R 1807 0 R 1808 0 R 1809 0 R 1810 0 R 1811 0 R 1812 0 R 1813 0 R 1814 0 R 1815 0 R 1816 0 R 1817 0 R 1818 0 R 1819 0 R 1820 0 R 1821 0 R 1822 0 R 1823 0 R 1824 0 R 1825 0 R 1826 0 R 1827 0 R 1828 0 R 1829 0 R 1830 0 R 1831 0 R 1832 0 R 1833 0 R 1834 0 R 1835 0 R 1836 0 R 1837 0 R 1838 0 R 1839 0 R 1840 0 R 1841 0 R 1842 0 R 1843 0 R 1844 0 R 1845 0 R 1846 0 R 1847 0 R 1848 0 R 1849 0 R 1850 0 R 1851 0 R 1852 0 R 1853 0 R 1854 0 R 1855 0 R 1856 0 R 1857 0 R 1858 0 R 1859 0 R 1860 0 R 1861 0 R 1862 0 R 1863 0 R 1864 0 R 1865 0 R 1866 0 R 1867 0 R 1868 0 R 1869 0 R 1870 0 R 1871 0 R 1872 0 R 1873 0 R 1874 0 R 1875 0 R 1876 0 R 1877 0 R 1878 0 R 1879 0 R 1880 0 R 1881 0 R 1882 0 R 1883 0 R 1884 0 R 1885 0 R 1886 0 R 1887 0 R 1888 0 R 1889 0 R 1890 0 R 1891 0 R 1892 0 R 1893 0 R 1894 0 R 1895 0 R 1896 0 R 1897 0 R 1898 0 R 1899 0 R 1900 0 R 1901 0 R 1902 0 R 1903 0 R 1904 0 R 1905 0 R 1906 0 R 1907 0 R 1908 0 R 1909 0 R 1910 0 R 1911 0 R 1912 0 R 1913 0 R 1914 0 R 1915 0 R 1916 0 R 1917 0 R 1918 0 R 1919 0 R 1920 0 R 1921 0 R 1922 0 R 1923 0 R 1924 0 R 1925 0 R 1926 0 R 1927 0 R 1928 0 R 1929 0 R 1930 0 R 1931 0 R 1932 0 R 1933 0 R 1934 0 R 1935 0 R 1936 0 R 1937 0 R 1938 0 R 1939 0 R 1940 0 R 1941 0 R 1942 0 R 1943 0 R 1944 0 R 1945 0 R 1946 0 R 1947 0 R 1948 0 R 1949 0 R 1950 0 R 1951 0 R 1952 0 R 1953 0 R 1954 0 R 1955 0 R 1956 0 R 1957 0 R 1958 0 R 1959 0 R 1960 0 R 1961 0 R 1962 0 R 1963 0 R 1964 0 R 1965 0 R 1966 0 R 1967 0 R 1968 0 R 1969 0 R 1970 0 R 1971 0 R 1972 0 R 1973 0 R 1974 0 R 1975 0 R 1976 0 R 1977 0 R 1978 0 R 1979 0 R 1980 0 R 1981 0 R 1982 0 R 1983 0 R 1984 0 R 1985 0 R 1986 0 R 1987 0 R 1988 0 R 1989 0 R 1990 0 R 1991 0 R 1992 0 R 1993 0 R 1994 0 R 1995 0 R 1996 0 R 1997 0 R 1998 0 R 1999 0 R 2000 0 R 2001 0 R 2002 0 R 2003 0 R 2004 0 R 2005 0 R 2006 0 R 2007 0 R 2008 0 R 2009 0 R 2010 0 R 2011 0 R 2012 0 R 2013 0 R 2014 0 R 2015 0 R 2016 0 R 2017 0 R 2018 0 R 2019 0 R 2020 0 R 2021 0 R 2022 0 R 2023 0 R 2024 0 R 2025 0 R 2026 0 R 2027 0 R 2028 0 R 2029 0 R 2030 0 R 2031 0 R 2032 0 R 2033 0 R 2034 0 R 2035 0 R 2036 0 R 2037 0 R 2038 0 R 2039 0 R 2040 0 R 2041 0 R 2042 0 R 2043 0 R 2044 0 R 2045 0 R 2046 0 R 2047 0 R 2048 0 R 2049 0 R 2050 0 R 2051 0 R 2052 0 R 2053 0 R 2054 0 R 2055 0 R 2056 0 R 2057 0 R 2058 0 R 2059 0 R 2060 0 R 2061 0 R 2062 0 R 2063 0 R 2064 0 R 2065 0 R 2066 0 R 2067 0 R 2068 0 R 2069 0 R 2070 0 R 2071 0 R 2072 0 R 2073 0 R 2074 0 R 2075 0 R 2076 0 R 2077 0 R 2078 0 R 2079 0 R 2080 0 R 2081 0 R 2082 0 R 2083 0 R 2084 0 R 2085 0 R 2086 0 R 2087 0 R 2088 0 R 2089 0 R 2090 0 R 2091 0 R 2092 0 R 2093 0 R 2094 0 R 2095 0 R 2096 0 R 2097 0 R 2098 0 R 2099 0 R 2100 0 R 2101 0 R 2102 0 R 2103 0 R 2104 0 R 2105 0 R 2106 0 R 2107 0 R 2108 0 R 2109 0 R 2110 0 R 2111 0 R 2112 0 R 2113 0 R 2114 0 R 2115 0 R 2116 0 R 2117 0 R 2118 0 R 2119 0 R 2120 0 R 2121 0 R 2122 0 R 2123 0 R 2124 0 R 2125 0 R 2126 0 R 2127 0 R 2128 0 R 2129 0 R 2130 0 R 2131 0 R 2132 0 R 2133 0 R 2134 0 R 2135 0 R 2136 0 R 2137 0 R 2138 0 R 2139 0 R 2140 0 R 2141 0 R 2142 0 R 2143 0 R 2144 0 R 2145 0 R 2146 0 R 2147 0 R 2148 0 R 2149 0 R 2150 0 R 2151 0 R 2152 0 R 2153 0 R 2154 0 R 2155 0 R 2156 0 R 2157 0 R 2158 0 R 2159 0 R 2160 0 R 2161 0 R 2162 0 R 2163 0 R 2164 0 R 2165 0 R 2166 0 R 2167 0 R 2168 0 R 2169 0 R 2170 0 R 2171 0 R 2172 0 R 2173 0 R 2174 0 R 2175 0 R 2176 0 R 2177 0 R 2178 0 R 2179 0 R 2180 0 R 2181 0 R 2182 0 R 2183 0 R 2184 0 R 2185 0 R 2186 0 R 2187 0 R 2188 0 R 2189 0 R 2190 0 R 2191 0 R 2192 0 R 2193 0 R 2194 0 R 2195 0 R 2196 0 R 2197 0 R 2198 0 R 2199 0 R 2200 0 R 2201 0 R 2202 0 R 2203 0 R 2204 0 R 2205 0 R 2206 0 R 2207 0 R 2208 0 R 2209 0 R 2210 0 R 2211 0 R 2212 0 R 2213 0 R 2214 0 R 2215 0 R 2216 0 R 2217 0 R 2218 0 R 2219 0 R 2220 0 R 2221 0 R 2222 0 R 2223 0 R 2224 0 R 2225 0 R 2226 0 R 2227 0 R 2228 0 R 2229 0 R 2230 0 R 2231 0 R 2232 0 R 2233 0 R 2234 0 R 2235 0 R 2236 0 R 2237 0 R 2238 0 R 2239 0 R 2240 0 R 2241 0 R 2242 0 R 2243 0 R 2244 0 R 2245 0 R 2246 0 R 2247 0 R 2248 0 R 2249 0 R 2250 0 R 2251 0 R 2252 0 R 2253 0 R 2254 0 R 2255 0 R 2256 0 R 2257 0 R 2258 0 R 2259 0 R 2260 0 R 2261 0 R 2262 0 R 2263 0 R 2264 0 R 2265 0 R 2266 0 R 2267 0 R 2268 0 R 2269 0 R 2270 0 R 2271 0 R 2272 0 R 2273 0 R 2274 0 R 2275 0 R 2276 0 R 2277 0 R 2278 0 R 2279 0 R 2280 0 R 2281 0 R 2282 0 R 2283 0 R 2284 0 R 2285 0 R 2286 0 R 2287 0 R 2288 0 R 2289 0 R 2290 0 R 2291 0 R 2292 0 R 2293 0 R 2294 0 R 2295 0 R 2296 0 R 2297 0 R 2298 0 R 2299 0 R 2300 0 R 2301 0 R 2302 0 R 2303 0 R 2304 0 R 2305 0 R 2306 0 R 2307 0 R 2308 0 R 2309 0 R 2310 0 R 2311 0 R 2312 0 R 2313 0 R 2314 0 R 2315 0 R 2316 0 R 2317 0 R 2318 0 R 2319 0 R 2320 0 R 2321 0 R 2322 0 R 2323 0 R 2324 0 R 2325 0 R 2326 0 R 2327 0 R 2328 0 R 2329 0 R 2330 0 R 2331 0 R 2332 0 R 2333 0 R 2334 0 R 2335 0 R 2336 0 R 2337 0 R 2338 0 R 2339 0 R 2340 0 R 2341 0 R 2342 0 R 2343 0 R 2344 0 R 2345 0 R 2346 0 R 2347 0 R 2348 0 R 2349 0 R 2350 0 R 2351 0 R 2352 0 R 2353 0 R 2354 0 R 2355 0 R 2356 0 R 2357 0 R 2358 0 R 2359 0 R 2360 0 R 2361 0 R 2362 0 R 2363 0 R 2364 0 R 2365 0 R 2366 0 R 2367 0 R 2368 0 R 2369 0 R 2370 0 R 2371 0 R 2372 0 R 2373 0 R 2374 0 R 2375 0 R 2376 0 R 2377 0 R 2378 0 R 2379 0 R 2380 0 R 2381 0 R 2382 0 R 2383 0 R 2384 0 R 2385 0 R 2386 0 R 2387 0 R 2388 0 R 2389 0 R 2390 0 R 2391 0 R 2392 0 R 2393 0 R 2394 0 R 2395 0 R 2396 0 R 2397 0 R 2398 0 R 2399 0 R 2400 0 R 2401 0 R 2402 0 R 2403 0 R 2404 0 R 2405 0 R 2406 0 R 2407 0 R 2408 0 R 2409 0 R 2410 0 R 2411 0 R 2412 0 R 2413 0 R 2414 0 R 2415 0 R 2416 0 R 2417 0 R 2418 0 R 2419 0 R 2420 0 R 2421 0 R 2422 0 R 2423 0 R 2424 0 R 2425 0 R 2426 0 R 2427 0 R 2428 0 R 2429 0 R 2430 0 R 2431 0 R 2432 0 R 2433 0 R 2434 0 R 2435 0 R 2436 0 R 2437 0 R 2438 0 R 2439 0 R 2440 0 R 2441 0 R 2442 0 R 2443 0 R 2444 0 R 2445 0 R 2446 0 R 2447 0 R 2448 0 R 2449 0 R 2450 0 R 2451 0 R 2452 0 R 2453 0 R 2454 0 R 2455 0 R 2456 0 R 2457 0 R 2458 0 R 2459 0 R 2460 0 R 2461 0 R 2462 0 R 2463 0 R 2464 0 R 2465 0 R 2466 0 R 2467 0 R 2468 0 R 2469 0 R 2470 0 R 2471 0 R 2472 0 R 2473 0 R 2474 0 R 2475 0 R 2476 0 R 2477 0 R 2478 0 R 2479 0 R 2480 0 R 2481 0 R 2482 0 R 2483 0 R 2484 0 R 2485 0 R 2486 0 R 2487 0 R 2488 0 R 2489 0 R 2490 0 R 2491 0 R 2492 0 R 2493 0 R 2494 0 R 2495 0 R 2496 0 R 2497 0 R 2498 0 R 2499 0 R 2500 0 R 2501 0 R 2502 0 R 2503 0 R 2504 0 R 2505 0 R 2506 0 R 2507 0 R 2508 0 R 2509 0 R 2510 0 R 2511 0 R 2512 0 R 2513 0 R 2514 0 R 2515 0 R 2516 0 R 2517 0 R 2518 0 R 2519 0 R 2520 0 R 2521 0 R 2522 0 R 2523 0 R 2524 0 R 2525 0 R 2526 0 R 2527 0 R 2528 0 R 2529 0 R 2530 0 R 2531 0 R 2532 0 R 2533 0 R 2534 0 R 2535 0 R 2536 0 R 2537 0 R 2538 0 R 2539 0 R 2540 0 R 2541 0 R 2542 0 R 2543 0 R 2544 0 R 2545 0 R 2546 0 R 2547 0 R 2548 0 R 2549 0 R 2550 0 R 2551 0 R 2552 0 R 2553 0 R 2554 0 R 2555 0 R 2556 0 R 2557 0 R 2558 0 R 2559 0 R 2560 0 R 2561 0 R 2562 0 R 2563 0 R 2564 0 R 2565 0 R 2566 0 R 2567 0 R 2568 0 R 2569 0 R 2570 0 R 2571 0 R 2572 0 R 2573 0 R 2574 0 R 2575 0 R 2576 0 R 2577 0 R 2578 0 R 2579 0 R 2580 0 R 2581 0 R 2582 0 R 2583 0 R 2584 0 R 2585 0 R 2586 0 R 2587 0 R 2588 0 R 2589 0 R 2590 0 R 2591 0 R 2592 0 R 2593 0 R 2594 0 R 2595 0 R 2596 0 R 2597 0 R 2598 0 R 2599 0 R 2600 0 R 2601 0 R 2602 0 R 2603 0 R 2604 0 R 2605 0 R 2606 0 R 2607 0 R 2608 0 R 2609 0 R 2610 0 R 2611 0 R 2612 0 R 2613 0 R 2614 0 R 2615 0 R 2616 0 R 2617 0 R 2618 0 R 2619 0 R 2620 0 R 2621 0 R 2622 0 R 2623 0 R 2624 0 R 2625 0 R 2626 0 R 2627 0 R 2628 0 R 2629 0 R 2630 0 R 2631 0 R 2632 0 R 2633 0 R 2634 0 R 2635 0 R 2636 0 R 2637 0 R 2638 0 R 2639 0 R 2640 0 R 2641 0 R 2642 0 R 2643 0 R 2644 0 R 2645 0 R 2646 0 R 2647 0 R 2648 0 R 2649 0 R 2650 0 R 2651 0 R 2652 0 R 2653 0 R 2654 0 R 2655 0 R 2656 0 R 2657 0 R 2658 0 R 2659 0 R 2660 0 R 2661 0 R 2662 0 R 2663 0 R 2664 0 R 2665 0 R 2666 0 R 2667 0 R 2668 0 R 2669 0 R 2670 0 R 2671 0 R 2672 0 R 2673 0 R 2674 0 R 2675 0 R 2676 0 R 2677 0 R 2678 0 R 2679 0 R 2680 0 R 2681 0 R 2682 0 R 2683 0 R 2684 0 R 2685 0 R 2686 0 R 2687 0 R 2688 0 R 2689 0 R 2690 0 R 2691 0 R 2692 0 R 2693 0 R 2694 0 R 2695 0 R 2696 0 R 2697 0 R 2698 0 R 2699 0 R 2700 0 R 2701 0 R 2702 0 R 2703 0 R 2704 0 R 2705 0 R 2706 0 R 2707 0 R 2708 0 R 2709 0 R 2710 0 R 2711 0 R 2712 0 R 2713 0 R 2714 0 R 2715 0 R 2716 0 R 2717 0 R 2718 0 R 2719 0 R 2720 0 R 2721 0 R 2722 0 R 2723 0 R 2724 0 R 2725 0 R 2726 0 R 2727 0 R 2728 0 R 2729 0 R 2730 0 R 2731 0 R 2732 0 R 2733 0 R 2734 0 R 2735 0 R 2736 0 R 2737 0 R 2738 0 R 2739 0 R 2740 0 R 2741 0 R 2742 0 R 2743 0 R 2744 0 R 2745 0 R 2746 0 R 2747 0 R 2748 0 R 2749 0 R 2750 0 R 2751 0 R 2752 0 R 2753 0 R 2754 0 R 2755 0 R 2756 0 R 2757 0 R 2758 0 R 2759 0 R 2760 0 R 2761 0 R 2762 0 R 2763 0 R 2764 0 R 2765 0 R 2766 0 R 2767 0 R 2768 0 R 2769 0 R 2770 0 R 2771 0 R 2772 0 R 2773 0 R 2774 0 R 2775 0 R 2776 0 R 2777 0 R 2778 0 R 2779 0 R 2780 0 R 2781 0 R 2782 0 R 2783 0 R 2784 0 R 2785 0 R 2786 0 R 2787 0 R 2788 0 R 2789 0 R 2790 0 R 2791 0 R 2792 0 R 2793 0 R 2794 0 R 2795 0 R 2796 0 R 2797 0 R 2798 0 R 2799 0 R 2800 0 R 2801 0 R 2802 0 R 2803 0 R 2804 0 R 2805 0 R 2806 0 R 2807 0 R 2808 0 R 2809 0 R 2810 0 R 2811 0 R 2812 0 R 2813 0 R 2814 0 R 2815 0 R 2816 0 R 2817 0 R 2818 0 R 2819 0 R 2820 0 R 2821 0 R 2822 0 R 2823 0 R 2824 0 R 2825 0 R 2826 0 R 2827 0 R 2828 0 R 2829 0 R 2830 0 R 2831 0 R 2832 0 R 2833 0 R 2834 0 R 2835 0 R 2836 0 R 2837 0 R 2838 0 R 2839 0 R 2840 0 R 2841 0 R 2842 0 R 2843 0 R 2844 0 R 2845 0 R 2846 0 R 2847 0 R 2848 0 R 2849 0 R 2850 0 R 2851 0 R 2852 0 R 2853 0 R 2854 0 R 2855 0 R 2856 0 R 2857 0 R 2858 0 R 2859 0 R 2860 0 R 2861 0 R 2862 0 R 2863 0 R 2864 0 R 2865 0 R 2866 0 R 2867 0 R 2868 0 R 2869 0 R 2870 0 R 2871 0 R 2872 0 R 2873 0 R 2874 0 R 2875 0 R 2876 0 R 2877 0 R 2878 0 R 2879 0 R 2880 0 R 2881 0 R 2882 0 R 2883 0 R 2884 0 R 2885 0 R 2886 0 R 2887 0 R 2888 0 R 2889 0 R 2890 0 R 2891 0 R 2892 0 R 2893 0 R 2894 0 R 2895 0 R 2896 0 R 2897 0 R 2898 0 R 2899 0 R 2900 0 R 2901 0 R 2902 0 R 2903 0 R 2904 0 R 2905 0 R 2906 0 R 2907 0 R 2908 0 R 2909 0 R 2910 0 R 2911 0 R 2912 0 R 2913 0 R 2914 0 R 2915 0 R 2916 0 R 2917 0 R 2918 0 R 2919 0 R 2920 0 R 2921 0 R 2922 0 R 2923 0 R 2924 0 R 2925 0 R 2926 0 R 2927 0 R 2928 0 R 2929 0 R 2930 0 R 2931 0 R 2932 0 R 2933 0 R 2934 0 R 2935 0 R 2936 0 R 2937 0 R 2938 0 R 2939 0 R 2940 0 R 2941 0 R 2942 0 R 2943 0 R 2944 0 R 2945 0 R 2946 0 R 2947 0 R 2948 0 R 2949 0 R 2950 0 R 2951 0 R 2952 0 R 2953 0 R 2954 0 R 2955 0 R 2956 0 R 2957 0 R 2958 0 R 2959 0 R 2960 0 R 2961 0 R 2962 0 R 2963 0 R 2964 0 R 2965 0 R 2966 0 R 2967 0 R 2968 0 R 2969 0 R 2970 0 R 2971 0 R 2972 0 R 2973 0 R 2974 0 R 2975 0 R 2976 0 R 2977 0 R 2978 0 R 2979 0 R 2980 0 R 2981 0 R 2982 0 R 2983 0 R 2984 0 R 2985 0 R 2986 0 R 2987 0 R 2988 0 R 2989 0 R 2990 0 R 2991 0 R 2992 0 R 2993 0 R 2994 0 R 2995 0 R 2996 0 R 2997 0 R 2998 0 R 2999 0 R 3000 0 R 3001 0 R 3002 0 R 3003 0 R 3004 0 R 3005 0 R 3006 0 R 3007 0 R 3008 0 R 3009 0 R 3010 0 R 3011 0 R 3012 0 R 3013 0 R 3014 0 R 3015 0 R 3016 0 R 3017 0 R 3018 0 R 3019 0 R 3020 0 R 3021 0 R 3022 0 R 3023 0 R 3024 0 R 3025 0 R 3026 0 R 3027 0 R 3028 0 R 3029 0 R 3030 0 R 3031 0 R 3032 0 R 3033 0 R 3034 0 R 3035 0 R 3036 0 R 3037 0 R 3038 0 R 3039 0 R 3040 0 R 3041 0 R 3042 0 R 3043 0 R 3044 0 R 3045 0 R 3046 0 R 3047 0 R 3048 0 R 3049 0 R 3050 0 R 3051 0 R 3052 0 R 3053 0 R 3054 0 R 3055 0 R 3056 0 R 3057 0 R 3058 0 R 3059 0 R 3060 0 R 3061 0 R 3062 0 R 3063 0 R 3064 0 R 3065 0 R 3066 0 R 3067 0 R 3068 0 R 3069 0 R 3070 0 R 3071 0 R 3072 0 R 3073 0 R 3074 0 R 3075 0 R 3076 0 R 3077 0 R 3078 0 R 3079 0 R 3080 0 R 3081 0 R 3082 0 R 3083 0 R 3084 0 R 3085 0 R 3086 0 R 3087 0 R 3088 0 R 3089 0 R 3090 0 R 3091 0 R 3092 0 R 3093 0 R 3094 0 R 3095 0 R 3096 0 R 3097 0 R 3098 0 R 3099 0 R 3100 0 R 3101 0 R 3102 0 R 3103 0 R 3104 0 R 3105 0 R 3106 0 R 3107 0 R 3108 0 R 3109 0 R 3110 0 R 3111 0 R 3112 0 R 3113 0 R 3114 0 R 3115 0 R 3116 0 R 3117 0 R 3118 0 R 3119 0 R 3120 0 R 3121 0 R 3122 0 R 3123 0 R 3124 0 R 3125 0 R 3126 0 R 3127 0 R 3128 0 R 3129 0 R 3130 0 R 3131 0 R 3132 0 R 3133 0 R 3134 0 R 3135 0 R 3136 0 R 3137 0 R 3138 0 R 3139 0 R 3140 0 R 3141 0 R 3142 0 R 3143 0 R 3144 0 R 3145 0 R 3146 0 R 3147 0 R 3148 0 R 3149 0 R 3150 0 R 3151 0 R 3152 0 R 3153 0 R 3154 0 R 3155 0 R 3156 0 R 3157 0 R 3158 0 R 3159 0 R 3160 0 R 3161 0 R 3162 0 R 3163 0 R 3164 0 R 3165 0 R 3166 0 R 3167 0 R 3168 0 R 3169 0 R 3170 0 R 3171 0 R 3172 0 R 3173 0 R 3174 0 R 3175 0 R 3176 0 R 3177 0 R 3178 0 R 3179 0 R 3180 0 R 3181 0 R 3182 0 R 3183 0 R 3184 0 R 3185 0 R 3186 0 R 3187 0 R 3188 0 R 3189 0 R 3190 0 R 3191 0 R 3192 0 R 3193 0 R 3194 0 R 3195 0 R 3196 0 R 3197 0 R 3198 0 R 3199 0 R 3200 0 R 3201 0 R 3202 0 R 3203 0 R 3204 0 R 3205 0 R 3206 0 R 3207 0 R 3208 0 R 3209 0 R 3210 0 R 3211 0 R 3212 0 R 3213 0 R 3214 0 R 3215 0 R 3216 0 R 3217 0 R 3218 0 R 3219 0 R 3220 0 R 3221 0 R 3222 0 R 3223 0 R 3224 0 R 3225 0 R 3226 0 R 3227 0 R 3228 0 R 3229 0 R 3230 0 R 3231 0 R 3232 0 R 3233 0 R 3234 0 R 3235 0 R 3236 0 R 3237 0 R 3238 0 R 3239 0 R 3240 0 R 3241 0 R 3242 0 R 3243 0 R 3244 0 R 3245 0 R 3246 0 R 3247 0 R 3248 0 R 3249 0 R 3250 0 R 3251 0 R 3252 0 R 3253 0 R 3254 0 R 3255 0 R 3256 0 R 3257 0 R 3258 0 R 3259 0 R 3260 0 R 3261 0 R 3262 0 R 3263 0 R 3264 0 R 3265 0 R 3266 0 R 3267 0 R 3268 0 R 3269 0 R 3270 0 R 3271 0 R 3272 0 R 3273 0 R 3274 0 R 3275 0 R 3276 0 R 3277 0 R 3278 0 R 3279 0 R 3280 0 R 3281 0 R 3282 0 R 3283 0 R 3284 0 R 3285 0 R 3286 0 R 3287 0 R 3288 0 R 3289 0 R 3290 0 R 3291 0 R 3292 0 R 3293 0 R 3294 0 R 3295 0 R 3296 0 R 3297 0 R 3298 0 R 3299 0 R 3300 0 R 3301 0 R 3302 0 R 3303 0 R 3304 0 R 3305 0 R 3306 0 R 3307 0 R 3308 0 R 3309 0 R 3310 0 R 3311 0 R 3312 0 R 3313 0 R 3314 0 R 3315 0 R 3316 0 R 3317 0 R 3318 0 R 3319 0 R 3320 0 R 3321 0 R 3322 0 R 3323 0 R 3324 0 R 3325 0 R 3326 0 R 3327 0 R 3328 0 R 3329 0 R 3330 0 R 3331 0 R 3332 0 R 3333 0 R 3334 0 R 3335 0 R 3336 0 R 3337 0 R 3338 0 R 3339 0 R 3340 0 R 3341 0 R 3342 0 R 3343 0 R 3344 0 R 3345 0 R 3346 0 R 3347 0 R 3348 0 R 3349 0 R 3350 0 R 3351 0 R 3352 0 R 3353 0 R 3354 0 R 3355 0 R 3356 0 R 3357 0 R 3358 0 R 3359 0 R 3360 0 R 3361 0 R 3362 0 R 3363 0 R 3364 0 R 3365 0 R 3366 0 R 3367 0 R 3368 0 R 3369 0 R 3370 0 R 3371 0 R 3372 0 R 3373 0 R 3374 0 R 3375 0 R 3376 0 R 3377 0 R 3378 0 R 3379 0 R 3380 0 R 3381 0 R 3382 0 R 3383 0 R 3384 0 R 3385 0 R 3386 0 R 3387 0 R 3388 0 R 3389 0 R 3390 0 R 3391 0 R 3392 0 R 3393 0 R 3394 0 R 3395 0 R 3396 0 R 3397 0 R 3398 0 R 3399 0 R 3400 0 R 3401 0 R 3402 0 R 3403 0 R 3404 0 R 3405 0 R 3406 0 R 3407 0 R 3408 0 R 3409 0 R 3410 0 R 3411 0 R 3412 0 R 3413 0 R 3414 0 R 3415 0 R 3416 0 R 3417 0 R 3418 0 R 3419 0 R 3420 0 R 3421 0 R 3422 0 R 3423 0 R 3424 0 R 3425 0 R 3426 0 R 3427 0 R 3428 0 R 3429 0 R 3430 0 R 3431 0 R 3432 0 R 3433 0 R 3434 0 R 3435 0 R 3436 0 R 3437 0 R 3438 0 R 3439 0 R 3440 0 R 3441 0 R 3442 0 R 3443 0 R 3444 0 R 3445 0 R 3446 0 R 3447 0 R 3448 0 R 3449 0 R 3450 0 R 3451 0 R 3452 0 R 3453 0 R 3454 0 R 3455 0 R 3456 0 R 3457 0 R 3458 0 R 3459 0 R 3460 0 R 3461 0 R 3462 0 R 3463 0 R 3464 0 R 3465 0 R 3466 0 R 3467 0 R 3468 0 R 3469 0 R 3470 0 R 3471 0 R 3472 0 R 3473 0 R 3474 0 R 3475 0 R 3476 0 R 3477 0 R 3478 0 R 3479 0 R 3480 0 R 3481 0 R 3482 0 R 3483 0 R 3484 0 R 3485 0 R 3486 0 R 3487 0 R 3488 0 R 3489 0 R 3490 0 R 3491 0 R 3492 0 R 3493 0 R 3494 0 R 3495 0 R 3496 0 R 3497 0 R 3498 0 R 3499 0 R 3500 0 R 3501 0 R 3502 0 R 3503 0 R 3504 0 R 3505 0 R 3506 0 R 3507 0 R 3508 0 R 3509 0 R 3510 0 R 3511 0 R 3512 0 R 3513 0 R 3514 0 R 3515 0 R 3516 0 R 3517 0 R 3518 0 R 3519 0 R 3520 0 R 3521 0 R 3522 0 R 3523 0 R 3524 0 R 3525 0 R 3526 0 R 3527 0 R 3528 0 R 3529 0 R 3530 0 R 3531 0 R 3532 0 R 3533 0 R 3534 0 R 3535 0 R 3536 0 R 3537 0 R 3538 0 R 3539 0 R 3540 0 R 3541 0 R 3542 0 R 3543 0 R 3544 0 R 3545 0 R 3546 0 R 3547 0 R 3548 0 R 3549 0 R 3550 0 R 3551 0 R 3552 0 R 3553 0 R 3554 0 R 3555 0 R 3556 0 R 3557 0 R 3558 0 R 3559 0 R 3560 0 R 3561 0 R 3562 0 R 3563 0 R 3564 0 R 3565 0 R 3566 0 R 3567 0 R 3568 0 R 3569 0 R 3570 0 R 3571 0 R 3572 0 R 3573 0 R 3574 0 R 3575 0 R 3576 0 R 3577 0 R 3578 0 R 3579 0 R 3580 0 R 3581 0 R 3582 0 R 3583 0 R 3584 0 R 3585 0 R 3586 0 R 3587 0 R 3588 0 R 3589 0 R 3590 0 R 3591 0 R 3592 0 R 3593 0 R 3594 0 R 3595 0 R 3596 0 R 3597 0 R 3598 0 R 3599 0 R 3600 0 R 3601 0 R 3602 0 R 3603 0 R 3604 0 R 3605 0 R 3606 0 R 3607 0 R 3608 0 R 3609 0 R 3610 0 R 3611 0 R 3612 0 R 3613 0 R 3614 0 R 3615 0 R 3616 0 R 3617 0 R 3618 0 R 3619 0 R 3620 0 R 3621 0 R 3622 0 R 3623 0 R 3624 0 R 3625 0 R 3626 0 R 3627 0 R 3628 0 R 3629 0 R 3630 0 R 3631 0 R 3632 0 R 3633 0 R 3634 0 R 3635 0 R 3636 0 R 3637 0 R 3638 0 R 3639 0 R 3640 0 R 3641 0 R 3642 0 R 3643 0 R 3644 0 R 3645 0 R 3646 0 R 3647 0 R 3648 0 R 3649 0 R 3650 0 R 3651 0 R 3652 0 R 3653 0 R 3654 0 R 3655 0 R 3656 0 R 3657 0 R 3658 0 R 3659 0 R 3660 0 R 3661 0 R 3662 0 R 3663 0 R 3664 0 R 3665 0 R 3666 0 R 3667 0 R 3668 0 R 3669 0 R 3670 0 R 3671 0 R 3672 0 R 3673 0 R 3674 0 R 3675 0 R 3676 0 R 3677 0 R 3678 0 R 3679 0 R 3680 0 R 3681 0 R 3682 0 R 3683 0 R 3684 0 R 3685 0 R 3686 0 R 3687 0 R 3688 0 R 3689 0 R 3690 0 R 3691 0 R 3692 0 R 3693 0 R 3694 0 R 3695 0 R 3696 0 R 3697 0 R 3698 0 R 3699 0 R 3700 0 R 3701 0 R 3702 0 R 3703 0 R 3704 0 R 3705 0 R 3706 0 R 3707 0 R 3708 0 R 3709 0 R 3710 0 R 3711 0 R 3712 0 R 3713 0 R 3714 0 R 3715 0 R 3716 0 R 3717 0 R 3718 0 R 3719 0 R 3720 0 R 3721 0 R 3722 0 R 3723 0 R 3724 0 R 3725 0 R 3726 0 R 3727 0 R 3728 0 R 3729 0 R 3730 0 R 3731 0 R 3732 0 R 3733 0 R 3734 0 R 3735 0 R 3736 0 R 3737 0 R 3738 0 R 3739 0 R 3740 0 R 3741 0 R 3742 0 R 3743 0 R 3744 0 R 3745 0 R 3746 0 R 3747 0 R 3748 0 R 3749 0 R 3750 0 R 3751 0 R 3752 0 R 3753 0 R 3754 0 R 3755 0 R 3756 0 R 3757 0 R 3758 0 R 3759 0 R 3760 0 R 3761 0 R 3762 0 R 3763 0 R 3764 0 R 3765 0 R 3766 0 R 3767 0 R 3768 0 R 3769 0 R 3770 0 R 3771 0 R 3772 0 R 3773 0 R 3774 0 R 3775 0 R 3776 0 R 3777 0 R 3778 0 R 3779 0 R 3780 0 R 3781 0 R 3782 0 R 3783 0 R 3784 0 R 3785 0 R 3786 0 R 3787 0 R 3788 0 R 3789 0 R 3790 0 R 3791 0 R 3792 0 R 3793 0 R 3794 0 R 3795 0 R 3796 0 R 3797 0 R 3798 0 R 3799 0 R 3800 0 R 3801 0 R 3802 0 R 3803 0 R 3804 0 R 3805 0 R 3806 0 R 3807 0 R 3808 0 R 3809 0 R 3810 0 R 3811 0 R 3812 0 R 3813 0 R 3814 0 R 3815 0 R 3816 0 R 3817 0 R 3818 0 R 3819 0 R 3820 0 R 3821 0 R 3822 0 R 3823 0 R 3824 0 R 3825 0 R 3826 0 R 3827 0 R 3828 0 R 3829 0 R 3830 0 R 3831 0 R 3832 0 R 3833 0 R 3834 0 R 3835 0 R 3836 0 R 3837 0 R 3838 0 R 3839 0 R 3840 0 R 3841 0 R 3842 0 R 3843 0 R 3844 0 R 3845 0 R 3846 0 R 3847 0 R 3848 0 R 3849 0 R 3850 0 R 3851 0 R 3852 0 R 3853 0 R 3854 0 R 3855 0 R 3856 0 R 3857 0 R 3858 0 R 3859 0 R 3860 0 R 3861 0 R 3862 0 R 3863 0 R 3864 0 R 3865 0 R 3866 0 R 3867 0 R 3868 0 R 3869 0 R 3870 0 R 3871 0 R 3872 0 R 3873 0 R 3874 0 R 3875 0 R 3876 0 R 3877 0 R 3878 0 R 3879 0 R 3880 0 R 3881 0 R 3882 0 R 3883 0 R 3884 0 R 3885 0 R 3886 0 R 3887 0 R 3888 0 R 3889 0 R 3890 0 R 3891 0 R 3892 0 R 3893 0 R 3894 0 R 3895 0 R 3896 0 R 3897 0 R 3898 0 R 3899 0 R 3900 0 R 3901 0 R 3902 0 R 3903 0 R 3904 0 R 3905 0 R 3906 0 R 3907 0 R 3908 0 R 3909 0 R 3910 0 R 3911 0 R 3912 0 R 3913 0 R 3914 0 R 3915 0 R 3916 0 R 3917 0 R 3918 0 R 3919 0 R 3920 0 R 3921 0 R 3922 0 R 3923 0 R 3924 0 R 3925 0 R 3926 0 R 3927 0 R 3928 0 R 3929 0 R 3930 0 R 3931 0 R 3932 0 R 3933 0 R 3934 0 R 3935 0 R 3936 0 R 3937 0 R 3938 0 R 3939 0 R 3940 0 R 3941 0 R 3942 0 R 3943 0 R 3944 0 R 3945 0 R 3946 0 R 3947 0 R 3948 0 R 3949 0 R 3950 0 R 3951 0 R 3952 0 R 3953 0 R 3954 0 R 3955 0 R 3956 0 R 3957 0 R 3958 0 R 3959 0 R 3960 0 R 3961 0 R 3962 0 R 3963 0 R 3964 0 R 3965 0 R 3966 0 R 3967 0 R 3968 0 R 3969 0 R 3970 0 R 3971 0 R 3972 0 R 3973 0 R 3974 0 R 3975 0 R 3976 0 R 3977 0 R 3978 0 R 3979 0 R 3980 0 R 3981 0 R 3982 0 R 3983 0 R 3984 0 R 3985 0 R 3986 0 R 3987 0 R 3988 0 R 3989 0 R 3990 0 R 3991 0 R 3992 0 R 3993 0 R 3994 0 R 3995 0 R 3996 0 R 3997 0 R 3998 0 R 3999 0 R 4000 0 R 4001 0 R 4002 0 R 4003 0 R 4004 0 R 4005 0 R 4006 0 R 4007 0 R 4008 0 R 4009 0 R 4010 0 R 4011 0 R 4012 0 R 4013 0 R 4014 0 R 4015 0 R 4016 0 R 4017 0 R 4018 0 R 4019 0 R 4020 0 R 4021 0 R 4022 0 R 4023 0 R 4024 0 R 4025 0 R 4026 0 R 4027 0 R 4028 0 R 4029 0 R 4030 0 R 4031 0 R 4032 0 R 4033 0 R 4034 0 R 4035 0 R 4036 0 R 4037 0 R 4038 0 R 4039 0 R 4040 0 R 4041 0 R 4042 0 R 4043 0 R 4044 0 R 4045 0 R 4046 0 R 4047 0 R 4048 0 R 4049 0 R 4050 0 R 4051 0 R 4052 0 R 4053 0 R 4054 0 R 4055 0 R 4056 0 R 4057 0 R 4058 0 R 4059 0 R 4060 0 R 4061 0 R 4062 0 R 4063 0 R 4064 0 R 4065 0 R 4066 0 R 4067 0 R 4068 0 R 4069 0 R 4070 0 R 4071 0 R 4072 0 R 4073 0 R 4074 0 R 4075 0 R 4076 0 R 4077 0 R 4078 0 R 4079 0 R 4080 0 R 4081 0 R 4082 0 R 4083 0 R 4084 0 R 4085 0 R 4086 0 R 4087 0 R 4088 0 R 4089 0 R 4090 0 R 4091 0 R 4092 0 R 4093 0 R 4094 0 R 4095 0 R 4096 0 R 4097 0 R 4098 0 R 4099 0 R 4100 0 R 4101 0 R 4102 0 R 4103 0 R 4104 0 R 4105 0 R 4106 0 R 4107 0 R 4108 0 R 4109 0 R 4110 0 R 4111 0 R 4112 0 R 4113 0 R 4114 0 R 4115 0 R 4116 0 R 4117 0 R 4118 0 R 4119 0 R 4120 0 R 4121 0 R 4122 0 R 4123 0 R 4124 0 R 4125 0 R 4126 0 R 4127 0 R 4128 0 R 4129 0 R 4130 0 R 4131 0 R 4132 0 R 4133 0 R 4134 0 R 4135 0 R 4136 0 R 4137 0 R 4138 0 R 4139 0 R 4140 0 R 4141 0 R 4142 0 R 4143 0 R 4144 0 R 4145 0 R 4146 0 R 4147 0 R 4148 0 R 4149 0 R 4150 0 R 4151 0 R 4152 0 R 4153 0 R 4154 0 R 4155 0 R 4156 0 R 4157 0 R 4158 0 R 4159 0 R 4160 0 R 4161 0 R 4162 0 R 4163 0 R 4164 0 R 4165 0 R 4166 0 R 4167 0 R 4168 0 R 4169 0 R 4170 0 R 4171 0 R 4172 0 R 4173 0 R 4174 0 R 4175 0 R 4176 0 R 4177 0 R 4178 0 R 4179 0 R 4180 0 R 4181 0 R 4182 0 R 4183 0 R 4184 0 R 4185 0 R 4186 0 R 4187 0 R 4188 0 R 4189 0 R 4190 0 R 4191 0 R 4192 0 R 4193 0 R ]
+>>
+endobj
+14 0 obj
+<<
+/Length 238841
+/Filter [/FlateDecode]
+>>
+stream
+xœ´½;²å¼Î%èç(r'ô~¸åTD™}‡°ŽèØé´SÓ/’Xk ôÿƑêFÜï$@âAl¢H†ò¿¿Cú3âÏ1ý¬Û´þ§õçŽáïçߟñïÿ*ÿÿÿþ ?û:óŸÿÿÿ½Çÿ?ÿ³â§Âó—Ì[὏ñ÷`ûï÷Oéó³NW˜ý¿ý÷Ï
+¾©²î[Ue:~¦sû;ŽÃÏqT]ˆÊx¥0Ÿ÷ŸiZn 1ñ=»ÒyŠì¦ágZÚhŽŸcŸâ·Ênûٖ#"À_$hLwƟ¥ˆ;ϊ)
+žûÏ>,„¿‚—Ÿq¨£ÿ‰Ìæúã:³qØ–2\qÂف$²ûåX¶ãg;Šfc3ñ¿?Ûòs. á/ácý9¦*
+ý‡‘ìÃÏyNÎj_~öysV€EŠþ‰Õ/G±lMÆ9ýLóTD.?v3á24Øú§Q€ô8‹ŸÎêØ~Ææ¹ ½ÀÖÿÑ(ÖégXÃ(Këíg=–+|3
+j„¥µ‘^àF1?gqÎX–b—bÀég+ü¼ýÍ-؟pk±š§?gEX¬Ð?²z6ŠmýÙ¶0
+Àß0ªqŽ£ |…XAk±òQ•Fí¬~©
+“Ê뜖µ—mo€ø
+ÂHò{†Ôs iÎn8[Ìsê $›ùg,ÿª?¿þýh)_!–±ýD_‘›™Ëë.°ÛæŸc»‚¨ïÀyþY×)
+¾Y«á‹µÊ/QÞ嫱ŒµXk¶ïµ áËX‡¡®a”§¿ØÃŽÅXcÑva›ñUðqyåUûT%lŒ;9ðùih£Z*êøùó?¾|ќgî^
+éÀñ«Ï› H`+8ƒ2Éù¹Ó|Ò
+ãj3´ Â(¾‡ï“‡°Îø›CØÃ_¿Nûe/ˆ2­h>x˜WŒí“ª‚Íi ü´oŠæSlR'qÉ/nÙ\؈ϟ¡voƒ>(š­¦)“ڏžM)¹·]0ÁQh´IÑ,ÚÄÀ`¶ƒ?©“8·ÉX㌥€S°
+@7‹Ú¡©“îÏ S¿R’³”ݖœ…üÜ[]6ug)à”œ¥~‹g!R'qÉÇOb¸xËY š­¦)“ÚïØD¾Aæ~nÚÎ@›ÈYh¶ƒ?©“8· nRÃÈ]ÎBél‡n¤Nº?3Ì>šéåûl¿òŸ».NgÙ§Öϝ¥n,g!R'qÉÇOb¸xËY š­¦)“ÚïØD¾Aæ~nÚÎ@›ÈYh¶ƒ?©“8· nRÃÈ]ÎBél‡n¤Nº?šàUWf'S3ƒ½Ù~ N-ð}Õ»‡ÙýÉûІZ¦Àø=Ì°x3›çÖ·€]Or³[Á”IÎGr<‡F¹ÀîÆwáÏ©h…F Lú>rV{|äöØ]`ŒÇžBŽÕžYž$€àktIȇ2m, Â0ÁRF€@´B!©úÈ1÷½ù˜ð´`êu,\¡M°\1Ó?rÍ2M®yLÙ5 ›a1ºæ1d×,¼‚k’³Qf9É5ےrá>ErMJEë]3ëûÈ5¡ÒtàMÖøl>¥
+t¸)É€ÉÙ(³™bڛg’roNK¾;Þ)”ŠVhd”YßGº1Tþ#,‡ì¶wÈLÿÌA§1ö%G Âp³%FŒò.I£ð
+!ƒœA9å A:Å°A¾tPJEëÃFÖ÷™ƒšJrH°¾Àp3SŠ.h*»ƒÚ€Ø
+ΠLrd
+†è†a;ùƒ:‹sÃlC{Em;ââ>àI–t´S7Pgݟ…ØÉ^r
+±+¤ö!·©™þ‘óÖ-žb·½}¯]` ”u¿ÅC,6=b·µ})²œA™ä|$×%)-ˆ’/C,¥¢2éûlßÁTRHë lJ!ˆBe…X ˆ­à Ê$G¦@ $¥Qòeˆ¥T´B#P&}Ÿ­ Îöp”ƒ/ëÅöƁø
+WüŠä‚ɓ¨òûÖ¯g›kÔ̆½Yöі®
+3ʼn¼ø“zÌSy!h˜)NæÅÝ›ç8—n¤^^›Ðóמ;ȁO?üfüÖÃo
+:MH˅Osåâ53%º¸¤C–ú zÀAÅ,rqiÁԒò8ž¹8Õs‡&û ”
+òej´Šó–©¯/Söit0Çûðej@Z¦LŒ2ëûʦ¨†ŽMÆ+|†MQ,7/i
+nm¢UœÏ°)J• c@+3˜Û`7&8›) •­Ð”Iß7>õä X‘—Ãõ+öý§`¦ãSO¿¿®ð¾oÌîüá¯Â¯”‰K„ƒÿ*YŽߘmA »ƒ¯~He+4eÒ÷•{+àWø +ö6X®¬Ó\wŸ¸ö5¹)²_±·ƒ_™RÙ
+@™ô}e’€½Ì7›ôDœÝ|àŠ˜ž{)wÍñ¼ú&ý⌻ööÐj×~Çï£]{¶‹ÿvíÁÝwí=Hm¡EÜüJ’ÎvèFê¤û+»önì|ß!θks×^†á®=ÛÅÿ »ön"04Rcàä.ÃP:Û¡©“îÏ<xð1¢i.1>©½N|/“ÚžÏ+n'µ;΢]1˜¤Â—4‰™p¨i.¼Ñ{P
+9d©Ÿ '©äÀI,ehš+-؃Z’CÇ3§¦zaR ö7LR© '±‚Os9Hõ rÈRƒ™4I%Nb)CÓ\iÁԒò8žÍ"r*꿛dÕ©óx"ä̗tÖ'S lÃɕ¹ëwE¬\óœƒgÏüĤcs#í俦íPyœ3׍àÓâN—–ô™‹ªCpèN÷gkÈPLΫc7ÄÄuñ9ø2U—+ë(ÚÉJ‡oäcB ̋8‚‹;XÒ.¼Á…;Ýé½saa<$_Ãö%$÷|ži¼ÒBHÆ{郋÷šB0^|!HãÍè=¦äͽÔOÐ!V‚%CAZZ°Çš|ºÇ+3’ÉþƒK‚9Ò¤zLÉ·{©ÁL ±â€,
+Ò҂=Öäáý8ž­E?ó4Xy™–=hpýæn¥‡v§K0ú;úg ÚC«ˆªG­úÉtWxùÇ­MÛ­ØÓ>µ†I­6¨UC·E­à Ê$ç#¹õ[¨•ôk”c+ZI¾}þP*Z¡(“¾ÏÖ"öŠó¡×‚MÑ„1 úµå¦8[ÙH7E­Tâ¦gP&9Éŀ@‰Á‚¯L©S#£Ìú>‹Á!"î5*÷·çó0Ÿý®Þ:õ»z ‚®cÞՃ"!×múƒÏ¼«×Iý=AÅV2ƒ¥{LyW¯ÇÃ|ö»zdƒA¥‚Œ°‚Ç`R1øÌ»zÔ`&FPq@„• Å`iÁSÞÕëÆñÆ îãäzpS Op°wŸ/,cØIêcS
+l©+vZvE2é7[Å9”Û_à>Vëh”K,íH'¸Ù
+ÜsÑ»‡Õý¹cÛ}Odᙋ öˆÂfðÁ½Ð
+08Y¥éÖÈ?;™•NZý»ìëþ‰~2«;©õ$aho ¥ð–Ï‘i8®0Ní5ÅÁ£eëèàØÞ7lgP&9ÉÅÑAPâè øêè ¤¢2éûìè ©¤^°¾À8hJñp ©ìGm@lgP&92‚GÁWG!­Ð”IßWÂé¨$ §#Ë;öáõ?;ïTUcdº ŽXãªÞa2ĀêõêPY¯üY¯.‰û¸|Vœ5KŒ»JQú‹]‰:ëþJT•£.ˆ#V¼Ò¸UiFU¼ÀýU¯\mÂ[¨{¥!“±LBÁ[,}%“dµß(~åÙCÈé’ãÌ÷>ºwàô‚Ó¢¬ryPžæ±²¿Wf&º¤ÊBlbÁ¼,GåtøÍ4Åjyä˟…R·XYˆ”Iß7* ©ˆ"Y÷ð+ ñ«*óÅύ±²)“™âŒ……ÎXWˆï}ˆ<cU¡3_xé3"NkZn"¬˜Š¤ñB{„(^ˆ©H:öz‡«NÊ9FÔè1U9Éâ ½‚»ÇT%Aƒzˆ‹O=¦²º©H­¸?©n†1%Ê'DXƒÒ¸úd—3e´;÷PXjÃJ”†LÆC^‹R;ÕS-ãd’_z.V’|'€-ûï,ÙÚ#´èßñxZ÷n€ë,WÄʚxq+!¾À…¶ïiù¿÷qù¶t/ê9®ÞøÒ¿¤BºÍqè•u*¦E~-¶]ë&Æ5ª®%-À¡}O þ87 ëE=ÄÕ=_ì—t] —ú;Ý_‰½ó”®/±øj;ïÄ^~ÿ)~Ý Âú•’ázìU²¼øǺÉàbïW±”¼ÏØ»çu,µS·#Õ|÷b¯ÌÀ vƒ«Y7B¤ìr¦£Î=ٖڄ°¦¥!3öîyUKíTëH¥Á“I~{Ïîà
+µ—`| µG¾Ë­µ{wäL‹žÜªAlÅöˆÇ^}I§Í:q—è¹¦£fâÎØ+éhßÓ9³N÷G¾KÅ<ÔîÝ!3!,zjOÎb+UWìÕ®ڗt¾¬ç†aô\Óá2qgì•t´ïédY§û+±ÙYŠ½€¿—X| µ‡Wb/R4=Ô^{Zœe†&cïÞ-Î*ƒS žqqÜ=ö*eT¤á+Ž Ç^¶S·5­ÐŠûóØëfSZq@ìi…–ãfì¥]{÷¸B Ú,K±£"å¿æ‚I(x«´2IVûY
+ Ü?¤Àã /פ˜KÂKÏçÛOBÂËٟú†)0G>õËû8B
+̞OýJ
+9l] v Xö|êW2<æȧ~¥%9œ/žúՅ$žðrö§~…a
+̑OýêÚOÙó©_I!‡­ ˎa˞OýJ†§ÀùÔ¯´$‡óÿBpÞóB/àï%X_bqÇá•à¼¨ ܱ¤…^ff"|ôà¬ÌMð_ÒB/¸{pVª¨2GãB/@Îl§nSZè÷çÁÙÍ0¦tâ€XÒB/Ǎ*»œ)ï—Ü—¸Ð+µ Oq¡—C&c™„‚§´ÐK“dµß9¯>íJ¾Fî!0!qÖ›¤ºbDõÆAžyìªÆÞcb!ÙªH¬$K8œPQ—‹ÉRF8¡2©œlý$‰õd ‡*êA-É!ãq7
+IŸYP)žLëtäÏTL3 2¿"&ÖóŒ‡Ò¨ºæÛÉŠu9} ÄÀªžñ8š¸s†!é †Æ³hî/éAÇN¤‡>eÜÃö%$÷|Þ ÒÓ¬J'n7˜ÅÖ(W[•T]™Þ¨Ë”BYê'é1¤ =Ù2ªdLÌò“ìáz1HKÆAڍÂàvƒÁ aP™I!–=(…²ÔOÒcHAF ™IZ°‡ë=Ä Ìôۃ<s÷H„bòåòËÕ g¥–îóõ¯ˆ•é(ñÛ% Ã]!gú2ÿ5†ô»BŽôY(j ÂâÎ -é3ó]â'a§û³2G÷AHæWÄĔ¥ø5HÕý®3} Š?î
+9º/A!pÛǙ¾ŝAZÒæDŏÀN÷GŒ$H÷`"|Eù²æܯ(w<y0sEå°ÌV½"Ì™Û
+Þ PY Nº?‹ÁP,„Ü!®¡£è¯ êƒ14µ\ƒa<(JjÄXr÷<¤%{êÆœtv¾#'ÿ»¦_ƒrr/ÉÉOr‘¹Iϐ»33à‚XyH!V„Ú™¢\dîò£üAÅ}\>r‘I\drW.2¥Ï< Auº?ËEº2Pd~EL<Èk@QuÏER(ñuç†a.2©‘‹LîÊE¦ô'ebé§N÷gËm‡Mì‚{À½„ä>àfðÐÝì5Ì?ùf/"B§t³W§€Çt³ù“:‰û¸|à1ÝìEî
+À”ÎvèFê¤ûÃ<ä»zÉüŠ`âu½T=à1^Ø+þ¤NâÜ0
+òϱüoȳl5¿@o˗Ìç9–ßñÛó‡ò;¼|Ç\~GW
+RÃP~ç{óú{ûkó-‹ù’ÅîŽÅtÃbº_±»]1Ý­˜oVì/VÌ÷*ækonUüõçÛÒ¯&F³ÝËæÝek®çòl³îìÖ T²ã³ª¨Gª\’aÃîLë’±¦ò¾aGÄÌâ©hµØ+Y
+°œSY‘w6íÎn-Â˸\1“
+CĔ–Ö8pr—a(íÐmJËjÉ0¿õàݒ†7­ ±òäèxÚÂÄ’oÏã™#/¶ÄuXJꁚô‡%´n(AXÂ+Àºf ±jR'qŸ(¿½î@½¢d>¸¬ÝgÞjíRÖ¨“îÏ<ø°å·ÃiŸûW†vÚr~ÚzB0Œ-8È0àOÃ$qŸ(߆fÔ8¸»a ]íR֖ “îo·óHž=„oÕáXéáÙ™ÇÃۑí¢ïÕáäãí7œ„äæ)úæN1²ü·tæÑ7ïˆXT~h
+‰¶¦¡´M¡3AhžG»,hLÿÛȵ¯'¿UilWÕWÄYÓöVçØ÷
+øÁ›ê 3zààMêA)䐥o*¯Ç3zSçèM€ƒ7©µ$‡<Ž—¼édÀÖ¯pÁÔâÛћ
+¼Eo¼I= E²ÔèM‡`yÓnZÞ´3„˛؃z“CÇC3•ÏšºÔ]‹~ØJOyñÏãv‹9~¦q-
+”YÀ47ølùuåólC8Ç؃RÈ!Ký=Ê }°Æ¡|¯ŒSap¥ ìA-É!ãÙÇіæên®SÞ Ó¶ñ¢¼gOÛD‰aǠĢœ]yÊNcG„¨I’ØývÎu íÛlÍùŸ#–ŸµLï¾íçh{$„‘äýP×Õ½y
+Ý8®ÍÙHø.N3%wqᇂ3ğ\zƸ@ÊasMiÎ~ㆃ¦´kRüßYzG¹ ªN«;ΑýæèÝæè¼ÔI\ð™1¹Ì™æìÜåÌÎ2f_‰OÔokSm-Îî5£Æ´©öa!ü|"€±ÿY•7üº9«âç89+Âb…þ‘ÕƒúDu®P÷õœ‡…ˆ¯õscuŒJ"DŒôÃÞfnήX~@ÁÀ¥Ðk`g$‰Ý¯s¶ëÜC=]|6K
+-;§5I¿ÌìëBÛÁÔYÜÇå[Žç_R×}IgnP=„e²ÑJÅ@šÿ<Ë·/S§Ê«.řëtz¿"¦ê:S[áÙÊo6ٟvyò|´“cù„Q»ñ'u÷qùøê±®âЎ]4¶h§² Îº?Ì·7žu59šá
+[‰}íʘ©¼¸Î£í>þ#\·<‡6ó,¯œ¶“Ô#@ñí8 tó½X£âahë
+ý{XýŸ\[e{l®uy˜·ãޗóïRw[ÚO×DÖ6»ô©¼ŽaV«87Ê$ç#¹5gyý ʍµØÛÊS*}M*[¡(“¾Ï.ª2•v˗ÖÐoàmYeŠµÍXi
+„>•WZÁ”IÎ'È­–”¶ùC¾ÒÞ)­Ò°Q&}…Üu±Ç¡ÝëFF|ë½"ÇzQ“÷˯qÖc‹ ¹=ºŸ?„ë¼ýi]¼ÞË[Ö8úÄØ\Wç-hÑ!ښÃ0MB̃%v›„¨aÓ¤ ÎwZd¥àïM×ÿFáAk>~¦iãpʓ9”7ìq…—pkRb}-×siÍËDèSyíÓ¦Vpe’ó rë÷)k
+¼ûÁÞ,hiÀ€t¬@÷’óî‡
+À×ËÇò†C+‹ëQ>ö`³#ݖˆ‚± Lú¾pšÀG>Æ».#¼ûQŽõ&h‰3ÞL)¾»ŽH]”µ± |,†‰ò±2˜îÒDÁX!©ú†cªŒ‡y⦫i²ŸöŽ˜©_q̝UðC_á38&c¬¹å›ªÈù Ž¹³R$`މe”¸0 |Wֈ<ÒýZДIß7S#ãíh>ƒcb¬pLZâŒw™‰ïéŽIuÚX@…a‚¥Œ0¦Û×  ŒT}Å1™ÖÇ<P·ªóÓÞ3õŽé%Šì‡¾À8„rðò ÃsÓ–-_ßû}FwÌM‡Wó¢ ^4¸cn:¶r¤K‡ (“¾/8¦|ŒWF9ŒñŒ¼_êpǔ%ÎxÁø¢”sBÇÄXN^*5¸cºÆt%ÕÈûª6wÌd„gŽ‰ c蘻n–É~Ú;b¦~Ã1õáƒúã؏¹o-1ÚuhhËwš°\Ø쎩¼=…w©L
+é&hÊ¤ï Žé#ã=:c<æ'«y‘,qÆ[oN֓›å˜R Êgó¦ÉӍ0¦{zF^âs¸c>ûä¶ÉÚ¾,g[(Q¹~ñbÕÖ#H.‘<Ù*Ós+8±–—ƒy$0ãÄýác°ü+Tß Ÿ‡Þζ#ØN¨A©z„ýø/0ÇlµÌÎÑ®»hÅjšxSz`uZ€¬¦“±GÒ8tR?Aš±ü‡aÿÙÇÉe¶ôö¦…zPKrÈãxœP·f3kK›½ÇØ ËïÍt؇S0S-`—ÌäRŒC–ú z`ä@#P†›‰Z¨µ$‡<Ž‡…]pg”oïS‹KnÜÌî1žÐñyø^˜QÁ|`åƒmCÝô+füY«µÊ˗•Ôk¢Œ*Öþ´²¬¤n=(…²ÔOÒch)¨àP—#êoJ€?¤…z¸ÞÆ!ã™‹×õ¸l¦õl&a0ȏÑL»•ôfª‘<šIRÈ!Ký$=Ú ÉF  7µP×Û8äq<tql(¿¸”†}’ä‚xe:^><¦9ÎBëÍvÜ x·hÍÞô‰èºµ<OŸ“×/™%\6
+þ~/j÷qùá^ÔÅç¤ä®I)¥³º‘:éþ°–)æ߉`~‡8ƒatÓµ©î_ÑZ¸´üÏ`ÿ&"\Ú½øW$¹ë3’ÒÙÝHtèÁg󾚋œ[a”c»-öº½Áܥ݊òn‰™”gKWÌüFê­Î-õ:«P7³
+=ƨîGU>Rê/X–yý±¥1\1 z8ª¡M<k„[mP@lmÇÒRp뙼+ÂHºº® ÝVÞÅ-EÔH&H˜ïžm¾c™Lm’Ì×1¨úu*aR
+v•„©{áç_q¨*­ö"o2’J¿žä!²UL^Û†VGàS>`סU\:W;ësnó_=݀«Uk9„%ô rÈR?Aò¼Ô<-q(¯üš€![å(Ó=¤%8tãx\üÊòDëÜ3åS磣›©F‚5˜ p0“zP
+¦DÍæ•Gy4÷öb´ãª+ŒÏšÄ©”BYê'èQރ«·kÆÓ‘S`s£¦{HKpèÆñ,`¬–†R«Nívv£<`g{]1ky'-íäy䚔\Ñvxð§q=†Å{H
+qÓÔGÝöWE+Øî­pr{hˆ›ªä Ê$GVÀ)m÷Œ|7eŸâ&05eÒ÷™)ö¸Cõ¯])?Db佺sp‰¥?é{ÜÃ"oP&IJƏ»c׬ýìÆU.q†Ý6ªsê’Óá-§Øã†eøqðÝ9¸,!·Øã–&yƒ2I’%øãîÜFÜîg܂•J›.3^rŒZtɞ±Ç¢©1ªÚæê®Á[wåí ~(vJþ¤Nâ>’ÏzE™Us‚X¤s‹%Z¡)“ÚïØÄ]bvâPiÍ՝D6¡—È&lR'qnýÜ+ëñNÁ*òIgûÎj¿G4ÌÎR~Å-9K™S.ÉYˆðB¸{p–ÉYÆ)&¶‰?©“¸ä³
+ŠºÆ3ÕUæej5*s+ý Çr…x«ºl1,Ί°X¡¿³z:ŠmýÙ¶0
+Àß0ªqŽ£ |…XAk±òQ•FMV¿T-E± Zځۺ†rZ®{ˆ8vDf’‘Öhæ6Jg·ïÍ ÎˆÀÎH»ß¿gö[ ·²9DœØÿ¯e†å±^óD=#€ˆáÄÞ?©/<ümf«ñ5µÇù_«ISR ¾B,#J³Dˆ´£r´U0gW3¹†!°+ˆúœglß±Œ¨­I¦AàïÇ[˜×³ì8þ*„Üú¶£6Þ ÂH.NÚÒ©œ]ÝzC2ˆQ_ y6šº‹¶·¡%á€ØQ³©n:­õ9¿ ækyQ(.EDÝæG8£¾ @òð·±m°õ¤ó¬‡‰?é<D,Mè×IˆH¿Mù蝖À®Ý‰tvD8;8»ßÏil´L,ªáۜ¦l[ñC.3û€ÙŸpžÓ´Jqd…súbE˜¤ìï¬~=ŠZè±F£ò:°¬!N¼ÞŠÉæa¹Cl׬QÏȪbÀ,RÔĬ¬š_æÜZü¯eRŽ–¥$Ä
+º´ßF¢ZòÆࢋý«s£=ü’MÄ6+¹ýlß°„Ôûϕ]=÷:DvËÂdbNefžj)á§NâþNBāý¿Gãµ,/Ìߪ‚v{!_!jdÀäËH„Hï·¥-[8;d(:;$OO>n‰˜M¼Ä‚iøû7àڞ„•ÏOQ2øü»ý,óÒÒ»õïQ˜ì´ZFØî‹]]f\Ú§PË µó=)Uoµ
+µ•*
+øü4´Q­Fu´UÍgƒkÂtî^~öuàøk±¼M$ °œA™ä|‚Üi>i…z l’Él•†2éûh±ˆn›ÀÙ÷‰OÍR÷ùùԐÛ¶§txjÀôôÐ&°­
+Dì'ç ¾ @òp.a•)X™A¼fò‚P®Pâð}ò¶:iŸ®½vÚÖ#mê"Þ÷éê´<ìӑ?©“¸äŸ:6uÁ[ûtÍÖ3nêfµ=›RRÛrd~AðÞÐ#mêÒ&Ú§£Mؾ¥MÝ,Îm6RóZÓ£ÛÔ¥t¶ŸiS7ëþÌ0<Û)ßàÑÌ ?7vÂxöSÎÂálŸÓ¦nçgKñ“ƒîÞrˆfë7u³ÚïØD¾AæoO]Ó¦.m"g¡MØ>§MÝ,.œ·åí­KÚÔ%w9 ¥³}K›ºY÷g†á Wù¨^ø¹yÀÎÀ°r‘eû“;q~Â?9ˆáà-gh¶Î!%±Sû›È7Èü‚ÀÏM›Àh9 mÂö1¦&vâ©cüܤ†3»œ…ÒÙ>ÇÅN÷gc¾í×Þlº¼à”Ë©\àx×ï¯ç6TÝí Ã^à-–WÁm¾0„îú…Ø
+Î[Ìíӝ¼„—X^·ù’/ïú¥Ô%–W!eÒ÷‘³ÚÃà#·Çîo±¼
+Çjϊ,aO@ðÝB§Ô¸„ò*&XʸÄò*4BRõ‘cî{ó19&`¿& »–º¿v:Ó?rÍýÌ®yLÙ5 ã2é1ºæ1d×ÜÏèšäl”YÎGrͶ¤\¸O‘\“RÑ:E×Ìú>rM¨ä×Në ŒË¤M)^4m*ëj 09e–#Sà2iRâ¢iðÕ5ԐŠVh„k¨“¾t;c¨üGXÙ;lþ™ƒN9bìKŽ„áfKŒûœ#F-ÎtŠ1#ËùH.tŠaƒ|頔ŠÖ%†¬ï35•ä`}áf¦]ÐTvµ±œA™äÈtPPš ’/”RÑ
+ÔY÷g!v²—œB¬Á
+©}ÈíCj¦ä¼u‹'†ØmoßkØeÝoñ‹MO…Ømm_ŠlgP&9É]XÉrñK¾ ±”ŠVhʤï³}SI!¬/°J(…
+•b1 ¶‚3(“™’”Dɗ!–RÑ
+¢-]Õ*iÕÖV•-Þ´;”šÍØ.þFÄ}\þa g ®ûmíÛ¸üü¡tµC7R'ݟ}ÿ—(6%Ã,k{úîmhµ4\0ÌbŵÜ05,Ã8£Nâ>.C5înHW;t#uÒý‘Ãëb{HíCnR3ý#çÅ`=¤ši/°JXA¦Pˆ…¥Ø
+Î[4ªB!á…U¬'±äËK©±Ðh‰®ðFˆ…JRõ¶@ ¥D¡²B,ÄVp>ョPHxgëÉC,ù2ÄR*B,4Úc¸xe;æuÀrÈåÈë€å™þÙvÎë˖×››ÕÒ®î HŽ‘ƒ.s\ çÓ»´@Ø܌” g_i€RѺÅu€¬ï³)ëœ×Àú››A)¸ T–ƒb@lã:@–#SÀÍH¹s†žÖ(­[\Èú>›`‡R—M0!Éë12C‰Ë¦$¹ ҕ¿}ÕýúáÙ/ žyñÌKˆg·†X†%ñçJl·’(–¼šxöˉg^O<ó‚âyYQ|`˜1ÏákíÚ4‰‚C›ã4¾Ã͆™âD^üI=橼4Ì'óâî‹ÍsœÎK7R/¯Mèù‹áKÏäŠÀ§~3~ëá7èÃvòu÷‰ò‡à1ü,%wÝcÔ.e‡à1âþ‚Ǹ`õ+‚C³ßL·ß4Æ~sµƒ?©“¸O”?áÀÉ]†¡t¶KÙ!xÌ;†éos9ûë\±á….gw£ s¶;ÿ=xŒ_oCÁ-ô^aÓ_îBa{¾Þ%ëþŠÇ¸`õ;Ä<F·ß4Æ~sµ‹ÿ<&CÃÀc0pzŒ_ýa;\„ÔI÷GoÉyΫå€}ÚÖOëºi[¦ô‚,ñ9½ç#¿ [¯ywþ(Ò»±žøó79ƒrË/FÂÀIiѝ|ü)­G|'f}Ÿ%Ãmyµ¬/°MÆ &jPYÓ8 ˆ­[\-Ïrd
+LÆHi5òå4ŽRÑzÄÕò¬ï³iÜxtËåÂhy¼}˜î1Z ïù<›ËÕâriͼ–´Ë‹æŽáE0kZ6¯Å%òºy+QÎ]
+9ÌÝÒ¹cx¿Ë’Ï]†ß³¦åsג¶÷Ð¥žÌÅþÃkIÖ´ˆ®!h]ƒT9­£÷Rƒ™6Þ6²¤¥t—áw•¬i1ݵ$‡í½åôz>kË.NLpè«Ó÷Ýóyæâõ"æìâÓlïº tš– ž&$æÊÅkfJtqI!‡,õô˜UdŠ..rqiÁԒò8ž¹8Õs‡&û ”
+›ŒWø ›¢6Xn^ÒÜÚD«8ŸaS”*ƀVf0·ÁnLp6S@*[¡(“¾o|êÉA±"/‡ëWìûOÁLÿƧž~~/\á3|ߘÝùÂ_…_)—ÿU²ÿ¾1ۂv_ý*ÊVhʤï++ö:WÀ¯ðVìm°\Y§)¸î>qíkrSd9¾bo% ¾2¤²2éûÊ${™ÿn6é‰8»ùÀ1=÷RîšãyõMú;Äwíí¡Õ®ýΫ„¸kÏvñ?î=¸û®=£©-´ˆû«„(íЍÔI÷WvíÝØù¾Cœq×箽 Ã]{¶‹?oc›’aˆXuÛ Cî2 ¥³º‘:éþ̃—#šæã“ÚëÄ÷2©íù¼âÆqR»ã,ÚƒI*|I“Ø™ ‡šæ½¥C–ú zp’JœÄR†¦¹Ò‚=¨%9äq<sjª&µ`ƒÁ$•
+Áð"Z.6à6 Á퐄|\æ Çä0¥Á²Uʅ‹‚ž:æÉ:Pö÷dQ§.€ö2S¿á˜çÌÕLÜgu…OwÌs‰•bÉ1Ù*Ρæ øÊ1ωkåëےc²M±RŽø>vL9î8»Â§;&Çj^$Kàγu‡·CBÇÄX@5ÆÂGnY%éFHª¾á˜õ"ª!x&áo墳+vôoøf½ôl‰Îxƒ@ ^«Å*Aöa:xÉ)\ŒÅ’SàϒSIœû( G™²Nù¨ªéθ!øè™
+àek/GÂíkDÛ7„LÂ;ÔàAà>ƊHRÎ
+b+¶G<ör÷„í俦EG!=×tÔLÜ{%í{:gÖéþÈw©˜‡Ú½;d&„EOíÉÍqóÌc¯våÐNþSڇStÑsM‡Ëĝ±WÒѾ§“eî¯Ä^dg)öþ^bñ%Ôv^‰½HÑôP{Eìiq–šŒ½{·8« N%xÆÅYp÷Ø«”Qe†¯8‚{ÙNÝÖ´B+îÏc¯›aLiű§ZŽ›±—vaìÝã
+-h³,Å^ŒŠ”küš &¡à5®ÒÊ$Yíg)0pÿCŒ'¼\“b. /=Ÿwn? /gêW¦ÀùÔ/ïã)0{>õ+)ä°uØ1L`Ùó©_Éð˜#Ÿú•–äp¾xêW’xÂËٟú†)0G>õ«kK<fϧ~%…¶.,;† ,{>õ+žsäS¿Ò’Îÿ ÁyÏ ½€¿—`}‰Å‡W‚ó¢‚`pWĒz™™‰ð Ѓ³27ÁI ½àîÁY©¢Ê ½=8³ºMi¡Wܟg7Ø҉bI ½7b¨ìr¦¼_r_âB¯Ô&<Ņ^™Œe
+žÒB/M’Õ~ç¼ú´+ù¹‡À„lÄYl’êŠÕy汫{‰…d«"±’,ápBE=\J,&Ká„Ê<¤r²õ“$֓%N¨¨µ$‡<ŽwrÄÝ(ôÔ[L,++#0ÛÍD/S—KË3 3¤â²2e¸™¨…zPKrÈãxv'ŸÊùw=·3±*Jðƒ<ýɞލ]GŸg`{ó±²ÞQ<¢6±
+gظT;ù¯±n‘O„˜Yõ(NwÎ7$}fA¥x2­Óý‘?S1Í,ÈüŠ˜XÏ3J£êšgphl'ÿ)Öåô €«zÆãhâΆ¤,Ï¢uº¿¤;eú”qۗÜóy'HO³* ¸Ý`[£Tx\mURtez£B,{P
+9d©Ÿ¤Ç‚ôd˨’11ËOZ°‡ë=Ä -oi7
+ƒTx„@e&…Xö rÈR?I!iA2d&iÁ®÷ƒt0ÓïòÌÝ7"ŠÉ—ËC.Wƒt<ž•Z>ºÏCÖ?¼"V¦£ÄoC”, w…œéËPü×TÒï
+9Òg¡¨-‹;ƒ´¤ÏÌw‰Ÿ„îÏÊ8Ý!™_S–â× U÷»BÎô-(þ¸+äè¾…ÀmgúwiI˜?;Ýy0’ ݃‰ðå˚s¿¢ÜñxäÁÌ•Ã2[õŠ0dn+<ù¤îÁL7e;ù¯)5U>&„ù ¨ç˜ë,éh§nsL¦}Ń©˜V)Ë„ù ’˜ÍC©º<XiÌh'ÿ)%.ËDŽ0õs¤Ýƒ%íÔmÈéÖoN3ÆY_˜Tó½›x\&=Ÿw¦ãÖ×&¸Áì¹ZÁx¤•]Âaš¡”²ç•bÈӌqÍÕ
+
+œªÓ õ –k^떌7¦n¾žo0{>/L#p
+ɖ‚´¸kš±§ -Ý^éò^FP}3Ε«ˆ/%ºw<V^c «ZÊjï‹ÝÓÕ¹x¬ýR<÷jÿ-E ¿Ô€ˆEq&^ Kî~y잪xP·%ŹW.5€bJ|'ó+ P+P]ÉðšÚW®;Ä·ŒòօØõž
+Ê}Ƚ$'?ÉEæ&=CîÎ̀ bå!…Xjgjˆr‘¹Ëvòu÷qùÈE&5r‘É]¹È”>óD,Õéþ,yèÊ@‘ù1ñ K¬EÕ=yH ÄÔYœ†¹È¤F.2¹+™Òž”‰¥Ÿ:ݟ-·6±cì÷’û€›9< ÀCw³×0w7{Á:¥›½
+8å<¦›½ÈŸÔIÜÇå3éf/rW¦t¶Ïéf¯¬ûÃ<ä»zÉüŠ`âu½T=à1^Ø+þ¤NâÜ0
+;"f÷HE«Å^‰ÈR€=¨àœÊŠ¼³iwvk^Æ劙T&Õ¬æ|ãîLë’1¥j.¾qGÄÀZ0©\µØ+Y
+CĔ–Ö8pr—a(íÐmJËjÁ0¿÷àݒ†7­ ±òäèxÚÂÄ’oÏã™#/¶ÄuXJꁚô‡%´n(AXÂ+Àºf ±jR'qŸ(¿½î@½¢d>¸¬ÝgÞjíRÖ¨“îÏ<ø°å·ÃiŸûW†vÚr~ÚzB0Œ-8È0àOÃ$qŸ(߆fÔ8¸»a ]íR֖ “îo·óHž=„oÕáXéáÙ™ÇÃۑí¢ïÕáäãí7œ„äæ)úæN1²ü·tæÑ7ïˆXT~h
+†`G¾7„z”¼D=(…²ÔOЃI\äÀ$/Êð40jÁԒò8æ“oÝy¿}抙”ìš®Åæ¼¥®¤aJ!‡,5˜I©\äÀT/Êðd0jÁԒò8ž•»^òú`ÿœï?÷»ÏùLÿ¬Òõ–—¦°~í#[âø€Çžµ>ï±¥ÍÖ-.Je9É]X‰9¬H‘/?ï)­g\ŽÊú>«m½åÅ(°¾Àö‘¥ð•õy±u‹ËPYŽLtRî1CŸ÷”ºsÊ ²¾Ïbð¹¶[Ëë¾Yô¯íãØÖ²a¾Ž)/›µÌ—¾NuňêI .3øµÎ,Ë̄_ôuûè¸ÅÔI}Ý´™Ê4ݖþ¶ã°’cŒ•i =(…²ÔOУüÝló¥q(ƒs\àJ-ԃZ’CÇÍ­¹}×ÕÊӌÒꢷ˜òÜÔAeÒÞÌ´µ[æÛF[3“ÁؘkfbJ!‡,õ“ô¨wÞ;‡Ù|B2 ®Ԃ=\oãÇñÌLú¶¬}犩™ћjêCô&ƒ£7±¥C–½i/_FÁ›
+<Fo¼I=¨%9äq¼ãMsùh̾s‹9¢7Íe²½ pð&õp)Gô&ÈÞ4—G$zÓ\†½ pð&õ –äÇñŽ7•ў}çS~ð¦úŒÞ8x“zP
+I¶g/VS åm‚ÒFÿG£˜NKÎÙÚ÷ü?ÁÓÏޞÑb»u»­IëQ“³*Z¯-z€´‡ÑÿÑ(ν¤úW?ÿ,2ïíÀ0_ÇۛϓHˆ0–sµ/R1,/ôœÎ$ÝƒÓ‡tãgã$õñ„
+ª‡°L6Z©H³âŸgùöeêTyÕ¥8³`NïWÄT]gj+<[ùÍ&ûÓ.OžO‚vÒa,Ÿ0j7þ¤Îâ>.@=֕ÃCÜÚ±‹ÆíTÔY÷‡ùöƳ®&G3\ácq«”¸ºQ r›°•œe’ã)OîìöXöÑÍa[­Ð”I߇·"`õ¡×Ó:ÞÀm@eÂwÌ»-ÙO¦XjVé®Vr6Ê(ç#¹(1Xð•) •­¦)£¾¯˜ÂŸð¾ èðЋÔöÇ£R»ñuç&¡Ãƒš¸ûãéj‡²¤Nºÿrµa+±¯]3•×y´ÝÇ„ë–çÐfžå•Óv’z(¾„nc¾kÔ@< m]¡
+ÝÆåQ>k‹=jò`5Ë0•)ÊRk{ë&•CWo'PgqÊoU’Ö¿ .ŠçAހZÙÐ*š­¦)³ÚŸ'¯ßò˯¶B]?IÿÕ»‡Úç¦Áé͇®õ¥ßfO¥ëqn„û¯¢v¼vÇGk­™:þÞW¬á£«ÿ“k«lÍµ.óvÜÁûrþ]ênKûéڂÈÚf׀>•×1ÌjçF™ä|$·æ,¯AY ±üà ¨ô5©l…F Lú>»¨ÊTÚ-_ZC¿·e•)Ö6c¥) rS Uœe’#S·]K%¥%y“¯A2[¡(“¾ÏŠ¦R(ÜX÷°­ÈÖo«±ý©Ÿ µ¢ï6úT^m@hgP&9Ÿ ·XRÚæùH{§T´JÃF™ô}r×Å>‡zxt¯Kñ­÷Šë!DMÞ/¿ÆYq,‚æöè~þ®Oðö¤uñz/oYã ècs]Yœ· E‡hkÃ4 1–ØmZ¢„M B.8ßi‘”€¿7]ÿ…­ùø™¦Ã)OæPÞ°Ç^jÀ­I‰õµ\Ï¥4/¡OåµO›ZÁ”IÎ'È­ß{¤¬)ô‹øTúBªÁ®áœ óéɃµ¼[§É‡¾ÖMå
+4VȻָq¸)
+–|i
+ÇTóÄMWÓd?í1S¿â˜;«à‡¾ÂgpLÜEÇ<X/rË7U‘ósg¥HÀ¼Ë(qaø®¬y¤ûµ (“¾o8¦F>ÆÛÑ"|ÇÄXᘴÄï2ßÓ“ê´±€
+ÃKaL·¯A!©úŠc2­Žy nU秽#fê7ÓKÙ}qåàåA‡;æ¦#,[¾¾‡wûŒî˜›¯æEA¼6hpÇÜtlåH—A#P&}_pLù¯Œrãy¿ÔáŽ)Kœñ‚'ðE)ç(„Ž‰±œ¼TjpÇt#ŒéJª‘÷Umî˜ÁOÆÐ1wÝ,“ý´wÄLý†cêÃ?ôƱsÞZb´ëÐЖï4a¹°ÙS,„y{
+ïR™Ü1w:ÒM,ДIßÓG>Æ{tÆxÌO8Vó"Y⌷ޜ¬'7Ë1¥.@”ÏæM;“;¦aL÷ôŒ¼ÄçpÇ|ö5Èm“µ}YÎ:·P¢rý&â+Ī­G\"y²=T¦çVpb-/óH`ƉûÃÇ`ùW ¨¾>+¼mG°PƒRõûñ_`ŽÙj™£]wъÔ4ñml‰ä-Œ=‚”Æ¡“ú zÔäˆå¯8 ûÏ>N.°¥·7-ԃZ’CÇㄺ5›éX[Úì=ÆY~§h¦Ã>œ‚™j»d&—b²ÔOЃ$2ÜLÔB=¨%9äq<,ì‚;£|{Ÿ˜Z\rãfþpñ€ŽÏÃ÷Œ
+æ+lê¦_1ãÏZ­U^¾¬¤^eT±𧕕`%uëA)䐥~’CKA‡ºQSÊüù#-ÔÃõ6yÏ\¼®Çe3•¨d3 ƒAxŒfÚ­¤G0SäÑL’BYê'éÑI4e¸™¨…z¸ÞÆ!ã¡‹c@ùÅõhô¦4D諐$Ä+Óñòá1ÍqZ?h¶ãÁ»Ekö¦OD×­åyúœ¼~É,á²Qð÷{Qƒ¸Ë÷¢.>'%wMJ)íЍÔI÷‡µ„L1ÿNó;Ä £›®MuÿŠÆÐÂ¥ÝàÃø‡4áÒîÅ¿"É]Ÿ‘”ÎvèFê¤ûC>›÷ÕÔXäÜ
+mâY#Üjƒbk;––‚[Ïä]FҍÔu]àì¶ò.n)j¤¾ @ò0AêÄ|÷lóËdj“4`¾ŽA}ЯS “Rpw;Ÿ9m-èþ 1XœÛúoÌ<JŒëDÂ<úI-ݙµ¡þ]0æCk«š4µ]ŸÚ2Ÿk;‡2¶L0À~JG˜2eX÷¿âPUŸmªÐdàåôÉY™“ÏUê0_{õovphh/òÅfšU%”hj°«$LÝ ?ÿŠCUiµy“‘TzPÕ©%@¶ŠÉkÂÐêÜaÊì:´ŠKçjg}Îmþ«§pµj-‡°„”BYê'èQž—š§%å•_0$Ã`«eZ ‡´‡n‹_Yžh{&£Ü`ê|tt3ÕH°3fRJ!‡,5˜©üöû<¸™
+R`ɐ™¤{¸ÞJ Æq¼c¦yâì“ìo03ŠBÁZšèC̤”2« a”úIzŒëæf*‘i­%Ãà`&õp½CÇÃo28»…ÎzƒÁ éî47öpè¤~’mâ#H†Ì$-ØÃõnºq<{ýÍbuWg2ò¯zðnå™L Žç@"D7½;»:»¯ëób„³I`÷  ¾…ë/VFg­H–©êàMÕõç?©+0ĝ²jš‹ïy8lç軶)7â-Ì»!3(“œåÚ®m¿\OàžÂž´URõÙîÐ7M}Ô=l{U´‚íNÑ
+'·‡†¸©JΠLrd쐑ÒvÏÈwcQö)nS#P&}Ÿ™b;TÿڕòCô!FÞ«;—8Pú“.±Ç=,òe’ô¡dü¸;vÍÚÏn\åÿ‡¹w鵜çÕÄæﯨa2èŠmYûœN2 ¼™Ý+ Ø»»Ñi @~}$ñyx±]×åÊw&µK\IÑ%Qu¸Ó6²sè#§ËSJQý¥ëøÐø€nrjI¨ZT¤IÜh(©$øq+Q7“…©Åá`•¥¢™.)ÆȺGͨ>iª¬šm3›jðÕ]ՍyߔCñ³u ÷RúüÐiVE 2(0Igñ)ZÁ[¶Ÿ‘‰©Dõ v ijÍlJ¢2¡–¨Lø;ð³u g2Ñϝ™wsRQ]Qêü½2Ûoó‚yBYúW,AYúšrÊB€%­NYzq ʲn>°Mñ³u ÷RúÌ»!œNf¤„ä5Œ
+I.|±e`û™¨nù`ù’«SÊD•…2áïÀÏցœÉD³5oŒ´ÜœTLYHÝr=ïNY"ïo
+]nóÖT*ò‚€_›(Á|#ó‹ýÙì÷y±lD²ŽÅÁÈɃò‡–wO°!µMšŽ|E6lþ.kÁ¦C‡&†î·û2n=µ¹bÞæ½ú"×,Pþ`¹ïäÚÌ ‚úZöWô—y榨úž|œÊ)*”µ)ê;T¿Ý‹½L}ͽ%\2›åþ±§÷E.mŸËR?Þº“¦í˜;eEÕÊÜ{jÓKYê¿Õ‹¼}]²ëËÊu™Iñ.å›^ ©ö‚eåZš^Êô"µ™ƒbøx¶áeÞ·™£å-ó(õYöé
+ ¯x ªá¶XvCŲ¢B}Cõn/JþZŠëÊ®Wkò½`ùÚ E®•õ
+Á Òú@“÷z3NÑê ªH @EΦqè”Ç8¿Ò5½¶^‘\Š€q̏ pÒú@“7¿ƒåƒÊ“›?¨<ì“è‡5! |›¾éÝv‡n¾‰Ô: šºß_ÓÈ)h_X ÁÏ5ÍLؖñ!Xî+ûi€YŸå¸¦™™âˆ
+åõB>0,_ÒDa~Û§ÛÂÐ!BÑÐ!xzÛ°¹% -ºð–&FHÁߟó ™ãÇ‘2øøR¾îiŸáÝ-i_S®,¨·Œey/톛qŸ[¡A*÷{B¨^– ˆ$ŠS¯ËLµçx<’ÜŒgk”<ËیD»A~›K‰0aäU*pàÍ?^Zî{ȃ\f~ .­$ûµX~²uF„Fýé ̎º°Ö‚ߐ[YZy/£×§Ú/hÕÍÆZ‰Q
+ÅiÙëÆQ³s~ŽTmY–Qƒv5@z7jR ƒ6§W UŽš”¡ycÔ  äY–Qƒv5@úĨI§Ìaҗ6ãðáTýïÛÇql!#c_ç¡G;Ì#)§´
+^Foè?ZÉÈFŽPÃodk¶ò<¾5jÀŒŽ`¾”E÷ÁÆØÕQƒ¾ LÌÒ2Òy9ºC÷ÙRÆñrԐ*~UgËÀï[£f¼w²ÉóÁ|yKÇ6·0“­¥¹Åû˜Ïíe÷<^¡MÒÓ³ ˜pÜ@@=¸–@ë MÞ\KÈE@BY#ƒøÌä ±BÃÇ;ƒpÞÐ çts^l7œ´åuoçtcYîÎ鈟­ËéP€CoF¹C]àÖs:æ¯‡?ԍl¿56•I=–#ò €ï†¶p¨K™è9eÂßK8ԍäL&<ick>kÚN‡º¤Îߏp¨yO0¼Û©ºÁ«™>7¯vBx÷S•…—Cù{
+‡º‘œÝ-Å'Gc¨p«²€4-þP7²ýŒLT7ˆüàë©9êR&ª,” OáP7’s÷mùzëu‰]•…Ôù{ ‡º‘÷÷ zàsó‚+”7`UYxE–¿¯>ñDÎnØⓣ1Ô¸UY@š¿&’xbû™¨nù€ÏM™@(Uʄ¿¯>4ñDÎÝ:Æçfk(±«²:O>@ñÄû{k|íWf6}¼Å-¦S¹”í­ß7†ó쪾í Á^ÊŧWÁk¾„¾õ 9ñW`.>¶Oßäey÷éUðš/ñò­_RÝ}z¶ ü¾¥¬2¬ç2ì.åâÓ«°¯2VT2’PÞâ>•]w—^…ÝJî>½
+…X}K1k:¦Š‰²=pz–úüìtlÿ–jÖ#ªfÛ¢j²ŒÇ¤W¯šm‰ªY¯šÄ,-#—ÒÙ²åÎsŠ š¤Š_7¯š‘ß·T,ٳӂúRÆcÒš–õjteb––‘ŽŠI³%š^}†Tñ+8Â3ԁ߷´ÞT~²¬
+yVسBÆöï)è-FÝ£Å`j¶{‹QS´#9¯SÐÍیHç¥t¡ ›7ÄK%Uüº{³ù}OA…%UH ¾”¡fÂUPX6•ñW`FË@GEAEKQA⥂’*~Ghø}Ï)&ùL×Ìd“fCƒî]™‰ýN8ÞÒÒ}•ðêÌÌ!㬥Ý$Ȟ$À:Kª}ÃCL%²o Í߉­#¹—Ñ—d ÚZR…(v¦Qêø¼¡uäý-%c… Ԉü
+Ôhd­HÚ4²^˜T]ãïď֑œ ¦HŽ4m-'⊝ùՔ:~'ohyÏÄn2É©‰•²šÔ³É=›ÔØþ-åG<ÞĖ:÷k—²ÊqÞb&‡žjbKž;Eþ
+Ìh輔îÎL–»™X⥉%Uü
+ŽÐ2ðûÞ¹ƒ°¤&¨/e1”`
+#
+Q¨‰…¤ø+0/T5…,ïÌb½™‰%^šXR…‰G»W…'L,X2“*¨/e1”`
+F,«‰E‡ø+0~à©)d¹2õf&–xibI&Uo.YŮр²*äÞ¢eUÈØþ½lŠ~€½D?Ë¢f#µ«)(‚cTA÷äýÄ\¸¼ ~–EÍØrçê+øH¿ïˆü¾·dMÑԗ²¨˜‚
+‚eUPtˆ¿&ïˆtTP3¶¬\¡?©â×âý‘ß÷Ö8¡ÔÇ&dù¡D·)›\îɉߟêÚÙxœˆGô хxœ|ˆ¡s (~zbOžDÀ%Ø¢7ñ8»èO<¢Cñø¶Gñ׳Æ5üÈ]ñ
+`ג_ÆÏd¸Q0›_È+~¶^ãR^ÌæóŠÝœÍÉ/ç•7¶Þ[Ðó‹a§g
+r`ë‡oƽ¾)Š¦1üøÑ:’{yú‹ÓnK‰]Š¦1ú»2»8QìhŒÉR¿Ø5ùfÚqù¦N0òÍõwàgë@îåé/NcØqbWÁ:Wf§1ÏæüšËq~ÎÅÕi t9N/ºð›ówÃ_ÆØó6Ô<ÐBá6çÇ]¨1ü=>ïyDcLú :ÑŽË7u‚‘o®¿+þê4Æ CÁ@cÐqjŒ=ýáïP¶¼¿5K¦½å(Û²í¼¬;-Ûbû·&ÈnŸÃü˜ZœY3>âîlèÂÜ8nüÙ @ÌhYâÄȲp¶ëN¼4þ¤Š_›Ÿ#¿ïÕè-êKYc`
+ 5°¬Ë8tˆ¿ï-tTXŒ±¥,Ԉ—Ë8RůÍ{Ë#¿ï-ãÖvr—+DÝã#éÃvQùÏ{k¹‘\.øÌGJ»è47‚ÉÁm>’KD¿ùLQççF…ÒÉun¾ï²ç¹Ñ°×arpŸ—ÄPžs +{ê0Wô7>K’ƒ]» ^tí¤ÖHÁ~¦êÄTøÚÈ\éFÃÞ*ÉÁ™n\CyΝ>îg•¨â„8…¾*ýY¡ÏxÞSññsTñ-É\w‚nÂr¡ÀۆÀ\Uñ™âU\©C¤úr|$Í?²yWªâÊkKbˆýxOÅɞ)4Ñß@  d
+Ì.˜Š³“ZƒTˆ!Rub¢‚*(°ÒPW.Xƒ\CìÇ#y§â„˜B_•þ¢Ðg<oªxEÒ}UèñŽ|Tq…PAÍû/
+R!†Hõåø ‚˜4LÅÉj(—ÀpêǛ*öL¡‰þBƒªÀ<Ò6G'µ©C¤êĤ
+Ï_Ðٌ_óáÜÔ+^§`y‘­QcŒw375Jê¦F™IËÈï#‡¢Úu2^ˇ;•Îòð’¢àÑ&~U̇;%Ë,£C™̳³…Î"
+På¯à-¿OlõTAá‘W…;{ìÏ[ÁØþ‰­ž~î®åÃíoDî܇ð«p—²ÑE¸ØW‰tl#²EKÈxõ«€*Ghø}ÄcÏ®Ó~-Îc/¥g¢ ß}£ïk3QD:汗¡%: ¼*
+På¯à-¿,p–ùysHOÀqZ\ÛûZÊSsŒW;¤¿þÔ^­žÚW>%ÄS{þ®øwjìvjOëÁÖbZûΧ„H¿ƒ7¶¼?rjorÀÉ÷àð§öè8OíU0<µç¯±mA0d}‹­9Á»
+†Ôù;xcëÀû{¼/،è2—[Ô^¾—EíÏ#jìµwÑ®,R¡KºˆM 8Ôe.´Ñj
+në¹ݔ‘Ðeu’Ø%•„D6¡¨x-‹²‹bF—â„”*ܙ ¦9!VQ̍AëQ¥XisQû\Öêï+fmÍ8?ô¥|
+­NÐ"J*¶à5 Å䈼Œæ¢ŠÉn
+J‚ä¯Êœ{ØèN¿©˜ó@É߃INôl!cë'óHôfâ=«kù0Å<vŸ)%ULþª˜]ÎàUÅ<6f¬™-WŸß%ULþ
+ì«Ïˆ¤lCY¡¦ò/눲Ú\|KpqÊÊ÷˜ÇïÝÌ
+7­>/çºß<°›Y§›Zï",sÆÐÞ¾ٖv-ãà6§)^\%²X¯®s¾á¯ÀŒ–ÎKéâê Zâê ðêÕAPůà-¿ï]–4„¨/e\¦x9PX¶«ƒÒ!þ
+V•<Àªêã °ª˜€½…gNõqP”‹Ë{¥]&b{ÄOŸât©¯T$‘í'’_YôbºTq¥ÌyÕOÅí¥EZåAzšK¹ùÌBܯ$º„ÌBüuó ó"M§Ã=Óæ³å/? ©ŸYˆ-¿OdÒ$ŠD}.¯>³w-`™?;´úÌBlè¨(ŸXèðy…8ïƒäá³
+Àù ´ß0}*¾É™œŠm#-µ©è[.ÞåDb:g”Š$²ý–æ“d'¨Û¿2eë NÿŽ÷Lk=ÐÏrdæÄó'ð„Ø%ü½÷ÿ‰ÜËè‹ë^['ï½1׿R€ò–¼è¿?S'¿:Û.€y½ÏŸ¬«Ë_pø½‡ÿ‰œ Îzm½xïž9û•º> å]ý'Þ±½i Ž+–?.¶øbjOž±½Üÿ©ýº8ÿ•ÃÃ:¢h¶Wƒåx ÷ˆN,‹Î‡í­ÞÅ¢³½Õ;²´uäýÛ«b »8o–ö&Rår„«†Ý¿œL¶YnΧ¥]¦í­Ñ«¥¿“­Rƒß‰ä—mïqºxF€šÚ‹1¾˜ÚŽ·t—GfjëéʙÄzò¨¶Ç#f{yzÂß÷pÛìDîeôa=s¸j¦Øi{•:~¯ážÙ‰÷·t—Œ™©­§Kf
+ÕR·‹cÑl/'o9xhûû¶×Ä°†°b¨ÁCË~ÓöR.´½Õ{hÑ6ÒRۋ^±eö»9'ÎÞK«"‰l¿õw!0„XÀË5(æðrÆóÌë'.àå8ßúUC`Z¼õË÷8\L·~•
+1”“!6Xj¼õ«4,¦Å[¿Ê%1ÞúÕI,àå8ßúUC`Z¼õ«Ï–XL·~•
+ 3ߑ¿¢¶1
+“rÁÆ÷âô˜~ù"O:í P›|y<äò4È Ç{©–Ûi{Èü‡W@f8Šßæå´5dJC¾ÒÂÆðDîeôñÚÇv…ŠFZ©'Æ»ø-á‰÷÷Ò8´Ó†È¯€!K~7HÖí­#ì?Þ
+%ëªÁƌ߉ Ëªc
+Vêø¼-1ÜúÉeƚt÷€E w Ë¢âŒç™eÆZι n 5f+X[ðì²ì–ZƒTjôƒ†[f¬9f+è吭e·ÌÐä2G_·Òxb™aBáô|©ñ¾0…À%€‰I=¬A*5úlLL
+Éñ¾0… 4TLÊkË½NwbúU/ËÉH 6ù²î¸¬*N8ދÎ'#ÛÉH+ óÁ o¤s=é\‚‘VühOFZX(”`¤».3j0ÒÊ[âsi2f«Šv2Ò
+^‚Ëž¼ÑÞ߻ߋ?¯¡ÇW£|6¹—àäwb‘yHO“[pd^Rð¡*CC4™§üøøÑ:’{}Ä"³5b‘‰]c‘I=ñ„Ouâý½Xä唊ȯ€Y|(²n±ÈKÈ¥øÑ:’3Á0™­‹Lì‹Lê oÊøÔO'Þßs·5YØÑ£l÷b’Ï7bxÓ/§—½–tzًšÐ-¼ìՋ[4ÀkxًøÙ:{}à5¼ìEìj€I¿§ð²WäýM¼Ä·z‰ü
+Zé|m€|Üyß.žµ3žg|m˜˜œgí
+Á\e^®%„ ²ì}m¬‘uz !ˆ á|m˜/¦S¥²óµiªtH ª4žðµ™P4Bèa'Õ˵„à'&õ”±Æ¦Ë£ dbRH‹) )Ò01‘ ­A¾‰!ö㉠¸‘¯r¶"CâÔú¢ö¹¬Õߏ‡s ÎN^Êɧßá y­fè•øȼ`N>ýŽ½ž§e—~‡oãïÓï蓂äÐ¥ßyâݼó;‹çgã+‹ñ‘ÅÓ‹á…Åð¾âéuÅð¶b|Yñü°b|W1>«øíW}û¶Ÿ“W¢«ÝËáÝåhîŒå½ÃºãäƒÐ”7¬I=Bæj¤ÔpvGðC(Òs؁‰É=BÒjE¯ÈÊkÁҊ<shwœ|–Æå
+r¹†'ŒÆ#« ŠÎÂwÿ̀
+܊é·õ{=Å)ðq£ðge>áxD»|
+àãF¥Ï
+ނ£) ˆ};¹Ùôwð¶'›b@ƒMTŠ `6vœ:¦‚¡ò÷Ùº¼sÍCÀ\kì8±«`H¿ƒ·-¸ÕîóË\%h¸¨_€Ì›£ë!Ž‰ M>Î8ÞÓà¶òaKŒ¨&!©WrÒ7 h-HAß$àÅá “€XýøÙ:{yúsºC댔ùÀŽâ¨žø¨ü®ÌJëÀû{ÜÄ]`r8d» k‡¸ ØñCü N0âpPÁ?Ƚ<}隴fǁÝêú»2+.ÈÀû›¯€Ë}$‹žÀŽêp­ô°è‰ˆãÍב墝Õáæã€ã7܄äá.)Úán1òwâ/áΣÞ°kú¡ÍÞ»ޑ:olxó=daÌÎê€ü
+rI ±oƓ—Ó}{}æ
+”G p¡5È%1Ä~¼y°•æxx+Ê̋Þn!y¾8¿¶¾hŸb*ó•ùyÐ6Å$eÌM1±©C¤ú
+CPR-Èk߂!öã=1éWlÓ­äuç
+R!†HÕkSí;#§M½¼zmBÙi“Ö —ÄûñŒ6¥¾iŒºs i^›R_,zmBÙi“Ö0*Íkh8mJ}ˆxmJË×êµ e§MZƒ\CìÇ3ÚÔ'¢uç2 ¾Ó¦1azmBÙi“Ö bˆT6õéñðÚÔËÉkÊN›´¹$†Ø‡´é ÁÖ¯pŒäÛ^›z¹xmBÙi“ÖÅ©zmjb€U›ªhÕ¦J®ÚÄä›b?ÞSßÖ W÷Hú!žž>ñ§µÜBÚ×m͝¾
+ØÒ,3þ`x>›–¥ Çêk
+)ä‚5È%1Ä~¼çãhÓ57¸¨NŸ¶²+àC}ž=äMàN º-vÀÐõQvÀ€:´5›8t¿¿æjË`E|ΟØ¿æ¾¼û˜Ÿcž‘\Ò$ž õðî¥Í¡^¦>(¬õ MÞ;6ì«þúeåCÕë¸À˜®åòµ,»þ •Pš®‡iì¤ ÄÒ"Py‘(ê˟PE
+Ó䚃l £8ßÆNoš¾68®^¤;HY ƒñîÁ>÷¶“Æ›nÅ1v5» ¢"՗ã£Û°Ñ’r‚xy.Q>ä‚5”o`8õãMXŠB¸ØA*ÍÔÅ„ fñŸ\ùfýBSv›>¥õÆN)×Àø3º³Ÿå<eSœõ¦Õ¦´­9§3kP™#(ÌqR—#*ËuåfDýrnª2ílqæuKU—å-0`¬¨A3T}†ÏÅPuý8ÖÍP±¬¨Pÿ¸ÚÆßÉO4Ö
+ã\áÕÈ´ì|(`l÷ ³cŒ&
+{£èØC÷Fo’„tìò–ü§ƒtó´Ð¬ÜA¤U줡BÍ£ìûŸ}Û=‚ˆ´z«W#ö WúRr0Àòö5ÍEÞ<¸)KýÐ6móÌ^QmݔÏšžË¨ÿV/¶C‚sÊÜÏjyûZçí²Ëå¦,õC/Øt<µªÎužÖMÏeÔ«GilâÆöO,s{|¤+X:ÏF
+\Ã'ËézlCu¶éá)ý›mòg>žœå¦ÃÚ·0ú»àgëHîeôñ­×á9lŠE¹v1Ñâw2‹Ö‘÷7ãíçð&{1\Ëm7©t“˜M(R2™ðWbž-H¹É䑿ÖÕÄ!%“~Ghø}ócé²u}LLy½)Ïõ_KÝÛ öSQì#ª´ê¯Ä,-=—ÒE‡Ð^¨òWáˆ-=¿ˆÂFp_TxðÅá¶m¸ Wú»à×ցœ‰„
+ÖÀnÃÔõw0Ëց÷ßô6”nûæ“1[Ÿ¸Ž6O?YGžË\yö)gž$hñqÂÓ-Èk—Æ0ÄË2ý
+\³Cø˜Ñ2Ðy9ºÃÀ²¥þwRůÊálø}Ëäæ]6ŽÝj-})ýy|ŒwEZn
+ÁûýkãÇ®¥4‡îë/–Ç._Ðt8¯kŸe3J/o›‡g1ÇÅ 0}˶) -Ø-\°D.X.ÐtùŽ‹È 2òÇMÕï0ü†ÑJíë¶v§Ì¥Ï°íZއÁA‰cZ÷Ò¤”ö¥×ÀU·¢¿3Z:/Gwì÷Ør„ÐïŠWJ½.¨JÙ8L¡t¼{ó ÷¹uÛ¬ëy
+1£e órtG‡ØR:K¼©âWå0…ÒE¿yÁ ómn9BñãœMöœ.6¶~ânfi½IpS®v±€/ J0Jz­@ß$æj—
+€×ÒÇò…CI‹ç‘>¶1‹Y ¯%"a,Z~¸M`=_ý[—¾\í*ûŠ|”Äá_¦T¼U¯(»H+}AúXtécUkxK c!„Àꊩi<D‹>Mõô¬ˆ±õ#ŠY™…úZ>œbâ-*(fc¾È_ª"æÃ)fe¦H”ù&–´ÄƒYÀ›™#²…÷µÀZ~ŸPLíùê_GóåÃ)&ú
+rI ±o&vÁ›Qv¼OÈH.Yx˜¿ÜC,à„çÍy!!ƒùÂÌ¥ oú²~ÍCZ}òe&õ(£kP~Í´̤.5H…"ÕWàc™!¨À0Ü㛒ʯ¿” ­a| †Ø÷T|ø㢘ºÕoQL
+R!†HõåøèãeÄi)†>å ¥!eÉ%\ †r §~¼üJâDÇÚ3å2Ö£«‰iX‚ìĄ²“Ö bˆT˜ú·¯i11õr7¥Ž†”˜XC¹†S?ޛ"1ݎ™i„îÚZa\M­õHY³,<­:!·ÕKÂ
+v›™
+åNýxÏ`d CY§ªÜÝèìØÚ-$÷9iŸC÷‘GPò¢óòʯ‰µ-»ÕP*Àp¢ú
+|,c®Ҍu7R~ýe\°†ñ=1œúñö®p¦p4¡ŒWJ»… “#È%;1°%ˆi˜þ݉I©C¤ú
+¡§ú
+|¬¹˜˜ºeÊã¯Ò²“Ö0¾CìǛ{2(» …ÊzA'©î„‰‰C†5”
+ÌuáäÃÌèÌÉ4U§rÑìú)”ßÉ+°ø“²Ï¿F˜‹yXY(ŽwóPnÅ,̻ş¤3Z:/ҕS4”ó`=˜€{sg~à­«ï-þÐÔz}.ËY¥ §S”ÂÁã¡Åª3Z:*œ±¥œžoaRöÍ“#´ ü¾'ŠêO¨>ç“ò‹×¬|W79•hHýI•¨þ ‹¸Ñ2Pz‘2>nÅ©Ùüì‚UUâp§mdçÐGN—§”¢úK×ñ  ñÝäÔ’Pµ¨þH“¸Ñ2PRIðãV£n& S‹ÃÁ*KE3]RŒ‘tšQ}ÒTX5Ûf6Õà«»ªó¾KvJülȽ”>?tFšUQ‚Œ
+«|Huh\S͞Ø c×/h‚lGŠtœ…J~BU–FæºFÀLkM:C›GÚÓ¢d@ceHµs$«ßó$?0ÐÚ3úŁ&Rá@[žhøTÈáòé¿îœF¾¤ð1;`§†ÌY ôëæe‹€)wm2FÇá‘òS)YȱÉþum””ô ]ÓÃ}…÷†
+­ð€ùÞѤëT5¤0ýéc×N€´…&}|µ€tÁÌ¡dLʘëڄ#Ò¿o;.Qzàm¶Þ±¬MˆÝ&#¹oó<zÀŽ$ôk9sz¥<3«/"z–ëT8ÛIì;uaïÙ [5û,]iâ‡i ßd$ˆ«þ;­È¶ ßÉi Mô;©
+dõ³1Öµ ;w÷¬ãøNVù"¥¾Ê,«¨¦„2׎vy¼ßQ“ÊH
+Vr[õRêã,Rø>®î*ËÁ>êX…×æÙ-­mÜ9êó€­l±É4!úQû.¥@ý¨ 9–¥ å¯Hù…”,{¡Œ)€¬kvî棺ŽCJVù*¥íkJ20%Ÿc¢Oð@>Ç¿¯[?T »Pl²ÅùˆMÇ[ÂÅ]Ÿ%ãèrLeL€Š”Mú©Š”dU>dŒ]VÖodpéÖw+ç“¯\»*Ns)º9lUŸ)Œ¤Ý«—îD(Pڄ2P¤”’¥ ”1•Yÿ©n}¯rþº&o\ÇÚ7̆n+~¦ò>²¬û¾g9
+6ƒÑ—3G˜þ²¼¥afÕi MÔ¬©ÚH’U+ÚÇèºFÀ^ÃôW¾Ö %3²(-4Q։T;G²:«Dyü‰Së“Яî3¦TdÅô¿ü»÷¿þûÿøï?þÓÿùìÂIV™³wŸY6 ÆHœûåâJFRÙ}d—­F"hßDÂ32ê^‘üǸt€5,­Öd‹/Ašlñ%dç/2¦²®MØ9"ýû¶ã™ §¾â…“¬“6Å¿ÂO ¬¶Ú@zÁ&qáÔÆÆnx¹p;×ó­ûN#WSúˆEHþ³¬ˆ·u€ýh¾ –EöºÍ›ìêw2À–Vöˆ4Ùâ«ÆÏBÆ@X×&ìÜÝw²Žg.œXù"¥ážOß@ìyO‰]îË¢uߜP: §r:ãšÌ•Ôʘ
+°·ÐDY'RíÉêÌåñ'w}“°þâânÅÆâîüŸþÀ⎮ãå€[f
+Y,tÙ ŽJƒ
+c8b*‚u\
+Á'øjVN1ôDßß"¾Oæ˪n€hù{¬¢l
+ðtÄÒHqò‹ÃcuqÿühÀ’|CÜaQîåÝë4®›¨Ž´U¾<tÌê‹>ÑQ½3n…û7”s½¼|»IosÒxL/ðëʳ?»IÌþ*>ȃô®Š‚®ªN[×E­ë¢£ã½V¯Ómøp|¹À“Îúï÷_±13éŽðSn|
+EîO†MaÉX:»aéUP>GØMA.æ!åZy-‚¯•ŽºµoÍê(/\|æý°òõ|³SU:Ô˺˚wñÈU/ïãQWƒÔêË >û½qäµù4|mvÜy¤u”ƒN÷òê÷ÌÚU+çæë³ëä—]%¿®<ùÑúà·^]¾[7|¹‘Õé ¬íp]ûh]{h¢éÖdÉ·”¨ùíY¾û@b/:r>0Š“ÿ@}Þ=œ úòpÜY}qJŸ•¿CZ¹DÙª><>Ǎ™¾ ü¥*ÜÈýÿåÿþ¯Ï®W—2óG‹ÛŽVæAãxdsår܆
+ŸlµAOí~–Kt7åÝM*uÒËÑݤ]%¿9.?¬~å»
+Áݤô®–JFκ.Fк.Fr<Wä*¾š•kt7©B_î&džT£ªåﱊrþSî¦n9êñk–C˜QwS~ÖtŒðÞ¼1”GÊ{»JêRUFÝ~ðR”X-ߌÂunðl®ÜbÔmæå;.¨ukt*híd†Z¿E™ÕǨY£ƒ ôlÔ-ÑA¶qÔîGtõ®ÙÞ¢ƒL»
+~}yôÇêW>»dJïFµ·è ³®cÔ¬ÑAÖËÁA†¯få%:Èòdy‰2<qc£pùæ.ÓX•²S€ü(ftîOŽB™àÆÛ|…cÂDyNpG—ôžˆ€QêÊc‚Þb
+_ݕ‡©ñ]ÃãÔÚõ šï±öã^¬¼Œò6—"֋m.U¬Û\ÊX/6¼FL]Ò2¸ÖúàZñáƒ*=”oV²VÑ«?·æÉ*Ô*ìпY£ynN«ž:ž¼Þ·Ç¯Ê2ëRU,UFÌ¿W¸ñƒˆ´·ú…
+|…côP¾Ñªñy«(kSYÒjYiÙ-kižÖYY–ØV_v¾ëû7Æƅµ÷‚
+_Û€xÇ«—‡ãȗóqzêþ?`ðÿÜ#S«Éå:¯‹ùò1ß'b}Žeâ£$o¢û½œ½-Ȓ8Éê§8Oƒu£§eð“8y‚_à»3¢v5}Ó찗ûL÷dRÙ§OÇzIg{™f¼õRËàJë'NyÀV„ž/·T\ý<“D¾Œ]éõ•Ä±:~´¼ržB}ôGñiA/ôÿV4bvL44+$Ŝ†d¥t°–Ñ­Ÿh†€/qS fÎÊb&¬¾,҉f…ôh¶È–×h†¬?À§ý½Ðÿ;Å.š…~îµ Šc„<Þ`ɂj—r­YXó¬/›¯a®ø0¬7øá¬Ü6oº!^=¾ž/¾Þˆã®Ž-ƒ_­þŸõWèÅþÿ‰íôáu?°à"hÁÿÃúOÿõɳø\¹Êú©eÎñ_«ÊOŸáås]^øªr2ªK9–¹êÃIª®
+qœ©«Æ|Ì嶺Êù&W,ï~AÜËÅ/ˆÉé±|³”d¯”ÕÊ}'X­Üw‚U9´5Vå|[YËmžlùrö bœ—¾“h¾ÃÚOôBg”uB/tÒB/¸Àe/¸Æ)¾/¿ &׊ï CôŽ³×û›¬²Wn³ø+«&áæ¼jªŽ8 aùùB§tŽ "]¥³ÌU,ës•‹€5]#ÀM§ŸRäÓj¹ŠBjý*ŸRñÉãrFOË2°>§â㪸”õ «fÒwåͯ¢É¯âËôAž–Áöüú´ÐŸSê!
+õ=‘Î7Ö¶èúæWt] ®ï³h¾Çڏ{Á±È2‡1{ÁaÎ^Ð °4ÔE-§èú&׊/E×7Ë7fãÂjþÓ®ïpìfC¸9›'òpI
+³÷ç_mãjFfó¿¿Suî<–i\Ó¶DÝa™jÖËA­qëLՔ¨©Æ#œÊÀ¶E{/;{¥ô¶oº¦ÙKUóì¸Äd#æˆv\z²wD{[¢ƒ½—ƒƒý,šï°ö½PµnÑÁÎ^èˆ9¢ƒ½ÐwD;¹f}rM|ü ¤ÇòÝ<±Ê^ýëÂÍy>Œ‡«¬êÎb™%®²êzšeŽPܭ։Ž­}£»I&âÖèŽBù »
+ŠŠc‡¬qluÖöScõ Çð•xVA֕ŸòM?Þ¥+?®Jg™cƒ½æØáâØââØCž_.?$W1|9ºüX¾‹V˟vù…ën?‹ÂÍi,þ»'“19Ó¸õËyèóh
+Óûÿ¯ñô?°`çd<þy}Öz4¿1þü‹É±¨²0UÛ°ÊCß
+øûÉÆ(VŽÉÃVÝ혔ԒnL)e»sÅoŠ]¹¿§êW®A98€Ô†Oãm0Éyé†àÁa Àºˆ\›ŒP÷s c’WÆPÖÙD;G¤Ú}’½“5º`ƒ£F_uºÖ¢·‹yPàˆþ.& uHèñRÀí˜<3M¡ü±1Y»•ùù1)ì\Æä“É'˜ÙQla­;£Á8ˆ)“miÑ÷²Šß4qçn˜ººsñHmRÓwµ!·ܘ©wÈqUŽ;"mœ`I¶q‚%c“4YoÑߦH­û {7ˆØqÓÇ=z«TªïÈjm#‚ßSÇ r•;@‰.«>+&@wdË7½V7L·o8V>fâƒO됮É¿.(É®.Ӑ¯Ýª˜ kÒ¸Â$ÒÆ5hCW˜Kõßږœ@j JÕÕ!saÝ5‘Î9¤Ò}G6Èã¾±\ Γq:ã՝VTlŸ
+@ôå¸ç$Ï1Ùç›)óO5VuI€-îÑľÅHÕ%d&8öiCô‚ùäX#ObxË îĞbˌæÄÎS44q}ÉTg,y:ÙÃk¯.xH]¢°‹q–P%¢ÊÝ.c‹±”
+ àïëwB`â§a.󬟬|³ß×Êj1P{ƒGçÌ"áe&³Y”ŒZ5ª„5À!MÑ §€;Ëue:ÿi?Üò {°sºÿöќ|©ö¬Ë mÑÀýýÝÊr?ÚÌ4:O­kÔ|yØi¾^ù‚æ'½epÕ|ÒVÍ'àVóõÆ”™˜o5ÿ[•o5ÿˆþ#˜
+®µF€ÈxëLÏƒ€¼§‘à¦%J€]›´e&2:Ò °Ä&}-‘öÕzòdséÓ<Õc06r@I°®€¿¿Û­ïUî ɲúÊ}EÔ&ƒñ°a]œ : §ÍÉ`¤N(^#ä‰:Ò °Ä&*"U€¬“0æd ¬ÿd·¾WyäGN¾rš—¨ï+§áÚw+?<pJ·?™ÂÜ-àFß |xÔ´½‹¶05µïõ]ó2I|_·°!04¾ôHõc¢7ŠdþÛb“¾¶ŽHûj'²ijû‡1Ö?ŽšÉ:·[ß«,êë*p[¹oÓòە¸­Ü»zT
+I–~%o&µ“–ÏßDæR9o«û*cñœ÷݈_¿ìX~Õ›|Y6Ù¾ò퉴òõpŸšH?5ú©ÙD?5‘ê§&YûÔ`Ì>5X7:gMÐ}C
+)†¥‘%`Až+m²¸;ÍÃá†åtLF¯ƒ¿Ýme‚ ÂHaZ/8
+oÑaJðŸ…Lä~3°€ÙÂ[̗Ê…·•E]e®2`Üד!徯 :§,Ì Å&‹š; ]Ô bÚ·ÁÀ:¾m:Ó¨l=ü×0
+'7:
+=æ„æ"(ïÓ]ÃmLc‡›r& _Ÿ¨UÝ6tÐmCÝ6tÜ¢ÝF›é¶>=s§®²R·ï1_*‹nßW†šXeèöá´nªaS­ƒ¢6äÕWUn•
+ó¨M´— öÁa”–¯Û|Itñ»É=»wAOÕÛ±hߥú‘ªÑÿAíñšlúFímúl}ín@×ÅKzXï%…ï32mî_¾ÏH‘·Pk;C¶=¶âó¨†Ù4ˆÔW·álÉ¿¡úöâ:ûô©EßÆþd†I0CEáˆ2•›éRó{¢=»×¤ï´Q_¦Kö.÷ª‹2}£:>‡«Žï ˆûæ’£6!ðÌëΡNƒì'm:Ô­@mj:
+1j×!’$6m$þ1‰I€cÁkë¬ÑµˆÏq,g@ÞCyÂ!•WYyFÁ1F€°>íµ[?S¹s¹%_Y÷•ûJñX~»²be
+©kc®£2©kõ)fNe.¿}ÚWé:ÓVÿÝFö!aFð;@_qÉWa“AtŠ´Û{~ûŒ&k=ü§ã´ùOíyMø©)?µ’¥””1”u6ÑΩvŸd)¼iþј¹=®Qåêõ'¢æöåkmmê|šA˜
+°ÍUWÆÖ¿¾vÃ}¨VŒeÙ”$€R#~­'@N¡É1s$9¤Gg6%`ÁŽï1­=´ÊÏ/ÞÊOg°vòCø“÷„ò®«¦¼Í—D¨p™àmöXä=
+yÆ;ÔX±T*óºFæˆâ›´¯éŽ
+²²F–ô¹z;&½Ä’ݝœjz÷iòKû¢™ÒMÞ@0À.Oe°‰öE’­+{däœ?°’kÛéN2·ý?¦aS@7¸ù4zTŽ}²LÝ"3C΃ø›•SßáŸ3ü³ò¸4²ûO6b*g7ó<Kƒ`•Ç².v¶½ lXÕê?™ä-4á'S¤òœ¼#K€0ö¦ÙC«üj“å‡CíÉ˨%aùئçó¯²M‡ùÔèy¿´lóhanPJò€:W>¬I.Št…ŠoÌQ¿ “y;@ƇÔ&’ºÛ!-ŒJ¶è蔛/ڄó™"•ÎMm@[«çøC²®H“'MjœÀ˜õ¬ï¶KÛë]÷câqùs§næNýœU(7sç·+ß̝Z™Ó8‰égç4W¶yZh¡ê§Êq•f €]šìj€t×=Èp3w^™fÿÜÜÂU~”¶½H&šÓÜùdÞörÌ˯T­O´9ADyÅßf*óܤõpІÊãþж;ÅTÀb3uM1ß)æ7+ß)&+ë7&@5dDµìN‡ê2÷p¦euDìNk—k9ö-4é˞% í3Lódp§˜g¦µ‡N1CŒÃƒOv.Šù¤K®ŽCkѵqÎ0“v‹¼uí\¹øbeúÑ? p£ÖuXbѵáäý€1ŸÏeÎ|ø©Žƒb Wñ‡Ìӛìût8»&ûôIÒ}º­?Œlšží™{ß½‹/g@k¾É¸>Ž &‹'«b#c
+ ëڄS¤Ú}’݋^U•UtJB‡Bo¤»Á2ÎêÃpËá ÄñÕtiÓQ ²܌¯ Ó*”?7¾F&ڟÎï;Ù9¯~4ïwÒÅÎØÎ|€û
+ Q•Úd‡CD‘&,.•lê‹Ëâ¥É•
+Ïr M(<EJI(YÊJ3@ó)à]çˆT»O²" (<vœ»&pÏ¥’஬w| [½Åâwvªh
+ ²j*š"Í_KØê)àf«wešBùs[½_2“óVÜêánuëÓû×*9··“Ò#Q³ù4Ú¹²`ÇwÓ&;¾›"Ýñ™”ìþm¿Â±`s¥L/ê•@ë[Å¿b ¡¬ð+(«î¨Øà
+"Ü}Ÿsë§Õ~úc§ðÓgàg!C¢Þ@^
+BÄ ~NHjÞÄÈÖÔ}KŠP
+¿É]ms·A8Ó.˜sÛÖ ¼_cK
+ހòCW*luèR…˜¤!uBn&kc?klPúF„Ò7F(}c–Ò7¥o­äâQLÞ˜ý©¾qÑa®Y¬o\ÖX߸ò±¾qqÄKUžX«ªînb¦uBnVAwìê¹þS[Ž_Y€ŸËJàÑ$k‚kHTäsBèzƒb­ã A ¸Û:®³lrJ~-^5ù2Ÿ’¾n‡&„Þ"ÛæyQÎ9Ù7+âNð ÎëEK„ø…­U/Í0“Y£^Ôy¼^³“³·Æ>!†`œ¤D" .c„’5f¼nÇ+±ÕGœLÞ˜ý™¾¥1Óï¡o#-ÎúÖÕùàÙ·‘·³„¾-8,c‰öÄZ±'†™j`Ô‡?d½ýnuLtŸ®o\ê[Oèb3¾u
+UÕ4ÑZQí 3?„N³
+dJgH9b«nŽjÄLf:! …=Id;±Oˆ!™Ð"‘¡\Æ%kÌöw>Cê[­ˆÞò‚‰Âû³?Ó·42u·Ð·qˆPBß|l}cô±õmíV‘|çt†´#¶bO 3ÕÀ¨È>zëª?mÆúåçS¼O~2¤fàÙOÝ
+2šwÉ̱Dî ÈF¶Îa%ÇI.xÚvH·¼9…VÝ:¯s›i >õ6‡ÞÇäp+gHÙb«¾öu«’Vܹ9V!}ws>K4²}±·3/Ý4=°Cy*¬GIÈ9Ùv“Í~Jóñ…Œ$%Gà{¬˜™8Á¹!ÑÛóÜ" ðž7àö3¤,¡U² c`Vf•ºB„ËDÖû„ûU}d¿ªŒìS²Ê¬~P)[lÕàî2Ìgá}ŸÙŸê[Xã À÷­¬£…¾õ)LÚ·>ª¶-ômEÜùàrßϐ¶ÄVì‰a¦u@ÀáØgo]õè
+rsñeºEàïÚÚÜþí+–%iD
+‘û«zœˆ`Uw‰¬ê®##”¬1»!ÐCb8Ý´å,˜(¼0{íÛÓ£¦ô…üOág!C2jþéÙgz¦f‹7¢ÌkÆ©_7q8ä»ú>.Ê
+°Þì"Ç{gKñÌì}¨T> 0\?”}²»'òš=»ã…:ÿ†]§2†jäãðMÆñfõ2Œ@Ê¡IßÑ®éÊ#F’eǕ1˜¬[ô–Hƒ¬¶™”Å vûü{ÁJFüß­,ÏMÝVƒ9¥Ÿ­¼O·/äú9#~Ï$ßÍz5yFÀ¸µäšäx`«F˜ },¤šèÇ"R•<Éê·!c0Y·&èÜÝDzŽCJ,7qÐc²Yü—“ͤ$wó\—ûªd]V@Ê¡‰uHµ¶i • %¹ßçöUl’V@]CcH­s k_<Èã˜ä£óÿ³/Áʇ£TÄ$ÿçÿôÿüïÿå £<Ÿ7Q…cµUfFß<“̀Ǒ]Q­že°ö=ÈÁês °nóhë‡ÕSÄù[ÕW ðYË|løsBÆcŸ3Cµ†Êï%)J¹A9^§Y«cà~ðæšûÊ#Hò• ¸Ã¼)¯C¨óÞÍ<Vº­Ìß´2[ßTn}•5?I·ó“´c¾T|_yDt­ŽçñüXöòé­|ƒ]nX}Bl;j~{$֐&#>( Í3×‡‘¦?Œ1¾Ë4w=Ìrf®²·'à®2ÓÊl}SyÜ*ÎÉ©[mʗh[m3՞ Swèöy–lß­f(捴2EPË|1üV1¯• ¸ccÁ—(3!Ù§Èç­ã‘Çê`¼fÚ¢"ãÕ0Jê:=¥°ÍX%×d›á#é¸<Q=Y$ÖHXcš¿‰ü—¯iRa?ëxC÷ŠRF¸£—Òœ<Óü×Í©KŠ€< R¯¿a«d¶¯¬A€l»µIŸgØDllê2ÑÎқí‹6)ó zö5
+¶‹$òI_p'¶KåômCVÆõúüە ¸©œ¾V^1Ý ˆ|@欬€;ÌãüàÐQý9R8qRݘ0örׇ)\Hè
+šd¹X¤¦B2ì&`…]YCpPÙF~*h_!VUô_9Ý¿Ò¤¯­RvÚ§£ö)€Ú§8¨JÚ[ÊJ{ë©6açˆÔ›ÜƒVù¢ŸÎk¢óËrž=`?µ µ[‘’%%K¦Ç›²AÇ;@TS›lø"ŠtC?•ì¦Ÿ¨°Æ§F"Õέj÷Jdìn…Ñ‚—ÜRPÅXܨ*l3YR™Ö&ì–"eǕ,E3nλÚbWÙDoÎ)Öy0(£AțµRö‰X;xèÄQ"sÿ{ïÒdËÎ\‡ÍûWœ¡«€Â£†¤I9ÂaMø]yþ±-FPÜ[RÈTP¡_o¬•µ«»Ïí]; {rúäڅD €D>z]³é. Ê+zöÜ/mºe {ÏȦûO¿ý»þíºü÷¿ýï¿-ë_^ê5èÔ»#¬¹â W¹Y"­ð‘,M@â­Âƒ_+ü[vM„-Œìډ*¦‘'ìÚæÚs¼ Þ\-ÜoØ/’,-îJC·ÞèT”Þ¤qRמ< žÐmeÜ÷áùÌûÌÎO’Ðôú”®uƞ¯¼©%½ g
+ïréŸ]ÒޛÖ~‡†þ¬©m?›Û,Þ /†¹™Oy?ï„e­¸×äî|…™×‚G®«4¨¤ñÑ3Ä°sUúìÑ֌u¸*}ö(î6Jo‚`Äxþhûæ,a ò+uÚ,ýÉPúŒ+Nã ìòh;«¡Ÿí•a}Å+‘Z¹x–}Ÿè„!ãÏã,ìüHÃ`N8ÒKŸÏ¼µéü2ïlz}&ºÉ3Дן×ö¿“¦z*}Ò+e§Gµ¿$ìÎù­Gk¸âòék±Ÿìµ}Æu£
+8¸‹¡œOe~xx’ëð°D½`ܕÅw––ó²E¸ðª@´¦H{‹H” e:…G+pcT‹‰G±°¬øÐã­ÀÚäÀy
+‰‡‡g¹êcºˆwPޒ9ó¥œ õ;}t ~º£#"ùGXÈY”Ôu«i.â£Ã˜úè°j­«\°Ó¾{ZÞ«}púWA¦;+`üÛ¿ùÓßüvᶩnôIkÛ±eB…ø£ âö£j%Ûü»Ô“Û?N¸þZçˆÜ‹È"]s¥nf/bŽçx¹YEÅ,Ãl¾…Ϙ&Þº;½ªÎ
+WªK=º¦ó@
+—´¸ÙT^×Nϗ¡8lt)Æt9•ß®uBi—báN¢K±PIÑ¥h#bIçRˆCæã=+ö¶š­LÒö¤Ü¥B^Ÿ¼Mt„Ëð<ͼƒ.×E¶¤MTYœ;-{-{~ÕuÖøYS¬>ÝäqZåõçµ=Æ朗ÖáFŸõÊF-cï\ÇVn ÀÒ{!Ñ7q¤c{1q÷Ö{¥-qzÅé”Çç½W”Ÿ·Rëó^Pyšòúóڞ³^џll}Ò+š²%/ú™ƒ)Ò²ÃÎ×aýÑzöû­¿°ßßö_[c¤&­êIÿüOÿôóÒck·¸uç9 GÑJ]Âò ÙS[¨™”(†¬¶£ùεXÛ°˜8×/LjÇ`ešªÑ 84rpµ¬¤·ª)ìa.êô藨¶ž²mz±è¢ÎÚö~šUµó]dâB]`£3xG$º#é’ƒ¤ èšÇç£$ w~È7Ö§¢»<J‹¼ï6åGõ'äzŸ\óÖîý‹}þ¤RÓYíö  sÂòðä$˙”0“ ýA\‘Ÿs<<(ä,ù÷Äea‘F¦Âÿù7}ålHíA©Ñ¡I/„¾fÔj„±f
+–£*é+»©ðk˜~%‰ýcÉè/h»ÿúÅÆÉy#™Eÿ—ìh°úª¢cÇ÷öw§ÛY­¸>
+È¢{ô^{‘À&¡#a:\À§";Mè¦{›Sµ
+Ý6Œºý=Ñ#aZ^:Ñ*zàŸþl Ór1Ópz¨lìE
+M©§ž˜úê}ßkP¦ b„ˆ³›É½Ó¦ò“¼âÖЌcZqÞrRùÁ4Á<*Ǒ € AŠ„šÔ&<´ÉøB–q4`ý
+Ó:[ER`(Ý:$đ¶ûz• ˋց÷±fÃÄ´U&ê¬Z ¯ì‚õxËW™`^ñ˦<Ò¤EûEœÿ§¿ºr½É’%Á”åZ!lÚ' a «Y[À–Únw¬ @¨¡ÈFëeªf&íø»mvKl@´[b+í–ؘF»òµjÝÍŠÞ‹hãâÉ-±ý&­¸w`}Œ7{’°…ñaÂÉõ,4êËô°Ñ-Z†›]ÍòΚ²RU9u›ºC%0¦“™x¡/ÂOŠI|¸8<œ™¸ ©4ƒ…O%pÖ¶$¾PÃÃ
+á~ÑïX{×<tTLeŸÄ<Š¨g½¶í4cîS¡H×ÖÇ5¬VЯ>ò€\çNER½O…´2]Ÿ
+èSáj+úԚø‹7"ŒµVcUý·Ûí/þÛ¹x!„y5:Ng­Ü*p˜âãÞ@;+<
+ÀÎél=@Fºø.îœËx÷
+9km–äÃãÎÈuhíôxõìö¸!§ÜÓÏ0ôܝvî3ôe•ôЗtè$7—Òb]ßžZSyiÏ9Ҟ]–©ü=ÊÄ9ÙÙkG\uã#Zƒz+~±‰_¬ª*0SøÕøžI斊#“ì¯ûÛKgØ.ž_«œ]îD$Ô\¼bC_vÉþ®Å Ö4èè ˜C©J¯Tã<"‹¹6 $å4ñYxç#H
+·I4<üØK±P¦.5àìá…Th},æDµæ±¦6zê´mòÜ¥«¤¦R¦p"ÎS“´j%`|ÌQ÷& `¼2K07kޓÀzׁ³‡±… ãÃÛÛ½[$@ögê3pöp˜^Â/ÓÚAë¹7'vVsÏÈÊðV±_™øîÃY'?œipþ0R+¬Ÿ~xkǶ·Ä@j…ð‹ã<£ï I×e%ôI><±š7Ÿ}6žHßÒÕëþûªCÆ¿1ëAº}¥—ÔéÆÿj«ÑòË…Ò»‹É+››þçþy¿ýùï~¾þ7w83×.ëŒs‡ÃÿýóKãÎ nsïȾ0³tµ>¾PŸÐVúìQçS3oì%"rÆÙ®™~§Ïv¡WF0¡ƒ#§BÛà £¾¾÷¨KQx¹¾V ûetåýýíðüGíoÛ¥Æâ±
+Ž¥†ø™—»q¼ý„±ž7Þ_ôòÜ^•™=Ê(puä¬È¾ ٙO;c¥‡º>ñ»Þ­=î¬õáwdîÍk£vƒ§˜P„±!Fz|þÃæKa^ŸSHc? ‡RŸ{·æ
+5¾ØkHn[*}l@" Hlʼn°EJ6†È.¼øï·3{÷΁iV„K C0¦'|øw,ƒáÜh/
+-£5 5Œ$^—”'P¨Î»½ D„¹c~2ðû%!!ഠ߯…ó ¬ô" ‰¯w•kþºéãp#G¸€…¼„‹ä!ªœ½F¢¼˜I)p;2õÿÎ!3 b}ù\ÑkË ¢ßßèסÐ#ß.ÆËÞÉB—›¡üȔ7ºWX¨Urq
+íFzƒ "ŸäÔíI9à²,éA]Täñ%[T: «k`­²ºîd”òˆÉÈmumû º¥,?†E3ԉŒP«+Nõ ‡lâP×q«xзAkŽ•¶å&Èb-ƒä±2’§µ $3i7ȇŽP@¯[ÏEÉ»gý
+2ÈêºËãI72òª¸x·ÆAß<*\¢•( L*
+dÎSù ЍPÛ^¡Œ|GfÆÐ ™LƒüG“=瀵­u}ĎZ֖ɔv–’ÅddíEþø¸K8˜"ÑôâΞ¥»D{ñJÊb
+·ng@a<çÐ: cw¡­8Í$’д¿ÒDœ>„m Ê+Ú.N´+y ‘'d[%ð(SÙT#_ÅVz[ ¸¡} œCàqä¡Â6ra+a z
+¹7U”àE®âB+WX2s
+lrÉCw»Â0r»Q¢O…` @Ê,BãÙIì/×^>Ò9v(Í[Ö*Œ´twq¢\O¼‡(ã-šÆu Úˆ)r{Lóúv`äyôõe¦U”Øѐ‰Ÿ¦ØäԖ&™¶*GA|WšveñõÕë8ð‚f8Ù㠛‡ƒý‘Î8è±~ç¶G¯J
+õРȁ|n‚T‰äÅâ]„Ïú^‡ò3p“xuõ
+Úħ¡Ëÿž7œCáI=¸ÅNnô}}q`åQþöЖ<†½Ë¼¤Æ2³ˆ—)NòJ¾2/
+ÖI\öò3p#€{w«°‘P­›8Q|é{ƒâ&Z—ÿ X~ß8DnðI’5)«âps†XÖ«H-P”èÈ,¿’LÒ]:íg@ÊoÒhȘ… "Nh³LÉW&ž\¤…ú…z
+CÔ‡UòA Æ‚Nùdt`¿Îwœ4H"ã܀2Ilc™V¯,¬Ü¨g_‡Î¤ýB( J|­Û´Fô7À/“Lò˜DQcà§]rðnŒGóDl/Êf¤¬#%Vnç@݂s@4‰9DàêŠh¸)ƒrnViA R€šº^>Æ,â-¿­ä;%’™5W!'³.¬
+ä!Æ9PD›‚…5‹¦³Ê§I)”Ô•c´zG¾$4Фvrߖñ[´˜ÿð›ÀÊŒþ­[Å
+{þ–N§M]Ú'(hð?ÒðãÎï"[kdfç{E(‚Hçêt“ŸÜ¾Ð4
+–®œ™¢:k½2w°œnfatBcK"*jRmÕGÿ6$B½j™EéÛ)]™$YJ¯Ô@¶šv¡2Ÿµ9=Ò²áá­}œ$š‡ôˆÄ‚€ÞɎq/ôÊuˊ´NˆÇ$lÈý˜»È¨Â^x}1º2jŸ•D<}?”1v»²0i½ Q˜PØ<C_¯2ãD²mZ—ÕÖâ6Zá䤽Mýa}%Ô«¦ ÏJßNi,Vz£ã̑¢/?Ðqì%˜,D=ÜNé„<Ord€Rk½' 1µFe)€< ×#Í$Wz”AôÎ~ÌY¨B퇠•ŽHvDZù³ãÓJ•J?l´Ô³§~4[x€³c›Q{0™ñ?=ÞÞì؈;áØ•Pb¬ã)tn_, ÇV%íP«÷SðHyVhÇfÇÕJ&Ûã}Tå?†þ!¹O¤h£ñÖÚ,hr
+?Z_c³óK}á]5-ÜÚ!³ëjbaė®š9Ò8 íñ.ü1(‘X±m±÷ӓÀHyÜMpwXX`‘¸˜tH ¸+;Ñ*XÀ PôSþÊ©à$,ßäqÌë.Õ½dª3@fÎNÍ]”™}ML †«$9òpkg@©Á*Ë~TÓWØI$!¹ßæ›{ÕÇ|a„u¼)¸µî\Iî‰_ó]nÔf@Ø
+æ!$^™p¯-™BÞNH„'‘Z*xÂû t«–ÉrØ?gÞ§ s:ìxŽ…†›*79«B ë¡÷H.´PÈvÔßp&Oê#ƒW?‘7¡m+DRœ7£µž§Í䭏 ç¸5÷‘ŒLvÅlç¶Ò?ì ³;O¼‹Äô;hÒúš·‘Q ¶͕DÖN|läFÍÞLß@sòµýãÎ\¯7‹/\¡†;‹7ð¼0Ó­l¤
+Ï?¸Ö±»÷”XGДv4X0Dõ8œ¸ù‡îxÚ³}# h$]ñ4ŽZQŒÓ¸PÁÊ"«h¹©‹¸ø- ÇÅ[[Qr¥ü‡™P"9ÞNi¼ØÌPXš°$d^uj+›ð*ÕÇèíM:È®p¡^›/ÿ]¯VE œlZâ½É´ÐқL™•£‹|ZdNŠF{¤Y–ÓqÝP”©ê&r/;Ñ؂É2 5EY"T
+m¨86B¬A6¦Lü#m#Ph•Î=FíÓjØÖ·iý;£û‚¸BÍÒç'&ãüTÚçgHâ¸ò†²ã²h´ÏOœ²ûü yXAK#ô›ãbxF÷Õqe
+zoC£ÆõÑho¬6{xŠîeã´FímÀÖ»·‡xoƒ£ô6Ôy]| ÷q4S­wŸ×I¥{ÔÒF(3ÑgÕJÇËn˼Nš•Ûü ë¤ZyÔ¦èö&ÇuRí“t +Õ×In'€Îl5r\'áî0­“
+ôu÷aì$çx/?}´
+ã±$½ZۘĝY²`Ջ4qå‡dÑZäñêp5ƒ›¬…JXv)o™k'm÷ï€møßTÓ±ÉàNr
+ æPH™G@TÄA '+—CÜÎ@´
+³ÌiRžu˜¥71}–F½1÷Y
+ðIù6 ³hÿjcªâê³TµZ}Rž’Þ[9ˆª‹Ëá’(Ú-òé:·Ux1äy
+¦òH©§ò#ÀòØIx…¢úrqŠ6פú®.ÿP†©Ìø«Þ« tn/ª
+’Û‹)µ¼5ªÖêt<¬(GDlÇ5ÅÔ[]®í¸ª¨JklË#²Ï«Š*ºz-ûqU9 ÂcVKSxôaU9 â«6­*ªør¹Tõ5´N•]C[N<¯*H9¶ŽfÉÊqUAԆ©ue^U ¦JG‡Uõ©uu^U¶z\Uh¤?µå™V•çUÎHsëˆ8 M«
+fæEŒÑh–•—Ó’8G¢n’˜§üö.²Ñ‹ÙY!ѳ2H
+et·¢"-fD%ƒ&yƒbù1Òô¥` ¡‘=å•ñHLÕ©ûØ{gH¦|)$`HãmVñÐ0Zâ+!÷z§¢Hu.¾Ñ ŒŽHYQ¿2'ÈMŒx|Q`õ‹`\LS,9ÏAG¦6ú•16½8Ѭè'òÏm—Lëv|Ç¿Ðéj<ÙxµwûÉ«råå|úwÒqëÿMœËxlP?fI±|ŠHPŠ¨Á‚Š¼ì(ðw ue1¤í1s\•ÇÛÈÂ{]­iáudr4zIÑúkÐ
+êjýú€0\àiJNš··‘1oHg¡×bo 颀ˆ«#®=
+wÙ+û&1¿@Kl±"o“A$±3§ìvçH¹Ó+“Á¿¾8² h¡ˆ7öõÙ²H†1ƒÓÇL”/¶Ò▹båQävŠˆk^ç²ÊYàÈ(‘9Ætç= ˜é8uÁ!ts
+ ‚‚¨¢`aÜ-øHF™öˆtW™ÀWÖ—ÚÉ՚{ Ž.κU֑-ï?菫ë\ûÔhå,Äè:Ô¦']&‘ 2<Ò# 亙‰€D»½h¸8,lˆî®Áä ?b¿yô¹$ÃÂÕ©Áììq Ðs¤<+Ԉ>&ŽÆû1Râõá¢8/ƒügâËpçØ,Ö,³\žýôÀÂ13ŒC8ltYÂ@&;K,rڛÀ*gˆÖz`• ð›C¿Ec8R!j²lêH–G’;׀Õà K«ÆÆ\Á”Wý¤îFJ‡&‘Àí ˆL˜ì6ªË²i½…LP™õKE Y8 7Óß
+¸½¬«s`L Æ §VúÒÊÇ£ï6@v+ˆZ•Äd(,¿š´ªa¸Ä#Vàv„e90J|`ԝ¼!J¬w€mQˆCkan`ÜÉ àb›æeÐ镢儽†ÖO$ĈãSÄlŽao…”i«qÂs±iãK‡ŒPeÉ(Ó:o$S²…i¤<8T€ÌJÊ ÈÂ=m¶R€”/ ãœ#¢
+ÉHùäÖ,0ú'È5jùòUšêœQ®«Fž‰LãGq¥þ Y‚éÉ^Y±vA|0֝|eÀYìH¸PÜ:‡ÊÝùV%-ȶgØ$´‘0)"›d—"…ä5Ke’8~´|ê‘æIVCŸ%ž|\?rXÁÎð/‰g•M׋õÁΨ#Iv›rÚ€› ÜÏL1Y¤” ³x]$³•ïöB•SЬ¹2ÐÚÈ룰­ÁHÙ~F$.àvleà°ÒnVÒ<{®Œ!
+55îgdž›‘^ É䶭#©ÎÔ
+ž‰1‡™"™„†™2§œûxžs™¥îGà”³tÁý@ŸKì|gà¼/ä­ÝÀÃÅÇ@¿æ÷#pxXì —Vž€SΈ›:qVàðp±°[ÆyNÇ\
+\ßîGàt4§Å8§œ·Âõí~NGsç<§ëQ—yNWºóœrî2ÏÀéJ7pž€ááßqЀú‹¬º÷Ú6ÞíN˜#mÏß埅–¦™.ñö}ÀWš÷€ª©rö°#úë€wo¨F¾J²¢¼ps` f‡ôi…œ˜0¥‘w]>ªJšéàFÑ
+XV]U¡ü9´ÈíÈã)y`SÄC±à$3ÃN?Ељ³¤¤ß+0؃Q¯/Ðúî›ÿªœµäTÏëP/¬d¡ªÓø½pµZõW—%'y_?±¶ÃJ÷
+\±k¶O˜|¢•þÜg£‚ã k§Wšµ„•Q؝ŽI¬½ۆm¸¸#@<î&d¥&·ñ4¾6àùžØå{ï=¡ôS=ábbÝ1À ¹Ú C~¶'8þŽ‚Á÷ÃQ½ðû«GR†m£ÕUb‹´o-–’øÊÚ{?Ûb9öûs#N3ý ¹”ä ÊÌn6¤@•´7ššã]Å»éÚÚ5¯Ð7ÏASìæQ•F??՘Ãc7±C¯üÈp&Á<ÊiØYâV`Ùi²Ú'’ÏL$™8.Ì,ÜSí¤‹ÕprÓ@ÿ~p Eö—›^ÛýpýÄ0VQҙS‹õš÷ì\¬úñ8$íRµðíì$Ié–ÕÈ/µerͽó»‹Ûi~ñÌ]ÝÞXd’ª"vr.4çyn¹šXQ‹½HÞamôÎ&È\áeX'ú ’üÄÀÖ%)é7D³l$ý:Á<zöþçñqi͖ĪÆÎV:ÌÞ¹¿îNGæ5a#ôQMzÕ§4VPªO³ÜÞî•ê§¡%/´Ñ€‰Eºxºÿ_‘ÒˆµÇ9´‹ïÈÓ¿/jÈR±Ñ /rˆT29TڀX2o¥ ·³]vOî…(¸kˬ„°3Ï}̔ÀÌnW̹™Y‡5wÖFWÕµÀ´ ôU#odõ ÒUnÛ"~î›bóbi‹¬Óé'ªžYÝ_6ÉÈzkmEë¿Öª6°JߌÖVß½ðÔ°•SÓÈa%GJ—Zöš²xÐÞ’~®æºœÕlç»jZ
+™ÿ+r´=;7õˆjÌï°ÊAÔ*Ð>›1PAä8ò|ƒúû<ðºw è×û™•)‹ Tl²2åÂe
+Ü:Pt‹"ؓ:péˆø sú
+P™Ö.ØF0ߤÃøE:9±ÉâÕԁ¹‘—4—î"KÏr…YÁ̋·uab
+?Ì5A»2†\¯R›ª'vÑî`8?†ñËãöˀgNùUÝslüpÉø \ÛÇ,UqÔò͕]
+ U»‰Iz^òîUØß½—XjI_s±hJÁH¯ϨúfÛ®
+¸ä$‹xyÓ-…]ÏQy{ÊÄ2)Ž€„ô&U9“Õð>׀KôR3¯û±;žS2írmc]é+àÌÊYo«%Ãݹ,ç ju¥‘V¼‡jÑ”¾b@é2Ý”W (äâ@@xP0QT…MÖÆá²Ö¸b¸xÝ;ÐffQáç1Í8T,®|ü(}Åø™Y9kxËsABXqíٔ®H¦„F·W÷åN_2~ªÞûøQà’ñ$ ?
+ÌÛà¢ÿ¬5 jé{hìsó½p…ìó]èKæûĊ¬§ KFWfe³j¤|©k§áiÎXú»J~™„B_1’M_â×Û»¤X ȣΡ+¶%NÏÝöÜ,Š‡»m.ºï¸]Ú:Éf¤2ü;n®%µ— î™×½;ƒPݎ­ò-.‡ã˜#—ôeM^ïK°[–íó.éÎcfÒ»\җ3¯{"ÿÞÚÿœwQšÏ_J_±0̬h¡‰ï€³6Ú?q•QP¶ÄÄYN·…¡]8ð’E›VúŠí©&Ç!U®;‘í»‚º±j4¡š `.›G‘ž]£Kž¶ô
+À®«2òA-%
+Çñá`SÀü5;žhòSKg³-5¤2âýí¡O}>·pÍðØç“€0®e´¡ì>Ëó_:}Éë×[ÍáõrÉbµÐTs0[V€fqY֊
+¸àUîé°,ïé‚5qæ%隠òræˆÀƒxŨrΑÖlI8Ëäõ…óIs
+P«‚W6FK¢[_MÛ ta>¯(ì³D‚°vß_§5ÚÏ$ì/={p›Âførjtæ¢pƒwníöÓ6</ñ’œ†Ycœª§¦\1ô]ÔYôç:¼p‰‡ß¾ÑA㮤$çòE}èŒ^õ÷ç_@÷/?oåvíŠì–SÕÏMŸ©CîN›Óa›ë¥}ÛpLÀ–ô¢Ji:-f™^¸àikÃÊ£¯ÒX ’® i†S3¯Ö|úðŒ3ç:›{(}…ãòÌꎙŒTþ
+À†gÿ" èãyÒ§ý|À|¶)ã±íÞO$.˜WÕ6 ý»ÑŒ-±ªïþسÏ.—ƒZçît¥µ/ÍPR—Æ;Kÿº>±Ø Býª‡_ì嚉ÕØX€žö|ր\]½è3®8ŒöwÏ.öóoî¸AÓ<5å~”çò¦ÙZûF³íÚ®æ̧ííȓšt搪
+ÌÛΔ„-X`¾%Î3·ÂÐ÷¦'¼‹g·ê;¸u ~Ú¤ð_öE~×Òá:ÊDƒñá̯ˆjéÚ¾¾/ŒThˆl`™() Ÿ>ꘉM
+M¯Ì]vB#4A4ò‹Åæ" ÕDδ0±_ó>QÚJgšM[ɶõ¥|…z}±ZõW•HKNò>vÅﮤÖ^~ $ب@ð7)4Û¨P>*ìWå¬%§z|T¬_mT¬ég\:_¡|Tد*‘–œä½bTô¦K/?ЕÆÇú~VXþgY(ö«r֒S=¯C½¸K²’Hí£M)ö«K¸LÔyWüŽQ󇔻Q9Œ¦â øb3µ}Fûd£ƒ¦B½"ÿӂ°®Bg)9×óêõ+¹r¨_¡^_¬VýU%Ғ“¼OŠ&ÄZûzdÅ~è‘Æ‹©²Pk2DY(v¾ö«sÎ%"%.– *ÆW¨×«UU‰´ä$ïS£BSL¾XzÈë•ÝH°wï¾
+å¡2çé@y“µÊT
+cÈè>ˆú½–r ×i!ì~èeIF÷¡äO¸”ÊáЎKXCìi9¤<Y×9âÀŒréG %ûËWþVzª®°jÔDK]_”{ðõGk·ßU6+=É~Ékè9¤<I×9âT¹Ÿpѳ­?zDòß7óµK#Ù;ÆYA´tÔõE¹G_´vû݅3Ù;†Mžÿ°cNpvL‚eÚ?‹ú]33UU„X’Æ•FèÐ"roud—h=ÕÙiZ¹€Z,V.n¥Þc«# ü½ˆW˜žðêՁÐj£ïgëBĨºÛ‹ÞéþÓ¨|
+œV—œÃPù‹õ0‚šXm§µ2pgÚ‡Îzá<m=‚½Ÿ÷öLߜ¶Ž;ÒI0jø ÷ì8ÖùM=ãã2÷t¸p’æÊð±ûʯ"ƒ&!;¬Ò7£ab4hžwz˜¢¥í÷ÐY©õ¹³Rڋêó«OŽ—§}H›FXè›Ñû¢kÅiDðÝùéC}ß2VT*¶IY‘Èí &eNüzy'ÏôÍhï´Zpѝߑ>Ô÷-œq–\æN¾r>"Ü3>bŽ¢w§“¦©ÝΖZžŸæ£­.Q;+xqÛ¬Ehyþ©ùH%3Y•UO4ã'õ{—ÎêV~ÑÆïk†Ê»Û+d°ÀçX-ûå³Q›ˆ<×Ì´wهtàÍä ­ü>¢ß7vñ.iß/Ÿ‹I¼—|.ísO¬¦蓹¨E}.ís/Ûá}¦¯˜‹Ð”Œsq¢ 9Æü1msëH¿èµí<¾r.Jû\œhï²i›[GÚø}Dç\Ô.þª¹ëÏ=KXÂÀq¸Ôó&FgºÞüy£‡¹¨úgsçÖ{=ŠÒÎJŸY}r  B]&«Uܦ&úæ4ÕÛi\ö!íüŽô¡¾oÙBÁ G„©ÿŠ}*ÂdmKï䙾9mv¤ãÎðiïÔ}¬ï[:yé+̝üó±íÉsæ£Ò·a~J$ù>{dùy>:+ΪÏOeåó÷óAêóQnDîÚçK+éZæ×Gtçw¤õ}ë|ÄÑfýÂùh<Ó>_¼ÓŽ´Î¯èÞ©úXß·ÎDZ“¯œkY9+v±R¹3ë4¦7j±,ÅZāQÝ
+t§Î®ˆMg§ÀÀNŠLì>9dà)ˆwX+5Ä÷#ps í4äÂ# ;Џép¨ö{”€%Ëàٗ&ÍÌÐ5‹3Uïî¸9ÐûîÀþ úӁ¡wÀ±ÚoêîEı»¯œ«¡øîθäìÚUÈ6¾lg€™¯8­t¤j¶³[vên{é@‹<çé¨6¯Ä gà÷$Oýàwj€1ý0¦ßp
+‚ï´ô0E‰Ûœ4½‘•
+7»Ø€Êc©’¾"¨ÆǏÌkE¿©muƒýyg‡À÷Ë2°ƒO.üÏ£‡Ÿ ±“P{V¤W¨L§
+?ý(üüiŽû¸9£ù°?r5ò100}Õ~ÍíøGŸ GÇ~0¬üž.7FÀ*.cwÏÀ́Þw@?偁ép¨ö{º»`?/ÝsùsM"¡Q³ïˆšÃAª8›€2ă8²Û³¼³C²¹˜‡Ò€yr®Vêa~\‚nÙ@rA+ø1€”
+c±£NØ=~…òÈZhg1ö¸"½û~¨?3o€ÎõWãû=ÎÐ_¡A‚ap <KtÚX鹩ÀÍą”s€q`<™¦Ávm›Î@ÂÎÎbëúEŽ!™&Y‹ô
+Séôî€gš²Tr€O´?=²ÓÚÙyr\7šŠ=—p½é€òïE ¨ŸNBÞ·o¨-K®`Íy2*`ø%`³”‡€2ý0¦_³}{ÿ’*î¶GnËK^·rý^Y‰x¸šfzÏ} Ìí[€0ýp¦ßÔÙ1ZìÒ\¾`&Kü%µîEgK"In@“TÌjžGY¦ٍ{ÂÎYXÂÈQV5Œ@\Üé@Šô
+•éTág®¶Ûžµ1˙€›!¨ŠøX©·û˜>‡j¿ç †TÄA ŽS_qîՅ¼w÷ Üè}÷$¾÷ép¨ö{º»ÀH5±»KüóP *|Q~BÃ}7²íš™Î VÛ)ßæ²·gâÔaþ®áN‡I‚[ÓWo&‘dÅöɼ*S%êÑX†[F
+ØMIn ÊC 9À[8o#°±O{”é|þ°
+£F‚5y»d'¨¥-òÜé¢I͜ò;+½´éF~؃Þ<ÊôcÀ™~êý£ë¾`ª$Útp]z¶°F.šþî }û1©e?Œéǀ1ý¦ÎÞ '¨°Õÿ‚'ú jÚ®¸9P\!'%Ž´x&6Œ^±/CZ^.¦Àʼ0+çB¼Ò¾ä"ÛÛÊt¡¸|ç2n¿++=U÷êõïG] ·‘ÃaÂ[¨×«Ú~¹¬ä$ö•ß8üÚЁ™AEΟKm[˜ë¡ä½‡eH3Œ¢@9íë»ÎCåx‘+ƎeÍô—ðԟq;X†±#ä0vìwåo¥§êú؁ò0x†Ñ£d>þ»Êf¥'Ù¿wADA§¶9ŸAHz=®=êÒ×úZ#%Žô%ktfÓڃ¤ËÓÚc€®È!>¬=ð֘ÖÜ-kñ·ÒSu¯^¿® ZXWåíkVm¿Š\Vrû{†N“~=¬=ñ FN_{t ôµÇ†R_jt¨KÖ{™¾ÔØKxtõ°±£k‹_{lìØïÊßJOÕõ±c«‡•ÖµÅ¸ûÚcµÛï*›•ždÿÞ4®=Û¥
+l¹ìÖ98 k¾Öh‰#}ÉÚSV™É¾Ô”(‹Æ «bK kO |®¯=ˆç4¬=ÆßJOÕ½zýº‚ha]]”·¯=Zµý*rYÉIìï:MúxX{ÒŒœa푁2¬=:”|©±¡r.Y{ìeúRc/áÐÕÃƎ®-6v|í±±c¿++=U×ǎ­VZ×ãîkÕn¿«lVz’ý{иöäK%pGѸ=FGþÁÁÓ¢¤ÌtÑø:sù'?\| 1ùQ›ïüÎòîeÄ¢C³ø
+íWå¬%§z^½ÞM¿8RrÓ!!|71Z«þªiÉIÞoѵ5ásÞؖX¾Àg ÒC‹’>6ömcc*ýÔP‘õ¾ ù²<Ðú¾åCccA>>Räc¡¤ò•rS%¯V§¼k-¥Ã@Yú Ñ
+õWFÉ$ê· ’ºÏyŒ\y’Ò Œ:
+Ú ó
++Šq–’s=¯^¯¼r+¹™Ãñ´¢X­úkW”YÞo,0ÌùÊEßv°,c::‚eû²Ñ²hÄ
+:ŒÙÁž-ˆO1ŽŽzçìÖ÷vÎg}«JùhQÚ8Kɹ-HÜG òõöÑ¢”ûU%’’³¼ß:ZšD뗬-ëøŹ¿”4qŒöµd?9sùçFK˜¿AȀ:®-Fë
+±ß 5´ïkK?BÆYK†ù3d´®-aü_[[¬Výu?D³¼ß3ZÂã—èÒµEÞ¶¯-::|­°Ñâk‰ŽŽ}ÉÚ"oÍ×íýZWyo¶zÈ[ík‹¼sûU9kÉ©-¶¶hIY=Œ¯­-V«þªiÉIÞo-_µ¶X
+#HÉ>‚ìw㯥çêú‚‡È0‚²DÞqî‹~­¼výÝdÓÒ³ìß;‚šL_rvÂ[÷7H57îoŒ¶ýŒ=¤/ØßÀ~ÜßäBEü-»”œ©Ä׌ú£úþ&'^دÊYKNõ¼z½²K±’²ƒ1¾¶¿±ZõW•HKNò~eú¾r£oÛ÷7::|¿b£Åö36:ôû}k¾ŸÑÞ e—¢ïMw0úV}£ïÜ~UÎZrªÇG‹îR¬¤ì`Œ¯ío¬VýU%Ғ“¼ß:Z¾jƒØxï؛,‹FŸ€Ð›ê¸/P-r;òxNÝÛ¦&^Dûôi˜é¶>àŸ´Nh$ÇÀ¢6™/KÉW2仴ߝ¿”žª{íõÿ¿Ä½¹–åJ®%¨ß¯ñ*å‹ó vg®UJI/?ÁÕrý~€½1ŒpÏ<M%<€C`f› l‚m¶7¥%C†î¼4é ?ÿ¢vÿ¶±t±ý™ÉßV%aì;üM?Íú €‘„ðÝ#Teü‚Z15á]AP0-ˆ‚¦ÑÎÉ;‚$&I
+Þ½ê¾}Î_ǼîTõ8Zà!Xråô]Yw¢Vü
+‹P²Øû(ZÞ6vÚl§]þ`Ÿ#wQísï›±)2þ,òݎ; ö㈽îØë&ˆý° B¦%(—Ͻ6‡½ÎÀ¦†­î‡Ø"öº#b¯["ö·í‰øþ>«VÝg%&¾å„‚$Ž®Ã³Íºø̈ ¾ÎïõÛT'øœA ŒyŠOÈ¡"hȓ|.Ÿ¥û:Íç "hÈ}.=ö]yªÏmcéé]“}ÿ‚Û%œô$®¸ø ©Ó£aárΌ™ ’ªŒ[|æñÃ團؇àL>¼ÈðAüòQºªûÌú»äƒ¸è@éF†òßÝØ.ù —þ¤ßrRþ#!  \Ι*2nñA¼Çg1`^Àb^"!ȼˆÿù,]Ô}fý]òAD¥;‚¨¿»±]òAÏ">(#è֓
+ÉWCÉWUî™C'Î-¾Š½ž‰½qÁ§aÒ±ÇÃWþµPB՚PEOãà‰\‡û*·‚OÐJJ¨õxUoóUrë`õUâ›O“¯rŽ{&/uæÜâ«VKTž©…ýKõUΡ§Ù-[‰{¢Ýҙ$_µY¾‚Z(¡jýLvÐÓP=u„¯¢x­„„C=BÕfZß竈†ðUÄPø*G•{&ÇЉs¯Bo†gbo\pèiПî‰ÐãÉWþµPB՚P垆艨#|­Àn%$êñ0ªÞvÃv•õ›â&vŠ‘ØUv ñüëPþ–]g½öTì2;Ó{Úu6Ø v‡»Îð«KÞÓ®3“»Î:›Éܘzn‹]g |×hZd%«½î:“¼%o9ƒag,-8ƒAtðŒÅ´”ò·œÁptàLÙÞÓ ÃÏJ-<I_]òžÎ`°WI£Ïg& S<,Ì%fhVþ
+œ5$Z8§8pÃHh©zb6Òú%Èu´@+…E(Yì}t6ò]¾{-Ü£HtpâvtÔò·ìQ$:¸çïLïi¢á{ ‰î4¸´?ZªžØ£h}Ž’Àä:Z •¿Â"”,ö>ºGñ]¾Ås€‹36àÃÏw#rqËù.|â8×cÏç»ì;àç»VàÆÏwñw—¿§ó]ç»øAbiûZ¹ô èqíü¶±t±ýÙó]ÍÄ·ø?Îå"ÃÃó]'†#¨Ê¸å|Wg¤®{>ß„ð|—#ˆç»ø»ËßÓù®@ÀK!”î¢vþÛXºØþìù®Œ wø 4Ï“æyœ³:,uæÜ1ÏGguV¤`?s0Koà³8pižþ$ž J¨Z?“œ¥¡ÎâP‡Ïó¸|‚VRB­Ç³néó<@CÌóC1Ï㨊YbèĹež‡½™fuÐÌÒ°?9‹ÃybŸ J¨Zª|–†8‹C>ÏãVð ZI µ£ê]ó<Ø®
+/C/9ª<:r 8·ÄKì͈ŽØD;ìOFCìñˆ—ˆ b(>ê¨5¡ŠÑŽK@4ä:<^r+ø­¤„Z‡Qõ._Õ`!c~¹CvÐå„æí§_NÏHìÂç4Ÿÿ³Û]çy9;ÇÔþ3lۙnC‚~‘{W—U‡å밉~9}Jowí—É…d”,z>]¯Ì\N?XRf.—kT{Zñ+,BÉbï3+\˜§uéöw¬‹-Ì-ehY{»çž½OšèàóGú´¬kFË*SÂۙFŸËôq e×ø–­
+9'šØ(¥o¸1'aG/hÜ`Û'¤Ø)fGŠqérãúYïN3.®]H ÒA…oÄÝHŠ©Oޘ“1òÒëWÆ=ʺè—É=ȑÆó¯Cù;<ʺy
+}COôŽŒ
+önwæ÷ñæwÌÆ¿€_!%‹žÏ¤· ²®ö…2¹ Ü£ðW·° ârô(;ù…`12°aäH;6Jé<J Ã^ӍþÆ ,àõ'RàŒ„\+W”|†ÎÎ=
+a`"$¦¿ºq]x”'A’1ò²Ï:åâeï¸KÃ<ȉž¹­£”¿Ã£ì#·lØzAïáQö)ßú
+Ê=
+ó 'šØ(¥oð( {M/è=<
+¶VFôݗü}*ٖê>C?◹¤ZvéŒ~\;~_Kžåƒí¨Õà½Y–Ùûý0Ê8‚<ØÙ–2nAP;ë!½²3,~ñáÝ°=úñ­áø}*™•êAŒ_æ’VÙ¥3úqíø}-9•¶?‹ ·G?[ݏÃ<()Ø91¶ÃŽgÜý ÛH;gÆZvä0Ù£Ÿõ°#Ǔ‘x®’¼#Ò#úñì'ž %ÍA“Œè‡¿Ó¶¹lËqéOF?’òÑÏVöå$¸0Ø91¶º3çøì%R;gÆZvæŒ~ˆF?kޙƒ²U—G?è{–œó„tÏywŽ§šýhô“qs«ç—V ÷N8ÇOfz©3玳šMÈáމö¡<Ü;ážÕÜê½’+¸ÄAý¼Ö{'\ %,‡P(8<i¹Ö{'\GœÕÜê½n%%ìÏDR7ß;A4ÄYMb(Îj:ªüd¦cèĹå¬&{3Ì܏÷N8‡g5·zï{<Õ\ë½®…–Cxž´\ë½®#ÎjnõÞ ·’ö烤@Õ»£$$2‰( ÙO"(:3æÃ~gÜ%!ÇHEgÆTöû0Åâ%y
+ȟÊ~H(Ésžx
+ŒszÝö‘â%Î!::s¬Ôë$çžxi™Õ€qÆg²-©Ì¶ Ãc™™y1<ÚáÔB Uëg±£+ñÒ`»F\ÇÀônŸ»»/¹Žgã¥á=¹2"ÎqT9Ç1äÑљã¨:ȹ'^
+—±£šŒŽ÷c敱ïI‹Ü>A»ÃíœOîªÞÿ: ‹Áy–a8ŸaG
+ÌE샙+ΞeJǀidzkRñ‰Ð²—AÙÀ ×αÁ}H°±è蘫حà´’j=ž”uïItÍÁT@ÊGW 9©*妙ÈG2Wœ=È-9¤|<Å'BË^Fd)ç.€q)·‚OÐJJ¨õxzDÖ½é>hú—áÞh_¹ŒÎŒáÛÈ7ø¨}>ä1ºbä¼FûRҁ ÷ä¿»üœÓÒÃ7íSÉh´%¡ÈpLþ;l›J6#—þ¤Wj&¾5—Q ˆŒõ·èÌyŒnA\A†yÑ.9‡Wb®´¥$0òÒE]¸"b€¥Ç’¼(DícI]䥋íÏ:¡Œ wø mþ¨)CöîäÄ@‘×QÆ->h[¹AΌ­ä
+Ùö’*dø ÿò·’'Ò?³þœ%d[J’áƒüw76gqéOú fâ[óƒ‚èPºC.#TeÜâƒ0xÏŒ­ä!Bà%Að"þ;äo%'H (9#BéË!ˆÿîÆæl "ˆ>(#è>hÝG`·ápÞõÄ@‘×QÆ=>¨;œu=3úröµ™—¾‚L>ˆ¿C>KuáƒÖ½œzmd>ô
+ ðwÊßËí
+u„õSw'¤ýÙPc Zþ϶¡5ÂZè‰6Q¸¬]ºçÁÒ&sìSõ|ºÞ‰Ù8SàC¹ô9Ԋ_—õT{ŸÙp6½7æAo»»:Üu-~hl¨ñN-Zܱ õO´y
+é‚`…É1~¬ ÊۄÛhS#Êþ;ä³tQ— ÜôÊvŠCº‘ ʝï$WÛXºØ~”£‡ ƞ ¼É w@d@Ùwù{†r4 }û'(÷S†²‘ Êü¶±t±ýa(÷ﻓ{2r—ùc®ã"ÑD@YvôoʋÍ (S>KuŸ¡`déÎOA¨t‡2µówØÆÒÅö?ƒòbK2©ÚrÛ.
+šÒ甂":7èHBáÀ à±¦¡ðßÃĈâQàðÀwÆͽ©(öC.Rñí5ip"õK97$£ÏMMH*âkFÒà0ÅVr’J”T¤æ¬¤¡…ªÖÏdJPNPG¤¤ |‚VRB­ÇCÙݖ7§'u4xN
+ǐç—TE
++ÃVç ŠAÌÚÞ®kŽ•zäüáقQW8e³ÚnÚd&j»ä´/„`¢yÃIQÕbÁŒ
+QTC$Š*>A-”Pµ~;zÁ„Kh~a’£?ÿ
+ ‡züÙL1GOE£HVöñŠ³t€ð®îP*­0òfˆæM–oçô´¸„ªõ3ÙÑuR’¤ÒŠ_èmÉ~Ô
+ûd¶½UzŸ‚mæ[š'ZÈxc×Û¯(BFŽmûNg„¸N¯®IâÈq(’ÅýÓðJ’všK©0^Á˜41Ð%cµKÁ¿f„Ðã ö±½ƒ I%«ÿ[F¤’°|ëRsWÆ+ÞvgÆÐÀ3|‡BOŒƒÚgš»E|« Fssß{7ðÚ"Í]¦ÇA›[nDž/-l]{$*{ñÏÛd‡ëeÛ?ÈOÝ©5OkünòYºªû ýk3ÿ`iIíޅtv›³hçï4¥«ív>D,‘«¢d?ózf âk,WÒ²OBÊo#íÞê~ãw“ÏÒUÝgèÇ”–šÎ[4Œ‘v‰¶ŠÅï4¥«íÏ$j‘-|š¶Hò´4Sïß«hP’4K¸Gº½ÐkàX2–Ќ
+hö@°,T„\£¿ø¡d±÷ðFÕ­ÿÏô6r7™ªv“
+ü“´$$¶U'9:§iÊ ”x$`¬jÂ×fá¾ÙP³NÉÞÆéŠÑ,­£äž+鯮}û{m¯ƒ$~ù)·mŽß)¥«ºOêße­vþÂ»ÞSEÙ Ú³¦š¿š],YÍþü£C¯’ÞnÉÚW¿¯ÌX- РmÒ醑E€Ð;ù©rõ†¶J®ã܅„飧¤èW™ñ
+F¯=íâlÿ¬«3òó/·Ð¯ « ¬0ä׹s,\ã÷Þ;`ꌨ4Rÿ†$^IÙ¢·f㕽 y£ÍöfOjÓ]|êa¼.ì7•À^…ü E‚ŒežíÅYö€‘ Æx]0X%Hˆ
+)­¼’r_èœa`ŒWfÌã0«þƀ‘ Æx]2¬ß ½
+ò0 –¸”éÎÄÝ^É6\™Kl`ŒƒõcÝSl°¶Ëü#µ© Æx]2Øo*½
+ò0 ¤‘Öáöûn½’2zŸ2 ŒñʌÁÖÂØf²5.µ© Ò\1Øo»-YZ¯B~¢?ÁÀ
+>*&nçGÅÔ™``Œ×ƒUÚùÙc…U~m‡aЉkRë`зák{¯Ì¯ÛL©u»ÃdÀŒ×%CûЫ”¤è„Adôü¨˜¸žSgdÀŒ×ƒUêùÙ³
+ä‚Þ!b Æx]2Øo*½
+ `à£bâ~TL‘ Æx]0X¥Ÿ=VXå×yÒH»}öwÀ`lF-ÆxeÆdÊ­ÍFÍêãmjd‚Áˆ¬?W ë7H`¯B~ë°d¸AÁÀGÅÄMü¨˜º ÷X»…Æx]0X¥‰Ÿ=VXå×yóǶ-ìfuëށƒY³Gþ<2¦m]¤F[Zk¦F2áÀ¯K;N%°[!Ÿ¤éO8pƒ‚¯Š‰›ùU1uF&ãuÁ`•f~÷Ø*¿6ÈÃ8eGû*ôï˜G”;L–㕲æÖ<՚¢#ŒñºdXÇA»òƒœ—¸AÁÀgÅÄ­ü¬,¸„¥›Jt`Œ×ƒUZùác…U~m‡q {ªûÞpðŽ‰DY'Z·Œc¼2c퇩Ѧ=æ“A&ãuÉ`Ç©v+ä)úÜ 26~WLÜÆïʂ+„&½ŒÇ-Üp²ÿÌ`•6~ù¬Â_äaH#mø.¼c&Q-÷<¡ Æ+3ú!&”åämÊ Œñºd°ãT»òƒý nP0ð]1q;¿+¦ÎȄc¼.¬ÒÎ/+¬òkƒ<ŒƒÖHãŒïÂ;¦¹}%Ç`¼2cžbFyètdàŒ×%C;ŽЭ”äÖçø "£çwÅÄõü®,¸œhØóŒ2¯ «ÔóËg†üÚ Ïâ@iñ]xÇ\â0| c^n#á ×ËS£­S,7ƒL80Æë’ÁŽS Ñ­*Ÿ¤éO8pƒ‚ïŠ‰ø]1uF&ãuÁ`•~ùØ*¿6ÈÃ8èeÍ»AïœL\%K§Û8vS>0^­½ž¦#cµä¤r5r¿Ž™œt
+C«ù¬pm§ FÉþ֌„áÎyE=Þ»g$TÆKó:FÃȽé
+H Ã;þW vä³c¡?Pzæ”_-°ù×EŁ $áÿ†V ò£Â¹AžBÂ&[[_‡áΙÅURҕ8¡2´ö=9Ëíc•]æÑl$2¼ãň®SùìXè$TÆKüº ¿.*d  ïøß0´JÏ
+×y
+ó,"ò.×ñιǨ&·½9¯Â¡;Ò¾õh\n}÷áN÷+†uáJ¯o¼Ò듴æFB„mMO“ë €¶õ=ƒ÷å]pè‰j›ŽcÃ<Œˆ´ÿ}¼s2ªÉ1GΫpèN‡t¢%—‡b¼GxæŠa]¸Ðë[/ôú$í ʁñÊ MC“#- €v(&ƒÖÁ\qèò+±ÚÛ°þ86ÌÈH'cÆ;ç"£š<*wädDLîN‡tÖ-—Çå¼Gx:îŠa]8Ñë[OôúFòtځñÊ 9Îæâ찛«ãq¹0‘Çã®8¬–qrCˆŽcÃ<Œˆtfn¼sN2ªÉC´GΫpèN‡t
+ó0"RþéÞËQMÏÇsä¼
+‡îtH u¼q='{ÄSð\1¬Õ7z}kô^Ÿ¤¥À90^™!9s\œeÔquÌÉ&2χÕ2N®¶è86̳ˆÈ‰y¦·ÌYz¢®#'#buw:¤L[ѸLÖå=ÂÜ\W ë•^ß:x¥×7’¹±ŒWfH2­0Iµ•hɺ2h-9×'€>)’„ŽcÃ<Œˆ”±kz˜¥gð;r^…Cw:¤|ѸÌâç=¤}W µÐ뛤…^Ÿ¤%Í;0^™!YöÀ$_ eñË µ¬}WœºprµEDZaFDJå7½eÎÒS{9“»Ó!åæŒÆezOïfó¼bXNôúÖÁ½¾‘̦y`¼2CÒoº8KÎéê˜Þ3Ld:Ï+«eœÜ¢ãØ0#"çø|˜¥çü=r^…Cw:¤¤½Ñ¸Ìûë=Â4¿W ë‘^ß:x¤×'iivŒ„˲&Y{-ïo­åù½âЅ“_Ñql˜‡‘’ÿNo™³ôdàGΫpèN‡”Í;— Á½G˜ÿûŠÁ¼¾uð@¯OÒòo¯Ì„Ý.ÎÒy»:&™üŠÃj'W[tæaD¤¬àÓ[æ,;Þpä¼
+ü(å½Ú{ù—4j¡’½†©þo‹-½~ëU̶Ü{½Ò¾O46¹£½‚²^'Í^þm}EÉ֏ÔË^¯´o§[¼RI Øë¤ÙË¿¦{ÛZ¯’QÃRÿ‡·Å—^¿õlµ‰^/´Ÿ“a›Ø!¶—SèuÐÞË¿ ÑW+½´ö#ôz¯ڏÇði;ÛøQÊ{}óP¡Çњ_ÐÀ.>¨aªÿÃÇbJ¯ßzŽÚ΁E¯ÚÏɱMìÛË)ô:hïå_Ð諅^Zûz½× íÇãâéÍ¡ I)ïuÐÞË¿¤û¹ãÁ8Ö°Ôÿácq¥×o=3mç@£× íçdÙ&vȕíåz´÷ò/hôÕD/­ý½Þë…öã±|ÚζR(ïuÐÞË¿¤]•ì5LõøXléõ[ÏGÛ9ðèõBû9y¶Éèƒ.;”
+½Ú{ù4új¤—Ö~„^ïõBûñøxzßû$I)ïuÐÞË¿¤Q •ì5LõøX|éõ[ÏB[ˆèõB{ž ¶‰%¹`{9…^í½ü }ÕÓKk?B¯÷z¡==F<=¯ñ]å½Ú{ù—t?wLŒÁ–ú?œ£ôú­çž-Lôz¡=OÛĒܰ½œB¯ƒö^þ¾ê襵¡×{½Ðž‡O[n›ÀRÞë ½—I£*Ùk˜êÿpZœÒë·æQ´<PÞë•ö<Y ‘ä
+ò^í½üKº·Ôú*5,õ8-~éõ;çæ¦öÆmݏe×AÕÏ¿¦qMgzí>†mù1µ¯Þ¬ß¯Ãiþ—ŽÔç_Ódégñ«IfÉ¢çÓõjÜò%—Ö§½Ë՞5­ü¢d±×z)W9÷Ò¿4…\¸1¤ª/͌íŠ^§]ŒÜûU«×J³)ŒÒ¦ØºÑuÉZ²èùt½ÛÇÒFk(Ù¨~›¼)ŒjϚVþ
+”K´R+~u ÇB=†ÖY¾¶bãh½3ègƒÖ _柤'I+§›ÚÛ˼i<ÿ:”ý Z$5KžÍ¡ŸÞ¦ªkê½J– íclê5Ñ÷ªß?PŸ"kkãþ꒵dÑóI½ÓÞƃÓ”œÚÐE®7¹ Ú³¦•¿šE,Yì}-ÍøEfà&Y”â½Tw.§¶¡C‹‘õmgÚ±QJÿTZK¤Hø´]ÑÚßâ)í ”‘Òâˊ˕rEÉ't¢¯­a`"$¦¿š1I1õìÓ#·†GØ?æìQš/݋9ÒöüëPþ"3rكœé=y”ÖmÉ£¿ºä=y“ëenîð(ú]uÊ=
+…E(Yì}Ô£4ûö7z‚¤cäH¥ôő×ôLïÉ£ ð(D
+<Š‘.wÂîi}R€D:H ¿Â€¤˜ú¤GÉyƒGYí|÷(Ë ½ïäDÛó¯Cù;<Ê2iÿ¸9ѳöÞm¹L8<
+(÷(ü’Q²èq²ŒŠ–@”k”{þ
+ó 'šØ(¥oð( {MO4úÛ^pbÁ^GŠùkåŠzô5Jé Bü
+ßnT²}²º.7¶1RÛ~ÍÚêšA¡_3(ôÉƞƏi]š÷Îƞl†½½Ïû¨n¤2^ÎÐU í’Ñþ7ßa„Ðã¨ö¾Æ–õ77=õÒÌýØIsϳœÞÙÜ»œÅê4“çdŸ‘mû؆༂Ó-H-æ¥Î/õ'궬š+s×퓳ÜWxÉÙ$ ÌÞì½¥ ä&˜F÷’µt v9 3ÅI‹J8hýLvȦw‰<!¡Ã=ÔZtÀ
+ѓ£ªø„[ ‡z<„*ɲ¾[=†ao?-3ârìM.·^m´²Œ–ÎœÅf8ڋ¶k€µ~ÈÞ=üŒ¹a³™ë½=¹Å®Z?“-¢GìÝ8:Œ–¤|‚VB¡tlZ͑źÔ(½nñ»âÌí2i3:ÓÒ*=.©
+F[3mº5O¸H8hý,vt²ÑÁ%Œ¼¦é0ښɬàa·J8ÔãNœç}\_ÄU{¦õ’í\òz¼a{¨¨^g‹.8@é:¡±âuÐ}… ç+N°úÔB Uëg²(u @±ëpœ»|‚VRB­ÇŸá\Ì ÎEý²]r€RÉÒ3'œ{ç«\AžpîZ(¡jý,v(J]Pì:çnŸ»MB­Ç38_åʨ#Îo]V'¾ÆÓáÄÇgúuÇ6ÎÖèl\Ð çþµPB՚p.‹>C8;ßa::ßA+ø­¤„Z{pžø¸àŒ:æ'«šWÁè„s‚Z(¡jý,vHæڐ a۔tpîO„Ý&¡Öãaœ‹•óÜÝ¿ šñBt¿÷ ”Q̏eàœQŸp-pКâ¢Ô%Å®ÃqîVð Z ‡zÜ·¤FÁ÷þ‚”2b Š½
+ŽsF|µ@ÂAëg±CQê€b×á8w+øDØ­õx8nÉ8¿Ü~þO§\7Õ(ùöd÷†mÀ]Z»€ñrƶrêEœ‘gKáOBœ,lSFˆC‘"îd €Þe4™úÊx9c]ÔÙ_1d¤ý-F=1Žj=ß=» +3ëhWQtm”wÿ.óI—Ë¢¹+ãåŒh»3£ÿ¾ÅHBOŒƒÚgš{“¼Ísmî;c¯Ý<N›Ú턝Ó/Ò¶3âñéOÿÉ©Ô.0×+QÓö íxè>𼻞eïm¿jσî]>€NÉ(Yô|R¯IEA;­
+§—»œ­"pq¤í¬9qb§Ë‰£'ø’Q²èqœà„;KÚéwÊ]p†™ZñëÀÌ[Ëúàf€¥YôûCÌÿԅëeßÉ© ñ » Ðô"|þHßâVÖ|Êü'j¸]0àv{×÷{Ó^
+Dzæs蔍’EÓ'5ÃE¬8ù®ÎäºcÙӉyšcÅÖ>ƒ–ÕÒ"$×r레MßB°ÐW¦/ñ'ÆÞe͙+:N x Àpqÿ²æÜ”’E“Ã…^be>!þeϹ8Ü$+z0ùQÌdsë×NÄ'Ów8©J—AFø+q¤ïð1}7}LÕɴάN srr/Ów²ë=¹atág\>KuŸ®Ÿ>Ã
+¹ s!C+~…E(Yì½óŽ›<¡ÿûqñø±ËÖ8±híÖûOšY÷’Ó×[êÐ/ï#ÉØȹ)pbx‰ґírjyå€ûÂld—­ô×'eÅw[õk½®²šÜÛ`»•æUv—Êñ°""‘ ÇÞÖ½ñŸ"nž-^Yæ9‹kñÊ<š8nÛç.˟>úi©ŒyÜs9¾¦&Qè„Ôe®¶ØÆÎý´*£×ãŽã€iƒÄè–5é[Dµf¡²ž¿fµ¬¸ ˜Î"^9
+Dµ¥ñZï++þSãØçŠ÷zö ½eŒeÐ Ú±3CÎqn¹ˆdbå*4l„Ú¨…Òì+Cî KE:=}„¶dî³Z0Â0 Ó!4*µÑï¥=Þð*Êûì¯âS5 eG«è«ø¿j‰¯ ´w÷2Èù‡/¯ìºúÛ®yF~
+£íøé´Üÿ§˜ÝåZ,}‡4& z֘¸ÑˤcÝÕzK7e–ò=n£·Þk®w¬ô4äçJ/sot7èó£¡ÇénÒóf¿Ò20•«íÜ45@£çõð媎ý.ï8g­º\±»ËÖ`©›¢ÓQV¨&]Eé¾Íö‰ìÇ%˜ìgµJw­@´¦.
+=)Fù|«ÌST^³@¿Ô'çS¯l«NCx«½Éu‰éySäòЊ®Uu{‚6{ù<ëCy¬/õY{<üΩíãïÜùùöÎ]nù§ãöY/À•m¿³¼s¤´î~ó¨f
+´l¼ŸÊXö™]d‡&™0†·D×B€uæn$à^Ç,n’ÅšÜ}’wÉòå‚ï½2¶yÎEšï‡,´9Ϲ£ZcÈIéÔJ`t¼Ö E¶]Ǚ!4uŸ©Ml†%˜é…ÑÙL‹Xõ“Pk W{¿ƒpå›3†Ö(õ7f /
+Ý´Q€Âeùzá¢Àßÿºsþ`Áš la”}z1ØDºî(*?Ùæ$™Íé5oèqóQ×ދæí–CÙæ£æ&6ùÀÊ£2?݀´ÉÖ Ðó˜´J¦Ñæ՝–72ÝÈçW[vy°·Wú”ž›ÏßF]Q
+-²AX›NúIóvÆXt?ƒ òdŽe1—”ݲç"ƒN(¾B¨ì#†7S+Û®7cŒ2Ç2òrlY•@Z1g 뜋4ïÖÍYè¢;—“Z»C, ˜Î"^9
+‰aåE¢+QÛÚ·ÏÎàYÓûÛðõØïªÀßÿº<øOÃQ‘Òü»jXÄsì{‹€'eŒ:èjŒi0F¯¯ß.3ñ»fŸ³OGb¬ú
+5cIøN®8KŒaՔ¤—Ó®ðððO»ö£}USiÙ¶¹ £·¹™Œ[†¬P"ßIóN†Lòè¤ÐšgYDfÖ,Tæ$²ÚƘÝ1ÌkAÓ¿Y­«‡ï„•$òüæÎ
+Þ,2ëéÚ$Ô[‚j½Z4Ì+NÓÉø}µ®~ß;óÅ®E5†½Úc×â¹Àßÿ¾uQv¢®z2iµ¹Æñº´Û…e'êng«liVöë.Z¤ï§Ê°é3/²jï¿BèŠYWÛ cÀ-²ÝžôN¹ˆ8Ó) •ØsÏjAÃP$L‡Ð\¹TýR[2:ÀIE$ZÎí!§©·Üd¬
+ †mVýmµ.¾õÍlÿûæ”*Œ`Mÿõ×ì¢Àßÿ¾s¶Eî –¹pù¬hÆ
+Lm ÃB[™ã©Åæn-öuÆÔ {<îÒkPÂß~þ5vEüþa“üóXú훇X¿çF͘žÖ _ºÑ«ÿŸ[S½Èúç¦g´p/Ü×0Œd¼”1죍µy¯„œ·’Nø‘ItÉ
+¨MÊcÑcr©Èf›ÖBè¾S‹¨•¼
+¶‹m³ä;…!ǪR‘QOɧÚn§—¥ˆAë²ÁŸC¾ÌÛñµæÃvmõÏ`´°é¨£B燍ñž×uû®Pc:Xó-uþþ?wÎ,2ÚY¬í3¡›|d_ ùÖW‰ËŽŠ©ýÞ¾€:à -ÑÂaZRVãÌڐÒæne;CûŒ^>*{"JÕGuÂ˵,6A&!–Me«Ñ[‡ßU´Yi›Öåó‹ŽÄCނI]ê3S_néߙ
+;TË´ÒõÃrÔ}¢äŸZZ–t“ªUW%S‚ ݪ³`ršªãz_‚Ù_ó²ç"½N'¡6±ù
+µfô+ #ã÷F㺆r½ú˜žuÃUª¦IöÛÉ dÍÏ{.Òi6î— •cYh6Së& c¶tCÁí|¥H““…¶¯F·fµ`„a(¦›ÐT9S›ú³´ÇÃçŬãäolµ¹*ÐÞÆ;3Léê³ìΟtVà§2dŒ! alS£$Ìëô‰Y“{è^çu
+0[hÌ×ø¿xþïÿ¹5Ñ਩OåNÍ $Pi÷Ézþó›G{=zހ:éÚ éöy÷ÈNÄÙîY“–Y¡.´,šö§Ó+frô{-j-än€A7ÙhÉõê¢åþù­ÒkŸŸÇE/.¦º>7}è~Ñ n*jU½hÿÅ
+»ê¤XjX3uʘÌ:ùV ÊV<aòGæ$Æ ßRoX
+ÅÌ­5ÌÂoK˖ôkIË …^V+M˽yr°:Q%=t«³Þdé'§—%Ö/’ÇÈÏT…<¤UŸ«*[õ_W•ŸÇ8j«¤òÄaÝÓ-éqªé~B+äLOˋp±¾¶bèêÝhkEIoCÐz,´J–²JzÔP¦šžêÔR–CËô4¦ûmHõe!nèëð_lª¼ÈXŒzz®WCXŸú’ÛCy²¾7}˜¦¾¡ýµ=]0Û»T—ŽýÑ×ÈbÞ_ԗýÉö°¿Cº~PßKۗ¿ß»¿níë8ûú×}Qÿÿ¼÷ú^w´X¨o*K%‰ ­O^• ÙÙX,„aɐý“e©5CöåR†Dw $}]Þ Lûr±@‰ž¡Ž¿‘È-ÓÄTN¢$±Ÿ‘ŠÅŒªz$©3¦¹ù!#¶¶’X(E2µè‹[8“"þFÈè« HÐ8·Œ³Ÿ^ßñA_ý®Ý68»Ty¬/E¡ÉZy^ÇØú Q胡>þ´XKò·(–žÁoa$J¦$”býC1fü{¥‘‘ZøÖìN•Aûד» ‚üóž3Íò˜LDÆíëZÐoÏ0/ß$*‚ÆšÕ©{É
+³žÉ긣ؕi‰ãRþrÛv üu7sͲt•HäɍÀTWڂXd°¯)ÐNéТo¸¥ÿøŸ·}’HD+1í3‚ëÖ§Á‘Ó<W/n঱ôæ±çh°½S4Þá«v=!1°j<¥»B.dÄ3S®sË¥>aY£Æ B!«8ÆtلoH{N_W“~UöÊ@nÐ3œïÖiw½%8+%Q´–œ#gÁ3•œϜ]}JgN‡7ª¿PŸ­MÕo¶uß}U ژ:ߋà{¢øÇ?o}zH{m¬7eäZøï3Öew|ù$¬}7ÚçËuÖúÔ´ðÁ‚[È÷.Qɳ‘þA5gÛ(kì•j×cżrÚR¹†þ¤Îš3¢³Þ³®7)”j؇”3â‚Sy»Š5ì´.ÿI`ÌUsæ®5îéÂ`¨ÛøÍ.[ÍXÝ9ð. )œÓoVªwXãòê}½¨|z™-íõ´mü|oÒ/úˆ0è;u­‘:%k¸Ö
+äþ»æÔÃV²„¯Lä`Sù_ÔI w5±ÔJÎ(c¤*ÁIGæ,Õ7ŠTs='9Ï ¶bÒgl仆l­äŒÛÒäôxq‰TƒŽk³wÃn'AWY2Ç[A*o)9{oPº÷5ôo–ûù‰k)ý»®Yý6»ð;¾ÙÅ?þï[œ³Q~dØþ׸Èk×c÷_"¶o½mî.úÐü€sˆÌXwœùWd'Æm’óÔû¬ðè†2®+x¹î‘«‹ú÷•5#©q﷕ùÖ÷U[˜rP]‚fçQµ–àÿyñe/™”6]æ×/»É½N}'c—Gxvu3¸nàËíõš–îúcÖ5HMݐXꐃ´¼x„pÿԚ¬e7yˆ¼‘ñsù…v5XšìÕü¶Œmª£ñg̱L¹ÎXûe†LûO¹ËR—øöò«·/àBÆGÌ·zûG¢“I‰\œj· ã³n‘X|e‚$Q%7Þ“Œ¾êrşq¯ÿûå<™êÔ5†È8]¤·ZM¬‘×ÎöúŒš:ê‹|å?,gP&9‡É՗~I9׋ ä«©RRQ
+@™ô=~üw7ƒMW\槮˜k¸oúV§®é½T“ W’Úꔈ*kª¨,·ä&+5Î{J¡+^jˆ R.õŠ/ùjêøA©(…F LúJW|Š
+7}Ú˧´„ðˆ
+9¹¼uT)CKÁ”IŽ¡B&MÓFTÈ똝óՔ¡‚¥Ð”Iß;PáM×^>¥‹6óBTô[£@•5e¨`)8ƒ2É9‚\9+@Ê¥†ƒ"_M*Xjv)Å®øcT¬{]{5+'wNjô\?Œl-éƒ0ò)h!5uÔ£ÝÄ49+e–s˜Ü¡Â”}…
+ùjêøA©(…F Lú~„Šº•×…¦õ
+äEZ>LQRΝ”æõš4P¥¤jWˆag©q^RJUfz¬p å q²ÀWSÇJE)4eÒ÷#TÈbž,ćÁo©›Šç ý¼½<Ôºüö6V²Î¹w›—ƒ?©“¸ÃåëG6jE€q'@L:Ë¡©“îaD–€åD臹¾nw•Q¿ƒîù ¦:Rה…!ˍÿ’“ìdè'7ê±óÁp1é,‡n¤Nº†9„½¥ÍPc͝3öêõêZ†¾J'G„0BòÐÛ½ã`åäê,îpùk}ˆÔÄç[†GH·rèê¬ûgˆ‘ÝûANtu{ý­ë-àš¬'N©º&ݜ†('PgqG”ßÉapR¯z6œÜ5yü0é,7e»œdÇü9bú¡þƃ߱Ößé9CŸÎ­/Wï5*´ß¢Éã‡>μy9ø“:‰;L¾<»&[T ž50¹#)ÕUº•«nFtÿ 1ýTã¡}Aó"£ý¨kw ÉÚ1š<*C±VnüלdÇh†,ËíP—d×MÞ1š<~Pº•«nFtÿ1³žõîÞXG΋ yG²"¥Þ0’ ŠCý8êjò¨§ꮢf¥nÄ._¶îë/nƞä:îš<~˜t”S7¥ntÿ1b
+eT«REÿ°W§ú¿ÊTº¯§ºï¼×î/yNyÆ£™w`À7Áǃ·hœÒæ¹öÍ,Kšåw,ϱi/"¥ý-K’š&g¥Ìr“k¯¡UÊ2µ¯¦êç©RQ
++eÒ÷-°öúÆ«\*ZÿÛÕAª?´úâ>nvSò—,¬­þT~³­>fv™V«:X}0½²ú㖝”üõc,¸_iõå^ÍF«„‰gZ­>è`õÁô«?õŽ ­>’4ó¦°;%iæíGVÜëc4ó‚¨ÛÚ¤ÚïI›V_ÂHNnõ§®.2h<•* 8\žØoP©eGZ}HCÕªTQÇW~Hrˆe}Îêãc›iÃ×>¥ÕvK¨Ñ¬>zѬ¾¨:™Õ'g¥Ìr“«¶›”j×ɗVŸRQ
+ÍXËmÚ>ñ‹QaÔ!¬c_½†í"£¯«Ýõb„üíës;’įn«‡èäÚHE"ËÁŸÔIÜaòw]]ñ^㈐·¦ŽÍRՋ”Ií;a,[ ß‚q½±íҘnÃû·œn#ñZráÈé纠ÒfÉØáY2û§Œ­¾mkؑíӀMì°üIÄ9vj\QÄ° èAÒácåЍÔI÷w$*A—ý?@ЪAñÌöȃÉö ÃmR´é[lOq8¶d{$–K²=̀õÐ.Áöð¾³ÙžâÌMÁö?©“¸Ãä€Ö¼Íö@4KU/R&µßNѾolÏE à‘ã¶@qÛC(¹©Tڌ[l?¦™~„S¬±ÛBì˜í!vXþ¤Nâ;´¤†m!w³=”ÎrèFê¤û»Š¶çâæýŸ#hÕUÛ`{vu”Ýöh†ÙP´é[lÜãL¶gÕhœ2`=ä1ô`{ä±ïd{Ö$(R'q‡É‡1¬ x›íh–ª^¤Lj¿Ub eÛsqÿûcäÛ£@ ¶gçšKŸ¡ÒfÜb{ø1ÍÔð#œ2`=ˆØbÇl±Ãrð'uçØ¡õ 5l ¹›í¡t–C7R'ÝßP´=——‰ÿЄ_WüL=±¡n’¿˜ê|ñ—ÕnÓûçוpÛcœ ½UrJ/õz n™Ô{7¿R2¦Ô»",gP&9‡É* )GÝÛߑ[ŸŠRhʤïg;“
+ÇØôNïPåô¢?ý-Œ+~!ì
+§ˆR(œ&U?©ŽºÞhßOi€M‡{Ñ:AaªC6’à«tIÈA™
+4Pƒ`i…@”B 4©ú
+c=ř‘wÌü§Fä Ê!OŽ˜†™âôˆ|iæ)¥Sœe}ßùá çùÑ­f^Qc¶ _ÿ”†±n`Èѕfæ9”‚3(“C+ͼRƒ¯™yHe)4eÒ÷´zÓõëŸÒ0֊r¨lf^1ÇRpe’ch¥™¥rò¥™§T”B#P&}_EëSf~Ztájî°OÏ ¬¦ÿú ~Îɯ–ÇG¶ž7ÚpÀ/Н3æŠaÞi›—
+ÔY÷w¡,ëg`P÷ӜMÛä¿uÚɦÿh€ðGg`ѱ§´NékÈis–E—¢è ,S½¼ÊRpe’s˜\Ò“R§ûäKg€RQ
+@™ôýììûT·Ã½ékÝÑ>¥uJ_#k›3à]¡?!yÅre’s˜\Ò“R§ûäKg€RQ
+@™ô}çì{™Ô<é 56ãÅ×?¥uJOÜètŸ]Ig€˜C)8ƒ2É1´bJJL÷ÁלHe)4eÒ÷´zÓõëŸÒ:¥n0ݧÊt€9–‚3(“C+¦ô¤Ôé>ùÒ T”B#P&}_EëS΀¼!v{žyC õŒ_–ƒþËHNFòÉÎmùY
+&%ô‹ê#gÑ·‹ ødòRìתAô¨¹z&H?äU”
+˜î{W¨34³œ—|ï
+9ùÒÌS*J—xÎ'ëûÙÚé˜ÏùÖéœÓj¬‹Rᜏw–MÇx·œ.¹¦s>L«±&åÄÑt·RQ
+@™ô}gµt|öœPc¶ _ÿ”VcMܨ!gWÒÌs7·Â9Ÿ,ÇÐ
+Bhƒ A´A,‡Ñ!uÒýetçîqÌw@ö%¿vI°YòËô¹…²õޅ%? C·]¤u!O¶Ú} °üIw@J¥p„œA9ç; LëB)u‘|¹H©(Ý㐬ïgÁï–쐱ÉeZ݁q‹Þ¨w…º¥RðEÉ”KöD™žøôdðCɗN¥¢t‹NhÖ÷àw˳w@€[çÂ×?¥u!¸ÑE>v%—‰¹Ž
+w@²C+ò@‰E>ðµ%@Heéï€d}ï@«7}Ëw@˜Ö…<à‹|T™K€ÀK—x$Ë1´b!”ºÈG¾\¤T”nñHÖ÷U´>¶ØoÍ%˱KòÃpc×>Z>Ÿ­J Ý.^üýù*ˆçèm‰U/ƒHäû|D ˆ×A\
+9d©GÐCït8½òá2x'ĵ`5Ý
+8DžÇùŽ×8øyaÄqÎkº2Ҷ㜇NYš[#ž3 0ȜîÄnê2έƘ®Ž´RÎqýÃ9tˆB¼>âZ°Æ’.´íxçO]!‘·Õ–<È0' )ça§RZ>2;"_›­,Î̸]ç`ˆF=bÉ!dPÚ™¡Óc’6ÈP
+8·!‚8„P†2Ô5LKphÚñ2ΟdpÅã²;ÒçËðíý˜LÇýËõmz¨ðæÙþ±‚™ÇÝG¼!Í{(g¥ÌrìFD¦õö3¾Hٍ¤y]M)³¾·Ü(°¦ã„þ9½‡ƒnâ¡+4å7
+Pjœ÷p£ÀºéN·"7>¦±ù¤ìFÒÔH)³¾¯Þ(óäexû$¸\Þ¦V\KW<ò¦6ÑÊ+í(gP&9vž˜SJâQù:ZU*KU#R&}o¹ oMÇåòsz—áì
+¢•WÚQjœ÷pÞºi`næó  _gP´B*K¡(“¾¯^†h½ÓÌcóÚÌ<Ùnï¿´›ã™þŽÍoC·çڴŸ{úÓà^8܆¤÷N–cۉ€?(ñÓ_ûá@*KU#R&}oÙN´¦c{îœÞÃv¢þ4ØüápSpàáÛÎ8YŽo'*üA‰Ÿ»‚?He)4eÒ÷ÕíħÌ<ï¡ð“ð>I›VÌñ&Šâ‘—3ˆVÞbA)8ƒ2ɱû/À(Gð5´B*KU#R&}o¹ÿšÞE´zz÷_ì
+J!‡,õzp[€¸m@¶±`Z°µ$‡ÜŽw‡‘ç6ˆ¯°>|\äpcã¶;×7ˆR«A)䐥œÛ¶qÎm~@ßX ÎYƒZ’CnÇ=8|\ä`[€ã¶Aè¦.ãÜjP
+9d©ç¶-@Ü6  ÛX0-XƒZ’CnÇË8jc¡ ¬þû"ôúЌ9Ì°áäœý“e'¼òeVҞ½;eèÐ`á-ñ²ƒ-|(Œåä?§GÅ̘Y†
+Ê{ 8äã†AyçE£=Œî·@9öC—† Ëx+h Fè˜.A™åä?¤W½c˜Ñ1¢Ð†
+ãΑ¤w¼vԅq¢Ñý](?vÆ ËQÑYÛ»gçääx´|>sEàj‡5üå«8ð·Íрß\xì^£O#F+õzÀ‘0p4L†¹"¦kÌiÜhÛq‹ãŸ;%žGÞ·9ÖsEà¿{!­Ô#èGÂ8ÀÑ0折¬A-É!·ãÝe€ç\âËgÔÄÇE "ŒŽ;×]¢Ôjôi8i¥œÓ‘0œÃÑ°h®ˆáœ5æ4¨´í¸ç©Sò¸â9p$ˆ0:¡›ºŒs«1¤Á¥•pNGÂ8ÀÑ0折¬A-É!·ãeœ?vÆi«QId±†@Z°Ô0ë aš4êÿjè?;ã´óˆ‡FRYʌa¹H—qw®‹·C_W6å€RùHÿ©zi6¦ÉY)³œÃäkÙþ"eQwp¾šª'LªT”B#P&}?;5RjhÑô"vÛÎéégß/u7j­«¶«j¾«n’:ähX¿LV
+ΠLr“+[Ó_¤”­Ç!t…¤Ž”ŠRhʤï;§FºŸû4Õ¶tûgœ¾Î¡ŸdíNËEZ1·v?§€Ö½†#s´®?7G+9çIÎar9PàK´Rª¦©‘Rf}?Cë*Ÿ-4]ö”·s˜“ýgG+T6´{Ð
+T@"XN!¥P8Mª~„SùèÖ°é
+;·ë©+^²ëòqž³ëþEÔX¶iBfp„ý!Xa¡5 Û­tIí:à¦TD¢²tœª@–B9à4©zƒ]÷F«±<¥6˜Y@˜ÂBk|•. 9\fgvD'BU KM¹Îíú›…]}À®ï >†þEòW;}oçç™ú»¾<­vò”žìÊfù³Ïz6\Rf×Y
+ΠLrÌ®ï=(e§§ÂÁ·ã¡qHíìŠéæ”Iß;ìzlºØɋôîv}×ÅTyâaqµÎ,5λÛuï
+¤„PJ£L¾=‰C*J¡ÑÀ+¦AßWíº|œçìº5–§4 §f–pTûc`U $ø*]B»¸
+HKÃ)¢ʧIÕìº7ZåEzw»N BcÂT-4’Æw7»nê"©@0–†PD)”B“ªoÚõÐìzßMðžÔD3ý«5ô­%oèï0íÒ°)Úò‹ŒÞî˟N±
+8BšÜa¼“,³þ°ûú/ëhofÁ¥`YYãWÍÿþÐ{®é}ÖߧøÿE˜"ϵyßõ“÷\÷ê]ڋóT=ØSoÕ¥åÃܽ¾)aÏvwÕ7å{®àŒ÷\“œÃäâÙnPâÙnðåc”ŠRhʤïga‹ºêczÓÇêǞÒx|{¨Ž-涮À³Ý}õPY
+2øõÛ4vM쓢+¹ÆCÌ¡œA™äZ±U«„ØÄU®\âH”©6 JªÞTkõ×m<mӉ‹<[*×v7”\ŒéP­4½ÚK<Ã”K;‰² ËFKÀè‹ë:ÄèCë:œ®\2Ài›ðã%0¿o3Œâ† ?^¨ðùý9cŒÇ,íÌ<‘ô ¿½gþc<jIî>á·§IðÕO[2é~–S·.¸tî7Løc?Ä÷BRF8ti/w°cÆ|ìÒ_ö0þáàeèfôñ襽4Bî]>|iåÔ­Ç/sǼ5ᗏõà„߿ϐÞ{
+£ì’.eÚ¹ïÁy ÚLoᐨÁ“]²æc¢VNµ¶xPôUøšó°>sT§ùƒó€ óNÞÄÉWhx|40ðš¡O‰·æ•fˀó°¦7šq ϝÞTdù˜hnÄ.Óÿ)½ÎlÜÍyXÓÛ̦ÛïaÞâ<ðê¡÷ÃÚ¼Ël:ýçUI8¦:Þ^dù”ždnÄ.Óÿ9½ÇlÜé<˜t”¯é1æF÷W~Y¥Ï>ÅL(ù”xkb¶ 8kz†™}j΃]+Gù˜Þ`nÄ9”9ýŸÒÌöÅÌyXÓó˦[—®¿ßá<JÞkóô²eèôß®˜«s:¦KPfù”^]nÄ9”9ýŸÓ“ËƝ΃IGùšÞ[ntÊO;-jÎÒ¿NÎÄÉWh8Üâ< ºxðNkºRÀìœ#o͕{‹ü×t¥ÜÝy°°ò žâ>4“î<°œºÍé^q¿Áyˆýc½‡Œ5Ý+`Ôuª¾6÷
+,*»m÷
+¼c˜1Nj%žÜç|µÀʩۜ.¤ŽyËyõ óà߇¾Â)cM· ˆTΔ‰d:[¼]Ú,˜à”Sܞ ¦à)Þ00gµïp¼úô.GÈXÓb”šÃtÖxÅ´Y–9@ )ç¸WàKÁs¼f`ðÍj¿ê<DôÞTƒ^*Ç!w3w
+rŸâ5ëO¦‡x́ %c1÷éšAœÕ¾Ã÷ðèÓC!cJ׈Qï’tÍirŸâ5S›é!^s <ÉØàKÁCºæ@øfµ_õ="zŸxÍYvF0[e°jä„ðÕã„=l£:çÕïtŽ=ÉÑS¿ÈtD×^. 'šéð~¡Õ rÈRÃû…rátڂŸ¾é\2ïZÍö׸6f2îx¿0t
+¼÷˜uï–FOÁ±f:¼_h5\ÊõÐMÌét.F¥ÑKX`:¼_h5¨%9äv¼ü~¡|¼GÇñÏÅQá"(å0BóEÇ9-ºÕ rÈRÃã8D© @1e8Ω…Õ˜íðÆça·àœæ9uJ—qrÖø8QlÝd8§•·.eƒBè&æ¥ä@[7Ω…Õ –äÛñòã8緾әÝü}~–A4ÎþNgûpçã ný‡×'»æhËÐe)મÃû²X9ùƒ:‹;\¾.Hµ®Ww.h™t¼ÓIÝðNgÖý£_bx? ØÀE†.D!üשLu.d!Œ€•“?¨³¸Ãåë”Që
+•qç–IG9uuÖý•ß–̆]¾"”üõÉ®yèÙ2tå‰`ÂÂûÔV®F–“?¨³8‡2֜ ʺ$e_ŒkVe¼ÓIÝðNgÖý([?ç ]k"˜°:¦KPf9ùƒ:‹s(c•É¨uʸs•Ê¤£œº:ëþ.”{§Ó\ˆŽçÛÌéڗtÜ999-Ÿ{\‘aäތMéÏ9³7'`Ñ£â6ÿ]4Û Ö rÈR£+2èáuãÐëÙv“Ñ30±iÁԒr;îqEB§`
+ãNWĤŒ±÷ÒÝ_ùm•<»“N(Ù›p8g¨3A0ÁÕ`Ÿš+B0"Ãø+u#Ρ g ¬®†}1º"e”ió¼Ñý({?ôÍιe Œ=÷ÍCÇt ÊÈ0þJ݈s(Ù0ju5Œ;]“Þ1¸eÜ.otÊO¹"áí£3üöÆé~G{{£áñÑ(Á(ôfûìY†S†Úy{¨a‰‘ê}”` {–“ÿœ‚Þ›¹² µóF=Äèú>J˜t”S·1†é¿e”`dzïÄÆ?g¨g$}Œ¦:G ·g9ùÏ)¾w 3ÔÎõ#îû(aÒQNÝƺÿÕQ¢´`xt” ”Ìöç µóFö©öêÊÉH¹² µóå=>i⣄AåÔ­K¯£Ü1JJÞ|o䔡vÞ^ ÑQ tL— ÌròÒ«#Þ1ÌP;oÔ]|àÄG “ŽrêÖå·R^% ʏ/Xõ£íBay
+9¿®–°NËS-Ÿ{¬äàK^žºÈY±—Ècñ[ºEÁtX°²”²æ[¬ä¨U\°ê§t„é°`e5¨åœï•˜Œ;¬B§`¡ç"gµûzT~ûïT0¬¬¥¬ùŽFè&æÌvËC9ÌéVÓaÁÊjPË9ß2IÝôڂ•|¼G¬üsq¡ç"(µ#X[:±pÎå&«A)k>èÐr€Rã0¥3‡ç¦kPË9Ÿa¼çv´)vJ—qn9@©ËŠC7uyÁÊjPʚφnbÎl'
+ÔÛû®ˆAù1W®Ãè¡a4Ã^'¢»qÊ°÷‰Ÿy!˜Ûس<œP3L†t‚…g‰8¨Û«EœY9ø/i*e¯êXƄɨÇ4{³·‹L:ˡ۔&ƒw<_ÄÙLêùMœ3LtJ…GŠBÇ`*†é•ƒÿ’&O¡c1Ùô«ROi¾f/™t–C·)MÿÞ|ÌHZ°<ùš¡doöç n"˜ºä®Ú“FF–ƒÿž¼_{rÇ2p´
+Ô<xîö°¥[9t[“ÿ~ÇÛF„Rê‡pt*dàpÀÄÓLTŒV>ó,TôwCÇ c5'­¢‹mÏ™t–C·5yìo¾tdP~ê©£ekÎá2Ã\‡“sqrËМÃ]–æs¸ËœÎá.¼O_bÓ9\ãê¡9‡kJfԚmÜéK˜t”/én£ûG?­elÎá.ss×2ÔXæt×T§/±Œé®ñõ؜õ %3jÍ6îô%L:Êçt·Ñý•ŸViÁ³çp %›!ç õ&ø
+Ï|‰nÕ{>Cî+>ÏôºŠnú
+Ý^?²ûݦ7'Xþ Îâ—o€ÔðÈÝ} H§/ÝèK$Ý?›€MºìKtŸç z]E7}ïø…á| òuw¸|x¤†¯@îîK@:} èF_"éþά´`zԗ” ¹7ŠB½€ ¾ûÔ| ‚‘åàê,ΡLoÔôÀ=ø]ºÀDÝèK$Ýorè‡.Þ(
+÷#ººc‡ ²Wâ,ì0át"@J'¬Í‰ h–C1R'Å?œyuu³-tÂX7ÌÎt†ºÝfN‚õ
+ž%‡,5œž…‡nàÀ› ¤ÃéY«A½É!·ãžÓ³¡SÖäˆÇÓ³E–¦çC:3OϲÆlîu
+º‰9›™¦ÿCR3NÏZÕb€ëÜM¯ž•÷èéYÿ\ð”C”Ú¹Õ>…
+ 8·³¯¬Á³±ä¥†Ó³D)9Ŕá8§Vƒz“CnÇ=§gS§tçv(µs«]
+png_Yc°ÑŽ0ts6 h¸Eœ[7Ω…Õ ÞäÛñòéوó¢ÞN z¯wòdÌ[ó-P»M[õÏÞN|61cOéIã"h¼ÙòjԍºŠ”źe)8ƒ2ɱ@·åg6{œÛ©ÓH àÛ1’¤¢2é{GˆÛØôz‹µMû@#̖æÕÈPybäOËRpe’s¹G¶-Í«ÑÀ·g´HE©iØyTÛÔÿ_ÿpÔV>Îs1mý‹hlØSÓ¸²„£ÆX5°jPZ$ÁWé’ƲÜ@$‚¥áQ
+jI¹o/>uÏ<
+n£BoK…[z,(›v ixÜ2²ìsó†Æ9cIojìkzRIT¬ü—ôž¸ûˆ²é5}Hi ”!=¥aÔI÷[†“Ðxæò"#¾¢QZÑ@ÒG+7þñÐ13ãAÅ÷3JKãóHúbåÐmJog¤Žyk‘õäøá–÷œ±¤g3Uöµy4ÃÊÁIOføcƘÌ TÉ}hžË°ò™±¬âc·@Æ:õC— ìñ¡ B•ª/Í3Vnüã#¡cƃŠOdªä>6dX9t›Òó¯B™ÃD„ò£Ä65QϑñëbØh…†Ç-£Ä¶6áÍÏ{
+w¾w)Ú9’a”èR¬s£Nâ|”Ø–è|›Sœs$}”°r趤 çÆý†Q"ôƒZÚsƖœ—–ÆøæHú(aåà¿¥àæ¡c,#†6/-‘Í‘ôQÂÊMÙÖ<uÌ[£„|¬'G ÿ@|U§ˆæ„*ÍU×Ä3·rðßS4sÿbÌXR,sBÜÊ|ååÐmIqÌo2¬tê‡.A™[ŠaN¨Rõ½‰`nåà¿¥øå¡c,#F/'TÉ}ib—[¹)#—¿
+eŽÊOŒëڄDƯ‹a£÷Œ]SðœÑ§ƒÛB "飄•ƒ?©“8%Ö=E\·\I%¬\u3ê¤û=£„÷,í)£OQKÃcPA$Ã(Árð'uç£DiZŒ'X’1œ ’>JX¹êfÔI÷wG ùXŽöhiO}
+#H¨Ò\”içYþ¤Nâ|” AM¨‚»CÒ­\u3ê¤û=£Dì‡.A™}
+gÇìvhV¥[¹)«ÔI÷w~ZސõÈ(±é1%ÿ@»3:gŒ»S"Tw=¦ ¼[l²
+eð'”“¸Ãä•šPw‡2¤[¹êFê¬û‡PÖãI¡ôxÑ9`Üõx¡ÊŽq(ë'ƒ2øÊIÜå+•šPeÇ”!ÝÊMY=žt Ê8¡|ë(U= 2ü®v™]/W*óøl”ÀSó~/ï۟3p}ïÝóú6ÞX÷ëÛx«žå俤—íý¢23p›Ô¸¡Mîvƒ›ÒYÝ@uÿ짅ÇåC?è‹öç ÜÁÆ ÷¼¡íÃ'}žå俤·ìCÇ w°IÚän7¸)åЍÔI÷—|‰Nß{,  äw“‡s®pLÜ^ôiG_‚`D9ùƒ:‹s(ó6¨yKÜý7¤[9tuÖý(‡~P8œ3p`â-mªn·¸F–“?¨³8‡2ïa“·´ÉÝnqS:Ë¡©“îïBù±[Ü9Šøï«8ãí°Ñ
+§Häú
+8¿ÇÒ!úYÎarÕ²“rŒÇ
+mT T”®ÑsÈú~vkiÌ~ŽøÒjÑqâæÞ»—•¦è2ó÷yWŒÑ_ åÚ8@©(]¢¯õ}ç~Òô¬§Ô˜aÃ×?¥¬i‰^»’柘Cé]„,ÇÐ
+>0ÇÒ1:YŽ¡暔k<Ám¦žRQºDw ëû*ZspÕZCˆq/–9¿,g).èR3@dÿŠ;KÍDÙïCÑsBef ñœÈ°Œ,ã’4DNÿA‰§ 1¥žËÿ–‹ y…¸^N-]?ÔWˆeF6¯U+$%zÇò³6/Ÿìãqø«w¸üÍB×
+8·ðªäÀð«”áZ©kPKrÈíxçOEhEø
+J!‡,õzË4àû†ù]”¡i¡ ¬A-É!·ãÃKÌ£*:EöH¶Ëœ2µ”–ápª8_´)ÖMãÚ|Å9kP
+×[9äv¼ƒóҌ¥â\´$Îo=
+d–u«§F£õ>ç”[´ç¸ýgFé`ÏYä€C#5ØsM£=/è¢=G:Øs«A-É!·ã&{îB;xΑp[ўK¼­hÏ5í9kP
+jI¹/Ûsђ8¿õ„‘Ùѝî”ÙÁSÎÔÁ‹„%zx™0"H{n5 Å8d©Ñž¯êEڈ°¨—i†j¡j£
+jI¹òÿØÌz>oB(ðz1:§·Ÿë¸òO®„”œx§‘IðU‚$ä€L­®ÿ¦
+š¨gzœl“ cøÑ‘Qa³½½<i>žÓK™ANö'UBªâ¨c•¦ÁX)’”ƒBQ_ÿ¤*š¨§ 9Ä&1©îøËù›yùîŽÝÏi÷z8¤[î_J’¸Ô‚‹yãçØg¹às•³
+Õÿë꽪š”„âZ²üAÅ.¿|Ÿ~ÿ‹Ôr6ʙkêøAÙ(¥b ͊Ÿí[NÂSœÛ…Q狌AV&°Ì9öò•·I÷dH5Àå¬(ÐråOê,îpùÅ­ç¿H-÷:çŽäñƒÒYNeAuÿ0ÒYÑD:ÙûA^XÏ¥iݦ+­Kó ¬c4yԗå7éåʟÔYÜáòñÔÒÒyóŽÑäñƒÒYNeAug £4hÛôÐ.ªÞ´O¡$K¢¸mz+6Úq,{4M9ŠYªœA™ä8„çòÁÓÏyq¾šrü¢2é{ x½éúýÏémrä–æÍ\M9nYJΕ2ÉqÐ.ú#匟¾òՔ#vv³R4eÒ÷]¸Êê6Ðzë~ø4ËF»’YæÖç407íuf<N[½­nhÊ”f7,ƒ3)£œÃäs Á×Ð
+©(…F Lú~øŒÉR00{ÓEìÜ_¤+抒۸PÙÐ:I–ÕJÉY)£œÃäs Á×Ð
+©,UHõ}­2¿’Õé€Ö[wµüðùOèNН>Mð¬\ùuç¨å@jNÀݧ Îr* ê¬û-Øõ~Nè$NØ16M ­\ùuçæ@jNØ16M€t+‡²¤Nº¿‹ä8M¸Ø¸þc¿¥ð—ã'kñÍzù>“ø
+½ñEªÔU©,…† Lú~ôëœtëڛ^ vùÖéuÚEɽ_ÿ§bWt860ɛX£•çJ™ä&WbÌ́²¤úm²®ÐT©«RY
+@™ô½ï÷(þã7ÒïE¿¡˜ ù9þ·GbJãî8:Ûô\ºg0´.?»Ò/üDšr´¢œA™äZW 5­ˆÓB¾ ãB©(…F LúށVoº~ý‹ô2ֹ͆ühSYSŽV”çJ™äZ×ñç,® (5nùjÊÐÊRhʤï«hý†^ÑúßoDkùõWÔðúbAr‘–½ƒ/©âFöîk&ºr©Ç
+ÈáÝZÀ¯·¬xôV“à«tIC nJE$*KÇ©
+d©*Cœ&Uo~æÖ béÕ#ŸˆèÂÜjÒø®õÌÔÕ$€¦TÄ :ÁªYªÊ¡IÕ7ÝE€Þ¡–Ù,VC¾0dYcæ[;ž©o±ë+Ÿ\„lÓ[}¦œv}¯Ï’Ó˜iÊí:JÁ”IŽÙõ2›ÙÝ®‹›âv)³ë,…F LúÞb×CÓ«<§÷`×·ú9U֔Ûu”ç=Øuë
+¤—ú :)çúZ:ùjÊì:K¡(“¾¯Úuù8Úuû"0–mƒ]íUî9ÚuM‚¯Ò%!´ë€¨€D°4œB J¡ pšT½Ã®[£a,Ïé=ØuÑÞl_¢]פñÝÝ®S]$h ÁÒ
+°©™%¡1aªIðUº$„v@#¡*KC(¢Ê¡IÕ7ízèv}1Ȫ!_†¸1ó­ÏÔwØu۔‚<¥aU-ìŠø«jtV‹ÏªÖ™¥à Ê$ÇìúŠ¨ª°ëˆ¹
+cf1Ya×Q
+v±Õ¤Na×Q
+vÝ­Æò”ØÔÌˆÖ ]°ëH‚¯Ò%!´ë¨ùWYB!¥PMª¾i×ׇKh}àu.
+C¼Ôœ~¨q$Rd‡€‰§Pý:ñù0Räös“ƒ”yc@}Já”ÓwõY4 n2Õà•}}­†C©JkZ/xm5ÎjP
+x5íO 2+Þ>öϵâ­å‹ tÅóËDñªœ¯xBÙjP
+9d©‡ëA”’QLŽsja5 ¥qÈíø çrˆ4ã¼>~º]æ¥%ÝGœ[7ÎÅuˆ87)䐥IŠRr Š­› çÔÂj¸Þ^ÇÜ^ÇyiÆtÂù½ƒ .èX|yÒ¨ «PÌ°md’œ2îـ_v\ĝ·bد2¸“P†ßÝ×uç¥mõ]ˆY– Â6ø“:‰;\>ÖiIE\r·5^Jg9t#uÒý³_ZÑdãB¯l¹-ÛE–zKrœ}­—ªÛž„ìµM¾)Aþ¤N●µ[Rca—ÜmݗÒYÝHtç·UZ° îNJ¾Å
+8œ3xØAÁd'!´Oý ÀhåàOê$Ρ̭dRcŸ™ÜmšÒYÝHt¿Ê¡W{€2·£©º›­ÜøïÊ¡cíeRcï™ÜmkšÒYÝHtÊOíOˤ¯ÞEÅ+ò¿O9¿êät®¯uõB‚”ŒrA¾Œ}cƒ´~³œ¢ö¼þe
+¹Ùm24}üp-Pô‡¦/y.r…fØõ±ºqšëoõÿ¼õ)xbH\=ý\ÄÐ9§Lƒ$8Æ*ÞÔömÃ읋´~Ž¶WkP
+84R ‡L´õ“+ ²ehZ}Õ5LKphÚññkð†Mv
+ðq‘#^rï8—¡`8G:àÜjP
+9d©糸mã\Ýœ#pΦ%84íx çŤJÑjJWü7rþ|LÂÀ+1rön
+J!‡,õzw¹Âú]£àSÒ
+£½8%_MJY
+@™ô½§Öô!^›ò´ƒ'Nõà»wE—pŠRpe’c8Åá{RêÁ|ò]p™RQ:ðêÖÀºÞ~Âùoƒµ¯/n·ÏÕ÷¥BÀL‡pݺ« ˜Ô½‚&uÃ*MêZ!ÄRðe’tP2Œ£Âl*W3©*rƒEVu”¬Ñö3°®ñüoôïv‘ã¸óH~µnè 3«k<#OÞ L’J†\q*¿šNåjfu§ù©Ž’5Ú¾ƒÕõçÚÖ;§Û­‡}üSL+ 
+±Ig9t#uÒý]$GS|ñæïŸC¹ït3Ó¬LAÉÐ]eÀ˜öÓÏ!˜â~Ôu63Åbo‚)&R'q‡É‡Añf{1]4ÅÍRՋ”IíÏP,Ê&SÜO1ÈWȀ1-Š®Á³OÌËQ0ÅäOê$î0ù0¨ †±o3ÅÍÒ ǔ2©ý€‹ö}cŠ×'ðk†@8eÀ˜¿»mTuÉ¿,R'qŽ_SRÃԒ»™bJg9t#uÒý{?L1 bȀ1%ˆaj½cº b–ƒ?©“81)©ajÉÝL1¥³|b|Ç-"ùMSL$GS¼Ý
+d ùÝ ÏßòЊ¡Z%˜£ Øæ }¶ó·d­â\œe=Å2ž]82ã3Øg(ŽO92..BqüґùdÏQÞ,²¡z|fî=Ç"ÊkǧfÞØsl…=؅õ]"ëÂG¦ÝìÂ"jðV=4íf¶Âì½ Æñ™
+Wû-Ó#û-ÅóŒm·¸´Æ/w[>£ÄŠu0>êЋ;|'i,?ðpzƒÆgœ>‰Ö{ǧÜ>—ðø¨ã'7|º8=êùÉ#›¡]»~'iî¸ôç;Ïn¹ˆ°0yzÏå$î‰_ö0]í¹Lø€cwµå2=亴ô³~Æ €ìêØôŒè€ìÃRÕô”#è€lÄ=²&±\Ž4ø‚‚à @>ä º´È/ÝAïÆiÿِÛ~uÈä»ãÌßrÑöùêˆÉ÷‡™?;ñéQ¦Ãh=?sCÉ~Ôò„Œ·ì©;Jö£nÅ=r–|¼Dã#ΌãŽ93.-áñ¡£ce’u>O>?ãÍȉ ÓŠíü”7CiiÉv~è’Mw5癟98¶\Íyæ§NŽ-Wsžù™å2Y>ŸPžŸñeúþâˆòü”/CiÏܳYÖ«C&ó#®Ì:^1™òd\ZBã3ŽÌ¾]ܜ›Ÿ9;ÖMWç槎ŽQZãÓ~L·„³ùa?¦[bÓ÷cZq.ôH` ïÆgNŽaG‚Mx«ž:7†ežVØ>̾\Óߎþò·¶™ºájœþ¾aüSiÑ2~i?ûIï{؏Yžubö=ì,Oû0­´g»q+ŽË³§…ån›7ì©m-ëÆFڣݸÍÁ0.Ï\#b7Ê­=oØS·ˆØ­´G»q]ÃÊÄòÐ"tãºEcõ”'Ènl¥=ۍ]˜í,ÏlkY7vq„yjW˺±‘öH7òŠv}žÔºñOpÃ
+ñß\˜Ø¯ˆ¿o‰ÿTZ\ùç
+£˜º®â²[ÇÿÍÞ»åjŽÜX£ï=
+@ˆûåñx'lÀ(?x
+I:@¦LÒ1-š1øÞ<ÍöÞ#³x)¶KÓõwZ&–5ß|¬Ö.IsäÝçjÍˌï>X½
+ÎH”ö „M´~ÌfÒ©ô-3;*ëMWŒç5t*ßIŒc&t4ŠòócOKV{/qb²I
+ª"ô=.P4#ån2Fï@bâ:ã<Å'aUVñÇg’t:6…p®è©Å V±îƒÉ£˜Ñ¹­ ñûŸÃI ý+vø⠟ΫÂ9ëy«k<šBs”~V`à Ð#0:)”‹7°áôg
+«¸µø\LÃčìj&¸ÒnkŽ˜†éÔ.`WÓ0£­k¿ÆÝ´áÎ_ú÷Æ[R
+ØÕ4ñA–ŽbUEÌàÉhøÙ$mk%…´Œ_²R…¯Y®Θ29œß˜3ŸÚ»îߗdÒ PpÛË[
+}«Ñ~p
+ŒüúÀÌ=~{hú%=0Ï!QºžoHÂy8ã<JÜ%n¾8'…o€˜ãÂ@Â18ÄÉóŠ”Ö6ɂ4þë—0øšhøƒò›¯Ög
+ö%>­OfdŠQ†ã³5XîmHÛÃÔ×øÛü¸Mœ©¬KÏ9
+ŠMÃYå$²ß°û(m>Ú¾FWGƒzɳŒTZKê8‹„1…ìނ­<hüm~ÜyÁo<üî{¤É_Âe8…”ÃrØ?WÉý¿„›0s}uKb&ɶÚ{†ÜóVñj²{_f e4h“7\½^çz”ò;°o§€x…´òL™T€„m{֔ù یnÛ¼]·¬œVjÊ?„m;÷•È–Ìõ;Êà)‘Ûm’JA3E_[ZuTL†é#žTL(‚ÐzYÜQÁ˜zIÁr‹=J3A*–L¹Ž­œ/îžÝyâ>·O‡6î‹÷¬Ú}QtËß©½W܌^{­þKšö°ÚνRSÒYB`Š•ÑÍ[æ ëFµ:ðœãG£Ð?ޒ4‡ÅN©À0
+Ù!nÒέaì‚u1 #Ý&Ý†ÑÇ.XÆG Ÿ¿#[S½#KÙá»wäf KƒB®`Á‹Ð¡“”[«§HÿMχ Úck¦â4F§¡(×´>„T9‹šLëCPKHk}ˆá5µ©'¼"U+æ좀º#¼¢A]!'ZÝ¢A¼¦¦C(•b&‰FS‡Qƒõ°Û¥jÓ(Œ@œ;œ÷
+¦Ú^ëlþÓ¨&ÂtEƒ>ûyˆTB›\ªC¢A¬]Š u>Õ»!ÏE-½õ!ˆ€¥€µ>§þy2{ó!×ÈF;å
+[èì*AÅZ ž]½‚]CEkAã¤ûL@¨8Z-j˜twá 謪€ÑB%¤³ª"8 V¾‚!]«9~‹‰¹‹ ëI‹
+CM7^Ñ nŒ±ªLÐ ÑîƘêÃ
+• 7^Ñ°nTU´0ÏZ‡U}à^µ7^Ð n,#ÚÜç}º“ ¦½HXÕ6Ce‚¹(]Ð0“±C¹@Z¦Ã¹PoZ­ÉahŽˆÅ¹ïnĤ‚LSyw#*,h­1CDY÷#$¤@¿³Ai`k}(&ŽÅ&£±ÊÓ¾‰À“D~箘4r Íã()Ö^D偍ŽþT£a"¹@+XwÐ0OA»zRf@ÞhK/¥×!KZb'œ,­ó
+.Ç%›
+*ÄVqëؙʾÈfŽÑO Kë)½IPü¡‚-H’VՔ¨‰›î¨m$N!V‘«7åØ9¬C€7P1,é„óOÁ´ÛÉ7´eUÕâÁaŪPžUõV$Jû
+úƒ™‰•õ¦+Æó:•ï$Æ1H:šEùù±§Æ%«Æ½—81aù·@1EñÞ¸@Ñ8PŒ”g¸Ș]¨õ[L\gœ§Xà$¬Ê*þøL’N«àm=µøaÁ*Ö}0ùo3:·4~ÿ#K?Ý8ä>ŸÕ’ž-hŽÒÏ
+ #<K'…rñ†‘-`W?
++/ù¸i1ƒlÅLll´åv4åü¦Ñö‡¨·Ê„ѵH·\òÎ.:¸•,ÐÒÒ_~
++ƒ¼·ƒ^’õSÙ¹¹4ç]´÷§–¤}ÞaQ(—²9°þ>ˆeMïXÑîvq_Œ;°þ)+G·š>—¥dcæ« Y0¬Ÿ£µòg.ԋŽ´Úéêr…•ê§Wbz‚å)¦Ö\±„ÏõªŸ.VÝ7ªãbÕÁZ1W0`K¢wUX„ÎåÔ٘ÁcùW0  ƒ®ÚE"æÉkwa¨ ñƀ¼“Š^À.LUãR„ä‡úu!‚çñ¯`R)^¡Ç¬êºÿ_¡–+$j£Ã,BfÍuö$úï¸÷ƒS”R¾ˆíÍP„±7h{s8Õ"•ü»p)Ú[Û ý’ù ÁŒ˜&©÷±4n:;¸)#ªK*ºBFqÃQp”gÖèÃOyÓ&åÓâìídDµI´ö*“Û¤¦
+s¨"hïÍÌ5\Åãht=ü™ðÐlý=ÿ‘ˆ!Wö ¦“˜Ì³K8´\‡»U¬#§×{@>$VF͵BãµQ´c“$èjl©Y?ÞLá#ËÀªõõΆ½&õûŸ˜*G0|¯¸­ýÅîé,*8´rcXßÌ/pë8Êmu '¦Šs8ó
+Üsº§J_RÃ?˺u{ùúùCz– tÆ$n¶;v—
+§rŠ_ýò¹•¥çÙ©Ýe¹vC»K¬0΁9½>{¯`@29\(‰ï\HP:V‰¥Åw.¼‚\ÈEÓՇim/>»ˆ§.Ê6»s|v‰uÅY4½}²+Úx˜_Â`‡Œá£“û˜´>ˊ_£w
+.ÿý_Ìž†«fk´Ü‰˜¶6’/ñNÙ» ¸ 6¾6hÕ{nƒ`†ìãR±Ãí¬Ü0|§ð²Où&ÄØSë+¦ëÅìý†e
+—ÊÜÒ`®w%w.KC¼TނUÄß_2Å۔iÍÞÌ>–_­r†™Î¸a³,3b“Yõ¤ý——×á ö¤Ùm[åâÂ6šëq%QúгiZŸ«Ô‘íÞ*þ‘YÌ%)Äc¨#ý¿T‚Ú_ù6z3?ña°{c67¸
+LJòfÚb|ØÁxü§ôÄ „>é‰!›´^?wô¨LGLÁ"7Í7â>
+‘üüÿnâ
+C11”„óŠ9ÑÍö`ÄÌA¢›íÁˆ’¬9ᚃ£YÃtöGBòNþáŽA‰ç‰Ö¸ñV£™»~ÄèÖ²¬­#QÂ5'\ãI±ÛmJÿÄïÜ»amñÜÈрçQ†¶v2óÅD&ŪñhçVääâŽYŠÌy_ŠÄ¿cz‰ŒE%2'\½-”º.Ùª6l¡¼kuk-˜wí
+ta •˜‘Q¡í|¡Ò²("´Ý…W0  ³ªF‹y¡Ø]˜UÁYÔÅîÂ+҅±â ´˜˜»¸°f±°¨»¸ðyžˆ1( ‰·™®ëVb´ h»€5%F+ÆÚo–¡V®jb±6•¢¦j‚
+Ù¨^Ìã1c¡óxTçXèÅ<S.ãÂð½CÙcr­;-Ê•Ë´v5bæl˜¬¬³!©L´½ÊdN´f5b™œ:“sÓ;¦\gtΣZÇ
+Z»ÑyŒ
+3;” ô¨e:œ õ¦UК&€æˆhåÞÛ&dúÞ»Q©`Ak݈"ʺ·!‰ úµJ XëC1 t,”ªE|ŸöMž$ò;wEÀ¤ÌwËã()Ö^D偍ŽþT£a"¹@+XwÐ0OA»zRքÞœˆ§×!KZb'œ, ý
+.³€F7Ìð7ӕjªÀ`˜Zu®+ÕT7õøA<ٕڂ!ª ZÙ^xXòúYa"÷
+Äã'ñ,Z]yÐWðäAÜv‚‚уø‘Y)wB‚ñcx
+«¹ÌÄCجÊ^ëÉ¡iW®Ã¤–höø*YæVf0I ú”¹5­º¸›ùÅ}ñ¦ßõ°ìã4µÏàW»Ž)ªj¸aÍð9ëè»ÅnX3|Ò:ÊÓj¸QF¦Ië˜Ùª†ådš´ŽþZ³TDq¡]ý!·/g¿©ñjs ×Zf힒YW”á¹éŒå£NíÚÆvûmTþ$¹äø–ÌQ«ú‰^|4jXkå@¡6.X“–8„3Wø:}N›­H“þ&*ñéM¯Ž‡§'''Dm-W]|Q ým@‰ïÙ¥ úorç ‹¬Í°
+…ÇœÙ*SÐʏ³ŽßLv³ÄלI0òæm|“a⿾¶&¨ÅŠ6°3ùo†ÒæZ¡~ÿsøuE?xgVð¬ø¢ „ªkü-g
+Í-ÖW`Ã/9À(4T.ÞÀ†ßq¦À®~")4öq­¶¥Å Ê®°B‹Ñ–çj”cNÂúCL¢]Šˆ¬5+DÊ'cXccm’O©w`Qí>üCLނѕø¡uS‡w`t&¯
+i%2ø×pm¼.ñ¦¿†k“‰aü5\›hILÒ¯áÚ$R¢\~ wI%jâ×pmò/qø¾†k Õík¸KÑ|ª\
+Rqêk¸¶Ø&ы¾†k ‰ çËë•nõȕ҂
+UöØá‚&‘¾ Œ®h˜@¥D}W4Pö³‡´W4Pò³ÇëW4Pî³'#W4Pê³gZW4P泧‘W4Pâ³çÈW4P5e/\Ñ@Ŕ½ºqA“8^–n®h RÊ^—º¢aΒRt»¢aΒRQ¼¢ gI¦ónk¦Oaß؝]47ñZ+jÏ®~Š%?^s3„^Òð»KÚ™¼2—ž·Ÿúþ?$V¤¿”́õ÷A,kê©#ékÙÝ®|v¯Ö?¥uOÑÏÖ;À=DzTò••5ƒæË-…ÍŸ£³øÏ\H+6FË!‚+ª—?ô¹æ°¼_läC¸Å>×+¾¾X±{E IZáë‹ÝVDq¤¾¾ òлŠg.Buê$~‹`ٟ+ЅAWtTC©±»0ԃþō¶»ð
+æTás4ƒ—´áqç´míÄm ö% æŸ^Ëàv¸<—ipZ–9€HiÇVà Pp/E
+‹Mä»#™¦­5JHO‹Õ¯ìTL2¼çÒ_ÒÜÚRXL¾! ×׌ó¬áŒ@ñ“~>'Ü\o€XdÓ@Â91ĕÚ)­<ÍIêª:©(üYŒÞ^]Ö>”RïûÖC^üVíІÂåáÐÚlŒ^–_*Ò֜ù%õÉÌØÄIóºôÜòî6ÉÜýHd¿a÷ùtò}®NLô(!fÕðL¨X–„°"¦‚Ýù똗²I-v3Î ~£md¾†£®÷%µ×Í å°„öÏUJ±_Bà’ù~u-\;Z¯áwœ•eÞ3ä^B¯&»CZFƒ6yÃÏÛ+ѦR~öío¢V¡k“
+°mÏGg¦ž0£Û6o×-ÝÇ£ó±µmæ+qŏEÆrMa·I
+øfêw>l¼gLWSŠwÃú•OâÊÀ}ˆ« ÅâŽbZÀ”î
+j¨î„«SƒÉ‘¸WJw<‰iÝY»¢ïž„ÍÖp'1™÷Øڎ'1}IÜ4Òñ$jÄî„k<)&KS~‰P¹eÿˆó%JÄwA#S—f“¥+‡å–i}ɕÊÁߚJ•J„zƒ&œÕVNÄôǕ„3ØÚ0ÔèTI8¯hƒ±¸ñr0bZÿŠ/ã¸Üý,\s0>¼:êžÞ½D8:¹«cOïހÏ­qãÁûG 2wý8Ü°9µÕ.Ž—½Ÿ…k<)J¥œ'dz ÿ¶‹è±ºÊ1¤;ð<ÊÐ蠊LßÅö‘ G;°"'w,ÈRdڝûR”hogfM/‘±¨D愫—¢…òƒ$[Ն%~ÝwoŽuk-˜Üâ
+ta\»ãŠ AÜûG8õ
+¹‹ /`ç‰ÒkY—%Âê9³x¬áVb´ h»€5%F+ÆÚo–!ÓŸM, ÷»uÈÌʕA¡vYˆ74d FÝü&q‹¿kŠhæ¢,(Ê.`Í^ƄØeÒ"9›ÑKùá‹Ë¾ ù‡Yã—ò3°²
+/`^*׋±%ÎùÉþ&Õ ±èÍåD«#l%1äY3¸‘¨ô_žˆ|ƒvi ohˆÅH[¿óÞ"IL.Ø{nq ç–­YŒP.Cf,:ÃDIùàåbdÑßÓ.pÂwCЃ¹îjÄ$}+©Ï}9¢Ò¾®YÐď'ÎpQÒªx¹®í§~74è‹ ŸUáöÉ¥aY#0teö
+‡ØÙÆõÞ\$y‘Éâ½ê=¹8Px¢5Û“V RWU1I7åõ‚ÔU©Ê¡ÁsA^à 5‰Ð½i ¹ ¯Ã΂%ƒ'Z³ eqúÍ.v¥Ük2½g¥hÙ÷ZLƯ™I°Ú‰è[FÛ궖ƒÞnjúޕe¨¥cS_á ½ä¶»!É /ŒÎr%3'Z³A­cdÝûÉ%Ù¥ÙöÂÔi(÷¨l¦ 5%[²Q½˜Gғšìå
+½˜Ç£:ÇB/æñ˜r†ïʒPÖìúНeÊe
+Z»1s6!öšL$°Éz´íõ˜xP&s¢5«“Èäԙœ“”Ífñ\gtΣZÇ
+Z»ÑyŒ
+ƒzÕ:ÜxAƒ¸±ŒhsŸ÷éFL&˜ö
+ Oõ6Ce‚¹H^Ð0“±C¹@Z¦Ã¹PoZ­ÉahŽˆVî½­1`RA¦©¼»•
+C偍ŽþT£a"¹@+XwÐ0OA»zRf@ÞU¥ëü¥×!KZb'œÄ§ú.Ç%›
+Êw㘠$M¢üüØSã’UãÞKœ˜°ü[ ˜¢xo\ h(F–\ŒÙ5ƒ¿ÅÄuÆyŠNª¬âÏ$ét°
+n• £k‘n;¸ä]tp+Y ¥¥¿ýVy;o5½$7ê?¦²!rsiλ~ôO-Iû¼Ã¢P.es`ý}‹Î*ß°¢Ýíâ¾w`ýSŠ7íüõØЬ=JÉÆÌWA³ a( X?GkåÏ\¨iµÓÕå
++ÕO3®Äô‹•Q£5W,ás½ê§‹U÷M„jŸXµÃD°VÌ ؒè]Õ¡sùu6fEðXþ è «v‘ˆyòÚ]êB|„1 濫0¤ SÕ¸¡ù¡~]ˆàyü+˜TŠWEè1«ºîÿ×A¨å
+Wñ8]&<4[ϤbFȕ=¨é$&óì-×á.€GëÈéõސ‰Õ„Qs­ÐxmíØ$ º[*E֏7SøÈ2°j}½³a¯Iýþ'¦Ê ß+nk±{:K` 
+­ÜÖ7ó ƺŽr[à ‡©âμÂI–)ï¼,â>\ aI\í =ªtܞm¤^‡Jù—vŽeúŠwîCi}´w:BÊÊ
+Ó©]À®¦aF[×~»iÝ¿ô¤°«iâƒ,Ū4Š˜Á“Ñð³IÚÖJ
+i;¿„3d¥
+_³\;œ1er8¿1g>µwÝ¿/ɤ à¶—·› á&úV£ýàùõ™{üöÐôKz`žC¢t=ߐ„ópÆy”¸þJÜ|q:O8
+ß1Dž9€„cpˆ“ç)­m’iü%Ö/að5Ñðå7_­ÏìK|.ZŸÌ(È0£ Ç3fk8°Üې¶‡©¯ñ·ùq›8SY—žs›†³Ê'Hd¿a÷QÚ|´|®Žõ(’g©´–Ôq +b
+)ؽ…[y
+ÐøÛü¸ó‚ß:xøÝ÷H“¿„Ëp
+)‡%ä°®’û 7aæûê<–ÄM’m!´÷ ¹ç­âÕd÷¾Ì@ËhÐ&o¸z½Îõ(åw aßNñ&
+>G¶¦zG–²ÃwïÈÍ@—7„\Á ‚¡C')·VO‘þ›žAµÇÖLÅiŒNCQ®i}©r5™Ö‡ –ÖúÃkjSOxEªVÌÙEuGxEƒºBN´º-DƒxMM‡Q*ÅL¦¢ëa·KÔ¦Q8w8ïLµ½0ÖÙü§QM…èŠ!|öò©„6¹:T‡<Dƒ:4
+xeh™ùÀâabÕx´ó+rrqǂ,Ežª¿/E ša2½DÆ¢™®^Š:þ›lU¶ÐÙU‚:‹µ<»zº0†ŠւÆI÷™€Pq´ZÔ0éîÂ+ЅYU£…JHgUEp¬ }Cº0Vsüs֓r^À ϱC¨k!ñ6<ÞJŒm°¦Äh1rk…[¹ª‰Åb&R
+ײª‡D,Jk­d_ѐ-uó›…ÄÙ¥)¢´± (»€5{b4í¹
+lF/åIšö\Åã—ò$M{ é¥r½ÛAž\x8àb;ЛˉÖè–C9ŠxVà n”¤ˆ±Î€ÃYŠnhˆÅH[¿óÞâ ï-+ö}1‚ž[N´f1B©Š4Åg˜è ùcU^'|74 _‹ë®FLÒG뢷Qiß ×¬GhâǓg¸è ™Ÿvº¶ œúÝаÇ&ÕáöɅÁªýærƒCìlãzo.’ZÕ{rq $ðDk¶5ZtÛèª*æÀ¢Ûv–ª\tû
+žÇ\စ&¶8݈é+bªÊÎ<ªo¬ˆ\À9L½{z˜ý噎­éÝÓãã,Z}2Šã»-sõ°I a/$Ã\Ñ°n4UÅ1`»…y¶í4 õ¬u¸ñ‚ucòÕÁ0cDō<µw†š"*n¼¢AÝcU™ ¢Ý1Շ*,n¼¢aݨªh'`žµ7ªú†A½jn¼ AÜXF´¹Ïût#&L{°ªm†ÊsQ&º a&c‡r!€µL‡s! Þ´
+Z“ÃЋsß݈I™¦òîFT*XÐZ7b†ˆ²î-FH"H~g-‚ÒÀÖúPL‹M(Fc!”§}'‰üÎ]0i åšÇQR¬½ˆÊ ý©FÃDrV°î až‚võ¤Ì€¼ Ð<–^J1®C–´ÄN8YZç\ŽK6Ü0ÃßLWª©ƒaÒ¹®TSÝÔãñdWj †¨‚he{âaÙ g…‰Ü+ŸÄ³huäA_Á“qÛ
+{_敛˜z:W–‰eÍ7«µKÒy÷¹Z³Ä2ã»V¯B)¼ù¹êe8Põەµs‹Tˆ ¬8âÖ±3•}‘Í¢Ÿ–ÖSz“¡øC[$­ª)-P7ÝQÛHœB¬"WoÊ-,°sX%†o bXÒ 5.æ3ž‚i·“oh˪ªÅƒÃŠU <«ê­H”ö „M´~ÌfÒ©ô-3;*ëMWŒç5t*ßIŒc&t4ŠòócOKV{/qbÂòobŠâ½q¢q )Ïp+1»P뷘¸Î8O±ÀIX•Uüñ™$VÁÛ*zjñÂU¬û`òß(ftn+hüþ'F –~:+ºqÈ}>« $=[Ð¥ŸFx–N
+n• £k‘n;¸ä]tp+Y ¥¥¿ýVy;o5½$7ê?¦²!rsiλhïO-Iû¼Ã¢P.es`ý}˚:ß°¢Ýíâ¾w`ýSVŽn=64}.=JÉÆÌWA³ a( X?GkåÏ\¨iµÓÕå
+àktEp4¨G‘<ËH¥µä Ž³HXSHÁî-(ÜÊS€ÆßæǝüÖÁÃï¾Gšü%\†SH9,!‡ýs•ÜÿK¸ 3ØWç±$öh’l ¡½gÈ=o¯&»÷eZFƒ6yÃÕëu®G)¿ ûv
+ˆ7QH+ϔIHضgM™Ÿ°Íè¶ÍÛuËÊi¥¦üCضs_‰lÉ\¿£ ž¹Ý&©4S4aðµ¥uQGÅd˜>âIń"­×yÅŒ€©—,·Ø£4¤bɔûèØÊùâ¾áٝ'îsûth㾈q_ÁªÝE÷±üÚ{ÅÍè¥A±×꿤i«íÜû!5%%¦Xݼeΰ®!`T«ÿÁ9~9
+ýã-IsXì”
+ £â&í܆È.XÃ0ÙÑmÙ­a}ì‚u1lx´ðù;²5Õ;²”¾{Gnº4¸!ä
+¼:I¹µzŠôßô|ª=°f*NctŠrMëCH•³¨É´>µ„°Ö‡^S›zÂ+RµbÎ.
+¨;Â+Ôr¢Õm!Äkj:ˆR)f’h4u5X»]Š 6ÂĹÃy¯`ªí…ˆ°Îæ?jÒ(Œ@W4á³ï‡H%´ÉÕ¡:ä!Ô¡QÀÚ¥RçS½Ûò\QÔÒ[‚X
+ˆr<ôâRƒê™?áùwLŽÄ$Qƒé1¶§êb`­ó¶'ëb@
+´ð;JDü©{RÕAÂ5žÄP–•…'Ž8ß`’¥=hÔ©êê5àdé
+ÇÜÔhÀó(C ̴ȃ«Æ£GX‘“‹;d)òTý})ZÐ “é%2•ÈœpõR´Ðñßd«Ú°…ήÔY¬µàÙÕ+Ѕ1T„°4NºÏ„Š£Õ¢†Iw^Á€.̪
+ÒKn»«’ÌðÂè,GP2s¢5ëÔ:FAÖ½ŸÜc²îºUl=*›)hMÉփ†lT/æñ˜Æ±Ð‹y<ªs,ôb)—qaøÞ¡ì1¹ŒÖeÊe
+Z»1s6!öšL<$•‰¶×câA™Ì‰Ö¬FL"“SgrÎczǔëŒÎyTëXAk#:Q¡*˜ypC`•ið<æ
+3;” ô¨e:œ õ¦UК&€æˆXœûîFL*È4•w7¢RÁ‚Öº3D”uo1BA
+ð´«'eä]€æ±ôRŠq²¤%vÂÉÒ:¯àr\²©à†þfºRM Îu¥šê¦?ˆ'»R[0DD+Û+Ë=+Lä^xü$žE«Ë ú
+ž<ˆÛNP0z?2+åNH0~ Oa5—™x›•=94íêÁu˜ÔÍ_%Ë Ä & êœRA¡&²w3¿¸¯BHô»–ýãrö#¸ÄÕn†cŠªnXwiÎ:ún±†Ö]š´Žò´n”‘iÒ:f¶ªáF9™&­£¿Ö,áB³ETê!·/g¿Ê%mN8áZˬ
+뚸T‹i‹ÛÛ­3ڞ5Ó7ªëߤ“˜æŒÿïÿbí<†D´±+IsқôÌ¿%ƒ˜GœäF-&'_7$é™2IÇ´hÆà{ó4kØ{Ï´ý2¯ÜÄÔÓ¹²L,k¾ùX­]’æÈ»Ï՚%–ß}°zJáýËÏU/Áªß®Œ¨[Ü BL`Å·Ž©ì‹læ(ýÄ°´žÒ›ôÅ*؂$iUMiš¸éŽÚFâb¹zSnaÃ*1xÒN¨q1ŸñL»|C[VU-V¬zåYUoE¢´¯!l¢õc6“NÕ o1˜™ØQYoºb<¯¡SùNb3¤£)P”Ÿ{j\²jÜ{‰– Sï ÅHy†[ŒÙ…Z¿ÅÄuÆyŠNª¬âÏ$ét°
+‘›KsÞE{jIÚç…r)›ëïƒXÖÔùŽ€ín÷Ÿ럲Bpt뱡éséQJ6f¾
+š CaÀú9Z+æB½èH«®.WX©~šq%¦'XžbÚhÍKø\¯úébÕ}¡Z1.Ví0¬s¶$zWõEè\>AY<–º0èª]$bž¼v†ºa È;©è éÂT5.Eè@~¨_"xÿ
+&•âUz̪®ûÿuj¹B¢6:Ì"ôø‡`Ö\gO¢ÿŽ{?8E)å{ØÞ E{ƒ¶7‡Q-RÉ/± 鑢½µÍÀÑ/™̈i’
+qK㦳ƒ›2¢º¤¢+d8 Gyf>Üñ”1mR>-ÎÞNFT›TAk¯2¹Mjª°Æ},ëÖ6MemXæy
+\i·µâ^LÃtj°«i˜ÑÖµ_ãnÚpç/ý{ã-)ìjšø KG±*"fðd4ül’¶µ’BÚNÆ/á Y©Â×,×gL™Îo̙Oí]÷ïK2i(¸íå-…Ŧh¸É†¾Õh?8F~}`æ¿=4ý’˜ç(]Ï7$á<œq%n¿7_œÎŽÂ7@Ìqa áœâäyEJk›dA‰õK|M4üAùÍWë3ûŸ‹Ö'3
+2 Å(ÃñŒÙ,÷6¤íaêküm~Ü&ÎTÖ¥ç…@Ŧá¬ò ÙoØ}”6m_£+‚£A=ŠäYF*­%uœEŠ˜B
+Ïî<qŸÛ§C÷EŒû
+!W0ˆàEèÐIÊ­ÕS¤ÿ¦çCPí±€5Sq£ÓP”kZBªœEM¦õ!¨%¤€µ>ÄðšÚÔ^‘ªsvQ@Ý^Ñ ®­n Ñ ^SÓ¡@”J1“D£©Ã€¨ÁzØíRµiF ÎÎ{Sm/Œ@„u6ÿiT“Faº¢AŸ}‡<D*¡M®Õ!Ñ Ö.E:ŸêÝΐ犢–ÞúDÀRÀZŠSÿ<™½ùkd£r…™ÊòëÏ^Oû&`ú<Ž}yêùˆ}ÇßúŸ1Ég0¬e<Uar£bÙ “–ÑߪÀ0ÉÑaY &=,LET¶•Hvds'*5 ì¨€5g‡ÁdGZ«^Xj@”ã¡—TÏü ×È¿cr$&ñ舺L/ˆ±=Uk·=YR€ …ßQÒ0 âOݓÒ0¨ú®ñ$†ú³D¨,<qÄù“,íA£NUW¯'KW0„Ë-Óú’+•ƒ¿5 ”*•õ
+M8)ª­œˆU² ¶6 -dwEƒŒ‡pA{0bzÉá‚ö`DÑ~žpÍÁˆáýdJ°Ž#!y'ÿpǏ ÄóDk܈ѱã­ž1ܟ‡´EëHùç ×x£lîwþfi8æ¦FžGZ`¦E>°x¤X5í<Šœ\ܱ K‘§êïKтf˜L/‘±¨D愫—¢…Žÿ&[Ն-tv• Îb­Ï®^Á€.Œ¡"„µ qÒ}& T­5Lº»ð
+Ã×⺫“ôѺè-GTÚwÂ5ëšøñdÀ.:h槝®í§~74¬Æ±Iu¸ƒ}ra°*A¿¹Üà;۸ޛ‹ƒä€Võž\( <њmÝ6ºªŠ9°è6¥*ݾÂAj¡{Ó@rA^‡ JO´fAb„·Sî5™ŒÞ3R´ì{-&ã×Ì$XíDô-£mu[{¬î6³œT–¡…·op^rÛ]d†Fg9‚’™­Y Ö1
+²îýä“ÍpGЭbëQÙLAkJ¶4d£z1Ç4Ž…^ÌãQc¡óxL¹Œ Ã÷eÉe´î´({T.SÐÚՈ™³ ±×dâ!©L´½ÊdN´f5b™œ:“sÓ;¦\gtΣZÇ
+Z»ÑyŒ
+C=kn¼ Aݘ|u0ÌQq#O흆¡¦ˆŠ¯hP7ÆXU&h†hwcLõa…Ê‹¯hX7ª*Ú ˜g­Ãª¾aP¯Z‡/h7–mîó>݈ÉÓ^$¬j›¡2Á\”‰.h˜ÉÀØ¡\ G-Óá\¨7­‚Öä04GÄâÜw7bRA¦©¼»•
+´Ö˜!¢¬{‹’R ßY‹ 4°€µ>“@ÇbŠÑXåißDàI"¿sWLH¹„æq”k/¢òÀ‚FGªÑ0‘\ ¬;h˜€§ ]=)3 ï4¥—RŒë%-±N–Öy—ã’M7Ìð7ӕjªÀ`˜€t®+ÕT7õøA<ٕڂ!ª ZÙ^xX6èYa"÷
+Äã'ñ,Z]yÐWðäAÜv‚‚уø‘Y)wB‚ñcx
+«¹ÌÄCج¬øëÉ¡iW®Ã¤–höø*Yf f0IPç”
+
+7ÊÉ4iýµf©š-¢Rá¸}9ûU~,is ×ZfU€’YWÄÚ¹éŒå£Níú0vûmX×Ä¥ZL[ÜÞnÑö¬™¾Q]ÿ&Äx0güÿk‡ä1$
+¤]Iš“Þ¤gþ-tÀ<â$7j19ù¸!IȔI:¦E3ߛ§YÃÞ{¦í—yå&¦žÎ•ebYóÍÇjí’4GÞ}®Ö,±ÌøîƒÕ«P
+Êw㘠$M¢üüØSã’UãÞKœ˜°ü[ ˜¢xo\ h(FÊ3Ü
+dÌ.Ôú-&®3ÎS,pVe|&I§ƒU𶊞Zü°`ë>˜ü7ŠÛ
+MŸKR²1óUÐ,H
+ÖÏÑZù3êEGZítu¹ÂJõӌ+1=ÁòÓFk®XÂçzÕO«î›Պq±j‡‰`­˜+°%Ñ»ª,Bçò êl̊à±ü+ЅAWí"óäµ»0ԅøc@ÞIE/`H¦ªq)BòCýºÁóøW0©¯ŠÐcVuÝÿ¯ƒP˵Ña¡Ç?³æ:{ýwÜûÁ)J)ß Äöf(ÂØ´½9œˆj‘J~‰]8Hí­mŽ~É|`FL“TˆûX7ܔÕ%]!£¸ÀaÈ(8Ê3kôᎧ¼ˆi“òiqöv2¢Ú¤
+Z{•ÉmRS…5îcY·¶i*kÃ2ÏSX´c”=°ä‡ ,Ïe®í†9T‘¿´¿÷f
+f®âq4ºþLxh¶þžÿH Ȑ+{PÓILæÙ%Z®Ã]*֑Óë½ « £æZ¡ñÚ(Ú±It5¶TŠ¬o¦ð‘e`ÕúzgÃ^“úýOL•#¾WÜÖþb÷t–À@Z¹1¬oæ8Œuå¶:†SÅ9œy…“,SÞyYÄ}¸@’¸ÚA{Té¸=ÛH½•ò/í?Êôï܇Óúhït„”•¬†gÑÔçf$ÕÞíÞZ†I+
+êQ$Ï2Ri-9¨ã,VÄR°{
+·ò ñ·ùqç¿uðð»ï‘& —áRKÈaÿ\%÷ÿnÂÌöÕy,‰=š$ÛBhïrÏ[Å«Éî}™–Ñ MÞpõzëQÊï@¾âMÒÊ3eR¶íYSæ'l3ºmóvݲrZ©)ÿ¶íÜW"[2×ï(ƒ§Dn·I*ÍMX|mi]ÔQ1‘ŽñÚß9_p¤=˂jjï>6£ÇÝæ+P¢ì2¨m'ýÚ\Τ”I;F—C™\«³RÄ ÃþdMõ$Æ­SìÅ=œÑOˆ´H¡·Ôc¬Û§Œ2~%)Î{7”ÏÛ÷\Òñ1ûÏ)ÁN/ýs
+՟Ôqþ¤Òñ'µ€?§–û9MÙ*¯~RôƒúŸÔ¸ü˜
+ä'Õ?¦'ø1Õ½iÓ}LÁís:gŸSû˜bÖDŽ¥>(¿ô9‰¢Êø|Nêæ“r0ŸLù¤¨Èe7>)MñAñ†Ï |RàƒDù$“ÿ áúIÉ?HÜý9rëO@Œ"ùsDÂ$Ûý !íI[?HlúAòÏd~DòƒD‹Ÿ##ü eßÇÈÑ>H!ö1š­OÒQý_dáùÅR}¿¸BnËïWÈ/®Yïýâ
+ÙLúWÈÿ=։Ï&|ŒXàcã÷RÿØ(÷ÿ́çOŽphö×`iãÂ_ƒ¥Ç.þàðåÿɾύސÏí:SD߬Š\„™"ú¬.缱ܖ™¢/‘õ©`:Àj"&€?6TĽëv<7j[Cf™‹?ێ%Í[΢ÑÿaâMìJÿÐÀԜYÑÒIF>d(sX%ά΁ñÁâ 2 53
+7ŸáF¦3nØ,˽•dV-rùååux‚=á™ÞÁ¿I‡l4׃mç¼dwƒE
+ñêH¿Æ/•‡`†öW¾ÞÌèô9«(ÕSšïeµ<oHòÉË,T,ÄFž´Ÿ;ŸÏcó=i¹£©ldQ½í-?ê„ áÃ)
+É3^iJþW»ø./v‰úmoј² 0g~‰
+nŸ£GpÜÀHéQhÃ/¿^{†Z 7(ùJÙÁb¦nÌ~Ó¸‰Wʇˆìb7V§õ:Þ_~1!¯E©\Æ‘ÇýĊ‹ö 90˜;3„s$£rÊ+Ò!é÷CŒ®çèÒbÝK¢°TŸ"êXy#ÖXn†ñ8#F:Ë8ÎHÛÃÍ%?œ`ú‰ðVVÈ&øðs$“'a¤ÄŸu¿Œ9ïäÁõÔI(9Ôú&%y¿ÈUÔ¹Šã¾Úu©§'¹x¦[$lAµ+¹ø,¯‰Ƭ‚ÏÁ¸ÿò“ÖÄ/ژõ~ÑƼ3êm̤_´1ïT~ÑƼÝV¿hcÞ}ª_´1oǤ~ÑÆü?úEó‹6FUAæ/ژ_´1­Q¿hc~ÑÆôÍÒ¿hc~ÑƜyÎ/ژwVý¢ùr´ÿ¢ùEs‡úEó‹6¦ÚÁ¿hc^œ¿hcªWæOÑÆ}DL,2>à—¤Ö6"½xž‡Ý †›–‘ãCl¼ó LˆC[qkü¶”¨¿Ê’"¥Á|°û2vóÛ@Kû+0²K—'àߤ:?Dõs¶U²´ó¨U~˜¥\)(µ#·p>¢ƒ–ç–/Xž)
+£s`„®‘ñžÚ&jOÉ<Pìz05úM9ZñŽQœž¢g:öým;®‰h¹‚f¿uó)ßòàèK4gÏ•oyrôƒÔS“ëÃ¥½QÚò|`1L<'ÑèP:ëÚÿZ­—nän’Ó0q|ô¥¯h¯9Ê°óÒ$ÃÆ·Å¡–/M`È¥—éûÁ=‡æ8 Úÿ:´9³<·‘±Ui±%Êùd~…e–\‚œoÌ:œ¡y›3ŠûôæÀc€é{`âì–='³¾Å³ÏÑ×ͅnÙo< +”+Ôøó#0þçV
+‰+‰sÌ|“†Ññ¾»‘°ŽàíÁÌÙ#´¤‹[4ÄfžaœÛ`L²]ùxJÃô·8töË(:¢Â…pà ›â¤Qš~˜2~%<Ò°‘³7Xô±ü׈gŸc‰œ= 2­Ìêภµ›%œM‚‘ï4o㠘´ÿïñ_Rhb7v»Øa^,žO1¬·Š±¶@ÉëýßÍÊ0°etø®§n`búŒ¶dòª€‰Û;0¿de7Šó>ïÀè´×ùp£¼£XÔÆÍâUù
+Œn$}pšÿ¯•w`\cÖ¡€Éó8;˜ªŸ†ÁÌ62X6µPá{‹Fk_…Ïr!ìšç2ÇáH™jìÚJ`™´áSd-Ñù˜NO#Sh<¶ýéÉásdM/.›Ó“Ò“ìââ†Æ$@Ã5#Î[2ÇÁÆóe}ÂI‹“pŽ9ÂNz\œ„£€ÑRwƒ“ÚF&ḏ\›œ8ä2 —8Cðw8©3u./1ù»3ÅQ—98
+ÏÂÞख³I8ÚFuœ)µMÂñ oLw8©ÉcŽÒ\ï;ÎĜ*)ðƒOǙ˜S%1Qî8sª¤õRßá0§
+i¢æ5Ü¥h>U.)i²æ5\[l“¦k^õ…DqÀæÝõJ·zäJiA…*{ìpAg_ÞFW4L R¢¾+(ûÙCÚ+(ùÙãõ+(÷ٓ‘+(õÙ3­+(óÙÓÈ+(ñÙsä+¨š²®h bÊ^ݸ IÃ1/K7W4P)e¯K]Ñ0gI)º]Ñ0gI©(^ф³ä—,Ýö?¿dé^ý;Ú˜›Îî&½ºMifšL¥y䱝ù%˜õ›hÜ6Úh1i™YLéé$0áƒyî—\GW9àž[Ðíidzà뉁9)ÁÉ&þ¶&~&r¨fÆ[;'ál34ð@N/”øÖ4æòR‡'ÅÏ׎ 'ēS2“–ùL‘e¬s´'ÊZ5/Ñ¢=Ý¿‡´j>%qy°3óùýÀ0µd¦gæĨàú?ú~Œ¢q>Ž–¨V4º>ӉöÏqÛò ý?æDû]øh¿ÄBk»&ÄBéÔÞÆÄù”óã͑ËU>rª©ylXr»çZZ%xÂm˜æB¨V­ýžÌɝǀ(FÏ)XŽ@¬s;Ò?d›ÜvLÙP³­‹•ZºTxMñ’/$0éƒ}Náõc:¨Ó
+ïsšqŸSVûœþØçTº>¦eõ9ͧÏ)#}N=èc;Ó¢ùœfËç”M>¥ÿÁÈk†CWuE¢#`Ÿ-¸gQ/Φ‚$‰eÔXê1–£´9»…O™5™sŸ£Ý¯î‹÷¬Ú}QtßÇÔZ>§irT§]¬_ÄBÿÁ9®—*Å¿jü¯°Ø)˜XãŸãI@ç/†–øç°.† §í$Xä¤òöńóö%ÖÅ0!匼ÎqdðkØy"ú¥èÈ°<ò}%ÒM‚ÑIÝCåN ͙•LχÇ0
+†ðá”$ҜYÑ÷–†XåyÖúPf–ùœØӜ]P‡5Öðº6Ld—y‹–ëo&óË|LÈjÎ.Ê`Ô})ŠÏïÀÚ¥(>B~P¢kò¨ç76ŒÅaOÃÄ'ÈI4ç·SñŠ†XŠSòc“«Cm}»Å÷Çw`íR”Ÿ?&¬6yL…Þí,R¤¼k}(r¤|N2n2öÍf‹}mõ€û¯Ûy
+,ù-ƒ¸€a-cvª
+ “Ë.`˜Ü谌þV†IŽËZ0ù”€áÜv¶¹•PvTÀš³Ã`²£IiÆÉÛY‡^\j@RW¦“#M
+OÎ&Ðv¯&¶žåI\ãIL¦4)«9Ÿê-ð¾x”+Up'Ådés¢¡ï‚Fžt>Í'KW0„§äPßü­Y T©D¨W0hÂùHèõeÂlm(W:Î+ä`œ±}éÇËÁ(’r¾†kF™—ós½“»:î­õ#(ñ<Ñ7Š™ç'å‡_nµ‹#E†Î×p'EŽÎ‰+ŸoÃO2´ÀbB|`q·x±j<Úy„9¹¸cA–âœhôäÚ`ŒûR´¨D愫—¢™Ib¿{s$¨³XkQ‘÷þæxºð‘Ø÷;2ùi(ì..¼‚]øHÆü ³ª"8‹z Ø]xCºð‰@ûKÆú4D…ÜŅ0ÈóČôüœY<Öp+1ZP´]Àš£cíWàÊUM,i×»uÈDL•A¡vYˆ74d FÝü&Q‘½kŠÐU (»€5{bz¹–‡G„½Ç2ä?f_ÊÏÀÊ*¼€Az©\/Ɩ(ê&û›T/Äv 7—­Ž°øèòêD¤[å n$潗'"ß`§]¨D¥¬Å+b1&Ó{o‘'—Gì=·8ÐsˉÖ,FñµåÕb´¶
+R~(Íé—ÕˆIúV‚€ûrD¥}'\³¡‰Oœá¢Dmùr=:]ÛNýnhÐ&Q©Âì“KÃØB`èÊì±³ë½¹Hl¤“Å{Õ{rq $ðDk¶5& ¬¤®ªbÍêë©«R•C%‚炼ÀAj¡{Ó@rA^‡ JO´fAʪh‡]&6I¹×d2zÏ<JѲﵘŒ_3“`µÑ·Œ¶Õm-ñ ¿ÝÔô½+ËP3JǦ¾ÂAzÉmw5B’^åJfN´f=‚ZÇ(Ⱥ÷“K,ͳ텩ÓPîQÙLAkJ¶4d£z1D?=ÙËz1GuŽ…^Ìã1å2. ß;”%^íÙõ¡;-Ê•Ë´v5bælBì5™H„á“õhÛë1ñ LæDkV#&‘É©39'¡O.å:£sÕ:VÐÚňÎcT¨
+ƒzÕ:ÜxAƒ¸±ŒhsŸ÷éFL&˜ö
+¤\Bó8JŠµQy`A££?Õh˜H.Ð
+3üÍt¥š*0& ëJ5ÕM=~Ov¥¶`ˆ*+t
+Ui{»uF›–d‘ùM:‰)ð`Îøÿþ/Ö”Õ¡@Úؕ¤9éMzæߒAÌ#Nr£““/€’(¨3c’ŽiьÁ÷æiÖ°÷™ÅûK±]ÚåÊ2Y*èÅÇjí’4GÞ}®Ö,±ÌøîƒÕ«P
+ï_~®zTýv13Öuƒ
+1GÜ:v¦²/š£@ôÃJfJoÒ#¨` ’$–=%„hâ&)imNˆUäêM¹…v«Fõh§ bXÒ 5.æ3ž‚i·“oh˒’ŃÊU ¼âœ‘(í+@›hý˜Í¤S5è[ f&vT֛®ÏkèT¾“ÇL iV2ß (??öÔ¸dÕ¸÷'&,ÿ(¦(Þ(Š‘ò ·³k+~‹‰ëŒó œ„UYÅŸIÒé`¼­¢§?,Xź&ÿbF綂Æï'%ô¯Øዃ~:+ºqÈ}>«k<šBs”~V`à Ð#0:)”‹7°áôg
+n• cÝ°ØÁ%ïì¢YÇ<¤ÅÒÒ_~Š‚½6o5½$7ê?¦²!rsiλ^ïO-Iû¼Ã¢P.es`ý}˚:ß°¢Ýíâ¾w`ýSŠ7íüõØЬv:JÉÆÌWA³ a( X?GkåÏ\¨iµÓÕuˆbÿ4ãJLO°X5ZsÅ>׫~ºXußD¨VŒ‹U;LkÅ\Á€-‰ÞU}`:—OPgcVå_Á€. ºj‰˜'¯Ý…¡.ÄGòN*zCº0UK:êׅžÇ¿‚I¥xU„³ªëþ„Z®¨³=þ!˜5×ٓè¿ãÞNQJù^ ¶7CÆÞ íÍáDT‹TòKìÂAz¤hom3pôKæƒ3bš¤BÜÇÒ¸éìঌ¨.©è
+ÅCFÁQžY£w<åEL›”O‹³·“Õ&UÐÚ«Ln“š*¬q˺µMSY–yžÂ¢£ì%w8L`y.sm7Ì¡Šü= ý½7S0 Ôp£ÑõðgÂC³õ÷üGJ f„\كšNb2Ï.áÐrîxT±Žœ^ï]ùXM5×
+?›¤m­¤¶“ñK8CVªð5˵ÃS&‡ósæS{×ýû’Lš
+i{˜ú›·‰3•ué9G!P±i8«|‚Döv¥ÍGÀ×èŠàhP"y–‘JkÉAg‘°"¦‚Ý[P¸•§¿Í;/ø­ƒ‡ß}4ùK¸ §rXBûç*¹ÿ—pf.°¯ÎcIìÑ$ÙB{ϐ{Þ*^MvïË ´Œmò†«×ë\R~öío¢Vž)“
+“î.¼‚]˜U0Z¨„tVUgÁ
+ÒW0¤ c5Ço11wqa= `Q!wqá ò<;„ºoóÈã­ÄhAÑvkJŒ#·V豕«šX,f"¥p-«zHÄ¢´Ö
+~®øt±`ßD¨VŒ‹&‚µbZ0 %Ñ»‚¡sùu³"x,¿º0è‚.1-¯Ó…¡,ÄGØäs©h†ta*ˆK:ÊîBÏã·`£R¼¡Ç¬Êºÿß¡–+$êX‡)B?f­1{ý{<ùà¥ÈïÚöf(Â8 ÚÞ\NDQ¤’ßb‘¢o똁£¿d¾–`F I*Äs,Ig×nʈbIE'Ë(8Ì2
+êY$Ï2Ri/9¨ë.œˆ%¤`O
+
+£Zøœã&ÈU蟧$­a±S
+0ŒBvˆ‡´smF [°Ã0ÙÑÙµa}lÁj ›-|ßG¶¦è#²ÃÏúÈÕ@—BZ0ˆàE謓S«—–þ›žAµG«¦â4F§A”kjBªœ¢&SûD °Ú‡˜½¦6õ„WFՊ5»( î¯h+äF+i!´×ÔtV ŽJ1‹‹FSg¢ëa×GDӐ@œ;Üï
+¦Ú.ë&ÿiIC6µh…Ͼ³<dTB[<ª³<DƒVE:Ÿê½Îv…¨¥×>-`°Ú‡Ã©žÌ>|È5²Y¦œl¦²Üý9ëiÿÁ$¼>c_žz¾bßù^ÿ;0^2ÇD†µŒ‡ 
+x^eh7-ò…Åà bÕ|´ó
+áR¹^Œí -x†ØÔs¹Ñ*ÝrèŽ"ž¸ƒ]RÄXwÀáÀ[ŠhˆÃHŸ~§ßâ ý–}öó0‚Ú-7Zu¡«Š4Åw˜è ùc^'|4̾×=˜¤ÎEï8¢Ò¾®:Ðď'îpÑA3?íti8õ{ a5ŽM*Ãl˅ÁŠÝsyÀ!¾lãz=É­êµ\( ¼ÑªÏ-ºmtQs`Ñm»KU.ºÝÂAj¡ûÒ@rA>‡ Jo´ê@b„·Sî‘LfߙW)Zö=ŠÉü3³V:ýÊh[¼Ö«»Í[N
+ËÐÂÛ8—ÜvO#$™áƒÑ9Ž dæF«Î#ˆ:FA֓Oî1Ù 3‚[Êf­*ÙzАêÅ<C ½˜Ç£˜c¡óxL¹Œ ÃO†²Çä2Zw(Ê•ËZ}1s6!öH&’ÊDÛã˜xP&s£U§“Èäԙœóî˜rÑ9¢Ž Z}ÑyŒ
+f20vV.PSËtv.TOKЪ&€æˆXœûéFL*Èk*ŸnD¥‚‚V»3D”uï0BA
+ô;g”
+É:Áºƒ† x­õäxò)@óZz)ŸYÒ»áÆÒ:Áå¸eSÀMoø[a¥š"0˜^@ºÆJ5ÅK=/²Rk0DD+Û+O˽+Lä^xþ&^E+Ë /xoâ¶Ì^įÌJ¹Ì_ÃKXÕc6¼„;¿94}Փç0©-š3¾J–73ØHPç–
+
+å"ëá×Ì÷]‰þ®—eÿ~¡œý
+žµÌª’Y‹µÿö£3–¯:uêÃØìÏi]—J1íáçíömϚéǪë?G71¼3þÿ`í<‡D´±û’æ¤é™ÿŽ º`^í$7j39y<FȒI:¦M3¿›·YÓÞ{§í—ùä&^= ˆeÍO~¬Ú®‘æÈg?WmÖ°ÌøÙVžÂQxÿáÏUɪߩŒ¨ÛܤBL`Å·©ìE6sˆþÄ´´žÒ‡ôÅ*XAiU-išxèŽÚJâb¹úPnaËªað T [º¡æÅ|æS0íÎåÚ²ªªxpZ±ê”gU½‰Ò>BØDçÇ&ݪA߇ÁÌ•õ¡+Æó:Éï4Œct4EùùõMÍKVÍ{/qbÂòob
+ñÞ¼@Ñ<PŒ”g¸ȘS¨õû0q]qžb“°+«øëgét°
+ÞQÑS›Ÿ¬bÝ“ÿI1£sGAãÇ/Œ,ýé¬èÅ!÷ù¬.,ô¬ 9J? 0Œð,ÝÊÅFvVÀZ?. V^òq,Òf&·óbc£-Óєó‡FÛÏ¡Ü.FÏ"½vòÈ;»éàöe–Žþô{p2ÈÛù¨1è-¹Yÿñê!"“Ks>E{둴ÏgXÊ¥l.¬MbYSæ;¬hO»˜ã.¬?Æ
+fGyf>ÜÕʋš”O›³›E“´ú)Ó¤–
+kÌcÙ?mSUÖ¦ež—°è‹QöÂ3°<—¹ŽæREþ>¡ý}’)x Ôt£Ñýò煇æà÷ü5J V„\كšnb2ÏnáÒrf¼ªXGN¯O@¾$VF͵@ã³!Ú±i$èj¬TŠ¬Ÿ'SøÈ2°jïÞÙpÖ¤~üÂT9‚áwÅô{¦³ªàÐɍaï™7pë.8Êmu 7¦Šs9³…]XFú¼,â>] aK\í oTéx´mF\‡Bù—¾?»é+>wz õÑ>×zPV&X՞E?QO\›‘T'Û½¶ “VXk&(Vñ ø4¦aâFkMÃWÚTÜÆ4 S[ÀZÓ0£­;_ãiÚ4ó—þó”kM6dé*VB1“7£á¶I:ÎJ
+鸿wȾ*|ÏrítƔÉáÜcÎ|kŸº_#“V€‚;:o)l6]@Ó$ú­fùàù½ÁÌ¿34ý5˜×(]ϤÁ}¸â<JÜÿJL¾¸7¸
+?âæ\ƒ+@œ<ïHi§I
+Ò|'Öoa²›hø垯Öw
+ö5lí-3
+W¯÷¹¥ü 4øn—€ø#
+&Y:ƒF
+[èì*AÝÅZ ž]mÁ€.Œ¡XkAã¤çL@(v´ZÔ0éé 謊€ÑB%¤³*"8 VnÁ.ŒÅ¿ÅÄÜâÂrÀ¢BnqaiOÄÎB] ‰·yäñQb´ h[Àª£ÅÈ­Ézlå
+‹ÅL¤È®eU‰X”Öš,ÈnѐŒ’üf!q¶"ªA Š²¬ú–1!öµ¦=Í주¸¦=±Æü£¼¸¦½ƒp©\/Æv– <Clê¹Üh•n9tGÏ
+ÜÁƒ.)b¬;àpà-E4Äa¤O¿Óoq~˾ûyAí–­:ŒÐUEšâŽ;LtÐ|±
+3;+¨©e:;ª§%hU@sD,Îýt#&ä5•O7¢RAA«Ýˆ"ʺw!‰ ú³J¬öá0 t,6¡…PÞò&OùswEÀ¤”KhGI±ô"*4ºúS‰†‰ä`ÝAÃ<‚Özr¼ù y-½”b܇,éˆÝpciàrܲ)à¦7ü­°RML/ ]c¥šâ¥ž¿ˆY©5¢
+qÛ
+f/âWf¥Ü æ¯á%¬ê1^Âfߊ¿ßš¾êÉs˜ÔÍ_%ˈl$¨sK…r‘õðkæŽû.„D×˲¿PÎ~—¸ÚÍp¼¢ª„›Ö]Z³Ž~·XÂMë.-ZGyZ 7»‘iÑ:ÞlUÂÍîdZ´Žþ³ê¨ 4+¢R/ᘾœý.?–´¹áÏZfUɬ‹ÅÚûÑËW:õaìöç´®‰K¥˜öðóvûŒ¶gÍôcÕõŸ£›˜Þÿ¿°vHžC¢@ÚØ}Is҇ôÌG]0¯v’µ™œ¼H£ dÉ$Ó¦ƒßÍÛ¬iï½ÓöË|r¯žÎ…eòæ'?Vm×Hs䳟«6kXfüì+Oá(¼ÿðç*áDÕïTFÔÎmnR!&°âˆÛÇÎTö"›9 DbZZOéCz„⬠´ª–´@M<tGm%q
+äwÆ1 H:¢üüú¦æ%«æ½—81aù·@1…xo^ h(FÊ3ÜdÌ)Ôú}˜¸®8O±ÀIؕUüõ3t:Xï¨è©ÍO V±îƒÉÿ¤˜Ñ¹£ ñãF –þtVôâû|VHzVÐ¥ŸFx–n
+‘É¥9Ÿ¢½¿õHÚç3,
+åR6Ö¿&±¬)óV´§]̋qÖc…àèökCÓÏ¥gW²ñæ« Y0Ȭ߳µòw.ԛŽtÚéér²•ê·™Wbzƒå)¦Ö´XƒŸë#>],Ø7ªãbA‡‰`­˜ HIô®àEè\>AÝĬËoÁ€. º ‹DLËëta( ñ¶ù\*ڀ!]˜
+âR„䇲»Áóø-ب¯Dè1«²îÿ÷A¨å
+‰:ÖaŠÐãρYk̞DÿO>8E)ò{¶½Š0N‚¶7—Q©ä·Ø…ƒp¤èÛ:fàè/™¯%˜C’
+ýV³|p
+«ãÞû6"%Ý%^±2ûñʜaYCÀ¨Vþç¸ rúç)IkXì” £â!í\†È¬Æ0Œ@vt‡@vmF[°æG ß÷‘­)úÈ£ìð³>r5Ð¥Á„ "x:ë$ÇÔꥥÿ¦çCPíQÀª©8ÑiåšÚ‡*§¨ÉÔ>QB¬ö!f¯©M=á•QµbÍ.
+¨;Â+Ä
+&7º,£ÿªÃ$G—e5ب±°QÙNTj ّ͝¨Ô€²#«îƒÉŽ´V½°Ô€VŽ‡^\jPœù®’ÇäH¼Ä£#êb0\c{ª.F·=YR€ ƒßQÒ0 ÅŸº'¥aP ú®ò$fõ§D¨,<qÅù“,A£N«×€“¥ áCyejBr%¹øk³@©’D¨-4ᤨ¶p"VÉ.ØÒ0´]‹¹/á‚úbÄpÉ.á‚úbD­ý¼áª‹³÷“W‚u É;ùwüJ<o´Ê;žÑêù³û󒶨‰ZþyÃUžÄ(›ûs oi¸æ¦fžWZàM‹|añ0ˆX5í¼ÂŠœ\<± G‘§êŸGтf˜L/‘±¨Dæ†+¢…Žÿ&[Ԇ-tv• îb­Ï®¶`@ÆP,„µ qÒs& ;Z-j˜ôta taVEÀh¡ÒYœ+H·`HÆbŽßbbnqa9 `Q!·¸°ƒ´'bg¡®…ÄÛ<òø(1ZP´-`U‰ÑbäÖd=¶r‰Åb&Rdײ*‡D,JkMd·hH
+³¯ÅuO#&é£sÑ;Ž¨´ï†«Î#4ñãɀ;\tÐÌO;]ÚNýhXc“ÊpÛra°"A÷\pˆ/Û¸^ÏÅAr@«z-Jo´ê³F‹n]TÅXt›ÀîR•ƒ‹n·pšDè¾4\Ïaç@‚’Á­:áí”{$“ÙwæUŠ–}b2ÿÌ,‚•ND¿2Ú¯µÇênó–“Â2´ðöÂ%·ÝÓIfø`tŽ#(™¹Ñªó¢ŽQõä“{L6Ì GÅÖ£²A«J¶4d£z1ÇÇB/æñ(æXèÅ<S.ãÂð“¡ì1¹ŒÖŠ²Gå2‚VŸF̜Mˆ=’‰‡¤2Ñö8&”ÉÜhÕiÄ$29u&ç<†;¦\gtΣ¨c‚VFt£BQ0óà<†À
+ÓàyL ,ôðb‹Û昈¨";ó(ޘˆ4`ˆ&‡Þ;=½ý坎­é½Óóã*Zy3/ÆÏ>霋~LÀ&1„uwH:‡iÑ°n4EÅ1`ÙÂ<Ûv†jk]nlРnL¾¸fŒHÜÈS{·a¨)"qc‹ucŒEe"€fˆN7ÆT^V¨LPÜØ¢aݨŠh'`ÚZ—Uù ºZ—4ˆeD›yÞ·1™`:+€„U|f¨L0‹2Qƒ†™ Œ• ÔÔ2 ÕÓ´*‡  9"ç~º“
+òšÊ§Q©  ÕnÄ eÝ;ŒDýÎY¥Vûp˜:›PŒÆB(oy'‰ü¹»"`Ò@Ê%4£¤Xz•
+]ý©DÃDrN°î aAk=9ހ|
+м–^J1îC–tÄn¸±´ÎGp9nÙpÓþVX©¦ ¦®±RMñRÏ_ċ¬Ô QÑÊö
+ÄÓ²Aï
+Ä 6Ô¹¥‚B¹Èzø5sÇ}B¢¿ëeÙ¿_(g¿‚K\íf8^QUÂMë.­YG¿[,á¦u—­£<­„›ÝÈ´ho¶*áfw2-ZGÿYuTšQ©—pL_Î~—KÚÜpƒg-³*€dÖÅbí¿ýèŒå«Nú0öûsZ×Ä¥RL{øy»}FÛ³fú±êúÏÑMLïŒÿß?X;$Ï!Q m쾤9éCzæ¿#ƒ.˜W;ɍÚLN^¤Ñ²d’ŽiӌÁïæmÖ´÷Þiûe>¹‰WOç²aY󓫶k¤9òÙÏU›5,3~öƒ•§pÞøs•Çp¢êw*#jç67©XqÄícg*{‘Íœ¢?1-­§ô!=Bñ‡
+ã˜$@Q~~}Só’UóÞKœ˜°ü[ ˜B¼7/P4#ån2æjý>L\Wœ§Xà$ìÊ*þú™F:¬‚wTôÔ槫X÷ÁäRÌèÜQÐøñ #K:+zqÈ}>« $=+hŽÒÏ #<K7…rñ†‘°Öƒ ƒ•—|Ü‹´™ÉmżØØhËt4åü¡Ñös¨·Ë„ѳH¯<òÎn:¸}Y ¥£¿ýœ òv>j zKnÖ¼zȆÈäҜOÑÞßz$íó…r)› ë_“X֔ùÎ+ÚÓ.æŸ 돱Bptûµ¡éçÒ³+ÙxóUÐ,HdÖïÙZù;êMG:íôt9ÙJõÛÌ+1½ÁòÓFkZ¬ÁÏõŸ.ì›Պq± ÃD°VL ¤$zWðÀ"t.Ÿ nbVå·`@]ÐE"¦åuº0”…øۀ|.mÀ.Lq)BòCÙ]ˆàyülTŠW"ô˜UY÷ÿû Ôr…Dë0EèñçÀ¬5fO¢'œ¢ù½@ÛÞ E'Aۛˉ(ŠTò[ìÂA8Rôm3pô—Ì×̈!I…xŽ¥1éìÚMQ,©èdE‡YFÁQžÙ£wµò"†&åÓæìãfDѤ­~ÊÆ4©¥ÂóXöOÛT•µi™ç%,úb”½°Æ ‡,Ïe®ã…¹T‘¿OhŸd
+YºŠ•EÌäÍh¸m’Ž³’B:nƯÁ²¯
+ß³\;1er8÷˜3ßÚ§îß×Ȥ àŽÎ[
+®ÂO€xDž¹€×à
+¾Û% þˆBÚ÷L™$@ƒÏö®)s ÛÌ~¶ùxnY9MjÊߟíÚ¯D¶d®ßQO‰ÜiÓ¨´R4aðÒº©«b2½>âMń"­÷yÍ]Œ€©—–ÛìUš £bɒûèÚʹqßôìÎ÷¹s:´r_ĸO°J÷Å¡ûXþN\q3ûhPìµû/iú†Õqï}‘’î¯X™ýxeΰ¬!`T«ÿƒsܹ
+b…Üh%-DƒöššÎ
+č2¢Í<ïۍ˜L0@Â*>3T&˜E™¨AÃLÆÎʅjj™Î΅€êi Z•ÃЋs?݈IyMåӍ¨TPÐj7b†ˆ²îFH"H~ç,‚Ò@«}8L‹M(Fc!”·¼‰À“DþÜ]0i åšÇQR,½ˆÊ®þT¢a"¹@'XwÐ0 µžo@>h^K/¥÷!K:b7ÜXZç#¸·l
+†¨‚he{âiÙ w…‰Ü+ÏßÄ«heä¯àMCÜv‚‚Ù‹ø•Y)wB‚ùkx «z̆—°Ù·âï7‡¦¯zò&µEsÆWÉòb êÜRA¡\d=üš¹ã¾ !Ñßõ²ìß/”³_Á%®v3¯¨*á¦u—Ö¬£ß-–pÓºK‹ÖQžVÂÍndZ´Ž7[•p³;™­£ÿ¬:*ƒ͊¨ÔK8¦/g¿Ë%mn¸Á³–Y@2ëb±öß~tÆòU§N}{€ý9­kâR)¦=ü¼Ý>£íY3ýXuýçè&¦ÀƒwÆÿ﬒ç(6v_Ҝô!=óߑAÌ«äFm&'/€ÒèY2IÇ´iÆàwó6kÚ{ï´ý2ŸÜÄ«§saÙ°¬ùɏUÛ5ÒùìçªÍ–?ûÁÊS8
+ï?ü¹Êc8Qõ;•µs››Tˆ ¬8âö±3•½ÈfÎџ˜–ÖSú¡øC+H#­ª%-PÝQ[IœB¬"WÊ-,°sY5 >ŠaK7Ô¼˜Ï|
+¦Ý¹|C[VUN+V½€ò¬ª·#QÚ'@›èü˜Ã¤[5èû0˜Yø¢²>tÅx^C'ù†qÌ’ŽF (?¿¾©yɪyï%NLXþ-PL!ޛ(šŠ‘ò ·s
+µ~&®+ÎS,pveýL#VÁ;*zjóӂU¬û`ò?)ftî(hüø…ƒ¥?½8ä>ŸÕ…’ž4Gég†ž¥›B¹øÃÈÎ
+XëÇÁ…ÁÊK>îEÚÌä¶b^ll´e:šrþÐhû9TƒÛeÂèY¤×ÀNyg7ܾ,ÐÒÑ߁~Ny;5½%7ë?^=dCdriΧhïo=’öù ‹B¹”Í…õ¯I,kÊ|g€íiób܅õÇX!8ºýÚÐôséٕl¼ù*h$ ²ë÷l­ü õ¦#vzºœl¥úm敘Þ`yŠi£5-ÖàçúˆO öM„jŸXÐa"X+¦R½+x`:—OP71+‚Çò[0  ƒ.è"Óò:]ÊB|„m@>—Š6`H¦‚¸¡ù¡ì.Dð<~ 6*Å+z̪¬ûÿ}j¹B¢Žu˜"ôøs`Ö³'ѿǓNQŠü^ mo†"Œ“ íÍåDE*ù-vá )ú¶Ž8úKæk fФB<ÇҘtví¦Œ(–Tt²Œ¢Ã,£à(Ïìч»ZyC“òisöq3¢hR‚V?ecšÔRay,û§mªÊÚ´Ìó}1Ê^Xc†Ã–ç2×ñÂ\ªÈß'´¿O2oš®âq4º_þ¼ðÐüž¿F Ċ+{PÓMLæÙ-\Z®Ó,€WëÈéõÉȗÄj¨¹h|6D;6]•J‘õód
+YVíÝ;Κԏ_˜*G0ü®¸ƒþbÏt–À@:¹1ì=ócÝG¹­Žá†ÃTq.g¶p£ ËHŸ—Eܧ ô!l‰«ô*¶ÍˆëP(ÿҗãg7}ÅçîC¡>Úç:BÊÊ«Ú³è'ê‰k3’êd»×–aÒ
+kMÃÅ*ŸÆ4LÜ(`­i˜àJ»ƒŠÛ˜†aj Xkf´uçk<M›fþÒÿož’"`­iÆ,]ÅJˆ"fòf4Ü6IÇYI!7ã×àÙW…ïY®Î˜29œ{̙oíS÷ïkdÒ
+ÿ ÜóÕúNÁ¾†í¢½eFA†¡e:ž1áÀ2·!©¯ùÞü¼Mœ©ìGÏ9
+ÙoØ}”6_4€¯ÙÁÑ žEò,#•ö’ƒºî¢Á‰XB
+ö¤ 0•G€æ{óóÎ þ`ðpß÷J“¿áR[Èáü¹$÷ÿ¼„™ ì»óX{6I¶²ÐÞ3䙷Ÿ&{ò2£I›¼áêõ>×£”?ßíD!í{¦L Ág{ה¹…mf?Û|<·¬œ&5åoƒÏvíW"[2×ï(ƒ§Dî´iT
+Z)š°øNiÝÔU1™^ñ¦bB„Öû<Èæ®
+6j,,ET¶•Hvds'*5 ìHÀª»Ã`²#­U/,5 •ã¡—gþ†«äß19/ñ舺 Ä؞ª‹QçmOÖŀ èàw”4 hñ§îIiƒþ†«<‰Yý)* O\q¾Á$KgШSÁê5àd©CøP^™Ú‡\I.þÚ,Pª$j M8)ª-œˆU² ¶4 -d×¢A.ÆK¸ ¾1\²K¸ ¾Qk?o¸êbÄìýä•`GBòNþÃ?‚Ï­r#Fǎg´z~Äìþ¼¤-jG¢–Þp•'1ÊæþÜ_Â[®¹©Ù€çU†xÓ"_X< "VÍG;¯°"'O,ÈQä©úçQ´ &ÓKd,*‘¹áÊ£h¡ã¿Éµa ]%¨»XkÁ³«-Ѕ1 a-hœôœ ŎV‹&=]؂]˜U0Z¨„tVEgÁ
+âFÑfž÷íFL&˜Î
+ aŸ*Ì¢LÔ a&cgåB5µLgçB@õ´­ÊahŽˆÅ¹ŸnĤ‚¼¦òéFT*(hµ1CDY÷#$¤@¿sAi €Õ>&ŽÅ&£±Ê[ÞDàI"4r Íã()–^D偂FW*Ñ0‘\ ¬;h˜€GÐZOŽ7 Ÿ4¯¥—RŒû%±n,­ó\Ž[6Üô†¿Vª)ƒé¤k¬TS¼Ôóñ"+µCTA´²½ñ´lлÂDîˆçoâU´² ò‚Wð¦!n;AÁìEüʬ”;!Áü5¼„U=fÃKØì[ñ÷›CÓW=y“Ú¢9ã«dy1ƒun© P.²~ÍÜq߅èïzYöïÊÙ¯àW»ŽWT•pÓºKkÖÑïK¸iÝ¥Eë(O+áf72-ZǛ­J¸ÙL‹ÖÑV•ÁƒfETê%ӗ³ßåǒ67ÜàYˬ
+ˌŸý`å)…÷þ\å1œ¨úÊˆÚ¹ÍM*ÄVqûؙÊ^d3gèOLKë)}HPü¡‚¤‘VՒ¨‰‡î¨­$N!V‘«åع¬†Ÿ@Å°¥j^Ìg>Óî\¾¡-«ªŠ§«^@yVÕۑ(í „Mt~ÌaÒ­ô}Ì,|QYºb<¯¡“üNÃ8fIG#P”Ÿ_ßÔ¼dÕ¼÷'&,ÿ(¦ïÍ ÍÅHy†ÛŒ9…Z¿×ç)8 »²Š¿~¦‘N«à=µùiÁ*Ö}0ùŸ3:w4~üˆÁҟΊ^rŸÏêÂIÏ
+gMêÇ/L•#~WÜA±g:K` 
+Ãèc VcØôháû>²5Ey”~ÖG®º4˜҂A/Bgä˜Z½´ôßô|ª=
+Š3ÃUò—xtD] † blOÕÅÀ¨ó¶'ëb@
+«qlRî`[. VÄ èžËñe×ë¹8HhU¯åâ@IàV}ÖhÑm£‹ª˜‹nØ]ªrpÑíR“ݗ’ ò9ìHP2x£U#¼rd2ûμJѲïQL柙E°Ò‰èWFÛâµöXÝmÞrRX†Þ~ÀA¸ä¶{!É ŒÎq%37ZuAÔ1
+²ž|rÉf˜ô¨ØzT6#hUÉփ†lT/æñâXèÅ<Å ½˜ÇcÊe\~2”=&—ѺCQö¨\FÐêӈ™³ ±G2ñT&ÚÇă2™­:˜D&§ÎäœÇpǔëŒÎyuLÐêÈÎcT(
+ԍÉcÀŒ‰yjï6 5E$nlÑ nŒ±¨LÐ ÑéƘÊË
+7–Öù.Ç-›nzÃß
++ՁÁôÒ5Vª)^êù‹x‘•Zƒ!ª ZÙ^xZ6è]a"÷
+Äó7ñ*ZYyÁ+xÓ· `ö"~eVʝ`þ^ª³á%lö­øû͡髞<‡ImќñU²¼˜ÁF‚:·TP(Y¿fî¸ïBHôw½,û÷ åìWp‰«Ý Ç+ªJ¸iÝ¥5ëèw‹%Ü´îÒ¢u”§•p³™­ãÍV%ÜìN¦Eëè?«ŽÊàA³"*õŽéËÙïòcI›nð¬eVÌºX¬ý·±|Õ©SÆ`N뚸TŠi?o·Ïh{ÖL?V]ÿ9º‰)ðàñÿûk‡ä9$
+¤Ý—4'}HÏüwdÐój'¹Q›ÉÉ à4º@–LÒ1mš1øݼ͚öÞ;m¿Ì'7ñêé\X6,k~òcÕv4G>û¹j³†eÆÏ~°òŽÂû®òNTýNeDíÜæ&b+Ž¸}ìLe/²™³@ô'¦¥õ”>¤G(þPÁ
+ú> f¾¨¬]1ž×ÐI~§a³€¤£(Êϯoj^²jÞ{‰– Sˆ÷æŠæb¤<Ãí@ƜB­ß‡‰ëŠó œ„]YÅ_?ÓH§ƒUðŽŠžÚü´`ë>˜üOŠ;
+?~aÄ`éOgE/¹Ïgua¤gÍQúY€a„gé¦P.>À0²³Öúqpa°ò’{`‘63¹­˜m™Ž¦œ?4Ú~Õàv™0zé5°“GÞÙM·/ ´tôw ßƒ“AÞÎGAoÉÍúWÙ™\šó)Úû[¤}>âP.esaýk˚2ß`E{Úżwaý1VŽn¿64ý\zv%o¾
+š ƒlÀú=[+çB½éH§ž.'[©~›y%¦7XžbÚhM‹5ø¹>âÓł}¡Z1.t˜֊iÁ€”Dï
+7
+Š½vÿ%Mß°:î½o#RÒ]Bà+³¯Ì–5ŒjuàpŽ› W¡ž’´†ÅN)À0
+Ö2‚*À0¹‘Xրar£Ë2ú¯
+êÆ䋋1`ƈč<µw†š"7¶hP7ÆXT&h†ètcLåe…Êō-֍ªˆv¦­u¹Q•/ ª«u¹±Aƒ¸QF´™ç}»“ ¦³HXÅg†Ê³(5h˜ÉÀØY¹@M-ÓÙ¹P=-A«r˜š#bqî§1© ¯©|º•
+
+7xÖ2«Hf],ÖþۏÎX¾êÔ©c°?§uM\*Å´‡Ÿ·Ûg´=k¦«®ÿÝÄxðÎøÿýƒµCòÒÆîKš“>¤gþ;2è‚yµ“ܨÍääð@] K&é˜6ÍünÞfM{_擛xõt.,–5?ù±j»Fš#Ÿý\µYÃ2ãg?Xy
+Gáý‡?Wy 'ª~§2¢vns“
+ÈçRÑ éÂT—"t ?”Ý…žÇoÁF¥x%BY•uÿ¿B-WHÔ±S„ÌZcö$ú÷xòÁ)J‘ß ´íÍP„q´½¹œˆ¢H%¿Å.„#EßÖ1GÉ|-ÁŒ’TˆçX“ήݔŒŠN–Q4p˜eå™=úpW+/bhR>mÎ>nFMJÐê§lL“Z*¬1eÿ´MUY›–y^¢/FÙ kÌpXÀò\æ:^˜Kùû„ö÷I¦à-PÓU<ŽF÷˟šƒßó×(Xrejº‰É<»…KËušðªb9½>Yù’XM5׍φhǦ‘ «±R)²~žLá#ËÀª½{gÃY“úñ Så†ßwÐ_ì™Î¨‚C'7†½gÞÀa¬»à(·Õ1Üp˜*ÎåÌntaéó²ˆût>„-qµƒ¾Q¥ãѶq
+\iwPqÓ0LmkM̶î|§iÓÌ_úÿÍSR¬5mؐ¥«X QÄLތ†Û&é8+)¤ãfüÜ!ûªð=˵ÓS&‡s9ó­}êþ}LZ
+Öî"ˆ¦!8w¸ßLµ]6ÖMþÓ(’†ljÑ Ÿ}gyȨ„¶x:Tgyˆ14¬>Š u>Õ{!í
+W]Œ˜½Ÿ¼¬ãHHÞɸãGPây£UnÄèØñŒVϏ˜ÝŸ—´EíHÔòÏ®ò$FÙܟûKxKÃ575ð¼ÊÐoZä ‹‡AĪùhçVääâ‰9Š<Uÿ<Š4Ãdz‰ŒE%27\y-tü7Ù¢6l¡³«uk-xvµº0†b!¬“ž3¡ØÑjQä§ [0  ³*F •Îªˆà,XAºCº0süs‹ ËI‹
+zW˜È½ñüM¼ŠV–A^ð
+Þ4Äm'(˜½ˆ_™•r'$˜¿†—°ªÇlx ›}+þ~shúª'ÏaR[4g|•,o f°‘ Î-ÊEÖï™;î»ý]/ËþýB9û\âj7ÃñŠªnZwiÍ:úÝb 7­»´håi%ÜìF¦Eëx³U 7»“iÑ:úϪ£2xЬˆJ½„cúrö»üXÒæ†<k™U$³.kÿíGg,_uêԇ±؟Ӻ&.•bÚÃÏÛí3ڞ5ӏU׎nb
+~®øt±`ßD¨VŒ‹&‚µbZ0 %Ñ»‚¡sùu³"x,¿º0è‚.1-¯Ó…¡,ÄGØäs©h†ta*ˆK:ÊîBÏã·`£R¼¡Ç¬Êºÿß¡–+$êX‡)B?f­1{ý{<ùà¥ÈïÚöf(Â8 ÚÞ\NDQ¤’ßb‘¢o똁£¿d¾–`F I*Äs,Ig×nʈbIE'Ë(8Ì2
+êY$Ï2Ri/9¨ë.œˆ%¤`O
+
+£Zøœã&ÈU蟧$­a±S
+0ŒBvˆ‡´smF [°Ã0ÙÑÙµa}lÁj ›-|ßG¶¦è#²ÃÏúÈÕ@—BZ0ˆàE謓S«—–þ›žAµG«¦â4F§A”kjBªœ¢&SûD °Ú‡˜½¦6õ„WFՊ5»( î¯h+äF+i!´×ÔtV ŽJ1‹‹FSg¢ëa×GDӐ@œ;Üï
+¦Ú.ë&ÿiIC6µh…Ͼ³<dTB[<ª³<DƒVE:Ÿê½Îv…¨¥×>-`°Ú‡Ã©žÌ>|È5²Y¦œl¦²Üý9ëiÿÁ$¼>c_žz¾bßù^ÿ;0^2ÇD†µŒ‡ 
+x^eh7-ò…Åà bÕ|´ó
+áR¹^Œí -x†ØÔs¹Ñ*ÝrèŽ"ž¸ƒ]RÄXwÀáÀ[ŠhˆÃHŸ~§ßâ ý–}öó0‚Ú-7Zu¡«Š4Åw˜è ùc^'|4̾×=˜¤ÎEï8¢Ò¾®:Ðď'îpÑA3?íti8õ{ a5ŽM*Ãl˅ÁŠÝsyÀ!¾lãz=É­êµ\( ¼ÑªÏ-ºmtQs`Ñm»KU.ºÝÂAj¡ûÒ@rA>‡ Jo´ê@b„·Sî‘LfߙW)Zö=ŠÉü3³V:ýÊh[¼Ö«»Í[N
+ËÐÂÛ8—ÜvO#$™áƒÑ9Ž dæF«Î#ˆ:FA֓Oî1Ù 3‚[Êf­*ÙzАêÅ<C ½˜Ç£˜c¡óxL¹Œ ÃO†²Çä2Zw(Ê•ËZ}1s6!öH&’ÊDÛã˜xP&s£U§“Èäԙœóî˜rÑ9¢Ž Z}ÑyŒ
+f20vV.PSËtv.TOKЪ&€æˆXœûéFL*Èk*ŸnD¥‚‚V»3D”uï0BA
+ô;g”
+É:Áºƒ† x­õäxò)@óZz)ŸYÒ»áÆÒ:Áå¸eSÀMoø[a¥š"0˜^@ºÆJ5ÅK=/²Rk0DD+Û+O˽+Lä^xþ&^E+Ë /xoâ¶Ì^įÌJ¹Ì_ÃKXÕc6¼„;¿94}Փç0©-š3¾J–73ØHPç–
+
+å"ëá×Ì÷]‰þ®—eÿ~¡œý
+žµÌª’Y‹µÿö£3–¯:uêÃØìÏi]—J1íáçíömϚéǪë?G71¼3þÿ`í<‡D´±û’æ¤é™ÿŽ º`^í$7j39y<FȒI:¦M3¿›·YÓÞ{§í—ùä&^= ˆeÍO~¬Ú®‘æÈg?WmÖ°ÌøÙVžÂQxÿáÏUɪߩŒ¨ÛܤBL`Å·©ìE6sˆþÄ´´žÒ‡ôÅ*XAiU-išxèŽÚJâb¹úPnaËªað T [º¡æÅ|æS0íÎåÚ²ªªxpZ±ê”gU½‰Ò>BØDçÇ&ݪA߇ÁÌ•õ¡+Æó:Éï4Œct4EùùõMÍKVÍ{/qbÂòob
+ñÞ¼@Ñ<PŒ”g¸ȘS¨õû0q]qžb“°+«øëgét°
+ÞQÑS›Ÿ¬bÝ“ÿI1£sGAãÇ/Œ,ýé¬èÅ!÷ù¬.,ô¬ 9J? 0Œð,ÝÊÅFvVÀZ?. V^òq,Òf&·óbc£-Óєó‡FÛÏ¡Ü.FÏ"½vòÈ;»éàöe–Žþô{p2ÈÛù¨1è-¹Yÿñê!"“Ks>E{둴ÏgXÊ¥l.¬MbYSæ;¬hO»˜ã.¬?Æ
+fGyf>ÜÕʋš”O›³›E“´ú)Ó¤–
+kÌcÙ?mSUÖ¦ež—°è‹QöÂ3°<—¹ŽæREþ>¡ý}’)x Ôt£Ñýò煇æà÷ü5J V„\كšnb2ÏnáÒrf¼ªXGN¯O@¾$VF͵@ã³!Ú±i$èj¬TŠ¬Ÿ'SøÈ2°jïÞÙpÖ¤~üÂT9‚áwÅô{¦³ªàÐɍaï™7pë.8Êmu 7¦Šs9³…]XFú¼,â>] aK\í oTéx´mF\‡Bù—¾?»é+>wz õÑ>×zPV&X՞E?QO\›‘T'Û½¶ “VXk&(Vñ ø4¦aâFkMÃWÚTÜÆ4 S[ÀZÓ0£­;_ãiÚ4ó—þó”kM6dé*VB1“7£á¶I:ÎJ
+鸿wȾ*|ÏrítƔÉáÜcÎ|kŸº_#“V€‚;:o)l6]@Ó$ú­fùàù½ÁÌ¿34ý5˜×(]ϤÁ}¸â<JÜÿJL¾¸7¸
+?âæ\ƒ+@œ<ïHi§I
+Ò|'Öoa²›hø垯Öw
+ö5lí-3
+W¯÷¹¥ü 4øn—€ø#
+ˆr<ôâRƒê™¿á*ùwLŽÄ$Qƒé1¶§êb`­ó¶'ëb@
+´ð;JDü©{RÕAÃUžÄPJ„ÊÂWœo0ÉÒ4êTtõp²Ô‚!|(·LíCH®$m(U’µƒ&œÕNÄ*Ù[†²kÑ ã%\PŒ˜^²K¸ >Q´Ÿ7\u0bx?™¬ãHHÞÉ?Üñ#(ñ¼Ñ*7btìxF«çG ÷ç%mQ;EþyÃUžÄ(›û“¿„Y®¹©Ù€çU†˜i‘,«æ£WX‘“‹'d)òTýs)ZÐ “é%2•ÈÜpåR´Ðñßd‹Ú°…ήÔ]¬µàÙÕ èÂ
+BX '=gBÁÑjQä§ [0  ³*F •Îªˆà,XAºCº0süs‹ ËI‹
+Ã×⺫“ôѺè-GTÚwÃUëšøñdÀ.:h槝.í§~4¬Æ±Ie¸ƒ}ra°"A¿¹<à;۸ޛ‹ƒä€Võž\( ¼ÑªmÝ6º¨Š9°è6Ý¥*Ýná 5‰Ð½i ¹ ¯Ã΂%ƒ7Zµ 1ÂÛ)÷šLfï™W)Zö½“ùkf¬t"ú–Ѷ¸­=Vw›YN
+ƒzÕºÜØ AÜ(#ÚÜç}»“ ¦³HXÅ6Ce‚Y”‰4Ìd`ìP.У–ép.ԛ– U9Lͱ8÷Ӎ˜Ti*ŸnD¥‚‚V»3D”uo1BA
+ô;k”
+ÉZÁºƒ† x­õä˜ù y-½”b܇,i‰Ýpciàrܲ)à¦þVºRML®u¥šâ¦ž?ˆ»Rk0DD+Û+O˽+Lä^xþ$^E+Ë /ú
+Þ<ˆÛNP0{¿2+åNH0 /aU—Ùð6;+þ~rhÚՓë0©-š3¾J–ˆl$¨sK…’Èz¸›ùÅ}B¢¿õ²ì×ÊÙ¯àW»Ž)ªJ¸iÝ¥5ëè»ÅnZwiÑ:ÊÓJ¸YF¦Eë˜Ùª„›ådZ´Ž~­Z*ƒ ͊¨ÔK8n_Î~—KÚÜpƒk-³*€dÖ±ö¿n:cù¨S§>Œ=À¾O뚸TŠi··Ûg´=k¦T×ßG'1Ìÿ¿ÿ°vHžC¢@Ú؝¤9éCz揑AÌ+Nr£6““Àit€,™¤cÚ4cð½y›5í½wÚ~™Wnbêé\X6,k~ò±j»Fš#Ÿ}®Ú¬a™ñ³V®ÂQxÿáç*—áDÕïTFÔÎmnR!&°âˆÛÇÎTö"›9 D?1-­§ô!=Bñ‡
+s©"ÿ˜Ðþ>›)˜jºŠÇÑè~ø3á¡9ú{þ%+B®ìAM'1™g·pi¹Nw¼ªXGN¯Ï.€|I¬&ŒškÆkC´cÓHÐÕX©Y?ßLá#ËÀªýõΆ³&õ×?˜*G0|¯¸£ýŞé,*8´rcØßÌ8Œuå¶:†SŹœÙ,#ï¼,â>] aK\í =ªt<žmF½…ò/í?ËôŸÜ‡ÓúhŸt„”• Vųè'ê‰k3’êìv¯-ä֚† ŠU<Z|Ó0q£€µ¦a‚+íŽVÜÆ4L§¶€µ¦aF[÷~§iӝ¿ôÿ›oI°Ö´áƒ,ÅJEÌäÉhøÙ$k%…tœŒ_ƒ3d§
+Ÿ‹ö'3
+2 Å(ÓñŒ9,÷6¤ãaêkþm~Þ&ÎTö¥ç…@bÓtVù‰ì7ì>J›¯6€¯ÙÁÑ žEò,#•ö’ƒºÎ¢ÁŠXB
+!-Dð"tè$Ç­ÕK¤ÿ¦çCPíQÀª©8ÑiåšÚ‡*§¨ÉÔ>µ„XíC ¯©M=á•QµbÍ.
+3;” ô¨e:œ õ¦%hU@sD,Îýt#&dšÊ§Q©  ÕnÄ eÝ[ŒDýÎZ¥Vûp˜:›PŒÆB(oû&Où“»"`Ò@Ê%4£¤Xz•
+ý©DÃDrV°î aAk=9f@>h^K/¥÷!KZb7ÜXZç#¸·l
+¸i†¿•®TSÓ¤k]©¦¸©çâÅ®Ô QÑÊö
+ÄÓ²Aï
+¹W ž?‰WÑÊ2ȋ¾‚7â¶ÌįÌJ¹ÌÃKXÕe6<„ÍΊ¿Ÿšvõä:Lj‹æŒ¯’eb êÜRA¡$²îf~q߅èo½,ûõ…rö+¸ÄÕn†cŠªnZwiÍ:ún±„›Ö]Z´Žò´n–‘iÑ:f¶*áf9™­£_«–ÊàB³"*õŽÛ—³ßåǒ67ÜàZˬ
+ú1 fvTև®Ïkè$ßiÇ, éhŠòókOÍKVÍ{/qbÂòob
+ñÞ¼@Ñ<PŒ”g¸ȘS¨õÇ0q]qžb“°+«øë3t:Xï¨è©ÍO V±îƒÉ¿PÌèÜQÐøëŒ,ýtVtãû|VHzVÐ¥ŸFx–N
+n— £k‘n;¹äÝtp;Y ¥¥¿ý¬ òv>j zKnÖL=dCäæҜOÑޟz$íó…r)› 뿓X֔ùÎ+ÚÓ.î‹qÖoc…àèöcCÓçÒ³”lÌ|4 aÀú9[+çB½éH«®.'¬T?ͼÓ,O1m´¦Å|®úébÑ}¡Z1.í0¬ӂ[½+úÀ"t.Ÿ îƬËoÁ€. ºh‰˜'¯Ó…¡,ÄGòI*ڀ!]˜ŠÆ¥ÈåëBÏã·`£R¼¡Ç¬Êºÿ¿¡–+$ê Ã¡Ç¿f­uö$ú÷xöƒS”"ß Äöf(Â8´½¹œˆj‘J~‹]8Hí­cŽþÈ|‘`FL“TˆçX7]ܔÕ%Q4p2
+ŽòÌ}¸ë)/bÚ¤|ڜ}œŒ¨6)A«¯²q›ÔRaûXö­mªÊÚ´Ìóíe/¬q‡Ã–ç2×qÃ\ªÈ?&´¿Ïf
+fš®âq4ºþLxhŽþž?G Ċ+{PÓILæÙ-\Z®Ó]¯*֑Óë³ _« £æZ ñÚíØ4t5V*EÖÏ7SøÈ2°j½³á¬Iýõ¦Ê ß+îh±g:K` 
+Ó©-`­i˜ÑÖ½_ãiÚtç/ýÿæ[R¬5mø KG±’F3y2~6IÇZI!'ã×à Ù©Â÷,×NgL™Îo̙OíS÷ïkdÒ
+PpÇË[
+}«Ù~p
+àkvEp4¨g‘<ËH¥½ä ®³h°"–‚=[P¸•G€æßæçüÑÁÃï¾Wšü5¸ —rØBçç’Üÿkpf.°ïÎcIìÙ$Ù
+tipCH ¼:Éqkõé¿éùT{°j*NctD¹¦ö!¤Ê)j2µA-!VûÃkjSOxeT­X³‹êŽðŠu…Ühe[ˆñššâ¨³H4š: ˆ¬‡]/EP›†0qîpß+˜j»0ÖÝü§QMÂÔ¢AŸ}‡<dTB[\ªC¢AV/E:ŸêÝΐç
+قQ6¿YHœ-MÕ EÙVíeLˆ}Ñ´ç"°™½”iÚskÌ_ʋ4í5¤—Êõblyráá€gˆí@o.7Z¥[å(âY;¸qP’"ƺf)z !#mýÎ{‹ƒ¼·ì|ØÏÅzn¹ÑªÅ¥*ÒwÜa¢ƒæ{ŒUxœð=Ð0|-®»1I­‹ÞrD¥}7\µ¡‰OÜᢃf~ÚéÒ.pê÷@Ãj›T†;Ø'+bô›Ë±³ë½¹8HhUïÉŁ’À­ÚÖhÑm£‹ª˜‹nØ]ªrpÑíR“ݛ’ ò:ì,HP2x£U #¼r¯Édöžy•¢eßk1™¿fÁJ'¢om‹ÛÚcu·™å¤° -¼ý€ƒô’Ûîj„$3¼0:Ë”ÌÜhÕzµŽQõì'÷˜l†;‚[Êf­*ÙzАêÅ<Ó8z1GuŽ…^Ìã1å2. ?;”=&—ѺӢìQ¹Œ Õ«3gb¯ÉÄCR™h{=&”ÉÜhÕjÄ$29u&ç<¦wL¹ÎèœGµŽ Z½ÑyŒ
+ԍÉcÀŒ‰yjï6 5E$nlÑ nŒ±¨LÐ ÑéƘÊÃ
+a³³âï'‡¦]=¹“Ú¢9ã«d™˜ÁF‚:·TP(‰¬‡»™_Üw!$ú[/Ë~}¡œý
+7¸Ö2«Hf]kÿë¦3–:uêÃØìû´®‰K¥˜öp{»}FÛ³fúAuý}tSàÁœñÿûk‡ä9$
+¤ÝIš“>¤gþtÁ¼â$7j39y<FȒI:¦M3ߛ·YÓÞ{§í—yå&¦žÎ…eòæ'«¶k¤9òÙçªÍ–?û`å*…÷~®rNTýNeDíÜæ&b+Ž¸}ìLe/²™³@ôÓÒzJÒ#¨`i¤Uµ¤jâ¡;j+‰SˆUäêC¹…v.«†!À'P1l醚ó™OÁ´;É7´eUUñà´bÕ (Ϫz;¥}„°‰Ö9LºUƒ~ ƒ™…•õ¡+Æó:ÉwÆ1 H:¢üüÚSó’UóÞKœ˜°ü[ ˜B¼7/P4#ån2æjý1L\Wœ§Xà$ìÊ*þúL#VÁ;*zjóӂU¬û`ò/3:w4þú#K?Ý8ä>ŸÕ…’ž4Gég†ž¥“B¹øÃÈÎ
+XëÇÁÁÊK>îEÚÌ$[1m¹M9h´ý=TƒÛeÂèZ¤ÛÀN.yg7ÜNhiéï@?+ƒ¼ƒÞ’›õSÙ¹¹4çS´÷§Iû|†E¡\ÊæÂúï$–5e¾3ÀŠö´‹ûb܅õÛX!8ºýØÐô¹ô,%3_͂„A°~ÎÖÊß¹Po:Òj§«Ë +ÕO3¯ÄôËSL­i±Ÿë£~ºXtßD¨VŒ‹E;LkÅ´`À–DïŠ>°Ë'¨»1+‚Çò[0  ƒ.ÚE"æÉëta( ñƀ|’Š6`H¦¢q)BòCùºÁóø-ب¯Dè1«²îÿïA¨å
+7
+Xk&¸ÒîhÅmLÃtj Xkf´uï×xš6ÝùKÿ¿ù–kM>ÈÒQ¬¤QÄLžŒ†ŸMÒ±VRHÇÉø58Cvªð=˵ÓS&‡ósæSûÔýû™´Üñò–ÂfÓ4ÝdCßj¶œ#¿?0sßš~˜×(]ϤÁy¸â<JÜ%n¾¸78
+ŽÁ Nžw¤´·I
+.Ã%¤¶Ãù¹$÷ÿ܄™ ì»óX{6I¶BhïòÌ[‡W“=û2-£I›¼áêõ>×£”?ûv ˆ7QH;ϔI4ضwM™Ÿ°Íì¶ÍÇuËÊiRSþ6ضk_‰lÉ\¿£ ž¹Ó¦Q)h¥hÂà{K릮ŠÉ4}ěŠ EZïó ›»*S/,·Ù«4FŒ%÷ѱ•sã¾éٝ7îsçth很qŸ`•î‹C÷±ü:{ÅÍì¥A±×i«ãÜû6jJºKL±2»yeΰ¬!`T«ÿƒsürúç[’Ö°Ø)F!;ÄCÚ¹6 #-XaìèìÚ0Œ>¶`5†M¾G¶¦xGe‡Ÿ½#W]Ü҂A/B‡NrÜZ½Dúoz>Õ¬šŠÓQ®©}©rŠšLíCPKˆ€Õ>ÄðšÚÔ^U+Ö좀º#¼¢A]!7ZÙ¢A¼¦¦C8*Å,¦¢ëa×KÔ¦!Œ@œ;Ü÷
+W­GhâǓw¸è ™Ÿvº´ œú=аÇ&•áöɅÁŠýæò€Cìlãzo.’ZÕ{rq $ðF«¶5ZtÛè¢*æÀ¢Ûv—ª\t»…ƒÔ$B÷¦ä‚¼; ” ÞhՂÄo§Ük2™½g^¥hÙ÷ZL毙E°Ò‰è[FÛâ¶öXÝmf9),C o?à ½ä¶»!É /ŒÎr%37ZµA­cd=ûÉ=&›áŽ GÅÖ£²A«J¶4d£z1Ç4Ž…^ÌãQc¡óxL¹Œ ÃÏeÉe´î´({T.#hõjÄÌلØk2ñT&Ú^‰e27Zµ1‰LNÉ9éS®3:çQ­c‚V/Ft£BQ0óà<†À
+ëFUD;ó¬u¹Q•7 êUërcƒq£ŒhsŸ÷íFL&˜Î
+ aÛ • fQ&jÐ0“±C¹@Z¦Ã¹PoZ‚Vå04GÄâÜO7bRA¦©|º•
+
+®µÌª’YÄÚÿºéŒå£Nú0öû>­kâR)¦=ÜÞnŸÑö¬™~P]Äx0güÿþÃÚ!y‰icw’æ¤é™?F]0¯8ɍÚLN^¤Ñ²d’ŽiӌÁ÷æmÖ´÷Þiûe^¹‰©§saÙ°¬ùÉǪíiŽ|ö¹j³†eÆÏ>X¹
+ŽÂO€˜ãÂ\@ƒcpˆ“ç)ím’‚4ÿë·0ùšhøƒò›¯Öw
+¶íÚW"[2×ï(ƒ§Dî´iT
+Z)š°øÞÒº©«b2Mñ¦bB„Öû<Èæ®
+ˆr<ôâRƒê™¿á*ùwLŽÄ$Qƒé1¶§êb`­ó¶'ëb@
+´ð;JDü©{RÕAÃUžÄPJ„ÊÂWœo0ÉÒ4êTtõp²Ô‚!|(·LíCH®$m(U’µƒ&œÕNÄ*Ù[†²kÑ ã%\PŒ˜^²K¸ >Q´Ÿ7\u0bx?™¬ãHHÞÉ?Üñ#(ñ¼Ñ*7btìxF«çG ÷ç%mQ;EþyÃUžÄ(›û“¿„Y®¹©Ù€çU†˜i‘,«æ£WX‘“‹'d)òTýs)ZÐ “é%2•ÈÜpåR´Ðñßd‹Ú°…ήÔ]¬µàÙÕ èÂ
+BX '=gBÁÑjQä§ [0  ³*F •Îªˆà,XAºCº0süs‹ ËI‹
+Ã×⺫“ôѺè-GTÚwÃUëšøñdÀ.:h槝.í§~4¬Æ±Ie¸ƒ}ra°"A¿¹<à;۸ޛ‹ƒä€Võž\( ¼ÑªmÝ6º¨Š9°è6Ý¥*Ýná 5‰Ð½i ¹ ¯Ã΂%ƒ7Zµ 1ÂÛ)÷šLfï™W)Zö½“ùkf¬t"ú–Ѷ¸­=Vw›YN
+ƒzÕºÜØ AÜ(#ÚÜç}»“ ¦³HXÅ6Ce‚Y”‰4Ìd`ìP.У–ép.ԛ– U9Lͱ8÷Ӎ˜Ti*ŸnD¥‚‚V»3D”uo1BA
+ô;k”
+ÉZÁºƒ† x­õä˜ù y-½”b܇,i‰Ýpciàrܲ)à¦þVºRML®u¥šâ¦ž?ˆ»Rk0DD+Û+O˽+Lä^xþ$^E+Ë /ú
+Þ<ˆÛNP0{¿2+åNH0 /aU—Ùð6;+þ~rhÚՓë0©-š3¾J–ˆl$¨sK…’Èz¸›ùÅ}B¢¿õ²ì×ÊÙ¯àW»Ž)ªJ¸iÝ¥5ëè»ÅnZwiÑ:ÊÓJ¸YF¦Eë˜Ùª„›ådZ´Ž~­Z*ƒ ͊¨ÔK8n_Î~—KÚÜpƒk-³*€dÖ±ö¿n:cù¨S§>Œ=À¾O뚸TŠi··Ûg´=k¦T×ßG'1Ìÿ¿ÿ°vHžC¢@Ú؝¤9éCz揑AÌ+Nr£6““Àit€,™¤cÚ4cð½y›5í½wÚ~™Wnbêé\X6,k~ò±j»Fš#Ÿ}®Ú¬a™ñ³V®ÂQxÿáç*—áDÕïTFÔÎmnR!&°âˆÛÇÎTö"›9 D?1-­§ô!=Bñ‡
+s©"ÿ˜Ðþ>›)˜jºŠÇÑè~ø3á¡9ú{þ%+B®ìAM'1™g·pi¹Nw¼ªXGN¯Ï.€|I¬&ŒškÆkC´cÓHÐÕX©Y?ßLá#ËÀªýõΆ³&õ×?˜*G0|¯¸£ýŞé,*8´rcØßÌ8Œuå¶:†SŹœÙ,#ï¼,â>] aK\í =ªt<žmF½…ò/í?ËôŸÜ‡ÓúhŸt„”• Vųè'ê‰k3’êìv¯-ä֚† ŠU<Z|Ó0q£€µ¦a‚+íŽVÜÆ4L§¶€µ¦aF[÷~§iӝ¿ôÿ›oI°Ö´áƒ,ÅJEÌäÉhøÙ$k%…tœŒ_ƒ3d§
+Ÿ‹ö'3
+2 Å(ÓñŒ9,÷6¤ãaêkþm~Þ&ÎTö¥ç…@bÓtVù‰ì7ì>J›¯6€¯ÙÁÑ žEò,#•ö’ƒºÎ¢ÁŠXB
+!-Dð"tè$Ç­ÕK¤ÿ¦çCPíQÀª©8ÑiåšÚ‡*§¨ÉÔ>µ„XíC ¯©M=á•QµbÍ.
+3;” ô¨e:œ õ¦%hU@sD,Îýt#&dšÊ§Q©  ÕnÄ eÝ[ŒDýÎZ¥Vûp˜:›PŒÆB(oû&Où“»"`Ò@Ê%4£¤Xz•
+ý©DÃDrV°î aAk=9f@>h^K/¥÷!KZb7ÜXZç#¸·l
+¸i†¿•®TSÓ¤k]©¦¸©çâÅ®Ô QÑÊö
+ÄÓ²Aï
+¹W ž?‰WÑÊ2ȋ¾‚7â¶ÌįÌJ¹ÌÃKXÕe6<„ÍΊ¿Ÿšvõä:Lj‹æŒ¯’eb êÜRA¡$²îf~q߅èo½,ûõ…rö+¸ÄÕn†cŠªnZwiÍ:ún±„›Ö]Z´Žò´n–‘iÑ:f¶*áf9™­£_«–ÊàB³"*õŽÛ—³ßåǒ67ÜàZˬ
+ú1 fvTև®Ïkè$ßiÇ, éhŠòókOÍKVÍ{/qbÂòob
+ñÞ¼@Ñ<PŒ”g¸ȘS¨õÇ0q]qžb“°+«øë3t:Xï¨è©ÍO V±îƒÉ¿PÌèÜQÐøëŒ,ýtVtãû|VHzVÐ¥ŸFx–N
+n— £k‘n;¹äÝtp;Y ¥¥¿ý¬ òv>j zKnÖL=dCäæҜOÑޟz$íó…r)› 뿓X֔ùÎ+ÚÓ.î‹qÖoc…àèöcCÓçÒ³”lÌ|4 aÀú9[+çB½éH«®.'¬T?ͼÓ,O1m´¦Å|®úébÑ}¡Z1.í0¬ӂ[½+úÀ"t.Ÿ îƬËoÁ€. ºh‰˜'¯Ó…¡,ÄGòI*ڀ!]˜ŠÆ¥ÈåëBÏã·`£R¼¡Ç¬Êºÿ¿¡–+$ê Ã¡Ç¿f­uö$ú÷xöƒS”"ß Äöf(Â8´½¹œˆj‘J~‹]8Hí­cŽþÈ|‘`FL“TˆçX7]ܔÕ%Q4p2
+ŽòÌ}¸ë)/bÚ¤|ڜ}œŒ¨6)A«¯²q›ÔRaûXö­mªÊÚ´Ìóíe/¬q‡Ã–ç2×qÃ\ªÈ?&´¿Ïf
+fš®âq4ºþLxhŽþž?G Ċ+{PÓILæÙ-\Z®Ó]¯*֑Óë³ _« £æZ ñÚíØ4t5V*EÖÏ7SøÈ2°j½³á¬Iýõ¦Ê ß+îh±g:K` 
+Ó©-`­i˜ÑÖ½_ãiÚtç/ýÿæ[R¬5mø KG±’F3y2~6IÇZI!'ã×à Ù©Â÷,×NgL™Îo̙OíS÷ïkdÒ
+PpÇË[
+}«Ù~p
+àkvEp4¨g‘<ËH¥½ä ®³h°"–‚=[P¸•G€æßæçüÑÁÃï¾Wšü5¸ —rØBçç’Üÿkpf.°ïÎcIìÙ$Ù
+tipCH ¼:Éqkõé¿éùT{°j*NctD¹¦ö!¤Ê)j2µA-!VûÃkjSOxeT­X³‹êŽðŠu…Ühe[ˆñššâ¨³H4š: ˆ¬‡]/EP›†0qîpß+˜j»0ÖÝü§QMÂÔ¢AŸ}‡<dTB[\ªC¢AV/E:ŸêÝΐç
+قQ6¿YHœ-MÕ EÙVíeLˆ}Ñ´ç"°™½”iÚskÌ_ʋ4í5¤—Êõblyráá€gˆí@o.7Z¥[å(âY;¸qP’"ƺf)z !#mýÎ{‹ƒ¼·ì|ØÏÅzn¹ÑªÅ¥*ÒwÜa¢ƒæ{ŒUxœð=Ð0|-®»1I­‹ÞrD¥}7\µ¡‰OÜᢃf~ÚéÒ.pê÷@Ãj›T†;Ø'+bô›Ë±³ë½¹8HhUïÉŁ’À­ÚÖhÑm£‹ª˜‹nØ]ªrpÑíR“ݛ’ ò:ì,HP2x£U #¼r¯Édöžy•¢eßk1™¿fÁJ'¢om‹ÛÚcu·™å¤° -¼ý€ƒô’Ûîj„$3¼0:Ë”ÌÜhÕzµŽQõì'÷˜l†;‚[Êf­*ÙzАêÅ<Ó8z1GuŽ…^Ìã1å2. ?;”=&—ѺӢìQ¹Œ Õ«3gb¯ÉÄCR™h{=&”ÉÜhÕjÄ$29u&ç<¦wL¹ÎèœGµŽ Z½ÑyŒ
+ԍÉcÀŒ‰yjï6 5E$nlÑ nŒ±¨LÐ ÑéƘÊÃ
+a³³âï'‡¦]=¹“Ú¢9ã«d™˜ÁF‚:·TP(‰¬‡»™_Üw!$ú[/Ë~}¡œý
+7¸Ö2«Hf]kÿë¦3–:uêÃØìû´®‰K¥˜öp{»}FÛ³fúAuý}tSàÁœñÿûk‡ä9$
+¤ÝIš“>¤gþtÁ¼â$7j39y<FȒI:¦M3ߛ·YÓÞ{§í—yå&¦žÎ…eòæ'«¶k¤9òÙçªÍ–?û`å*…÷~®rNTýNeDíÜæ&b+Ž¸}ìLe/²™³@ôÓÒzJÒ#¨`i¤Uµ¤jâ¡;j+‰SˆUäêC¹…v.«†!À'P1l醚ó™OÁ´;É7´eUUñà´bÕ (Ϫz;¥}„°‰Ö9LºUƒ~ ƒ™…•õ¡+Æó:ÉwÆ1 H:¢üüÚSó’UóÞKœ˜°ü[ ˜B¼7/P4#ån2æjý1L\Wœ§Xà$ìÊ*þúL#VÁ;*zjóӂU¬û`ò/3:w4þú#K?Ý8ä>ŸÕ…’ž4Gég†ž¥“B¹øÃÈÎ
+XëÇÁÁÊK>îEÚÌ$[1m¹M9h´ý=TƒÛeÂèZ¤ÛÀN.yg7ÜNhiéï@?+ƒ¼ƒÞ’›õSÙ¹¹4çS´÷§Iû|†E¡\ÊæÂúï$–5e¾3ÀŠö´‹ûb܅õÛX!8ºýØÐô¹ô,%3_͂„A°~ÎÖÊß¹Po:Òj§«Ë +ÕO3¯ÄôËSL­i±Ÿë£~ºXtßD¨VŒ‹E;LkÅ´`À–DïŠ>°Ë'¨»1+‚Çò[0  ƒ.ÚE"æÉëta( ñƀ|’Š6`H¦¢q)BòCùºÁóø-ب¯Dè1«²îÿïA¨å
+7
+Xk&¸ÒîhÅmLÃtj Xkf´uï×xš6ÝùKÿ¿ù–kM>ÈÒQ¬¤QÄLžŒ†ŸMÒ±VRHÇÉø58Cvªð=˵ÓS&‡ósæSûÔýû™´Üñò–ÂfÓ4ÝdCßj¶œ#¿?0sßš~˜×(]ϤÁy¸â<JÜ%n¾¸78
+ŽÁ Nžw¤´·I
+.Ã%¤¶Ãù¹$÷ÿ܄™ ì»óX{6I¶BhïòÌ[‡W“=û2-£I›¼áêõ>×£”?ûv ˆ7QH;ϔI4ضwM™Ÿ°Íì¶ÍÇuËÊiRSþ6ضk_‰lÉ\¿£ ž¹Ó¦Q)h¥hÂà{K릮ŠÉ4}ěŠ EZïó ›»*S/,·Ù«4FŒ%÷ѱ•sã¾éٝ7îsçth很qŸ`•î‹C÷±ü:{ÅÍì¥A±×i«ãÜû6jJºKL±2»yeΰ¬!`T«ÿƒsürúç[’Ö°Ø)F!;ÄCÚ¹6 #-XaìèìÚ0Œ>¶`5†M¾G¶¦xGe‡Ÿ½#W]Ü҂A/B‡NrÜZ½Dúoz>Õ¬šŠÓQ®©}©rŠšLíCPKˆ€Õ>ÄðšÚÔ^U+Ö좀º#¼¢A]!7ZÙ¢A¼¦¦C8*Å,¦¢ëa×KÔ¦!Œ@œ;Ü÷
+W­GhâǓw¸è ™Ÿvº´ œú=аÇ&•áöɅÁŠýæò€Cìlãzo.’ZÕ{rq $ðF«¶5ZtÛè¢*æÀ¢Ûv—ª\t»…ƒÔ$B÷¦ä‚¼; ” ÞhՂÄo§Ük2™½g^¥hÙ÷ZL毙E°Ò‰è[FÛâ¶öXÝmf9),C o?à ½ä¶»!É /ŒÎr%37ZµA­cd=ûÉ=&›áŽ GÅÖ£²A«J¶4d£z1Ç4Ž…^ÌãQc¡óxL¹Œ ÃÏeÉe´î´({T.#hõjÄÌلØk2ñT&Ú^‰e27Zµ1‰LNÉ9éS®3:çQ­c‚V/Ft£BQ0óà<†À
+ëFUD;ó¬u¹Q•7 êUërcƒq£ŒhsŸ÷íFL&˜Î
+ aÛ • fQ&jÐ0“±C¹@Z¦Ã¹PoZ‚Vå04GÄâÜO7bRA¦©|º•
+
+®µÌª’YÄÚÿºéŒå£Nú0öû>­kâR)¦=ÜÞnŸÑö¬™~P]Äx0güÿþÃÚ!y‰icw’æ¤é™?F]0¯8ɍÚLN^¤Ñ²d’ŽiӌÁ÷æmÖ´÷Þiûe^¹‰©§saÙ°¬ùÉǪíiŽ|ö¹j³†eÆÏ>X¹
+ŒÓ–Ÿ`Ó9 ³ó ¨û½á{NÏTékÔðÀϲnß^¾|þ=KÐ:c7Û]»k
+늫húød-Ú|˜ßÂd‡Œá£“û˜´¾ËŠ_³w
+OÓÕs´ZîDLGÉ×ðN9» ¸ 6¿6hÕ{nƒ`†ìëR±Óí¬Ü0}§ð²Où 6ˆ±—Ö!WL÷‹Ù9ú e.•µ¥Á>ÜïJî\¾–ÆðRù¬ þþS¼-ùÖ¬áÍìÓÝhù5¸Uîp#Ó7m–eFl2«œ´ÿòãuxƒ½iv;Áv¹¸pÍæz\IÔ³>ô,Ašöç*ue{³·ŠesÉE
+‡H?Ec~ y¾ÿŽ‘²ï­LG}È´":æٝçÛâÐ.uTôҫІ[Õ½ö µ÷ÊPã+å‹™¸i0¸á6¼Rì9芝\‰ÞpïÔ¾ú•ò§ Ënö(-ï×Ñôþò› y/JeY߆ͤ7VÜì´ɁÁ<±䐐O\Ï­×âÀAx½æ@2*§¼#]sÅ߆Ñõš]Ú¬{bÞѕt qû™ÜÅÜ4Íç-ë¬KÚ·ApMÿȸ[âÅ;s¤³ŒãŒt<ÝPãG€L¿èd:Ád…œ`®„ô2÷1ËÚç*×K'a¤ÄŸ‡¹ïäoÁõÒI(9Ôú6JòVÚb|8ÁxüGzb¦ BßôĐMZ»zT¦#F°ÈWóM€¸Bðœ÷M³³¼qŸ;ù¿*÷EŒû«t_ºÏnûvßÙÌlj—âá?ڌ”Eá·aDÈLéMå$“UáHœTN¾åñ0~ˆ~Æã½7Øȇwû ÓÏ^%‘Uö¿Ì6H½ã› üÎqïÕ¤:?N·†ÅN)Àf[±^‚ñP¢óa³}XkXa³T"ïÀ¢ãÁ¢ö‹Íòˆ¬a5†MÓb½Ÿ°¦˜½ÿ6Q‘Ÿÿ?›hÁ b­¡#…2¦X¬4=‚úæ¬btšxþÿDu¹ö!¤CO”k‚Æ™¬ö!F“ǦžhðèýÍ.JJ:¢Áã€OÑʑ¦qÀÚR4ùŽQ À¢HNê¨wŒ[>«—"hÄHج9+ºïL§¨°YsÙë6 5`$lÖ-D¬ÌwˆoGm‹«CuˆoÇ]ŸÕKÃÁLñçv†´ÚrêéCy°€Õ>¾70«àáC~ɚòVu˝Ëç«×¥8öeƾ+öŸSyÆ œA4`X˘À§ÃäFbY†É.Ëè·
+Šýᆫ<‰‘­‘•ES¯8ß`’¥3hÔ©˜H7àd©CøPn™Ú‡\IþÚ,Pª$j M8)ª-œ¬9Î`KÃPL ’p¶hƒñݬFÌä%ºYŒ(ɚ®:1š5Lgßq$$ïäîø”xÞh•_h%¼Z¹ëGŒnÍ%ËZ;%\sÃUžv»-éŸø“{7ì-žç9ð¼ÊÐöNf>°˜ÈD¬šv^aEN.žX¥ÈŒÏ¥hAü;¦—ÈXT"sÕKÑB©ë’-jÃÊ»FPw±Ö‚y×Z0  c(Č,ˆ
+W­GhâǓw¸è ™Ÿvº´ œú=Р/.Ú¤2ÜÁ>¹0Xƒ ß\pˆm\ïÍÅAr@«zO.”ÞhÕ¶ÆdÅ‚ÔEUÌaòÀ{Aê¢TåP‰à½ 8HM"toH.Èë°³ AÉàV-Èa:¸¦ó{M&³÷Ì«-û^‹Éü5³V:}Ëh[ÜÖ3¡tmjúޅe¨¥kS·p^rÛ]d†Fg9‚’™­Z Ö1
+7–…þ.³€F7Íð·Ò•jŠÀ`šZu­+Õ7õüA¼Ø•Zƒ!ª ZÙ^xZòú]a"÷
+áDxÑmé
+§5¨_Æ,R‡ ë
+Þ^ˆP¿BKZÜX£!6sâºvâg²M‰†òAñkmƒ%
+_sÁÈwš·q6Z„‰}oMP›Ÿm4,`gò/†ÒæÚ¡þúgúuE¿xgVð¬ø¢ „ª kþ-g ÍmÖ`Ó/9¯À(4T.>À¦ßq–ÀZ?")4öq¯¶¥ÍLÊ®°B‹Ñ–çj”cNÂú{˜8D»Y7kVˆ”OÆ°ÇÆZŸRŸqDuúðïaÚð)]™Z°aêð¤É+†ÙŸyÚlærãP¶ù30º£u¾Ü8Ü>£ ÂÆˍÃç#0Š#´è‡Ø0ø ŒßÜt°±Pï ¦Ê^i0s(¿Ë¦Ôe?EcñÒpùq\¾ü Ísqêrä¨Ê÷)Zä "_hÓ§ÈZ¢ó1ݞœ>F–Ð(êV”¯_hÓçÈšÞ\6·'GòMt[h´sôôuÍÙfæ셛<œ»áGÉ*Ë¥‡ð„&«pæ[
+s–HE±Eœ%™Î»£˜>…|cwvÓÜÄh­¨3»ú9Œ(ùñš›!ô–¦ß%XÚІÈä•YzÞ~êÿûH¬H¿”Í…õßI,kÊ©£Ñײ§]ùî^!¬ßF랢Ÿ£w€{ˆô¬ä++k͗[…ÍŸ³³øï\H+6FË!‚Õ˟fô¹Ö°¼ßläC¸Æ|®øúbÁî1$iÂ× º­ˆâH¾¾ Hyè]Á3¡º?u¿E°ìO taÐUÄPjœ. å Dq£.lÁ.L1Z„
+e“ÑȬ}©+ºcé{Ißåß;ù#0ëé7Ølâ¢eôådâïùÖ°ô
+Ìñ¸‘rûô–½-D†klo‰þ=žÁYÊ)Š
+_oÈ~“(ÅeâC¯³/Õ#ŸÙyç;ÓOÿ`-ݸ߷ÊóRBkX”
+lv²úŒ™¬ë6;V]Ãê6ëñ,PSùøÅfÍ Ö°º…M{½'š]ͤîðѬq”‘U§¿Íz0mƒ4p¦<R㻶¬¨G1Š¬±å‘§—b˜Ë&÷Œ!d(Ü(5@œQkc( ü®ÄÐijlo-¶¤iÅÚºrAíŸ[²ÜôW´š7:!7½”Šú¤³µ©¹DÈÌþLE+ÁÚTqْ˜z‡r®`.Gؒ8c•×2mè£%q†HEçî¥Òm1;ö{©ÌúÖ¦"ÆH7×ÿƒÓr»D=ÿ3† Xkc(JՒ5ÜCš‘ÍRéÙÛÐeÝ5OûÓ@$}Ö¾¦"]ý>O;yF.÷ÔAt`ؕ‘Hx†éxe¦7ºW–ÿ«
+ ÓÝ+kÁ¤‹…¥ŠÊ ªRI¬mís6iP•jPwÄ`ÍÞ¡1Ý º ÊRIƒn•MàGu©F=ª+puaª1=q¥Ô ’êÎÁŠ~Fö¶î†k"‰é”ˆck‘Äð’ˆ42ˆ$ê‰]k")6KK…>W¨DÙ¿ë|Iñ[ÑHÒeeYàf©CĐO™6†^‰7þvY V‰+Ô Úp檶
+XÜ¢†0ì8!H»àzÂá‹?`†Â†°†0íUÁ(é  aÚ«
+ã^Ÿ0¨[­;Œ$ŒüD›xÞ%Œ˜N0^@ëÏ Õ &¶.ìÐ0/Ã@rÁƒ.µô@sÁ£î´­éa<èQÎÜ'­ÑcZA’©|†Õ
+̽„¢ç($Æ^†ê-oý±FÃTr>g° a
+ùwë˜$4Cåþüþ¦æ-«æ£©1!û7Ÿk
+ŽÞ¼AÑ<Pdxi}yÿוàídpâgwÿL’O¹à½}sӆUäû Ó¿rÍhí9ÐøóoŒ/qþÓiÏ'NŸKûrAf4›ÛÏ
+ ぜwŠÝ†Æ™Áú8
+9/¹Ó 3nzR­˜„µ2DGÛ­;=ÚþÝà›°|,æÓÀL¦¼5›òö 49õ _Bfäh§sÆ ¶hgãGÒCÆ"—¦tùGÿR’µÏ7¬\ÊŤo¬Ob决êw¬`®u/ÆÞXÿ‘êM›¿ücÛPä=+ÉFÊW^‘!¡g¬_³³òw!T›
+9ÛóÑeY•ê—žwbzƒEΨÁèKø¹>ñéBž P¯*:L{Åô`@J¢³,@ßåg¨BÌ
+öŽ’¡«6<)2nžLáÙÀîÇíñ×LêÏ¿1S¯é\±'ýÅ\ílMpræܙwp˜ÕÝp¹·UÁ8Ìçf'mXšïyÉÄ}z@ïýiڑ¿Ñ]…óÚFâ:TοùËq³J_á©}è0ÔGó”#t ®Œ±E71O\{#¹_l÷ve˜¶‚Áú¥aŠâ=œŸni˜º‘Áú¥aŠ+eO*n·4 S›Áú¥až¶|çÒ¦™¿ùÿ7OIa°~i£ Ùÿ‰¢£ž
+endstream
+endobj
+15 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Resources <<
+/Font <<
+>>
+/ProcSet 4 0 R >>
+/MediaBox [0 0 595 842]
+/CropBox [0 0 595 842]
+/Rotate 0
+/Contents 16 0 R
+>>
+endobj
+16 0 obj
+<<
+/Length 11628
+/Filter [/FlateDecode]
+>>
+stream
+ÄÜ¢ÙM_>ë\¾Ñ½aȳSÛh
+Ò=¡]õÀîŒý·ˆiH¶»î‡ÖÅëáø(8Ço½“ÅÈc€nd‡ÞeWÕS>¸³º+ꟚIâ>ZxuéFšc†vÖ ì”I:æ1s¿ñ}úÌ£Ç<·÷Yÿ> æ‘ØÚïcüÊ÷òYû¯¼õz°ƒlÐçed ÕC>¹“ºKú›-µuAÉÝ ?ªKÙ7íª7lâNØ‹˜y¿ñà‡}üN¿íå×±Vû)Ã1F^C`Ϫ—ü#“tŒl=pÖ¿änä4H8ÆÈþ¸iW½awÂþSÄ4_o½‹Ô»J㗳/ãÍù¥ ~–cDʼô×ËùYËhœ:^>F^:Ƶª@òû¦îrý­[Ç/θ×ñ›t#¯?Ҏzb3îöŸ"¦§‚²F?Ì£wõµ`?G¤¬ƒlÉswèF6èÓ§ VäcXÐ~"ûˆ$ãÞF•t#¯?ҎzbwÆþSĬÓ-bÖí1*°6_×1k¹EÌ:§ˆ‘|pO·ˆQµ¹¸-"$#í¨ßRÄÜ°ÿ1ë|‹˜u¹EL(èmÞÈ1‚Έi1b‚ü=“p̜"FÜ’Έ‘vÔ/)bnØ_éÇÌSïAï·|+i½¯Å»2óÔ3¥÷6H{gFOH $Ü´^Çô9WïМ­ÿ3¹
+:Œöލ?A””íø-”¦ctDŽ´öÚno„õ[Á1¦~æ¹Éìcå:¦?æéüÔödC?Õa¯ê!ÜYÝåúûL÷
+i
+;k
+ ¹9‡`9Êx΃å˜ÑG=ä“;©»¤Mf„d+X šµ†‹œ ö;>QlPø£ÍMŸ è }ÂzÈ'wRç>as“Á@é
+hE-3áýɃn¹Eûƒ†=ü´ÕBTž° ¹Æ—”\Ôi¶€ fB¤œ…¨8!AýÉ Ç™ã¡S<6kêã¡N9š¬”lœYÏ%½f9ÍXÊ¥+¨µ%ÆCÆû†+JEքè}Ž†¨rŽ¦dPrhJ6άG®èÓûîŠ>ÿî®%W°ˆŒ3ãýÍ%ÿ6út]Œ
+W(o@ôƒ¶lPÈ€¬<ƒX ÉàLzä
+drZ¦ \æjE-3áý­Úwª÷M!ç_·®VkÔnÉ·‚1àn$öVØtÌ>@€¼†ÀݶÝX½äwRw¹~, ƒ»þmÒȤƒ¼þP»êÜ û‹Áe¡ûaÝ>SrŒ؆µÕ↯ËTwÌj›U/ùƝÔ]®¦›†Cº;ÚUläNØ۔c<o˜=Ú²ÌC¦€~åÀc-$ïÑýÞI[6 罦<B­È#@´Fÿ¿‘GÉó†‰~ЧvydåÄZH>c´ë÷NÚ²9øËR¡Vä :âoô•þȒÇ.ëžÇ.¤­m[8†±K Ý4vi²Â؅’w¾­Ó؅´µ-9W¾LÓ؅ZQ»Ç±KÆû†+ý ­m
+íȊ
+ÄÚ%Ž]²¹mK΃®4v¡VÔîqì’ñþ–Dë}`ÞGögڟylÞ÷]`ÁH>§HnC|`¬^ó0ÿ¼óÏ<Ð?óHÿ|o¨?·ÁcêÍýÀGr hÚ;d,Ù1%vÉ$ŸÜs€Ž)±[&é> ´ÄŽ™°‘{}­kÆCGÙäY€ž3ڌ]e´)HÖS>¸³º+êŸBÄ°WOéFzĨ^`§1’þBĸàõgM³6“áÖ¦Á1Ö檇|r'uWÔ?…ˆ¡á”.ÇP;ëv
+óŽc¬Åú&¹ ß
+Ž±6W½ä!b‚c1t "†3bäF ë"äNØ[ ßóKi©ùDÚrçRã©ýI/¤öPxQ28÷ü6"½ò mxQ.3.µ¢¶ÆQÆû†+Ô7èm=€BoÕWA¬ÝãŒZÖ#W ÇANëP.û*ԊÚgÔ2ÞwO-·)µ¾)Ï©yɆU»-ͪõ-OyZ{¢ü‰%M¬Ýµ^ǂ•¿5Í­¹N®9
+>±§éµ»ï¸Ióiÿ¥¤`ÁfKsl2A“l2RO,iší®5¸ Se.aÂ*Íz›js|bO“mw;~<P9YóØ)‹¥Í/%ˆ…R°é±Òè)GS™±ñ†OP %d­WÀXĊt(š„‚O%%d;Þq“ÇÅ)A, c…&x4ÑH=A-”µ71$±"Š&¡àDI َÝtØ~e²M _J §mzP¬œ¶+"D“]ùàOP %d­WÀÁX Æ
+ƒ6n~ÆîÜe®€VÖ8ÞWº‚4]«'}†® Ë.]Á]áÆä®Èz¼+hÆB®\­¬"p&¼¯ÌàÑtΈ=é3Ìà™±œi£+8W86/ÇgðÌ pÂXȕ+ •µ@΄÷•õ!¥/}+8ãúE¦Ö‡øCëC¬—ü3¬Aº¯ñ'BnûýHú
+}4¼?A-”µ^{”Àžu¨¯"|‚()!ÛñŽ›BÏ⿔ §A€ì‰Ðï«ÐH=A-”µ7©§A ì‰P‡ú*BÁ'ˆ’²¿½•0ã¬Ðá÷³`ãLÃ" “$Hœ³f=åoiæ_-¬‚…³55Ф3„¤}áTÆè†ýÇ(X´õóQP8µ„Ø!t…Ž¶ƒ¢žòKÚª6UÁÄ%·¢FÒ4Ò>qºk
+!sÃþJbÙÙí[ ²²£² ÒgÈ?ȯþDIs×zÈ’€ì"Ê?BÁ'¶>w;Þq“gŠÿR‚ìA€Ì.4ÁóÔ%…Ñ]kp³‡$ »H‡òPð‰-Óݎ_OÏm[é‡Ð–7±»å$Óë¸æªY¹ã%{”:nü(©qznÞWÕB28“žKz{·qÜ2ã
+‘³H®QãB–¡µ@΄÷7WãêF™~ôÎf}Ò0¨wLÝç¸&Ç]Q“»’Á™ô\Ò ƒÀ c!W®€V£‰È83ޟoŠ¸Íoå>W¬dˆmÎsÅÛtŸ+î‹)ǜy®ø¦õ
+8!$D:”c„‚O”<W|³ã7yF¡ø/%ÈÈ B<ÇÐHå˜3Ïß´71CH2ˆt(ÇŸ(y®øfÇç@ú)ë5œûøBÛ:›mÿ?â 7P:ÂZIgå Wç@êƓvƒsçò@ékh‹'ü$÷çs n¹­†~¡qsž°…Vy–aAJ®¥\aîÁ )'@áÊӝ58!A}#ŽªÿúÄJ½µÌd‰v›¸ÊVE-$ƒ3鹂ÞÉãá8ì§crA)X+„“ǃäþn¹9ùAÃ4lEãÑhY#!×ø’’ËuNŠši"Ý ¦µ7y<¼á´Ë¹pbÁüû…>=Î5j¥x`­$‡ã‘«x8 WÎ9Å¥x`-•x¨SrŽ·Üœü…>=h«5ž<a- Rrýô¬à‚,8w»'@¤œ…3ôÖà„õxèw`­1¾à˜(NFN<Dj=êÉO$ÛKõ”ÏÉIÇÏ[\ð©Å…™".P‹H8ÓùM þ90‚`ʳ`æyÛ9ºÄs—!hJŸãYÁF€ 4ì¿|ÆDހ€“‡xkðFFüÛ
+ғ‡öÉH~¼×Ò=yhc¸§8\%éɃõÄ6§;i$ý÷äán˜Óæ­TF­²¿qùåL»¬\z¸H°IÏaì*“)xÊ£WÕ֜®.zÃ%i.ŒC²gÁÆcøqj ƒ&Ÿ㘊õGš»©»\¿Íi‰{‰=Ÿ“v+¶%Ž_™#0Í~i\þ((¼ª!N†ºæÂ4VGý‘fÂnêÜ1˜Å÷'|LÚ'ÞçÀnØßÉ.gÓ~-£\í‹Âï¤g훒üx¤‡ìRãXWû¸˜]Ž<ÚU=±Õt‰‘¤¿]Î<ÂýZƼ²I@~9Ó®;—nlÒ5Œ|e2³Ë‘Ǿª'¬šîºzÃ%œ~ódrÜ6ÖªÀò§ ‘=0Eçم3x¬_ӞڛºËõ#?liC­¤3»H;ꏴ›ö†ýÇx29n[iU`ùAó–=]ÙE3è_Ó.ڛ:w óÖ¶ÐJ:³‹´£þHûgoØ_É.ØÊàÉäYp¤ îd`v9n&Ú頍qÂÒ=»hk…vZ„¾/IÏ.¬'¶-͚HúïÙÅÝ0§í7¡àH³&´›Ù…~av9⬠x³.eXEÎ-öƒK¨x‹3'rI†ýÎ=ˆa!ï¼oÜW —öjÞ¸ÏÛ
+øµyénRɖ·úÓ Ò!7 Ÿ Ê-ƒßpSOùUoùG¯å‹ù§Ï<¤ü³í)ÿH>¸·[þQÞ9{Ê?’®7֑ò°-¼ðµüC`þ‚ª·ü£‚«cþ!tåšÆú-埛:w ß9{Ê?’®7֑ò°M¼8ò½üƒ° ÷ÔÛoáYÀ›ët‰?ÂÖoqC\«ò÷ô+ð[ÜX°êw¯ò§t¿ÆþHg¹ˆmM¿ãWnq0í²¢ðg†7€Æñ  kçMSýÆÑPÌ¢Ú$¥‚Cy8\†(éÜ%í¬¯ÉÅ÷À[°öå6*ß·Û¨\–%ö-Ê÷õ6*ߗ4*—|p/·Q¹
+ŒMÜV,éÌ1Ҏú-ÊoØ_qŒR
+…? ,Kr¡+ÇÐ4Ö/iT~SçŽA–·åIgŽ‘vÔoiT~ÃþóG!§œc¦x²50KLùóçÀî9_wT=äƒ;«»\?²¹ù¥ H÷3åoeL<fk9&aÅ1!¥Lqæ*0KLñú2B÷ÓT_95ÇxŽa²¹‘C(Ýs̔&ʈ9&aÿm“ ×5˜R.¦<
+6n<‹‡_ùvöõàÂê)ÜYÝåú±û†ÜØ}CéÚ}Cí ÷¶Å3¯7ì¯8F)…Ÿ…›ãqWB÷Ý7S:ì*ùàÎêÜ1Ü}Cn쾡tí¾¡ö‰»ã)×öJÓí6Úi¹ÝFËf‰’n£Åg¥CŽ™Óm´”Oî¤îrýÌ1sº–Ò•c¨õKº6cÅ1žR üYÀ,QâÇ=ä˜9~.@òɝԹc”cæøÉIWŽ¡vÖ/ñ«7ì‘æÂ8ûY‚ÌçcÞ)-דŽ#o>±)Y¦åè#o~²˜œ¥tyë‰Cé>]ò!oŒ¼Ý)ZÀ|”ÐHy§´¶ܤq3Ÿ(zÙ¦µJw“Jj¾‹€N wQè ⦄lÇ«äáŠç!ûA/ñÀ#ï-¶5l¿ÖxÏ_N1ÉK<ðèw‹yc1äÎùÀ£.z&ÂpàñÛŒï·_ß/¿Îw_端o7_§{¯Ó­×·;¯Ó×ù¾ëûu×ù¶ë|Ùõ{w]ó|”o¸á1­/%›r¥„pŒ*ÌŸi¤$[:’å³Á,Xx +]$ñÚ}#|‚—t”ìáó6Zò£{ϒ¢Ãéî Zà³Âg1IGI'ø|V˜Ïÿ¥kƒ$^ûn€Oàt;}øæÌ0^‘ñýô­$Þ\Æ÷¤¿;–ÛÝeþ„k9Óû©Ü®/ã›Û%Lé3ÒñýÄ'ˆrNw˜¹ŽWÞOrŠòú·’x™œ w‡Ü¤· Ÿp-gz?ÉM*™Ómfr‚tÈMBÁ'ˆrN7š½ã&´â¹Ý¶á|+ˆÛrÎ=íÊ遤zɏ[r Ý£è\ӆœsIûq@z©ØÖ´GÒ_ˆ÷7`})ˆqh8ÚÕÃMY{څ#î¤Îㆦ‘{I;pÜ1Ô¾¤ý7âNØ_‰˜zÜ6N< jÚHQÏ´¤GŒê!¿¦M~Eýq EÝÓ
+g›Ê1lsÖC>¹“:šnéîhW½awÂþJÄà4¨ȳ`Mpž
+é–fÑ£àè÷eœ磯n}l6÷Wî1wQ$;ô–_·YõOî¬îrýûçœç¿äî嘋¤ƒlC»êÜû+Žé3øý×ìŽøV²}rù¦ßF¶ïîÒî=!-pÓz}ÅÑ=tžŸópt©žÁ~3╣ÝøПä~lqÝZŸÄák~´[Ÿ!Ôfù°vMéWÔV¯õYDJ_òúµêlXÁvé¿ív7`]ïY°ÅUlٍ…Cù…×cîa!›¼Y×tûZ¶L¦à%¯f«Þq†õìW\¢ ûÂú5<þ¥„+Ú5“×ú…K%x JÈZ¯€ƒ‹Ò”ÀEkêðem¢àDI َwÜV±yµä³¤hƒJú&MðK%tß$Ÿ JÈZƒ›´4M \º¦_Ü&
+>A””íø힟=°±ôñ m؃• ‰°T¡V2X»Ç±uÖsIïÊ zÂÀšr9`¢VԞqTñ¾á
+˜`k÷8šÎzä
+@{á–eÐçX‘ëÓVU´™pÎñ j¡„¬õ
+8öٞ0 ­?>— ÃèÎA|‚()!Ûñã8lé³1+wbõÛ˓ÞÇDZø'=jŒ”ÆÊh6Ž¤å¢R<oÒ#FŒák`‡Ú¤F2
+•‚éݪ[ªûÁå[É>Áý¸uŒŽÖŒv/n¡;jïÖná h‘„¬õ
+8Úï¤sRBF™v]J ÿŸnH¸ÙñF¨¸KЏȠ))\ÜAhH0`¦ØäÂMv•f¯º¨%ō;Hé×üØYïò(è˜6œšã¦ÞæޢÜI]ˆ™9…Ì™漅˙ƒeαòÆ/ªw›ú\ZOäûXçn†éx´ÞûTËè`ìçÚÉþg\6¼œ$m%»½`¼Þä“;«»\?þ€{îï*é mY}ˆE=Á‚;cÅ1½/Ýð¤ëê^i¿Íb”û„µ”<8“wH³/îÖ™ÝF¹7P DàLx܀Õ^|í•)Óû÷÷¶ù = Zë§.•Æ®uÌóËk_P:TKÉÆõ\Ò ƒÀ c!W®€VÖ"rF¼¯¸Âý(`À€í?X¥z“/î¤Î]€7î?hW=À’;aÿí,ëO÷ ý³474œË^¿ÑÇzþ]{ÏêGjw£zïÔÕeÕiQ­$Τç’Þ¾¸´ýg£æ~êÉä‚jϚVÖ8Þ7\qØ–LÿBïë&WlŸ©ł+ŒrW V’gÒ#WËgkAON[£\£ä
+Ö8ÞߎhÏ)Ȣﴽ۟ªŒeÈ~^zŸH]]Ö0µ Τç
+µôÄoy”\ÿâŽàâ¨ì¾·C3qTVN˜Ó½”8{Æoí¼á¶Ó‘?“ò…_MáXˆ‡š¿™¢²(9|1rº‹Ë8·ø¹PŠÖÑ¿•"¹¿Çƒ,Ÿã­l‘ßI¡­ˆzâŒw¨I®#EpAîá )4"å„9Ýú0{ü:ÊN@»ìZU6ÿ>è-~ç‚÷Y»íZ_ÞómF¼ê(|ãb×Ê2hޛÄ[”&‡]kÊ5ÝÁDKüºÅþÆ!éx§•ÚÿAoñË´Ûùuv<Þwuò.,ÿª…à‚\Â7-h&DÊ sº¡kæõ]á{o8ÇÓò9>Âw§Küúï–Á7Ÿµ¾ç›gxÈ%|y@Ò¼ã†7ޏ‡C‹ç5ݗDSüæÀª3Þ?¤öÐ%~o€¶âÃÏ:*ï&:y
+Ê¿5 ¸ §ð¥š ‘rœnSšyÕRøÊÀNèóDlj
+Õ" oÇ«ÿŸ’ºØa—s¶IÆFȾj²O¢m]eÌ|ñ‰ eH¸i½Ž¾tý+ ÓÑÆ«Åu€¶ÕžBO%%d;~žûÛ²›ê6vª~/1#×,¸©Z/¸©ŸpJnr-&!k½I tu¸›ˆBO%%d;~Ì. NßOÜ0¹ï8óÿ,™?[Ö2'o˜;F <A_c7*o°'¨…²Ö+á˜ÆÄ4$ôKwu€î@¡'·IÈvüæ¦>:Ìnj¹£f7©F6zŽn:l'ppSÏÑMÒB Yë•p #)N wQè Çm²?îlo­´ÄWvïtíõKï¥<Ú°ÝßÚý[@SìÀôÞÖ.ª„|¿S3¨»\¸Ssõ8¥û÷– õÀæßk
+n’JÈZ¯„c) p‚tÈMBÁ'÷„юwÜ´ôùâò¥dÁ™ ìûfk0tp“ž –E§.¢Ö+ᘷÝÝ´´ÌÒÿJ‡ÑÁMzÂq›„lÇ;?:w
+ƒõK Œd¸Ó üA¸›ø“áÒ 7­WÂ1Œ”8A:ä&¡àŽ{H¸ÙñÛàuŠ³ÿôOx„‰
+.qâÊi›P l
+ΤIž`ãœë*î ‹3}¡“vÝs7½ó´ÆãNÝü#¬
+»–xºhÇ¸€‹œ ö;>ñ8â!¼PPu&hó ‘O%ò ë!ŸÜIûDͽñÌ^ ^Q¬H;랬Ñ1oKkÅ=Këú¬)XXà‡åŽ,œR°Ì%.qI>¹“ºKúyR¯`aÍÞH vŒrÆ| KrÄEÎûŸ(6(üQàg*,ô‰‚…>a=ä“;©sŸèDgášk ^ñ`¡v?º†`ÉØtLK[ý’9.Ÿ…4w™¸Øf7”L6 çÁrÆõ/Ég°$u—ô³ÉO¬ºÙý$&[ÁÕ¬±”g——$ØïøD±Aá47}‚` O<Xθ0*ù –¤Î}¢æ>¹ [‚W<X¨õ3×zktŒËÿ!f×
+endstream
+endobj
+17 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/Name /Fcpdf0
+/BaseFont /Times-Roman
+/Encoding /WinAnsiEncoding
+>>
+endobj
+18 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/Name /Fcpdf1
+/BaseFont /Helvetica
+/Encoding /WinAnsiEncoding
+>>
+endobj
+19 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+20 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+21 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+22 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+23 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+24 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+25 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+26 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+27 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+28 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+29 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+30 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+31 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+32 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+33 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+34 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+35 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+36 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+37 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+38 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+39 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+40 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+41 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+42 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+43 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+44 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+45 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+46 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+47 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+48 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+49 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+50 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+51 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+52 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+53 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+54 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+55 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+56 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+57 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+58 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+59 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+60 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+61 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+62 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+63 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+64 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+65 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+66 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+67 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+68 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+69 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+70 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+71 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+72 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+73 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+74 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+75 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+76 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+77 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+78 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+79 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+80 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+81 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+82 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+83 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+84 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+85 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+86 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+87 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+88 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+89 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+90 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+91 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+92 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+93 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+94 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+95 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+96 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+97 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+98 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+99 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+100 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+101 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+102 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+103 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+104 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+105 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+106 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+107 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+108 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+109 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+110 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+111 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+112 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+113 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+114 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+115 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+116 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+117 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+118 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+119 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+120 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+121 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+122 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+123 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+124 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+125 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+126 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+127 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+128 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+129 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+130 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+131 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+132 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+133 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+134 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+135 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+136 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+137 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+138 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+139 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+140 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+141 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+142 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+143 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+144 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+145 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+146 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+147 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+148 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+149 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+150 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+151 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+152 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+153 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+154 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+155 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+156 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+157 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+158 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+159 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+160 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+161 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+162 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+163 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+164 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+165 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+166 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+167 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+168 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+169 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+170 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+171 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+172 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+173 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+174 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+175 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+176 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+177 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+178 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+179 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+180 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+181 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+182 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+183 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+184 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+185 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+186 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+187 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+188 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+189 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+190 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+191 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+192 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+193 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+194 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+195 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+196 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+197 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+198 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+199 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+200 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+201 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+202 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+203 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+204 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+205 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+206 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+207 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+208 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+209 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+210 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+211 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+212 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+213 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+214 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+215 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+216 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+217 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+218 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+219 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+220 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+221 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+222 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+223 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+224 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+225 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+226 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+227 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+228 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+229 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+230 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+231 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [269.5888 386.2943 284.8962 401.6017]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M5','Description = Znacky pro spravne umisteni PCB do osazovaciho automatu','PCB Decal = FIDU','Part Type = FIDU');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+232 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.5488 379.0943 288.8563 394.4017]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF2','Description = fidu znacka','PCB Decal = FIDU_PASTE','Part Type = FIDU_PASTE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+233 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+234 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+235 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+236 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+237 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+238 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+239 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+240 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+241 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+242 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+243 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+244 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+245 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+246 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+247 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+248 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+249 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+250 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+251 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+252 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+253 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+254 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+255 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+256 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+257 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+258 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+259 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+260 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+261 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+262 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+263 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+264 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+265 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+266 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+267 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+268 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+269 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+270 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+271 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+272 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+273 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+274 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+275 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+276 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+277 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+278 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+279 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+280 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+281 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+282 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+283 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+284 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+285 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+286 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+287 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+288 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+289 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+290 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+291 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+292 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+293 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+294 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+295 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+296 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+297 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+298 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+299 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+300 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+301 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+302 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+303 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+304 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+305 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+306 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+307 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+308 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+309 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+310 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+311 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+312 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+313 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+314 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+315 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+316 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+317 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+318 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+319 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+320 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+321 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+322 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+323 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+324 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+325 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+326 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+327 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+328 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+329 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+330 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+331 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+332 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+333 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+334 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+335 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+336 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+337 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+338 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+339 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+340 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+341 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+342 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+343 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+344 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+345 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+346 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+347 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+348 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+349 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+350 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+351 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+352 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+353 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+354 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+355 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+356 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+357 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+358 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+359 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+360 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+361 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+362 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+363 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+364 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+365 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+366 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+367 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+368 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+369 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+370 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+371 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+372 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+373 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+374 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+375 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+376 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+377 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+378 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+379 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+380 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+381 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+382 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+383 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+384 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+385 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+386 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+387 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+388 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+389 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+390 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+391 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+392 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+393 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+394 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+395 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+396 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+397 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+398 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+399 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+400 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+401 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+402 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+403 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+404 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+405 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+406 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+407 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+408 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+409 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+410 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+411 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+412 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+413 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+414 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+415 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+416 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+417 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+418 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+419 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+420 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+421 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+422 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+423 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+424 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+425 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+426 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+427 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+428 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+429 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+430 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+431 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+432 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+433 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+434 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+435 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+436 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+437 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+438 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+439 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+440 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+441 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+442 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+443 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+444 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+445 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+446 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+447 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+448 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+449 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+450 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+451 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+452 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+453 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+454 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+455 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+456 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+457 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+458 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+459 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+460 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+461 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+462 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+463 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+464 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+465 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+466 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+467 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+468 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+469 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+470 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+471 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+472 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+473 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+474 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+475 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+476 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+477 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+478 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+479 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+480 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+481 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+482 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+483 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+484 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+485 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+486 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+487 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+488 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+489 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+490 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+491 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+492 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+493 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+494 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+495 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+496 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+497 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+498 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+499 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+500 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+501 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+502 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+503 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+504 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+505 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+506 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+507 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+508 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+509 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+510 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+511 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+512 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+513 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+514 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+515 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+516 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+517 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+518 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+519 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+520 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+521 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+522 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+523 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+524 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+525 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+526 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+527 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+528 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+529 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+530 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+531 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+532 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+533 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+534 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+535 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+536 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+537 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+538 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+539 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+540 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+541 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+542 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+543 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+544 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+545 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+546 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+547 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+548 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+549 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+550 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+551 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+552 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+553 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+554 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+555 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+556 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+557 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+558 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+559 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+560 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+561 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+562 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+563 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+564 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+565 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+566 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+567 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+568 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+569 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+570 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+571 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+572 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+573 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+574 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+575 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+576 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+577 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+578 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+579 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+580 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+581 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+582 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+583 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+584 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+585 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+586 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+587 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+588 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+589 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+590 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+591 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+592 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+593 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+594 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+595 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+596 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+597 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+598 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+599 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+600 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+601 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+602 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+603 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+604 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+605 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+606 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+607 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+608 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+609 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+610 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+611 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+612 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+613 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+614 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+615 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+616 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+617 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+618 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+619 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+620 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+621 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+622 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+623 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+624 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+625 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+626 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+627 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+628 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+629 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+630 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+631 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+632 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+633 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+634 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+635 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+636 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+637 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+638 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+639 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+640 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+641 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+642 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+643 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+644 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+645 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+646 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+647 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+648 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+649 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+650 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+651 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+652 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+653 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+654 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+655 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+656 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+657 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+658 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+659 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+660 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+661 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+662 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+663 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+664 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+665 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+666 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+667 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+668 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+669 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+670 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+671 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+672 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+673 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+674 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+675 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+676 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+677 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+678 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+679 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+680 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+681 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+682 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+683 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+684 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+685 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+686 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+687 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+688 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+689 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+690 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+691 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+692 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+693 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+694 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+695 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+696 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+697 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+698 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+699 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+700 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+701 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+702 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+703 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+704 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+705 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+706 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+707 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+708 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+709 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+710 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+711 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+712 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+713 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+714 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+715 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+716 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+717 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+718 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+719 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+720 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+721 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+722 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+723 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+724 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+725 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+726 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+727 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+728 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+729 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+730 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+731 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+732 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+733 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+734 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+735 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+736 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+737 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+738 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+739 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+740 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+741 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [269.5888 386.2943 284.8962 401.6017]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M5','Description = Znacky pro spravne umisteni PCB do osazovaciho automatu','PCB Decal = FIDU','Part Type = FIDU');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+742 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.5488 379.0943 288.8563 394.4017]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF2','Description = fidu znacka','PCB Decal = FIDU_PASTE','Part Type = FIDU_PASTE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+743 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+744 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+745 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+746 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+747 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+748 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+749 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+750 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+751 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+752 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+753 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+754 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+755 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+756 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+757 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+758 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+759 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+760 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+761 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+762 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+763 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+764 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+765 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+766 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+767 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+768 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+769 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+770 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+771 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+772 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+773 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+774 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+775 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+776 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+777 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+778 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+779 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+780 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+781 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+782 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+783 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+784 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+785 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+786 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+787 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+788 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+789 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+790 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+791 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+792 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+793 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+794 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+795 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+796 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+797 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+798 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+799 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+800 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+801 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+802 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+803 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+804 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+805 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+806 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+807 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+808 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+809 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+810 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+811 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+812 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+813 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+814 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+815 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+816 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+817 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+818 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+819 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+820 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+821 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+822 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+823 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+824 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+825 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+826 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+827 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+828 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+829 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+830 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+831 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+832 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+833 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+834 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+835 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+836 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+837 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+838 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+839 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+840 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+841 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+842 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+843 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+844 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+845 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+846 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+847 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+848 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+849 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+850 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+851 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+852 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+853 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+854 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+855 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+856 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+857 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+858 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+859 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+860 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+861 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+862 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+863 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+864 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+865 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+866 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+867 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+868 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+869 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+870 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+871 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+872 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+873 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+874 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+875 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+876 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+877 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+878 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+879 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+880 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+881 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+882 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+883 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+884 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+885 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+886 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+887 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+888 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+889 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+890 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+891 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+892 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+893 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+894 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+895 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+896 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+897 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+898 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+899 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+900 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+901 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+902 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+903 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+904 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+905 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+906 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+907 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+908 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+909 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+910 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+911 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+912 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+913 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+914 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+915 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+916 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+917 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+918 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+919 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+920 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+921 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+922 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+923 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+924 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+925 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+926 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+927 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+928 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+929 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+930 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+931 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+932 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+933 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+934 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+935 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+936 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+937 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+938 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+939 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+940 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+941 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+942 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+943 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+944 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+945 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+946 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+947 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+948 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+949 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+950 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+951 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+952 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+953 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+954 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+955 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+956 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+957 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+958 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+959 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+960 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+961 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+962 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+963 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+964 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+965 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+966 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+967 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+968 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+969 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+970 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+971 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+972 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+973 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+974 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+975 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+976 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+977 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+978 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+979 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+980 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+981 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+982 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+983 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+984 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+985 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+986 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+987 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+988 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+989 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+990 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+991 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+992 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+993 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+994 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+995 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+996 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+997 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+998 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+999 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1000 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1001 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1002 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1003 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1004 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1005 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1006 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1007 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1008 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1009 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1010 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1011 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1012 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1013 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1014 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1015 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1016 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1017 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1018 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1019 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1020 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1021 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1022 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1023 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1024 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1025 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1026 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1027 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1028 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1029 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1030 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1031 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1032 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1033 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1034 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1035 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1036 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1037 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1038 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1039 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1040 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1041 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1042 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1043 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1044 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1045 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1046 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1047 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1048 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1049 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1050 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1051 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1052 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1053 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1054 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1055 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1056 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1057 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1058 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1059 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1060 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1061 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1062 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1063 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1064 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1065 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1066 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1067 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1068 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1069 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1070 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1071 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1072 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1073 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1074 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1075 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1076 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1077 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1078 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1079 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1080 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1081 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1082 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1083 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1084 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1085 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1086 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1087 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1088 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1089 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1090 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1091 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1092 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1093 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1094 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1095 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1096 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1097 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1098 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1099 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1100 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1101 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1102 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1103 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1104 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1105 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1106 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1107 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1108 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1109 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1110 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1111 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1112 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1113 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1114 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1115 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1116 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1117 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1118 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1119 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1120 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1121 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1122 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1123 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1124 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1125 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1126 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1127 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1128 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1129 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1130 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1131 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1132 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1133 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1134 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1135 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1136 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1137 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1138 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1139 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1140 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1141 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1142 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1143 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1144 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1145 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1146 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1147 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1148 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1149 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1150 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1151 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1152 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1153 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1154 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1155 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1156 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1157 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1158 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1159 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1160 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1161 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1162 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1163 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1164 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1165 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1166 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1167 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1168 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1169 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1170 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1171 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1172 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1173 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1174 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1175 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1176 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1177 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1178 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1179 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1180 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1181 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1182 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1183 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1184 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1185 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1186 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1187 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1188 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1189 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1190 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1191 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1192 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1193 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1194 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1195 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1196 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1197 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1198 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1199 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1200 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1201 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1202 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1203 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1204 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1205 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1206 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1207 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1208 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1209 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1210 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1211 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1212 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1213 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1214 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1215 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1216 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1217 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1218 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1219 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1220 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1221 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1222 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1223 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1224 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1225 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1226 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1227 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1228 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1229 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1230 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1231 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1232 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1233 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1234 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1235 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1236 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1237 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1238 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1239 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1240 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1241 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1242 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1243 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1244 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1245 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1246 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1247 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1248 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1249 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1250 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1251 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1252 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1253 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1254 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1255 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1256 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1257 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1258 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1259 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1260 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1261 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1262 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1263 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1264 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1265 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1266 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1267 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1268 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1269 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1270 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1271 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1272 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1273 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1274 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1275 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1276 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1277 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1278 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1279 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1280 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1281 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1282 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1283 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1284 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1285 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1286 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1287 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1288 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1289 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1290 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1291 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1292 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1293 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1294 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1295 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1296 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1297 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1298 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1299 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1300 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1301 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1302 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1303 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1304 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1305 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1306 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1307 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1308 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1309 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1310 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1311 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1312 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1313 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1314 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1315 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1316 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1317 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1318 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1319 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1320 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1321 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1322 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1323 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1324 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1325 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1326 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1327 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1328 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1329 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1330 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1331 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1332 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1333 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1334 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1335 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1336 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1337 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1338 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1339 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1340 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1341 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1342 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1343 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1344 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1345 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1346 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1347 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1348 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1349 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1350 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1351 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1352 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1353 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1354 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1355 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1356 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1357 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1358 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1359 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1360 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1361 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1362 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1363 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1364 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1365 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1366 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1367 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1368 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1369 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1370 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1371 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1372 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1373 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1374 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1375 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1376 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1377 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1378 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1379 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1380 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1381 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1382 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1383 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1384 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1385 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1386 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1387 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1388 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1389 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1390 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1391 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1392 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1393 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1394 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1395 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1396 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1397 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1398 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1399 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1400 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1401 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1402 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1403 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1404 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1405 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1406 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1407 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1408 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1409 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1410 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1411 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1412 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1413 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1414 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1415 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1416 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1417 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1418 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1419 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1420 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1421 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1422 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1423 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1424 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1425 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1426 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1427 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1428 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1429 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1430 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1431 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1432 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1433 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1434 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1435 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1436 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1437 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1438 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1439 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1440 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1441 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1442 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1443 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1444 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1445 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1446 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1447 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1448 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1449 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1450 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1451 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1452 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1453 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1454 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1455 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1456 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1457 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1458 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1459 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1460 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1461 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1462 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1463 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1464 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1465 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1466 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1467 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1468 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1469 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1470 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1471 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1472 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1473 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1474 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1475 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1476 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1477 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1478 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1479 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1480 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1481 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1482 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1483 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1484 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1485 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1486 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1487 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1488 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1489 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1490 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1491 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1492 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1493 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1494 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1495 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1496 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1497 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1498 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1499 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1500 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1501 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1502 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1503 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.5488 379.0943 288.8563 394.4017]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF2','Description = fidu znacka','PCB Decal = FIDU_PASTE','Part Type = FIDU_PASTE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1504 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1505 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1506 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1507 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1508 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1509 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1510 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1511 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1512 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1513 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1514 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1515 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1516 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1517 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1518 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1519 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1520 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1521 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1522 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1523 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1524 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1525 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1526 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1527 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1528 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1529 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1530 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1531 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1532 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1533 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1534 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1535 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1536 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1537 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1538 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1539 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1540 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1541 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1542 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1543 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1544 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1545 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1546 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1547 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1548 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1549 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1550 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1551 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1552 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1553 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1554 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1555 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1556 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1557 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1558 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1559 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1560 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1561 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1562 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1563 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1564 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1565 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1566 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1567 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1568 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1569 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1570 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1571 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1572 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1573 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1574 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1575 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1576 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1577 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1578 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1579 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1580 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1581 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1582 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1583 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1584 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1585 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1586 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1587 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1588 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1589 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1590 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1591 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1592 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1593 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1594 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1595 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1596 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1597 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1598 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1599 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1600 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1601 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1602 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1603 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1604 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1605 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1606 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1607 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1608 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1609 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1610 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1611 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1612 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1613 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1614 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1615 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1616 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1617 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1618 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1619 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1620 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1621 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1622 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1623 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1624 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1625 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1626 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1627 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1628 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1629 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1630 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1631 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1632 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1633 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1634 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1635 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1636 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1637 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1638 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1639 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1640 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1641 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1642 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1643 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1644 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1645 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1646 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1647 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1648 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1649 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1650 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1651 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1652 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1653 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1654 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1655 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1656 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1657 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1658 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1659 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1660 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1661 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1662 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1663 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1664 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1665 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1666 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1667 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1668 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1669 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1670 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1671 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1672 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1673 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1674 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1675 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1676 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1677 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1678 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1679 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1680 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1681 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1682 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1683 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1684 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1685 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1686 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1687 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1688 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1689 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1690 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1691 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1692 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1693 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1694 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1695 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1696 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1697 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1698 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1699 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1700 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1701 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1702 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1703 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1704 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1705 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1706 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1707 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1708 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1709 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1710 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1711 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1712 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1713 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1714 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1715 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1716 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1717 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1718 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1719 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1720 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1721 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1722 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1723 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1724 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1725 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1726 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1727 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1728 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1729 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1730 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1731 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1732 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1733 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1734 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1735 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1736 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1737 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1738 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1739 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1740 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1741 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1742 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1743 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1744 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1745 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1746 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1747 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1748 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1749 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1750 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1751 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1752 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1753 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1754 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1755 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1756 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1757 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1758 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1759 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1760 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1761 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1762 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1763 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1764 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1765 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1766 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1767 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1768 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1769 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1770 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1771 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1772 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1773 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1774 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1775 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1776 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1777 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1778 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1779 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1780 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1781 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1782 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1783 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1784 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1785 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1786 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1787 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1788 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1789 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1790 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1791 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1792 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1793 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1794 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1795 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1796 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1797 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1798 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1799 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1800 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1801 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1802 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1803 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1804 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1805 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1806 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1807 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1808 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1809 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1810 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1811 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1812 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1813 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1814 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1815 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1816 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1817 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1818 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1819 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1820 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1821 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1822 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1823 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1824 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1825 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1826 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1827 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1828 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1829 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1830 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1831 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1832 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1833 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1834 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1835 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1836 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1837 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1838 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1839 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1840 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1841 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1842 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1843 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1844 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1845 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1846 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1847 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1848 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1849 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1850 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1851 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1852 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1853 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1854 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1855 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1856 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1857 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1858 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1859 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1860 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1861 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1862 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1863 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1864 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1865 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1866 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1867 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1868 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1869 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1870 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1871 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1872 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1873 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1874 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1875 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1876 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1877 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1878 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1879 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1880 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1881 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1882 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1883 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1884 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1885 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1886 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1887 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1888 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1889 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1890 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1891 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1892 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1893 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1894 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1895 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1896 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1897 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1898 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1899 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1900 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1901 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1902 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1903 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1904 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1905 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1906 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1907 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1908 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1909 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1910 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1911 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1912 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1913 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1914 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1915 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1916 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1917 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1918 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1919 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1920 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1921 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1922 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1923 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1924 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1925 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1926 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1927 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1928 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1929 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1930 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1931 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1932 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1933 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1934 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1935 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1936 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1937 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1938 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1939 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1940 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1941 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1942 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1943 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1944 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1945 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1946 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1947 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1948 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1949 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1950 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1951 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1952 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1953 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1954 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1955 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1956 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1957 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1958 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1959 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1960 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1961 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1962 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1963 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1964 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1965 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1966 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1967 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1968 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1969 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1970 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1971 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1972 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1973 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1974 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1975 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1976 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1977 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1978 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1979 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1980 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1981 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1982 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1983 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1984 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1985 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1986 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1987 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1988 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1989 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1990 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1991 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1992 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1993 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1994 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1995 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1996 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1997 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1998 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+1999 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2000 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2001 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2002 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2003 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2004 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2005 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2006 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2007 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2008 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2009 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2010 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2011 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2012 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2013 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2014 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2015 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2016 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2017 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2018 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2019 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2020 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2021 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2022 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2023 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2024 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2025 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2026 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2027 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2028 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2029 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2030 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2031 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2032 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2033 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2034 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2035 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2036 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2037 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2038 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2039 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2040 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2041 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2042 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2043 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2044 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2045 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2046 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2047 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2048 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2049 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2050 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2051 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2052 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2053 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2054 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2055 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2056 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2057 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2058 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2059 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2060 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2061 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2062 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2063 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2064 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2065 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2066 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2067 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2068 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2069 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2070 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2071 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2072 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2073 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2074 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2075 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2076 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2077 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2078 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2079 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2080 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2081 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2082 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2083 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2084 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2085 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2086 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2087 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2088 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2089 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2090 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2091 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2092 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2093 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2094 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2095 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2096 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2097 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2098 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2099 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2100 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2101 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2102 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2103 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2104 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2105 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2106 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2107 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2108 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2109 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2110 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2111 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2112 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2113 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2114 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2115 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2116 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2117 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2118 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2119 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2120 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2121 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2122 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2123 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2124 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2125 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2126 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2127 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2128 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2129 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2130 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2131 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2132 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2133 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2134 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2135 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2136 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2137 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2138 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2139 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2140 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2141 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2142 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2143 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2144 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2145 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2146 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2147 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2148 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2149 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2150 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2151 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2152 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2153 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2154 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2155 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2156 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2157 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2158 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2159 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2160 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2161 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2162 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2163 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2164 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2165 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2166 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2167 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2168 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2169 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2170 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2171 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2172 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2173 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2174 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2175 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2176 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2177 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2178 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2179 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2180 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2181 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2182 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2183 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2184 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2185 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2186 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2187 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2188 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2189 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2190 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2191 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2192 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2193 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2194 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2195 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2196 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2197 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2198 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2199 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2200 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2201 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2202 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2203 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2204 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2205 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2206 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2207 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2208 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2209 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2210 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2211 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2212 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2213 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2214 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2215 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2216 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2217 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2218 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2219 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2220 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2221 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2222 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2223 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2224 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2225 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2226 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2227 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2228 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2229 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2230 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2231 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2232 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2233 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2234 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2235 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2236 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2237 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2238 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2239 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2240 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2241 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2242 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2243 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2244 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2245 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2246 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2247 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2248 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2249 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2250 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2251 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2252 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2253 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2254 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2255 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2256 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2257 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2258 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2259 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2260 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2261 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2262 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2263 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2264 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2265 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2266 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2267 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2268 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2269 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2270 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2271 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2272 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2273 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2274 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2275 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2276 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2277 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2278 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2279 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2280 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2281 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2282 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2283 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2284 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2285 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2286 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2287 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2288 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2289 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2290 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2291 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2292 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2293 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2294 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2295 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2296 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2297 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2298 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2299 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2300 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2301 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2302 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2303 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2304 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2305 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2306 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2307 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2308 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2309 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2310 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2311 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2312 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2313 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2314 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2315 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2316 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2317 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2318 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2319 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2320 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2321 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2322 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2323 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2324 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2325 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2326 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2327 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2328 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2329 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2330 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2331 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2332 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2333 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2334 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2335 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2336 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2337 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2338 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2339 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2340 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2341 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2342 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2343 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2344 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2345 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2346 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2347 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2348 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2349 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2350 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2351 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2352 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2353 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2354 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2355 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2356 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2357 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2358 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2359 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2360 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2361 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2362 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2363 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2364 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2365 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2366 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2367 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2368 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2369 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2370 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2371 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2372 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2373 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2374 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2375 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2376 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2377 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2378 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2379 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2380 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2381 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2382 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2383 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2384 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2385 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2386 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2387 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2388 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2389 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2390 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2391 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2392 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2393 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2394 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2395 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2396 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2397 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2398 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2399 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2400 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2401 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2402 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2403 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2404 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2405 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2406 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2407 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2408 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2409 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2410 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2411 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2412 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2413 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2414 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2415 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2416 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2417 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2418 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2419 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2420 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2421 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2422 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2423 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2424 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2425 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2426 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2427 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2428 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2429 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2430 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2431 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2432 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2433 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2434 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2435 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2436 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2437 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2438 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2439 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2440 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2441 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2442 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2443 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2444 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2445 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2446 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2447 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2448 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2449 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2450 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2451 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2452 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2453 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2454 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2455 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2456 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2457 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2458 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2459 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2460 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2461 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2462 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2463 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2464 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2465 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2466 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2467 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2468 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2469 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2470 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2471 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2472 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2473 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2474 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2475 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2476 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2477 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2478 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2479 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2480 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2481 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2482 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2483 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2484 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2485 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2486 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2487 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2488 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2489 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2490 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2491 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2492 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2493 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2494 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2495 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2496 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2497 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2498 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2499 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2500 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2501 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2502 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2503 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2504 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2505 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2506 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2507 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2508 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2509 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2510 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2511 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2512 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2513 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2514 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2515 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2516 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2517 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2518 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2519 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2520 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2521 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2522 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2523 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2524 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2525 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2526 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2527 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2528 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2529 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2530 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2531 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2532 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2533 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2534 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2535 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2536 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2537 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2538 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2539 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2540 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2541 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2542 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2543 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2544 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2545 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2546 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2547 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2548 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2549 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2550 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2551 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2552 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2553 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2554 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2555 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2556 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2557 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2558 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2559 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2560 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2561 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2562 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2563 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2564 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2565 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2566 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2567 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2568 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2569 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2570 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2571 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2572 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2573 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2574 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2575 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2576 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2577 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2578 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2579 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2580 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2581 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2582 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2583 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2584 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2585 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2586 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2587 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2588 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2589 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2590 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2591 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2592 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2593 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2594 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2595 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2596 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2597 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2598 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2599 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2600 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2601 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2602 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2603 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2604 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2605 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2606 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2607 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2608 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2609 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2610 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2611 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2612 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2613 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2614 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2615 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2616 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2617 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2618 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2619 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2620 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2621 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2622 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2623 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2624 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2625 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2626 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2627 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2628 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2629 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2630 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2631 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2632 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2633 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2634 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2635 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2636 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2637 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2638 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2639 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2640 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2641 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2642 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2643 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2644 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2645 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2646 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2647 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2648 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2649 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2650 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2651 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2652 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2653 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2654 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2655 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2656 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2657 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2658 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2659 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2660 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2661 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2662 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2663 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2664 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2665 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2666 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2667 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2668 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2669 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2670 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2671 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2672 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2673 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2674 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2675 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2676 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2677 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2678 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2679 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2680 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2681 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2682 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2683 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2684 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2685 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2686 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2687 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2688 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2689 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2690 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2691 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2692 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2693 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2694 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2695 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2696 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2697 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2698 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2699 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2700 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2701 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2702 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2703 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2704 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2705 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2706 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2707 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2708 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2709 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2710 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2711 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2712 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2713 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2714 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2715 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2716 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2717 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2718 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2719 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2720 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2721 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2722 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2723 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2724 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2725 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2726 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2727 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2728 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2729 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2730 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2731 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2732 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2733 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2734 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2735 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2736 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2737 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2738 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2739 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2740 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2741 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2742 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2743 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2744 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2745 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2746 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2747 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2748 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2749 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2750 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2751 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2752 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2753 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2754 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2755 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2756 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2757 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2758 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2759 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2760 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2761 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2762 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2763 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2764 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2765 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2766 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2767 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2768 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2769 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2770 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2771 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2772 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2773 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2774 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2775 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2776 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2777 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2778 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2779 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2780 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2781 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2782 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2783 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2784 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2785 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2786 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2787 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2788 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2789 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2790 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2791 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2792 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2793 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2794 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2795 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2796 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2797 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2798 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2799 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2800 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2801 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2802 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2803 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2804 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2805 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2806 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2807 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2808 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2809 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2810 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2811 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2812 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2813 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2814 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2815 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2816 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2817 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2818 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2819 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2820 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2821 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2822 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2823 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2824 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2825 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2826 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2827 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2828 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2829 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2830 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2831 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2832 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2833 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2834 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2835 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2836 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2837 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2838 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2839 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2840 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2841 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2842 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2843 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2844 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2845 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2846 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2847 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2848 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2849 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2850 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2851 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2852 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2853 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2854 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2855 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2856 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2857 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2858 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2859 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2860 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2861 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2862 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2863 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2864 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2865 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2866 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2867 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2868 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2869 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2870 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2871 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2872 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2873 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2874 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2875 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2876 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2877 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2878 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2879 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2880 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2881 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2882 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2883 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2884 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2885 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2886 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2887 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2888 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2889 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2890 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2891 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2892 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2893 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2894 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2895 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2896 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2897 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2898 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2899 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2900 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2901 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2902 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2903 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2904 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2905 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2906 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2907 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2908 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2909 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2910 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2911 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2912 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2913 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2914 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2915 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2916 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2917 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2918 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2919 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2920 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2921 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2922 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2923 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2924 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2925 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2926 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2927 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2928 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2929 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2930 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2931 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2932 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2933 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2934 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2935 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2936 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2937 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2938 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2939 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2940 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2941 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2942 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2943 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2944 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2945 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2946 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2947 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2948 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2949 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2950 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2951 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2952 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2953 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2954 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2955 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2956 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2957 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2958 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2959 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2960 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2961 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2962 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2963 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2964 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2965 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2966 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2967 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2968 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2969 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2970 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2971 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2972 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2973 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2974 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2975 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2976 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2977 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2978 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2979 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2980 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2981 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2982 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2983 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2984 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2985 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2986 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2987 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2988 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2989 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2990 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2991 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2992 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2993 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2994 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2995 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2996 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2997 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2998 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+2999 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3000 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3001 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3002 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3003 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3004 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3005 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3006 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3007 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3008 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3009 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3010 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3011 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3012 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3013 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3014 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3015 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3016 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3017 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3018 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3019 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3020 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3021 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3022 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3023 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3024 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3025 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3026 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3027 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3028 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3029 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3030 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3031 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3032 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3033 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3034 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3035 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3036 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3037 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3038 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3039 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3040 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3041 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3042 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3043 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3044 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3045 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3046 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3047 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3048 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3049 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3050 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3051 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3052 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3053 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3054 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3055 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3056 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3057 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3058 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3059 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3060 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3061 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3062 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3063 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3064 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3065 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3066 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3067 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3068 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3069 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3070 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3071 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3072 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3073 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3074 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3075 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3076 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3077 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3078 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3079 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3080 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3081 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3082 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3083 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3084 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3085 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3086 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3087 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3088 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3089 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3090 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3091 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3092 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3093 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3094 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3095 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3096 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3097 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3098 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3099 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3100 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3101 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3102 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3103 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3104 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3105 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3106 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3107 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3108 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3109 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3110 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3111 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3112 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3113 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3114 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3115 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3116 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3117 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3118 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3119 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3120 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3121 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3122 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3123 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3124 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3125 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3126 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3127 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3128 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3129 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3130 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3131 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3132 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3133 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3134 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3135 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3136 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3137 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3138 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3139 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3140 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3141 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3142 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3143 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3144 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3145 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3146 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3147 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3148 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3149 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3150 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3151 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3152 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3153 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3154 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3155 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3156 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3157 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3158 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3159 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3160 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3161 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3162 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3163 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3164 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3165 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3166 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3167 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3168 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3169 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3170 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3171 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3172 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3173 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3174 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3175 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3176 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3177 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3178 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3179 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3180 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3181 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3182 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3183 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3184 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3185 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3186 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3187 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3188 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3189 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3190 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3191 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3192 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3193 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3194 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3195 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3196 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3197 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3198 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3199 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3200 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3201 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3202 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3203 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3204 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3205 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3206 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3207 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3208 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3209 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3210 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3211 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3212 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3213 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3214 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3215 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3216 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3217 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3218 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3219 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3220 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3221 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3222 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3223 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3224 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3225 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3226 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3227 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3228 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3229 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3230 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3231 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3232 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3233 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3234 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3235 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3236 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3237 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3238 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3239 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3240 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3241 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3242 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3243 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3244 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3245 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3246 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3247 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3248 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3249 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3250 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3251 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3252 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3253 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3254 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3255 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3256 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3257 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3258 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3259 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3260 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3261 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3262 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3263 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3264 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3265 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3266 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3267 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3268 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3269 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3270 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3271 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3272 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3273 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3274 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3275 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3276 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3277 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3278 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3279 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3280 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3281 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3282 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3283 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3284 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3285 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3286 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3287 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3288 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3289 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3290 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3291 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3292 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3293 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3294 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3295 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3296 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3297 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3298 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3299 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3300 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3301 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3302 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3303 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3304 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3305 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3306 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3307 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3308 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3309 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3310 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3311 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3312 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3313 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3314 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3315 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3316 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3317 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3318 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3319 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3320 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3321 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3322 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3323 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3324 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3325 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3326 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3327 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3328 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3329 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3330 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3331 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3332 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3333 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3334 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3335 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3336 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3337 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3338 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3339 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3340 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3341 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3342 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3343 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3344 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3345 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3346 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3347 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3348 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3349 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3350 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3351 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3352 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3353 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3354 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3355 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3356 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3357 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3358 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3359 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3360 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3361 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3362 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3363 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3364 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3365 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3366 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3367 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3368 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3369 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3370 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3371 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3372 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3373 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3374 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3375 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3376 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3377 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3378 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3379 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3380 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3381 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3382 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3383 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3384 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3385 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3386 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3387 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3388 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3389 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3390 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3391 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3392 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3393 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3394 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3395 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3396 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3397 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3398 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3399 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3400 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3401 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3402 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3403 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3404 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3405 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3406 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3407 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3408 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3409 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3410 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3411 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3412 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3413 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3414 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3415 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3416 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3417 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3418 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3419 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3420 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3421 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3422 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3423 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3424 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3425 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3426 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3427 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3428 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3429 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3430 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3431 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3432 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3433 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3434 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3435 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3436 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3437 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3438 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3439 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3440 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3441 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3442 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3443 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3444 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3445 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3446 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3447 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3448 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3449 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3450 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3451 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3452 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3453 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3454 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3455 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3456 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3457 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3458 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3459 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3460 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3461 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3462 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3463 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3464 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3465 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3466 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3467 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3468 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3469 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3470 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3471 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3472 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3473 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3474 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3475 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3476 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3477 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3478 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3479 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3480 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3481 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3482 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3483 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3484 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3485 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3486 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3487 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3488 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3489 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3490 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3491 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3492 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3493 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3494 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3495 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3496 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3497 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3498 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3499 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3500 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3501 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3502 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3503 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3504 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3505 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3506 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3507 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3508 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3509 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3510 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3511 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3512 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3513 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3514 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3515 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3516 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3517 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3518 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3519 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3520 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3521 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3522 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3523 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3524 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3525 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3526 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3527 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3528 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3529 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3530 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3531 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3532 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3533 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3534 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3535 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3536 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3537 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3538 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3539 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3540 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3541 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3542 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3543 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3544 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3545 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3546 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3547 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3548 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3549 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3550 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3551 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3552 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3553 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3554 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3555 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3556 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3557 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3558 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3559 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3560 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3561 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3562 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3563 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3564 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3565 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3566 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3567 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3568 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3569 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3570 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3571 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3572 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3573 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3574 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3575 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3576 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3577 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3578 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3579 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3580 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3581 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3582 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3583 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3584 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3585 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3586 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3587 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3588 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3589 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3590 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3591 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3592 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3593 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3594 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3595 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3596 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3597 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3598 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3599 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3600 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3601 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3602 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3603 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3604 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3605 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3606 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3607 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3608 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3609 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3610 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3611 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3612 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3613 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3614 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3615 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3616 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3617 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3618 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3619 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3620 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3621 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3622 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3623 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3624 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3625 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3626 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3627 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3628 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3629 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3630 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3631 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3632 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3633 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3634 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3635 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3636 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3637 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3638 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3639 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3640 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3641 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3642 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3643 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3644 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3645 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3646 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3647 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3648 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3649 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3650 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3651 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3652 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3653 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3654 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3655 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3656 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3657 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3658 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3659 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3660 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3661 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3662 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3663 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3664 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3665 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3666 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3667 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3668 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3669 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3670 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3671 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3672 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3673 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3674 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3675 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3676 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3677 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3678 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3679 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3680 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3681 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3682 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3683 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3684 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3685 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3686 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3687 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3688 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3689 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3690 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3691 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3692 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3693 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3694 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3695 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3696 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3697 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3698 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3699 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3700 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3701 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3702 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3703 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3704 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3705 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3706 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3707 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3708 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3709 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3710 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3711 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3712 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3713 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3714 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3715 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3716 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3717 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3718 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3719 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3720 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3721 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3722 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3723 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3724 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3725 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3726 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3727 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3728 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3729 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3730 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3731 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3732 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3733 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3734 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3735 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3736 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3737 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3738 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3739 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3740 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3741 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3742 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3743 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3744 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3745 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3746 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3747 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3748 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3749 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3750 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3751 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3752 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3753 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3754 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3755 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3756 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3757 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3758 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3759 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3760 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3761 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3762 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3763 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3764 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3765 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3766 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3767 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3768 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3769 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3770 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3771 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3772 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3773 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3774 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3775 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3776 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3777 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3778 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3779 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3780 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3781 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3782 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3783 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3784 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3785 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3786 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3787 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3788 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3789 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3790 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3791 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3792 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3793 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3794 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3795 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3796 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3797 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3798 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3799 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3800 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3801 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3802 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3803 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3804 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3805 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3806 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3807 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3808 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3809 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3810 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3811 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3812 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3813 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3814 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3815 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3816 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3817 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3818 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3819 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3820 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3821 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3822 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3823 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3824 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3825 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3826 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3827 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3828 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3829 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3830 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3831 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3832 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3833 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3834 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3835 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3836 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3837 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3838 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3839 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3840 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3841 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3842 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3843 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3844 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3845 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3846 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3847 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3848 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3849 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3850 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3851 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3852 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3853 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3854 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3855 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3856 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3857 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3858 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3859 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3860 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3861 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3862 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3863 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3864 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3865 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3866 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3867 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3868 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3869 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3870 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3871 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3872 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3873 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3874 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3875 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3876 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3877 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3878 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3879 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3880 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3881 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3882 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3883 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3884 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3885 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3886 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3887 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3888 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3889 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3890 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3891 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3892 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3893 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3894 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3895 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3896 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3897 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3898 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3899 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3900 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3901 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3902 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3903 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3904 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3905 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3906 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3907 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3908 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3909 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3910 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3911 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3912 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3913 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3914 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3915 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3916 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3917 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3918 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3919 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3920 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3921 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3922 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3923 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3924 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3925 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3926 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3927 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3928 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3929 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3930 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3931 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3932 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3933 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3934 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3935 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3936 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3937 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3938 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3939 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3940 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3941 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3942 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3943 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3944 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3945 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3946 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3947 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3948 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3949 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3950 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3951 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3952 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3953 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3954 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3955 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3956 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3957 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3958 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3959 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3960 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3961 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3962 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3963 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3964 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3965 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3966 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3967 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3968 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3969 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3970 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3971 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3972 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3973 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3974 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3975 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3976 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3977 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3978 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3979 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3980 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3981 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3982 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3983 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3984 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3985 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3986 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3987 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3988 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3989 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3990 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3991 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3992 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3993 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3994 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3995 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3996 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3997 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3998 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+3999 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4000 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4001 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4002 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4003 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4004 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4005 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4006 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4007 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4008 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4009 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4010 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4011 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4012 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4013 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4014 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4015 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4016 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4017 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4018 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4019 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4020 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4021 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4022 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4023 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4024 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4025 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4026 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4027 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4028 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4029 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4030 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4031 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4032 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4033 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4034 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4035 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4036 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4037 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4038 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4039 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4040 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4041 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4042 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4043 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4044 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4045 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4046 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4047 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4048 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4049 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4050 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4051 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4052 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4053 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4054 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4055 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4056 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4057 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4058 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4059 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4060 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4061 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4062 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4063 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4064 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [269.5888 386.2943 284.8962 401.6017]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M5','Description = Znacky pro spravne umisteni PCB do osazovaciho automatu','PCB Decal = FIDU','Part Type = FIDU');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4065 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.5488 379.0943 288.8563 394.4017]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF2','Description = fidu znacka','PCB Decal = FIDU_PASTE','Part Type = FIDU_PASTE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4066 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [210.5705 431.6040 220.0745 447.0120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C1','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4067 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.9785 419.7240 290.3466 425.7720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C10','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4068 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.2185 411.4440 257.5865 417.4920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C11','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4069 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.0985 411.8040 229.1465 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C12','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4070 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.8585 411.8040 234.9065 422.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C13','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4071 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 397.0440 225.5466 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C14','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4072 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [215.1785 391.2840 225.5466 397.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C15','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4073 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [350.1785 413.6040 360.5465 419.6520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C16','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4074 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [204.3785 435.5640 210.4265 445.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C2','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4075 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.4985 358.5960 360.9066 368.1000]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C3','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = ELYTB','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4076 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.8585 368.9640 351.9066 379.3320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C4','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4077 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [308.7785 383.3640 314.8265 393.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C5','Description = ruzne druhy elektrolytickych kondenzatoru','PCB Decal = C0805','Part Type = C-ELYT');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4078 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [341.2505 380.1240 351.6185 386.1720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C6','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4079 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4986 405.6840 256.8665 411.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C7','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4080 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [247.5786 455.7240 253.6265 466.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C8','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4081 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.2585 450.6840 285.3065 461.0520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = C9','Description = ruzne druhy kondenzatoru','PCB Decal = C0805','Part Type = C');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4082 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [320.5146 350.2440 340.5305 359.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D1','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4083 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.4105 394.0200 249.0905 400.3560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D2','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4084 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [227.1305 384.3000 240.8105 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D3','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4085 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [351.9785 369.5400 361.6266 389.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D4','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4086 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [342.4745 347.7240 362.4905 357.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D5','Description = ruzne druhy diod','PCB Decal = MELF','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4087 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [238.7945 330.2374 250.9354 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D6','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4088 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [217.5546 330.2374 229.6954 342.4586]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D7','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4089 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [370.5545 405.5400 376.8906 419.2200]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D9','Description = ruzne druhy diod','PCB Decal = SOD87','Part Type = D');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4090 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 332.4600 358.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J1','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4091 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 357.6600 204.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J10','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4092 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [259.3145 350.4600 267.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J11','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4093 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 350.4600 259.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J12','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4094 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [221.5145 476.4600 229.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J13','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4095 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [244.9145 350.4600 252.6905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J14','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4096 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 381.0600 330.0905 388.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J15','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4097 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 350.4600 245.4906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J16','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4098 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [223.3145 350.4600 231.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J18','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4099 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 357.6600 376.8906 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J2','Description = dvourady hrebinek se 6 piny','PCB Decal = JUMP2X3/B','Part Type = JUMP2X3');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4100 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 350.4600 223.8905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J20','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4101 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [293.5146 476.4600 301.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J21','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4102 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [300.7145 476.4600 308.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J22','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4103 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [307.9146 476.4600 315.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J23','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4104 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [237.7145 343.2600 252.6905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J24','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4105 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [216.1145 343.2600 231.0905 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J25','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4106 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 388.2600 330.0905 396.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J26','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4107 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 476.4600 322.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J27','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4108 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [214.3145 476.4600 222.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J28','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4109 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [322.3146 476.4600 330.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J29','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4110 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [240.5945 385.3800 255.5705 393.1560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J3','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4111 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.5146 476.4600 337.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J31','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4112 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 408.0600 204.0905 415.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J33','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4113 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 400.8600 204.0905 408.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J34','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4114 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 415.2600 204.0905 423.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J35','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4115 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 422.4600 204.0905 430.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J36','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4116 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [230.5145 350.4600 238.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J37','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4117 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 429.6600 204.0905 437.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J38','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4118 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [252.1145 332.4600 259.8906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J39','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4119 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 444.0600 204.0905 451.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J4','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4120 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [257.5145 476.4600 265.2905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J40','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4121 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 451.2600 204.0905 459.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J41','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4122 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [264.7145 476.4600 272.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J42','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4123 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 458.4600 204.0905 466.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J43','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4124 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 476.4600 344.4905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J44','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4125 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 465.6600 204.0905 473.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J45','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4126 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 453.0600 330.0905 460.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J46','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4127 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [207.1145 476.4600 214.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J47','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4128 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 445.8600 330.0905 453.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J48','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4129 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [228.7145 476.4600 236.4906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J49','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4130 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [271.9146 476.4600 279.6906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J5','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4131 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 438.6600 330.0905 446.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J50','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4132 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [235.9145 476.4600 243.6905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J52','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4133 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [295.3146 350.4600 303.0905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J53','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4134 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1145 476.4600 250.8905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J54','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4135 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.1145 350.4600 295.8906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J55','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4136 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [250.3145 476.4600 258.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J56','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4137 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [280.9146 350.4600 288.6906 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J57','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4138 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 431.4600 330.0905 439.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J58','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4139 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 364.8600 204.0905 372.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J59','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4140 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [279.1146 476.4600 286.8906 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J6','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4141 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 424.2600 330.0905 432.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J60','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4142 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 417.0600 330.0905 424.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J61','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4143 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 409.8600 330.0905 417.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J62','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4144 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 402.6600 330.0905 410.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J63','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4145 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [315.1145 395.4600 330.0905 403.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J64','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4146 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [361.9146 382.8600 376.8906 390.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J65','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4147 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7145 350.4600 317.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J66','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4148 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [302.5146 350.4600 310.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J67','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4149 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [273.7145 350.4600 281.4905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J68','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4150 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [336.7145 389.2680 383.3705 434.6280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J69','Description = USB konektor typu B','PCB Decal = USB_B_01','Part Type = USB_B');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4151 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 436.8600 204.0905 444.6360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J7','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4152 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [286.3145 476.4600 294.0905 491.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J8','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4153 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [266.5145 350.4600 274.2905 365.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J9','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4154 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [363.2825 441.7200 378.4026 470.2680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = JF1','PCB Decal = MICROMATCH6','Part Type = MICROMATCH6');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4155 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [206.5385 446.5800 219.7865 456.5160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L1','Description = tlumivka SMD velikost 1210','PCB Decal = L1210','Part Type = L1210');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4156 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.9945 390.2040 368.6105 400.5720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = L2','Description = rezistor SMD velikost 0805','PCB Decal = R0805','Part Type = R0805');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4157 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 331.2315 205.3191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M1','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4158 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 475.2315 378.1191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M2','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4159 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [187.8860 475.2315 205.3191 492.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M3','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4160 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [360.6860 331.2315 378.1191 348.6646]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = M4','Description = Ruzne druhy kulatych plosek vcetne otvoru','PCB Decal = HOLE_M3','Part Type = PAD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4161 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [243.1865 400.2120 253.5546 405.8280]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R1','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4162 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [283.5786 414.1800 293.9466 419.7960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R10','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4163 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [310.4345 363.5640 316.0505 373.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R11','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4164 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 409.1400 337.8665 414.7560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R12','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4165 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [327.4985 401.9400 337.8665 407.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R13','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4166 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [330.5945 460.0440 336.2105 470.4120]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R2','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4167 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [233.0345 338.0040 238.6505 348.3720]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R3','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4168 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [211.7945 338.3640 217.4105 348.7320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R4','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4169 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [274.2185 465.3000 284.5865 470.9160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R5','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4170 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [355.2185 469.9800 365.5865 475.5960]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R6','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4171 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [265.6505 340.5240 271.2665 350.8920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R7','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4172 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [260.1065 340.6680 265.7225 351.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R8','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4173 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [288.6185 389.7000 298.9865 395.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R9','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4174 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [309.7654 330.1144 333.3814 348.1144]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW1','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4175 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [246.4838 418.6293 284.2413 456.3867]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U2','Description = TQFP64 s rozteci 0.5mm','PCB Decal = TQFP64_05','Part Type = TQFP64_05');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4176 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [225.7265 392.9040 257.1186 402.1920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X1','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL010/LG','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4177 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [213.1287 412.4981 244.8764 427.2379]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = X2','Description = Ruzne druhy krystalu snozickami 1=A 2=B 3=G1 4=G2','PCB Decal = XTAL050','Part Type = XTAL');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4178 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 372.0600 204.0905 379.8360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J70','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4179 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 379.2600 204.0905 387.0360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J71','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4180 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 386.4600 204.0905 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J72','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4181 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [189.1145 393.6600 204.0905 401.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J73','Description = hrebinek se 2 piny','PCB Decal = JUMP2X1','Part Type = JUMP2X1');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4182 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [321.8826 360.5400 344.9945 380.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = U1','Description = vykonovy tranzistor SMD','PCB Decal = SOT223','Part Type = SOT223');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4183 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [362.6346 431.1000 377.6105 438.8760]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J74','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4184 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [343.9146 462.7800 358.8906 470.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J75','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4185 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [335.2745 379.2600 343.0505 394.2360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J76','Description = hrebinek se 2 piny','PCB Decal = JUMP2','Part Type = JUMP2');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4186 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 453.5640 352.0505 463.9320]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R14','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4187 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [346.4345 443.4840 352.0505 453.8520]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R15','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4188 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [338.1545 392.7240 343.7705 403.0920]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = R16','Description = rezistory ruznych typu','PCB Decal = R0805','Part Type = R');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4189 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [329.8025 445.0680 340.6025 455.8680]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = Q1','Description = Tanzistory FET s poradim nozicek 1=G 2=S 3=D','PCB Decal = SOT23','Part Type = T-FET-GSD');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4190 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [345.6697 477.8374 357.8105 490.0587]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = D8','Description = ruzne druhy LED','PCB Decal = LED3','Part Type = LED');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4191 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [340.2425 437.9400 358.2425 461.5560]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = SW2','Description = ctvercove spinaci tlacitko , vyvody 1-4 a 2-3 propojeny','PCB Decal = PUSH050X050','Part Type = PB4PIN');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4192 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [349.4586 401.2200 368.4666 413.3160]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = F1','Description = pojistka SMD velikost 1812','PCB Decal = F1812','Part Type = FUSE');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4193 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Rect [270.1146 332.4600 306.6906 347.4360]
+/A <<
+/Type /Action /S /JavaScript /JS (app.popUpMenu('Ref-Des = J51','Description = dvourady hrebinek 2x5 pinu','PCB Decal = JUMP2X5','Part Type = JUMP2X5');)
+>>
+/Border [0 0 0 [4 2]]
+/C [0.0000 0.0000 0.0000]
+/F 64
+>>
+endobj
+4194 0 obj
+<<
+/Parent 2 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (Top)
+/Next 4894 0 R
+/First 4195 0 R
+/Last 4473 0 R
+/Count -2
+>>
+endobj
+4195 0 obj
+<<
+/Parent 4194 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (Components)
+/Next 4473 0 R
+/First 4196 0 R
+/Last 4470 0 R
+/Count -84
+>>
+endobj
+4196 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D6)
+/Next 4199 0 R
+/First 4197 0 R
+/Last 4198 0 R
+/Count -2
+>>
+endobj
+4197 0 obj
+<<
+/Parent 4196 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D6xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (A)
+/Next 4198 0 R
+>>
+endobj
+4198 0 obj
+<<
+/Parent 4196 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D6xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C)
+/Prev 4197 0 R
+>>
+endobj
+4199 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D7'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D7)
+/Next 4202 0 R
+/Prev 4196 0 R
+/First 4200 0 R
+/Last 4201 0 R
+/Count -2
+>>
+endobj
+4200 0 obj
+<<
+/Parent 4199 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D7xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (A)
+/Next 4201 0 R
+>>
+endobj
+4201 0 obj
+<<
+/Parent 4199 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D7xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C)
+/Prev 4200 0 R
+>>
+endobj
+4202 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D8'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D8)
+/Next 4205 0 R
+/Prev 4199 0 R
+/First 4203 0 R
+/Last 4204 0 R
+/Count -2
+>>
+endobj
+4203 0 obj
+<<
+/Parent 4202 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D8xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (A)
+/Next 4204 0 R
+>>
+endobj
+4204 0 obj
+<<
+/Parent 4202 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D8xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C)
+/Prev 4203 0 R
+>>
+endobj
+4205 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J1)
+/Next 4212 0 R
+/Prev 4202 0 R
+/First 4206 0 R
+/Last 4211 0 R
+/Count -6
+>>
+endobj
+4206 0 obj
+<<
+/Parent 4205 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4207 0 R
+>>
+endobj
+4207 0 obj
+<<
+/Parent 4205 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Next 4208 0 R
+/Prev 4206 0 R
+>>
+endobj
+4208 0 obj
+<<
+/Parent 4205 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (3)
+/Next 4209 0 R
+/Prev 4207 0 R
+>>
+endobj
+4209 0 obj
+<<
+/Parent 4205 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (4)
+/Next 4210 0 R
+/Prev 4208 0 R
+>>
+endobj
+4210 0 obj
+<<
+/Parent 4205 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (5)
+/Next 4211 0 R
+/Prev 4209 0 R
+>>
+endobj
+4211 0 obj
+<<
+/Parent 4205 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (6)
+/Prev 4210 0 R
+>>
+endobj
+4212 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J2)
+/Next 4219 0 R
+/Prev 4205 0 R
+/First 4213 0 R
+/Last 4218 0 R
+/Count -6
+>>
+endobj
+4213 0 obj
+<<
+/Parent 4212 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4214 0 R
+>>
+endobj
+4214 0 obj
+<<
+/Parent 4212 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Next 4215 0 R
+/Prev 4213 0 R
+>>
+endobj
+4215 0 obj
+<<
+/Parent 4212 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (3)
+/Next 4216 0 R
+/Prev 4214 0 R
+>>
+endobj
+4216 0 obj
+<<
+/Parent 4212 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (4)
+/Next 4217 0 R
+/Prev 4215 0 R
+>>
+endobj
+4217 0 obj
+<<
+/Parent 4212 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (5)
+/Next 4218 0 R
+/Prev 4216 0 R
+>>
+endobj
+4218 0 obj
+<<
+/Parent 4212 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (6)
+/Prev 4217 0 R
+>>
+endobj
+4219 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J3)
+/Next 4222 0 R
+/Prev 4212 0 R
+/First 4220 0 R
+/Last 4221 0 R
+/Count -2
+>>
+endobj
+4220 0 obj
+<<
+/Parent 4219 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J3x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4221 0 R
+>>
+endobj
+4221 0 obj
+<<
+/Parent 4219 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J3x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4220 0 R
+>>
+endobj
+4222 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J4)
+/Next 4225 0 R
+/Prev 4219 0 R
+/First 4223 0 R
+/Last 4224 0 R
+/Count -2
+>>
+endobj
+4223 0 obj
+<<
+/Parent 4222 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J4x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4224 0 R
+>>
+endobj
+4224 0 obj
+<<
+/Parent 4222 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J4x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4223 0 R
+>>
+endobj
+4225 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J5)
+/Next 4228 0 R
+/Prev 4222 0 R
+/First 4226 0 R
+/Last 4227 0 R
+/Count -2
+>>
+endobj
+4226 0 obj
+<<
+/Parent 4225 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J5x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4227 0 R
+>>
+endobj
+4227 0 obj
+<<
+/Parent 4225 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J5x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4226 0 R
+>>
+endobj
+4228 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J6)
+/Next 4231 0 R
+/Prev 4225 0 R
+/First 4229 0 R
+/Last 4230 0 R
+/Count -2
+>>
+endobj
+4229 0 obj
+<<
+/Parent 4228 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J6x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4230 0 R
+>>
+endobj
+4230 0 obj
+<<
+/Parent 4228 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J6x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4229 0 R
+>>
+endobj
+4231 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J7'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J7)
+/Next 4234 0 R
+/Prev 4228 0 R
+/First 4232 0 R
+/Last 4233 0 R
+/Count -2
+>>
+endobj
+4232 0 obj
+<<
+/Parent 4231 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J7x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4233 0 R
+>>
+endobj
+4233 0 obj
+<<
+/Parent 4231 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J7x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4232 0 R
+>>
+endobj
+4234 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J8'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J8)
+/Next 4237 0 R
+/Prev 4231 0 R
+/First 4235 0 R
+/Last 4236 0 R
+/Count -2
+>>
+endobj
+4235 0 obj
+<<
+/Parent 4234 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J8x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4236 0 R
+>>
+endobj
+4236 0 obj
+<<
+/Parent 4234 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J8x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4235 0 R
+>>
+endobj
+4237 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J9'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J9)
+/Next 4240 0 R
+/Prev 4234 0 R
+/First 4238 0 R
+/Last 4239 0 R
+/Count -2
+>>
+endobj
+4238 0 obj
+<<
+/Parent 4237 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J9x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4239 0 R
+>>
+endobj
+4239 0 obj
+<<
+/Parent 4237 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J9x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4238 0 R
+>>
+endobj
+4240 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J10'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J10)
+/Next 4243 0 R
+/Prev 4237 0 R
+/First 4241 0 R
+/Last 4242 0 R
+/Count -2
+>>
+endobj
+4241 0 obj
+<<
+/Parent 4240 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J10x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4242 0 R
+>>
+endobj
+4242 0 obj
+<<
+/Parent 4240 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J10x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4241 0 R
+>>
+endobj
+4243 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J11'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J11)
+/Next 4246 0 R
+/Prev 4240 0 R
+/First 4244 0 R
+/Last 4245 0 R
+/Count -2
+>>
+endobj
+4244 0 obj
+<<
+/Parent 4243 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J11x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4245 0 R
+>>
+endobj
+4245 0 obj
+<<
+/Parent 4243 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J11x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4244 0 R
+>>
+endobj
+4246 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J12'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J12)
+/Next 4249 0 R
+/Prev 4243 0 R
+/First 4247 0 R
+/Last 4248 0 R
+/Count -2
+>>
+endobj
+4247 0 obj
+<<
+/Parent 4246 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J12x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4248 0 R
+>>
+endobj
+4248 0 obj
+<<
+/Parent 4246 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J12x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4247 0 R
+>>
+endobj
+4249 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J13'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J13)
+/Next 4252 0 R
+/Prev 4246 0 R
+/First 4250 0 R
+/Last 4251 0 R
+/Count -2
+>>
+endobj
+4250 0 obj
+<<
+/Parent 4249 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J13x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4251 0 R
+>>
+endobj
+4251 0 obj
+<<
+/Parent 4249 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J13x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4250 0 R
+>>
+endobj
+4252 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J14'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J14)
+/Next 4255 0 R
+/Prev 4249 0 R
+/First 4253 0 R
+/Last 4254 0 R
+/Count -2
+>>
+endobj
+4253 0 obj
+<<
+/Parent 4252 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J14x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4254 0 R
+>>
+endobj
+4254 0 obj
+<<
+/Parent 4252 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J14x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4253 0 R
+>>
+endobj
+4255 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J15'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J15)
+/Next 4258 0 R
+/Prev 4252 0 R
+/First 4256 0 R
+/Last 4257 0 R
+/Count -2
+>>
+endobj
+4256 0 obj
+<<
+/Parent 4255 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J15x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4257 0 R
+>>
+endobj
+4257 0 obj
+<<
+/Parent 4255 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J15x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4256 0 R
+>>
+endobj
+4258 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J16'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J16)
+/Next 4261 0 R
+/Prev 4255 0 R
+/First 4259 0 R
+/Last 4260 0 R
+/Count -2
+>>
+endobj
+4259 0 obj
+<<
+/Parent 4258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J16x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4260 0 R
+>>
+endobj
+4260 0 obj
+<<
+/Parent 4258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J16x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4259 0 R
+>>
+endobj
+4261 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J18'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J18)
+/Next 4264 0 R
+/Prev 4258 0 R
+/First 4262 0 R
+/Last 4263 0 R
+/Count -2
+>>
+endobj
+4262 0 obj
+<<
+/Parent 4261 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J18x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4263 0 R
+>>
+endobj
+4263 0 obj
+<<
+/Parent 4261 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J18x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4262 0 R
+>>
+endobj
+4264 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J20'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J20)
+/Next 4267 0 R
+/Prev 4261 0 R
+/First 4265 0 R
+/Last 4266 0 R
+/Count -2
+>>
+endobj
+4265 0 obj
+<<
+/Parent 4264 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J20x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4266 0 R
+>>
+endobj
+4266 0 obj
+<<
+/Parent 4264 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J20x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4265 0 R
+>>
+endobj
+4267 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J21'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J21)
+/Next 4270 0 R
+/Prev 4264 0 R
+/First 4268 0 R
+/Last 4269 0 R
+/Count -2
+>>
+endobj
+4268 0 obj
+<<
+/Parent 4267 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J21x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4269 0 R
+>>
+endobj
+4269 0 obj
+<<
+/Parent 4267 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J21x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4268 0 R
+>>
+endobj
+4270 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J22'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J22)
+/Next 4273 0 R
+/Prev 4267 0 R
+/First 4271 0 R
+/Last 4272 0 R
+/Count -2
+>>
+endobj
+4271 0 obj
+<<
+/Parent 4270 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J22x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4272 0 R
+>>
+endobj
+4272 0 obj
+<<
+/Parent 4270 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J22x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4271 0 R
+>>
+endobj
+4273 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J23'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J23)
+/Next 4276 0 R
+/Prev 4270 0 R
+/First 4274 0 R
+/Last 4275 0 R
+/Count -2
+>>
+endobj
+4274 0 obj
+<<
+/Parent 4273 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J23x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4275 0 R
+>>
+endobj
+4275 0 obj
+<<
+/Parent 4273 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J23x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4274 0 R
+>>
+endobj
+4276 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J24'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J24)
+/Next 4279 0 R
+/Prev 4273 0 R
+/First 4277 0 R
+/Last 4278 0 R
+/Count -2
+>>
+endobj
+4277 0 obj
+<<
+/Parent 4276 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J24x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4278 0 R
+>>
+endobj
+4278 0 obj
+<<
+/Parent 4276 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J24x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4277 0 R
+>>
+endobj
+4279 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J25'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J25)
+/Next 4282 0 R
+/Prev 4276 0 R
+/First 4280 0 R
+/Last 4281 0 R
+/Count -2
+>>
+endobj
+4280 0 obj
+<<
+/Parent 4279 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J25x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4281 0 R
+>>
+endobj
+4281 0 obj
+<<
+/Parent 4279 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J25x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4280 0 R
+>>
+endobj
+4282 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J26'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J26)
+/Next 4285 0 R
+/Prev 4279 0 R
+/First 4283 0 R
+/Last 4284 0 R
+/Count -2
+>>
+endobj
+4283 0 obj
+<<
+/Parent 4282 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J26x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4284 0 R
+>>
+endobj
+4284 0 obj
+<<
+/Parent 4282 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J26x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4283 0 R
+>>
+endobj
+4285 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J27'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J27)
+/Next 4288 0 R
+/Prev 4282 0 R
+/First 4286 0 R
+/Last 4287 0 R
+/Count -2
+>>
+endobj
+4286 0 obj
+<<
+/Parent 4285 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J27x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4287 0 R
+>>
+endobj
+4287 0 obj
+<<
+/Parent 4285 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J27x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4286 0 R
+>>
+endobj
+4288 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J28'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J28)
+/Next 4291 0 R
+/Prev 4285 0 R
+/First 4289 0 R
+/Last 4290 0 R
+/Count -2
+>>
+endobj
+4289 0 obj
+<<
+/Parent 4288 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J28x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4290 0 R
+>>
+endobj
+4290 0 obj
+<<
+/Parent 4288 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J28x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4289 0 R
+>>
+endobj
+4291 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J29'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J29)
+/Next 4294 0 R
+/Prev 4288 0 R
+/First 4292 0 R
+/Last 4293 0 R
+/Count -2
+>>
+endobj
+4292 0 obj
+<<
+/Parent 4291 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J29x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4293 0 R
+>>
+endobj
+4293 0 obj
+<<
+/Parent 4291 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J29x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4292 0 R
+>>
+endobj
+4294 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J31'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J31)
+/Next 4297 0 R
+/Prev 4291 0 R
+/First 4295 0 R
+/Last 4296 0 R
+/Count -2
+>>
+endobj
+4295 0 obj
+<<
+/Parent 4294 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J31x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4296 0 R
+>>
+endobj
+4296 0 obj
+<<
+/Parent 4294 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J31x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4295 0 R
+>>
+endobj
+4297 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J33'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J33)
+/Next 4300 0 R
+/Prev 4294 0 R
+/First 4298 0 R
+/Last 4299 0 R
+/Count -2
+>>
+endobj
+4298 0 obj
+<<
+/Parent 4297 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J33x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4299 0 R
+>>
+endobj
+4299 0 obj
+<<
+/Parent 4297 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J33x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4298 0 R
+>>
+endobj
+4300 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J34'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J34)
+/Next 4303 0 R
+/Prev 4297 0 R
+/First 4301 0 R
+/Last 4302 0 R
+/Count -2
+>>
+endobj
+4301 0 obj
+<<
+/Parent 4300 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J34x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4302 0 R
+>>
+endobj
+4302 0 obj
+<<
+/Parent 4300 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J34x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4301 0 R
+>>
+endobj
+4303 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J35'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J35)
+/Next 4306 0 R
+/Prev 4300 0 R
+/First 4304 0 R
+/Last 4305 0 R
+/Count -2
+>>
+endobj
+4304 0 obj
+<<
+/Parent 4303 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J35x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4305 0 R
+>>
+endobj
+4305 0 obj
+<<
+/Parent 4303 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J35x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4304 0 R
+>>
+endobj
+4306 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J36'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J36)
+/Next 4309 0 R
+/Prev 4303 0 R
+/First 4307 0 R
+/Last 4308 0 R
+/Count -2
+>>
+endobj
+4307 0 obj
+<<
+/Parent 4306 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J36x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4308 0 R
+>>
+endobj
+4308 0 obj
+<<
+/Parent 4306 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J36x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4307 0 R
+>>
+endobj
+4309 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J37'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J37)
+/Next 4312 0 R
+/Prev 4306 0 R
+/First 4310 0 R
+/Last 4311 0 R
+/Count -2
+>>
+endobj
+4310 0 obj
+<<
+/Parent 4309 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J37x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4311 0 R
+>>
+endobj
+4311 0 obj
+<<
+/Parent 4309 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J37x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4310 0 R
+>>
+endobj
+4312 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J38'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J38)
+/Next 4315 0 R
+/Prev 4309 0 R
+/First 4313 0 R
+/Last 4314 0 R
+/Count -2
+>>
+endobj
+4313 0 obj
+<<
+/Parent 4312 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J38x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4314 0 R
+>>
+endobj
+4314 0 obj
+<<
+/Parent 4312 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J38x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4313 0 R
+>>
+endobj
+4315 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J39'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J39)
+/Next 4318 0 R
+/Prev 4312 0 R
+/First 4316 0 R
+/Last 4317 0 R
+/Count -2
+>>
+endobj
+4316 0 obj
+<<
+/Parent 4315 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J39x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4317 0 R
+>>
+endobj
+4317 0 obj
+<<
+/Parent 4315 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J39x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4316 0 R
+>>
+endobj
+4318 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J40'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J40)
+/Next 4321 0 R
+/Prev 4315 0 R
+/First 4319 0 R
+/Last 4320 0 R
+/Count -2
+>>
+endobj
+4319 0 obj
+<<
+/Parent 4318 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J40x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4320 0 R
+>>
+endobj
+4320 0 obj
+<<
+/Parent 4318 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J40x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4319 0 R
+>>
+endobj
+4321 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J41'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J41)
+/Next 4324 0 R
+/Prev 4318 0 R
+/First 4322 0 R
+/Last 4323 0 R
+/Count -2
+>>
+endobj
+4322 0 obj
+<<
+/Parent 4321 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J41x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4323 0 R
+>>
+endobj
+4323 0 obj
+<<
+/Parent 4321 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J41x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4322 0 R
+>>
+endobj
+4324 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J42'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J42)
+/Next 4327 0 R
+/Prev 4321 0 R
+/First 4325 0 R
+/Last 4326 0 R
+/Count -2
+>>
+endobj
+4325 0 obj
+<<
+/Parent 4324 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J42x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4326 0 R
+>>
+endobj
+4326 0 obj
+<<
+/Parent 4324 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J42x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4325 0 R
+>>
+endobj
+4327 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J43'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J43)
+/Next 4330 0 R
+/Prev 4324 0 R
+/First 4328 0 R
+/Last 4329 0 R
+/Count -2
+>>
+endobj
+4328 0 obj
+<<
+/Parent 4327 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J43x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4329 0 R
+>>
+endobj
+4329 0 obj
+<<
+/Parent 4327 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J43x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4328 0 R
+>>
+endobj
+4330 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J44'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J44)
+/Next 4333 0 R
+/Prev 4327 0 R
+/First 4331 0 R
+/Last 4332 0 R
+/Count -2
+>>
+endobj
+4331 0 obj
+<<
+/Parent 4330 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J44x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4332 0 R
+>>
+endobj
+4332 0 obj
+<<
+/Parent 4330 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J44x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4331 0 R
+>>
+endobj
+4333 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J45'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J45)
+/Next 4336 0 R
+/Prev 4330 0 R
+/First 4334 0 R
+/Last 4335 0 R
+/Count -2
+>>
+endobj
+4334 0 obj
+<<
+/Parent 4333 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J45x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4335 0 R
+>>
+endobj
+4335 0 obj
+<<
+/Parent 4333 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J45x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4334 0 R
+>>
+endobj
+4336 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J46'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J46)
+/Next 4339 0 R
+/Prev 4333 0 R
+/First 4337 0 R
+/Last 4338 0 R
+/Count -2
+>>
+endobj
+4337 0 obj
+<<
+/Parent 4336 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J46x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4338 0 R
+>>
+endobj
+4338 0 obj
+<<
+/Parent 4336 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J46x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4337 0 R
+>>
+endobj
+4339 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J47'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J47)
+/Next 4342 0 R
+/Prev 4336 0 R
+/First 4340 0 R
+/Last 4341 0 R
+/Count -2
+>>
+endobj
+4340 0 obj
+<<
+/Parent 4339 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J47x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4341 0 R
+>>
+endobj
+4341 0 obj
+<<
+/Parent 4339 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J47x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4340 0 R
+>>
+endobj
+4342 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J48'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J48)
+/Next 4345 0 R
+/Prev 4339 0 R
+/First 4343 0 R
+/Last 4344 0 R
+/Count -2
+>>
+endobj
+4343 0 obj
+<<
+/Parent 4342 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J48x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4344 0 R
+>>
+endobj
+4344 0 obj
+<<
+/Parent 4342 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J48x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4343 0 R
+>>
+endobj
+4345 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J49'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J49)
+/Next 4348 0 R
+/Prev 4342 0 R
+/First 4346 0 R
+/Last 4347 0 R
+/Count -2
+>>
+endobj
+4346 0 obj
+<<
+/Parent 4345 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J49x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4347 0 R
+>>
+endobj
+4347 0 obj
+<<
+/Parent 4345 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J49x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4346 0 R
+>>
+endobj
+4348 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J50'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J50)
+/Next 4351 0 R
+/Prev 4345 0 R
+/First 4349 0 R
+/Last 4350 0 R
+/Count -2
+>>
+endobj
+4349 0 obj
+<<
+/Parent 4348 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J50x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4350 0 R
+>>
+endobj
+4350 0 obj
+<<
+/Parent 4348 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J50x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4349 0 R
+>>
+endobj
+4351 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51)
+/Next 4362 0 R
+/Prev 4348 0 R
+/First 4352 0 R
+/Last 4361 0 R
+/Count -10
+>>
+endobj
+4352 0 obj
+<<
+/Parent 4351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4353 0 R
+>>
+endobj
+4353 0 obj
+<<
+/Parent 4351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Next 4354 0 R
+/Prev 4352 0 R
+>>
+endobj
+4354 0 obj
+<<
+/Parent 4351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (3)
+/Next 4355 0 R
+/Prev 4353 0 R
+>>
+endobj
+4355 0 obj
+<<
+/Parent 4351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (4)
+/Next 4356 0 R
+/Prev 4354 0 R
+>>
+endobj
+4356 0 obj
+<<
+/Parent 4351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (5)
+/Next 4357 0 R
+/Prev 4355 0 R
+>>
+endobj
+4357 0 obj
+<<
+/Parent 4351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (6)
+/Next 4358 0 R
+/Prev 4356 0 R
+>>
+endobj
+4358 0 obj
+<<
+/Parent 4351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x7'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (7)
+/Next 4359 0 R
+/Prev 4357 0 R
+>>
+endobj
+4359 0 obj
+<<
+/Parent 4351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x8'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (8)
+/Next 4360 0 R
+/Prev 4358 0 R
+>>
+endobj
+4360 0 obj
+<<
+/Parent 4351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x9'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (9)
+/Next 4361 0 R
+/Prev 4359 0 R
+>>
+endobj
+4361 0 obj
+<<
+/Parent 4351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x10'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (10)
+/Prev 4360 0 R
+>>
+endobj
+4362 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J52'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J52)
+/Next 4365 0 R
+/Prev 4351 0 R
+/First 4363 0 R
+/Last 4364 0 R
+/Count -2
+>>
+endobj
+4363 0 obj
+<<
+/Parent 4362 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J52x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4364 0 R
+>>
+endobj
+4364 0 obj
+<<
+/Parent 4362 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J52x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4363 0 R
+>>
+endobj
+4365 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J53'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J53)
+/Next 4368 0 R
+/Prev 4362 0 R
+/First 4366 0 R
+/Last 4367 0 R
+/Count -2
+>>
+endobj
+4366 0 obj
+<<
+/Parent 4365 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J53x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4367 0 R
+>>
+endobj
+4367 0 obj
+<<
+/Parent 4365 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J53x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4366 0 R
+>>
+endobj
+4368 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J54'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J54)
+/Next 4371 0 R
+/Prev 4365 0 R
+/First 4369 0 R
+/Last 4370 0 R
+/Count -2
+>>
+endobj
+4369 0 obj
+<<
+/Parent 4368 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J54x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4370 0 R
+>>
+endobj
+4370 0 obj
+<<
+/Parent 4368 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J54x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4369 0 R
+>>
+endobj
+4371 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J55'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J55)
+/Next 4374 0 R
+/Prev 4368 0 R
+/First 4372 0 R
+/Last 4373 0 R
+/Count -2
+>>
+endobj
+4372 0 obj
+<<
+/Parent 4371 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J55x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4373 0 R
+>>
+endobj
+4373 0 obj
+<<
+/Parent 4371 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J55x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4372 0 R
+>>
+endobj
+4374 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J56'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J56)
+/Next 4377 0 R
+/Prev 4371 0 R
+/First 4375 0 R
+/Last 4376 0 R
+/Count -2
+>>
+endobj
+4375 0 obj
+<<
+/Parent 4374 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J56x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4376 0 R
+>>
+endobj
+4376 0 obj
+<<
+/Parent 4374 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J56x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4375 0 R
+>>
+endobj
+4377 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J57'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J57)
+/Next 4380 0 R
+/Prev 4374 0 R
+/First 4378 0 R
+/Last 4379 0 R
+/Count -2
+>>
+endobj
+4378 0 obj
+<<
+/Parent 4377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J57x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4379 0 R
+>>
+endobj
+4379 0 obj
+<<
+/Parent 4377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J57x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4378 0 R
+>>
+endobj
+4380 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J58'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J58)
+/Next 4383 0 R
+/Prev 4377 0 R
+/First 4381 0 R
+/Last 4382 0 R
+/Count -2
+>>
+endobj
+4381 0 obj
+<<
+/Parent 4380 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J58x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4382 0 R
+>>
+endobj
+4382 0 obj
+<<
+/Parent 4380 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J58x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4381 0 R
+>>
+endobj
+4383 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J59'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J59)
+/Next 4386 0 R
+/Prev 4380 0 R
+/First 4384 0 R
+/Last 4385 0 R
+/Count -2
+>>
+endobj
+4384 0 obj
+<<
+/Parent 4383 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J59x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4385 0 R
+>>
+endobj
+4385 0 obj
+<<
+/Parent 4383 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J59x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4384 0 R
+>>
+endobj
+4386 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J60'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J60)
+/Next 4389 0 R
+/Prev 4383 0 R
+/First 4387 0 R
+/Last 4388 0 R
+/Count -2
+>>
+endobj
+4387 0 obj
+<<
+/Parent 4386 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J60x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4388 0 R
+>>
+endobj
+4388 0 obj
+<<
+/Parent 4386 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J60x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4387 0 R
+>>
+endobj
+4389 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J61'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J61)
+/Next 4392 0 R
+/Prev 4386 0 R
+/First 4390 0 R
+/Last 4391 0 R
+/Count -2
+>>
+endobj
+4390 0 obj
+<<
+/Parent 4389 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J61x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4391 0 R
+>>
+endobj
+4391 0 obj
+<<
+/Parent 4389 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J61x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4390 0 R
+>>
+endobj
+4392 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J62'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J62)
+/Next 4395 0 R
+/Prev 4389 0 R
+/First 4393 0 R
+/Last 4394 0 R
+/Count -2
+>>
+endobj
+4393 0 obj
+<<
+/Parent 4392 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J62x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4394 0 R
+>>
+endobj
+4394 0 obj
+<<
+/Parent 4392 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J62x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4393 0 R
+>>
+endobj
+4395 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J63'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J63)
+/Next 4398 0 R
+/Prev 4392 0 R
+/First 4396 0 R
+/Last 4397 0 R
+/Count -2
+>>
+endobj
+4396 0 obj
+<<
+/Parent 4395 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J63x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4397 0 R
+>>
+endobj
+4397 0 obj
+<<
+/Parent 4395 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J63x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4396 0 R
+>>
+endobj
+4398 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J64'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J64)
+/Next 4401 0 R
+/Prev 4395 0 R
+/First 4399 0 R
+/Last 4400 0 R
+/Count -2
+>>
+endobj
+4399 0 obj
+<<
+/Parent 4398 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J64x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4400 0 R
+>>
+endobj
+4400 0 obj
+<<
+/Parent 4398 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J64x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4399 0 R
+>>
+endobj
+4401 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J65'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J65)
+/Next 4404 0 R
+/Prev 4398 0 R
+/First 4402 0 R
+/Last 4403 0 R
+/Count -2
+>>
+endobj
+4402 0 obj
+<<
+/Parent 4401 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J65x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4403 0 R
+>>
+endobj
+4403 0 obj
+<<
+/Parent 4401 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J65x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4402 0 R
+>>
+endobj
+4404 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J66'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J66)
+/Next 4407 0 R
+/Prev 4401 0 R
+/First 4405 0 R
+/Last 4406 0 R
+/Count -2
+>>
+endobj
+4405 0 obj
+<<
+/Parent 4404 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J66x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4406 0 R
+>>
+endobj
+4406 0 obj
+<<
+/Parent 4404 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J66x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4405 0 R
+>>
+endobj
+4407 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J67'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J67)
+/Next 4410 0 R
+/Prev 4404 0 R
+/First 4408 0 R
+/Last 4409 0 R
+/Count -2
+>>
+endobj
+4408 0 obj
+<<
+/Parent 4407 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J67x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4409 0 R
+>>
+endobj
+4409 0 obj
+<<
+/Parent 4407 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J67x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4408 0 R
+>>
+endobj
+4410 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J68'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J68)
+/Next 4413 0 R
+/Prev 4407 0 R
+/First 4411 0 R
+/Last 4412 0 R
+/Count -2
+>>
+endobj
+4411 0 obj
+<<
+/Parent 4410 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J68x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4412 0 R
+>>
+endobj
+4412 0 obj
+<<
+/Parent 4410 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J68x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4411 0 R
+>>
+endobj
+4413 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J69)
+/Next 4420 0 R
+/Prev 4410 0 R
+/First 4414 0 R
+/Last 4419 0 R
+/Count -6
+>>
+endobj
+4414 0 obj
+<<
+/Parent 4413 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4415 0 R
+>>
+endobj
+4415 0 obj
+<<
+/Parent 4413 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Next 4416 0 R
+/Prev 4414 0 R
+>>
+endobj
+4416 0 obj
+<<
+/Parent 4413 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (3)
+/Next 4417 0 R
+/Prev 4415 0 R
+>>
+endobj
+4417 0 obj
+<<
+/Parent 4413 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (4)
+/Next 4418 0 R
+/Prev 4416 0 R
+>>
+endobj
+4418 0 obj
+<<
+/Parent 4413 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (5)
+/Next 4419 0 R
+/Prev 4417 0 R
+>>
+endobj
+4419 0 obj
+<<
+/Parent 4413 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (6)
+/Prev 4418 0 R
+>>
+endobj
+4420 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J70'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J70)
+/Next 4423 0 R
+/Prev 4413 0 R
+/First 4421 0 R
+/Last 4422 0 R
+/Count -2
+>>
+endobj
+4421 0 obj
+<<
+/Parent 4420 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J70x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4422 0 R
+>>
+endobj
+4422 0 obj
+<<
+/Parent 4420 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J70x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4421 0 R
+>>
+endobj
+4423 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J71'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J71)
+/Next 4426 0 R
+/Prev 4420 0 R
+/First 4424 0 R
+/Last 4425 0 R
+/Count -2
+>>
+endobj
+4424 0 obj
+<<
+/Parent 4423 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J71x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4425 0 R
+>>
+endobj
+4425 0 obj
+<<
+/Parent 4423 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J71x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4424 0 R
+>>
+endobj
+4426 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J72'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J72)
+/Next 4429 0 R
+/Prev 4423 0 R
+/First 4427 0 R
+/Last 4428 0 R
+/Count -2
+>>
+endobj
+4427 0 obj
+<<
+/Parent 4426 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J72x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4428 0 R
+>>
+endobj
+4428 0 obj
+<<
+/Parent 4426 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J72x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4427 0 R
+>>
+endobj
+4429 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J73'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J73)
+/Next 4432 0 R
+/Prev 4426 0 R
+/First 4430 0 R
+/Last 4431 0 R
+/Count -2
+>>
+endobj
+4430 0 obj
+<<
+/Parent 4429 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J73x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4431 0 R
+>>
+endobj
+4431 0 obj
+<<
+/Parent 4429 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J73x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4430 0 R
+>>
+endobj
+4432 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J74'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J74)
+/Next 4435 0 R
+/Prev 4429 0 R
+/First 4433 0 R
+/Last 4434 0 R
+/Count -2
+>>
+endobj
+4433 0 obj
+<<
+/Parent 4432 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J74x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4434 0 R
+>>
+endobj
+4434 0 obj
+<<
+/Parent 4432 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J74x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4433 0 R
+>>
+endobj
+4435 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J75'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J75)
+/Next 4438 0 R
+/Prev 4432 0 R
+/First 4436 0 R
+/Last 4437 0 R
+/Count -2
+>>
+endobj
+4436 0 obj
+<<
+/Parent 4435 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J75x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4437 0 R
+>>
+endobj
+4437 0 obj
+<<
+/Parent 4435 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J75x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4436 0 R
+>>
+endobj
+4438 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J76'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J76)
+/Next 4441 0 R
+/Prev 4435 0 R
+/First 4439 0 R
+/Last 4440 0 R
+/Count -2
+>>
+endobj
+4439 0 obj
+<<
+/Parent 4438 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J76x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4440 0 R
+>>
+endobj
+4440 0 obj
+<<
+/Parent 4438 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J76x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Prev 4439 0 R
+>>
+endobj
+4441 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (JF1)
+/Next 4448 0 R
+/Prev 4438 0 R
+/First 4442 0 R
+/Last 4447 0 R
+/Count -6
+>>
+endobj
+4442 0 obj
+<<
+/Parent 4441 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4443 0 R
+>>
+endobj
+4443 0 obj
+<<
+/Parent 4441 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Next 4444 0 R
+/Prev 4442 0 R
+>>
+endobj
+4444 0 obj
+<<
+/Parent 4441 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (3)
+/Next 4445 0 R
+/Prev 4443 0 R
+>>
+endobj
+4445 0 obj
+<<
+/Parent 4441 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (4)
+/Next 4446 0 R
+/Prev 4444 0 R
+>>
+endobj
+4446 0 obj
+<<
+/Parent 4441 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (5)
+/Next 4447 0 R
+/Prev 4445 0 R
+>>
+endobj
+4447 0 obj
+<<
+/Parent 4441 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (6)
+/Prev 4446 0 R
+>>
+endobj
+4448 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (M1)
+/Next 4450 0 R
+/Prev 4441 0 R
+/First 4449 0 R
+/Last 4449 0 R
+/Count -1
+>>
+endobj
+4449 0 obj
+<<
+/Parent 4448 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+4450 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (M2)
+/Next 4452 0 R
+/Prev 4448 0 R
+/First 4451 0 R
+/Last 4451 0 R
+/Count -1
+>>
+endobj
+4451 0 obj
+<<
+/Parent 4450 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M2x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+4452 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (M3)
+/Next 4454 0 R
+/Prev 4450 0 R
+/First 4453 0 R
+/Last 4453 0 R
+/Count -1
+>>
+endobj
+4453 0 obj
+<<
+/Parent 4452 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M3x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+4454 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (M4)
+/Next 4456 0 R
+/Prev 4452 0 R
+/First 4455 0 R
+/Last 4455 0 R
+/Count -1
+>>
+endobj
+4455 0 obj
+<<
+/Parent 4454 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M4x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+4456 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (SW1)
+/Next 4461 0 R
+/Prev 4454 0 R
+/First 4457 0 R
+/Last 4460 0 R
+/Count -4
+>>
+endobj
+4457 0 obj
+<<
+/Parent 4456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4458 0 R
+>>
+endobj
+4458 0 obj
+<<
+/Parent 4456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW1x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Next 4459 0 R
+/Prev 4457 0 R
+>>
+endobj
+4459 0 obj
+<<
+/Parent 4456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW1x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (3)
+/Next 4460 0 R
+/Prev 4458 0 R
+>>
+endobj
+4460 0 obj
+<<
+/Parent 4456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW1x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (4)
+/Prev 4459 0 R
+>>
+endobj
+4461 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (SW2)
+/Next 4466 0 R
+/Prev 4456 0 R
+/First 4462 0 R
+/Last 4465 0 R
+/Count -4
+>>
+endobj
+4462 0 obj
+<<
+/Parent 4461 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW2x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (1)
+/Next 4463 0 R
+>>
+endobj
+4463 0 obj
+<<
+/Parent 4461 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW2x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (2)
+/Next 4464 0 R
+/Prev 4462 0 R
+>>
+endobj
+4464 0 obj
+<<
+/Parent 4461 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW2x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (3)
+/Next 4465 0 R
+/Prev 4463 0 R
+>>
+endobj
+4465 0 obj
+<<
+/Parent 4461 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW2x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (4)
+/Prev 4464 0 R
+>>
+endobj
+4466 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (X1)
+/Next 4470 0 R
+/Prev 4461 0 R
+/First 4467 0 R
+/Last 4469 0 R
+/Count -3
+>>
+endobj
+4467 0 obj
+<<
+/Parent 4466 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X1xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (A)
+/Next 4468 0 R
+>>
+endobj
+4468 0 obj
+<<
+/Parent 4466 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X1xB'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (B)
+/Next 4469 0 R
+/Prev 4467 0 R
+>>
+endobj
+4469 0 obj
+<<
+/Parent 4466 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X1xG1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (G1)
+/Prev 4468 0 R
+>>
+endobj
+4470 0 obj
+<<
+/Parent 4195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (X2)
+/Prev 4466 0 R
+/First 4471 0 R
+/Last 4472 0 R
+/Count -2
+>>
+endobj
+4471 0 obj
+<<
+/Parent 4470 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X2xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (A)
+/Next 4472 0 R
+>>
+endobj
+4472 0 obj
+<<
+/Parent 4470 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X2xB'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (B)
+/Prev 4471 0 R
+>>
+endobj
+4473 0 obj
+<<
+/Parent 4194 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (Nets)
+/Prev 4195 0 R
+/First 4474 0 R
+/Last 4887 0 R
+/Count -76
+>>
+endobj
+4474 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (BOOT0)
+/Next 4481 0 R
+/First 4475 0 R
+/Last 4480 0 R
+/Count -6
+>>
+endobj
+4475 0 obj
+<<
+/Parent 4474 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J37x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J37.1)
+/Next 4476 0 R
+>>
+endobj
+4476 0 obj
+<<
+/Parent 4474 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R2x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R2.1)
+/Next 4477 0 R
+/Prev 4475 0 R
+>>
+endobj
+4477 0 obj
+<<
+/Parent 4474 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R6x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R6.1)
+/Next 4478 0 R
+/Prev 4476 0 R
+>>
+endobj
+4478 0 obj
+<<
+/Parent 4474 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J37x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J37.2)
+/Next 4479 0 R
+/Prev 4477 0 R
+>>
+endobj
+4479 0 obj
+<<
+/Parent 4474 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x60'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.60)
+/Next 4480 0 R
+/Prev 4478 0 R
+>>
+endobj
+4480 0 obj
+<<
+/Parent 4474 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='Q1xD'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (Q1.D)
+/Prev 4479 0 R
+>>
+endobj
+4481 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (GND)
+/Next 4540 0 R
+/Prev 4474 0 R
+/First 4482 0 R
+/Last 4539 0 R
+/Count -58
+>>
+endobj
+4482 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C2x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C2.1)
+/Next 4483 0 R
+>>
+endobj
+4483 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C4x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C4.1)
+/Next 4484 0 R
+/Prev 4482 0 R
+>>
+endobj
+4484 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C6x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C6.1)
+/Next 4485 0 R
+/Prev 4483 0 R
+>>
+endobj
+4485 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C7x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C7.1)
+/Next 4486 0 R
+/Prev 4484 0 R
+>>
+endobj
+4486 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C8x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C8.1)
+/Next 4487 0 R
+/Prev 4485 0 R
+>>
+endobj
+4487 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C9x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C9.1)
+/Next 4488 0 R
+/Prev 4486 0 R
+>>
+endobj
+4488 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C10x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C10.1)
+/Next 4489 0 R
+/Prev 4487 0 R
+>>
+endobj
+4489 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C11x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C11.1)
+/Next 4490 0 R
+/Prev 4488 0 R
+>>
+endobj
+4490 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C12x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C12.1)
+/Next 4491 0 R
+/Prev 4489 0 R
+>>
+endobj
+4491 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C13x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C13.1)
+/Next 4492 0 R
+/Prev 4490 0 R
+>>
+endobj
+4492 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C14x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C14.1)
+/Next 4493 0 R
+/Prev 4491 0 R
+>>
+endobj
+4493 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C15x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C15.1)
+/Next 4494 0 R
+/Prev 4492 0 R
+>>
+endobj
+4494 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C16x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C16.1)
+/Next 4495 0 R
+/Prev 4493 0 R
+>>
+endobj
+4495 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J1.1)
+/Next 4496 0 R
+/Prev 4494 0 R
+>>
+endobj
+4496 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J2.1)
+/Next 4497 0 R
+/Prev 4495 0 R
+>>
+endobj
+4497 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J7x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J7.1)
+/Next 4498 0 R
+/Prev 4496 0 R
+>>
+endobj
+4498 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J26x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J26.1)
+/Next 4499 0 R
+/Prev 4497 0 R
+>>
+endobj
+4499 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J28x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J28.1)
+/Next 4500 0 R
+/Prev 4498 0 R
+>>
+endobj
+4500 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (M1.1)
+/Next 4501 0 R
+/Prev 4499 0 R
+>>
+endobj
+4501 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M2x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (M2.1)
+/Next 4502 0 R
+/Prev 4500 0 R
+>>
+endobj
+4502 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M3x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (M3.1)
+/Next 4503 0 R
+/Prev 4501 0 R
+>>
+endobj
+4503 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='M4x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (M4.1)
+/Next 4504 0 R
+/Prev 4502 0 R
+>>
+endobj
+4504 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R5x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R5.1)
+/Next 4505 0 R
+/Prev 4503 0 R
+>>
+endobj
+4505 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (SW1.1)
+/Next 4506 0 R
+/Prev 4504 0 R
+>>
+endobj
+4506 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U1.1)
+/Next 4507 0 R
+/Prev 4505 0 R
+>>
+endobj
+4507 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J1.2)
+/Next 4508 0 R
+/Prev 4506 0 R
+>>
+endobj
+4508 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J2.2)
+/Next 4509 0 R
+/Prev 4507 0 R
+>>
+endobj
+4509 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J3x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J3.2)
+/Next 4510 0 R
+/Prev 4508 0 R
+>>
+endobj
+4510 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J7x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J7.2)
+/Next 4511 0 R
+/Prev 4509 0 R
+>>
+endobj
+4511 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J26x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J26.2)
+/Next 4512 0 R
+/Prev 4510 0 R
+>>
+endobj
+4512 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J28x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J28.2)
+/Next 4513 0 R
+/Prev 4511 0 R
+>>
+endobj
+4513 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R6x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R6.2)
+/Next 4514 0 R
+/Prev 4512 0 R
+>>
+endobj
+4514 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW2x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (SW2.2)
+/Next 4515 0 R
+/Prev 4513 0 R
+>>
+endobj
+4515 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J69.4)
+/Next 4516 0 R
+/Prev 4514 0 R
+>>
+endobj
+4516 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW1x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (SW1.4)
+/Next 4517 0 R
+/Prev 4515 0 R
+>>
+endobj
+4517 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J1.5)
+/Next 4518 0 R
+/Prev 4516 0 R
+>>
+endobj
+4518 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J2.5)
+/Next 4519 0 R
+/Prev 4517 0 R
+>>
+endobj
+4519 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J69.5)
+/Next 4520 0 R
+/Prev 4518 0 R
+>>
+endobj
+4520 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J1.6)
+/Next 4521 0 R
+/Prev 4519 0 R
+>>
+endobj
+4521 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J2.6)
+/Next 4522 0 R
+/Prev 4520 0 R
+>>
+endobj
+4522 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J69.6)
+/Next 4523 0 R
+/Prev 4521 0 R
+>>
+endobj
+4523 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (JF1.6)
+/Next 4524 0 R
+/Prev 4522 0 R
+>>
+endobj
+4524 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x8'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51.8)
+/Next 4525 0 R
+/Prev 4523 0 R
+>>
+endobj
+4525 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x10'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51.10)
+/Next 4526 0 R
+/Prev 4524 0 R
+>>
+endobj
+4526 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x12'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.12)
+/Next 4527 0 R
+/Prev 4525 0 R
+>>
+endobj
+4527 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x18'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.18)
+/Next 4528 0 R
+/Prev 4526 0 R
+>>
+endobj
+4528 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x31'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.31)
+/Next 4529 0 R
+/Prev 4527 0 R
+>>
+endobj
+4529 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x47'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.47)
+/Next 4530 0 R
+/Prev 4528 0 R
+>>
+endobj
+4530 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x63'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.63)
+/Next 4531 0 R
+/Prev 4529 0 R
+>>
+endobj
+4531 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D4xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D4.A)
+/Next 4532 0 R
+/Prev 4530 0 R
+>>
+endobj
+4532 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D5xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D5.A)
+/Next 4533 0 R
+/Prev 4531 0 R
+>>
+endobj
+4533 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C1xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C1.C)
+/Next 4534 0 R
+/Prev 4532 0 R
+>>
+endobj
+4534 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C3xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C3.C)
+/Next 4535 0 R
+/Prev 4533 0 R
+>>
+endobj
+4535 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C5xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C5.C)
+/Next 4536 0 R
+/Prev 4534 0 R
+>>
+endobj
+4536 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D6xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D6.C)
+/Next 4537 0 R
+/Prev 4535 0 R
+>>
+endobj
+4537 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D7xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D7.C)
+/Next 4538 0 R
+/Prev 4536 0 R
+>>
+endobj
+4538 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D8xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D8.C)
+/Next 4539 0 R
+/Prev 4537 0 R
+>>
+endobj
+4539 0 obj
+<<
+/Parent 4481 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X1xG1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (X1.G1)
+/Prev 4538 0 R
+>>
+endobj
+4540 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N00154)
+/Next 4544 0 R
+/Prev 4481 0 R
+/First 4541 0 R
+/Last 4543 0 R
+/Count -3
+>>
+endobj
+4541 0 obj
+<<
+/Parent 4540 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='F1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (F1.1)
+/Next 4542 0 R
+>>
+endobj
+4542 0 obj
+<<
+/Parent 4540 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J69.1)
+/Next 4543 0 R
+/Prev 4541 0 R
+>>
+endobj
+4543 0 obj
+<<
+/Parent 4540 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C16x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C16.2)
+/Prev 4542 0 R
+>>
+endobj
+4544 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N41861)
+/Next 4547 0 R
+/Prev 4540 0 R
+/First 4545 0 R
+/Last 4546 0 R
+/Count -2
+>>
+endobj
+4545 0 obj
+<<
+/Parent 4544 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J65x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J65.1)
+/Next 4546 0 R
+>>
+endobj
+4546 0 obj
+<<
+/Parent 4544 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='L2x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (L2.2)
+/Prev 4545 0 R
+>>
+endobj
+4547 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N48841)
+/Next 4550 0 R
+/Prev 4544 0 R
+/First 4548 0 R
+/Last 4549 0 R
+/Count -2
+>>
+endobj
+4548 0 obj
+<<
+/Parent 4547 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J69.2)
+/Next 4549 0 R
+>>
+endobj
+4549 0 obj
+<<
+/Parent 4547 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R12x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R12.2)
+/Prev 4548 0 R
+>>
+endobj
+4550 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N48844)
+/Next 4554 0 R
+/Prev 4547 0 R
+/First 4551 0 R
+/Last 4553 0 R
+/Count -3
+>>
+endobj
+4551 0 obj
+<<
+/Parent 4550 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R13x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R13.2)
+/Next 4552 0 R
+>>
+endobj
+4552 0 obj
+<<
+/Parent 4550 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R16x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R16.2)
+/Next 4553 0 R
+/Prev 4551 0 R
+>>
+endobj
+4553 0 obj
+<<
+/Parent 4550 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J69x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J69.3)
+/Prev 4552 0 R
+>>
+endobj
+4554 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N49163)
+/Next 4557 0 R
+/Prev 4550 0 R
+/First 4555 0 R
+/Last 4556 0 R
+/Count -2
+>>
+endobj
+4555 0 obj
+<<
+/Parent 4554 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J39x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J39.1)
+/Next 4556 0 R
+>>
+endobj
+4556 0 obj
+<<
+/Parent 4554 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R7x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R7.1)
+/Prev 4555 0 R
+>>
+endobj
+4557 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N59466)
+/Next 4560 0 R
+/Prev 4554 0 R
+/First 4558 0 R
+/Last 4559 0 R
+/Count -2
+>>
+endobj
+4558 0 obj
+<<
+/Parent 4557 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J75x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J75.1)
+/Next 4559 0 R
+>>
+endobj
+4559 0 obj
+<<
+/Parent 4557 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R14x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R14.2)
+/Prev 4558 0 R
+>>
+endobj
+4560 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N59474)
+/Next 4563 0 R
+/Prev 4557 0 R
+/First 4561 0 R
+/Last 4562 0 R
+/Count -2
+>>
+endobj
+4561 0 obj
+<<
+/Parent 4560 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J75x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J75.2)
+/Next 4562 0 R
+>>
+endobj
+4562 0 obj
+<<
+/Parent 4560 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (JF1.3)
+/Prev 4561 0 R
+>>
+endobj
+4563 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N59485)
+/Next 4566 0 R
+/Prev 4560 0 R
+/First 4564 0 R
+/Last 4565 0 R
+/Count -2
+>>
+endobj
+4564 0 obj
+<<
+/Parent 4563 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J74x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J74.1)
+/Next 4565 0 R
+>>
+endobj
+4565 0 obj
+<<
+/Parent 4563 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (JF1.5)
+/Prev 4564 0 R
+>>
+endobj
+4566 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N60182)
+/Next 4571 0 R
+/Prev 4563 0 R
+/First 4567 0 R
+/Last 4570 0 R
+/Count -4
+>>
+endobj
+4567 0 obj
+<<
+/Parent 4566 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R14x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R14.1)
+/Next 4568 0 R
+>>
+endobj
+4568 0 obj
+<<
+/Parent 4566 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R15x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R15.2)
+/Next 4569 0 R
+/Prev 4567 0 R
+>>
+endobj
+4569 0 obj
+<<
+/Parent 4566 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW2x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (SW2.4)
+/Next 4570 0 R
+/Prev 4568 0 R
+>>
+endobj
+4570 0 obj
+<<
+/Parent 4566 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='Q1xG'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (Q1.G)
+/Prev 4569 0 R
+>>
+endobj
+4571 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N60501)
+/Next 4574 0 R
+/Prev 4566 0 R
+/First 4572 0 R
+/Last 4573 0 R
+/Count -2
+>>
+endobj
+4572 0 obj
+<<
+/Parent 4571 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J76x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J76.1)
+/Next 4573 0 R
+>>
+endobj
+4573 0 obj
+<<
+/Parent 4571 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R16x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R16.1)
+/Prev 4572 0 R
+>>
+endobj
+4574 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N068130)
+/Next 4578 0 R
+/Prev 4571 0 R
+/First 4575 0 R
+/Last 4577 0 R
+/Count -3
+>>
+endobj
+4575 0 obj
+<<
+/Parent 4574 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J25x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J25.1)
+/Next 4576 0 R
+>>
+endobj
+4576 0 obj
+<<
+/Parent 4574 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R4x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R4.1)
+/Next 4577 0 R
+/Prev 4575 0 R
+>>
+endobj
+4577 0 obj
+<<
+/Parent 4574 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J25x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J25.2)
+/Prev 4576 0 R
+>>
+endobj
+4578 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N068131)
+/Next 4581 0 R
+/Prev 4574 0 R
+/First 4579 0 R
+/Last 4580 0 R
+/Count -2
+>>
+endobj
+4579 0 obj
+<<
+/Parent 4578 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R4x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R4.2)
+/Next 4580 0 R
+>>
+endobj
+4580 0 obj
+<<
+/Parent 4578 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D7xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D7.A)
+/Prev 4579 0 R
+>>
+endobj
+4581 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N68863)
+/Next 4584 0 R
+/Prev 4578 0 R
+/First 4582 0 R
+/Last 4583 0 R
+/Count -2
+>>
+endobj
+4582 0 obj
+<<
+/Parent 4581 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='L2x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (L2.1)
+/Next 4583 0 R
+>>
+endobj
+4583 0 obj
+<<
+/Parent 4581 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='F1x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (F1.2)
+/Prev 4582 0 R
+>>
+endobj
+4584 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N329650)
+/Next 4587 0 R
+/Prev 4581 0 R
+/First 4585 0 R
+/Last 4586 0 R
+/Count -2
+>>
+endobj
+4585 0 obj
+<<
+/Parent 4584 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J3x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J3.1)
+/Next 4586 0 R
+>>
+endobj
+4586 0 obj
+<<
+/Parent 4584 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D3xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D3.A)
+/Prev 4585 0 R
+>>
+endobj
+4587 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N438140)
+/Next 4591 0 R
+/Prev 4584 0 R
+/First 4588 0 R
+/Last 4590 0 R
+/Count -3
+>>
+endobj
+4588 0 obj
+<<
+/Parent 4587 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J24x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J24.1)
+/Next 4589 0 R
+>>
+endobj
+4589 0 obj
+<<
+/Parent 4587 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R3x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R3.1)
+/Next 4590 0 R
+/Prev 4588 0 R
+>>
+endobj
+4590 0 obj
+<<
+/Parent 4587 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J24x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J24.2)
+/Prev 4589 0 R
+>>
+endobj
+4591 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N438261)
+/Next 4594 0 R
+/Prev 4587 0 R
+/First 4592 0 R
+/Last 4593 0 R
+/Count -2
+>>
+endobj
+4592 0 obj
+<<
+/Parent 4591 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R3x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R3.2)
+/Next 4593 0 R
+>>
+endobj
+4593 0 obj
+<<
+/Parent 4591 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D6xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D6.A)
+/Prev 4592 0 R
+>>
+endobj
+4594 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N456271)
+/Next 4597 0 R
+/Prev 4591 0 R
+/First 4595 0 R
+/Last 4596 0 R
+/Count -2
+>>
+endobj
+4595 0 obj
+<<
+/Parent 4594 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R2x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R2.2)
+/Next 4596 0 R
+>>
+endobj
+4596 0 obj
+<<
+/Parent 4594 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D8xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D8.A)
+/Prev 4595 0 R
+>>
+endobj
+4597 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (N485981)
+/Next 4600 0 R
+/Prev 4594 0 R
+/First 4598 0 R
+/Last 4599 0 R
+/Count -2
+>>
+endobj
+4598 0 obj
+<<
+/Parent 4597 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J74x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J74.2)
+/Next 4599 0 R
+>>
+endobj
+4599 0 obj
+<<
+/Parent 4597 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D9xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D9.C)
+/Prev 4598 0 R
+>>
+endobj
+4600 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (NRST)
+/Next 4611 0 R
+/Prev 4597 0 R
+/First 4601 0 R
+/Last 4610 0 R
+/Count -10
+>>
+endobj
+4601 0 obj
+<<
+/Parent 4600 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J34x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J34.1)
+/Next 4602 0 R
+>>
+endobj
+4602 0 obj
+<<
+/Parent 4600 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R1.1)
+/Next 4603 0 R
+/Prev 4601 0 R
+>>
+endobj
+4603 0 obj
+<<
+/Parent 4600 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C7x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C7.2)
+/Next 4604 0 R
+/Prev 4602 0 R
+>>
+endobj
+4604 0 obj
+<<
+/Parent 4600 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J34x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J34.2)
+/Next 4605 0 R
+/Prev 4603 0 R
+>>
+endobj
+4605 0 obj
+<<
+/Parent 4600 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J39x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J39.2)
+/Next 4606 0 R
+/Prev 4604 0 R
+>>
+endobj
+4606 0 obj
+<<
+/Parent 4600 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW1x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (SW1.2)
+/Next 4607 0 R
+/Prev 4605 0 R
+>>
+endobj
+4607 0 obj
+<<
+/Parent 4600 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='SW1x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (SW1.3)
+/Next 4608 0 R
+/Prev 4606 0 R
+>>
+endobj
+4608 0 obj
+<<
+/Parent 4600 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51.4)
+/Next 4609 0 R
+/Prev 4607 0 R
+>>
+endobj
+4609 0 obj
+<<
+/Parent 4600 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x7'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.7)
+/Next 4610 0 R
+/Prev 4608 0 R
+>>
+endobj
+4610 0 obj
+<<
+/Parent 4600 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D9xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D9.A)
+/Prev 4609 0 R
+>>
+endobj
+4611 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA0)
+/Next 4615 0 R
+/Prev 4600 0 R
+/First 4612 0 R
+/Last 4614 0 R
+/Count -3
+>>
+endobj
+4612 0 obj
+<<
+/Parent 4611 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J41x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J41.1)
+/Next 4613 0 R
+>>
+endobj
+4613 0 obj
+<<
+/Parent 4611 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J41x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J41.2)
+/Next 4614 0 R
+/Prev 4612 0 R
+>>
+endobj
+4614 0 obj
+<<
+/Parent 4611 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x14'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.14)
+/Prev 4613 0 R
+>>
+endobj
+4615 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA1)
+/Next 4619 0 R
+/Prev 4611 0 R
+/First 4616 0 R
+/Last 4618 0 R
+/Count -3
+>>
+endobj
+4616 0 obj
+<<
+/Parent 4615 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J43x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J43.1)
+/Next 4617 0 R
+>>
+endobj
+4617 0 obj
+<<
+/Parent 4615 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J43x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J43.2)
+/Next 4618 0 R
+/Prev 4616 0 R
+>>
+endobj
+4618 0 obj
+<<
+/Parent 4615 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x15'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.15)
+/Prev 4617 0 R
+>>
+endobj
+4619 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA2)
+/Next 4623 0 R
+/Prev 4615 0 R
+/First 4620 0 R
+/Last 4622 0 R
+/Count -3
+>>
+endobj
+4620 0 obj
+<<
+/Parent 4619 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J45x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J45.1)
+/Next 4621 0 R
+>>
+endobj
+4621 0 obj
+<<
+/Parent 4619 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J45x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J45.2)
+/Next 4622 0 R
+/Prev 4620 0 R
+>>
+endobj
+4622 0 obj
+<<
+/Parent 4619 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x16'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.16)
+/Prev 4621 0 R
+>>
+endobj
+4623 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA3)
+/Next 4627 0 R
+/Prev 4619 0 R
+/First 4624 0 R
+/Last 4626 0 R
+/Count -3
+>>
+endobj
+4624 0 obj
+<<
+/Parent 4623 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J47x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J47.1)
+/Next 4625 0 R
+>>
+endobj
+4625 0 obj
+<<
+/Parent 4623 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J47x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J47.2)
+/Next 4626 0 R
+/Prev 4624 0 R
+>>
+endobj
+4626 0 obj
+<<
+/Parent 4623 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x17'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.17)
+/Prev 4625 0 R
+>>
+endobj
+4627 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA4)
+/Next 4631 0 R
+/Prev 4623 0 R
+/First 4628 0 R
+/Last 4630 0 R
+/Count -3
+>>
+endobj
+4628 0 obj
+<<
+/Parent 4627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J49x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J49.1)
+/Next 4629 0 R
+>>
+endobj
+4629 0 obj
+<<
+/Parent 4627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J49x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J49.2)
+/Next 4630 0 R
+/Prev 4628 0 R
+>>
+endobj
+4630 0 obj
+<<
+/Parent 4627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x20'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.20)
+/Prev 4629 0 R
+>>
+endobj
+4631 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA5)
+/Next 4635 0 R
+/Prev 4627 0 R
+/First 4632 0 R
+/Last 4634 0 R
+/Count -3
+>>
+endobj
+4632 0 obj
+<<
+/Parent 4631 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J52x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J52.1)
+/Next 4633 0 R
+>>
+endobj
+4633 0 obj
+<<
+/Parent 4631 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J52x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J52.2)
+/Next 4634 0 R
+/Prev 4632 0 R
+>>
+endobj
+4634 0 obj
+<<
+/Parent 4631 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x21'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.21)
+/Prev 4633 0 R
+>>
+endobj
+4635 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA6)
+/Next 4639 0 R
+/Prev 4631 0 R
+/First 4636 0 R
+/Last 4638 0 R
+/Count -3
+>>
+endobj
+4636 0 obj
+<<
+/Parent 4635 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J54x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J54.1)
+/Next 4637 0 R
+>>
+endobj
+4637 0 obj
+<<
+/Parent 4635 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J54x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J54.2)
+/Next 4638 0 R
+/Prev 4636 0 R
+>>
+endobj
+4638 0 obj
+<<
+/Parent 4635 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x22'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.22)
+/Prev 4637 0 R
+>>
+endobj
+4639 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA7)
+/Next 4643 0 R
+/Prev 4635 0 R
+/First 4640 0 R
+/Last 4642 0 R
+/Count -3
+>>
+endobj
+4640 0 obj
+<<
+/Parent 4639 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J56x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J56.1)
+/Next 4641 0 R
+>>
+endobj
+4641 0 obj
+<<
+/Parent 4639 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J56x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J56.2)
+/Next 4642 0 R
+/Prev 4640 0 R
+>>
+endobj
+4642 0 obj
+<<
+/Parent 4639 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x23'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.23)
+/Prev 4641 0 R
+>>
+endobj
+4643 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA8)
+/Next 4647 0 R
+/Prev 4639 0 R
+/First 4644 0 R
+/Last 4646 0 R
+/Count -3
+>>
+endobj
+4644 0 obj
+<<
+/Parent 4643 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J58x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J58.1)
+/Next 4645 0 R
+>>
+endobj
+4645 0 obj
+<<
+/Parent 4643 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J58x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J58.2)
+/Next 4646 0 R
+/Prev 4644 0 R
+>>
+endobj
+4646 0 obj
+<<
+/Parent 4643 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x41'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.41)
+/Prev 4645 0 R
+>>
+endobj
+4647 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA9_TX)
+/Next 4652 0 R
+/Prev 4643 0 R
+/First 4648 0 R
+/Last 4651 0 R
+/Count -4
+>>
+endobj
+4648 0 obj
+<<
+/Parent 4647 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J60x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J60.1)
+/Next 4649 0 R
+>>
+endobj
+4649 0 obj
+<<
+/Parent 4647 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J60x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J60.2)
+/Next 4650 0 R
+/Prev 4648 0 R
+>>
+endobj
+4650 0 obj
+<<
+/Parent 4647 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (JF1.4)
+/Next 4651 0 R
+/Prev 4649 0 R
+>>
+endobj
+4651 0 obj
+<<
+/Parent 4647 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x42'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.42)
+/Prev 4650 0 R
+>>
+endobj
+4652 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA10_RX)
+/Next 4657 0 R
+/Prev 4647 0 R
+/First 4653 0 R
+/Last 4656 0 R
+/Count -4
+>>
+endobj
+4653 0 obj
+<<
+/Parent 4652 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J61x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J61.1)
+/Next 4654 0 R
+>>
+endobj
+4654 0 obj
+<<
+/Parent 4652 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (JF1.1)
+/Next 4655 0 R
+/Prev 4653 0 R
+>>
+endobj
+4655 0 obj
+<<
+/Parent 4652 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J61x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J61.2)
+/Next 4656 0 R
+/Prev 4654 0 R
+>>
+endobj
+4656 0 obj
+<<
+/Parent 4652 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x43'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.43)
+/Prev 4655 0 R
+>>
+endobj
+4657 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA11_DM)
+/Next 4662 0 R
+/Prev 4652 0 R
+/First 4658 0 R
+/Last 4661 0 R
+/Count -4
+>>
+endobj
+4658 0 obj
+<<
+/Parent 4657 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J62x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J62.1)
+/Next 4659 0 R
+>>
+endobj
+4659 0 obj
+<<
+/Parent 4657 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R12x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R12.1)
+/Next 4660 0 R
+/Prev 4658 0 R
+>>
+endobj
+4660 0 obj
+<<
+/Parent 4657 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J62x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J62.2)
+/Next 4661 0 R
+/Prev 4659 0 R
+>>
+endobj
+4661 0 obj
+<<
+/Parent 4657 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x44'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.44)
+/Prev 4660 0 R
+>>
+endobj
+4662 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA12_DP)
+/Next 4667 0 R
+/Prev 4657 0 R
+/First 4663 0 R
+/Last 4666 0 R
+/Count -4
+>>
+endobj
+4663 0 obj
+<<
+/Parent 4662 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J63x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J63.1)
+/Next 4664 0 R
+>>
+endobj
+4664 0 obj
+<<
+/Parent 4662 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R13x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R13.1)
+/Next 4665 0 R
+/Prev 4663 0 R
+>>
+endobj
+4665 0 obj
+<<
+/Parent 4662 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J63x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J63.2)
+/Next 4666 0 R
+/Prev 4664 0 R
+>>
+endobj
+4666 0 obj
+<<
+/Parent 4662 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x45'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.45)
+/Prev 4665 0 R
+>>
+endobj
+4667 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA13_JTMS)
+/Next 4673 0 R
+/Prev 4662 0 R
+/First 4668 0 R
+/Last 4672 0 R
+/Count -5
+>>
+endobj
+4668 0 obj
+<<
+/Parent 4667 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J64x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J64.1)
+/Next 4669 0 R
+>>
+endobj
+4669 0 obj
+<<
+/Parent 4667 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R10x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R10.1)
+/Next 4670 0 R
+/Prev 4668 0 R
+>>
+endobj
+4670 0 obj
+<<
+/Parent 4667 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J64x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J64.2)
+/Next 4671 0 R
+/Prev 4669 0 R
+>>
+endobj
+4671 0 obj
+<<
+/Parent 4667 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x7'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51.7)
+/Next 4672 0 R
+/Prev 4670 0 R
+>>
+endobj
+4672 0 obj
+<<
+/Parent 4667 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x46'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.46)
+/Prev 4671 0 R
+>>
+endobj
+4673 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA14_JTCK)
+/Next 4679 0 R
+/Prev 4667 0 R
+/First 4674 0 R
+/Last 4678 0 R
+/Count -5
+>>
+endobj
+4674 0 obj
+<<
+/Parent 4673 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J66x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J66.1)
+/Next 4675 0 R
+>>
+endobj
+4675 0 obj
+<<
+/Parent 4673 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R11x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R11.1)
+/Next 4676 0 R
+/Prev 4674 0 R
+>>
+endobj
+4676 0 obj
+<<
+/Parent 4673 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J66x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J66.2)
+/Next 4677 0 R
+/Prev 4675 0 R
+>>
+endobj
+4677 0 obj
+<<
+/Parent 4673 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x9'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51.9)
+/Next 4678 0 R
+/Prev 4676 0 R
+>>
+endobj
+4678 0 obj
+<<
+/Parent 4673 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x49'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.49)
+/Prev 4677 0 R
+>>
+endobj
+4679 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PA15_JTDI)
+/Next 4685 0 R
+/Prev 4673 0 R
+/First 4680 0 R
+/Last 4684 0 R
+/Count -5
+>>
+endobj
+4680 0 obj
+<<
+/Parent 4679 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J67x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J67.1)
+/Next 4681 0 R
+>>
+endobj
+4681 0 obj
+<<
+/Parent 4679 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R9x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R9.1)
+/Next 4682 0 R
+/Prev 4680 0 R
+>>
+endobj
+4682 0 obj
+<<
+/Parent 4679 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J67x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J67.2)
+/Next 4683 0 R
+/Prev 4681 0 R
+>>
+endobj
+4683 0 obj
+<<
+/Parent 4679 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51.5)
+/Next 4684 0 R
+/Prev 4682 0 R
+>>
+endobj
+4684 0 obj
+<<
+/Parent 4679 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x50'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.50)
+/Prev 4683 0 R
+>>
+endobj
+4685 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB0)
+/Next 4689 0 R
+/Prev 4679 0 R
+/First 4686 0 R
+/Last 4688 0 R
+/Count -3
+>>
+endobj
+4686 0 obj
+<<
+/Parent 4685 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J5x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J5.1)
+/Next 4687 0 R
+>>
+endobj
+4687 0 obj
+<<
+/Parent 4685 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J5x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J5.2)
+/Next 4688 0 R
+/Prev 4686 0 R
+>>
+endobj
+4688 0 obj
+<<
+/Parent 4685 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x26'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.26)
+/Prev 4687 0 R
+>>
+endobj
+4689 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB1)
+/Next 4693 0 R
+/Prev 4685 0 R
+/First 4690 0 R
+/Last 4692 0 R
+/Count -3
+>>
+endobj
+4690 0 obj
+<<
+/Parent 4689 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J6x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J6.1)
+/Next 4691 0 R
+>>
+endobj
+4691 0 obj
+<<
+/Parent 4689 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J6x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J6.2)
+/Next 4692 0 R
+/Prev 4690 0 R
+>>
+endobj
+4692 0 obj
+<<
+/Parent 4689 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x27'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.27)
+/Prev 4691 0 R
+>>
+endobj
+4693 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB2_BOOT1)
+/Next 4698 0 R
+/Prev 4689 0 R
+/First 4694 0 R
+/Last 4697 0 R
+/Count -4
+>>
+endobj
+4694 0 obj
+<<
+/Parent 4693 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J8x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J8.1)
+/Next 4695 0 R
+>>
+endobj
+4695 0 obj
+<<
+/Parent 4693 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J8x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J8.2)
+/Next 4696 0 R
+/Prev 4694 0 R
+>>
+endobj
+4696 0 obj
+<<
+/Parent 4693 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R5x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R5.2)
+/Next 4697 0 R
+/Prev 4695 0 R
+>>
+endobj
+4697 0 obj
+<<
+/Parent 4693 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x28'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.28)
+/Prev 4696 0 R
+>>
+endobj
+4698 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB3_JTDO)
+/Next 4703 0 R
+/Prev 4693 0 R
+/First 4699 0 R
+/Last 4702 0 R
+/Count -4
+>>
+endobj
+4699 0 obj
+<<
+/Parent 4698 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J9x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J9.1)
+/Next 4700 0 R
+>>
+endobj
+4700 0 obj
+<<
+/Parent 4698 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J9x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J9.2)
+/Next 4701 0 R
+/Prev 4699 0 R
+>>
+endobj
+4701 0 obj
+<<
+/Parent 4698 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51.6)
+/Next 4702 0 R
+/Prev 4700 0 R
+>>
+endobj
+4702 0 obj
+<<
+/Parent 4698 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x55'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.55)
+/Prev 4701 0 R
+>>
+endobj
+4703 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB4_JNTRST)
+/Next 4710 0 R
+/Prev 4698 0 R
+/First 4704 0 R
+/Last 4709 0 R
+/Count -6
+>>
+endobj
+4704 0 obj
+<<
+/Parent 4703 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J11x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J11.1)
+/Next 4705 0 R
+>>
+endobj
+4705 0 obj
+<<
+/Parent 4703 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R8x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R8.1)
+/Next 4706 0 R
+/Prev 4704 0 R
+>>
+endobj
+4706 0 obj
+<<
+/Parent 4703 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J11x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J11.2)
+/Next 4707 0 R
+/Prev 4705 0 R
+>>
+endobj
+4707 0 obj
+<<
+/Parent 4703 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R7x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R7.2)
+/Next 4708 0 R
+/Prev 4706 0 R
+>>
+endobj
+4708 0 obj
+<<
+/Parent 4703 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51.3)
+/Next 4709 0 R
+/Prev 4707 0 R
+>>
+endobj
+4709 0 obj
+<<
+/Parent 4703 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x56'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.56)
+/Prev 4708 0 R
+>>
+endobj
+4710 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB5)
+/Next 4714 0 R
+/Prev 4703 0 R
+/First 4711 0 R
+/Last 4713 0 R
+/Count -3
+>>
+endobj
+4711 0 obj
+<<
+/Parent 4710 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J12x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J12.1)
+/Next 4712 0 R
+>>
+endobj
+4712 0 obj
+<<
+/Parent 4710 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J12x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J12.2)
+/Next 4713 0 R
+/Prev 4711 0 R
+>>
+endobj
+4713 0 obj
+<<
+/Parent 4710 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x57'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.57)
+/Prev 4712 0 R
+>>
+endobj
+4714 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB6)
+/Next 4718 0 R
+/Prev 4710 0 R
+/First 4715 0 R
+/Last 4717 0 R
+/Count -3
+>>
+endobj
+4715 0 obj
+<<
+/Parent 4714 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J14x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J14.1)
+/Next 4716 0 R
+>>
+endobj
+4716 0 obj
+<<
+/Parent 4714 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J14x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J14.2)
+/Next 4717 0 R
+/Prev 4715 0 R
+>>
+endobj
+4717 0 obj
+<<
+/Parent 4714 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x58'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.58)
+/Prev 4716 0 R
+>>
+endobj
+4718 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB7)
+/Next 4722 0 R
+/Prev 4714 0 R
+/First 4719 0 R
+/Last 4721 0 R
+/Count -3
+>>
+endobj
+4719 0 obj
+<<
+/Parent 4718 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J16x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J16.1)
+/Next 4720 0 R
+>>
+endobj
+4720 0 obj
+<<
+/Parent 4718 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J16x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J16.2)
+/Next 4721 0 R
+/Prev 4719 0 R
+>>
+endobj
+4721 0 obj
+<<
+/Parent 4718 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x59'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.59)
+/Prev 4720 0 R
+>>
+endobj
+4722 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB8)
+/Next 4726 0 R
+/Prev 4718 0 R
+/First 4723 0 R
+/Last 4725 0 R
+/Count -3
+>>
+endobj
+4723 0 obj
+<<
+/Parent 4722 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J18x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J18.1)
+/Next 4724 0 R
+>>
+endobj
+4724 0 obj
+<<
+/Parent 4722 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J18x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J18.2)
+/Next 4725 0 R
+/Prev 4723 0 R
+>>
+endobj
+4725 0 obj
+<<
+/Parent 4722 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x61'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.61)
+/Prev 4724 0 R
+>>
+endobj
+4726 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB9)
+/Next 4730 0 R
+/Prev 4722 0 R
+/First 4727 0 R
+/Last 4729 0 R
+/Count -3
+>>
+endobj
+4727 0 obj
+<<
+/Parent 4726 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J20x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J20.1)
+/Next 4728 0 R
+>>
+endobj
+4728 0 obj
+<<
+/Parent 4726 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J20x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J20.2)
+/Next 4729 0 R
+/Prev 4727 0 R
+>>
+endobj
+4729 0 obj
+<<
+/Parent 4726 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x62'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.62)
+/Prev 4728 0 R
+>>
+endobj
+4730 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB10)
+/Next 4734 0 R
+/Prev 4726 0 R
+/First 4731 0 R
+/Last 4733 0 R
+/Count -3
+>>
+endobj
+4731 0 obj
+<<
+/Parent 4730 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J21x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J21.1)
+/Next 4732 0 R
+>>
+endobj
+4732 0 obj
+<<
+/Parent 4730 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J21x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J21.2)
+/Next 4733 0 R
+/Prev 4731 0 R
+>>
+endobj
+4733 0 obj
+<<
+/Parent 4730 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x29'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.29)
+/Prev 4732 0 R
+>>
+endobj
+4734 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB11)
+/Next 4738 0 R
+/Prev 4730 0 R
+/First 4735 0 R
+/Last 4737 0 R
+/Count -3
+>>
+endobj
+4735 0 obj
+<<
+/Parent 4734 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J22x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J22.1)
+/Next 4736 0 R
+>>
+endobj
+4736 0 obj
+<<
+/Parent 4734 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J22x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J22.2)
+/Next 4737 0 R
+/Prev 4735 0 R
+>>
+endobj
+4737 0 obj
+<<
+/Parent 4734 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x30'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.30)
+/Prev 4736 0 R
+>>
+endobj
+4738 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB12)
+/Next 4742 0 R
+/Prev 4734 0 R
+/First 4739 0 R
+/Last 4741 0 R
+/Count -3
+>>
+endobj
+4739 0 obj
+<<
+/Parent 4738 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J23x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J23.1)
+/Next 4740 0 R
+>>
+endobj
+4740 0 obj
+<<
+/Parent 4738 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J23x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J23.2)
+/Next 4741 0 R
+/Prev 4739 0 R
+>>
+endobj
+4741 0 obj
+<<
+/Parent 4738 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x33'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.33)
+/Prev 4740 0 R
+>>
+endobj
+4742 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB13)
+/Next 4746 0 R
+/Prev 4738 0 R
+/First 4743 0 R
+/Last 4745 0 R
+/Count -3
+>>
+endobj
+4743 0 obj
+<<
+/Parent 4742 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J27x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J27.1)
+/Next 4744 0 R
+>>
+endobj
+4744 0 obj
+<<
+/Parent 4742 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J27x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J27.2)
+/Next 4745 0 R
+/Prev 4743 0 R
+>>
+endobj
+4745 0 obj
+<<
+/Parent 4742 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x34'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.34)
+/Prev 4744 0 R
+>>
+endobj
+4746 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB14)
+/Next 4750 0 R
+/Prev 4742 0 R
+/First 4747 0 R
+/Last 4749 0 R
+/Count -3
+>>
+endobj
+4747 0 obj
+<<
+/Parent 4746 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J29x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J29.1)
+/Next 4748 0 R
+>>
+endobj
+4748 0 obj
+<<
+/Parent 4746 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J29x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J29.2)
+/Next 4749 0 R
+/Prev 4747 0 R
+>>
+endobj
+4749 0 obj
+<<
+/Parent 4746 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x35'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.35)
+/Prev 4748 0 R
+>>
+endobj
+4750 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PB15)
+/Next 4754 0 R
+/Prev 4746 0 R
+/First 4751 0 R
+/Last 4753 0 R
+/Count -3
+>>
+endobj
+4751 0 obj
+<<
+/Parent 4750 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J31x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J31.1)
+/Next 4752 0 R
+>>
+endobj
+4752 0 obj
+<<
+/Parent 4750 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J31x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J31.2)
+/Next 4753 0 R
+/Prev 4751 0 R
+>>
+endobj
+4753 0 obj
+<<
+/Parent 4750 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x36'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.36)
+/Prev 4752 0 R
+>>
+endobj
+4754 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC0)
+/Next 4758 0 R
+/Prev 4750 0 R
+/First 4755 0 R
+/Last 4757 0 R
+/Count -3
+>>
+endobj
+4755 0 obj
+<<
+/Parent 4754 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J33x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J33.1)
+/Next 4756 0 R
+>>
+endobj
+4756 0 obj
+<<
+/Parent 4754 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J33x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J33.2)
+/Next 4757 0 R
+/Prev 4755 0 R
+>>
+endobj
+4757 0 obj
+<<
+/Parent 4754 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x8'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.8)
+/Prev 4756 0 R
+>>
+endobj
+4758 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC1)
+/Next 4762 0 R
+/Prev 4754 0 R
+/First 4759 0 R
+/Last 4761 0 R
+/Count -3
+>>
+endobj
+4759 0 obj
+<<
+/Parent 4758 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J35x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J35.1)
+/Next 4760 0 R
+>>
+endobj
+4760 0 obj
+<<
+/Parent 4758 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J35x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J35.2)
+/Next 4761 0 R
+/Prev 4759 0 R
+>>
+endobj
+4761 0 obj
+<<
+/Parent 4758 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x9'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.9)
+/Prev 4760 0 R
+>>
+endobj
+4762 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC2)
+/Next 4766 0 R
+/Prev 4758 0 R
+/First 4763 0 R
+/Last 4765 0 R
+/Count -3
+>>
+endobj
+4763 0 obj
+<<
+/Parent 4762 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J36x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J36.1)
+/Next 4764 0 R
+>>
+endobj
+4764 0 obj
+<<
+/Parent 4762 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J36x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J36.2)
+/Next 4765 0 R
+/Prev 4763 0 R
+>>
+endobj
+4765 0 obj
+<<
+/Parent 4762 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x10'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.10)
+/Prev 4764 0 R
+>>
+endobj
+4766 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC3)
+/Next 4770 0 R
+/Prev 4762 0 R
+/First 4767 0 R
+/Last 4769 0 R
+/Count -3
+>>
+endobj
+4767 0 obj
+<<
+/Parent 4766 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J38x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J38.1)
+/Next 4768 0 R
+>>
+endobj
+4768 0 obj
+<<
+/Parent 4766 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J38x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J38.2)
+/Next 4769 0 R
+/Prev 4767 0 R
+>>
+endobj
+4769 0 obj
+<<
+/Parent 4766 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x11'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.11)
+/Prev 4768 0 R
+>>
+endobj
+4770 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC4)
+/Next 4774 0 R
+/Prev 4766 0 R
+/First 4771 0 R
+/Last 4773 0 R
+/Count -3
+>>
+endobj
+4771 0 obj
+<<
+/Parent 4770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J40x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J40.1)
+/Next 4772 0 R
+>>
+endobj
+4772 0 obj
+<<
+/Parent 4770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J40x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J40.2)
+/Next 4773 0 R
+/Prev 4771 0 R
+>>
+endobj
+4773 0 obj
+<<
+/Parent 4770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x24'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.24)
+/Prev 4772 0 R
+>>
+endobj
+4774 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC5)
+/Next 4778 0 R
+/Prev 4770 0 R
+/First 4775 0 R
+/Last 4777 0 R
+/Count -3
+>>
+endobj
+4775 0 obj
+<<
+/Parent 4774 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J42x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J42.1)
+/Next 4776 0 R
+>>
+endobj
+4776 0 obj
+<<
+/Parent 4774 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J42x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J42.2)
+/Next 4777 0 R
+/Prev 4775 0 R
+>>
+endobj
+4777 0 obj
+<<
+/Parent 4774 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x25'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.25)
+/Prev 4776 0 R
+>>
+endobj
+4778 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC6)
+/Next 4782 0 R
+/Prev 4774 0 R
+/First 4779 0 R
+/Last 4781 0 R
+/Count -3
+>>
+endobj
+4779 0 obj
+<<
+/Parent 4778 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J44x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J44.1)
+/Next 4780 0 R
+>>
+endobj
+4780 0 obj
+<<
+/Parent 4778 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J44x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J44.2)
+/Next 4781 0 R
+/Prev 4779 0 R
+>>
+endobj
+4781 0 obj
+<<
+/Parent 4778 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x37'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.37)
+/Prev 4780 0 R
+>>
+endobj
+4782 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC7)
+/Next 4786 0 R
+/Prev 4778 0 R
+/First 4783 0 R
+/Last 4785 0 R
+/Count -3
+>>
+endobj
+4783 0 obj
+<<
+/Parent 4782 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J46x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J46.1)
+/Next 4784 0 R
+>>
+endobj
+4784 0 obj
+<<
+/Parent 4782 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J46x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J46.2)
+/Next 4785 0 R
+/Prev 4783 0 R
+>>
+endobj
+4785 0 obj
+<<
+/Parent 4782 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x38'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.38)
+/Prev 4784 0 R
+>>
+endobj
+4786 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC8)
+/Next 4790 0 R
+/Prev 4782 0 R
+/First 4787 0 R
+/Last 4789 0 R
+/Count -3
+>>
+endobj
+4787 0 obj
+<<
+/Parent 4786 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J48x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J48.1)
+/Next 4788 0 R
+>>
+endobj
+4788 0 obj
+<<
+/Parent 4786 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J48x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J48.2)
+/Next 4789 0 R
+/Prev 4787 0 R
+>>
+endobj
+4789 0 obj
+<<
+/Parent 4786 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x39'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.39)
+/Prev 4788 0 R
+>>
+endobj
+4790 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC9)
+/Next 4794 0 R
+/Prev 4786 0 R
+/First 4791 0 R
+/Last 4793 0 R
+/Count -3
+>>
+endobj
+4791 0 obj
+<<
+/Parent 4790 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J50x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J50.1)
+/Next 4792 0 R
+>>
+endobj
+4792 0 obj
+<<
+/Parent 4790 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J50x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J50.2)
+/Next 4793 0 R
+/Prev 4791 0 R
+>>
+endobj
+4793 0 obj
+<<
+/Parent 4790 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x40'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.40)
+/Prev 4792 0 R
+>>
+endobj
+4794 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC10)
+/Next 4798 0 R
+/Prev 4790 0 R
+/First 4795 0 R
+/Last 4797 0 R
+/Count -3
+>>
+endobj
+4795 0 obj
+<<
+/Parent 4794 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J53x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J53.1)
+/Next 4796 0 R
+>>
+endobj
+4796 0 obj
+<<
+/Parent 4794 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J53x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J53.2)
+/Next 4797 0 R
+/Prev 4795 0 R
+>>
+endobj
+4797 0 obj
+<<
+/Parent 4794 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x51'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.51)
+/Prev 4796 0 R
+>>
+endobj
+4798 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC11)
+/Next 4802 0 R
+/Prev 4794 0 R
+/First 4799 0 R
+/Last 4801 0 R
+/Count -3
+>>
+endobj
+4799 0 obj
+<<
+/Parent 4798 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J55x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J55.1)
+/Next 4800 0 R
+>>
+endobj
+4800 0 obj
+<<
+/Parent 4798 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J55x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J55.2)
+/Next 4801 0 R
+/Prev 4799 0 R
+>>
+endobj
+4801 0 obj
+<<
+/Parent 4798 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x52'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.52)
+/Prev 4800 0 R
+>>
+endobj
+4802 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC12)
+/Next 4806 0 R
+/Prev 4798 0 R
+/First 4803 0 R
+/Last 4805 0 R
+/Count -3
+>>
+endobj
+4803 0 obj
+<<
+/Parent 4802 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J57x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J57.1)
+/Next 4804 0 R
+>>
+endobj
+4804 0 obj
+<<
+/Parent 4802 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J57x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J57.2)
+/Next 4805 0 R
+/Prev 4803 0 R
+>>
+endobj
+4805 0 obj
+<<
+/Parent 4802 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x53'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.53)
+/Prev 4804 0 R
+>>
+endobj
+4806 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC13)
+/Next 4810 0 R
+/Prev 4802 0 R
+/First 4807 0 R
+/Last 4809 0 R
+/Count -3
+>>
+endobj
+4807 0 obj
+<<
+/Parent 4806 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J59x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J59.1)
+/Next 4808 0 R
+>>
+endobj
+4808 0 obj
+<<
+/Parent 4806 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J59x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J59.2)
+/Next 4809 0 R
+/Prev 4807 0 R
+>>
+endobj
+4809 0 obj
+<<
+/Parent 4806 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.2)
+/Prev 4808 0 R
+>>
+endobj
+4810 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC14_X2)
+/Next 4816 0 R
+/Prev 4806 0 R
+/First 4811 0 R
+/Last 4815 0 R
+/Count -5
+>>
+endobj
+4811 0 obj
+<<
+/Parent 4810 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J70x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J70.1)
+/Next 4812 0 R
+>>
+endobj
+4812 0 obj
+<<
+/Parent 4810 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C15x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C15.2)
+/Next 4813 0 R
+/Prev 4811 0 R
+>>
+endobj
+4813 0 obj
+<<
+/Parent 4810 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J70x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J70.2)
+/Next 4814 0 R
+/Prev 4812 0 R
+>>
+endobj
+4814 0 obj
+<<
+/Parent 4810 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.3)
+/Next 4815 0 R
+/Prev 4813 0 R
+>>
+endobj
+4815 0 obj
+<<
+/Parent 4810 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X1xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (X1.A)
+/Prev 4814 0 R
+>>
+endobj
+4816 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PC15_X2)
+/Next 4822 0 R
+/Prev 4810 0 R
+/First 4817 0 R
+/Last 4821 0 R
+/Count -5
+>>
+endobj
+4817 0 obj
+<<
+/Parent 4816 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J71x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J71.1)
+/Next 4818 0 R
+>>
+endobj
+4818 0 obj
+<<
+/Parent 4816 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C14x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C14.2)
+/Next 4819 0 R
+/Prev 4817 0 R
+>>
+endobj
+4819 0 obj
+<<
+/Parent 4816 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J71x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J71.2)
+/Next 4820 0 R
+/Prev 4818 0 R
+>>
+endobj
+4820 0 obj
+<<
+/Parent 4816 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.4)
+/Next 4821 0 R
+/Prev 4819 0 R
+>>
+endobj
+4821 0 obj
+<<
+/Parent 4816 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X1xB'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (X1.B)
+/Prev 4820 0 R
+>>
+endobj
+4822 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PD0_X1)
+/Next 4828 0 R
+/Prev 4816 0 R
+/First 4823 0 R
+/Last 4827 0 R
+/Count -5
+>>
+endobj
+4823 0 obj
+<<
+/Parent 4822 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J72x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J72.1)
+/Next 4824 0 R
+>>
+endobj
+4824 0 obj
+<<
+/Parent 4822 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C13x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C13.2)
+/Next 4825 0 R
+/Prev 4823 0 R
+>>
+endobj
+4825 0 obj
+<<
+/Parent 4822 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J72x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J72.2)
+/Next 4826 0 R
+/Prev 4824 0 R
+>>
+endobj
+4826 0 obj
+<<
+/Parent 4822 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x5'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.5)
+/Next 4827 0 R
+/Prev 4825 0 R
+>>
+endobj
+4827 0 obj
+<<
+/Parent 4822 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X2xB'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (X2.B)
+/Prev 4826 0 R
+>>
+endobj
+4828 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PD1_X1)
+/Next 4834 0 R
+/Prev 4822 0 R
+/First 4829 0 R
+/Last 4833 0 R
+/Count -5
+>>
+endobj
+4829 0 obj
+<<
+/Parent 4828 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J73x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J73.1)
+/Next 4830 0 R
+>>
+endobj
+4830 0 obj
+<<
+/Parent 4828 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C12x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C12.2)
+/Next 4831 0 R
+/Prev 4829 0 R
+>>
+endobj
+4831 0 obj
+<<
+/Parent 4828 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J73x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J73.2)
+/Next 4832 0 R
+/Prev 4830 0 R
+>>
+endobj
+4832 0 obj
+<<
+/Parent 4828 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x6'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.6)
+/Next 4833 0 R
+/Prev 4831 0 R
+>>
+endobj
+4833 0 obj
+<<
+/Parent 4828 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='X2xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (X2.A)
+/Prev 4832 0 R
+>>
+endobj
+4834 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (PD2)
+/Next 4838 0 R
+/Prev 4828 0 R
+/First 4835 0 R
+/Last 4837 0 R
+/Count -3
+>>
+endobj
+4835 0 obj
+<<
+/Parent 4834 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J68x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J68.1)
+/Next 4836 0 R
+>>
+endobj
+4836 0 obj
+<<
+/Parent 4834 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J68x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J68.2)
+/Next 4837 0 R
+/Prev 4835 0 R
+>>
+endobj
+4837 0 obj
+<<
+/Parent 4834 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x54'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.54)
+/Prev 4836 0 R
+>>
+endobj
+4838 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (VBATT)
+/Next 4844 0 R
+/Prev 4834 0 R
+/First 4839 0 R
+/Last 4843 0 R
+/Count -5
+>>
+endobj
+4839 0 obj
+<<
+/Parent 4838 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J10x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J10.1)
+/Next 4840 0 R
+>>
+endobj
+4840 0 obj
+<<
+/Parent 4838 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.1)
+/Next 4841 0 R
+/Prev 4839 0 R
+>>
+endobj
+4841 0 obj
+<<
+/Parent 4838 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J10x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J10.2)
+/Next 4842 0 R
+/Prev 4840 0 R
+>>
+endobj
+4842 0 obj
+<<
+/Parent 4838 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D2xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D2.C)
+/Next 4843 0 R
+/Prev 4841 0 R
+>>
+endobj
+4843 0 obj
+<<
+/Parent 4838 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D3xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D3.C)
+/Prev 4842 0 R
+>>
+endobj
+4844 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (VCC)
+/Next 4853 0 R
+/Prev 4838 0 R
+/First 4845 0 R
+/Last 4852 0 R
+/Count -8
+>>
+endobj
+4845 0 obj
+<<
+/Parent 4844 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C4x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C4.2)
+/Next 4846 0 R
+>>
+endobj
+4846 0 obj
+<<
+/Parent 4844 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J65x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J65.2)
+/Next 4847 0 R
+/Prev 4845 0 R
+>>
+endobj
+4847 0 obj
+<<
+/Parent 4844 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U1x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U1.2)
+/Next 4848 0 R
+/Prev 4846 0 R
+>>
+endobj
+4848 0 obj
+<<
+/Parent 4844 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J2.3)
+/Next 4849 0 R
+/Prev 4847 0 R
+>>
+endobj
+4849 0 obj
+<<
+/Parent 4844 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J2x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J2.4)
+/Next 4850 0 R
+/Prev 4848 0 R
+>>
+endobj
+4850 0 obj
+<<
+/Parent 4844 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C3xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C3.A)
+/Next 4851 0 R
+/Prev 4849 0 R
+>>
+endobj
+4851 0 obj
+<<
+/Parent 4844 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D1xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D1.C)
+/Next 4852 0 R
+/Prev 4850 0 R
+>>
+endobj
+4852 0 obj
+<<
+/Parent 4844 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D4xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D4.C)
+/Prev 4851 0 R
+>>
+endobj
+4853 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (VDD)
+/Next 4887 0 R
+/Prev 4844 0 R
+/First 4854 0 R
+/Last 4886 0 R
+/Count -33
+>>
+endobj
+4854 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J13x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J13.1)
+/Next 4855 0 R
+>>
+endobj
+4855 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J15x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J15.1)
+/Next 4856 0 R
+/Prev 4854 0 R
+>>
+endobj
+4856 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51.1)
+/Next 4857 0 R
+/Prev 4855 0 R
+>>
+endobj
+4857 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='L1x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (L1.1)
+/Next 4858 0 R
+/Prev 4856 0 R
+>>
+endobj
+4858 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R15x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R15.1)
+/Next 4859 0 R
+/Prev 4857 0 R
+>>
+endobj
+4859 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C6x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C6.2)
+/Next 4860 0 R
+/Prev 4858 0 R
+>>
+endobj
+4860 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C8x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C8.2)
+/Next 4861 0 R
+/Prev 4859 0 R
+>>
+endobj
+4861 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C9x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C9.2)
+/Next 4862 0 R
+/Prev 4860 0 R
+>>
+endobj
+4862 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C10x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C10.2)
+/Next 4863 0 R
+/Prev 4861 0 R
+>>
+endobj
+4863 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C11x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C11.2)
+/Next 4864 0 R
+/Prev 4862 0 R
+>>
+endobj
+4864 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J13x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J13.2)
+/Next 4865 0 R
+/Prev 4863 0 R
+>>
+endobj
+4865 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J15x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J15.2)
+/Next 4866 0 R
+/Prev 4864 0 R
+>>
+endobj
+4866 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J51x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J51.2)
+/Next 4867 0 R
+/Prev 4865 0 R
+>>
+endobj
+4867 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J76x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J76.2)
+/Next 4868 0 R
+/Prev 4866 0 R
+>>
+endobj
+4868 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='JF1x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (JF1.2)
+/Next 4869 0 R
+/Prev 4867 0 R
+>>
+endobj
+4869 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R1x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R1.2)
+/Next 4870 0 R
+/Prev 4868 0 R
+>>
+endobj
+4870 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R8x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R8.2)
+/Next 4871 0 R
+/Prev 4869 0 R
+>>
+endobj
+4871 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R9x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R9.2)
+/Next 4872 0 R
+/Prev 4870 0 R
+>>
+endobj
+4872 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R10x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R10.2)
+/Next 4873 0 R
+/Prev 4871 0 R
+>>
+endobj
+4873 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='R11x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (R11.2)
+/Next 4874 0 R
+/Prev 4872 0 R
+>>
+endobj
+4874 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J1.3)
+/Next 4875 0 R
+/Prev 4873 0 R
+>>
+endobj
+4875 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U1x3'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U1.3)
+/Next 4876 0 R
+/Prev 4874 0 R
+>>
+endobj
+4876 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J1x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J1.4)
+/Next 4877 0 R
+/Prev 4875 0 R
+>>
+endobj
+4877 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U1x4'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U1.4)
+/Next 4878 0 R
+/Prev 4876 0 R
+>>
+endobj
+4878 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x19'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.19)
+/Next 4879 0 R
+/Prev 4877 0 R
+>>
+endobj
+4879 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x32'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.32)
+/Next 4880 0 R
+/Prev 4878 0 R
+>>
+endobj
+4880 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x48'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.48)
+/Next 4881 0 R
+/Prev 4879 0 R
+>>
+endobj
+4881 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x64'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.64)
+/Next 4882 0 R
+/Prev 4880 0 R
+>>
+endobj
+4882 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C5xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C5.A)
+/Next 4883 0 R
+/Prev 4881 0 R
+>>
+endobj
+4883 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D1xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D1.A)
+/Next 4884 0 R
+/Prev 4882 0 R
+>>
+endobj
+4884 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D2xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D2.A)
+/Next 4885 0 R
+/Prev 4883 0 R
+>>
+endobj
+4885 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='D5xC'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (D5.C)
+/Next 4886 0 R
+/Prev 4884 0 R
+>>
+endobj
+4886 0 obj
+<<
+/Parent 4853 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='Q1xS'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (Q1.S)
+/Prev 4885 0 R
+>>
+endobj
+4887 0 obj
+<<
+/Parent 4473 0 R
+/Dest [5 0 R /XYZ null null null]
+/Title (VDD_A)
+/Prev 4853 0 R
+/First 4888 0 R
+/Last 4893 0 R
+/Count -6
+>>
+endobj
+4888 0 obj
+<<
+/Parent 4887 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J4x1'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J4.1)
+/Next 4889 0 R
+>>
+endobj
+4889 0 obj
+<<
+/Parent 4887 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C2x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C2.2)
+/Next 4890 0 R
+/Prev 4888 0 R
+>>
+endobj
+4890 0 obj
+<<
+/Parent 4887 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='J4x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (J4.2)
+/Next 4891 0 R
+/Prev 4889 0 R
+>>
+endobj
+4891 0 obj
+<<
+/Parent 4887 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='L1x2'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (L1.2)
+/Next 4892 0 R
+/Prev 4890 0 R
+>>
+endobj
+4892 0 obj
+<<
+/Parent 4887 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='U2x13'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (U2.13)
+/Next 4893 0 R
+/Prev 4891 0 R
+>>
+endobj
+4893 0 obj
+<<
+/Parent 4887 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(0);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(0,i,true);if(m=='C1xA'){this.selectPageNthWord(0,i,true);break;}})
+>>
+/Title (C1.A)
+/Prev 4892 0 R
+>>
+endobj
+4894 0 obj
+<<
+/Parent 2 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (Bottom)
+/Next 5641 0 R
+/Prev 4194 0 R
+/First 4895 0 R
+/Last 5374 0 R
+/Count -2
+>>
+endobj
+4895 0 obj
+<<
+/Parent 4894 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (Components)
+/Next 5374 0 R
+/First 4896 0 R
+/Last 5371 0 R
+/Count -130
+>>
+endobj
+4896 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C1)
+/Next 4899 0 R
+/First 4897 0 R
+/Last 4898 0 R
+/Count -2
+>>
+endobj
+4897 0 obj
+<<
+/Parent 4896 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C1xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4898 0 R
+>>
+endobj
+4898 0 obj
+<<
+/Parent 4896 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C1xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4897 0 R
+>>
+endobj
+4899 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C2)
+/Next 4902 0 R
+/Prev 4896 0 R
+/First 4900 0 R
+/Last 4901 0 R
+/Count -2
+>>
+endobj
+4900 0 obj
+<<
+/Parent 4899 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C2x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4901 0 R
+>>
+endobj
+4901 0 obj
+<<
+/Parent 4899 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C2x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4900 0 R
+>>
+endobj
+4902 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C3)
+/Next 4905 0 R
+/Prev 4899 0 R
+/First 4903 0 R
+/Last 4904 0 R
+/Count -2
+>>
+endobj
+4903 0 obj
+<<
+/Parent 4902 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C3xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4904 0 R
+>>
+endobj
+4904 0 obj
+<<
+/Parent 4902 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C3xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4903 0 R
+>>
+endobj
+4905 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C4)
+/Next 4908 0 R
+/Prev 4902 0 R
+/First 4906 0 R
+/Last 4907 0 R
+/Count -2
+>>
+endobj
+4906 0 obj
+<<
+/Parent 4905 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C4x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4907 0 R
+>>
+endobj
+4907 0 obj
+<<
+/Parent 4905 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C4x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4906 0 R
+>>
+endobj
+4908 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C5)
+/Next 4911 0 R
+/Prev 4905 0 R
+/First 4909 0 R
+/Last 4910 0 R
+/Count -2
+>>
+endobj
+4909 0 obj
+<<
+/Parent 4908 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C5xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4910 0 R
+>>
+endobj
+4910 0 obj
+<<
+/Parent 4908 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C5xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4909 0 R
+>>
+endobj
+4911 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C6)
+/Next 4914 0 R
+/Prev 4908 0 R
+/First 4912 0 R
+/Last 4913 0 R
+/Count -2
+>>
+endobj
+4912 0 obj
+<<
+/Parent 4911 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C6x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4913 0 R
+>>
+endobj
+4913 0 obj
+<<
+/Parent 4911 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C6x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4912 0 R
+>>
+endobj
+4914 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C7'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C7)
+/Next 4917 0 R
+/Prev 4911 0 R
+/First 4915 0 R
+/Last 4916 0 R
+/Count -2
+>>
+endobj
+4915 0 obj
+<<
+/Parent 4914 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C7x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4916 0 R
+>>
+endobj
+4916 0 obj
+<<
+/Parent 4914 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C7x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4915 0 R
+>>
+endobj
+4917 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C8'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C8)
+/Next 4920 0 R
+/Prev 4914 0 R
+/First 4918 0 R
+/Last 4919 0 R
+/Count -2
+>>
+endobj
+4918 0 obj
+<<
+/Parent 4917 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C8x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4919 0 R
+>>
+endobj
+4919 0 obj
+<<
+/Parent 4917 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C8x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4918 0 R
+>>
+endobj
+4920 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C9'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C9)
+/Next 4923 0 R
+/Prev 4917 0 R
+/First 4921 0 R
+/Last 4922 0 R
+/Count -2
+>>
+endobj
+4921 0 obj
+<<
+/Parent 4920 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C9x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4922 0 R
+>>
+endobj
+4922 0 obj
+<<
+/Parent 4920 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C9x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4921 0 R
+>>
+endobj
+4923 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C10'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C10)
+/Next 4926 0 R
+/Prev 4920 0 R
+/First 4924 0 R
+/Last 4925 0 R
+/Count -2
+>>
+endobj
+4924 0 obj
+<<
+/Parent 4923 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C10x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4925 0 R
+>>
+endobj
+4925 0 obj
+<<
+/Parent 4923 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C10x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4924 0 R
+>>
+endobj
+4926 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C11'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C11)
+/Next 4929 0 R
+/Prev 4923 0 R
+/First 4927 0 R
+/Last 4928 0 R
+/Count -2
+>>
+endobj
+4927 0 obj
+<<
+/Parent 4926 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C11x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4928 0 R
+>>
+endobj
+4928 0 obj
+<<
+/Parent 4926 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C11x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4927 0 R
+>>
+endobj
+4929 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C12'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C12)
+/Next 4932 0 R
+/Prev 4926 0 R
+/First 4930 0 R
+/Last 4931 0 R
+/Count -2
+>>
+endobj
+4930 0 obj
+<<
+/Parent 4929 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C12x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4931 0 R
+>>
+endobj
+4931 0 obj
+<<
+/Parent 4929 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C12x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4930 0 R
+>>
+endobj
+4932 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C13'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C13)
+/Next 4935 0 R
+/Prev 4929 0 R
+/First 4933 0 R
+/Last 4934 0 R
+/Count -2
+>>
+endobj
+4933 0 obj
+<<
+/Parent 4932 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C13x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4934 0 R
+>>
+endobj
+4934 0 obj
+<<
+/Parent 4932 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C13x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4933 0 R
+>>
+endobj
+4935 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C14'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C14)
+/Next 4938 0 R
+/Prev 4932 0 R
+/First 4936 0 R
+/Last 4937 0 R
+/Count -2
+>>
+endobj
+4936 0 obj
+<<
+/Parent 4935 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C14x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4937 0 R
+>>
+endobj
+4937 0 obj
+<<
+/Parent 4935 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C14x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4936 0 R
+>>
+endobj
+4938 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C15'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C15)
+/Next 4941 0 R
+/Prev 4935 0 R
+/First 4939 0 R
+/Last 4940 0 R
+/Count -2
+>>
+endobj
+4939 0 obj
+<<
+/Parent 4938 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C15x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4940 0 R
+>>
+endobj
+4940 0 obj
+<<
+/Parent 4938 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C15x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4939 0 R
+>>
+endobj
+4941 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C16'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C16)
+/Next 4944 0 R
+/Prev 4938 0 R
+/First 4942 0 R
+/Last 4943 0 R
+/Count -2
+>>
+endobj
+4942 0 obj
+<<
+/Parent 4941 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C16x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4943 0 R
+>>
+endobj
+4943 0 obj
+<<
+/Parent 4941 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='C16x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4942 0 R
+>>
+endobj
+4944 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D1)
+/Next 4947 0 R
+/Prev 4941 0 R
+/First 4945 0 R
+/Last 4946 0 R
+/Count -2
+>>
+endobj
+4945 0 obj
+<<
+/Parent 4944 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D1xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4946 0 R
+>>
+endobj
+4946 0 obj
+<<
+/Parent 4944 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D1xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4945 0 R
+>>
+endobj
+4947 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D2)
+/Next 4950 0 R
+/Prev 4944 0 R
+/First 4948 0 R
+/Last 4949 0 R
+/Count -2
+>>
+endobj
+4948 0 obj
+<<
+/Parent 4947 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D2xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4949 0 R
+>>
+endobj
+4949 0 obj
+<<
+/Parent 4947 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D2xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4948 0 R
+>>
+endobj
+4950 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D3)
+/Next 4953 0 R
+/Prev 4947 0 R
+/First 4951 0 R
+/Last 4952 0 R
+/Count -2
+>>
+endobj
+4951 0 obj
+<<
+/Parent 4950 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D3xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4952 0 R
+>>
+endobj
+4952 0 obj
+<<
+/Parent 4950 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D3xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4951 0 R
+>>
+endobj
+4953 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D4)
+/Next 4956 0 R
+/Prev 4950 0 R
+/First 4954 0 R
+/Last 4955 0 R
+/Count -2
+>>
+endobj
+4954 0 obj
+<<
+/Parent 4953 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D4xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4955 0 R
+>>
+endobj
+4955 0 obj
+<<
+/Parent 4953 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D4xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4954 0 R
+>>
+endobj
+4956 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D5)
+/Next 4959 0 R
+/Prev 4953 0 R
+/First 4957 0 R
+/Last 4958 0 R
+/Count -2
+>>
+endobj
+4957 0 obj
+<<
+/Parent 4956 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D5xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4958 0 R
+>>
+endobj
+4958 0 obj
+<<
+/Parent 4956 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D5xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4957 0 R
+>>
+endobj
+4959 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D6)
+/Next 4962 0 R
+/Prev 4956 0 R
+/First 4960 0 R
+/Last 4961 0 R
+/Count -2
+>>
+endobj
+4960 0 obj
+<<
+/Parent 4959 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D6xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4961 0 R
+>>
+endobj
+4961 0 obj
+<<
+/Parent 4959 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D6xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4960 0 R
+>>
+endobj
+4962 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D7'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D7)
+/Next 4965 0 R
+/Prev 4959 0 R
+/First 4963 0 R
+/Last 4964 0 R
+/Count -2
+>>
+endobj
+4963 0 obj
+<<
+/Parent 4962 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D7xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4964 0 R
+>>
+endobj
+4964 0 obj
+<<
+/Parent 4962 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D7xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4963 0 R
+>>
+endobj
+4965 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D8'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D8)
+/Next 4968 0 R
+/Prev 4962 0 R
+/First 4966 0 R
+/Last 4967 0 R
+/Count -2
+>>
+endobj
+4966 0 obj
+<<
+/Parent 4965 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D8xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4967 0 R
+>>
+endobj
+4967 0 obj
+<<
+/Parent 4965 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D8xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4966 0 R
+>>
+endobj
+4968 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D9'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D9)
+/Next 4971 0 R
+/Prev 4965 0 R
+/First 4969 0 R
+/Last 4970 0 R
+/Count -2
+>>
+endobj
+4969 0 obj
+<<
+/Parent 4968 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D9xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 4970 0 R
+>>
+endobj
+4970 0 obj
+<<
+/Parent 4968 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D9xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (C)
+/Prev 4969 0 R
+>>
+endobj
+4971 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='F1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (F1)
+/Next 4974 0 R
+/Prev 4968 0 R
+/First 4972 0 R
+/Last 4973 0 R
+/Count -2
+>>
+endobj
+4972 0 obj
+<<
+/Parent 4971 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='F1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4973 0 R
+>>
+endobj
+4973 0 obj
+<<
+/Parent 4971 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='F1x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4972 0 R
+>>
+endobj
+4974 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J1)
+/Next 4981 0 R
+/Prev 4971 0 R
+/First 4975 0 R
+/Last 4980 0 R
+/Count -6
+>>
+endobj
+4975 0 obj
+<<
+/Parent 4974 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4976 0 R
+>>
+endobj
+4976 0 obj
+<<
+/Parent 4974 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Next 4977 0 R
+/Prev 4975 0 R
+>>
+endobj
+4977 0 obj
+<<
+/Parent 4974 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (3)
+/Next 4978 0 R
+/Prev 4976 0 R
+>>
+endobj
+4978 0 obj
+<<
+/Parent 4974 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (4)
+/Next 4979 0 R
+/Prev 4977 0 R
+>>
+endobj
+4979 0 obj
+<<
+/Parent 4974 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (5)
+/Next 4980 0 R
+/Prev 4978 0 R
+>>
+endobj
+4980 0 obj
+<<
+/Parent 4974 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (6)
+/Prev 4979 0 R
+>>
+endobj
+4981 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J2)
+/Next 4988 0 R
+/Prev 4974 0 R
+/First 4982 0 R
+/Last 4987 0 R
+/Count -6
+>>
+endobj
+4982 0 obj
+<<
+/Parent 4981 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4983 0 R
+>>
+endobj
+4983 0 obj
+<<
+/Parent 4981 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Next 4984 0 R
+/Prev 4982 0 R
+>>
+endobj
+4984 0 obj
+<<
+/Parent 4981 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (3)
+/Next 4985 0 R
+/Prev 4983 0 R
+>>
+endobj
+4985 0 obj
+<<
+/Parent 4981 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (4)
+/Next 4986 0 R
+/Prev 4984 0 R
+>>
+endobj
+4986 0 obj
+<<
+/Parent 4981 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (5)
+/Next 4987 0 R
+/Prev 4985 0 R
+>>
+endobj
+4987 0 obj
+<<
+/Parent 4981 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (6)
+/Prev 4986 0 R
+>>
+endobj
+4988 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J3)
+/Next 4991 0 R
+/Prev 4981 0 R
+/First 4989 0 R
+/Last 4990 0 R
+/Count -2
+>>
+endobj
+4989 0 obj
+<<
+/Parent 4988 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J3x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4990 0 R
+>>
+endobj
+4990 0 obj
+<<
+/Parent 4988 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J3x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4989 0 R
+>>
+endobj
+4991 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J4)
+/Next 4994 0 R
+/Prev 4988 0 R
+/First 4992 0 R
+/Last 4993 0 R
+/Count -2
+>>
+endobj
+4992 0 obj
+<<
+/Parent 4991 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J4x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4993 0 R
+>>
+endobj
+4993 0 obj
+<<
+/Parent 4991 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J4x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4992 0 R
+>>
+endobj
+4994 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J5)
+/Next 4997 0 R
+/Prev 4991 0 R
+/First 4995 0 R
+/Last 4996 0 R
+/Count -2
+>>
+endobj
+4995 0 obj
+<<
+/Parent 4994 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J5x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4996 0 R
+>>
+endobj
+4996 0 obj
+<<
+/Parent 4994 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J5x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4995 0 R
+>>
+endobj
+4997 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J6)
+/Next 5000 0 R
+/Prev 4994 0 R
+/First 4998 0 R
+/Last 4999 0 R
+/Count -2
+>>
+endobj
+4998 0 obj
+<<
+/Parent 4997 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J6x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 4999 0 R
+>>
+endobj
+4999 0 obj
+<<
+/Parent 4997 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J6x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 4998 0 R
+>>
+endobj
+5000 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J7'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J7)
+/Next 5003 0 R
+/Prev 4997 0 R
+/First 5001 0 R
+/Last 5002 0 R
+/Count -2
+>>
+endobj
+5001 0 obj
+<<
+/Parent 5000 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J7x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5002 0 R
+>>
+endobj
+5002 0 obj
+<<
+/Parent 5000 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J7x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5001 0 R
+>>
+endobj
+5003 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J8'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J8)
+/Next 5006 0 R
+/Prev 5000 0 R
+/First 5004 0 R
+/Last 5005 0 R
+/Count -2
+>>
+endobj
+5004 0 obj
+<<
+/Parent 5003 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J8x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5005 0 R
+>>
+endobj
+5005 0 obj
+<<
+/Parent 5003 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J8x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5004 0 R
+>>
+endobj
+5006 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J9'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J9)
+/Next 5009 0 R
+/Prev 5003 0 R
+/First 5007 0 R
+/Last 5008 0 R
+/Count -2
+>>
+endobj
+5007 0 obj
+<<
+/Parent 5006 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J9x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5008 0 R
+>>
+endobj
+5008 0 obj
+<<
+/Parent 5006 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J9x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5007 0 R
+>>
+endobj
+5009 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J10'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J10)
+/Next 5012 0 R
+/Prev 5006 0 R
+/First 5010 0 R
+/Last 5011 0 R
+/Count -2
+>>
+endobj
+5010 0 obj
+<<
+/Parent 5009 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J10x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5011 0 R
+>>
+endobj
+5011 0 obj
+<<
+/Parent 5009 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J10x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5010 0 R
+>>
+endobj
+5012 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J11'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J11)
+/Next 5015 0 R
+/Prev 5009 0 R
+/First 5013 0 R
+/Last 5014 0 R
+/Count -2
+>>
+endobj
+5013 0 obj
+<<
+/Parent 5012 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J11x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5014 0 R
+>>
+endobj
+5014 0 obj
+<<
+/Parent 5012 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J11x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5013 0 R
+>>
+endobj
+5015 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J12'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J12)
+/Next 5018 0 R
+/Prev 5012 0 R
+/First 5016 0 R
+/Last 5017 0 R
+/Count -2
+>>
+endobj
+5016 0 obj
+<<
+/Parent 5015 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J12x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5017 0 R
+>>
+endobj
+5017 0 obj
+<<
+/Parent 5015 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J12x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5016 0 R
+>>
+endobj
+5018 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J13'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J13)
+/Next 5021 0 R
+/Prev 5015 0 R
+/First 5019 0 R
+/Last 5020 0 R
+/Count -2
+>>
+endobj
+5019 0 obj
+<<
+/Parent 5018 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J13x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5020 0 R
+>>
+endobj
+5020 0 obj
+<<
+/Parent 5018 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J13x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5019 0 R
+>>
+endobj
+5021 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J14'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J14)
+/Next 5024 0 R
+/Prev 5018 0 R
+/First 5022 0 R
+/Last 5023 0 R
+/Count -2
+>>
+endobj
+5022 0 obj
+<<
+/Parent 5021 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J14x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5023 0 R
+>>
+endobj
+5023 0 obj
+<<
+/Parent 5021 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J14x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5022 0 R
+>>
+endobj
+5024 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J15'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J15)
+/Next 5027 0 R
+/Prev 5021 0 R
+/First 5025 0 R
+/Last 5026 0 R
+/Count -2
+>>
+endobj
+5025 0 obj
+<<
+/Parent 5024 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J15x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5026 0 R
+>>
+endobj
+5026 0 obj
+<<
+/Parent 5024 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J15x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5025 0 R
+>>
+endobj
+5027 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J16'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J16)
+/Next 5030 0 R
+/Prev 5024 0 R
+/First 5028 0 R
+/Last 5029 0 R
+/Count -2
+>>
+endobj
+5028 0 obj
+<<
+/Parent 5027 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J16x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5029 0 R
+>>
+endobj
+5029 0 obj
+<<
+/Parent 5027 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J16x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5028 0 R
+>>
+endobj
+5030 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J18'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J18)
+/Next 5033 0 R
+/Prev 5027 0 R
+/First 5031 0 R
+/Last 5032 0 R
+/Count -2
+>>
+endobj
+5031 0 obj
+<<
+/Parent 5030 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J18x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5032 0 R
+>>
+endobj
+5032 0 obj
+<<
+/Parent 5030 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J18x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5031 0 R
+>>
+endobj
+5033 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J20'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J20)
+/Next 5036 0 R
+/Prev 5030 0 R
+/First 5034 0 R
+/Last 5035 0 R
+/Count -2
+>>
+endobj
+5034 0 obj
+<<
+/Parent 5033 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J20x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5035 0 R
+>>
+endobj
+5035 0 obj
+<<
+/Parent 5033 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J20x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5034 0 R
+>>
+endobj
+5036 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J21'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J21)
+/Next 5039 0 R
+/Prev 5033 0 R
+/First 5037 0 R
+/Last 5038 0 R
+/Count -2
+>>
+endobj
+5037 0 obj
+<<
+/Parent 5036 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J21x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5038 0 R
+>>
+endobj
+5038 0 obj
+<<
+/Parent 5036 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J21x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5037 0 R
+>>
+endobj
+5039 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J22'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J22)
+/Next 5042 0 R
+/Prev 5036 0 R
+/First 5040 0 R
+/Last 5041 0 R
+/Count -2
+>>
+endobj
+5040 0 obj
+<<
+/Parent 5039 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J22x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5041 0 R
+>>
+endobj
+5041 0 obj
+<<
+/Parent 5039 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J22x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5040 0 R
+>>
+endobj
+5042 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J23'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J23)
+/Next 5045 0 R
+/Prev 5039 0 R
+/First 5043 0 R
+/Last 5044 0 R
+/Count -2
+>>
+endobj
+5043 0 obj
+<<
+/Parent 5042 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J23x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5044 0 R
+>>
+endobj
+5044 0 obj
+<<
+/Parent 5042 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J23x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5043 0 R
+>>
+endobj
+5045 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J24'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J24)
+/Next 5048 0 R
+/Prev 5042 0 R
+/First 5046 0 R
+/Last 5047 0 R
+/Count -2
+>>
+endobj
+5046 0 obj
+<<
+/Parent 5045 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J24x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5047 0 R
+>>
+endobj
+5047 0 obj
+<<
+/Parent 5045 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J24x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5046 0 R
+>>
+endobj
+5048 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J25'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J25)
+/Next 5051 0 R
+/Prev 5045 0 R
+/First 5049 0 R
+/Last 5050 0 R
+/Count -2
+>>
+endobj
+5049 0 obj
+<<
+/Parent 5048 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J25x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5050 0 R
+>>
+endobj
+5050 0 obj
+<<
+/Parent 5048 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J25x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5049 0 R
+>>
+endobj
+5051 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J26'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J26)
+/Next 5054 0 R
+/Prev 5048 0 R
+/First 5052 0 R
+/Last 5053 0 R
+/Count -2
+>>
+endobj
+5052 0 obj
+<<
+/Parent 5051 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J26x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5053 0 R
+>>
+endobj
+5053 0 obj
+<<
+/Parent 5051 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J26x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5052 0 R
+>>
+endobj
+5054 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J27'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J27)
+/Next 5057 0 R
+/Prev 5051 0 R
+/First 5055 0 R
+/Last 5056 0 R
+/Count -2
+>>
+endobj
+5055 0 obj
+<<
+/Parent 5054 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J27x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5056 0 R
+>>
+endobj
+5056 0 obj
+<<
+/Parent 5054 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J27x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5055 0 R
+>>
+endobj
+5057 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J28'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J28)
+/Next 5060 0 R
+/Prev 5054 0 R
+/First 5058 0 R
+/Last 5059 0 R
+/Count -2
+>>
+endobj
+5058 0 obj
+<<
+/Parent 5057 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J28x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5059 0 R
+>>
+endobj
+5059 0 obj
+<<
+/Parent 5057 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J28x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5058 0 R
+>>
+endobj
+5060 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J29'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J29)
+/Next 5063 0 R
+/Prev 5057 0 R
+/First 5061 0 R
+/Last 5062 0 R
+/Count -2
+>>
+endobj
+5061 0 obj
+<<
+/Parent 5060 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J29x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5062 0 R
+>>
+endobj
+5062 0 obj
+<<
+/Parent 5060 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J29x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5061 0 R
+>>
+endobj
+5063 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J31'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J31)
+/Next 5066 0 R
+/Prev 5060 0 R
+/First 5064 0 R
+/Last 5065 0 R
+/Count -2
+>>
+endobj
+5064 0 obj
+<<
+/Parent 5063 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J31x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5065 0 R
+>>
+endobj
+5065 0 obj
+<<
+/Parent 5063 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J31x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5064 0 R
+>>
+endobj
+5066 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J33'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J33)
+/Next 5069 0 R
+/Prev 5063 0 R
+/First 5067 0 R
+/Last 5068 0 R
+/Count -2
+>>
+endobj
+5067 0 obj
+<<
+/Parent 5066 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J33x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5068 0 R
+>>
+endobj
+5068 0 obj
+<<
+/Parent 5066 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J33x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5067 0 R
+>>
+endobj
+5069 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J34'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J34)
+/Next 5072 0 R
+/Prev 5066 0 R
+/First 5070 0 R
+/Last 5071 0 R
+/Count -2
+>>
+endobj
+5070 0 obj
+<<
+/Parent 5069 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J34x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5071 0 R
+>>
+endobj
+5071 0 obj
+<<
+/Parent 5069 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J34x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5070 0 R
+>>
+endobj
+5072 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J35'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J35)
+/Next 5075 0 R
+/Prev 5069 0 R
+/First 5073 0 R
+/Last 5074 0 R
+/Count -2
+>>
+endobj
+5073 0 obj
+<<
+/Parent 5072 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J35x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5074 0 R
+>>
+endobj
+5074 0 obj
+<<
+/Parent 5072 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J35x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5073 0 R
+>>
+endobj
+5075 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J36'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J36)
+/Next 5078 0 R
+/Prev 5072 0 R
+/First 5076 0 R
+/Last 5077 0 R
+/Count -2
+>>
+endobj
+5076 0 obj
+<<
+/Parent 5075 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J36x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5077 0 R
+>>
+endobj
+5077 0 obj
+<<
+/Parent 5075 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J36x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5076 0 R
+>>
+endobj
+5078 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J37'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J37)
+/Next 5081 0 R
+/Prev 5075 0 R
+/First 5079 0 R
+/Last 5080 0 R
+/Count -2
+>>
+endobj
+5079 0 obj
+<<
+/Parent 5078 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J37x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5080 0 R
+>>
+endobj
+5080 0 obj
+<<
+/Parent 5078 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J37x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5079 0 R
+>>
+endobj
+5081 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J38'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J38)
+/Next 5084 0 R
+/Prev 5078 0 R
+/First 5082 0 R
+/Last 5083 0 R
+/Count -2
+>>
+endobj
+5082 0 obj
+<<
+/Parent 5081 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J38x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5083 0 R
+>>
+endobj
+5083 0 obj
+<<
+/Parent 5081 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J38x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5082 0 R
+>>
+endobj
+5084 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J39'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J39)
+/Next 5087 0 R
+/Prev 5081 0 R
+/First 5085 0 R
+/Last 5086 0 R
+/Count -2
+>>
+endobj
+5085 0 obj
+<<
+/Parent 5084 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J39x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5086 0 R
+>>
+endobj
+5086 0 obj
+<<
+/Parent 5084 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J39x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5085 0 R
+>>
+endobj
+5087 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J40'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J40)
+/Next 5090 0 R
+/Prev 5084 0 R
+/First 5088 0 R
+/Last 5089 0 R
+/Count -2
+>>
+endobj
+5088 0 obj
+<<
+/Parent 5087 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J40x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5089 0 R
+>>
+endobj
+5089 0 obj
+<<
+/Parent 5087 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J40x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5088 0 R
+>>
+endobj
+5090 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J41'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J41)
+/Next 5093 0 R
+/Prev 5087 0 R
+/First 5091 0 R
+/Last 5092 0 R
+/Count -2
+>>
+endobj
+5091 0 obj
+<<
+/Parent 5090 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J41x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5092 0 R
+>>
+endobj
+5092 0 obj
+<<
+/Parent 5090 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J41x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5091 0 R
+>>
+endobj
+5093 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J42'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J42)
+/Next 5096 0 R
+/Prev 5090 0 R
+/First 5094 0 R
+/Last 5095 0 R
+/Count -2
+>>
+endobj
+5094 0 obj
+<<
+/Parent 5093 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J42x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5095 0 R
+>>
+endobj
+5095 0 obj
+<<
+/Parent 5093 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J42x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5094 0 R
+>>
+endobj
+5096 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J43'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J43)
+/Next 5099 0 R
+/Prev 5093 0 R
+/First 5097 0 R
+/Last 5098 0 R
+/Count -2
+>>
+endobj
+5097 0 obj
+<<
+/Parent 5096 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J43x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5098 0 R
+>>
+endobj
+5098 0 obj
+<<
+/Parent 5096 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J43x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5097 0 R
+>>
+endobj
+5099 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J44'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J44)
+/Next 5102 0 R
+/Prev 5096 0 R
+/First 5100 0 R
+/Last 5101 0 R
+/Count -2
+>>
+endobj
+5100 0 obj
+<<
+/Parent 5099 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J44x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5101 0 R
+>>
+endobj
+5101 0 obj
+<<
+/Parent 5099 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J44x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5100 0 R
+>>
+endobj
+5102 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J45'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J45)
+/Next 5105 0 R
+/Prev 5099 0 R
+/First 5103 0 R
+/Last 5104 0 R
+/Count -2
+>>
+endobj
+5103 0 obj
+<<
+/Parent 5102 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J45x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5104 0 R
+>>
+endobj
+5104 0 obj
+<<
+/Parent 5102 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J45x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5103 0 R
+>>
+endobj
+5105 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J46'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J46)
+/Next 5108 0 R
+/Prev 5102 0 R
+/First 5106 0 R
+/Last 5107 0 R
+/Count -2
+>>
+endobj
+5106 0 obj
+<<
+/Parent 5105 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J46x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5107 0 R
+>>
+endobj
+5107 0 obj
+<<
+/Parent 5105 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J46x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5106 0 R
+>>
+endobj
+5108 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J47'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J47)
+/Next 5111 0 R
+/Prev 5105 0 R
+/First 5109 0 R
+/Last 5110 0 R
+/Count -2
+>>
+endobj
+5109 0 obj
+<<
+/Parent 5108 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J47x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5110 0 R
+>>
+endobj
+5110 0 obj
+<<
+/Parent 5108 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J47x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5109 0 R
+>>
+endobj
+5111 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J48'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J48)
+/Next 5114 0 R
+/Prev 5108 0 R
+/First 5112 0 R
+/Last 5113 0 R
+/Count -2
+>>
+endobj
+5112 0 obj
+<<
+/Parent 5111 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J48x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5113 0 R
+>>
+endobj
+5113 0 obj
+<<
+/Parent 5111 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J48x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5112 0 R
+>>
+endobj
+5114 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J49'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J49)
+/Next 5117 0 R
+/Prev 5111 0 R
+/First 5115 0 R
+/Last 5116 0 R
+/Count -2
+>>
+endobj
+5115 0 obj
+<<
+/Parent 5114 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J49x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5116 0 R
+>>
+endobj
+5116 0 obj
+<<
+/Parent 5114 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J49x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5115 0 R
+>>
+endobj
+5117 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J50'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J50)
+/Next 5120 0 R
+/Prev 5114 0 R
+/First 5118 0 R
+/Last 5119 0 R
+/Count -2
+>>
+endobj
+5118 0 obj
+<<
+/Parent 5117 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J50x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5119 0 R
+>>
+endobj
+5119 0 obj
+<<
+/Parent 5117 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J50x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5118 0 R
+>>
+endobj
+5120 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51)
+/Next 5131 0 R
+/Prev 5117 0 R
+/First 5121 0 R
+/Last 5130 0 R
+/Count -10
+>>
+endobj
+5121 0 obj
+<<
+/Parent 5120 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5122 0 R
+>>
+endobj
+5122 0 obj
+<<
+/Parent 5120 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Next 5123 0 R
+/Prev 5121 0 R
+>>
+endobj
+5123 0 obj
+<<
+/Parent 5120 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (3)
+/Next 5124 0 R
+/Prev 5122 0 R
+>>
+endobj
+5124 0 obj
+<<
+/Parent 5120 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (4)
+/Next 5125 0 R
+/Prev 5123 0 R
+>>
+endobj
+5125 0 obj
+<<
+/Parent 5120 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (5)
+/Next 5126 0 R
+/Prev 5124 0 R
+>>
+endobj
+5126 0 obj
+<<
+/Parent 5120 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (6)
+/Next 5127 0 R
+/Prev 5125 0 R
+>>
+endobj
+5127 0 obj
+<<
+/Parent 5120 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x7'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (7)
+/Next 5128 0 R
+/Prev 5126 0 R
+>>
+endobj
+5128 0 obj
+<<
+/Parent 5120 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x8'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (8)
+/Next 5129 0 R
+/Prev 5127 0 R
+>>
+endobj
+5129 0 obj
+<<
+/Parent 5120 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x9'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (9)
+/Next 5130 0 R
+/Prev 5128 0 R
+>>
+endobj
+5130 0 obj
+<<
+/Parent 5120 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x10'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (10)
+/Prev 5129 0 R
+>>
+endobj
+5131 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J52'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J52)
+/Next 5134 0 R
+/Prev 5120 0 R
+/First 5132 0 R
+/Last 5133 0 R
+/Count -2
+>>
+endobj
+5132 0 obj
+<<
+/Parent 5131 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J52x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5133 0 R
+>>
+endobj
+5133 0 obj
+<<
+/Parent 5131 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J52x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5132 0 R
+>>
+endobj
+5134 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J53'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J53)
+/Next 5137 0 R
+/Prev 5131 0 R
+/First 5135 0 R
+/Last 5136 0 R
+/Count -2
+>>
+endobj
+5135 0 obj
+<<
+/Parent 5134 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J53x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5136 0 R
+>>
+endobj
+5136 0 obj
+<<
+/Parent 5134 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J53x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5135 0 R
+>>
+endobj
+5137 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J54'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J54)
+/Next 5140 0 R
+/Prev 5134 0 R
+/First 5138 0 R
+/Last 5139 0 R
+/Count -2
+>>
+endobj
+5138 0 obj
+<<
+/Parent 5137 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J54x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5139 0 R
+>>
+endobj
+5139 0 obj
+<<
+/Parent 5137 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J54x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5138 0 R
+>>
+endobj
+5140 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J55'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J55)
+/Next 5143 0 R
+/Prev 5137 0 R
+/First 5141 0 R
+/Last 5142 0 R
+/Count -2
+>>
+endobj
+5141 0 obj
+<<
+/Parent 5140 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J55x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5142 0 R
+>>
+endobj
+5142 0 obj
+<<
+/Parent 5140 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J55x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5141 0 R
+>>
+endobj
+5143 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J56'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J56)
+/Next 5146 0 R
+/Prev 5140 0 R
+/First 5144 0 R
+/Last 5145 0 R
+/Count -2
+>>
+endobj
+5144 0 obj
+<<
+/Parent 5143 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J56x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5145 0 R
+>>
+endobj
+5145 0 obj
+<<
+/Parent 5143 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J56x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5144 0 R
+>>
+endobj
+5146 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J57'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J57)
+/Next 5149 0 R
+/Prev 5143 0 R
+/First 5147 0 R
+/Last 5148 0 R
+/Count -2
+>>
+endobj
+5147 0 obj
+<<
+/Parent 5146 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J57x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5148 0 R
+>>
+endobj
+5148 0 obj
+<<
+/Parent 5146 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J57x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5147 0 R
+>>
+endobj
+5149 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J58'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J58)
+/Next 5152 0 R
+/Prev 5146 0 R
+/First 5150 0 R
+/Last 5151 0 R
+/Count -2
+>>
+endobj
+5150 0 obj
+<<
+/Parent 5149 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J58x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5151 0 R
+>>
+endobj
+5151 0 obj
+<<
+/Parent 5149 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J58x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5150 0 R
+>>
+endobj
+5152 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J59'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J59)
+/Next 5155 0 R
+/Prev 5149 0 R
+/First 5153 0 R
+/Last 5154 0 R
+/Count -2
+>>
+endobj
+5153 0 obj
+<<
+/Parent 5152 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J59x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5154 0 R
+>>
+endobj
+5154 0 obj
+<<
+/Parent 5152 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J59x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5153 0 R
+>>
+endobj
+5155 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J60'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J60)
+/Next 5158 0 R
+/Prev 5152 0 R
+/First 5156 0 R
+/Last 5157 0 R
+/Count -2
+>>
+endobj
+5156 0 obj
+<<
+/Parent 5155 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J60x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5157 0 R
+>>
+endobj
+5157 0 obj
+<<
+/Parent 5155 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J60x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5156 0 R
+>>
+endobj
+5158 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J61'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J61)
+/Next 5161 0 R
+/Prev 5155 0 R
+/First 5159 0 R
+/Last 5160 0 R
+/Count -2
+>>
+endobj
+5159 0 obj
+<<
+/Parent 5158 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J61x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5160 0 R
+>>
+endobj
+5160 0 obj
+<<
+/Parent 5158 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J61x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5159 0 R
+>>
+endobj
+5161 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J62'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J62)
+/Next 5164 0 R
+/Prev 5158 0 R
+/First 5162 0 R
+/Last 5163 0 R
+/Count -2
+>>
+endobj
+5162 0 obj
+<<
+/Parent 5161 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J62x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5163 0 R
+>>
+endobj
+5163 0 obj
+<<
+/Parent 5161 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J62x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5162 0 R
+>>
+endobj
+5164 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J63'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J63)
+/Next 5167 0 R
+/Prev 5161 0 R
+/First 5165 0 R
+/Last 5166 0 R
+/Count -2
+>>
+endobj
+5165 0 obj
+<<
+/Parent 5164 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J63x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5166 0 R
+>>
+endobj
+5166 0 obj
+<<
+/Parent 5164 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J63x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5165 0 R
+>>
+endobj
+5167 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J64'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J64)
+/Next 5170 0 R
+/Prev 5164 0 R
+/First 5168 0 R
+/Last 5169 0 R
+/Count -2
+>>
+endobj
+5168 0 obj
+<<
+/Parent 5167 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J64x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5169 0 R
+>>
+endobj
+5169 0 obj
+<<
+/Parent 5167 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J64x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5168 0 R
+>>
+endobj
+5170 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J65'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J65)
+/Next 5173 0 R
+/Prev 5167 0 R
+/First 5171 0 R
+/Last 5172 0 R
+/Count -2
+>>
+endobj
+5171 0 obj
+<<
+/Parent 5170 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J65x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5172 0 R
+>>
+endobj
+5172 0 obj
+<<
+/Parent 5170 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J65x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5171 0 R
+>>
+endobj
+5173 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J66'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J66)
+/Next 5176 0 R
+/Prev 5170 0 R
+/First 5174 0 R
+/Last 5175 0 R
+/Count -2
+>>
+endobj
+5174 0 obj
+<<
+/Parent 5173 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J66x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5175 0 R
+>>
+endobj
+5175 0 obj
+<<
+/Parent 5173 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J66x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5174 0 R
+>>
+endobj
+5176 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J67'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J67)
+/Next 5179 0 R
+/Prev 5173 0 R
+/First 5177 0 R
+/Last 5178 0 R
+/Count -2
+>>
+endobj
+5177 0 obj
+<<
+/Parent 5176 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J67x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5178 0 R
+>>
+endobj
+5178 0 obj
+<<
+/Parent 5176 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J67x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5177 0 R
+>>
+endobj
+5179 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J68'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J68)
+/Next 5182 0 R
+/Prev 5176 0 R
+/First 5180 0 R
+/Last 5181 0 R
+/Count -2
+>>
+endobj
+5180 0 obj
+<<
+/Parent 5179 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J68x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5181 0 R
+>>
+endobj
+5181 0 obj
+<<
+/Parent 5179 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J68x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5180 0 R
+>>
+endobj
+5182 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J69)
+/Next 5189 0 R
+/Prev 5179 0 R
+/First 5183 0 R
+/Last 5188 0 R
+/Count -6
+>>
+endobj
+5183 0 obj
+<<
+/Parent 5182 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5184 0 R
+>>
+endobj
+5184 0 obj
+<<
+/Parent 5182 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Next 5185 0 R
+/Prev 5183 0 R
+>>
+endobj
+5185 0 obj
+<<
+/Parent 5182 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (3)
+/Next 5186 0 R
+/Prev 5184 0 R
+>>
+endobj
+5186 0 obj
+<<
+/Parent 5182 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (4)
+/Next 5187 0 R
+/Prev 5185 0 R
+>>
+endobj
+5187 0 obj
+<<
+/Parent 5182 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (5)
+/Next 5188 0 R
+/Prev 5186 0 R
+>>
+endobj
+5188 0 obj
+<<
+/Parent 5182 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (6)
+/Prev 5187 0 R
+>>
+endobj
+5189 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J70'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J70)
+/Next 5192 0 R
+/Prev 5182 0 R
+/First 5190 0 R
+/Last 5191 0 R
+/Count -2
+>>
+endobj
+5190 0 obj
+<<
+/Parent 5189 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J70x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5191 0 R
+>>
+endobj
+5191 0 obj
+<<
+/Parent 5189 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J70x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5190 0 R
+>>
+endobj
+5192 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J71'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J71)
+/Next 5195 0 R
+/Prev 5189 0 R
+/First 5193 0 R
+/Last 5194 0 R
+/Count -2
+>>
+endobj
+5193 0 obj
+<<
+/Parent 5192 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J71x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5194 0 R
+>>
+endobj
+5194 0 obj
+<<
+/Parent 5192 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J71x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5193 0 R
+>>
+endobj
+5195 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J72'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J72)
+/Next 5198 0 R
+/Prev 5192 0 R
+/First 5196 0 R
+/Last 5197 0 R
+/Count -2
+>>
+endobj
+5196 0 obj
+<<
+/Parent 5195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J72x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5197 0 R
+>>
+endobj
+5197 0 obj
+<<
+/Parent 5195 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J72x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5196 0 R
+>>
+endobj
+5198 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J73'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J73)
+/Next 5201 0 R
+/Prev 5195 0 R
+/First 5199 0 R
+/Last 5200 0 R
+/Count -2
+>>
+endobj
+5199 0 obj
+<<
+/Parent 5198 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J73x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5200 0 R
+>>
+endobj
+5200 0 obj
+<<
+/Parent 5198 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J73x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5199 0 R
+>>
+endobj
+5201 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J74'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J74)
+/Next 5204 0 R
+/Prev 5198 0 R
+/First 5202 0 R
+/Last 5203 0 R
+/Count -2
+>>
+endobj
+5202 0 obj
+<<
+/Parent 5201 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J74x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5203 0 R
+>>
+endobj
+5203 0 obj
+<<
+/Parent 5201 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J74x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5202 0 R
+>>
+endobj
+5204 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J75'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J75)
+/Next 5207 0 R
+/Prev 5201 0 R
+/First 5205 0 R
+/Last 5206 0 R
+/Count -2
+>>
+endobj
+5205 0 obj
+<<
+/Parent 5204 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J75x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5206 0 R
+>>
+endobj
+5206 0 obj
+<<
+/Parent 5204 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J75x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5205 0 R
+>>
+endobj
+5207 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J76'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J76)
+/Next 5210 0 R
+/Prev 5204 0 R
+/First 5208 0 R
+/Last 5209 0 R
+/Count -2
+>>
+endobj
+5208 0 obj
+<<
+/Parent 5207 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J76x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5209 0 R
+>>
+endobj
+5209 0 obj
+<<
+/Parent 5207 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J76x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5208 0 R
+>>
+endobj
+5210 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (JF1)
+/Next 5217 0 R
+/Prev 5207 0 R
+/First 5211 0 R
+/Last 5216 0 R
+/Count -6
+>>
+endobj
+5211 0 obj
+<<
+/Parent 5210 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5212 0 R
+>>
+endobj
+5212 0 obj
+<<
+/Parent 5210 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Next 5213 0 R
+/Prev 5211 0 R
+>>
+endobj
+5213 0 obj
+<<
+/Parent 5210 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (3)
+/Next 5214 0 R
+/Prev 5212 0 R
+>>
+endobj
+5214 0 obj
+<<
+/Parent 5210 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (4)
+/Next 5215 0 R
+/Prev 5213 0 R
+>>
+endobj
+5215 0 obj
+<<
+/Parent 5210 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (5)
+/Next 5216 0 R
+/Prev 5214 0 R
+>>
+endobj
+5216 0 obj
+<<
+/Parent 5210 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (6)
+/Prev 5215 0 R
+>>
+endobj
+5217 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (JF2)
+/Next 5219 0 R
+/Prev 5210 0 R
+/First 5218 0 R
+/Last 5218 0 R
+/Count -1
+>>
+endobj
+5218 0 obj
+<<
+/Parent 5217 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF2x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+5219 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='L1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (L1)
+/Next 5222 0 R
+/Prev 5217 0 R
+/First 5220 0 R
+/Last 5221 0 R
+/Count -2
+>>
+endobj
+5220 0 obj
+<<
+/Parent 5219 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='L1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5221 0 R
+>>
+endobj
+5221 0 obj
+<<
+/Parent 5219 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='L1x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5220 0 R
+>>
+endobj
+5222 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='L2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (L2)
+/Next 5225 0 R
+/Prev 5219 0 R
+/First 5223 0 R
+/Last 5224 0 R
+/Count -2
+>>
+endobj
+5223 0 obj
+<<
+/Parent 5222 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='L2x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5224 0 R
+>>
+endobj
+5224 0 obj
+<<
+/Parent 5222 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='L2x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5223 0 R
+>>
+endobj
+5225 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (M1)
+/Next 5227 0 R
+/Prev 5222 0 R
+/First 5226 0 R
+/Last 5226 0 R
+/Count -1
+>>
+endobj
+5226 0 obj
+<<
+/Parent 5225 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+5227 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (M2)
+/Next 5229 0 R
+/Prev 5225 0 R
+/First 5228 0 R
+/Last 5228 0 R
+/Count -1
+>>
+endobj
+5228 0 obj
+<<
+/Parent 5227 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M2x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+5229 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (M3)
+/Next 5231 0 R
+/Prev 5227 0 R
+/First 5230 0 R
+/Last 5230 0 R
+/Count -1
+>>
+endobj
+5230 0 obj
+<<
+/Parent 5229 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M3x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+5231 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (M4)
+/Next 5233 0 R
+/Prev 5229 0 R
+/First 5232 0 R
+/Last 5232 0 R
+/Count -1
+>>
+endobj
+5232 0 obj
+<<
+/Parent 5231 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M4x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+5233 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (M5)
+/Next 5235 0 R
+/Prev 5231 0 R
+/First 5234 0 R
+/Last 5234 0 R
+/Count -1
+>>
+endobj
+5234 0 obj
+<<
+/Parent 5233 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M5x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+5235 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='Q1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (Q1)
+/Next 5239 0 R
+/Prev 5233 0 R
+/First 5236 0 R
+/Last 5238 0 R
+/Count -3
+>>
+endobj
+5236 0 obj
+<<
+/Parent 5235 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='Q1xD'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D)
+/Next 5237 0 R
+>>
+endobj
+5237 0 obj
+<<
+/Parent 5235 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='Q1xG'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (G)
+/Next 5238 0 R
+/Prev 5236 0 R
+>>
+endobj
+5238 0 obj
+<<
+/Parent 5235 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='Q1xS'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (S)
+/Prev 5237 0 R
+>>
+endobj
+5239 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R1)
+/Next 5242 0 R
+/Prev 5235 0 R
+/First 5240 0 R
+/Last 5241 0 R
+/Count -2
+>>
+endobj
+5240 0 obj
+<<
+/Parent 5239 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5241 0 R
+>>
+endobj
+5241 0 obj
+<<
+/Parent 5239 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R1x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5240 0 R
+>>
+endobj
+5242 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R2)
+/Next 5245 0 R
+/Prev 5239 0 R
+/First 5243 0 R
+/Last 5244 0 R
+/Count -2
+>>
+endobj
+5243 0 obj
+<<
+/Parent 5242 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R2x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5244 0 R
+>>
+endobj
+5244 0 obj
+<<
+/Parent 5242 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R2x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5243 0 R
+>>
+endobj
+5245 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R3)
+/Next 5248 0 R
+/Prev 5242 0 R
+/First 5246 0 R
+/Last 5247 0 R
+/Count -2
+>>
+endobj
+5246 0 obj
+<<
+/Parent 5245 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R3x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5247 0 R
+>>
+endobj
+5247 0 obj
+<<
+/Parent 5245 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R3x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5246 0 R
+>>
+endobj
+5248 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R4)
+/Next 5251 0 R
+/Prev 5245 0 R
+/First 5249 0 R
+/Last 5250 0 R
+/Count -2
+>>
+endobj
+5249 0 obj
+<<
+/Parent 5248 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R4x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5250 0 R
+>>
+endobj
+5250 0 obj
+<<
+/Parent 5248 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R4x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5249 0 R
+>>
+endobj
+5251 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R5)
+/Next 5254 0 R
+/Prev 5248 0 R
+/First 5252 0 R
+/Last 5253 0 R
+/Count -2
+>>
+endobj
+5252 0 obj
+<<
+/Parent 5251 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R5x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5253 0 R
+>>
+endobj
+5253 0 obj
+<<
+/Parent 5251 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R5x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5252 0 R
+>>
+endobj
+5254 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R6)
+/Next 5257 0 R
+/Prev 5251 0 R
+/First 5255 0 R
+/Last 5256 0 R
+/Count -2
+>>
+endobj
+5255 0 obj
+<<
+/Parent 5254 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R6x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5256 0 R
+>>
+endobj
+5256 0 obj
+<<
+/Parent 5254 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R6x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5255 0 R
+>>
+endobj
+5257 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R7'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R7)
+/Next 5260 0 R
+/Prev 5254 0 R
+/First 5258 0 R
+/Last 5259 0 R
+/Count -2
+>>
+endobj
+5258 0 obj
+<<
+/Parent 5257 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R7x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5259 0 R
+>>
+endobj
+5259 0 obj
+<<
+/Parent 5257 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R7x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5258 0 R
+>>
+endobj
+5260 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R8'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R8)
+/Next 5263 0 R
+/Prev 5257 0 R
+/First 5261 0 R
+/Last 5262 0 R
+/Count -2
+>>
+endobj
+5261 0 obj
+<<
+/Parent 5260 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R8x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5262 0 R
+>>
+endobj
+5262 0 obj
+<<
+/Parent 5260 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R8x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5261 0 R
+>>
+endobj
+5263 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R9'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R9)
+/Next 5266 0 R
+/Prev 5260 0 R
+/First 5264 0 R
+/Last 5265 0 R
+/Count -2
+>>
+endobj
+5264 0 obj
+<<
+/Parent 5263 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R9x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5265 0 R
+>>
+endobj
+5265 0 obj
+<<
+/Parent 5263 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R9x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5264 0 R
+>>
+endobj
+5266 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R10'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R10)
+/Next 5269 0 R
+/Prev 5263 0 R
+/First 5267 0 R
+/Last 5268 0 R
+/Count -2
+>>
+endobj
+5267 0 obj
+<<
+/Parent 5266 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R10x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5268 0 R
+>>
+endobj
+5268 0 obj
+<<
+/Parent 5266 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R10x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5267 0 R
+>>
+endobj
+5269 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R11'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R11)
+/Next 5272 0 R
+/Prev 5266 0 R
+/First 5270 0 R
+/Last 5271 0 R
+/Count -2
+>>
+endobj
+5270 0 obj
+<<
+/Parent 5269 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R11x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5271 0 R
+>>
+endobj
+5271 0 obj
+<<
+/Parent 5269 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R11x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5270 0 R
+>>
+endobj
+5272 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R12'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R12)
+/Next 5275 0 R
+/Prev 5269 0 R
+/First 5273 0 R
+/Last 5274 0 R
+/Count -2
+>>
+endobj
+5273 0 obj
+<<
+/Parent 5272 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R12x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5274 0 R
+>>
+endobj
+5274 0 obj
+<<
+/Parent 5272 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R12x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5273 0 R
+>>
+endobj
+5275 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R13'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R13)
+/Next 5278 0 R
+/Prev 5272 0 R
+/First 5276 0 R
+/Last 5277 0 R
+/Count -2
+>>
+endobj
+5276 0 obj
+<<
+/Parent 5275 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R13x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5277 0 R
+>>
+endobj
+5277 0 obj
+<<
+/Parent 5275 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R13x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5276 0 R
+>>
+endobj
+5278 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R14'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R14)
+/Next 5281 0 R
+/Prev 5275 0 R
+/First 5279 0 R
+/Last 5280 0 R
+/Count -2
+>>
+endobj
+5279 0 obj
+<<
+/Parent 5278 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R14x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5280 0 R
+>>
+endobj
+5280 0 obj
+<<
+/Parent 5278 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R14x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5279 0 R
+>>
+endobj
+5281 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R15'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R15)
+/Next 5284 0 R
+/Prev 5278 0 R
+/First 5282 0 R
+/Last 5283 0 R
+/Count -2
+>>
+endobj
+5282 0 obj
+<<
+/Parent 5281 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R15x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5283 0 R
+>>
+endobj
+5283 0 obj
+<<
+/Parent 5281 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R15x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5282 0 R
+>>
+endobj
+5284 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R16'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (R16)
+/Next 5287 0 R
+/Prev 5281 0 R
+/First 5285 0 R
+/Last 5286 0 R
+/Count -2
+>>
+endobj
+5285 0 obj
+<<
+/Parent 5284 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R16x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5286 0 R
+>>
+endobj
+5286 0 obj
+<<
+/Parent 5284 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='R16x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Prev 5285 0 R
+>>
+endobj
+5287 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (SW1)
+/Next 5292 0 R
+/Prev 5284 0 R
+/First 5288 0 R
+/Last 5291 0 R
+/Count -4
+>>
+endobj
+5288 0 obj
+<<
+/Parent 5287 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5289 0 R
+>>
+endobj
+5289 0 obj
+<<
+/Parent 5287 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW1x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Next 5290 0 R
+/Prev 5288 0 R
+>>
+endobj
+5290 0 obj
+<<
+/Parent 5287 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW1x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (3)
+/Next 5291 0 R
+/Prev 5289 0 R
+>>
+endobj
+5291 0 obj
+<<
+/Parent 5287 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW1x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (4)
+/Prev 5290 0 R
+>>
+endobj
+5292 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (SW2)
+/Next 5297 0 R
+/Prev 5287 0 R
+/First 5293 0 R
+/Last 5296 0 R
+/Count -4
+>>
+endobj
+5293 0 obj
+<<
+/Parent 5292 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW2x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5294 0 R
+>>
+endobj
+5294 0 obj
+<<
+/Parent 5292 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW2x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Next 5295 0 R
+/Prev 5293 0 R
+>>
+endobj
+5295 0 obj
+<<
+/Parent 5292 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW2x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (3)
+/Next 5296 0 R
+/Prev 5294 0 R
+>>
+endobj
+5296 0 obj
+<<
+/Parent 5292 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW2x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (4)
+/Prev 5295 0 R
+>>
+endobj
+5297 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (U1)
+/Next 5302 0 R
+/Prev 5292 0 R
+/First 5298 0 R
+/Last 5301 0 R
+/Count -4
+>>
+endobj
+5298 0 obj
+<<
+/Parent 5297 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5299 0 R
+>>
+endobj
+5299 0 obj
+<<
+/Parent 5297 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U1x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Next 5300 0 R
+/Prev 5298 0 R
+>>
+endobj
+5300 0 obj
+<<
+/Parent 5297 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U1x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (3)
+/Next 5301 0 R
+/Prev 5299 0 R
+>>
+endobj
+5301 0 obj
+<<
+/Parent 5297 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U1x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (4)
+/Prev 5300 0 R
+>>
+endobj
+5302 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (U2)
+/Next 5367 0 R
+/Prev 5297 0 R
+/First 5303 0 R
+/Last 5366 0 R
+/Count -64
+>>
+endobj
+5303 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (1)
+/Next 5304 0 R
+>>
+endobj
+5304 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (2)
+/Next 5305 0 R
+/Prev 5303 0 R
+>>
+endobj
+5305 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (3)
+/Next 5306 0 R
+/Prev 5304 0 R
+>>
+endobj
+5306 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (4)
+/Next 5307 0 R
+/Prev 5305 0 R
+>>
+endobj
+5307 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (5)
+/Next 5308 0 R
+/Prev 5306 0 R
+>>
+endobj
+5308 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (6)
+/Next 5309 0 R
+/Prev 5307 0 R
+>>
+endobj
+5309 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x7'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (7)
+/Next 5310 0 R
+/Prev 5308 0 R
+>>
+endobj
+5310 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x8'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (8)
+/Next 5311 0 R
+/Prev 5309 0 R
+>>
+endobj
+5311 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x9'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (9)
+/Next 5312 0 R
+/Prev 5310 0 R
+>>
+endobj
+5312 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x10'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (10)
+/Next 5313 0 R
+/Prev 5311 0 R
+>>
+endobj
+5313 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x11'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (11)
+/Next 5314 0 R
+/Prev 5312 0 R
+>>
+endobj
+5314 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x12'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (12)
+/Next 5315 0 R
+/Prev 5313 0 R
+>>
+endobj
+5315 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x13'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (13)
+/Next 5316 0 R
+/Prev 5314 0 R
+>>
+endobj
+5316 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x14'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (14)
+/Next 5317 0 R
+/Prev 5315 0 R
+>>
+endobj
+5317 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x15'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (15)
+/Next 5318 0 R
+/Prev 5316 0 R
+>>
+endobj
+5318 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x16'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (16)
+/Next 5319 0 R
+/Prev 5317 0 R
+>>
+endobj
+5319 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x17'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (17)
+/Next 5320 0 R
+/Prev 5318 0 R
+>>
+endobj
+5320 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x18'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (18)
+/Next 5321 0 R
+/Prev 5319 0 R
+>>
+endobj
+5321 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x19'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (19)
+/Next 5322 0 R
+/Prev 5320 0 R
+>>
+endobj
+5322 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x20'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (20)
+/Next 5323 0 R
+/Prev 5321 0 R
+>>
+endobj
+5323 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x21'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (21)
+/Next 5324 0 R
+/Prev 5322 0 R
+>>
+endobj
+5324 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x22'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (22)
+/Next 5325 0 R
+/Prev 5323 0 R
+>>
+endobj
+5325 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x23'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (23)
+/Next 5326 0 R
+/Prev 5324 0 R
+>>
+endobj
+5326 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x24'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (24)
+/Next 5327 0 R
+/Prev 5325 0 R
+>>
+endobj
+5327 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x25'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (25)
+/Next 5328 0 R
+/Prev 5326 0 R
+>>
+endobj
+5328 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x26'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (26)
+/Next 5329 0 R
+/Prev 5327 0 R
+>>
+endobj
+5329 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x27'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (27)
+/Next 5330 0 R
+/Prev 5328 0 R
+>>
+endobj
+5330 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x28'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (28)
+/Next 5331 0 R
+/Prev 5329 0 R
+>>
+endobj
+5331 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x29'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (29)
+/Next 5332 0 R
+/Prev 5330 0 R
+>>
+endobj
+5332 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x30'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (30)
+/Next 5333 0 R
+/Prev 5331 0 R
+>>
+endobj
+5333 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x31'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (31)
+/Next 5334 0 R
+/Prev 5332 0 R
+>>
+endobj
+5334 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x32'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (32)
+/Next 5335 0 R
+/Prev 5333 0 R
+>>
+endobj
+5335 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x33'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (33)
+/Next 5336 0 R
+/Prev 5334 0 R
+>>
+endobj
+5336 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x34'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (34)
+/Next 5337 0 R
+/Prev 5335 0 R
+>>
+endobj
+5337 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x35'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (35)
+/Next 5338 0 R
+/Prev 5336 0 R
+>>
+endobj
+5338 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x36'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (36)
+/Next 5339 0 R
+/Prev 5337 0 R
+>>
+endobj
+5339 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x37'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (37)
+/Next 5340 0 R
+/Prev 5338 0 R
+>>
+endobj
+5340 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x38'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (38)
+/Next 5341 0 R
+/Prev 5339 0 R
+>>
+endobj
+5341 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x39'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (39)
+/Next 5342 0 R
+/Prev 5340 0 R
+>>
+endobj
+5342 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x40'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (40)
+/Next 5343 0 R
+/Prev 5341 0 R
+>>
+endobj
+5343 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x41'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (41)
+/Next 5344 0 R
+/Prev 5342 0 R
+>>
+endobj
+5344 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x42'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (42)
+/Next 5345 0 R
+/Prev 5343 0 R
+>>
+endobj
+5345 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x43'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (43)
+/Next 5346 0 R
+/Prev 5344 0 R
+>>
+endobj
+5346 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x44'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (44)
+/Next 5347 0 R
+/Prev 5345 0 R
+>>
+endobj
+5347 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x45'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (45)
+/Next 5348 0 R
+/Prev 5346 0 R
+>>
+endobj
+5348 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x46'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (46)
+/Next 5349 0 R
+/Prev 5347 0 R
+>>
+endobj
+5349 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x47'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (47)
+/Next 5350 0 R
+/Prev 5348 0 R
+>>
+endobj
+5350 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x48'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (48)
+/Next 5351 0 R
+/Prev 5349 0 R
+>>
+endobj
+5351 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x49'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (49)
+/Next 5352 0 R
+/Prev 5350 0 R
+>>
+endobj
+5352 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x50'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (50)
+/Next 5353 0 R
+/Prev 5351 0 R
+>>
+endobj
+5353 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x51'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (51)
+/Next 5354 0 R
+/Prev 5352 0 R
+>>
+endobj
+5354 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x52'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (52)
+/Next 5355 0 R
+/Prev 5353 0 R
+>>
+endobj
+5355 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x53'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (53)
+/Next 5356 0 R
+/Prev 5354 0 R
+>>
+endobj
+5356 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x54'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (54)
+/Next 5357 0 R
+/Prev 5355 0 R
+>>
+endobj
+5357 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x55'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (55)
+/Next 5358 0 R
+/Prev 5356 0 R
+>>
+endobj
+5358 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x56'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (56)
+/Next 5359 0 R
+/Prev 5357 0 R
+>>
+endobj
+5359 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x57'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (57)
+/Next 5360 0 R
+/Prev 5358 0 R
+>>
+endobj
+5360 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x58'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (58)
+/Next 5361 0 R
+/Prev 5359 0 R
+>>
+endobj
+5361 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x59'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (59)
+/Next 5362 0 R
+/Prev 5360 0 R
+>>
+endobj
+5362 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x60'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (60)
+/Next 5363 0 R
+/Prev 5361 0 R
+>>
+endobj
+5363 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x61'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (61)
+/Next 5364 0 R
+/Prev 5362 0 R
+>>
+endobj
+5364 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x62'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (62)
+/Next 5365 0 R
+/Prev 5363 0 R
+>>
+endobj
+5365 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x63'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (63)
+/Next 5366 0 R
+/Prev 5364 0 R
+>>
+endobj
+5366 0 obj
+<<
+/Parent 5302 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='U2x64'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (64)
+/Prev 5365 0 R
+>>
+endobj
+5367 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (X1)
+/Next 5371 0 R
+/Prev 5302 0 R
+/First 5368 0 R
+/Last 5370 0 R
+/Count -3
+>>
+endobj
+5368 0 obj
+<<
+/Parent 5367 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X1xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 5369 0 R
+>>
+endobj
+5369 0 obj
+<<
+/Parent 5367 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X1xB'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (B)
+/Next 5370 0 R
+/Prev 5368 0 R
+>>
+endobj
+5370 0 obj
+<<
+/Parent 5367 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X1xG1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (G1)
+/Prev 5369 0 R
+>>
+endobj
+5371 0 obj
+<<
+/Parent 4895 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (X2)
+/Prev 5367 0 R
+/First 5372 0 R
+/Last 5373 0 R
+/Count -2
+>>
+endobj
+5372 0 obj
+<<
+/Parent 5371 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X2xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (A)
+/Next 5373 0 R
+>>
+endobj
+5373 0 obj
+<<
+/Parent 5371 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X2xB'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (B)
+/Prev 5372 0 R
+>>
+endobj
+5374 0 obj
+<<
+/Parent 4894 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (Nets)
+/Prev 4895 0 R
+/First 5375 0 R
+/Last 5638 0 R
+/Count -75
+>>
+endobj
+5375 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (BOOT0)
+/Next 5378 0 R
+/First 5376 0 R
+/Last 5377 0 R
+/Count -2
+>>
+endobj
+5376 0 obj
+<<
+/Parent 5375 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J37x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J37.1)
+/Next 5377 0 R
+>>
+endobj
+5377 0 obj
+<<
+/Parent 5375 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J37x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J37.2)
+/Prev 5376 0 R
+>>
+endobj
+5378 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (GND)
+/Next 5411 0 R
+/Prev 5375 0 R
+/First 5379 0 R
+/Last 5410 0 R
+/Count -32
+>>
+endobj
+5379 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J1.1)
+/Next 5380 0 R
+>>
+endobj
+5380 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J2.1)
+/Next 5381 0 R
+/Prev 5379 0 R
+>>
+endobj
+5381 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J7x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J7.1)
+/Next 5382 0 R
+/Prev 5380 0 R
+>>
+endobj
+5382 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J26x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J26.1)
+/Next 5383 0 R
+/Prev 5381 0 R
+>>
+endobj
+5383 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J28x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J28.1)
+/Next 5384 0 R
+/Prev 5382 0 R
+>>
+endobj
+5384 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (M1.1)
+/Next 5385 0 R
+/Prev 5383 0 R
+>>
+endobj
+5385 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M2x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (M2.1)
+/Next 5386 0 R
+/Prev 5384 0 R
+>>
+endobj
+5386 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M3x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (M3.1)
+/Next 5387 0 R
+/Prev 5385 0 R
+>>
+endobj
+5387 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='M4x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (M4.1)
+/Next 5388 0 R
+/Prev 5386 0 R
+>>
+endobj
+5388 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (SW1.1)
+/Next 5389 0 R
+/Prev 5387 0 R
+>>
+endobj
+5389 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J1.2)
+/Next 5390 0 R
+/Prev 5388 0 R
+>>
+endobj
+5390 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J2.2)
+/Next 5391 0 R
+/Prev 5389 0 R
+>>
+endobj
+5391 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J3x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J3.2)
+/Next 5392 0 R
+/Prev 5390 0 R
+>>
+endobj
+5392 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J7x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J7.2)
+/Next 5393 0 R
+/Prev 5391 0 R
+>>
+endobj
+5393 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J26x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J26.2)
+/Next 5394 0 R
+/Prev 5392 0 R
+>>
+endobj
+5394 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J28x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J28.2)
+/Next 5395 0 R
+/Prev 5393 0 R
+>>
+endobj
+5395 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW2x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (SW2.2)
+/Next 5396 0 R
+/Prev 5394 0 R
+>>
+endobj
+5396 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J69.4)
+/Next 5397 0 R
+/Prev 5395 0 R
+>>
+endobj
+5397 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW1x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (SW1.4)
+/Next 5398 0 R
+/Prev 5396 0 R
+>>
+endobj
+5398 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J1.5)
+/Next 5399 0 R
+/Prev 5397 0 R
+>>
+endobj
+5399 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J2.5)
+/Next 5400 0 R
+/Prev 5398 0 R
+>>
+endobj
+5400 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J69.5)
+/Next 5401 0 R
+/Prev 5399 0 R
+>>
+endobj
+5401 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J1.6)
+/Next 5402 0 R
+/Prev 5400 0 R
+>>
+endobj
+5402 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J2.6)
+/Next 5403 0 R
+/Prev 5401 0 R
+>>
+endobj
+5403 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J69.6)
+/Next 5404 0 R
+/Prev 5402 0 R
+>>
+endobj
+5404 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (JF1.6)
+/Next 5405 0 R
+/Prev 5403 0 R
+>>
+endobj
+5405 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x8'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51.8)
+/Next 5406 0 R
+/Prev 5404 0 R
+>>
+endobj
+5406 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x10'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51.10)
+/Next 5407 0 R
+/Prev 5405 0 R
+>>
+endobj
+5407 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D6xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D6.C)
+/Next 5408 0 R
+/Prev 5406 0 R
+>>
+endobj
+5408 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D7xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D7.C)
+/Next 5409 0 R
+/Prev 5407 0 R
+>>
+endobj
+5409 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D8xC'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D8.C)
+/Next 5410 0 R
+/Prev 5408 0 R
+>>
+endobj
+5410 0 obj
+<<
+/Parent 5378 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X1xG1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (X1.G1)
+/Prev 5409 0 R
+>>
+endobj
+5411 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N00154)
+/Next 5413 0 R
+/Prev 5378 0 R
+/First 5412 0 R
+/Last 5412 0 R
+/Count -1
+>>
+endobj
+5412 0 obj
+<<
+/Parent 5411 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J69.1)
+>>
+endobj
+5413 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N41861)
+/Next 5415 0 R
+/Prev 5411 0 R
+/First 5414 0 R
+/Last 5414 0 R
+/Count -1
+>>
+endobj
+5414 0 obj
+<<
+/Parent 5413 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J65x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J65.1)
+>>
+endobj
+5415 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N48841)
+/Next 5417 0 R
+/Prev 5413 0 R
+/First 5416 0 R
+/Last 5416 0 R
+/Count -1
+>>
+endobj
+5416 0 obj
+<<
+/Parent 5415 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J69.2)
+>>
+endobj
+5417 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N48844)
+/Next 5419 0 R
+/Prev 5415 0 R
+/First 5418 0 R
+/Last 5418 0 R
+/Count -1
+>>
+endobj
+5418 0 obj
+<<
+/Parent 5417 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J69x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J69.3)
+>>
+endobj
+5419 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N49163)
+/Next 5421 0 R
+/Prev 5417 0 R
+/First 5420 0 R
+/Last 5420 0 R
+/Count -1
+>>
+endobj
+5420 0 obj
+<<
+/Parent 5419 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J39x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J39.1)
+>>
+endobj
+5421 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N59466)
+/Next 5423 0 R
+/Prev 5419 0 R
+/First 5422 0 R
+/Last 5422 0 R
+/Count -1
+>>
+endobj
+5422 0 obj
+<<
+/Parent 5421 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J75x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J75.1)
+>>
+endobj
+5423 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N59474)
+/Next 5426 0 R
+/Prev 5421 0 R
+/First 5424 0 R
+/Last 5425 0 R
+/Count -2
+>>
+endobj
+5424 0 obj
+<<
+/Parent 5423 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J75x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J75.2)
+/Next 5425 0 R
+>>
+endobj
+5425 0 obj
+<<
+/Parent 5423 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (JF1.3)
+/Prev 5424 0 R
+>>
+endobj
+5426 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N59485)
+/Next 5429 0 R
+/Prev 5423 0 R
+/First 5427 0 R
+/Last 5428 0 R
+/Count -2
+>>
+endobj
+5427 0 obj
+<<
+/Parent 5426 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J74x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J74.1)
+/Next 5428 0 R
+>>
+endobj
+5428 0 obj
+<<
+/Parent 5426 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (JF1.5)
+/Prev 5427 0 R
+>>
+endobj
+5429 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N60182)
+/Next 5431 0 R
+/Prev 5426 0 R
+/First 5430 0 R
+/Last 5430 0 R
+/Count -1
+>>
+endobj
+5430 0 obj
+<<
+/Parent 5429 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW2x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (SW2.4)
+>>
+endobj
+5431 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N60501)
+/Next 5433 0 R
+/Prev 5429 0 R
+/First 5432 0 R
+/Last 5432 0 R
+/Count -1
+>>
+endobj
+5432 0 obj
+<<
+/Parent 5431 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J76x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J76.1)
+>>
+endobj
+5433 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N068130)
+/Next 5436 0 R
+/Prev 5431 0 R
+/First 5434 0 R
+/Last 5435 0 R
+/Count -2
+>>
+endobj
+5434 0 obj
+<<
+/Parent 5433 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J25x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J25.1)
+/Next 5435 0 R
+>>
+endobj
+5435 0 obj
+<<
+/Parent 5433 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J25x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J25.2)
+/Prev 5434 0 R
+>>
+endobj
+5436 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N068131)
+/Next 5438 0 R
+/Prev 5433 0 R
+/First 5437 0 R
+/Last 5437 0 R
+/Count -1
+>>
+endobj
+5437 0 obj
+<<
+/Parent 5436 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D7xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D7.A)
+>>
+endobj
+5438 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N329650)
+/Next 5440 0 R
+/Prev 5436 0 R
+/First 5439 0 R
+/Last 5439 0 R
+/Count -1
+>>
+endobj
+5439 0 obj
+<<
+/Parent 5438 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J3x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J3.1)
+>>
+endobj
+5440 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N438140)
+/Next 5443 0 R
+/Prev 5438 0 R
+/First 5441 0 R
+/Last 5442 0 R
+/Count -2
+>>
+endobj
+5441 0 obj
+<<
+/Parent 5440 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J24x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J24.1)
+/Next 5442 0 R
+>>
+endobj
+5442 0 obj
+<<
+/Parent 5440 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J24x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J24.2)
+/Prev 5441 0 R
+>>
+endobj
+5443 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N438261)
+/Next 5445 0 R
+/Prev 5440 0 R
+/First 5444 0 R
+/Last 5444 0 R
+/Count -1
+>>
+endobj
+5444 0 obj
+<<
+/Parent 5443 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D6xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D6.A)
+>>
+endobj
+5445 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N456271)
+/Next 5447 0 R
+/Prev 5443 0 R
+/First 5446 0 R
+/Last 5446 0 R
+/Count -1
+>>
+endobj
+5446 0 obj
+<<
+/Parent 5445 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='D8xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (D8.A)
+>>
+endobj
+5447 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (N485981)
+/Next 5449 0 R
+/Prev 5445 0 R
+/First 5448 0 R
+/Last 5448 0 R
+/Count -1
+>>
+endobj
+5448 0 obj
+<<
+/Parent 5447 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J74x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J74.2)
+>>
+endobj
+5449 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (NRST)
+/Next 5456 0 R
+/Prev 5447 0 R
+/First 5450 0 R
+/Last 5455 0 R
+/Count -6
+>>
+endobj
+5450 0 obj
+<<
+/Parent 5449 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J34x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J34.1)
+/Next 5451 0 R
+>>
+endobj
+5451 0 obj
+<<
+/Parent 5449 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J34x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J34.2)
+/Next 5452 0 R
+/Prev 5450 0 R
+>>
+endobj
+5452 0 obj
+<<
+/Parent 5449 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J39x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J39.2)
+/Next 5453 0 R
+/Prev 5451 0 R
+>>
+endobj
+5453 0 obj
+<<
+/Parent 5449 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW1x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (SW1.2)
+/Next 5454 0 R
+/Prev 5452 0 R
+>>
+endobj
+5454 0 obj
+<<
+/Parent 5449 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='SW1x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (SW1.3)
+/Next 5455 0 R
+/Prev 5453 0 R
+>>
+endobj
+5455 0 obj
+<<
+/Parent 5449 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51.4)
+/Prev 5454 0 R
+>>
+endobj
+5456 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA0)
+/Next 5459 0 R
+/Prev 5449 0 R
+/First 5457 0 R
+/Last 5458 0 R
+/Count -2
+>>
+endobj
+5457 0 obj
+<<
+/Parent 5456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J41x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J41.1)
+/Next 5458 0 R
+>>
+endobj
+5458 0 obj
+<<
+/Parent 5456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J41x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J41.2)
+/Prev 5457 0 R
+>>
+endobj
+5459 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA1)
+/Next 5462 0 R
+/Prev 5456 0 R
+/First 5460 0 R
+/Last 5461 0 R
+/Count -2
+>>
+endobj
+5460 0 obj
+<<
+/Parent 5459 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J43x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J43.1)
+/Next 5461 0 R
+>>
+endobj
+5461 0 obj
+<<
+/Parent 5459 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J43x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J43.2)
+/Prev 5460 0 R
+>>
+endobj
+5462 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA2)
+/Next 5465 0 R
+/Prev 5459 0 R
+/First 5463 0 R
+/Last 5464 0 R
+/Count -2
+>>
+endobj
+5463 0 obj
+<<
+/Parent 5462 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J45x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J45.1)
+/Next 5464 0 R
+>>
+endobj
+5464 0 obj
+<<
+/Parent 5462 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J45x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J45.2)
+/Prev 5463 0 R
+>>
+endobj
+5465 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA3)
+/Next 5468 0 R
+/Prev 5462 0 R
+/First 5466 0 R
+/Last 5467 0 R
+/Count -2
+>>
+endobj
+5466 0 obj
+<<
+/Parent 5465 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J47x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J47.1)
+/Next 5467 0 R
+>>
+endobj
+5467 0 obj
+<<
+/Parent 5465 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J47x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J47.2)
+/Prev 5466 0 R
+>>
+endobj
+5468 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA4)
+/Next 5471 0 R
+/Prev 5465 0 R
+/First 5469 0 R
+/Last 5470 0 R
+/Count -2
+>>
+endobj
+5469 0 obj
+<<
+/Parent 5468 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J49x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J49.1)
+/Next 5470 0 R
+>>
+endobj
+5470 0 obj
+<<
+/Parent 5468 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J49x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J49.2)
+/Prev 5469 0 R
+>>
+endobj
+5471 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA5)
+/Next 5474 0 R
+/Prev 5468 0 R
+/First 5472 0 R
+/Last 5473 0 R
+/Count -2
+>>
+endobj
+5472 0 obj
+<<
+/Parent 5471 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J52x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J52.1)
+/Next 5473 0 R
+>>
+endobj
+5473 0 obj
+<<
+/Parent 5471 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J52x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J52.2)
+/Prev 5472 0 R
+>>
+endobj
+5474 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA6)
+/Next 5477 0 R
+/Prev 5471 0 R
+/First 5475 0 R
+/Last 5476 0 R
+/Count -2
+>>
+endobj
+5475 0 obj
+<<
+/Parent 5474 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J54x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J54.1)
+/Next 5476 0 R
+>>
+endobj
+5476 0 obj
+<<
+/Parent 5474 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J54x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J54.2)
+/Prev 5475 0 R
+>>
+endobj
+5477 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA7)
+/Next 5480 0 R
+/Prev 5474 0 R
+/First 5478 0 R
+/Last 5479 0 R
+/Count -2
+>>
+endobj
+5478 0 obj
+<<
+/Parent 5477 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J56x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J56.1)
+/Next 5479 0 R
+>>
+endobj
+5479 0 obj
+<<
+/Parent 5477 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J56x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J56.2)
+/Prev 5478 0 R
+>>
+endobj
+5480 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA8)
+/Next 5483 0 R
+/Prev 5477 0 R
+/First 5481 0 R
+/Last 5482 0 R
+/Count -2
+>>
+endobj
+5481 0 obj
+<<
+/Parent 5480 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J58x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J58.1)
+/Next 5482 0 R
+>>
+endobj
+5482 0 obj
+<<
+/Parent 5480 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J58x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J58.2)
+/Prev 5481 0 R
+>>
+endobj
+5483 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA9_TX)
+/Next 5487 0 R
+/Prev 5480 0 R
+/First 5484 0 R
+/Last 5486 0 R
+/Count -3
+>>
+endobj
+5484 0 obj
+<<
+/Parent 5483 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J60x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J60.1)
+/Next 5485 0 R
+>>
+endobj
+5485 0 obj
+<<
+/Parent 5483 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J60x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J60.2)
+/Next 5486 0 R
+/Prev 5484 0 R
+>>
+endobj
+5486 0 obj
+<<
+/Parent 5483 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (JF1.4)
+/Prev 5485 0 R
+>>
+endobj
+5487 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA10_RX)
+/Next 5491 0 R
+/Prev 5483 0 R
+/First 5488 0 R
+/Last 5490 0 R
+/Count -3
+>>
+endobj
+5488 0 obj
+<<
+/Parent 5487 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J61x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J61.1)
+/Next 5489 0 R
+>>
+endobj
+5489 0 obj
+<<
+/Parent 5487 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (JF1.1)
+/Next 5490 0 R
+/Prev 5488 0 R
+>>
+endobj
+5490 0 obj
+<<
+/Parent 5487 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J61x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J61.2)
+/Prev 5489 0 R
+>>
+endobj
+5491 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA11_DM)
+/Next 5494 0 R
+/Prev 5487 0 R
+/First 5492 0 R
+/Last 5493 0 R
+/Count -2
+>>
+endobj
+5492 0 obj
+<<
+/Parent 5491 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J62x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J62.1)
+/Next 5493 0 R
+>>
+endobj
+5493 0 obj
+<<
+/Parent 5491 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J62x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J62.2)
+/Prev 5492 0 R
+>>
+endobj
+5494 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA12_DP)
+/Next 5497 0 R
+/Prev 5491 0 R
+/First 5495 0 R
+/Last 5496 0 R
+/Count -2
+>>
+endobj
+5495 0 obj
+<<
+/Parent 5494 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J63x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J63.1)
+/Next 5496 0 R
+>>
+endobj
+5496 0 obj
+<<
+/Parent 5494 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J63x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J63.2)
+/Prev 5495 0 R
+>>
+endobj
+5497 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA13_JTMS)
+/Next 5501 0 R
+/Prev 5494 0 R
+/First 5498 0 R
+/Last 5500 0 R
+/Count -3
+>>
+endobj
+5498 0 obj
+<<
+/Parent 5497 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J64x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J64.1)
+/Next 5499 0 R
+>>
+endobj
+5499 0 obj
+<<
+/Parent 5497 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J64x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J64.2)
+/Next 5500 0 R
+/Prev 5498 0 R
+>>
+endobj
+5500 0 obj
+<<
+/Parent 5497 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x7'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51.7)
+/Prev 5499 0 R
+>>
+endobj
+5501 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA14_JTCK)
+/Next 5505 0 R
+/Prev 5497 0 R
+/First 5502 0 R
+/Last 5504 0 R
+/Count -3
+>>
+endobj
+5502 0 obj
+<<
+/Parent 5501 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J66x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J66.1)
+/Next 5503 0 R
+>>
+endobj
+5503 0 obj
+<<
+/Parent 5501 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J66x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J66.2)
+/Next 5504 0 R
+/Prev 5502 0 R
+>>
+endobj
+5504 0 obj
+<<
+/Parent 5501 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x9'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51.9)
+/Prev 5503 0 R
+>>
+endobj
+5505 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PA15_JTDI)
+/Next 5509 0 R
+/Prev 5501 0 R
+/First 5506 0 R
+/Last 5508 0 R
+/Count -3
+>>
+endobj
+5506 0 obj
+<<
+/Parent 5505 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J67x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J67.1)
+/Next 5507 0 R
+>>
+endobj
+5507 0 obj
+<<
+/Parent 5505 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J67x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J67.2)
+/Next 5508 0 R
+/Prev 5506 0 R
+>>
+endobj
+5508 0 obj
+<<
+/Parent 5505 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x5'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51.5)
+/Prev 5507 0 R
+>>
+endobj
+5509 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB0)
+/Next 5512 0 R
+/Prev 5505 0 R
+/First 5510 0 R
+/Last 5511 0 R
+/Count -2
+>>
+endobj
+5510 0 obj
+<<
+/Parent 5509 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J5x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J5.1)
+/Next 5511 0 R
+>>
+endobj
+5511 0 obj
+<<
+/Parent 5509 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J5x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J5.2)
+/Prev 5510 0 R
+>>
+endobj
+5512 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB1)
+/Next 5515 0 R
+/Prev 5509 0 R
+/First 5513 0 R
+/Last 5514 0 R
+/Count -2
+>>
+endobj
+5513 0 obj
+<<
+/Parent 5512 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J6x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J6.1)
+/Next 5514 0 R
+>>
+endobj
+5514 0 obj
+<<
+/Parent 5512 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J6x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J6.2)
+/Prev 5513 0 R
+>>
+endobj
+5515 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB2_BOOT1)
+/Next 5518 0 R
+/Prev 5512 0 R
+/First 5516 0 R
+/Last 5517 0 R
+/Count -2
+>>
+endobj
+5516 0 obj
+<<
+/Parent 5515 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J8x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J8.1)
+/Next 5517 0 R
+>>
+endobj
+5517 0 obj
+<<
+/Parent 5515 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J8x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J8.2)
+/Prev 5516 0 R
+>>
+endobj
+5518 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB3_JTDO)
+/Next 5522 0 R
+/Prev 5515 0 R
+/First 5519 0 R
+/Last 5521 0 R
+/Count -3
+>>
+endobj
+5519 0 obj
+<<
+/Parent 5518 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J9x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J9.1)
+/Next 5520 0 R
+>>
+endobj
+5520 0 obj
+<<
+/Parent 5518 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J9x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J9.2)
+/Next 5521 0 R
+/Prev 5519 0 R
+>>
+endobj
+5521 0 obj
+<<
+/Parent 5518 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x6'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51.6)
+/Prev 5520 0 R
+>>
+endobj
+5522 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB4_JNTRST)
+/Next 5526 0 R
+/Prev 5518 0 R
+/First 5523 0 R
+/Last 5525 0 R
+/Count -3
+>>
+endobj
+5523 0 obj
+<<
+/Parent 5522 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J11x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J11.1)
+/Next 5524 0 R
+>>
+endobj
+5524 0 obj
+<<
+/Parent 5522 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J11x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J11.2)
+/Next 5525 0 R
+/Prev 5523 0 R
+>>
+endobj
+5525 0 obj
+<<
+/Parent 5522 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51.3)
+/Prev 5524 0 R
+>>
+endobj
+5526 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB5)
+/Next 5529 0 R
+/Prev 5522 0 R
+/First 5527 0 R
+/Last 5528 0 R
+/Count -2
+>>
+endobj
+5527 0 obj
+<<
+/Parent 5526 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J12x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J12.1)
+/Next 5528 0 R
+>>
+endobj
+5528 0 obj
+<<
+/Parent 5526 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J12x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J12.2)
+/Prev 5527 0 R
+>>
+endobj
+5529 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB6)
+/Next 5532 0 R
+/Prev 5526 0 R
+/First 5530 0 R
+/Last 5531 0 R
+/Count -2
+>>
+endobj
+5530 0 obj
+<<
+/Parent 5529 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J14x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J14.1)
+/Next 5531 0 R
+>>
+endobj
+5531 0 obj
+<<
+/Parent 5529 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J14x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J14.2)
+/Prev 5530 0 R
+>>
+endobj
+5532 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB7)
+/Next 5535 0 R
+/Prev 5529 0 R
+/First 5533 0 R
+/Last 5534 0 R
+/Count -2
+>>
+endobj
+5533 0 obj
+<<
+/Parent 5532 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J16x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J16.1)
+/Next 5534 0 R
+>>
+endobj
+5534 0 obj
+<<
+/Parent 5532 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J16x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J16.2)
+/Prev 5533 0 R
+>>
+endobj
+5535 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB8)
+/Next 5538 0 R
+/Prev 5532 0 R
+/First 5536 0 R
+/Last 5537 0 R
+/Count -2
+>>
+endobj
+5536 0 obj
+<<
+/Parent 5535 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J18x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J18.1)
+/Next 5537 0 R
+>>
+endobj
+5537 0 obj
+<<
+/Parent 5535 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J18x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J18.2)
+/Prev 5536 0 R
+>>
+endobj
+5538 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB9)
+/Next 5541 0 R
+/Prev 5535 0 R
+/First 5539 0 R
+/Last 5540 0 R
+/Count -2
+>>
+endobj
+5539 0 obj
+<<
+/Parent 5538 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J20x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J20.1)
+/Next 5540 0 R
+>>
+endobj
+5540 0 obj
+<<
+/Parent 5538 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J20x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J20.2)
+/Prev 5539 0 R
+>>
+endobj
+5541 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB10)
+/Next 5544 0 R
+/Prev 5538 0 R
+/First 5542 0 R
+/Last 5543 0 R
+/Count -2
+>>
+endobj
+5542 0 obj
+<<
+/Parent 5541 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J21x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J21.1)
+/Next 5543 0 R
+>>
+endobj
+5543 0 obj
+<<
+/Parent 5541 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J21x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J21.2)
+/Prev 5542 0 R
+>>
+endobj
+5544 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB11)
+/Next 5547 0 R
+/Prev 5541 0 R
+/First 5545 0 R
+/Last 5546 0 R
+/Count -2
+>>
+endobj
+5545 0 obj
+<<
+/Parent 5544 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J22x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J22.1)
+/Next 5546 0 R
+>>
+endobj
+5546 0 obj
+<<
+/Parent 5544 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J22x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J22.2)
+/Prev 5545 0 R
+>>
+endobj
+5547 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB12)
+/Next 5550 0 R
+/Prev 5544 0 R
+/First 5548 0 R
+/Last 5549 0 R
+/Count -2
+>>
+endobj
+5548 0 obj
+<<
+/Parent 5547 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J23x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J23.1)
+/Next 5549 0 R
+>>
+endobj
+5549 0 obj
+<<
+/Parent 5547 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J23x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J23.2)
+/Prev 5548 0 R
+>>
+endobj
+5550 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB13)
+/Next 5553 0 R
+/Prev 5547 0 R
+/First 5551 0 R
+/Last 5552 0 R
+/Count -2
+>>
+endobj
+5551 0 obj
+<<
+/Parent 5550 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J27x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J27.1)
+/Next 5552 0 R
+>>
+endobj
+5552 0 obj
+<<
+/Parent 5550 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J27x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J27.2)
+/Prev 5551 0 R
+>>
+endobj
+5553 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB14)
+/Next 5556 0 R
+/Prev 5550 0 R
+/First 5554 0 R
+/Last 5555 0 R
+/Count -2
+>>
+endobj
+5554 0 obj
+<<
+/Parent 5553 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J29x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J29.1)
+/Next 5555 0 R
+>>
+endobj
+5555 0 obj
+<<
+/Parent 5553 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J29x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J29.2)
+/Prev 5554 0 R
+>>
+endobj
+5556 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PB15)
+/Next 5559 0 R
+/Prev 5553 0 R
+/First 5557 0 R
+/Last 5558 0 R
+/Count -2
+>>
+endobj
+5557 0 obj
+<<
+/Parent 5556 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J31x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J31.1)
+/Next 5558 0 R
+>>
+endobj
+5558 0 obj
+<<
+/Parent 5556 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J31x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J31.2)
+/Prev 5557 0 R
+>>
+endobj
+5559 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC0)
+/Next 5562 0 R
+/Prev 5556 0 R
+/First 5560 0 R
+/Last 5561 0 R
+/Count -2
+>>
+endobj
+5560 0 obj
+<<
+/Parent 5559 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J33x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J33.1)
+/Next 5561 0 R
+>>
+endobj
+5561 0 obj
+<<
+/Parent 5559 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J33x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J33.2)
+/Prev 5560 0 R
+>>
+endobj
+5562 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC1)
+/Next 5565 0 R
+/Prev 5559 0 R
+/First 5563 0 R
+/Last 5564 0 R
+/Count -2
+>>
+endobj
+5563 0 obj
+<<
+/Parent 5562 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J35x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J35.1)
+/Next 5564 0 R
+>>
+endobj
+5564 0 obj
+<<
+/Parent 5562 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J35x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J35.2)
+/Prev 5563 0 R
+>>
+endobj
+5565 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC2)
+/Next 5568 0 R
+/Prev 5562 0 R
+/First 5566 0 R
+/Last 5567 0 R
+/Count -2
+>>
+endobj
+5566 0 obj
+<<
+/Parent 5565 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J36x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J36.1)
+/Next 5567 0 R
+>>
+endobj
+5567 0 obj
+<<
+/Parent 5565 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J36x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J36.2)
+/Prev 5566 0 R
+>>
+endobj
+5568 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC3)
+/Next 5571 0 R
+/Prev 5565 0 R
+/First 5569 0 R
+/Last 5570 0 R
+/Count -2
+>>
+endobj
+5569 0 obj
+<<
+/Parent 5568 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J38x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J38.1)
+/Next 5570 0 R
+>>
+endobj
+5570 0 obj
+<<
+/Parent 5568 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J38x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J38.2)
+/Prev 5569 0 R
+>>
+endobj
+5571 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC4)
+/Next 5574 0 R
+/Prev 5568 0 R
+/First 5572 0 R
+/Last 5573 0 R
+/Count -2
+>>
+endobj
+5572 0 obj
+<<
+/Parent 5571 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J40x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J40.1)
+/Next 5573 0 R
+>>
+endobj
+5573 0 obj
+<<
+/Parent 5571 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J40x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J40.2)
+/Prev 5572 0 R
+>>
+endobj
+5574 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC5)
+/Next 5577 0 R
+/Prev 5571 0 R
+/First 5575 0 R
+/Last 5576 0 R
+/Count -2
+>>
+endobj
+5575 0 obj
+<<
+/Parent 5574 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J42x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J42.1)
+/Next 5576 0 R
+>>
+endobj
+5576 0 obj
+<<
+/Parent 5574 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J42x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J42.2)
+/Prev 5575 0 R
+>>
+endobj
+5577 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC6)
+/Next 5580 0 R
+/Prev 5574 0 R
+/First 5578 0 R
+/Last 5579 0 R
+/Count -2
+>>
+endobj
+5578 0 obj
+<<
+/Parent 5577 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J44x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J44.1)
+/Next 5579 0 R
+>>
+endobj
+5579 0 obj
+<<
+/Parent 5577 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J44x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J44.2)
+/Prev 5578 0 R
+>>
+endobj
+5580 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC7)
+/Next 5583 0 R
+/Prev 5577 0 R
+/First 5581 0 R
+/Last 5582 0 R
+/Count -2
+>>
+endobj
+5581 0 obj
+<<
+/Parent 5580 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J46x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J46.1)
+/Next 5582 0 R
+>>
+endobj
+5582 0 obj
+<<
+/Parent 5580 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J46x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J46.2)
+/Prev 5581 0 R
+>>
+endobj
+5583 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC8)
+/Next 5586 0 R
+/Prev 5580 0 R
+/First 5584 0 R
+/Last 5585 0 R
+/Count -2
+>>
+endobj
+5584 0 obj
+<<
+/Parent 5583 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J48x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J48.1)
+/Next 5585 0 R
+>>
+endobj
+5585 0 obj
+<<
+/Parent 5583 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J48x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J48.2)
+/Prev 5584 0 R
+>>
+endobj
+5586 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC9)
+/Next 5589 0 R
+/Prev 5583 0 R
+/First 5587 0 R
+/Last 5588 0 R
+/Count -2
+>>
+endobj
+5587 0 obj
+<<
+/Parent 5586 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J50x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J50.1)
+/Next 5588 0 R
+>>
+endobj
+5588 0 obj
+<<
+/Parent 5586 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J50x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J50.2)
+/Prev 5587 0 R
+>>
+endobj
+5589 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC10)
+/Next 5592 0 R
+/Prev 5586 0 R
+/First 5590 0 R
+/Last 5591 0 R
+/Count -2
+>>
+endobj
+5590 0 obj
+<<
+/Parent 5589 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J53x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J53.1)
+/Next 5591 0 R
+>>
+endobj
+5591 0 obj
+<<
+/Parent 5589 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J53x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J53.2)
+/Prev 5590 0 R
+>>
+endobj
+5592 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC11)
+/Next 5595 0 R
+/Prev 5589 0 R
+/First 5593 0 R
+/Last 5594 0 R
+/Count -2
+>>
+endobj
+5593 0 obj
+<<
+/Parent 5592 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J55x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J55.1)
+/Next 5594 0 R
+>>
+endobj
+5594 0 obj
+<<
+/Parent 5592 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J55x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J55.2)
+/Prev 5593 0 R
+>>
+endobj
+5595 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC12)
+/Next 5598 0 R
+/Prev 5592 0 R
+/First 5596 0 R
+/Last 5597 0 R
+/Count -2
+>>
+endobj
+5596 0 obj
+<<
+/Parent 5595 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J57x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J57.1)
+/Next 5597 0 R
+>>
+endobj
+5597 0 obj
+<<
+/Parent 5595 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J57x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J57.2)
+/Prev 5596 0 R
+>>
+endobj
+5598 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC13)
+/Next 5601 0 R
+/Prev 5595 0 R
+/First 5599 0 R
+/Last 5600 0 R
+/Count -2
+>>
+endobj
+5599 0 obj
+<<
+/Parent 5598 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J59x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J59.1)
+/Next 5600 0 R
+>>
+endobj
+5600 0 obj
+<<
+/Parent 5598 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J59x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J59.2)
+/Prev 5599 0 R
+>>
+endobj
+5601 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC14_X2)
+/Next 5605 0 R
+/Prev 5598 0 R
+/First 5602 0 R
+/Last 5604 0 R
+/Count -3
+>>
+endobj
+5602 0 obj
+<<
+/Parent 5601 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J70x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J70.1)
+/Next 5603 0 R
+>>
+endobj
+5603 0 obj
+<<
+/Parent 5601 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J70x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J70.2)
+/Next 5604 0 R
+/Prev 5602 0 R
+>>
+endobj
+5604 0 obj
+<<
+/Parent 5601 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X1xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (X1.A)
+/Prev 5603 0 R
+>>
+endobj
+5605 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PC15_X2)
+/Next 5609 0 R
+/Prev 5601 0 R
+/First 5606 0 R
+/Last 5608 0 R
+/Count -3
+>>
+endobj
+5606 0 obj
+<<
+/Parent 5605 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J71x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J71.1)
+/Next 5607 0 R
+>>
+endobj
+5607 0 obj
+<<
+/Parent 5605 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J71x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J71.2)
+/Next 5608 0 R
+/Prev 5606 0 R
+>>
+endobj
+5608 0 obj
+<<
+/Parent 5605 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X1xB'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (X1.B)
+/Prev 5607 0 R
+>>
+endobj
+5609 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PD0_X1)
+/Next 5613 0 R
+/Prev 5605 0 R
+/First 5610 0 R
+/Last 5612 0 R
+/Count -3
+>>
+endobj
+5610 0 obj
+<<
+/Parent 5609 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J72x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J72.1)
+/Next 5611 0 R
+>>
+endobj
+5611 0 obj
+<<
+/Parent 5609 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J72x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J72.2)
+/Next 5612 0 R
+/Prev 5610 0 R
+>>
+endobj
+5612 0 obj
+<<
+/Parent 5609 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X2xB'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (X2.B)
+/Prev 5611 0 R
+>>
+endobj
+5613 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PD1_X1)
+/Next 5617 0 R
+/Prev 5609 0 R
+/First 5614 0 R
+/Last 5616 0 R
+/Count -3
+>>
+endobj
+5614 0 obj
+<<
+/Parent 5613 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J73x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J73.1)
+/Next 5615 0 R
+>>
+endobj
+5615 0 obj
+<<
+/Parent 5613 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J73x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J73.2)
+/Next 5616 0 R
+/Prev 5614 0 R
+>>
+endobj
+5616 0 obj
+<<
+/Parent 5613 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='X2xA'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (X2.A)
+/Prev 5615 0 R
+>>
+endobj
+5617 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (PD2)
+/Next 5620 0 R
+/Prev 5613 0 R
+/First 5618 0 R
+/Last 5619 0 R
+/Count -2
+>>
+endobj
+5618 0 obj
+<<
+/Parent 5617 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J68x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J68.1)
+/Next 5619 0 R
+>>
+endobj
+5619 0 obj
+<<
+/Parent 5617 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J68x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J68.2)
+/Prev 5618 0 R
+>>
+endobj
+5620 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (VBATT)
+/Next 5623 0 R
+/Prev 5617 0 R
+/First 5621 0 R
+/Last 5622 0 R
+/Count -2
+>>
+endobj
+5621 0 obj
+<<
+/Parent 5620 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J10x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J10.1)
+/Next 5622 0 R
+>>
+endobj
+5622 0 obj
+<<
+/Parent 5620 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J10x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J10.2)
+/Prev 5621 0 R
+>>
+endobj
+5623 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (VCC)
+/Next 5627 0 R
+/Prev 5620 0 R
+/First 5624 0 R
+/Last 5626 0 R
+/Count -3
+>>
+endobj
+5624 0 obj
+<<
+/Parent 5623 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J65x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J65.2)
+/Next 5625 0 R
+>>
+endobj
+5625 0 obj
+<<
+/Parent 5623 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J2.3)
+/Next 5626 0 R
+/Prev 5624 0 R
+>>
+endobj
+5626 0 obj
+<<
+/Parent 5623 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J2x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J2.4)
+/Prev 5625 0 R
+>>
+endobj
+5627 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (VDD)
+/Next 5638 0 R
+/Prev 5623 0 R
+/First 5628 0 R
+/Last 5637 0 R
+/Count -10
+>>
+endobj
+5628 0 obj
+<<
+/Parent 5627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J13x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J13.1)
+/Next 5629 0 R
+>>
+endobj
+5629 0 obj
+<<
+/Parent 5627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J15x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J15.1)
+/Next 5630 0 R
+/Prev 5628 0 R
+>>
+endobj
+5630 0 obj
+<<
+/Parent 5627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51.1)
+/Next 5631 0 R
+/Prev 5629 0 R
+>>
+endobj
+5631 0 obj
+<<
+/Parent 5627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J13x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J13.2)
+/Next 5632 0 R
+/Prev 5630 0 R
+>>
+endobj
+5632 0 obj
+<<
+/Parent 5627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J15x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J15.2)
+/Next 5633 0 R
+/Prev 5631 0 R
+>>
+endobj
+5633 0 obj
+<<
+/Parent 5627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J51x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J51.2)
+/Next 5634 0 R
+/Prev 5632 0 R
+>>
+endobj
+5634 0 obj
+<<
+/Parent 5627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J76x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J76.2)
+/Next 5635 0 R
+/Prev 5633 0 R
+>>
+endobj
+5635 0 obj
+<<
+/Parent 5627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='JF1x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (JF1.2)
+/Next 5636 0 R
+/Prev 5634 0 R
+>>
+endobj
+5636 0 obj
+<<
+/Parent 5627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x3'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J1.3)
+/Next 5637 0 R
+/Prev 5635 0 R
+>>
+endobj
+5637 0 obj
+<<
+/Parent 5627 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J1x4'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J1.4)
+/Prev 5636 0 R
+>>
+endobj
+5638 0 obj
+<<
+/Parent 5374 0 R
+/Dest [7 0 R /XYZ null null null]
+/Title (VDD_A)
+/Prev 5627 0 R
+/First 5639 0 R
+/Last 5640 0 R
+/Count -2
+>>
+endobj
+5639 0 obj
+<<
+/Parent 5638 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J4x1'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J4.1)
+/Next 5640 0 R
+>>
+endobj
+5640 0 obj
+<<
+/Parent 5638 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(1);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(1,i,true);if(m=='J4x2'){this.selectPageNthWord(1,i,true);break;}})
+>>
+/Title (J4.2)
+/Prev 5639 0 R
+>>
+endobj
+5641 0 obj
+<<
+/Parent 2 0 R
+/Dest [9 0 R /XYZ null null null]
+/Title (Assembly Top)
+/Next 5723 0 R
+/Prev 4894 0 R
+/First 5642 0 R
+/Last 5642 0 R
+/Count -1
+>>
+endobj
+5642 0 obj
+<<
+/Parent 5641 0 R
+/Dest [9 0 R /XYZ null null null]
+/Title (Components)
+/First 5643 0 R
+/Last 5722 0 R
+/Count -80
+>>
+endobj
+5643 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='D6'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (D6)
+/Next 5644 0 R
+>>
+endobj
+5644 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='D7'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (D7)
+/Next 5645 0 R
+/Prev 5643 0 R
+>>
+endobj
+5645 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='D8'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (D8)
+/Next 5646 0 R
+/Prev 5644 0 R
+>>
+endobj
+5646 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J1'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J1)
+/Next 5647 0 R
+/Prev 5645 0 R
+>>
+endobj
+5647 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J2'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J2)
+/Next 5648 0 R
+/Prev 5646 0 R
+>>
+endobj
+5648 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J3'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J3)
+/Next 5649 0 R
+/Prev 5647 0 R
+>>
+endobj
+5649 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J4'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J4)
+/Next 5650 0 R
+/Prev 5648 0 R
+>>
+endobj
+5650 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J5'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J5)
+/Next 5651 0 R
+/Prev 5649 0 R
+>>
+endobj
+5651 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J6'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J6)
+/Next 5652 0 R
+/Prev 5650 0 R
+>>
+endobj
+5652 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J7'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J7)
+/Next 5653 0 R
+/Prev 5651 0 R
+>>
+endobj
+5653 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J8'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J8)
+/Next 5654 0 R
+/Prev 5652 0 R
+>>
+endobj
+5654 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J9'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J9)
+/Next 5655 0 R
+/Prev 5653 0 R
+>>
+endobj
+5655 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J10'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J10)
+/Next 5656 0 R
+/Prev 5654 0 R
+>>
+endobj
+5656 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J11'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J11)
+/Next 5657 0 R
+/Prev 5655 0 R
+>>
+endobj
+5657 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J12'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J12)
+/Next 5658 0 R
+/Prev 5656 0 R
+>>
+endobj
+5658 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J13'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J13)
+/Next 5659 0 R
+/Prev 5657 0 R
+>>
+endobj
+5659 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J14'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J14)
+/Next 5660 0 R
+/Prev 5658 0 R
+>>
+endobj
+5660 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J15'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J15)
+/Next 5661 0 R
+/Prev 5659 0 R
+>>
+endobj
+5661 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J16'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J16)
+/Next 5662 0 R
+/Prev 5660 0 R
+>>
+endobj
+5662 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J18'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J18)
+/Next 5663 0 R
+/Prev 5661 0 R
+>>
+endobj
+5663 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J20'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J20)
+/Next 5664 0 R
+/Prev 5662 0 R
+>>
+endobj
+5664 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J21'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J21)
+/Next 5665 0 R
+/Prev 5663 0 R
+>>
+endobj
+5665 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J22'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J22)
+/Next 5666 0 R
+/Prev 5664 0 R
+>>
+endobj
+5666 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J23'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J23)
+/Next 5667 0 R
+/Prev 5665 0 R
+>>
+endobj
+5667 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J24'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J24)
+/Next 5668 0 R
+/Prev 5666 0 R
+>>
+endobj
+5668 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J25'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J25)
+/Next 5669 0 R
+/Prev 5667 0 R
+>>
+endobj
+5669 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J26'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J26)
+/Next 5670 0 R
+/Prev 5668 0 R
+>>
+endobj
+5670 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J27'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J27)
+/Next 5671 0 R
+/Prev 5669 0 R
+>>
+endobj
+5671 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J28'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J28)
+/Next 5672 0 R
+/Prev 5670 0 R
+>>
+endobj
+5672 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J29'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J29)
+/Next 5673 0 R
+/Prev 5671 0 R
+>>
+endobj
+5673 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J31'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J31)
+/Next 5674 0 R
+/Prev 5672 0 R
+>>
+endobj
+5674 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J33'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J33)
+/Next 5675 0 R
+/Prev 5673 0 R
+>>
+endobj
+5675 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J34'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J34)
+/Next 5676 0 R
+/Prev 5674 0 R
+>>
+endobj
+5676 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J35'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J35)
+/Next 5677 0 R
+/Prev 5675 0 R
+>>
+endobj
+5677 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J36'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J36)
+/Next 5678 0 R
+/Prev 5676 0 R
+>>
+endobj
+5678 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J37'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J37)
+/Next 5679 0 R
+/Prev 5677 0 R
+>>
+endobj
+5679 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J38'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J38)
+/Next 5680 0 R
+/Prev 5678 0 R
+>>
+endobj
+5680 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J39'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J39)
+/Next 5681 0 R
+/Prev 5679 0 R
+>>
+endobj
+5681 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J40'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J40)
+/Next 5682 0 R
+/Prev 5680 0 R
+>>
+endobj
+5682 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J41'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J41)
+/Next 5683 0 R
+/Prev 5681 0 R
+>>
+endobj
+5683 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J42'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J42)
+/Next 5684 0 R
+/Prev 5682 0 R
+>>
+endobj
+5684 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J43'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J43)
+/Next 5685 0 R
+/Prev 5683 0 R
+>>
+endobj
+5685 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J44'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J44)
+/Next 5686 0 R
+/Prev 5684 0 R
+>>
+endobj
+5686 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J45'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J45)
+/Next 5687 0 R
+/Prev 5685 0 R
+>>
+endobj
+5687 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J46'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J46)
+/Next 5688 0 R
+/Prev 5686 0 R
+>>
+endobj
+5688 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J47'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J47)
+/Next 5689 0 R
+/Prev 5687 0 R
+>>
+endobj
+5689 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J48'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J48)
+/Next 5690 0 R
+/Prev 5688 0 R
+>>
+endobj
+5690 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J49'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J49)
+/Next 5691 0 R
+/Prev 5689 0 R
+>>
+endobj
+5691 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J50'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J50)
+/Next 5692 0 R
+/Prev 5690 0 R
+>>
+endobj
+5692 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J51'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J51)
+/Next 5693 0 R
+/Prev 5691 0 R
+>>
+endobj
+5693 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J52'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J52)
+/Next 5694 0 R
+/Prev 5692 0 R
+>>
+endobj
+5694 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J53'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J53)
+/Next 5695 0 R
+/Prev 5693 0 R
+>>
+endobj
+5695 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J54'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J54)
+/Next 5696 0 R
+/Prev 5694 0 R
+>>
+endobj
+5696 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J55'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J55)
+/Next 5697 0 R
+/Prev 5695 0 R
+>>
+endobj
+5697 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J56'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J56)
+/Next 5698 0 R
+/Prev 5696 0 R
+>>
+endobj
+5698 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J57'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J57)
+/Next 5699 0 R
+/Prev 5697 0 R
+>>
+endobj
+5699 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J58'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J58)
+/Next 5700 0 R
+/Prev 5698 0 R
+>>
+endobj
+5700 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J59'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J59)
+/Next 5701 0 R
+/Prev 5699 0 R
+>>
+endobj
+5701 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J60'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J60)
+/Next 5702 0 R
+/Prev 5700 0 R
+>>
+endobj
+5702 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J61'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J61)
+/Next 5703 0 R
+/Prev 5701 0 R
+>>
+endobj
+5703 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J62'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J62)
+/Next 5704 0 R
+/Prev 5702 0 R
+>>
+endobj
+5704 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J63'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J63)
+/Next 5705 0 R
+/Prev 5703 0 R
+>>
+endobj
+5705 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J64'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J64)
+/Next 5706 0 R
+/Prev 5704 0 R
+>>
+endobj
+5706 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J65'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J65)
+/Next 5707 0 R
+/Prev 5705 0 R
+>>
+endobj
+5707 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J66'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J66)
+/Next 5708 0 R
+/Prev 5706 0 R
+>>
+endobj
+5708 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J67'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J67)
+/Next 5709 0 R
+/Prev 5707 0 R
+>>
+endobj
+5709 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J68'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J68)
+/Next 5710 0 R
+/Prev 5708 0 R
+>>
+endobj
+5710 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J69'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J69)
+/Next 5711 0 R
+/Prev 5709 0 R
+>>
+endobj
+5711 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J70'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J70)
+/Next 5712 0 R
+/Prev 5710 0 R
+>>
+endobj
+5712 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J71'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J71)
+/Next 5713 0 R
+/Prev 5711 0 R
+>>
+endobj
+5713 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J72'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J72)
+/Next 5714 0 R
+/Prev 5712 0 R
+>>
+endobj
+5714 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J73'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J73)
+/Next 5715 0 R
+/Prev 5713 0 R
+>>
+endobj
+5715 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J74'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J74)
+/Next 5716 0 R
+/Prev 5714 0 R
+>>
+endobj
+5716 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J75'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J75)
+/Next 5717 0 R
+/Prev 5715 0 R
+>>
+endobj
+5717 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='J76'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (J76)
+/Next 5718 0 R
+/Prev 5716 0 R
+>>
+endobj
+5718 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='JF1'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (JF1)
+/Next 5719 0 R
+/Prev 5717 0 R
+>>
+endobj
+5719 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='SW1'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (SW1)
+/Next 5720 0 R
+/Prev 5718 0 R
+>>
+endobj
+5720 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='SW2'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (SW2)
+/Next 5721 0 R
+/Prev 5719 0 R
+>>
+endobj
+5721 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='X1'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (X1)
+/Next 5722 0 R
+/Prev 5720 0 R
+>>
+endobj
+5722 0 obj
+<<
+/Parent 5642 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(2);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(2,i,true);if(m=='X2'){this.selectPageNthWord(2,i,true);break;}})
+>>
+/Title (X2)
+/Prev 5721 0 R
+>>
+endobj
+5723 0 obj
+<<
+/Parent 2 0 R
+/Dest [11 0 R /XYZ null null null]
+/Title (Assembly Bottom)
+/Next 5769 0 R
+/Prev 5641 0 R
+/First 5724 0 R
+/Last 5724 0 R
+/Count -1
+>>
+endobj
+5724 0 obj
+<<
+/Parent 5723 0 R
+/Dest [11 0 R /XYZ null null null]
+/Title (Components)
+/First 5725 0 R
+/Last 5768 0 R
+/Count -44
+>>
+endobj
+5725 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C1'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C1)
+/Next 5726 0 R
+>>
+endobj
+5726 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C2'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C2)
+/Next 5727 0 R
+/Prev 5725 0 R
+>>
+endobj
+5727 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C3'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C3)
+/Next 5728 0 R
+/Prev 5726 0 R
+>>
+endobj
+5728 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C4'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C4)
+/Next 5729 0 R
+/Prev 5727 0 R
+>>
+endobj
+5729 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C5'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C5)
+/Next 5730 0 R
+/Prev 5728 0 R
+>>
+endobj
+5730 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C6'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C6)
+/Next 5731 0 R
+/Prev 5729 0 R
+>>
+endobj
+5731 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C7'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C7)
+/Next 5732 0 R
+/Prev 5730 0 R
+>>
+endobj
+5732 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C8'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C8)
+/Next 5733 0 R
+/Prev 5731 0 R
+>>
+endobj
+5733 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C9'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C9)
+/Next 5734 0 R
+/Prev 5732 0 R
+>>
+endobj
+5734 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C10'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C10)
+/Next 5735 0 R
+/Prev 5733 0 R
+>>
+endobj
+5735 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C11'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C11)
+/Next 5736 0 R
+/Prev 5734 0 R
+>>
+endobj
+5736 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C12'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C12)
+/Next 5737 0 R
+/Prev 5735 0 R
+>>
+endobj
+5737 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C13'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C13)
+/Next 5738 0 R
+/Prev 5736 0 R
+>>
+endobj
+5738 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C14'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C14)
+/Next 5739 0 R
+/Prev 5737 0 R
+>>
+endobj
+5739 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C15'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C15)
+/Next 5740 0 R
+/Prev 5738 0 R
+>>
+endobj
+5740 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='C16'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (C16)
+/Next 5741 0 R
+/Prev 5739 0 R
+>>
+endobj
+5741 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='D1'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (D1)
+/Next 5742 0 R
+/Prev 5740 0 R
+>>
+endobj
+5742 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='D2'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (D2)
+/Next 5743 0 R
+/Prev 5741 0 R
+>>
+endobj
+5743 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='D3'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (D3)
+/Next 5744 0 R
+/Prev 5742 0 R
+>>
+endobj
+5744 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='D4'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (D4)
+/Next 5745 0 R
+/Prev 5743 0 R
+>>
+endobj
+5745 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='D5'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (D5)
+/Next 5746 0 R
+/Prev 5744 0 R
+>>
+endobj
+5746 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='D9'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (D9)
+/Next 5747 0 R
+/Prev 5745 0 R
+>>
+endobj
+5747 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='F1'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (F1)
+/Next 5748 0 R
+/Prev 5746 0 R
+>>
+endobj
+5748 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='L1'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (L1)
+/Next 5749 0 R
+/Prev 5747 0 R
+>>
+endobj
+5749 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='L2'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (L2)
+/Next 5750 0 R
+/Prev 5748 0 R
+>>
+endobj
+5750 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='Q1'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (Q1)
+/Next 5751 0 R
+/Prev 5749 0 R
+>>
+endobj
+5751 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R1'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R1)
+/Next 5752 0 R
+/Prev 5750 0 R
+>>
+endobj
+5752 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R2'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R2)
+/Next 5753 0 R
+/Prev 5751 0 R
+>>
+endobj
+5753 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R3'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R3)
+/Next 5754 0 R
+/Prev 5752 0 R
+>>
+endobj
+5754 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R4'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R4)
+/Next 5755 0 R
+/Prev 5753 0 R
+>>
+endobj
+5755 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R5'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R5)
+/Next 5756 0 R
+/Prev 5754 0 R
+>>
+endobj
+5756 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R6'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R6)
+/Next 5757 0 R
+/Prev 5755 0 R
+>>
+endobj
+5757 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R7'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R7)
+/Next 5758 0 R
+/Prev 5756 0 R
+>>
+endobj
+5758 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R8'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R8)
+/Next 5759 0 R
+/Prev 5757 0 R
+>>
+endobj
+5759 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R9'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R9)
+/Next 5760 0 R
+/Prev 5758 0 R
+>>
+endobj
+5760 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R10'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R10)
+/Next 5761 0 R
+/Prev 5759 0 R
+>>
+endobj
+5761 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R11'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R11)
+/Next 5762 0 R
+/Prev 5760 0 R
+>>
+endobj
+5762 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R12'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R12)
+/Next 5763 0 R
+/Prev 5761 0 R
+>>
+endobj
+5763 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R13'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R13)
+/Next 5764 0 R
+/Prev 5762 0 R
+>>
+endobj
+5764 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R14'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R14)
+/Next 5765 0 R
+/Prev 5763 0 R
+>>
+endobj
+5765 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R15'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R15)
+/Next 5766 0 R
+/Prev 5764 0 R
+>>
+endobj
+5766 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='R16'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (R16)
+/Next 5767 0 R
+/Prev 5765 0 R
+>>
+endobj
+5767 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='U1'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (U1)
+/Next 5768 0 R
+/Prev 5766 0 R
+>>
+endobj
+5768 0 obj
+<<
+/Parent 5724 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(3);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(3,i,true);if(m=='U2'){this.selectPageNthWord(3,i,true);break;}})
+>>
+/Title (U2)
+/Prev 5767 0 R
+>>
+endobj
+5769 0 obj
+<<
+/Parent 2 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (Composite)
+/Next 6671 0 R
+/Prev 5723 0 R
+/First 5770 0 R
+/Last 6250 0 R
+/Count -2
+>>
+endobj
+5770 0 obj
+<<
+/Parent 5769 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (Components)
+/Next 6250 0 R
+/First 5771 0 R
+/Last 6247 0 R
+/Count -130
+>>
+endobj
+5771 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C1)
+/Next 5774 0 R
+/First 5772 0 R
+/Last 5773 0 R
+/Count -2
+>>
+endobj
+5772 0 obj
+<<
+/Parent 5771 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C1xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5773 0 R
+>>
+endobj
+5773 0 obj
+<<
+/Parent 5771 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C1xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5772 0 R
+>>
+endobj
+5774 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C2)
+/Next 5777 0 R
+/Prev 5771 0 R
+/First 5775 0 R
+/Last 5776 0 R
+/Count -2
+>>
+endobj
+5775 0 obj
+<<
+/Parent 5774 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5776 0 R
+>>
+endobj
+5776 0 obj
+<<
+/Parent 5774 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5775 0 R
+>>
+endobj
+5777 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C3)
+/Next 5780 0 R
+/Prev 5774 0 R
+/First 5778 0 R
+/Last 5779 0 R
+/Count -2
+>>
+endobj
+5778 0 obj
+<<
+/Parent 5777 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C3xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5779 0 R
+>>
+endobj
+5779 0 obj
+<<
+/Parent 5777 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C3xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5778 0 R
+>>
+endobj
+5780 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C4)
+/Next 5783 0 R
+/Prev 5777 0 R
+/First 5781 0 R
+/Last 5782 0 R
+/Count -2
+>>
+endobj
+5781 0 obj
+<<
+/Parent 5780 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C4x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5782 0 R
+>>
+endobj
+5782 0 obj
+<<
+/Parent 5780 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C4x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5781 0 R
+>>
+endobj
+5783 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C5)
+/Next 5786 0 R
+/Prev 5780 0 R
+/First 5784 0 R
+/Last 5785 0 R
+/Count -2
+>>
+endobj
+5784 0 obj
+<<
+/Parent 5783 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C5xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5785 0 R
+>>
+endobj
+5785 0 obj
+<<
+/Parent 5783 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C5xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5784 0 R
+>>
+endobj
+5786 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C6)
+/Next 5789 0 R
+/Prev 5783 0 R
+/First 5787 0 R
+/Last 5788 0 R
+/Count -2
+>>
+endobj
+5787 0 obj
+<<
+/Parent 5786 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C6x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5788 0 R
+>>
+endobj
+5788 0 obj
+<<
+/Parent 5786 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C6x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5787 0 R
+>>
+endobj
+5789 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C7'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C7)
+/Next 5792 0 R
+/Prev 5786 0 R
+/First 5790 0 R
+/Last 5791 0 R
+/Count -2
+>>
+endobj
+5790 0 obj
+<<
+/Parent 5789 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C7x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5791 0 R
+>>
+endobj
+5791 0 obj
+<<
+/Parent 5789 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C7x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5790 0 R
+>>
+endobj
+5792 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C8'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C8)
+/Next 5795 0 R
+/Prev 5789 0 R
+/First 5793 0 R
+/Last 5794 0 R
+/Count -2
+>>
+endobj
+5793 0 obj
+<<
+/Parent 5792 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C8x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5794 0 R
+>>
+endobj
+5794 0 obj
+<<
+/Parent 5792 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C8x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5793 0 R
+>>
+endobj
+5795 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C9'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C9)
+/Next 5798 0 R
+/Prev 5792 0 R
+/First 5796 0 R
+/Last 5797 0 R
+/Count -2
+>>
+endobj
+5796 0 obj
+<<
+/Parent 5795 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C9x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5797 0 R
+>>
+endobj
+5797 0 obj
+<<
+/Parent 5795 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C9x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5796 0 R
+>>
+endobj
+5798 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C10'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C10)
+/Next 5801 0 R
+/Prev 5795 0 R
+/First 5799 0 R
+/Last 5800 0 R
+/Count -2
+>>
+endobj
+5799 0 obj
+<<
+/Parent 5798 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C10x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5800 0 R
+>>
+endobj
+5800 0 obj
+<<
+/Parent 5798 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C10x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5799 0 R
+>>
+endobj
+5801 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C11'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C11)
+/Next 5804 0 R
+/Prev 5798 0 R
+/First 5802 0 R
+/Last 5803 0 R
+/Count -2
+>>
+endobj
+5802 0 obj
+<<
+/Parent 5801 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C11x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5803 0 R
+>>
+endobj
+5803 0 obj
+<<
+/Parent 5801 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C11x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5802 0 R
+>>
+endobj
+5804 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C12'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C12)
+/Next 5807 0 R
+/Prev 5801 0 R
+/First 5805 0 R
+/Last 5806 0 R
+/Count -2
+>>
+endobj
+5805 0 obj
+<<
+/Parent 5804 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C12x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5806 0 R
+>>
+endobj
+5806 0 obj
+<<
+/Parent 5804 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C12x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5805 0 R
+>>
+endobj
+5807 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C13'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C13)
+/Next 5810 0 R
+/Prev 5804 0 R
+/First 5808 0 R
+/Last 5809 0 R
+/Count -2
+>>
+endobj
+5808 0 obj
+<<
+/Parent 5807 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C13x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5809 0 R
+>>
+endobj
+5809 0 obj
+<<
+/Parent 5807 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C13x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5808 0 R
+>>
+endobj
+5810 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C14'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C14)
+/Next 5813 0 R
+/Prev 5807 0 R
+/First 5811 0 R
+/Last 5812 0 R
+/Count -2
+>>
+endobj
+5811 0 obj
+<<
+/Parent 5810 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C14x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5812 0 R
+>>
+endobj
+5812 0 obj
+<<
+/Parent 5810 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C14x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5811 0 R
+>>
+endobj
+5813 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C15'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C15)
+/Next 5816 0 R
+/Prev 5810 0 R
+/First 5814 0 R
+/Last 5815 0 R
+/Count -2
+>>
+endobj
+5814 0 obj
+<<
+/Parent 5813 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C15x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5815 0 R
+>>
+endobj
+5815 0 obj
+<<
+/Parent 5813 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C15x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5814 0 R
+>>
+endobj
+5816 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C16'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C16)
+/Next 5819 0 R
+/Prev 5813 0 R
+/First 5817 0 R
+/Last 5818 0 R
+/Count -2
+>>
+endobj
+5817 0 obj
+<<
+/Parent 5816 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C16x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5818 0 R
+>>
+endobj
+5818 0 obj
+<<
+/Parent 5816 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C16x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5817 0 R
+>>
+endobj
+5819 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D1)
+/Next 5822 0 R
+/Prev 5816 0 R
+/First 5820 0 R
+/Last 5821 0 R
+/Count -2
+>>
+endobj
+5820 0 obj
+<<
+/Parent 5819 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D1xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5821 0 R
+>>
+endobj
+5821 0 obj
+<<
+/Parent 5819 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D1xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5820 0 R
+>>
+endobj
+5822 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D2)
+/Next 5825 0 R
+/Prev 5819 0 R
+/First 5823 0 R
+/Last 5824 0 R
+/Count -2
+>>
+endobj
+5823 0 obj
+<<
+/Parent 5822 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D2xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5824 0 R
+>>
+endobj
+5824 0 obj
+<<
+/Parent 5822 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D2xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5823 0 R
+>>
+endobj
+5825 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D3)
+/Next 5828 0 R
+/Prev 5822 0 R
+/First 5826 0 R
+/Last 5827 0 R
+/Count -2
+>>
+endobj
+5826 0 obj
+<<
+/Parent 5825 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D3xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5827 0 R
+>>
+endobj
+5827 0 obj
+<<
+/Parent 5825 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D3xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5826 0 R
+>>
+endobj
+5828 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D4)
+/Next 5831 0 R
+/Prev 5825 0 R
+/First 5829 0 R
+/Last 5830 0 R
+/Count -2
+>>
+endobj
+5829 0 obj
+<<
+/Parent 5828 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D4xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5830 0 R
+>>
+endobj
+5830 0 obj
+<<
+/Parent 5828 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D4xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5829 0 R
+>>
+endobj
+5831 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D5)
+/Next 5834 0 R
+/Prev 5828 0 R
+/First 5832 0 R
+/Last 5833 0 R
+/Count -2
+>>
+endobj
+5832 0 obj
+<<
+/Parent 5831 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D5xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5833 0 R
+>>
+endobj
+5833 0 obj
+<<
+/Parent 5831 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D5xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5832 0 R
+>>
+endobj
+5834 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D6)
+/Next 5837 0 R
+/Prev 5831 0 R
+/First 5835 0 R
+/Last 5836 0 R
+/Count -2
+>>
+endobj
+5835 0 obj
+<<
+/Parent 5834 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D6xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5836 0 R
+>>
+endobj
+5836 0 obj
+<<
+/Parent 5834 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D6xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5835 0 R
+>>
+endobj
+5837 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D7'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D7)
+/Next 5840 0 R
+/Prev 5834 0 R
+/First 5838 0 R
+/Last 5839 0 R
+/Count -2
+>>
+endobj
+5838 0 obj
+<<
+/Parent 5837 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D7xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5839 0 R
+>>
+endobj
+5839 0 obj
+<<
+/Parent 5837 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D7xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5838 0 R
+>>
+endobj
+5840 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D8'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D8)
+/Next 5843 0 R
+/Prev 5837 0 R
+/First 5841 0 R
+/Last 5842 0 R
+/Count -2
+>>
+endobj
+5841 0 obj
+<<
+/Parent 5840 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D8xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5842 0 R
+>>
+endobj
+5842 0 obj
+<<
+/Parent 5840 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D8xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5841 0 R
+>>
+endobj
+5843 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D9'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D9)
+/Next 5846 0 R
+/Prev 5840 0 R
+/First 5844 0 R
+/Last 5845 0 R
+/Count -2
+>>
+endobj
+5844 0 obj
+<<
+/Parent 5843 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D9xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 5845 0 R
+>>
+endobj
+5845 0 obj
+<<
+/Parent 5843 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D9xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C)
+/Prev 5844 0 R
+>>
+endobj
+5846 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='F1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (F1)
+/Next 5849 0 R
+/Prev 5843 0 R
+/First 5847 0 R
+/Last 5848 0 R
+/Count -2
+>>
+endobj
+5847 0 obj
+<<
+/Parent 5846 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='F1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5848 0 R
+>>
+endobj
+5848 0 obj
+<<
+/Parent 5846 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='F1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5847 0 R
+>>
+endobj
+5849 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J1)
+/Next 5856 0 R
+/Prev 5846 0 R
+/First 5850 0 R
+/Last 5855 0 R
+/Count -6
+>>
+endobj
+5850 0 obj
+<<
+/Parent 5849 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5851 0 R
+>>
+endobj
+5851 0 obj
+<<
+/Parent 5849 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Next 5852 0 R
+/Prev 5850 0 R
+>>
+endobj
+5852 0 obj
+<<
+/Parent 5849 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (3)
+/Next 5853 0 R
+/Prev 5851 0 R
+>>
+endobj
+5853 0 obj
+<<
+/Parent 5849 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (4)
+/Next 5854 0 R
+/Prev 5852 0 R
+>>
+endobj
+5854 0 obj
+<<
+/Parent 5849 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (5)
+/Next 5855 0 R
+/Prev 5853 0 R
+>>
+endobj
+5855 0 obj
+<<
+/Parent 5849 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (6)
+/Prev 5854 0 R
+>>
+endobj
+5856 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J2)
+/Next 5863 0 R
+/Prev 5849 0 R
+/First 5857 0 R
+/Last 5862 0 R
+/Count -6
+>>
+endobj
+5857 0 obj
+<<
+/Parent 5856 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5858 0 R
+>>
+endobj
+5858 0 obj
+<<
+/Parent 5856 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Next 5859 0 R
+/Prev 5857 0 R
+>>
+endobj
+5859 0 obj
+<<
+/Parent 5856 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (3)
+/Next 5860 0 R
+/Prev 5858 0 R
+>>
+endobj
+5860 0 obj
+<<
+/Parent 5856 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (4)
+/Next 5861 0 R
+/Prev 5859 0 R
+>>
+endobj
+5861 0 obj
+<<
+/Parent 5856 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (5)
+/Next 5862 0 R
+/Prev 5860 0 R
+>>
+endobj
+5862 0 obj
+<<
+/Parent 5856 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (6)
+/Prev 5861 0 R
+>>
+endobj
+5863 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J3)
+/Next 5866 0 R
+/Prev 5856 0 R
+/First 5864 0 R
+/Last 5865 0 R
+/Count -2
+>>
+endobj
+5864 0 obj
+<<
+/Parent 5863 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J3x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5865 0 R
+>>
+endobj
+5865 0 obj
+<<
+/Parent 5863 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J3x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5864 0 R
+>>
+endobj
+5866 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J4)
+/Next 5869 0 R
+/Prev 5863 0 R
+/First 5867 0 R
+/Last 5868 0 R
+/Count -2
+>>
+endobj
+5867 0 obj
+<<
+/Parent 5866 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J4x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5868 0 R
+>>
+endobj
+5868 0 obj
+<<
+/Parent 5866 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J4x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5867 0 R
+>>
+endobj
+5869 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J5)
+/Next 5872 0 R
+/Prev 5866 0 R
+/First 5870 0 R
+/Last 5871 0 R
+/Count -2
+>>
+endobj
+5870 0 obj
+<<
+/Parent 5869 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J5x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5871 0 R
+>>
+endobj
+5871 0 obj
+<<
+/Parent 5869 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J5x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5870 0 R
+>>
+endobj
+5872 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J6)
+/Next 5875 0 R
+/Prev 5869 0 R
+/First 5873 0 R
+/Last 5874 0 R
+/Count -2
+>>
+endobj
+5873 0 obj
+<<
+/Parent 5872 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J6x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5874 0 R
+>>
+endobj
+5874 0 obj
+<<
+/Parent 5872 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J6x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5873 0 R
+>>
+endobj
+5875 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J7'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J7)
+/Next 5878 0 R
+/Prev 5872 0 R
+/First 5876 0 R
+/Last 5877 0 R
+/Count -2
+>>
+endobj
+5876 0 obj
+<<
+/Parent 5875 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J7x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5877 0 R
+>>
+endobj
+5877 0 obj
+<<
+/Parent 5875 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J7x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5876 0 R
+>>
+endobj
+5878 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J8'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J8)
+/Next 5881 0 R
+/Prev 5875 0 R
+/First 5879 0 R
+/Last 5880 0 R
+/Count -2
+>>
+endobj
+5879 0 obj
+<<
+/Parent 5878 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J8x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5880 0 R
+>>
+endobj
+5880 0 obj
+<<
+/Parent 5878 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J8x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5879 0 R
+>>
+endobj
+5881 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J9'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J9)
+/Next 5884 0 R
+/Prev 5878 0 R
+/First 5882 0 R
+/Last 5883 0 R
+/Count -2
+>>
+endobj
+5882 0 obj
+<<
+/Parent 5881 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J9x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5883 0 R
+>>
+endobj
+5883 0 obj
+<<
+/Parent 5881 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J9x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5882 0 R
+>>
+endobj
+5884 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J10'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J10)
+/Next 5887 0 R
+/Prev 5881 0 R
+/First 5885 0 R
+/Last 5886 0 R
+/Count -2
+>>
+endobj
+5885 0 obj
+<<
+/Parent 5884 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J10x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5886 0 R
+>>
+endobj
+5886 0 obj
+<<
+/Parent 5884 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J10x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5885 0 R
+>>
+endobj
+5887 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J11'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J11)
+/Next 5890 0 R
+/Prev 5884 0 R
+/First 5888 0 R
+/Last 5889 0 R
+/Count -2
+>>
+endobj
+5888 0 obj
+<<
+/Parent 5887 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J11x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5889 0 R
+>>
+endobj
+5889 0 obj
+<<
+/Parent 5887 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J11x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5888 0 R
+>>
+endobj
+5890 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J12'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J12)
+/Next 5893 0 R
+/Prev 5887 0 R
+/First 5891 0 R
+/Last 5892 0 R
+/Count -2
+>>
+endobj
+5891 0 obj
+<<
+/Parent 5890 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J12x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5892 0 R
+>>
+endobj
+5892 0 obj
+<<
+/Parent 5890 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J12x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5891 0 R
+>>
+endobj
+5893 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J13'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J13)
+/Next 5896 0 R
+/Prev 5890 0 R
+/First 5894 0 R
+/Last 5895 0 R
+/Count -2
+>>
+endobj
+5894 0 obj
+<<
+/Parent 5893 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J13x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5895 0 R
+>>
+endobj
+5895 0 obj
+<<
+/Parent 5893 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J13x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5894 0 R
+>>
+endobj
+5896 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J14'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J14)
+/Next 5899 0 R
+/Prev 5893 0 R
+/First 5897 0 R
+/Last 5898 0 R
+/Count -2
+>>
+endobj
+5897 0 obj
+<<
+/Parent 5896 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J14x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5898 0 R
+>>
+endobj
+5898 0 obj
+<<
+/Parent 5896 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J14x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5897 0 R
+>>
+endobj
+5899 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J15'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J15)
+/Next 5902 0 R
+/Prev 5896 0 R
+/First 5900 0 R
+/Last 5901 0 R
+/Count -2
+>>
+endobj
+5900 0 obj
+<<
+/Parent 5899 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J15x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5901 0 R
+>>
+endobj
+5901 0 obj
+<<
+/Parent 5899 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J15x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5900 0 R
+>>
+endobj
+5902 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J16'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J16)
+/Next 5905 0 R
+/Prev 5899 0 R
+/First 5903 0 R
+/Last 5904 0 R
+/Count -2
+>>
+endobj
+5903 0 obj
+<<
+/Parent 5902 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J16x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5904 0 R
+>>
+endobj
+5904 0 obj
+<<
+/Parent 5902 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J16x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5903 0 R
+>>
+endobj
+5905 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J18'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J18)
+/Next 5908 0 R
+/Prev 5902 0 R
+/First 5906 0 R
+/Last 5907 0 R
+/Count -2
+>>
+endobj
+5906 0 obj
+<<
+/Parent 5905 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J18x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5907 0 R
+>>
+endobj
+5907 0 obj
+<<
+/Parent 5905 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J18x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5906 0 R
+>>
+endobj
+5908 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J20'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J20)
+/Next 5911 0 R
+/Prev 5905 0 R
+/First 5909 0 R
+/Last 5910 0 R
+/Count -2
+>>
+endobj
+5909 0 obj
+<<
+/Parent 5908 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J20x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5910 0 R
+>>
+endobj
+5910 0 obj
+<<
+/Parent 5908 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J20x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5909 0 R
+>>
+endobj
+5911 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J21'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J21)
+/Next 5914 0 R
+/Prev 5908 0 R
+/First 5912 0 R
+/Last 5913 0 R
+/Count -2
+>>
+endobj
+5912 0 obj
+<<
+/Parent 5911 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J21x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5913 0 R
+>>
+endobj
+5913 0 obj
+<<
+/Parent 5911 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J21x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5912 0 R
+>>
+endobj
+5914 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J22'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J22)
+/Next 5917 0 R
+/Prev 5911 0 R
+/First 5915 0 R
+/Last 5916 0 R
+/Count -2
+>>
+endobj
+5915 0 obj
+<<
+/Parent 5914 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J22x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5916 0 R
+>>
+endobj
+5916 0 obj
+<<
+/Parent 5914 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J22x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5915 0 R
+>>
+endobj
+5917 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J23'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J23)
+/Next 5920 0 R
+/Prev 5914 0 R
+/First 5918 0 R
+/Last 5919 0 R
+/Count -2
+>>
+endobj
+5918 0 obj
+<<
+/Parent 5917 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J23x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5919 0 R
+>>
+endobj
+5919 0 obj
+<<
+/Parent 5917 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J23x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5918 0 R
+>>
+endobj
+5920 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J24'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J24)
+/Next 5923 0 R
+/Prev 5917 0 R
+/First 5921 0 R
+/Last 5922 0 R
+/Count -2
+>>
+endobj
+5921 0 obj
+<<
+/Parent 5920 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J24x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5922 0 R
+>>
+endobj
+5922 0 obj
+<<
+/Parent 5920 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J24x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5921 0 R
+>>
+endobj
+5923 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J25'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J25)
+/Next 5926 0 R
+/Prev 5920 0 R
+/First 5924 0 R
+/Last 5925 0 R
+/Count -2
+>>
+endobj
+5924 0 obj
+<<
+/Parent 5923 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J25x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5925 0 R
+>>
+endobj
+5925 0 obj
+<<
+/Parent 5923 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J25x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5924 0 R
+>>
+endobj
+5926 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J26'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J26)
+/Next 5929 0 R
+/Prev 5923 0 R
+/First 5927 0 R
+/Last 5928 0 R
+/Count -2
+>>
+endobj
+5927 0 obj
+<<
+/Parent 5926 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J26x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5928 0 R
+>>
+endobj
+5928 0 obj
+<<
+/Parent 5926 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J26x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5927 0 R
+>>
+endobj
+5929 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J27'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J27)
+/Next 5932 0 R
+/Prev 5926 0 R
+/First 5930 0 R
+/Last 5931 0 R
+/Count -2
+>>
+endobj
+5930 0 obj
+<<
+/Parent 5929 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J27x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5931 0 R
+>>
+endobj
+5931 0 obj
+<<
+/Parent 5929 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J27x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5930 0 R
+>>
+endobj
+5932 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J28'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J28)
+/Next 5935 0 R
+/Prev 5929 0 R
+/First 5933 0 R
+/Last 5934 0 R
+/Count -2
+>>
+endobj
+5933 0 obj
+<<
+/Parent 5932 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J28x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5934 0 R
+>>
+endobj
+5934 0 obj
+<<
+/Parent 5932 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J28x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5933 0 R
+>>
+endobj
+5935 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J29'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J29)
+/Next 5938 0 R
+/Prev 5932 0 R
+/First 5936 0 R
+/Last 5937 0 R
+/Count -2
+>>
+endobj
+5936 0 obj
+<<
+/Parent 5935 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J29x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5937 0 R
+>>
+endobj
+5937 0 obj
+<<
+/Parent 5935 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J29x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5936 0 R
+>>
+endobj
+5938 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J31'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J31)
+/Next 5941 0 R
+/Prev 5935 0 R
+/First 5939 0 R
+/Last 5940 0 R
+/Count -2
+>>
+endobj
+5939 0 obj
+<<
+/Parent 5938 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J31x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5940 0 R
+>>
+endobj
+5940 0 obj
+<<
+/Parent 5938 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J31x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5939 0 R
+>>
+endobj
+5941 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J33'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J33)
+/Next 5944 0 R
+/Prev 5938 0 R
+/First 5942 0 R
+/Last 5943 0 R
+/Count -2
+>>
+endobj
+5942 0 obj
+<<
+/Parent 5941 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J33x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5943 0 R
+>>
+endobj
+5943 0 obj
+<<
+/Parent 5941 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J33x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5942 0 R
+>>
+endobj
+5944 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J34'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J34)
+/Next 5947 0 R
+/Prev 5941 0 R
+/First 5945 0 R
+/Last 5946 0 R
+/Count -2
+>>
+endobj
+5945 0 obj
+<<
+/Parent 5944 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J34x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5946 0 R
+>>
+endobj
+5946 0 obj
+<<
+/Parent 5944 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J34x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5945 0 R
+>>
+endobj
+5947 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J35'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J35)
+/Next 5950 0 R
+/Prev 5944 0 R
+/First 5948 0 R
+/Last 5949 0 R
+/Count -2
+>>
+endobj
+5948 0 obj
+<<
+/Parent 5947 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J35x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5949 0 R
+>>
+endobj
+5949 0 obj
+<<
+/Parent 5947 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J35x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5948 0 R
+>>
+endobj
+5950 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J36'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J36)
+/Next 5953 0 R
+/Prev 5947 0 R
+/First 5951 0 R
+/Last 5952 0 R
+/Count -2
+>>
+endobj
+5951 0 obj
+<<
+/Parent 5950 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J36x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5952 0 R
+>>
+endobj
+5952 0 obj
+<<
+/Parent 5950 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J36x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5951 0 R
+>>
+endobj
+5953 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J37'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J37)
+/Next 5956 0 R
+/Prev 5950 0 R
+/First 5954 0 R
+/Last 5955 0 R
+/Count -2
+>>
+endobj
+5954 0 obj
+<<
+/Parent 5953 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J37x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5955 0 R
+>>
+endobj
+5955 0 obj
+<<
+/Parent 5953 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J37x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5954 0 R
+>>
+endobj
+5956 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J38'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J38)
+/Next 5959 0 R
+/Prev 5953 0 R
+/First 5957 0 R
+/Last 5958 0 R
+/Count -2
+>>
+endobj
+5957 0 obj
+<<
+/Parent 5956 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J38x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5958 0 R
+>>
+endobj
+5958 0 obj
+<<
+/Parent 5956 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J38x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5957 0 R
+>>
+endobj
+5959 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J39'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J39)
+/Next 5962 0 R
+/Prev 5956 0 R
+/First 5960 0 R
+/Last 5961 0 R
+/Count -2
+>>
+endobj
+5960 0 obj
+<<
+/Parent 5959 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J39x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5961 0 R
+>>
+endobj
+5961 0 obj
+<<
+/Parent 5959 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J39x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5960 0 R
+>>
+endobj
+5962 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J40'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J40)
+/Next 5965 0 R
+/Prev 5959 0 R
+/First 5963 0 R
+/Last 5964 0 R
+/Count -2
+>>
+endobj
+5963 0 obj
+<<
+/Parent 5962 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J40x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5964 0 R
+>>
+endobj
+5964 0 obj
+<<
+/Parent 5962 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J40x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5963 0 R
+>>
+endobj
+5965 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J41'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J41)
+/Next 5968 0 R
+/Prev 5962 0 R
+/First 5966 0 R
+/Last 5967 0 R
+/Count -2
+>>
+endobj
+5966 0 obj
+<<
+/Parent 5965 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J41x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5967 0 R
+>>
+endobj
+5967 0 obj
+<<
+/Parent 5965 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J41x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5966 0 R
+>>
+endobj
+5968 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J42'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J42)
+/Next 5971 0 R
+/Prev 5965 0 R
+/First 5969 0 R
+/Last 5970 0 R
+/Count -2
+>>
+endobj
+5969 0 obj
+<<
+/Parent 5968 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J42x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5970 0 R
+>>
+endobj
+5970 0 obj
+<<
+/Parent 5968 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J42x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5969 0 R
+>>
+endobj
+5971 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J43'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J43)
+/Next 5974 0 R
+/Prev 5968 0 R
+/First 5972 0 R
+/Last 5973 0 R
+/Count -2
+>>
+endobj
+5972 0 obj
+<<
+/Parent 5971 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J43x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5973 0 R
+>>
+endobj
+5973 0 obj
+<<
+/Parent 5971 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J43x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5972 0 R
+>>
+endobj
+5974 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J44'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J44)
+/Next 5977 0 R
+/Prev 5971 0 R
+/First 5975 0 R
+/Last 5976 0 R
+/Count -2
+>>
+endobj
+5975 0 obj
+<<
+/Parent 5974 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J44x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5976 0 R
+>>
+endobj
+5976 0 obj
+<<
+/Parent 5974 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J44x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5975 0 R
+>>
+endobj
+5977 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J45'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J45)
+/Next 5980 0 R
+/Prev 5974 0 R
+/First 5978 0 R
+/Last 5979 0 R
+/Count -2
+>>
+endobj
+5978 0 obj
+<<
+/Parent 5977 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J45x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5979 0 R
+>>
+endobj
+5979 0 obj
+<<
+/Parent 5977 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J45x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5978 0 R
+>>
+endobj
+5980 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J46'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J46)
+/Next 5983 0 R
+/Prev 5977 0 R
+/First 5981 0 R
+/Last 5982 0 R
+/Count -2
+>>
+endobj
+5981 0 obj
+<<
+/Parent 5980 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J46x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5982 0 R
+>>
+endobj
+5982 0 obj
+<<
+/Parent 5980 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J46x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5981 0 R
+>>
+endobj
+5983 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J47'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J47)
+/Next 5986 0 R
+/Prev 5980 0 R
+/First 5984 0 R
+/Last 5985 0 R
+/Count -2
+>>
+endobj
+5984 0 obj
+<<
+/Parent 5983 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J47x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5985 0 R
+>>
+endobj
+5985 0 obj
+<<
+/Parent 5983 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J47x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5984 0 R
+>>
+endobj
+5986 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J48'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J48)
+/Next 5989 0 R
+/Prev 5983 0 R
+/First 5987 0 R
+/Last 5988 0 R
+/Count -2
+>>
+endobj
+5987 0 obj
+<<
+/Parent 5986 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J48x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5988 0 R
+>>
+endobj
+5988 0 obj
+<<
+/Parent 5986 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J48x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5987 0 R
+>>
+endobj
+5989 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J49'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J49)
+/Next 5992 0 R
+/Prev 5986 0 R
+/First 5990 0 R
+/Last 5991 0 R
+/Count -2
+>>
+endobj
+5990 0 obj
+<<
+/Parent 5989 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J49x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5991 0 R
+>>
+endobj
+5991 0 obj
+<<
+/Parent 5989 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J49x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5990 0 R
+>>
+endobj
+5992 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J50'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J50)
+/Next 5995 0 R
+/Prev 5989 0 R
+/First 5993 0 R
+/Last 5994 0 R
+/Count -2
+>>
+endobj
+5993 0 obj
+<<
+/Parent 5992 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J50x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5994 0 R
+>>
+endobj
+5994 0 obj
+<<
+/Parent 5992 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J50x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 5993 0 R
+>>
+endobj
+5995 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51)
+/Next 6006 0 R
+/Prev 5992 0 R
+/First 5996 0 R
+/Last 6005 0 R
+/Count -10
+>>
+endobj
+5996 0 obj
+<<
+/Parent 5995 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 5997 0 R
+>>
+endobj
+5997 0 obj
+<<
+/Parent 5995 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Next 5998 0 R
+/Prev 5996 0 R
+>>
+endobj
+5998 0 obj
+<<
+/Parent 5995 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (3)
+/Next 5999 0 R
+/Prev 5997 0 R
+>>
+endobj
+5999 0 obj
+<<
+/Parent 5995 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (4)
+/Next 6000 0 R
+/Prev 5998 0 R
+>>
+endobj
+6000 0 obj
+<<
+/Parent 5995 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (5)
+/Next 6001 0 R
+/Prev 5999 0 R
+>>
+endobj
+6001 0 obj
+<<
+/Parent 5995 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (6)
+/Next 6002 0 R
+/Prev 6000 0 R
+>>
+endobj
+6002 0 obj
+<<
+/Parent 5995 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x7'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (7)
+/Next 6003 0 R
+/Prev 6001 0 R
+>>
+endobj
+6003 0 obj
+<<
+/Parent 5995 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x8'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (8)
+/Next 6004 0 R
+/Prev 6002 0 R
+>>
+endobj
+6004 0 obj
+<<
+/Parent 5995 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x9'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (9)
+/Next 6005 0 R
+/Prev 6003 0 R
+>>
+endobj
+6005 0 obj
+<<
+/Parent 5995 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x10'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (10)
+/Prev 6004 0 R
+>>
+endobj
+6006 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J52'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J52)
+/Next 6009 0 R
+/Prev 5995 0 R
+/First 6007 0 R
+/Last 6008 0 R
+/Count -2
+>>
+endobj
+6007 0 obj
+<<
+/Parent 6006 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J52x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6008 0 R
+>>
+endobj
+6008 0 obj
+<<
+/Parent 6006 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J52x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6007 0 R
+>>
+endobj
+6009 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J53'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J53)
+/Next 6012 0 R
+/Prev 6006 0 R
+/First 6010 0 R
+/Last 6011 0 R
+/Count -2
+>>
+endobj
+6010 0 obj
+<<
+/Parent 6009 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J53x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6011 0 R
+>>
+endobj
+6011 0 obj
+<<
+/Parent 6009 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J53x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6010 0 R
+>>
+endobj
+6012 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J54'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J54)
+/Next 6015 0 R
+/Prev 6009 0 R
+/First 6013 0 R
+/Last 6014 0 R
+/Count -2
+>>
+endobj
+6013 0 obj
+<<
+/Parent 6012 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J54x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6014 0 R
+>>
+endobj
+6014 0 obj
+<<
+/Parent 6012 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J54x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6013 0 R
+>>
+endobj
+6015 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J55'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J55)
+/Next 6018 0 R
+/Prev 6012 0 R
+/First 6016 0 R
+/Last 6017 0 R
+/Count -2
+>>
+endobj
+6016 0 obj
+<<
+/Parent 6015 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J55x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6017 0 R
+>>
+endobj
+6017 0 obj
+<<
+/Parent 6015 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J55x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6016 0 R
+>>
+endobj
+6018 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J56'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J56)
+/Next 6021 0 R
+/Prev 6015 0 R
+/First 6019 0 R
+/Last 6020 0 R
+/Count -2
+>>
+endobj
+6019 0 obj
+<<
+/Parent 6018 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J56x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6020 0 R
+>>
+endobj
+6020 0 obj
+<<
+/Parent 6018 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J56x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6019 0 R
+>>
+endobj
+6021 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J57'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J57)
+/Next 6024 0 R
+/Prev 6018 0 R
+/First 6022 0 R
+/Last 6023 0 R
+/Count -2
+>>
+endobj
+6022 0 obj
+<<
+/Parent 6021 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J57x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6023 0 R
+>>
+endobj
+6023 0 obj
+<<
+/Parent 6021 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J57x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6022 0 R
+>>
+endobj
+6024 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J58'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J58)
+/Next 6027 0 R
+/Prev 6021 0 R
+/First 6025 0 R
+/Last 6026 0 R
+/Count -2
+>>
+endobj
+6025 0 obj
+<<
+/Parent 6024 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J58x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6026 0 R
+>>
+endobj
+6026 0 obj
+<<
+/Parent 6024 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J58x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6025 0 R
+>>
+endobj
+6027 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J59'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J59)
+/Next 6030 0 R
+/Prev 6024 0 R
+/First 6028 0 R
+/Last 6029 0 R
+/Count -2
+>>
+endobj
+6028 0 obj
+<<
+/Parent 6027 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J59x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6029 0 R
+>>
+endobj
+6029 0 obj
+<<
+/Parent 6027 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J59x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6028 0 R
+>>
+endobj
+6030 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J60'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J60)
+/Next 6033 0 R
+/Prev 6027 0 R
+/First 6031 0 R
+/Last 6032 0 R
+/Count -2
+>>
+endobj
+6031 0 obj
+<<
+/Parent 6030 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J60x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6032 0 R
+>>
+endobj
+6032 0 obj
+<<
+/Parent 6030 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J60x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6031 0 R
+>>
+endobj
+6033 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J61'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J61)
+/Next 6036 0 R
+/Prev 6030 0 R
+/First 6034 0 R
+/Last 6035 0 R
+/Count -2
+>>
+endobj
+6034 0 obj
+<<
+/Parent 6033 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J61x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6035 0 R
+>>
+endobj
+6035 0 obj
+<<
+/Parent 6033 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J61x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6034 0 R
+>>
+endobj
+6036 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J62'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J62)
+/Next 6039 0 R
+/Prev 6033 0 R
+/First 6037 0 R
+/Last 6038 0 R
+/Count -2
+>>
+endobj
+6037 0 obj
+<<
+/Parent 6036 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J62x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6038 0 R
+>>
+endobj
+6038 0 obj
+<<
+/Parent 6036 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J62x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6037 0 R
+>>
+endobj
+6039 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J63'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J63)
+/Next 6042 0 R
+/Prev 6036 0 R
+/First 6040 0 R
+/Last 6041 0 R
+/Count -2
+>>
+endobj
+6040 0 obj
+<<
+/Parent 6039 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J63x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6041 0 R
+>>
+endobj
+6041 0 obj
+<<
+/Parent 6039 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J63x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6040 0 R
+>>
+endobj
+6042 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J64'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J64)
+/Next 6045 0 R
+/Prev 6039 0 R
+/First 6043 0 R
+/Last 6044 0 R
+/Count -2
+>>
+endobj
+6043 0 obj
+<<
+/Parent 6042 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J64x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6044 0 R
+>>
+endobj
+6044 0 obj
+<<
+/Parent 6042 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J64x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6043 0 R
+>>
+endobj
+6045 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J65'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J65)
+/Next 6048 0 R
+/Prev 6042 0 R
+/First 6046 0 R
+/Last 6047 0 R
+/Count -2
+>>
+endobj
+6046 0 obj
+<<
+/Parent 6045 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J65x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6047 0 R
+>>
+endobj
+6047 0 obj
+<<
+/Parent 6045 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J65x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6046 0 R
+>>
+endobj
+6048 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J66'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J66)
+/Next 6051 0 R
+/Prev 6045 0 R
+/First 6049 0 R
+/Last 6050 0 R
+/Count -2
+>>
+endobj
+6049 0 obj
+<<
+/Parent 6048 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J66x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6050 0 R
+>>
+endobj
+6050 0 obj
+<<
+/Parent 6048 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J66x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6049 0 R
+>>
+endobj
+6051 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J67'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J67)
+/Next 6054 0 R
+/Prev 6048 0 R
+/First 6052 0 R
+/Last 6053 0 R
+/Count -2
+>>
+endobj
+6052 0 obj
+<<
+/Parent 6051 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J67x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6053 0 R
+>>
+endobj
+6053 0 obj
+<<
+/Parent 6051 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J67x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6052 0 R
+>>
+endobj
+6054 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J68'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J68)
+/Next 6057 0 R
+/Prev 6051 0 R
+/First 6055 0 R
+/Last 6056 0 R
+/Count -2
+>>
+endobj
+6055 0 obj
+<<
+/Parent 6054 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J68x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6056 0 R
+>>
+endobj
+6056 0 obj
+<<
+/Parent 6054 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J68x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6055 0 R
+>>
+endobj
+6057 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J69)
+/Next 6064 0 R
+/Prev 6054 0 R
+/First 6058 0 R
+/Last 6063 0 R
+/Count -6
+>>
+endobj
+6058 0 obj
+<<
+/Parent 6057 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6059 0 R
+>>
+endobj
+6059 0 obj
+<<
+/Parent 6057 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Next 6060 0 R
+/Prev 6058 0 R
+>>
+endobj
+6060 0 obj
+<<
+/Parent 6057 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (3)
+/Next 6061 0 R
+/Prev 6059 0 R
+>>
+endobj
+6061 0 obj
+<<
+/Parent 6057 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (4)
+/Next 6062 0 R
+/Prev 6060 0 R
+>>
+endobj
+6062 0 obj
+<<
+/Parent 6057 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (5)
+/Next 6063 0 R
+/Prev 6061 0 R
+>>
+endobj
+6063 0 obj
+<<
+/Parent 6057 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (6)
+/Prev 6062 0 R
+>>
+endobj
+6064 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J70'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J70)
+/Next 6067 0 R
+/Prev 6057 0 R
+/First 6065 0 R
+/Last 6066 0 R
+/Count -2
+>>
+endobj
+6065 0 obj
+<<
+/Parent 6064 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J70x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6066 0 R
+>>
+endobj
+6066 0 obj
+<<
+/Parent 6064 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J70x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6065 0 R
+>>
+endobj
+6067 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J71'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J71)
+/Next 6070 0 R
+/Prev 6064 0 R
+/First 6068 0 R
+/Last 6069 0 R
+/Count -2
+>>
+endobj
+6068 0 obj
+<<
+/Parent 6067 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J71x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6069 0 R
+>>
+endobj
+6069 0 obj
+<<
+/Parent 6067 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J71x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6068 0 R
+>>
+endobj
+6070 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J72'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J72)
+/Next 6073 0 R
+/Prev 6067 0 R
+/First 6071 0 R
+/Last 6072 0 R
+/Count -2
+>>
+endobj
+6071 0 obj
+<<
+/Parent 6070 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J72x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6072 0 R
+>>
+endobj
+6072 0 obj
+<<
+/Parent 6070 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J72x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6071 0 R
+>>
+endobj
+6073 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J73'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J73)
+/Next 6076 0 R
+/Prev 6070 0 R
+/First 6074 0 R
+/Last 6075 0 R
+/Count -2
+>>
+endobj
+6074 0 obj
+<<
+/Parent 6073 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J73x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6075 0 R
+>>
+endobj
+6075 0 obj
+<<
+/Parent 6073 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J73x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6074 0 R
+>>
+endobj
+6076 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J74'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J74)
+/Next 6079 0 R
+/Prev 6073 0 R
+/First 6077 0 R
+/Last 6078 0 R
+/Count -2
+>>
+endobj
+6077 0 obj
+<<
+/Parent 6076 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J74x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6078 0 R
+>>
+endobj
+6078 0 obj
+<<
+/Parent 6076 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J74x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6077 0 R
+>>
+endobj
+6079 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J75'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J75)
+/Next 6082 0 R
+/Prev 6076 0 R
+/First 6080 0 R
+/Last 6081 0 R
+/Count -2
+>>
+endobj
+6080 0 obj
+<<
+/Parent 6079 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J75x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6081 0 R
+>>
+endobj
+6081 0 obj
+<<
+/Parent 6079 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J75x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6080 0 R
+>>
+endobj
+6082 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J76'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J76)
+/Next 6085 0 R
+/Prev 6079 0 R
+/First 6083 0 R
+/Last 6084 0 R
+/Count -2
+>>
+endobj
+6083 0 obj
+<<
+/Parent 6082 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J76x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6084 0 R
+>>
+endobj
+6084 0 obj
+<<
+/Parent 6082 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J76x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6083 0 R
+>>
+endobj
+6085 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (JF1)
+/Next 6093 0 R
+/Prev 6082 0 R
+/First 6086 0 R
+/Last 6092 0 R
+/Count -7
+>>
+endobj
+6086 0 obj
+<<
+/Parent 6085 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6087 0 R
+>>
+endobj
+6087 0 obj
+<<
+/Parent 6085 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Next 6088 0 R
+/Prev 6086 0 R
+>>
+endobj
+6088 0 obj
+<<
+/Parent 6085 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (3)
+/Next 6089 0 R
+/Prev 6087 0 R
+>>
+endobj
+6089 0 obj
+<<
+/Parent 6085 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (4)
+/Next 6090 0 R
+/Prev 6088 0 R
+>>
+endobj
+6090 0 obj
+<<
+/Parent 6085 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (5)
+/Next 6091 0 R
+/Prev 6089 0 R
+>>
+endobj
+6091 0 obj
+<<
+/Parent 6085 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (6)
+/Next 6092 0 R
+/Prev 6090 0 R
+>>
+endobj
+6092 0 obj
+<<
+/Parent 6085 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x7'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (7)
+/Prev 6091 0 R
+>>
+endobj
+6093 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (JF2)
+/Next 6095 0 R
+/Prev 6085 0 R
+/First 6094 0 R
+/Last 6094 0 R
+/Count -1
+>>
+endobj
+6094 0 obj
+<<
+/Parent 6093 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+6095 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='L1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (L1)
+/Next 6098 0 R
+/Prev 6093 0 R
+/First 6096 0 R
+/Last 6097 0 R
+/Count -2
+>>
+endobj
+6096 0 obj
+<<
+/Parent 6095 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='L1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6097 0 R
+>>
+endobj
+6097 0 obj
+<<
+/Parent 6095 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='L1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6096 0 R
+>>
+endobj
+6098 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='L2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (L2)
+/Next 6101 0 R
+/Prev 6095 0 R
+/First 6099 0 R
+/Last 6100 0 R
+/Count -2
+>>
+endobj
+6099 0 obj
+<<
+/Parent 6098 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='L2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6100 0 R
+>>
+endobj
+6100 0 obj
+<<
+/Parent 6098 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='L2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6099 0 R
+>>
+endobj
+6101 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (M1)
+/Next 6103 0 R
+/Prev 6098 0 R
+/First 6102 0 R
+/Last 6102 0 R
+/Count -1
+>>
+endobj
+6102 0 obj
+<<
+/Parent 6101 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+6103 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (M2)
+/Next 6105 0 R
+/Prev 6101 0 R
+/First 6104 0 R
+/Last 6104 0 R
+/Count -1
+>>
+endobj
+6104 0 obj
+<<
+/Parent 6103 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+6105 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (M3)
+/Next 6107 0 R
+/Prev 6103 0 R
+/First 6106 0 R
+/Last 6106 0 R
+/Count -1
+>>
+endobj
+6106 0 obj
+<<
+/Parent 6105 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M3x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+6107 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (M4)
+/Next 6109 0 R
+/Prev 6105 0 R
+/First 6108 0 R
+/Last 6108 0 R
+/Count -1
+>>
+endobj
+6108 0 obj
+<<
+/Parent 6107 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M4x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+6109 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (M5)
+/Next 6111 0 R
+/Prev 6107 0 R
+/First 6110 0 R
+/Last 6110 0 R
+/Count -1
+>>
+endobj
+6110 0 obj
+<<
+/Parent 6109 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M5x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+>>
+endobj
+6111 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='Q1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (Q1)
+/Next 6115 0 R
+/Prev 6109 0 R
+/First 6112 0 R
+/Last 6114 0 R
+/Count -3
+>>
+endobj
+6112 0 obj
+<<
+/Parent 6111 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='Q1xD'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D)
+/Next 6113 0 R
+>>
+endobj
+6113 0 obj
+<<
+/Parent 6111 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='Q1xG'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (G)
+/Next 6114 0 R
+/Prev 6112 0 R
+>>
+endobj
+6114 0 obj
+<<
+/Parent 6111 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='Q1xS'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (S)
+/Prev 6113 0 R
+>>
+endobj
+6115 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R1)
+/Next 6118 0 R
+/Prev 6111 0 R
+/First 6116 0 R
+/Last 6117 0 R
+/Count -2
+>>
+endobj
+6116 0 obj
+<<
+/Parent 6115 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6117 0 R
+>>
+endobj
+6117 0 obj
+<<
+/Parent 6115 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6116 0 R
+>>
+endobj
+6118 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R2)
+/Next 6121 0 R
+/Prev 6115 0 R
+/First 6119 0 R
+/Last 6120 0 R
+/Count -2
+>>
+endobj
+6119 0 obj
+<<
+/Parent 6118 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6120 0 R
+>>
+endobj
+6120 0 obj
+<<
+/Parent 6118 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6119 0 R
+>>
+endobj
+6121 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R3)
+/Next 6124 0 R
+/Prev 6118 0 R
+/First 6122 0 R
+/Last 6123 0 R
+/Count -2
+>>
+endobj
+6122 0 obj
+<<
+/Parent 6121 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R3x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6123 0 R
+>>
+endobj
+6123 0 obj
+<<
+/Parent 6121 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R3x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6122 0 R
+>>
+endobj
+6124 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R4)
+/Next 6127 0 R
+/Prev 6121 0 R
+/First 6125 0 R
+/Last 6126 0 R
+/Count -2
+>>
+endobj
+6125 0 obj
+<<
+/Parent 6124 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R4x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6126 0 R
+>>
+endobj
+6126 0 obj
+<<
+/Parent 6124 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R4x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6125 0 R
+>>
+endobj
+6127 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R5)
+/Next 6130 0 R
+/Prev 6124 0 R
+/First 6128 0 R
+/Last 6129 0 R
+/Count -2
+>>
+endobj
+6128 0 obj
+<<
+/Parent 6127 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R5x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6129 0 R
+>>
+endobj
+6129 0 obj
+<<
+/Parent 6127 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R5x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6128 0 R
+>>
+endobj
+6130 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R6)
+/Next 6133 0 R
+/Prev 6127 0 R
+/First 6131 0 R
+/Last 6132 0 R
+/Count -2
+>>
+endobj
+6131 0 obj
+<<
+/Parent 6130 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R6x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6132 0 R
+>>
+endobj
+6132 0 obj
+<<
+/Parent 6130 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R6x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6131 0 R
+>>
+endobj
+6133 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R7'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R7)
+/Next 6136 0 R
+/Prev 6130 0 R
+/First 6134 0 R
+/Last 6135 0 R
+/Count -2
+>>
+endobj
+6134 0 obj
+<<
+/Parent 6133 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R7x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6135 0 R
+>>
+endobj
+6135 0 obj
+<<
+/Parent 6133 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R7x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6134 0 R
+>>
+endobj
+6136 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R8'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R8)
+/Next 6139 0 R
+/Prev 6133 0 R
+/First 6137 0 R
+/Last 6138 0 R
+/Count -2
+>>
+endobj
+6137 0 obj
+<<
+/Parent 6136 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R8x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6138 0 R
+>>
+endobj
+6138 0 obj
+<<
+/Parent 6136 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R8x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6137 0 R
+>>
+endobj
+6139 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R9'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R9)
+/Next 6142 0 R
+/Prev 6136 0 R
+/First 6140 0 R
+/Last 6141 0 R
+/Count -2
+>>
+endobj
+6140 0 obj
+<<
+/Parent 6139 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R9x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6141 0 R
+>>
+endobj
+6141 0 obj
+<<
+/Parent 6139 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R9x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6140 0 R
+>>
+endobj
+6142 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R10'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R10)
+/Next 6145 0 R
+/Prev 6139 0 R
+/First 6143 0 R
+/Last 6144 0 R
+/Count -2
+>>
+endobj
+6143 0 obj
+<<
+/Parent 6142 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R10x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6144 0 R
+>>
+endobj
+6144 0 obj
+<<
+/Parent 6142 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R10x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6143 0 R
+>>
+endobj
+6145 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R11'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R11)
+/Next 6148 0 R
+/Prev 6142 0 R
+/First 6146 0 R
+/Last 6147 0 R
+/Count -2
+>>
+endobj
+6146 0 obj
+<<
+/Parent 6145 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R11x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6147 0 R
+>>
+endobj
+6147 0 obj
+<<
+/Parent 6145 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R11x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6146 0 R
+>>
+endobj
+6148 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R12'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R12)
+/Next 6151 0 R
+/Prev 6145 0 R
+/First 6149 0 R
+/Last 6150 0 R
+/Count -2
+>>
+endobj
+6149 0 obj
+<<
+/Parent 6148 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R12x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6150 0 R
+>>
+endobj
+6150 0 obj
+<<
+/Parent 6148 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R12x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6149 0 R
+>>
+endobj
+6151 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R13'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R13)
+/Next 6154 0 R
+/Prev 6148 0 R
+/First 6152 0 R
+/Last 6153 0 R
+/Count -2
+>>
+endobj
+6152 0 obj
+<<
+/Parent 6151 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R13x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6153 0 R
+>>
+endobj
+6153 0 obj
+<<
+/Parent 6151 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R13x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6152 0 R
+>>
+endobj
+6154 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R14'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R14)
+/Next 6157 0 R
+/Prev 6151 0 R
+/First 6155 0 R
+/Last 6156 0 R
+/Count -2
+>>
+endobj
+6155 0 obj
+<<
+/Parent 6154 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R14x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6156 0 R
+>>
+endobj
+6156 0 obj
+<<
+/Parent 6154 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R14x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6155 0 R
+>>
+endobj
+6157 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R15'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R15)
+/Next 6160 0 R
+/Prev 6154 0 R
+/First 6158 0 R
+/Last 6159 0 R
+/Count -2
+>>
+endobj
+6158 0 obj
+<<
+/Parent 6157 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R15x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6159 0 R
+>>
+endobj
+6159 0 obj
+<<
+/Parent 6157 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R15x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6158 0 R
+>>
+endobj
+6160 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R16'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R16)
+/Next 6163 0 R
+/Prev 6157 0 R
+/First 6161 0 R
+/Last 6162 0 R
+/Count -2
+>>
+endobj
+6161 0 obj
+<<
+/Parent 6160 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R16x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6162 0 R
+>>
+endobj
+6162 0 obj
+<<
+/Parent 6160 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R16x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Prev 6161 0 R
+>>
+endobj
+6163 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (SW1)
+/Next 6168 0 R
+/Prev 6160 0 R
+/First 6164 0 R
+/Last 6167 0 R
+/Count -4
+>>
+endobj
+6164 0 obj
+<<
+/Parent 6163 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6165 0 R
+>>
+endobj
+6165 0 obj
+<<
+/Parent 6163 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Next 6166 0 R
+/Prev 6164 0 R
+>>
+endobj
+6166 0 obj
+<<
+/Parent 6163 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW1x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (3)
+/Next 6167 0 R
+/Prev 6165 0 R
+>>
+endobj
+6167 0 obj
+<<
+/Parent 6163 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW1x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (4)
+/Prev 6166 0 R
+>>
+endobj
+6168 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (SW2)
+/Next 6173 0 R
+/Prev 6163 0 R
+/First 6169 0 R
+/Last 6172 0 R
+/Count -4
+>>
+endobj
+6169 0 obj
+<<
+/Parent 6168 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6170 0 R
+>>
+endobj
+6170 0 obj
+<<
+/Parent 6168 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Next 6171 0 R
+/Prev 6169 0 R
+>>
+endobj
+6171 0 obj
+<<
+/Parent 6168 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW2x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (3)
+/Next 6172 0 R
+/Prev 6170 0 R
+>>
+endobj
+6172 0 obj
+<<
+/Parent 6168 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW2x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (4)
+/Prev 6171 0 R
+>>
+endobj
+6173 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U1)
+/Next 6178 0 R
+/Prev 6168 0 R
+/First 6174 0 R
+/Last 6177 0 R
+/Count -4
+>>
+endobj
+6174 0 obj
+<<
+/Parent 6173 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6175 0 R
+>>
+endobj
+6175 0 obj
+<<
+/Parent 6173 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Next 6176 0 R
+/Prev 6174 0 R
+>>
+endobj
+6176 0 obj
+<<
+/Parent 6173 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U1x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (3)
+/Next 6177 0 R
+/Prev 6175 0 R
+>>
+endobj
+6177 0 obj
+<<
+/Parent 6173 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U1x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (4)
+/Prev 6176 0 R
+>>
+endobj
+6178 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2)
+/Next 6243 0 R
+/Prev 6173 0 R
+/First 6179 0 R
+/Last 6242 0 R
+/Count -64
+>>
+endobj
+6179 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (1)
+/Next 6180 0 R
+>>
+endobj
+6180 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (2)
+/Next 6181 0 R
+/Prev 6179 0 R
+>>
+endobj
+6181 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (3)
+/Next 6182 0 R
+/Prev 6180 0 R
+>>
+endobj
+6182 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (4)
+/Next 6183 0 R
+/Prev 6181 0 R
+>>
+endobj
+6183 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (5)
+/Next 6184 0 R
+/Prev 6182 0 R
+>>
+endobj
+6184 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (6)
+/Next 6185 0 R
+/Prev 6183 0 R
+>>
+endobj
+6185 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x7'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (7)
+/Next 6186 0 R
+/Prev 6184 0 R
+>>
+endobj
+6186 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x8'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (8)
+/Next 6187 0 R
+/Prev 6185 0 R
+>>
+endobj
+6187 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x9'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (9)
+/Next 6188 0 R
+/Prev 6186 0 R
+>>
+endobj
+6188 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x10'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (10)
+/Next 6189 0 R
+/Prev 6187 0 R
+>>
+endobj
+6189 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x11'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (11)
+/Next 6190 0 R
+/Prev 6188 0 R
+>>
+endobj
+6190 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x12'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (12)
+/Next 6191 0 R
+/Prev 6189 0 R
+>>
+endobj
+6191 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x13'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (13)
+/Next 6192 0 R
+/Prev 6190 0 R
+>>
+endobj
+6192 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x14'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (14)
+/Next 6193 0 R
+/Prev 6191 0 R
+>>
+endobj
+6193 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x15'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (15)
+/Next 6194 0 R
+/Prev 6192 0 R
+>>
+endobj
+6194 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x16'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (16)
+/Next 6195 0 R
+/Prev 6193 0 R
+>>
+endobj
+6195 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x17'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (17)
+/Next 6196 0 R
+/Prev 6194 0 R
+>>
+endobj
+6196 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x18'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (18)
+/Next 6197 0 R
+/Prev 6195 0 R
+>>
+endobj
+6197 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x19'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (19)
+/Next 6198 0 R
+/Prev 6196 0 R
+>>
+endobj
+6198 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x20'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (20)
+/Next 6199 0 R
+/Prev 6197 0 R
+>>
+endobj
+6199 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x21'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (21)
+/Next 6200 0 R
+/Prev 6198 0 R
+>>
+endobj
+6200 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x22'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (22)
+/Next 6201 0 R
+/Prev 6199 0 R
+>>
+endobj
+6201 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x23'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (23)
+/Next 6202 0 R
+/Prev 6200 0 R
+>>
+endobj
+6202 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x24'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (24)
+/Next 6203 0 R
+/Prev 6201 0 R
+>>
+endobj
+6203 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x25'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (25)
+/Next 6204 0 R
+/Prev 6202 0 R
+>>
+endobj
+6204 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x26'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (26)
+/Next 6205 0 R
+/Prev 6203 0 R
+>>
+endobj
+6205 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x27'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (27)
+/Next 6206 0 R
+/Prev 6204 0 R
+>>
+endobj
+6206 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x28'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (28)
+/Next 6207 0 R
+/Prev 6205 0 R
+>>
+endobj
+6207 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x29'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (29)
+/Next 6208 0 R
+/Prev 6206 0 R
+>>
+endobj
+6208 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x30'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (30)
+/Next 6209 0 R
+/Prev 6207 0 R
+>>
+endobj
+6209 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x31'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (31)
+/Next 6210 0 R
+/Prev 6208 0 R
+>>
+endobj
+6210 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x32'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (32)
+/Next 6211 0 R
+/Prev 6209 0 R
+>>
+endobj
+6211 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x33'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (33)
+/Next 6212 0 R
+/Prev 6210 0 R
+>>
+endobj
+6212 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x34'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (34)
+/Next 6213 0 R
+/Prev 6211 0 R
+>>
+endobj
+6213 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x35'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (35)
+/Next 6214 0 R
+/Prev 6212 0 R
+>>
+endobj
+6214 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x36'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (36)
+/Next 6215 0 R
+/Prev 6213 0 R
+>>
+endobj
+6215 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x37'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (37)
+/Next 6216 0 R
+/Prev 6214 0 R
+>>
+endobj
+6216 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x38'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (38)
+/Next 6217 0 R
+/Prev 6215 0 R
+>>
+endobj
+6217 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x39'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (39)
+/Next 6218 0 R
+/Prev 6216 0 R
+>>
+endobj
+6218 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x40'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (40)
+/Next 6219 0 R
+/Prev 6217 0 R
+>>
+endobj
+6219 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x41'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (41)
+/Next 6220 0 R
+/Prev 6218 0 R
+>>
+endobj
+6220 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x42'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (42)
+/Next 6221 0 R
+/Prev 6219 0 R
+>>
+endobj
+6221 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x43'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (43)
+/Next 6222 0 R
+/Prev 6220 0 R
+>>
+endobj
+6222 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x44'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (44)
+/Next 6223 0 R
+/Prev 6221 0 R
+>>
+endobj
+6223 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x45'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (45)
+/Next 6224 0 R
+/Prev 6222 0 R
+>>
+endobj
+6224 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x46'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (46)
+/Next 6225 0 R
+/Prev 6223 0 R
+>>
+endobj
+6225 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x47'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (47)
+/Next 6226 0 R
+/Prev 6224 0 R
+>>
+endobj
+6226 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x48'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (48)
+/Next 6227 0 R
+/Prev 6225 0 R
+>>
+endobj
+6227 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x49'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (49)
+/Next 6228 0 R
+/Prev 6226 0 R
+>>
+endobj
+6228 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x50'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (50)
+/Next 6229 0 R
+/Prev 6227 0 R
+>>
+endobj
+6229 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x51'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (51)
+/Next 6230 0 R
+/Prev 6228 0 R
+>>
+endobj
+6230 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x52'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (52)
+/Next 6231 0 R
+/Prev 6229 0 R
+>>
+endobj
+6231 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x53'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (53)
+/Next 6232 0 R
+/Prev 6230 0 R
+>>
+endobj
+6232 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x54'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (54)
+/Next 6233 0 R
+/Prev 6231 0 R
+>>
+endobj
+6233 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x55'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (55)
+/Next 6234 0 R
+/Prev 6232 0 R
+>>
+endobj
+6234 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x56'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (56)
+/Next 6235 0 R
+/Prev 6233 0 R
+>>
+endobj
+6235 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x57'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (57)
+/Next 6236 0 R
+/Prev 6234 0 R
+>>
+endobj
+6236 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x58'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (58)
+/Next 6237 0 R
+/Prev 6235 0 R
+>>
+endobj
+6237 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x59'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (59)
+/Next 6238 0 R
+/Prev 6236 0 R
+>>
+endobj
+6238 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x60'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (60)
+/Next 6239 0 R
+/Prev 6237 0 R
+>>
+endobj
+6239 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x61'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (61)
+/Next 6240 0 R
+/Prev 6238 0 R
+>>
+endobj
+6240 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x62'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (62)
+/Next 6241 0 R
+/Prev 6239 0 R
+>>
+endobj
+6241 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x63'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (63)
+/Next 6242 0 R
+/Prev 6240 0 R
+>>
+endobj
+6242 0 obj
+<<
+/Parent 6178 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x64'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (64)
+/Prev 6241 0 R
+>>
+endobj
+6243 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (X1)
+/Next 6247 0 R
+/Prev 6178 0 R
+/First 6244 0 R
+/Last 6246 0 R
+/Count -3
+>>
+endobj
+6244 0 obj
+<<
+/Parent 6243 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X1xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 6245 0 R
+>>
+endobj
+6245 0 obj
+<<
+/Parent 6243 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X1xB'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (B)
+/Next 6246 0 R
+/Prev 6244 0 R
+>>
+endobj
+6246 0 obj
+<<
+/Parent 6243 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X1xG1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (G1)
+/Prev 6245 0 R
+>>
+endobj
+6247 0 obj
+<<
+/Parent 5770 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (X2)
+/Prev 6243 0 R
+/First 6248 0 R
+/Last 6249 0 R
+/Count -2
+>>
+endobj
+6248 0 obj
+<<
+/Parent 6247 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X2xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (A)
+/Next 6249 0 R
+>>
+endobj
+6249 0 obj
+<<
+/Parent 6247 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X2xB'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (B)
+/Prev 6248 0 R
+>>
+endobj
+6250 0 obj
+<<
+/Parent 5769 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (Nets)
+/Prev 5770 0 R
+/First 6251 0 R
+/Last 6664 0 R
+/Count -76
+>>
+endobj
+6251 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (BOOT0)
+/Next 6258 0 R
+/First 6252 0 R
+/Last 6257 0 R
+/Count -6
+>>
+endobj
+6252 0 obj
+<<
+/Parent 6251 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J37x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J37.1)
+/Next 6253 0 R
+>>
+endobj
+6253 0 obj
+<<
+/Parent 6251 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R2.1)
+/Next 6254 0 R
+/Prev 6252 0 R
+>>
+endobj
+6254 0 obj
+<<
+/Parent 6251 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R6x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R6.1)
+/Next 6255 0 R
+/Prev 6253 0 R
+>>
+endobj
+6255 0 obj
+<<
+/Parent 6251 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J37x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J37.2)
+/Next 6256 0 R
+/Prev 6254 0 R
+>>
+endobj
+6256 0 obj
+<<
+/Parent 6251 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x60'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.60)
+/Next 6257 0 R
+/Prev 6255 0 R
+>>
+endobj
+6257 0 obj
+<<
+/Parent 6251 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='Q1xD'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (Q1.D)
+/Prev 6256 0 R
+>>
+endobj
+6258 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (GND)
+/Next 6317 0 R
+/Prev 6251 0 R
+/First 6259 0 R
+/Last 6316 0 R
+/Count -58
+>>
+endobj
+6259 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C2.1)
+/Next 6260 0 R
+>>
+endobj
+6260 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C4x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C4.1)
+/Next 6261 0 R
+/Prev 6259 0 R
+>>
+endobj
+6261 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C6x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C6.1)
+/Next 6262 0 R
+/Prev 6260 0 R
+>>
+endobj
+6262 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C7x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C7.1)
+/Next 6263 0 R
+/Prev 6261 0 R
+>>
+endobj
+6263 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C8x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C8.1)
+/Next 6264 0 R
+/Prev 6262 0 R
+>>
+endobj
+6264 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C9x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C9.1)
+/Next 6265 0 R
+/Prev 6263 0 R
+>>
+endobj
+6265 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C10x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C10.1)
+/Next 6266 0 R
+/Prev 6264 0 R
+>>
+endobj
+6266 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C11x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C11.1)
+/Next 6267 0 R
+/Prev 6265 0 R
+>>
+endobj
+6267 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C12x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C12.1)
+/Next 6268 0 R
+/Prev 6266 0 R
+>>
+endobj
+6268 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C13x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C13.1)
+/Next 6269 0 R
+/Prev 6267 0 R
+>>
+endobj
+6269 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C14x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C14.1)
+/Next 6270 0 R
+/Prev 6268 0 R
+>>
+endobj
+6270 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C15x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C15.1)
+/Next 6271 0 R
+/Prev 6269 0 R
+>>
+endobj
+6271 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C16x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C16.1)
+/Next 6272 0 R
+/Prev 6270 0 R
+>>
+endobj
+6272 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J1.1)
+/Next 6273 0 R
+/Prev 6271 0 R
+>>
+endobj
+6273 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J2.1)
+/Next 6274 0 R
+/Prev 6272 0 R
+>>
+endobj
+6274 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J7x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J7.1)
+/Next 6275 0 R
+/Prev 6273 0 R
+>>
+endobj
+6275 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J26x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J26.1)
+/Next 6276 0 R
+/Prev 6274 0 R
+>>
+endobj
+6276 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J28x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J28.1)
+/Next 6277 0 R
+/Prev 6275 0 R
+>>
+endobj
+6277 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (M1.1)
+/Next 6278 0 R
+/Prev 6276 0 R
+>>
+endobj
+6278 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (M2.1)
+/Next 6279 0 R
+/Prev 6277 0 R
+>>
+endobj
+6279 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M3x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (M3.1)
+/Next 6280 0 R
+/Prev 6278 0 R
+>>
+endobj
+6280 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='M4x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (M4.1)
+/Next 6281 0 R
+/Prev 6279 0 R
+>>
+endobj
+6281 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R5x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R5.1)
+/Next 6282 0 R
+/Prev 6280 0 R
+>>
+endobj
+6282 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (SW1.1)
+/Next 6283 0 R
+/Prev 6281 0 R
+>>
+endobj
+6283 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U1.1)
+/Next 6284 0 R
+/Prev 6282 0 R
+>>
+endobj
+6284 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J1.2)
+/Next 6285 0 R
+/Prev 6283 0 R
+>>
+endobj
+6285 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J2.2)
+/Next 6286 0 R
+/Prev 6284 0 R
+>>
+endobj
+6286 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J3x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J3.2)
+/Next 6287 0 R
+/Prev 6285 0 R
+>>
+endobj
+6287 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J7x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J7.2)
+/Next 6288 0 R
+/Prev 6286 0 R
+>>
+endobj
+6288 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J26x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J26.2)
+/Next 6289 0 R
+/Prev 6287 0 R
+>>
+endobj
+6289 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J28x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J28.2)
+/Next 6290 0 R
+/Prev 6288 0 R
+>>
+endobj
+6290 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R6x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R6.2)
+/Next 6291 0 R
+/Prev 6289 0 R
+>>
+endobj
+6291 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (SW2.2)
+/Next 6292 0 R
+/Prev 6290 0 R
+>>
+endobj
+6292 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J69.4)
+/Next 6293 0 R
+/Prev 6291 0 R
+>>
+endobj
+6293 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW1x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (SW1.4)
+/Next 6294 0 R
+/Prev 6292 0 R
+>>
+endobj
+6294 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J1.5)
+/Next 6295 0 R
+/Prev 6293 0 R
+>>
+endobj
+6295 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J2.5)
+/Next 6296 0 R
+/Prev 6294 0 R
+>>
+endobj
+6296 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J69.5)
+/Next 6297 0 R
+/Prev 6295 0 R
+>>
+endobj
+6297 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J1.6)
+/Next 6298 0 R
+/Prev 6296 0 R
+>>
+endobj
+6298 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J2.6)
+/Next 6299 0 R
+/Prev 6297 0 R
+>>
+endobj
+6299 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J69.6)
+/Next 6300 0 R
+/Prev 6298 0 R
+>>
+endobj
+6300 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (JF1.6)
+/Next 6301 0 R
+/Prev 6299 0 R
+>>
+endobj
+6301 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x8'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51.8)
+/Next 6302 0 R
+/Prev 6300 0 R
+>>
+endobj
+6302 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x10'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51.10)
+/Next 6303 0 R
+/Prev 6301 0 R
+>>
+endobj
+6303 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x12'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.12)
+/Next 6304 0 R
+/Prev 6302 0 R
+>>
+endobj
+6304 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x18'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.18)
+/Next 6305 0 R
+/Prev 6303 0 R
+>>
+endobj
+6305 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x31'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.31)
+/Next 6306 0 R
+/Prev 6304 0 R
+>>
+endobj
+6306 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x47'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.47)
+/Next 6307 0 R
+/Prev 6305 0 R
+>>
+endobj
+6307 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x63'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.63)
+/Next 6308 0 R
+/Prev 6306 0 R
+>>
+endobj
+6308 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D4xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D4.A)
+/Next 6309 0 R
+/Prev 6307 0 R
+>>
+endobj
+6309 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D5xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D5.A)
+/Next 6310 0 R
+/Prev 6308 0 R
+>>
+endobj
+6310 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C1xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C1.C)
+/Next 6311 0 R
+/Prev 6309 0 R
+>>
+endobj
+6311 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C3xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C3.C)
+/Next 6312 0 R
+/Prev 6310 0 R
+>>
+endobj
+6312 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C5xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C5.C)
+/Next 6313 0 R
+/Prev 6311 0 R
+>>
+endobj
+6313 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D6xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D6.C)
+/Next 6314 0 R
+/Prev 6312 0 R
+>>
+endobj
+6314 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D7xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D7.C)
+/Next 6315 0 R
+/Prev 6313 0 R
+>>
+endobj
+6315 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D8xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D8.C)
+/Next 6316 0 R
+/Prev 6314 0 R
+>>
+endobj
+6316 0 obj
+<<
+/Parent 6258 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X1xG1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (X1.G1)
+/Prev 6315 0 R
+>>
+endobj
+6317 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N00154)
+/Next 6321 0 R
+/Prev 6258 0 R
+/First 6318 0 R
+/Last 6320 0 R
+/Count -3
+>>
+endobj
+6318 0 obj
+<<
+/Parent 6317 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='F1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (F1.1)
+/Next 6319 0 R
+>>
+endobj
+6319 0 obj
+<<
+/Parent 6317 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J69.1)
+/Next 6320 0 R
+/Prev 6318 0 R
+>>
+endobj
+6320 0 obj
+<<
+/Parent 6317 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C16x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C16.2)
+/Prev 6319 0 R
+>>
+endobj
+6321 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N41861)
+/Next 6324 0 R
+/Prev 6317 0 R
+/First 6322 0 R
+/Last 6323 0 R
+/Count -2
+>>
+endobj
+6322 0 obj
+<<
+/Parent 6321 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J65x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J65.1)
+/Next 6323 0 R
+>>
+endobj
+6323 0 obj
+<<
+/Parent 6321 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='L2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (L2.2)
+/Prev 6322 0 R
+>>
+endobj
+6324 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N48841)
+/Next 6327 0 R
+/Prev 6321 0 R
+/First 6325 0 R
+/Last 6326 0 R
+/Count -2
+>>
+endobj
+6325 0 obj
+<<
+/Parent 6324 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J69.2)
+/Next 6326 0 R
+>>
+endobj
+6326 0 obj
+<<
+/Parent 6324 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R12x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R12.2)
+/Prev 6325 0 R
+>>
+endobj
+6327 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N48844)
+/Next 6331 0 R
+/Prev 6324 0 R
+/First 6328 0 R
+/Last 6330 0 R
+/Count -3
+>>
+endobj
+6328 0 obj
+<<
+/Parent 6327 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R13x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R13.2)
+/Next 6329 0 R
+>>
+endobj
+6329 0 obj
+<<
+/Parent 6327 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R16x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R16.2)
+/Next 6330 0 R
+/Prev 6328 0 R
+>>
+endobj
+6330 0 obj
+<<
+/Parent 6327 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J69x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J69.3)
+/Prev 6329 0 R
+>>
+endobj
+6331 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N49163)
+/Next 6334 0 R
+/Prev 6327 0 R
+/First 6332 0 R
+/Last 6333 0 R
+/Count -2
+>>
+endobj
+6332 0 obj
+<<
+/Parent 6331 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J39x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J39.1)
+/Next 6333 0 R
+>>
+endobj
+6333 0 obj
+<<
+/Parent 6331 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R7x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R7.1)
+/Prev 6332 0 R
+>>
+endobj
+6334 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N59466)
+/Next 6337 0 R
+/Prev 6331 0 R
+/First 6335 0 R
+/Last 6336 0 R
+/Count -2
+>>
+endobj
+6335 0 obj
+<<
+/Parent 6334 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J75x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J75.1)
+/Next 6336 0 R
+>>
+endobj
+6336 0 obj
+<<
+/Parent 6334 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R14x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R14.2)
+/Prev 6335 0 R
+>>
+endobj
+6337 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N59474)
+/Next 6340 0 R
+/Prev 6334 0 R
+/First 6338 0 R
+/Last 6339 0 R
+/Count -2
+>>
+endobj
+6338 0 obj
+<<
+/Parent 6337 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J75x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J75.2)
+/Next 6339 0 R
+>>
+endobj
+6339 0 obj
+<<
+/Parent 6337 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (JF1.3)
+/Prev 6338 0 R
+>>
+endobj
+6340 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N59485)
+/Next 6343 0 R
+/Prev 6337 0 R
+/First 6341 0 R
+/Last 6342 0 R
+/Count -2
+>>
+endobj
+6341 0 obj
+<<
+/Parent 6340 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J74x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J74.1)
+/Next 6342 0 R
+>>
+endobj
+6342 0 obj
+<<
+/Parent 6340 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (JF1.5)
+/Prev 6341 0 R
+>>
+endobj
+6343 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N60182)
+/Next 6348 0 R
+/Prev 6340 0 R
+/First 6344 0 R
+/Last 6347 0 R
+/Count -4
+>>
+endobj
+6344 0 obj
+<<
+/Parent 6343 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R14x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R14.1)
+/Next 6345 0 R
+>>
+endobj
+6345 0 obj
+<<
+/Parent 6343 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R15x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R15.2)
+/Next 6346 0 R
+/Prev 6344 0 R
+>>
+endobj
+6346 0 obj
+<<
+/Parent 6343 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW2x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (SW2.4)
+/Next 6347 0 R
+/Prev 6345 0 R
+>>
+endobj
+6347 0 obj
+<<
+/Parent 6343 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='Q1xG'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (Q1.G)
+/Prev 6346 0 R
+>>
+endobj
+6348 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N60501)
+/Next 6351 0 R
+/Prev 6343 0 R
+/First 6349 0 R
+/Last 6350 0 R
+/Count -2
+>>
+endobj
+6349 0 obj
+<<
+/Parent 6348 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J76x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J76.1)
+/Next 6350 0 R
+>>
+endobj
+6350 0 obj
+<<
+/Parent 6348 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R16x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R16.1)
+/Prev 6349 0 R
+>>
+endobj
+6351 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N068130)
+/Next 6355 0 R
+/Prev 6348 0 R
+/First 6352 0 R
+/Last 6354 0 R
+/Count -3
+>>
+endobj
+6352 0 obj
+<<
+/Parent 6351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J25x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J25.1)
+/Next 6353 0 R
+>>
+endobj
+6353 0 obj
+<<
+/Parent 6351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R4x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R4.1)
+/Next 6354 0 R
+/Prev 6352 0 R
+>>
+endobj
+6354 0 obj
+<<
+/Parent 6351 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J25x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J25.2)
+/Prev 6353 0 R
+>>
+endobj
+6355 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N068131)
+/Next 6358 0 R
+/Prev 6351 0 R
+/First 6356 0 R
+/Last 6357 0 R
+/Count -2
+>>
+endobj
+6356 0 obj
+<<
+/Parent 6355 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R4x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R4.2)
+/Next 6357 0 R
+>>
+endobj
+6357 0 obj
+<<
+/Parent 6355 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D7xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D7.A)
+/Prev 6356 0 R
+>>
+endobj
+6358 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N68863)
+/Next 6361 0 R
+/Prev 6355 0 R
+/First 6359 0 R
+/Last 6360 0 R
+/Count -2
+>>
+endobj
+6359 0 obj
+<<
+/Parent 6358 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='L2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (L2.1)
+/Next 6360 0 R
+>>
+endobj
+6360 0 obj
+<<
+/Parent 6358 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='F1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (F1.2)
+/Prev 6359 0 R
+>>
+endobj
+6361 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N329650)
+/Next 6364 0 R
+/Prev 6358 0 R
+/First 6362 0 R
+/Last 6363 0 R
+/Count -2
+>>
+endobj
+6362 0 obj
+<<
+/Parent 6361 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J3x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J3.1)
+/Next 6363 0 R
+>>
+endobj
+6363 0 obj
+<<
+/Parent 6361 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D3xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D3.A)
+/Prev 6362 0 R
+>>
+endobj
+6364 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N438140)
+/Next 6368 0 R
+/Prev 6361 0 R
+/First 6365 0 R
+/Last 6367 0 R
+/Count -3
+>>
+endobj
+6365 0 obj
+<<
+/Parent 6364 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J24x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J24.1)
+/Next 6366 0 R
+>>
+endobj
+6366 0 obj
+<<
+/Parent 6364 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R3x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R3.1)
+/Next 6367 0 R
+/Prev 6365 0 R
+>>
+endobj
+6367 0 obj
+<<
+/Parent 6364 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J24x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J24.2)
+/Prev 6366 0 R
+>>
+endobj
+6368 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N438261)
+/Next 6371 0 R
+/Prev 6364 0 R
+/First 6369 0 R
+/Last 6370 0 R
+/Count -2
+>>
+endobj
+6369 0 obj
+<<
+/Parent 6368 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R3x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R3.2)
+/Next 6370 0 R
+>>
+endobj
+6370 0 obj
+<<
+/Parent 6368 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D6xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D6.A)
+/Prev 6369 0 R
+>>
+endobj
+6371 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N456271)
+/Next 6374 0 R
+/Prev 6368 0 R
+/First 6372 0 R
+/Last 6373 0 R
+/Count -2
+>>
+endobj
+6372 0 obj
+<<
+/Parent 6371 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R2.2)
+/Next 6373 0 R
+>>
+endobj
+6373 0 obj
+<<
+/Parent 6371 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D8xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D8.A)
+/Prev 6372 0 R
+>>
+endobj
+6374 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (N485981)
+/Next 6377 0 R
+/Prev 6371 0 R
+/First 6375 0 R
+/Last 6376 0 R
+/Count -2
+>>
+endobj
+6375 0 obj
+<<
+/Parent 6374 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J74x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J74.2)
+/Next 6376 0 R
+>>
+endobj
+6376 0 obj
+<<
+/Parent 6374 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D9xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D9.C)
+/Prev 6375 0 R
+>>
+endobj
+6377 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (NRST)
+/Next 6388 0 R
+/Prev 6374 0 R
+/First 6378 0 R
+/Last 6387 0 R
+/Count -10
+>>
+endobj
+6378 0 obj
+<<
+/Parent 6377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J34x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J34.1)
+/Next 6379 0 R
+>>
+endobj
+6379 0 obj
+<<
+/Parent 6377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R1.1)
+/Next 6380 0 R
+/Prev 6378 0 R
+>>
+endobj
+6380 0 obj
+<<
+/Parent 6377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C7x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C7.2)
+/Next 6381 0 R
+/Prev 6379 0 R
+>>
+endobj
+6381 0 obj
+<<
+/Parent 6377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J34x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J34.2)
+/Next 6382 0 R
+/Prev 6380 0 R
+>>
+endobj
+6382 0 obj
+<<
+/Parent 6377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J39x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J39.2)
+/Next 6383 0 R
+/Prev 6381 0 R
+>>
+endobj
+6383 0 obj
+<<
+/Parent 6377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (SW1.2)
+/Next 6384 0 R
+/Prev 6382 0 R
+>>
+endobj
+6384 0 obj
+<<
+/Parent 6377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='SW1x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (SW1.3)
+/Next 6385 0 R
+/Prev 6383 0 R
+>>
+endobj
+6385 0 obj
+<<
+/Parent 6377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51.4)
+/Next 6386 0 R
+/Prev 6384 0 R
+>>
+endobj
+6386 0 obj
+<<
+/Parent 6377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x7'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.7)
+/Next 6387 0 R
+/Prev 6385 0 R
+>>
+endobj
+6387 0 obj
+<<
+/Parent 6377 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D9xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D9.A)
+/Prev 6386 0 R
+>>
+endobj
+6388 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA0)
+/Next 6392 0 R
+/Prev 6377 0 R
+/First 6389 0 R
+/Last 6391 0 R
+/Count -3
+>>
+endobj
+6389 0 obj
+<<
+/Parent 6388 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J41x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J41.1)
+/Next 6390 0 R
+>>
+endobj
+6390 0 obj
+<<
+/Parent 6388 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J41x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J41.2)
+/Next 6391 0 R
+/Prev 6389 0 R
+>>
+endobj
+6391 0 obj
+<<
+/Parent 6388 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x14'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.14)
+/Prev 6390 0 R
+>>
+endobj
+6392 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA1)
+/Next 6396 0 R
+/Prev 6388 0 R
+/First 6393 0 R
+/Last 6395 0 R
+/Count -3
+>>
+endobj
+6393 0 obj
+<<
+/Parent 6392 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J43x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J43.1)
+/Next 6394 0 R
+>>
+endobj
+6394 0 obj
+<<
+/Parent 6392 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J43x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J43.2)
+/Next 6395 0 R
+/Prev 6393 0 R
+>>
+endobj
+6395 0 obj
+<<
+/Parent 6392 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x15'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.15)
+/Prev 6394 0 R
+>>
+endobj
+6396 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA2)
+/Next 6400 0 R
+/Prev 6392 0 R
+/First 6397 0 R
+/Last 6399 0 R
+/Count -3
+>>
+endobj
+6397 0 obj
+<<
+/Parent 6396 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J45x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J45.1)
+/Next 6398 0 R
+>>
+endobj
+6398 0 obj
+<<
+/Parent 6396 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J45x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J45.2)
+/Next 6399 0 R
+/Prev 6397 0 R
+>>
+endobj
+6399 0 obj
+<<
+/Parent 6396 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x16'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.16)
+/Prev 6398 0 R
+>>
+endobj
+6400 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA3)
+/Next 6404 0 R
+/Prev 6396 0 R
+/First 6401 0 R
+/Last 6403 0 R
+/Count -3
+>>
+endobj
+6401 0 obj
+<<
+/Parent 6400 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J47x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J47.1)
+/Next 6402 0 R
+>>
+endobj
+6402 0 obj
+<<
+/Parent 6400 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J47x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J47.2)
+/Next 6403 0 R
+/Prev 6401 0 R
+>>
+endobj
+6403 0 obj
+<<
+/Parent 6400 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x17'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.17)
+/Prev 6402 0 R
+>>
+endobj
+6404 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA4)
+/Next 6408 0 R
+/Prev 6400 0 R
+/First 6405 0 R
+/Last 6407 0 R
+/Count -3
+>>
+endobj
+6405 0 obj
+<<
+/Parent 6404 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J49x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J49.1)
+/Next 6406 0 R
+>>
+endobj
+6406 0 obj
+<<
+/Parent 6404 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J49x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J49.2)
+/Next 6407 0 R
+/Prev 6405 0 R
+>>
+endobj
+6407 0 obj
+<<
+/Parent 6404 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x20'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.20)
+/Prev 6406 0 R
+>>
+endobj
+6408 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA5)
+/Next 6412 0 R
+/Prev 6404 0 R
+/First 6409 0 R
+/Last 6411 0 R
+/Count -3
+>>
+endobj
+6409 0 obj
+<<
+/Parent 6408 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J52x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J52.1)
+/Next 6410 0 R
+>>
+endobj
+6410 0 obj
+<<
+/Parent 6408 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J52x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J52.2)
+/Next 6411 0 R
+/Prev 6409 0 R
+>>
+endobj
+6411 0 obj
+<<
+/Parent 6408 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x21'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.21)
+/Prev 6410 0 R
+>>
+endobj
+6412 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA6)
+/Next 6416 0 R
+/Prev 6408 0 R
+/First 6413 0 R
+/Last 6415 0 R
+/Count -3
+>>
+endobj
+6413 0 obj
+<<
+/Parent 6412 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J54x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J54.1)
+/Next 6414 0 R
+>>
+endobj
+6414 0 obj
+<<
+/Parent 6412 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J54x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J54.2)
+/Next 6415 0 R
+/Prev 6413 0 R
+>>
+endobj
+6415 0 obj
+<<
+/Parent 6412 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x22'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.22)
+/Prev 6414 0 R
+>>
+endobj
+6416 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA7)
+/Next 6420 0 R
+/Prev 6412 0 R
+/First 6417 0 R
+/Last 6419 0 R
+/Count -3
+>>
+endobj
+6417 0 obj
+<<
+/Parent 6416 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J56x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J56.1)
+/Next 6418 0 R
+>>
+endobj
+6418 0 obj
+<<
+/Parent 6416 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J56x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J56.2)
+/Next 6419 0 R
+/Prev 6417 0 R
+>>
+endobj
+6419 0 obj
+<<
+/Parent 6416 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x23'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.23)
+/Prev 6418 0 R
+>>
+endobj
+6420 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA8)
+/Next 6424 0 R
+/Prev 6416 0 R
+/First 6421 0 R
+/Last 6423 0 R
+/Count -3
+>>
+endobj
+6421 0 obj
+<<
+/Parent 6420 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J58x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J58.1)
+/Next 6422 0 R
+>>
+endobj
+6422 0 obj
+<<
+/Parent 6420 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J58x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J58.2)
+/Next 6423 0 R
+/Prev 6421 0 R
+>>
+endobj
+6423 0 obj
+<<
+/Parent 6420 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x41'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.41)
+/Prev 6422 0 R
+>>
+endobj
+6424 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA9_TX)
+/Next 6429 0 R
+/Prev 6420 0 R
+/First 6425 0 R
+/Last 6428 0 R
+/Count -4
+>>
+endobj
+6425 0 obj
+<<
+/Parent 6424 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J60x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J60.1)
+/Next 6426 0 R
+>>
+endobj
+6426 0 obj
+<<
+/Parent 6424 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J60x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J60.2)
+/Next 6427 0 R
+/Prev 6425 0 R
+>>
+endobj
+6427 0 obj
+<<
+/Parent 6424 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (JF1.4)
+/Next 6428 0 R
+/Prev 6426 0 R
+>>
+endobj
+6428 0 obj
+<<
+/Parent 6424 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x42'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.42)
+/Prev 6427 0 R
+>>
+endobj
+6429 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA10_RX)
+/Next 6434 0 R
+/Prev 6424 0 R
+/First 6430 0 R
+/Last 6433 0 R
+/Count -4
+>>
+endobj
+6430 0 obj
+<<
+/Parent 6429 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J61x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J61.1)
+/Next 6431 0 R
+>>
+endobj
+6431 0 obj
+<<
+/Parent 6429 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (JF1.1)
+/Next 6432 0 R
+/Prev 6430 0 R
+>>
+endobj
+6432 0 obj
+<<
+/Parent 6429 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J61x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J61.2)
+/Next 6433 0 R
+/Prev 6431 0 R
+>>
+endobj
+6433 0 obj
+<<
+/Parent 6429 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x43'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.43)
+/Prev 6432 0 R
+>>
+endobj
+6434 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA11_DM)
+/Next 6439 0 R
+/Prev 6429 0 R
+/First 6435 0 R
+/Last 6438 0 R
+/Count -4
+>>
+endobj
+6435 0 obj
+<<
+/Parent 6434 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J62x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J62.1)
+/Next 6436 0 R
+>>
+endobj
+6436 0 obj
+<<
+/Parent 6434 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R12x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R12.1)
+/Next 6437 0 R
+/Prev 6435 0 R
+>>
+endobj
+6437 0 obj
+<<
+/Parent 6434 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J62x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J62.2)
+/Next 6438 0 R
+/Prev 6436 0 R
+>>
+endobj
+6438 0 obj
+<<
+/Parent 6434 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x44'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.44)
+/Prev 6437 0 R
+>>
+endobj
+6439 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA12_DP)
+/Next 6444 0 R
+/Prev 6434 0 R
+/First 6440 0 R
+/Last 6443 0 R
+/Count -4
+>>
+endobj
+6440 0 obj
+<<
+/Parent 6439 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J63x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J63.1)
+/Next 6441 0 R
+>>
+endobj
+6441 0 obj
+<<
+/Parent 6439 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R13x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R13.1)
+/Next 6442 0 R
+/Prev 6440 0 R
+>>
+endobj
+6442 0 obj
+<<
+/Parent 6439 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J63x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J63.2)
+/Next 6443 0 R
+/Prev 6441 0 R
+>>
+endobj
+6443 0 obj
+<<
+/Parent 6439 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x45'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.45)
+/Prev 6442 0 R
+>>
+endobj
+6444 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA13_JTMS)
+/Next 6450 0 R
+/Prev 6439 0 R
+/First 6445 0 R
+/Last 6449 0 R
+/Count -5
+>>
+endobj
+6445 0 obj
+<<
+/Parent 6444 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J64x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J64.1)
+/Next 6446 0 R
+>>
+endobj
+6446 0 obj
+<<
+/Parent 6444 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R10x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R10.1)
+/Next 6447 0 R
+/Prev 6445 0 R
+>>
+endobj
+6447 0 obj
+<<
+/Parent 6444 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J64x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J64.2)
+/Next 6448 0 R
+/Prev 6446 0 R
+>>
+endobj
+6448 0 obj
+<<
+/Parent 6444 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x7'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51.7)
+/Next 6449 0 R
+/Prev 6447 0 R
+>>
+endobj
+6449 0 obj
+<<
+/Parent 6444 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x46'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.46)
+/Prev 6448 0 R
+>>
+endobj
+6450 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA14_JTCK)
+/Next 6456 0 R
+/Prev 6444 0 R
+/First 6451 0 R
+/Last 6455 0 R
+/Count -5
+>>
+endobj
+6451 0 obj
+<<
+/Parent 6450 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J66x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J66.1)
+/Next 6452 0 R
+>>
+endobj
+6452 0 obj
+<<
+/Parent 6450 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R11x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R11.1)
+/Next 6453 0 R
+/Prev 6451 0 R
+>>
+endobj
+6453 0 obj
+<<
+/Parent 6450 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J66x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J66.2)
+/Next 6454 0 R
+/Prev 6452 0 R
+>>
+endobj
+6454 0 obj
+<<
+/Parent 6450 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x9'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51.9)
+/Next 6455 0 R
+/Prev 6453 0 R
+>>
+endobj
+6455 0 obj
+<<
+/Parent 6450 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x49'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.49)
+/Prev 6454 0 R
+>>
+endobj
+6456 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PA15_JTDI)
+/Next 6462 0 R
+/Prev 6450 0 R
+/First 6457 0 R
+/Last 6461 0 R
+/Count -5
+>>
+endobj
+6457 0 obj
+<<
+/Parent 6456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J67x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J67.1)
+/Next 6458 0 R
+>>
+endobj
+6458 0 obj
+<<
+/Parent 6456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R9x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R9.1)
+/Next 6459 0 R
+/Prev 6457 0 R
+>>
+endobj
+6459 0 obj
+<<
+/Parent 6456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J67x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J67.2)
+/Next 6460 0 R
+/Prev 6458 0 R
+>>
+endobj
+6460 0 obj
+<<
+/Parent 6456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51.5)
+/Next 6461 0 R
+/Prev 6459 0 R
+>>
+endobj
+6461 0 obj
+<<
+/Parent 6456 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x50'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.50)
+/Prev 6460 0 R
+>>
+endobj
+6462 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB0)
+/Next 6466 0 R
+/Prev 6456 0 R
+/First 6463 0 R
+/Last 6465 0 R
+/Count -3
+>>
+endobj
+6463 0 obj
+<<
+/Parent 6462 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J5x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J5.1)
+/Next 6464 0 R
+>>
+endobj
+6464 0 obj
+<<
+/Parent 6462 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J5x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J5.2)
+/Next 6465 0 R
+/Prev 6463 0 R
+>>
+endobj
+6465 0 obj
+<<
+/Parent 6462 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x26'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.26)
+/Prev 6464 0 R
+>>
+endobj
+6466 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB1)
+/Next 6470 0 R
+/Prev 6462 0 R
+/First 6467 0 R
+/Last 6469 0 R
+/Count -3
+>>
+endobj
+6467 0 obj
+<<
+/Parent 6466 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J6x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J6.1)
+/Next 6468 0 R
+>>
+endobj
+6468 0 obj
+<<
+/Parent 6466 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J6x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J6.2)
+/Next 6469 0 R
+/Prev 6467 0 R
+>>
+endobj
+6469 0 obj
+<<
+/Parent 6466 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x27'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.27)
+/Prev 6468 0 R
+>>
+endobj
+6470 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB2_BOOT1)
+/Next 6475 0 R
+/Prev 6466 0 R
+/First 6471 0 R
+/Last 6474 0 R
+/Count -4
+>>
+endobj
+6471 0 obj
+<<
+/Parent 6470 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J8x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J8.1)
+/Next 6472 0 R
+>>
+endobj
+6472 0 obj
+<<
+/Parent 6470 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J8x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J8.2)
+/Next 6473 0 R
+/Prev 6471 0 R
+>>
+endobj
+6473 0 obj
+<<
+/Parent 6470 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R5x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R5.2)
+/Next 6474 0 R
+/Prev 6472 0 R
+>>
+endobj
+6474 0 obj
+<<
+/Parent 6470 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x28'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.28)
+/Prev 6473 0 R
+>>
+endobj
+6475 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB3_JTDO)
+/Next 6480 0 R
+/Prev 6470 0 R
+/First 6476 0 R
+/Last 6479 0 R
+/Count -4
+>>
+endobj
+6476 0 obj
+<<
+/Parent 6475 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J9x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J9.1)
+/Next 6477 0 R
+>>
+endobj
+6477 0 obj
+<<
+/Parent 6475 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J9x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J9.2)
+/Next 6478 0 R
+/Prev 6476 0 R
+>>
+endobj
+6478 0 obj
+<<
+/Parent 6475 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51.6)
+/Next 6479 0 R
+/Prev 6477 0 R
+>>
+endobj
+6479 0 obj
+<<
+/Parent 6475 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x55'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.55)
+/Prev 6478 0 R
+>>
+endobj
+6480 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB4_JNTRST)
+/Next 6487 0 R
+/Prev 6475 0 R
+/First 6481 0 R
+/Last 6486 0 R
+/Count -6
+>>
+endobj
+6481 0 obj
+<<
+/Parent 6480 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J11x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J11.1)
+/Next 6482 0 R
+>>
+endobj
+6482 0 obj
+<<
+/Parent 6480 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R8x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R8.1)
+/Next 6483 0 R
+/Prev 6481 0 R
+>>
+endobj
+6483 0 obj
+<<
+/Parent 6480 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J11x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J11.2)
+/Next 6484 0 R
+/Prev 6482 0 R
+>>
+endobj
+6484 0 obj
+<<
+/Parent 6480 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R7x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R7.2)
+/Next 6485 0 R
+/Prev 6483 0 R
+>>
+endobj
+6485 0 obj
+<<
+/Parent 6480 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51.3)
+/Next 6486 0 R
+/Prev 6484 0 R
+>>
+endobj
+6486 0 obj
+<<
+/Parent 6480 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x56'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.56)
+/Prev 6485 0 R
+>>
+endobj
+6487 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB5)
+/Next 6491 0 R
+/Prev 6480 0 R
+/First 6488 0 R
+/Last 6490 0 R
+/Count -3
+>>
+endobj
+6488 0 obj
+<<
+/Parent 6487 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J12x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J12.1)
+/Next 6489 0 R
+>>
+endobj
+6489 0 obj
+<<
+/Parent 6487 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J12x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J12.2)
+/Next 6490 0 R
+/Prev 6488 0 R
+>>
+endobj
+6490 0 obj
+<<
+/Parent 6487 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x57'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.57)
+/Prev 6489 0 R
+>>
+endobj
+6491 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB6)
+/Next 6495 0 R
+/Prev 6487 0 R
+/First 6492 0 R
+/Last 6494 0 R
+/Count -3
+>>
+endobj
+6492 0 obj
+<<
+/Parent 6491 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J14x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J14.1)
+/Next 6493 0 R
+>>
+endobj
+6493 0 obj
+<<
+/Parent 6491 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J14x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J14.2)
+/Next 6494 0 R
+/Prev 6492 0 R
+>>
+endobj
+6494 0 obj
+<<
+/Parent 6491 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x58'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.58)
+/Prev 6493 0 R
+>>
+endobj
+6495 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB7)
+/Next 6499 0 R
+/Prev 6491 0 R
+/First 6496 0 R
+/Last 6498 0 R
+/Count -3
+>>
+endobj
+6496 0 obj
+<<
+/Parent 6495 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J16x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J16.1)
+/Next 6497 0 R
+>>
+endobj
+6497 0 obj
+<<
+/Parent 6495 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J16x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J16.2)
+/Next 6498 0 R
+/Prev 6496 0 R
+>>
+endobj
+6498 0 obj
+<<
+/Parent 6495 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x59'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.59)
+/Prev 6497 0 R
+>>
+endobj
+6499 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB8)
+/Next 6503 0 R
+/Prev 6495 0 R
+/First 6500 0 R
+/Last 6502 0 R
+/Count -3
+>>
+endobj
+6500 0 obj
+<<
+/Parent 6499 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J18x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J18.1)
+/Next 6501 0 R
+>>
+endobj
+6501 0 obj
+<<
+/Parent 6499 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J18x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J18.2)
+/Next 6502 0 R
+/Prev 6500 0 R
+>>
+endobj
+6502 0 obj
+<<
+/Parent 6499 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x61'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.61)
+/Prev 6501 0 R
+>>
+endobj
+6503 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB9)
+/Next 6507 0 R
+/Prev 6499 0 R
+/First 6504 0 R
+/Last 6506 0 R
+/Count -3
+>>
+endobj
+6504 0 obj
+<<
+/Parent 6503 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J20x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J20.1)
+/Next 6505 0 R
+>>
+endobj
+6505 0 obj
+<<
+/Parent 6503 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J20x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J20.2)
+/Next 6506 0 R
+/Prev 6504 0 R
+>>
+endobj
+6506 0 obj
+<<
+/Parent 6503 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x62'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.62)
+/Prev 6505 0 R
+>>
+endobj
+6507 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB10)
+/Next 6511 0 R
+/Prev 6503 0 R
+/First 6508 0 R
+/Last 6510 0 R
+/Count -3
+>>
+endobj
+6508 0 obj
+<<
+/Parent 6507 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J21x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J21.1)
+/Next 6509 0 R
+>>
+endobj
+6509 0 obj
+<<
+/Parent 6507 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J21x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J21.2)
+/Next 6510 0 R
+/Prev 6508 0 R
+>>
+endobj
+6510 0 obj
+<<
+/Parent 6507 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x29'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.29)
+/Prev 6509 0 R
+>>
+endobj
+6511 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB11)
+/Next 6515 0 R
+/Prev 6507 0 R
+/First 6512 0 R
+/Last 6514 0 R
+/Count -3
+>>
+endobj
+6512 0 obj
+<<
+/Parent 6511 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J22x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J22.1)
+/Next 6513 0 R
+>>
+endobj
+6513 0 obj
+<<
+/Parent 6511 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J22x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J22.2)
+/Next 6514 0 R
+/Prev 6512 0 R
+>>
+endobj
+6514 0 obj
+<<
+/Parent 6511 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x30'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.30)
+/Prev 6513 0 R
+>>
+endobj
+6515 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB12)
+/Next 6519 0 R
+/Prev 6511 0 R
+/First 6516 0 R
+/Last 6518 0 R
+/Count -3
+>>
+endobj
+6516 0 obj
+<<
+/Parent 6515 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J23x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J23.1)
+/Next 6517 0 R
+>>
+endobj
+6517 0 obj
+<<
+/Parent 6515 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J23x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J23.2)
+/Next 6518 0 R
+/Prev 6516 0 R
+>>
+endobj
+6518 0 obj
+<<
+/Parent 6515 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x33'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.33)
+/Prev 6517 0 R
+>>
+endobj
+6519 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB13)
+/Next 6523 0 R
+/Prev 6515 0 R
+/First 6520 0 R
+/Last 6522 0 R
+/Count -3
+>>
+endobj
+6520 0 obj
+<<
+/Parent 6519 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J27x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J27.1)
+/Next 6521 0 R
+>>
+endobj
+6521 0 obj
+<<
+/Parent 6519 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J27x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J27.2)
+/Next 6522 0 R
+/Prev 6520 0 R
+>>
+endobj
+6522 0 obj
+<<
+/Parent 6519 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x34'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.34)
+/Prev 6521 0 R
+>>
+endobj
+6523 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB14)
+/Next 6527 0 R
+/Prev 6519 0 R
+/First 6524 0 R
+/Last 6526 0 R
+/Count -3
+>>
+endobj
+6524 0 obj
+<<
+/Parent 6523 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J29x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J29.1)
+/Next 6525 0 R
+>>
+endobj
+6525 0 obj
+<<
+/Parent 6523 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J29x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J29.2)
+/Next 6526 0 R
+/Prev 6524 0 R
+>>
+endobj
+6526 0 obj
+<<
+/Parent 6523 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x35'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.35)
+/Prev 6525 0 R
+>>
+endobj
+6527 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PB15)
+/Next 6531 0 R
+/Prev 6523 0 R
+/First 6528 0 R
+/Last 6530 0 R
+/Count -3
+>>
+endobj
+6528 0 obj
+<<
+/Parent 6527 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J31x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J31.1)
+/Next 6529 0 R
+>>
+endobj
+6529 0 obj
+<<
+/Parent 6527 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J31x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J31.2)
+/Next 6530 0 R
+/Prev 6528 0 R
+>>
+endobj
+6530 0 obj
+<<
+/Parent 6527 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x36'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.36)
+/Prev 6529 0 R
+>>
+endobj
+6531 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC0)
+/Next 6535 0 R
+/Prev 6527 0 R
+/First 6532 0 R
+/Last 6534 0 R
+/Count -3
+>>
+endobj
+6532 0 obj
+<<
+/Parent 6531 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J33x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J33.1)
+/Next 6533 0 R
+>>
+endobj
+6533 0 obj
+<<
+/Parent 6531 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J33x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J33.2)
+/Next 6534 0 R
+/Prev 6532 0 R
+>>
+endobj
+6534 0 obj
+<<
+/Parent 6531 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x8'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.8)
+/Prev 6533 0 R
+>>
+endobj
+6535 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC1)
+/Next 6539 0 R
+/Prev 6531 0 R
+/First 6536 0 R
+/Last 6538 0 R
+/Count -3
+>>
+endobj
+6536 0 obj
+<<
+/Parent 6535 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J35x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J35.1)
+/Next 6537 0 R
+>>
+endobj
+6537 0 obj
+<<
+/Parent 6535 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J35x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J35.2)
+/Next 6538 0 R
+/Prev 6536 0 R
+>>
+endobj
+6538 0 obj
+<<
+/Parent 6535 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x9'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.9)
+/Prev 6537 0 R
+>>
+endobj
+6539 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC2)
+/Next 6543 0 R
+/Prev 6535 0 R
+/First 6540 0 R
+/Last 6542 0 R
+/Count -3
+>>
+endobj
+6540 0 obj
+<<
+/Parent 6539 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J36x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J36.1)
+/Next 6541 0 R
+>>
+endobj
+6541 0 obj
+<<
+/Parent 6539 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J36x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J36.2)
+/Next 6542 0 R
+/Prev 6540 0 R
+>>
+endobj
+6542 0 obj
+<<
+/Parent 6539 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x10'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.10)
+/Prev 6541 0 R
+>>
+endobj
+6543 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC3)
+/Next 6547 0 R
+/Prev 6539 0 R
+/First 6544 0 R
+/Last 6546 0 R
+/Count -3
+>>
+endobj
+6544 0 obj
+<<
+/Parent 6543 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J38x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J38.1)
+/Next 6545 0 R
+>>
+endobj
+6545 0 obj
+<<
+/Parent 6543 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J38x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J38.2)
+/Next 6546 0 R
+/Prev 6544 0 R
+>>
+endobj
+6546 0 obj
+<<
+/Parent 6543 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x11'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.11)
+/Prev 6545 0 R
+>>
+endobj
+6547 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC4)
+/Next 6551 0 R
+/Prev 6543 0 R
+/First 6548 0 R
+/Last 6550 0 R
+/Count -3
+>>
+endobj
+6548 0 obj
+<<
+/Parent 6547 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J40x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J40.1)
+/Next 6549 0 R
+>>
+endobj
+6549 0 obj
+<<
+/Parent 6547 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J40x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J40.2)
+/Next 6550 0 R
+/Prev 6548 0 R
+>>
+endobj
+6550 0 obj
+<<
+/Parent 6547 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x24'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.24)
+/Prev 6549 0 R
+>>
+endobj
+6551 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC5)
+/Next 6555 0 R
+/Prev 6547 0 R
+/First 6552 0 R
+/Last 6554 0 R
+/Count -3
+>>
+endobj
+6552 0 obj
+<<
+/Parent 6551 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J42x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J42.1)
+/Next 6553 0 R
+>>
+endobj
+6553 0 obj
+<<
+/Parent 6551 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J42x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J42.2)
+/Next 6554 0 R
+/Prev 6552 0 R
+>>
+endobj
+6554 0 obj
+<<
+/Parent 6551 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x25'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.25)
+/Prev 6553 0 R
+>>
+endobj
+6555 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC6)
+/Next 6559 0 R
+/Prev 6551 0 R
+/First 6556 0 R
+/Last 6558 0 R
+/Count -3
+>>
+endobj
+6556 0 obj
+<<
+/Parent 6555 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J44x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J44.1)
+/Next 6557 0 R
+>>
+endobj
+6557 0 obj
+<<
+/Parent 6555 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J44x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J44.2)
+/Next 6558 0 R
+/Prev 6556 0 R
+>>
+endobj
+6558 0 obj
+<<
+/Parent 6555 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x37'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.37)
+/Prev 6557 0 R
+>>
+endobj
+6559 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC7)
+/Next 6563 0 R
+/Prev 6555 0 R
+/First 6560 0 R
+/Last 6562 0 R
+/Count -3
+>>
+endobj
+6560 0 obj
+<<
+/Parent 6559 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J46x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J46.1)
+/Next 6561 0 R
+>>
+endobj
+6561 0 obj
+<<
+/Parent 6559 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J46x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J46.2)
+/Next 6562 0 R
+/Prev 6560 0 R
+>>
+endobj
+6562 0 obj
+<<
+/Parent 6559 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x38'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.38)
+/Prev 6561 0 R
+>>
+endobj
+6563 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC8)
+/Next 6567 0 R
+/Prev 6559 0 R
+/First 6564 0 R
+/Last 6566 0 R
+/Count -3
+>>
+endobj
+6564 0 obj
+<<
+/Parent 6563 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J48x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J48.1)
+/Next 6565 0 R
+>>
+endobj
+6565 0 obj
+<<
+/Parent 6563 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J48x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J48.2)
+/Next 6566 0 R
+/Prev 6564 0 R
+>>
+endobj
+6566 0 obj
+<<
+/Parent 6563 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x39'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.39)
+/Prev 6565 0 R
+>>
+endobj
+6567 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC9)
+/Next 6571 0 R
+/Prev 6563 0 R
+/First 6568 0 R
+/Last 6570 0 R
+/Count -3
+>>
+endobj
+6568 0 obj
+<<
+/Parent 6567 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J50x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J50.1)
+/Next 6569 0 R
+>>
+endobj
+6569 0 obj
+<<
+/Parent 6567 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J50x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J50.2)
+/Next 6570 0 R
+/Prev 6568 0 R
+>>
+endobj
+6570 0 obj
+<<
+/Parent 6567 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x40'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.40)
+/Prev 6569 0 R
+>>
+endobj
+6571 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC10)
+/Next 6575 0 R
+/Prev 6567 0 R
+/First 6572 0 R
+/Last 6574 0 R
+/Count -3
+>>
+endobj
+6572 0 obj
+<<
+/Parent 6571 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J53x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J53.1)
+/Next 6573 0 R
+>>
+endobj
+6573 0 obj
+<<
+/Parent 6571 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J53x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J53.2)
+/Next 6574 0 R
+/Prev 6572 0 R
+>>
+endobj
+6574 0 obj
+<<
+/Parent 6571 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x51'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.51)
+/Prev 6573 0 R
+>>
+endobj
+6575 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC11)
+/Next 6579 0 R
+/Prev 6571 0 R
+/First 6576 0 R
+/Last 6578 0 R
+/Count -3
+>>
+endobj
+6576 0 obj
+<<
+/Parent 6575 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J55x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J55.1)
+/Next 6577 0 R
+>>
+endobj
+6577 0 obj
+<<
+/Parent 6575 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J55x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J55.2)
+/Next 6578 0 R
+/Prev 6576 0 R
+>>
+endobj
+6578 0 obj
+<<
+/Parent 6575 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x52'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.52)
+/Prev 6577 0 R
+>>
+endobj
+6579 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC12)
+/Next 6583 0 R
+/Prev 6575 0 R
+/First 6580 0 R
+/Last 6582 0 R
+/Count -3
+>>
+endobj
+6580 0 obj
+<<
+/Parent 6579 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J57x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J57.1)
+/Next 6581 0 R
+>>
+endobj
+6581 0 obj
+<<
+/Parent 6579 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J57x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J57.2)
+/Next 6582 0 R
+/Prev 6580 0 R
+>>
+endobj
+6582 0 obj
+<<
+/Parent 6579 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x53'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.53)
+/Prev 6581 0 R
+>>
+endobj
+6583 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC13)
+/Next 6587 0 R
+/Prev 6579 0 R
+/First 6584 0 R
+/Last 6586 0 R
+/Count -3
+>>
+endobj
+6584 0 obj
+<<
+/Parent 6583 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J59x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J59.1)
+/Next 6585 0 R
+>>
+endobj
+6585 0 obj
+<<
+/Parent 6583 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J59x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J59.2)
+/Next 6586 0 R
+/Prev 6584 0 R
+>>
+endobj
+6586 0 obj
+<<
+/Parent 6583 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.2)
+/Prev 6585 0 R
+>>
+endobj
+6587 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC14_X2)
+/Next 6593 0 R
+/Prev 6583 0 R
+/First 6588 0 R
+/Last 6592 0 R
+/Count -5
+>>
+endobj
+6588 0 obj
+<<
+/Parent 6587 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J70x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J70.1)
+/Next 6589 0 R
+>>
+endobj
+6589 0 obj
+<<
+/Parent 6587 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C15x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C15.2)
+/Next 6590 0 R
+/Prev 6588 0 R
+>>
+endobj
+6590 0 obj
+<<
+/Parent 6587 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J70x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J70.2)
+/Next 6591 0 R
+/Prev 6589 0 R
+>>
+endobj
+6591 0 obj
+<<
+/Parent 6587 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.3)
+/Next 6592 0 R
+/Prev 6590 0 R
+>>
+endobj
+6592 0 obj
+<<
+/Parent 6587 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X1xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (X1.A)
+/Prev 6591 0 R
+>>
+endobj
+6593 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PC15_X2)
+/Next 6599 0 R
+/Prev 6587 0 R
+/First 6594 0 R
+/Last 6598 0 R
+/Count -5
+>>
+endobj
+6594 0 obj
+<<
+/Parent 6593 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J71x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J71.1)
+/Next 6595 0 R
+>>
+endobj
+6595 0 obj
+<<
+/Parent 6593 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C14x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C14.2)
+/Next 6596 0 R
+/Prev 6594 0 R
+>>
+endobj
+6596 0 obj
+<<
+/Parent 6593 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J71x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J71.2)
+/Next 6597 0 R
+/Prev 6595 0 R
+>>
+endobj
+6597 0 obj
+<<
+/Parent 6593 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.4)
+/Next 6598 0 R
+/Prev 6596 0 R
+>>
+endobj
+6598 0 obj
+<<
+/Parent 6593 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X1xB'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (X1.B)
+/Prev 6597 0 R
+>>
+endobj
+6599 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PD0_X1)
+/Next 6605 0 R
+/Prev 6593 0 R
+/First 6600 0 R
+/Last 6604 0 R
+/Count -5
+>>
+endobj
+6600 0 obj
+<<
+/Parent 6599 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J72x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J72.1)
+/Next 6601 0 R
+>>
+endobj
+6601 0 obj
+<<
+/Parent 6599 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C13x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C13.2)
+/Next 6602 0 R
+/Prev 6600 0 R
+>>
+endobj
+6602 0 obj
+<<
+/Parent 6599 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J72x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J72.2)
+/Next 6603 0 R
+/Prev 6601 0 R
+>>
+endobj
+6603 0 obj
+<<
+/Parent 6599 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x5'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.5)
+/Next 6604 0 R
+/Prev 6602 0 R
+>>
+endobj
+6604 0 obj
+<<
+/Parent 6599 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X2xB'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (X2.B)
+/Prev 6603 0 R
+>>
+endobj
+6605 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PD1_X1)
+/Next 6611 0 R
+/Prev 6599 0 R
+/First 6606 0 R
+/Last 6610 0 R
+/Count -5
+>>
+endobj
+6606 0 obj
+<<
+/Parent 6605 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J73x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J73.1)
+/Next 6607 0 R
+>>
+endobj
+6607 0 obj
+<<
+/Parent 6605 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C12x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C12.2)
+/Next 6608 0 R
+/Prev 6606 0 R
+>>
+endobj
+6608 0 obj
+<<
+/Parent 6605 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J73x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J73.2)
+/Next 6609 0 R
+/Prev 6607 0 R
+>>
+endobj
+6609 0 obj
+<<
+/Parent 6605 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x6'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.6)
+/Next 6610 0 R
+/Prev 6608 0 R
+>>
+endobj
+6610 0 obj
+<<
+/Parent 6605 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='X2xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (X2.A)
+/Prev 6609 0 R
+>>
+endobj
+6611 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (PD2)
+/Next 6615 0 R
+/Prev 6605 0 R
+/First 6612 0 R
+/Last 6614 0 R
+/Count -3
+>>
+endobj
+6612 0 obj
+<<
+/Parent 6611 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J68x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J68.1)
+/Next 6613 0 R
+>>
+endobj
+6613 0 obj
+<<
+/Parent 6611 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J68x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J68.2)
+/Next 6614 0 R
+/Prev 6612 0 R
+>>
+endobj
+6614 0 obj
+<<
+/Parent 6611 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x54'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.54)
+/Prev 6613 0 R
+>>
+endobj
+6615 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (VBATT)
+/Next 6621 0 R
+/Prev 6611 0 R
+/First 6616 0 R
+/Last 6620 0 R
+/Count -5
+>>
+endobj
+6616 0 obj
+<<
+/Parent 6615 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J10x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J10.1)
+/Next 6617 0 R
+>>
+endobj
+6617 0 obj
+<<
+/Parent 6615 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.1)
+/Next 6618 0 R
+/Prev 6616 0 R
+>>
+endobj
+6618 0 obj
+<<
+/Parent 6615 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J10x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J10.2)
+/Next 6619 0 R
+/Prev 6617 0 R
+>>
+endobj
+6619 0 obj
+<<
+/Parent 6615 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D2xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D2.C)
+/Next 6620 0 R
+/Prev 6618 0 R
+>>
+endobj
+6620 0 obj
+<<
+/Parent 6615 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D3xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D3.C)
+/Prev 6619 0 R
+>>
+endobj
+6621 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (VCC)
+/Next 6630 0 R
+/Prev 6615 0 R
+/First 6622 0 R
+/Last 6629 0 R
+/Count -8
+>>
+endobj
+6622 0 obj
+<<
+/Parent 6621 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C4x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C4.2)
+/Next 6623 0 R
+>>
+endobj
+6623 0 obj
+<<
+/Parent 6621 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J65x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J65.2)
+/Next 6624 0 R
+/Prev 6622 0 R
+>>
+endobj
+6624 0 obj
+<<
+/Parent 6621 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U1.2)
+/Next 6625 0 R
+/Prev 6623 0 R
+>>
+endobj
+6625 0 obj
+<<
+/Parent 6621 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J2.3)
+/Next 6626 0 R
+/Prev 6624 0 R
+>>
+endobj
+6626 0 obj
+<<
+/Parent 6621 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J2x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J2.4)
+/Next 6627 0 R
+/Prev 6625 0 R
+>>
+endobj
+6627 0 obj
+<<
+/Parent 6621 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C3xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C3.A)
+/Next 6628 0 R
+/Prev 6626 0 R
+>>
+endobj
+6628 0 obj
+<<
+/Parent 6621 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D1xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D1.C)
+/Next 6629 0 R
+/Prev 6627 0 R
+>>
+endobj
+6629 0 obj
+<<
+/Parent 6621 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D4xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D4.C)
+/Prev 6628 0 R
+>>
+endobj
+6630 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (VDD)
+/Next 6664 0 R
+/Prev 6621 0 R
+/First 6631 0 R
+/Last 6663 0 R
+/Count -33
+>>
+endobj
+6631 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J13x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J13.1)
+/Next 6632 0 R
+>>
+endobj
+6632 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J15x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J15.1)
+/Next 6633 0 R
+/Prev 6631 0 R
+>>
+endobj
+6633 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51.1)
+/Next 6634 0 R
+/Prev 6632 0 R
+>>
+endobj
+6634 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='L1x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (L1.1)
+/Next 6635 0 R
+/Prev 6633 0 R
+>>
+endobj
+6635 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R15x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R15.1)
+/Next 6636 0 R
+/Prev 6634 0 R
+>>
+endobj
+6636 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C6x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C6.2)
+/Next 6637 0 R
+/Prev 6635 0 R
+>>
+endobj
+6637 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C8x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C8.2)
+/Next 6638 0 R
+/Prev 6636 0 R
+>>
+endobj
+6638 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C9x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C9.2)
+/Next 6639 0 R
+/Prev 6637 0 R
+>>
+endobj
+6639 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C10x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C10.2)
+/Next 6640 0 R
+/Prev 6638 0 R
+>>
+endobj
+6640 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C11x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C11.2)
+/Next 6641 0 R
+/Prev 6639 0 R
+>>
+endobj
+6641 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J13x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J13.2)
+/Next 6642 0 R
+/Prev 6640 0 R
+>>
+endobj
+6642 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J15x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J15.2)
+/Next 6643 0 R
+/Prev 6641 0 R
+>>
+endobj
+6643 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J51x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J51.2)
+/Next 6644 0 R
+/Prev 6642 0 R
+>>
+endobj
+6644 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J76x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J76.2)
+/Next 6645 0 R
+/Prev 6643 0 R
+>>
+endobj
+6645 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='JF1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (JF1.2)
+/Next 6646 0 R
+/Prev 6644 0 R
+>>
+endobj
+6646 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R1.2)
+/Next 6647 0 R
+/Prev 6645 0 R
+>>
+endobj
+6647 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R8x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R8.2)
+/Next 6648 0 R
+/Prev 6646 0 R
+>>
+endobj
+6648 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R9x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R9.2)
+/Next 6649 0 R
+/Prev 6647 0 R
+>>
+endobj
+6649 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R10x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R10.2)
+/Next 6650 0 R
+/Prev 6648 0 R
+>>
+endobj
+6650 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='R11x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (R11.2)
+/Next 6651 0 R
+/Prev 6649 0 R
+>>
+endobj
+6651 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J1.3)
+/Next 6652 0 R
+/Prev 6650 0 R
+>>
+endobj
+6652 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U1x3'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U1.3)
+/Next 6653 0 R
+/Prev 6651 0 R
+>>
+endobj
+6653 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J1x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J1.4)
+/Next 6654 0 R
+/Prev 6652 0 R
+>>
+endobj
+6654 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U1x4'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U1.4)
+/Next 6655 0 R
+/Prev 6653 0 R
+>>
+endobj
+6655 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x19'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.19)
+/Next 6656 0 R
+/Prev 6654 0 R
+>>
+endobj
+6656 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x32'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.32)
+/Next 6657 0 R
+/Prev 6655 0 R
+>>
+endobj
+6657 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x48'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.48)
+/Next 6658 0 R
+/Prev 6656 0 R
+>>
+endobj
+6658 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x64'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.64)
+/Next 6659 0 R
+/Prev 6657 0 R
+>>
+endobj
+6659 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C5xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C5.A)
+/Next 6660 0 R
+/Prev 6658 0 R
+>>
+endobj
+6660 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D1xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D1.A)
+/Next 6661 0 R
+/Prev 6659 0 R
+>>
+endobj
+6661 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D2xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D2.A)
+/Next 6662 0 R
+/Prev 6660 0 R
+>>
+endobj
+6662 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='D5xC'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (D5.C)
+/Next 6663 0 R
+/Prev 6661 0 R
+>>
+endobj
+6663 0 obj
+<<
+/Parent 6630 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='Q1xS'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (Q1.S)
+/Prev 6662 0 R
+>>
+endobj
+6664 0 obj
+<<
+/Parent 6250 0 R
+/Dest [13 0 R /XYZ null null null]
+/Title (VDD_A)
+/Prev 6630 0 R
+/First 6665 0 R
+/Last 6670 0 R
+/Count -6
+>>
+endobj
+6665 0 obj
+<<
+/Parent 6664 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J4x1'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J4.1)
+/Next 6666 0 R
+>>
+endobj
+6666 0 obj
+<<
+/Parent 6664 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C2x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C2.2)
+/Next 6667 0 R
+/Prev 6665 0 R
+>>
+endobj
+6667 0 obj
+<<
+/Parent 6664 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='J4x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (J4.2)
+/Next 6668 0 R
+/Prev 6666 0 R
+>>
+endobj
+6668 0 obj
+<<
+/Parent 6664 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='L1x2'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (L1.2)
+/Next 6669 0 R
+/Prev 6667 0 R
+>>
+endobj
+6669 0 obj
+<<
+/Parent 6664 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='U2x13'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (U2.13)
+/Next 6670 0 R
+/Prev 6668 0 R
+>>
+endobj
+6670 0 obj
+<<
+/Parent 6664 0 R
+/A <<
+/Type /Action /S /JavaScript /JS (var n=this.getPageNumWords(4);for(var i=n-1;i>=0;i--){var m=this.getPageNthWord(4,i,true);if(m=='C1xA'){this.selectPageNthWord(4,i,true);break;}})
+>>
+/Title (C1.A)
+/Prev 6669 0 R
+>>
+endobj
+6671 0 obj
+<<
+/Parent 2 0 R
+/Dest [15 0 R /XYZ null null null]
+/Title (Drill)
+/Prev 5769 0 R
+>>
+endobj
+6672 0 obj
+<<
+/Creator (A ClibPDF program)
+/CreationDate (D:20110121094758)
+/Producer ([ClibPDF Library 2.01-r2-7] Windows 9x/NT)
+/Author (User: Windows NT/95/98 User)
+/Title (No Title)
+/Subject (None)
+/Keywords (ClibPDF)
+>>
+endobj
+xref
+0 6673
+0000000000 65535 f
+0000000033 00000 n
+0000000121 00000 n
+0000000198 00000 n
+0000000290 00000 n
+0000000318 00000 n
+0000001100 00000 n
+0000014661 00000 n
+0000015892 00000 n
+0000049504 00000 n
+0000050351 00000 n
+0000069827 00000 n
+0000070387 00000 n
+0000081333 00000 n
+0000115431 00000 n
+0000354350 00000 n
+0000354516 00000 n
+0000366221 00000 n
+0000366335 00000 n
+0000366447 00000 n
+0000366739 00000 n
+0000367031 00000 n
+0000367344 00000 n
+0000367647 00000 n
+0000367950 00000 n
+0000368253 00000 n
+0000368556 00000 n
+0000368859 00000 n
+0000369162 00000 n
+0000369465 00000 n
+0000369768 00000 n
+0000370081 00000 n
+0000370384 00000 n
+0000370687 00000 n
+0000370990 00000 n
+0000371293 00000 n
+0000371596 00000 n
+0000371899 00000 n
+0000372202 00000 n
+0000372505 00000 n
+0000372808 00000 n
+0000373111 00000 n
+0000373409 00000 n
+0000373712 00000 n
+0000374015 00000 n
+0000374318 00000 n
+0000374621 00000 n
+0000374924 00000 n
+0000375227 00000 n
+0000375530 00000 n
+0000375829 00000 n
+0000376131 00000 n
+0000376434 00000 n
+0000376737 00000 n
+0000377040 00000 n
+0000377343 00000 n
+0000377646 00000 n
+0000377949 00000 n
+0000378252 00000 n
+0000378555 00000 n
+0000378858 00000 n
+0000379161 00000 n
+0000379463 00000 n
+0000379766 00000 n
+0000380069 00000 n
+0000380372 00000 n
+0000380675 00000 n
+0000380978 00000 n
+0000381281 00000 n
+0000381584 00000 n
+0000381887 00000 n
+0000382190 00000 n
+0000382492 00000 n
+0000382795 00000 n
+0000383098 00000 n
+0000383401 00000 n
+0000383704 00000 n
+0000384007 00000 n
+0000384306 00000 n
+0000384609 00000 n
+0000384912 00000 n
+0000385215 00000 n
+0000385518 00000 n
+0000385820 00000 n
+0000386122 00000 n
+0000386424 00000 n
+0000386700 00000 n
+0000387021 00000 n
+0000387342 00000 n
+0000387663 00000 n
+0000387984 00000 n
+0000388327 00000 n
+0000388660 00000 n
+0000388990 00000 n
+0000389293 00000 n
+0000389596 00000 n
+0000389899 00000 n
+0000390202 00000 n
+0000390501 00000 n
+0000390800 00000 n
+0000391099 00000 n
+0000391392 00000 n
+0000391736 00000 n
+0000392048 00000 n
+0000392371 00000 n
+0000392673 00000 n
+0000392975 00000 n
+0000393277 00000 n
+0000393579 00000 n
+0000393881 00000 n
+0000394183 00000 n
+0000394485 00000 n
+0000394786 00000 n
+0000395109 00000 n
+0000395410 00000 n
+0000395733 00000 n
+0000396034 00000 n
+0000396335 00000 n
+0000396636 00000 n
+0000396937 00000 n
+0000397229 00000 n
+0000397522 00000 n
+0000397815 00000 n
+0000398107 00000 n
+0000398399 00000 n
+0000398692 00000 n
+0000398985 00000 n
+0000399278 00000 n
+0000399592 00000 n
+0000399896 00000 n
+0000400200 00000 n
+0000400504 00000 n
+0000400808 00000 n
+0000401112 00000 n
+0000401416 00000 n
+0000401720 00000 n
+0000402024 00000 n
+0000402338 00000 n
+0000402642 00000 n
+0000402946 00000 n
+0000403250 00000 n
+0000403554 00000 n
+0000403858 00000 n
+0000404162 00000 n
+0000404466 00000 n
+0000404770 00000 n
+0000405074 00000 n
+0000405378 00000 n
+0000405677 00000 n
+0000405981 00000 n
+0000406285 00000 n
+0000406589 00000 n
+0000406893 00000 n
+0000407197 00000 n
+0000407501 00000 n
+0000407805 00000 n
+0000408105 00000 n
+0000408408 00000 n
+0000408712 00000 n
+0000409016 00000 n
+0000409320 00000 n
+0000409624 00000 n
+0000409928 00000 n
+0000410232 00000 n
+0000410536 00000 n
+0000410840 00000 n
+0000411144 00000 n
+0000411448 00000 n
+0000411751 00000 n
+0000412055 00000 n
+0000412359 00000 n
+0000412663 00000 n
+0000412967 00000 n
+0000413271 00000 n
+0000413575 00000 n
+0000413879 00000 n
+0000414183 00000 n
+0000414487 00000 n
+0000414790 00000 n
+0000415094 00000 n
+0000415398 00000 n
+0000415702 00000 n
+0000416006 00000 n
+0000416310 00000 n
+0000416610 00000 n
+0000416914 00000 n
+0000417218 00000 n
+0000417522 00000 n
+0000417826 00000 n
+0000418129 00000 n
+0000418432 00000 n
+0000418735 00000 n
+0000419012 00000 n
+0000419319 00000 n
+0000419626 00000 n
+0000419948 00000 n
+0000420270 00000 n
+0000420592 00000 n
+0000420914 00000 n
+0000421213 00000 n
+0000421513 00000 n
+0000421813 00000 n
+0000422113 00000 n
+0000422413 00000 n
+0000422712 00000 n
+0000423011 00000 n
+0000423310 00000 n
+0000423609 00000 n
+0000423908 00000 n
+0000424207 00000 n
+0000424506 00000 n
+0000424805 00000 n
+0000425149 00000 n
+0000425460 00000 n
+0000425794 00000 n
+0000426125 00000 n
+0000426429 00000 n
+0000426733 00000 n
+0000427037 00000 n
+0000427341 00000 n
+0000427648 00000 n
+0000427948 00000 n
+0000428248 00000 n
+0000428548 00000 n
+0000428848 00000 n
+0000429148 00000 n
+0000429448 00000 n
+0000429777 00000 n
+0000430070 00000 n
+0000430414 00000 n
+0000430720 00000 n
+0000431032 00000 n
+0000431366 00000 n
+0000431669 00000 n
+0000431962 00000 n
+0000432255 00000 n
+0000432569 00000 n
+0000432873 00000 n
+0000433177 00000 n
+0000433481 00000 n
+0000433785 00000 n
+0000434089 00000 n
+0000434393 00000 n
+0000434697 00000 n
+0000435001 00000 n
+0000435315 00000 n
+0000435619 00000 n
+0000435923 00000 n
+0000436227 00000 n
+0000436531 00000 n
+0000436835 00000 n
+0000437139 00000 n
+0000437443 00000 n
+0000437747 00000 n
+0000438051 00000 n
+0000438355 00000 n
+0000438654 00000 n
+0000438958 00000 n
+0000439262 00000 n
+0000439566 00000 n
+0000439870 00000 n
+0000440174 00000 n
+0000440478 00000 n
+0000440782 00000 n
+0000441082 00000 n
+0000441385 00000 n
+0000441689 00000 n
+0000441993 00000 n
+0000442297 00000 n
+0000442601 00000 n
+0000442905 00000 n
+0000443209 00000 n
+0000443513 00000 n
+0000443817 00000 n
+0000444121 00000 n
+0000444425 00000 n
+0000444728 00000 n
+0000445032 00000 n
+0000445336 00000 n
+0000445640 00000 n
+0000445944 00000 n
+0000446248 00000 n
+0000446552 00000 n
+0000446856 00000 n
+0000447160 00000 n
+0000447464 00000 n
+0000447767 00000 n
+0000448071 00000 n
+0000448375 00000 n
+0000448679 00000 n
+0000448983 00000 n
+0000449287 00000 n
+0000449587 00000 n
+0000449891 00000 n
+0000450195 00000 n
+0000450499 00000 n
+0000450803 00000 n
+0000451106 00000 n
+0000451409 00000 n
+0000451712 00000 n
+0000451989 00000 n
+0000452333 00000 n
+0000452667 00000 n
+0000452998 00000 n
+0000453302 00000 n
+0000453606 00000 n
+0000453910 00000 n
+0000454214 00000 n
+0000454514 00000 n
+0000454814 00000 n
+0000455114 00000 n
+0000455407 00000 n
+0000455751 00000 n
+0000456063 00000 n
+0000456386 00000 n
+0000456688 00000 n
+0000456990 00000 n
+0000457292 00000 n
+0000457594 00000 n
+0000457896 00000 n
+0000458198 00000 n
+0000458500 00000 n
+0000458801 00000 n
+0000459124 00000 n
+0000459425 00000 n
+0000459748 00000 n
+0000460049 00000 n
+0000460350 00000 n
+0000460651 00000 n
+0000460952 00000 n
+0000461244 00000 n
+0000461537 00000 n
+0000461830 00000 n
+0000462122 00000 n
+0000462414 00000 n
+0000462707 00000 n
+0000463014 00000 n
+0000463321 00000 n
+0000463620 00000 n
+0000463920 00000 n
+0000464220 00000 n
+0000464520 00000 n
+0000464820 00000 n
+0000465119 00000 n
+0000465418 00000 n
+0000465717 00000 n
+0000466016 00000 n
+0000466315 00000 n
+0000466614 00000 n
+0000466913 00000 n
+0000467212 00000 n
+0000467523 00000 n
+0000467830 00000 n
+0000468130 00000 n
+0000468430 00000 n
+0000468730 00000 n
+0000469059 00000 n
+0000469365 00000 n
+0000469688 00000 n
+0000469990 00000 n
+0000470292 00000 n
+0000470594 00000 n
+0000470896 00000 n
+0000471198 00000 n
+0000471500 00000 n
+0000471802 00000 n
+0000472103 00000 n
+0000472426 00000 n
+0000472727 00000 n
+0000473050 00000 n
+0000473351 00000 n
+0000473652 00000 n
+0000473953 00000 n
+0000474254 00000 n
+0000474546 00000 n
+0000474839 00000 n
+0000475132 00000 n
+0000475424 00000 n
+0000475716 00000 n
+0000476009 00000 n
+0000476302 00000 n
+0000476595 00000 n
+0000476909 00000 n
+0000477213 00000 n
+0000477517 00000 n
+0000477821 00000 n
+0000478125 00000 n
+0000478429 00000 n
+0000478733 00000 n
+0000479037 00000 n
+0000479341 00000 n
+0000479655 00000 n
+0000479959 00000 n
+0000480263 00000 n
+0000480567 00000 n
+0000480871 00000 n
+0000481175 00000 n
+0000481479 00000 n
+0000481783 00000 n
+0000482087 00000 n
+0000482391 00000 n
+0000482695 00000 n
+0000482994 00000 n
+0000483298 00000 n
+0000483602 00000 n
+0000483906 00000 n
+0000484210 00000 n
+0000484514 00000 n
+0000484818 00000 n
+0000485122 00000 n
+0000485422 00000 n
+0000485725 00000 n
+0000486029 00000 n
+0000486333 00000 n
+0000486637 00000 n
+0000486941 00000 n
+0000487245 00000 n
+0000487549 00000 n
+0000487853 00000 n
+0000488157 00000 n
+0000488461 00000 n
+0000488765 00000 n
+0000489068 00000 n
+0000489372 00000 n
+0000489676 00000 n
+0000489980 00000 n
+0000490284 00000 n
+0000490588 00000 n
+0000490892 00000 n
+0000491196 00000 n
+0000491500 00000 n
+0000491804 00000 n
+0000492107 00000 n
+0000492411 00000 n
+0000492715 00000 n
+0000493019 00000 n
+0000493323 00000 n
+0000493627 00000 n
+0000493927 00000 n
+0000494231 00000 n
+0000494535 00000 n
+0000494839 00000 n
+0000495143 00000 n
+0000495446 00000 n
+0000495749 00000 n
+0000496052 00000 n
+0000496329 00000 n
+0000496636 00000 n
+0000496943 00000 n
+0000497265 00000 n
+0000497587 00000 n
+0000497909 00000 n
+0000498231 00000 n
+0000498530 00000 n
+0000498830 00000 n
+0000499130 00000 n
+0000499430 00000 n
+0000499730 00000 n
+0000500029 00000 n
+0000500328 00000 n
+0000500627 00000 n
+0000500926 00000 n
+0000501225 00000 n
+0000501524 00000 n
+0000501823 00000 n
+0000502122 00000 n
+0000502466 00000 n
+0000502777 00000 n
+0000503111 00000 n
+0000503442 00000 n
+0000503746 00000 n
+0000504050 00000 n
+0000504354 00000 n
+0000504658 00000 n
+0000504965 00000 n
+0000505265 00000 n
+0000505565 00000 n
+0000505865 00000 n
+0000506165 00000 n
+0000506465 00000 n
+0000506765 00000 n
+0000507094 00000 n
+0000507387 00000 n
+0000507731 00000 n
+0000508037 00000 n
+0000508349 00000 n
+0000508672 00000 n
+0000508974 00000 n
+0000509276 00000 n
+0000509578 00000 n
+0000509880 00000 n
+0000510182 00000 n
+0000510484 00000 n
+0000510786 00000 n
+0000511087 00000 n
+0000511410 00000 n
+0000511711 00000 n
+0000512034 00000 n
+0000512335 00000 n
+0000512636 00000 n
+0000512937 00000 n
+0000513238 00000 n
+0000513530 00000 n
+0000513823 00000 n
+0000514116 00000 n
+0000514408 00000 n
+0000514700 00000 n
+0000514993 00000 n
+0000515286 00000 n
+0000515579 00000 n
+0000515893 00000 n
+0000516197 00000 n
+0000516501 00000 n
+0000516805 00000 n
+0000517109 00000 n
+0000517413 00000 n
+0000517717 00000 n
+0000518021 00000 n
+0000518325 00000 n
+0000518639 00000 n
+0000518943 00000 n
+0000519247 00000 n
+0000519551 00000 n
+0000519855 00000 n
+0000520159 00000 n
+0000520463 00000 n
+0000520767 00000 n
+0000521071 00000 n
+0000521375 00000 n
+0000521679 00000 n
+0000521978 00000 n
+0000522282 00000 n
+0000522586 00000 n
+0000522890 00000 n
+0000523194 00000 n
+0000523498 00000 n
+0000523802 00000 n
+0000524106 00000 n
+0000524406 00000 n
+0000524709 00000 n
+0000525013 00000 n
+0000525317 00000 n
+0000525621 00000 n
+0000525925 00000 n
+0000526229 00000 n
+0000526533 00000 n
+0000526837 00000 n
+0000527141 00000 n
+0000527445 00000 n
+0000527749 00000 n
+0000528052 00000 n
+0000528356 00000 n
+0000528660 00000 n
+0000528964 00000 n
+0000529268 00000 n
+0000529572 00000 n
+0000529876 00000 n
+0000530180 00000 n
+0000530484 00000 n
+0000530788 00000 n
+0000531091 00000 n
+0000531395 00000 n
+0000531699 00000 n
+0000532003 00000 n
+0000532307 00000 n
+0000532611 00000 n
+0000532911 00000 n
+0000533215 00000 n
+0000533519 00000 n
+0000533823 00000 n
+0000534127 00000 n
+0000534430 00000 n
+0000534733 00000 n
+0000535036 00000 n
+0000535313 00000 n
+0000535620 00000 n
+0000535927 00000 n
+0000536249 00000 n
+0000536571 00000 n
+0000536893 00000 n
+0000537215 00000 n
+0000537514 00000 n
+0000537814 00000 n
+0000538114 00000 n
+0000538414 00000 n
+0000538714 00000 n
+0000539013 00000 n
+0000539312 00000 n
+0000539611 00000 n
+0000539910 00000 n
+0000540209 00000 n
+0000540508 00000 n
+0000540807 00000 n
+0000541106 00000 n
+0000541450 00000 n
+0000541761 00000 n
+0000542095 00000 n
+0000542426 00000 n
+0000542730 00000 n
+0000543034 00000 n
+0000543338 00000 n
+0000543642 00000 n
+0000543949 00000 n
+0000544249 00000 n
+0000544549 00000 n
+0000544849 00000 n
+0000545149 00000 n
+0000545449 00000 n
+0000545749 00000 n
+0000546078 00000 n
+0000546371 00000 n
+0000546715 00000 n
+0000547021 00000 n
+0000547333 00000 n
+0000547656 00000 n
+0000547958 00000 n
+0000548260 00000 n
+0000548562 00000 n
+0000548864 00000 n
+0000549166 00000 n
+0000549468 00000 n
+0000549770 00000 n
+0000550071 00000 n
+0000550394 00000 n
+0000550695 00000 n
+0000551018 00000 n
+0000551319 00000 n
+0000551620 00000 n
+0000551921 00000 n
+0000552222 00000 n
+0000552514 00000 n
+0000552807 00000 n
+0000553100 00000 n
+0000553392 00000 n
+0000553684 00000 n
+0000553977 00000 n
+0000554270 00000 n
+0000554563 00000 n
+0000554877 00000 n
+0000555181 00000 n
+0000555485 00000 n
+0000555789 00000 n
+0000556093 00000 n
+0000556397 00000 n
+0000556701 00000 n
+0000557005 00000 n
+0000557309 00000 n
+0000557623 00000 n
+0000557927 00000 n
+0000558231 00000 n
+0000558535 00000 n
+0000558839 00000 n
+0000559143 00000 n
+0000559447 00000 n
+0000559751 00000 n
+0000560055 00000 n
+0000560359 00000 n
+0000560663 00000 n
+0000560962 00000 n
+0000561266 00000 n
+0000561570 00000 n
+0000561874 00000 n
+0000562178 00000 n
+0000562482 00000 n
+0000562786 00000 n
+0000563090 00000 n
+0000563390 00000 n
+0000563693 00000 n
+0000563997 00000 n
+0000564301 00000 n
+0000564605 00000 n
+0000564909 00000 n
+0000565213 00000 n
+0000565517 00000 n
+0000565821 00000 n
+0000566125 00000 n
+0000566429 00000 n
+0000566733 00000 n
+0000567036 00000 n
+0000567340 00000 n
+0000567644 00000 n
+0000567948 00000 n
+0000568252 00000 n
+0000568556 00000 n
+0000568860 00000 n
+0000569164 00000 n
+0000569468 00000 n
+0000569772 00000 n
+0000570075 00000 n
+0000570379 00000 n
+0000570683 00000 n
+0000570987 00000 n
+0000571291 00000 n
+0000571595 00000 n
+0000571895 00000 n
+0000572199 00000 n
+0000572503 00000 n
+0000572807 00000 n
+0000573111 00000 n
+0000573414 00000 n
+0000573717 00000 n
+0000574020 00000 n
+0000574297 00000 n
+0000574604 00000 n
+0000574911 00000 n
+0000575233 00000 n
+0000575555 00000 n
+0000575877 00000 n
+0000576199 00000 n
+0000576498 00000 n
+0000576798 00000 n
+0000577098 00000 n
+0000577398 00000 n
+0000577698 00000 n
+0000577997 00000 n
+0000578296 00000 n
+0000578595 00000 n
+0000578894 00000 n
+0000579193 00000 n
+0000579492 00000 n
+0000579791 00000 n
+0000580090 00000 n
+0000580434 00000 n
+0000580745 00000 n
+0000581079 00000 n
+0000581410 00000 n
+0000581714 00000 n
+0000582018 00000 n
+0000582322 00000 n
+0000582626 00000 n
+0000582933 00000 n
+0000583233 00000 n
+0000583533 00000 n
+0000583833 00000 n
+0000584133 00000 n
+0000584433 00000 n
+0000584733 00000 n
+0000585062 00000 n
+0000585355 00000 n
+0000585699 00000 n
+0000586005 00000 n
+0000586317 00000 n
+0000586651 00000 n
+0000586954 00000 n
+0000587277 00000 n
+0000587579 00000 n
+0000587881 00000 n
+0000588183 00000 n
+0000588485 00000 n
+0000588787 00000 n
+0000589089 00000 n
+0000589391 00000 n
+0000589692 00000 n
+0000590015 00000 n
+0000590316 00000 n
+0000590639 00000 n
+0000590940 00000 n
+0000591241 00000 n
+0000591542 00000 n
+0000591843 00000 n
+0000592135 00000 n
+0000592428 00000 n
+0000592721 00000 n
+0000593013 00000 n
+0000593305 00000 n
+0000593598 00000 n
+0000593891 00000 n
+0000594184 00000 n
+0000594498 00000 n
+0000594802 00000 n
+0000595106 00000 n
+0000595410 00000 n
+0000595714 00000 n
+0000596018 00000 n
+0000596322 00000 n
+0000596626 00000 n
+0000596930 00000 n
+0000597244 00000 n
+0000597548 00000 n
+0000597852 00000 n
+0000598156 00000 n
+0000598460 00000 n
+0000598764 00000 n
+0000599068 00000 n
+0000599372 00000 n
+0000599676 00000 n
+0000599980 00000 n
+0000600284 00000 n
+0000600583 00000 n
+0000600887 00000 n
+0000601191 00000 n
+0000601495 00000 n
+0000601799 00000 n
+0000602103 00000 n
+0000602407 00000 n
+0000602711 00000 n
+0000603011 00000 n
+0000603314 00000 n
+0000603618 00000 n
+0000603922 00000 n
+0000604226 00000 n
+0000604530 00000 n
+0000604834 00000 n
+0000605138 00000 n
+0000605442 00000 n
+0000605746 00000 n
+0000606050 00000 n
+0000606354 00000 n
+0000606657 00000 n
+0000606961 00000 n
+0000607265 00000 n
+0000607569 00000 n
+0000607873 00000 n
+0000608177 00000 n
+0000608481 00000 n
+0000608785 00000 n
+0000609089 00000 n
+0000609393 00000 n
+0000609696 00000 n
+0000610000 00000 n
+0000610304 00000 n
+0000610608 00000 n
+0000610912 00000 n
+0000611216 00000 n
+0000611516 00000 n
+0000611820 00000 n
+0000612124 00000 n
+0000612428 00000 n
+0000612732 00000 n
+0000613035 00000 n
+0000613338 00000 n
+0000613641 00000 n
+0000613918 00000 n
+0000614225 00000 n
+0000614532 00000 n
+0000614854 00000 n
+0000615176 00000 n
+0000615498 00000 n
+0000615820 00000 n
+0000616119 00000 n
+0000616419 00000 n
+0000616719 00000 n
+0000617019 00000 n
+0000617319 00000 n
+0000617618 00000 n
+0000617917 00000 n
+0000618216 00000 n
+0000618515 00000 n
+0000618814 00000 n
+0000619113 00000 n
+0000619412 00000 n
+0000619711 00000 n
+0000620055 00000 n
+0000620366 00000 n
+0000620700 00000 n
+0000621031 00000 n
+0000621335 00000 n
+0000621639 00000 n
+0000621943 00000 n
+0000622247 00000 n
+0000622554 00000 n
+0000622854 00000 n
+0000623154 00000 n
+0000623454 00000 n
+0000623754 00000 n
+0000624054 00000 n
+0000624354 00000 n
+0000624683 00000 n
+0000624976 00000 n
+0000625320 00000 n
+0000625626 00000 n
+0000625938 00000 n
+0000626261 00000 n
+0000626563 00000 n
+0000626865 00000 n
+0000627167 00000 n
+0000627469 00000 n
+0000627771 00000 n
+0000628073 00000 n
+0000628375 00000 n
+0000628676 00000 n
+0000628999 00000 n
+0000629300 00000 n
+0000629623 00000 n
+0000629924 00000 n
+0000630225 00000 n
+0000630526 00000 n
+0000630827 00000 n
+0000631119 00000 n
+0000631412 00000 n
+0000631705 00000 n
+0000631997 00000 n
+0000632289 00000 n
+0000632582 00000 n
+0000632875 00000 n
+0000633168 00000 n
+0000633482 00000 n
+0000633786 00000 n
+0000634090 00000 n
+0000634394 00000 n
+0000634698 00000 n
+0000635002 00000 n
+0000635306 00000 n
+0000635610 00000 n
+0000635914 00000 n
+0000636228 00000 n
+0000636532 00000 n
+0000636836 00000 n
+0000637140 00000 n
+0000637444 00000 n
+0000637748 00000 n
+0000638052 00000 n
+0000638356 00000 n
+0000638660 00000 n
+0000638964 00000 n
+0000639268 00000 n
+0000639567 00000 n
+0000639871 00000 n
+0000640175 00000 n
+0000640479 00000 n
+0000640783 00000 n
+0000641087 00000 n
+0000641391 00000 n
+0000641695 00000 n
+0000641995 00000 n
+0000642298 00000 n
+0000642602 00000 n
+0000642906 00000 n
+0000643210 00000 n
+0000643514 00000 n
+0000643818 00000 n
+0000644122 00000 n
+0000644426 00000 n
+0000644730 00000 n
+0000645034 00000 n
+0000645338 00000 n
+0000645641 00000 n
+0000645945 00000 n
+0000646249 00000 n
+0000646553 00000 n
+0000646857 00000 n
+0000647161 00000 n
+0000647465 00000 n
+0000647769 00000 n
+0000648073 00000 n
+0000648377 00000 n
+0000648680 00000 n
+0000648984 00000 n
+0000649288 00000 n
+0000649592 00000 n
+0000649896 00000 n
+0000650200 00000 n
+0000650500 00000 n
+0000650804 00000 n
+0000651108 00000 n
+0000651412 00000 n
+0000651716 00000 n
+0000652019 00000 n
+0000652322 00000 n
+0000652625 00000 n
+0000652902 00000 n
+0000653209 00000 n
+0000653516 00000 n
+0000653838 00000 n
+0000654160 00000 n
+0000654482 00000 n
+0000654804 00000 n
+0000655103 00000 n
+0000655403 00000 n
+0000655703 00000 n
+0000656003 00000 n
+0000656303 00000 n
+0000656602 00000 n
+0000656901 00000 n
+0000657200 00000 n
+0000657499 00000 n
+0000657798 00000 n
+0000658097 00000 n
+0000658396 00000 n
+0000658695 00000 n
+0000659039 00000 n
+0000659350 00000 n
+0000659684 00000 n
+0000660015 00000 n
+0000660319 00000 n
+0000660623 00000 n
+0000660927 00000 n
+0000661231 00000 n
+0000661538 00000 n
+0000661838 00000 n
+0000662138 00000 n
+0000662438 00000 n
+0000662738 00000 n
+0000663038 00000 n
+0000663338 00000 n
+0000663667 00000 n
+0000663960 00000 n
+0000664304 00000 n
+0000664610 00000 n
+0000664922 00000 n
+0000665245 00000 n
+0000665548 00000 n
+0000665851 00000 n
+0000666154 00000 n
+0000666457 00000 n
+0000666760 00000 n
+0000667063 00000 n
+0000667366 00000 n
+0000667668 00000 n
+0000667992 00000 n
+0000668294 00000 n
+0000668618 00000 n
+0000668920 00000 n
+0000669222 00000 n
+0000669524 00000 n
+0000669826 00000 n
+0000670119 00000 n
+0000670413 00000 n
+0000670707 00000 n
+0000671000 00000 n
+0000671293 00000 n
+0000671587 00000 n
+0000671881 00000 n
+0000672175 00000 n
+0000672490 00000 n
+0000672795 00000 n
+0000673100 00000 n
+0000673405 00000 n
+0000673710 00000 n
+0000674015 00000 n
+0000674320 00000 n
+0000674625 00000 n
+0000674930 00000 n
+0000675245 00000 n
+0000675550 00000 n
+0000675855 00000 n
+0000676160 00000 n
+0000676465 00000 n
+0000676770 00000 n
+0000677075 00000 n
+0000677380 00000 n
+0000677685 00000 n
+0000677990 00000 n
+0000678295 00000 n
+0000678595 00000 n
+0000678900 00000 n
+0000679205 00000 n
+0000679510 00000 n
+0000679815 00000 n
+0000680120 00000 n
+0000680425 00000 n
+0000680730 00000 n
+0000681031 00000 n
+0000681335 00000 n
+0000681640 00000 n
+0000681945 00000 n
+0000682250 00000 n
+0000682555 00000 n
+0000682860 00000 n
+0000683165 00000 n
+0000683470 00000 n
+0000683775 00000 n
+0000684080 00000 n
+0000684385 00000 n
+0000684689 00000 n
+0000684994 00000 n
+0000685299 00000 n
+0000685604 00000 n
+0000685909 00000 n
+0000686214 00000 n
+0000686519 00000 n
+0000686824 00000 n
+0000687129 00000 n
+0000687434 00000 n
+0000687738 00000 n
+0000688043 00000 n
+0000688348 00000 n
+0000688653 00000 n
+0000688958 00000 n
+0000689263 00000 n
+0000689564 00000 n
+0000689869 00000 n
+0000690174 00000 n
+0000690479 00000 n
+0000690784 00000 n
+0000691088 00000 n
+0000691392 00000 n
+0000691696 00000 n
+0000691974 00000 n
+0000692282 00000 n
+0000692590 00000 n
+0000692913 00000 n
+0000693236 00000 n
+0000693559 00000 n
+0000693882 00000 n
+0000694182 00000 n
+0000694483 00000 n
+0000694784 00000 n
+0000695085 00000 n
+0000695386 00000 n
+0000695686 00000 n
+0000695986 00000 n
+0000696286 00000 n
+0000696586 00000 n
+0000696886 00000 n
+0000697186 00000 n
+0000697486 00000 n
+0000697786 00000 n
+0000698131 00000 n
+0000698443 00000 n
+0000698778 00000 n
+0000699110 00000 n
+0000699415 00000 n
+0000699720 00000 n
+0000700025 00000 n
+0000700330 00000 n
+0000700638 00000 n
+0000700939 00000 n
+0000701240 00000 n
+0000701541 00000 n
+0000701842 00000 n
+0000702143 00000 n
+0000702444 00000 n
+0000702774 00000 n
+0000703068 00000 n
+0000703413 00000 n
+0000703720 00000 n
+0000704033 00000 n
+0000704357 00000 n
+0000704660 00000 n
+0000704963 00000 n
+0000705266 00000 n
+0000705569 00000 n
+0000705872 00000 n
+0000706175 00000 n
+0000706478 00000 n
+0000706780 00000 n
+0000707104 00000 n
+0000707406 00000 n
+0000707730 00000 n
+0000708032 00000 n
+0000708334 00000 n
+0000708636 00000 n
+0000708938 00000 n
+0000709231 00000 n
+0000709525 00000 n
+0000709819 00000 n
+0000710112 00000 n
+0000710405 00000 n
+0000710699 00000 n
+0000710993 00000 n
+0000711287 00000 n
+0000711602 00000 n
+0000711907 00000 n
+0000712212 00000 n
+0000712517 00000 n
+0000712822 00000 n
+0000713127 00000 n
+0000713432 00000 n
+0000713737 00000 n
+0000714042 00000 n
+0000714357 00000 n
+0000714662 00000 n
+0000714967 00000 n
+0000715272 00000 n
+0000715577 00000 n
+0000715882 00000 n
+0000716187 00000 n
+0000716492 00000 n
+0000716797 00000 n
+0000717102 00000 n
+0000717407 00000 n
+0000717707 00000 n
+0000718012 00000 n
+0000718317 00000 n
+0000718622 00000 n
+0000718927 00000 n
+0000719232 00000 n
+0000719537 00000 n
+0000719842 00000 n
+0000720143 00000 n
+0000720447 00000 n
+0000720752 00000 n
+0000721057 00000 n
+0000721362 00000 n
+0000721667 00000 n
+0000721972 00000 n
+0000722277 00000 n
+0000722582 00000 n
+0000722887 00000 n
+0000723192 00000 n
+0000723497 00000 n
+0000723801 00000 n
+0000724106 00000 n
+0000724411 00000 n
+0000724716 00000 n
+0000725021 00000 n
+0000725326 00000 n
+0000725631 00000 n
+0000725936 00000 n
+0000726241 00000 n
+0000726546 00000 n
+0000726850 00000 n
+0000727155 00000 n
+0000727460 00000 n
+0000727765 00000 n
+0000728070 00000 n
+0000728375 00000 n
+0000728676 00000 n
+0000728981 00000 n
+0000729286 00000 n
+0000729591 00000 n
+0000729896 00000 n
+0000730200 00000 n
+0000730504 00000 n
+0000730808 00000 n
+0000731086 00000 n
+0000731394 00000 n
+0000731702 00000 n
+0000732025 00000 n
+0000732348 00000 n
+0000732671 00000 n
+0000732994 00000 n
+0000733294 00000 n
+0000733595 00000 n
+0000733896 00000 n
+0000734197 00000 n
+0000734498 00000 n
+0000734798 00000 n
+0000735098 00000 n
+0000735398 00000 n
+0000735698 00000 n
+0000735998 00000 n
+0000736298 00000 n
+0000736598 00000 n
+0000736898 00000 n
+0000737243 00000 n
+0000737555 00000 n
+0000737890 00000 n
+0000738222 00000 n
+0000738527 00000 n
+0000738832 00000 n
+0000739137 00000 n
+0000739442 00000 n
+0000739750 00000 n
+0000740051 00000 n
+0000740352 00000 n
+0000740653 00000 n
+0000740954 00000 n
+0000741255 00000 n
+0000741556 00000 n
+0000741886 00000 n
+0000742180 00000 n
+0000742525 00000 n
+0000742832 00000 n
+0000743145 00000 n
+0000743469 00000 n
+0000743772 00000 n
+0000744075 00000 n
+0000744378 00000 n
+0000744681 00000 n
+0000744984 00000 n
+0000745287 00000 n
+0000745590 00000 n
+0000745892 00000 n
+0000746216 00000 n
+0000746518 00000 n
+0000746842 00000 n
+0000747144 00000 n
+0000747446 00000 n
+0000747748 00000 n
+0000748050 00000 n
+0000748343 00000 n
+0000748637 00000 n
+0000748931 00000 n
+0000749224 00000 n
+0000749517 00000 n
+0000749811 00000 n
+0000750105 00000 n
+0000750399 00000 n
+0000750714 00000 n
+0000751019 00000 n
+0000751324 00000 n
+0000751629 00000 n
+0000751934 00000 n
+0000752239 00000 n
+0000752544 00000 n
+0000752849 00000 n
+0000753154 00000 n
+0000753469 00000 n
+0000753774 00000 n
+0000754079 00000 n
+0000754384 00000 n
+0000754689 00000 n
+0000754994 00000 n
+0000755299 00000 n
+0000755604 00000 n
+0000755909 00000 n
+0000756214 00000 n
+0000756519 00000 n
+0000756819 00000 n
+0000757124 00000 n
+0000757429 00000 n
+0000757734 00000 n
+0000758039 00000 n
+0000758344 00000 n
+0000758649 00000 n
+0000758954 00000 n
+0000759255 00000 n
+0000759559 00000 n
+0000759864 00000 n
+0000760169 00000 n
+0000760474 00000 n
+0000760779 00000 n
+0000761084 00000 n
+0000761389 00000 n
+0000761694 00000 n
+0000761999 00000 n
+0000762304 00000 n
+0000762609 00000 n
+0000762913 00000 n
+0000763218 00000 n
+0000763523 00000 n
+0000763828 00000 n
+0000764133 00000 n
+0000764438 00000 n
+0000764743 00000 n
+0000765048 00000 n
+0000765353 00000 n
+0000765658 00000 n
+0000765962 00000 n
+0000766267 00000 n
+0000766572 00000 n
+0000766877 00000 n
+0000767182 00000 n
+0000767487 00000 n
+0000767788 00000 n
+0000768093 00000 n
+0000768398 00000 n
+0000768703 00000 n
+0000769008 00000 n
+0000769312 00000 n
+0000769616 00000 n
+0000769920 00000 n
+0000770198 00000 n
+0000770506 00000 n
+0000770814 00000 n
+0000771114 00000 n
+0000771415 00000 n
+0000771716 00000 n
+0000772017 00000 n
+0000772318 00000 n
+0000772618 00000 n
+0000772918 00000 n
+0000773218 00000 n
+0000773518 00000 n
+0000773818 00000 n
+0000774118 00000 n
+0000774418 00000 n
+0000774718 00000 n
+0000775063 00000 n
+0000775375 00000 n
+0000775710 00000 n
+0000776042 00000 n
+0000776347 00000 n
+0000776652 00000 n
+0000776957 00000 n
+0000777262 00000 n
+0000777570 00000 n
+0000777871 00000 n
+0000778172 00000 n
+0000778473 00000 n
+0000778774 00000 n
+0000779075 00000 n
+0000779376 00000 n
+0000779706 00000 n
+0000780000 00000 n
+0000780345 00000 n
+0000780652 00000 n
+0000780965 00000 n
+0000781289 00000 n
+0000781592 00000 n
+0000781895 00000 n
+0000782198 00000 n
+0000782501 00000 n
+0000782804 00000 n
+0000783107 00000 n
+0000783410 00000 n
+0000783712 00000 n
+0000784036 00000 n
+0000784338 00000 n
+0000784662 00000 n
+0000784964 00000 n
+0000785266 00000 n
+0000785568 00000 n
+0000785870 00000 n
+0000786163 00000 n
+0000786457 00000 n
+0000786751 00000 n
+0000787044 00000 n
+0000787337 00000 n
+0000787631 00000 n
+0000787925 00000 n
+0000788219 00000 n
+0000788534 00000 n
+0000788839 00000 n
+0000789144 00000 n
+0000789449 00000 n
+0000789754 00000 n
+0000790059 00000 n
+0000790364 00000 n
+0000790669 00000 n
+0000790974 00000 n
+0000791289 00000 n
+0000791594 00000 n
+0000791899 00000 n
+0000792204 00000 n
+0000792509 00000 n
+0000792814 00000 n
+0000793119 00000 n
+0000793424 00000 n
+0000793729 00000 n
+0000794034 00000 n
+0000794339 00000 n
+0000794639 00000 n
+0000794944 00000 n
+0000795249 00000 n
+0000795554 00000 n
+0000795859 00000 n
+0000796164 00000 n
+0000796469 00000 n
+0000796774 00000 n
+0000797075 00000 n
+0000797379 00000 n
+0000797684 00000 n
+0000797989 00000 n
+0000798294 00000 n
+0000798599 00000 n
+0000798904 00000 n
+0000799209 00000 n
+0000799514 00000 n
+0000799819 00000 n
+0000800124 00000 n
+0000800429 00000 n
+0000800733 00000 n
+0000801038 00000 n
+0000801343 00000 n
+0000801648 00000 n
+0000801953 00000 n
+0000802258 00000 n
+0000802563 00000 n
+0000802868 00000 n
+0000803173 00000 n
+0000803478 00000 n
+0000803782 00000 n
+0000804087 00000 n
+0000804392 00000 n
+0000804697 00000 n
+0000805002 00000 n
+0000805307 00000 n
+0000805608 00000 n
+0000805913 00000 n
+0000806218 00000 n
+0000806523 00000 n
+0000806828 00000 n
+0000807132 00000 n
+0000807436 00000 n
+0000807740 00000 n
+0000808018 00000 n
+0000808326 00000 n
+0000808634 00000 n
+0000808934 00000 n
+0000809235 00000 n
+0000809536 00000 n
+0000809837 00000 n
+0000810138 00000 n
+0000810438 00000 n
+0000810738 00000 n
+0000811038 00000 n
+0000811338 00000 n
+0000811638 00000 n
+0000811938 00000 n
+0000812238 00000 n
+0000812538 00000 n
+0000812883 00000 n
+0000813195 00000 n
+0000813530 00000 n
+0000813862 00000 n
+0000814167 00000 n
+0000814472 00000 n
+0000814777 00000 n
+0000815082 00000 n
+0000815390 00000 n
+0000815691 00000 n
+0000815992 00000 n
+0000816293 00000 n
+0000816594 00000 n
+0000816895 00000 n
+0000817196 00000 n
+0000817526 00000 n
+0000817820 00000 n
+0000818165 00000 n
+0000818472 00000 n
+0000818785 00000 n
+0000819089 00000 n
+0000819413 00000 n
+0000819716 00000 n
+0000820019 00000 n
+0000820322 00000 n
+0000820625 00000 n
+0000820928 00000 n
+0000821231 00000 n
+0000821534 00000 n
+0000821836 00000 n
+0000822160 00000 n
+0000822462 00000 n
+0000822786 00000 n
+0000823088 00000 n
+0000823390 00000 n
+0000823692 00000 n
+0000823994 00000 n
+0000824287 00000 n
+0000824581 00000 n
+0000824875 00000 n
+0000825168 00000 n
+0000825461 00000 n
+0000825755 00000 n
+0000826049 00000 n
+0000826343 00000 n
+0000826658 00000 n
+0000826963 00000 n
+0000827268 00000 n
+0000827573 00000 n
+0000827878 00000 n
+0000828183 00000 n
+0000828488 00000 n
+0000828793 00000 n
+0000829098 00000 n
+0000829413 00000 n
+0000829718 00000 n
+0000830023 00000 n
+0000830328 00000 n
+0000830633 00000 n
+0000830938 00000 n
+0000831243 00000 n
+0000831548 00000 n
+0000831853 00000 n
+0000832158 00000 n
+0000832463 00000 n
+0000832763 00000 n
+0000833068 00000 n
+0000833373 00000 n
+0000833678 00000 n
+0000833983 00000 n
+0000834288 00000 n
+0000834593 00000 n
+0000834898 00000 n
+0000835199 00000 n
+0000835503 00000 n
+0000835808 00000 n
+0000836113 00000 n
+0000836418 00000 n
+0000836723 00000 n
+0000837028 00000 n
+0000837333 00000 n
+0000837638 00000 n
+0000837943 00000 n
+0000838248 00000 n
+0000838553 00000 n
+0000838857 00000 n
+0000839162 00000 n
+0000839467 00000 n
+0000839772 00000 n
+0000840077 00000 n
+0000840382 00000 n
+0000840687 00000 n
+0000840992 00000 n
+0000841297 00000 n
+0000841602 00000 n
+0000841906 00000 n
+0000842211 00000 n
+0000842516 00000 n
+0000842821 00000 n
+0000843126 00000 n
+0000843431 00000 n
+0000843732 00000 n
+0000844037 00000 n
+0000844342 00000 n
+0000844647 00000 n
+0000844952 00000 n
+0000845256 00000 n
+0000845560 00000 n
+0000845864 00000 n
+0000846142 00000 n
+0000846450 00000 n
+0000846758 00000 n
+0000847081 00000 n
+0000847404 00000 n
+0000847727 00000 n
+0000848050 00000 n
+0000848350 00000 n
+0000848651 00000 n
+0000848952 00000 n
+0000849253 00000 n
+0000849554 00000 n
+0000849854 00000 n
+0000850154 00000 n
+0000850454 00000 n
+0000850754 00000 n
+0000851054 00000 n
+0000851354 00000 n
+0000851654 00000 n
+0000851954 00000 n
+0000852299 00000 n
+0000852611 00000 n
+0000852946 00000 n
+0000853278 00000 n
+0000853583 00000 n
+0000853888 00000 n
+0000854193 00000 n
+0000854498 00000 n
+0000854806 00000 n
+0000855107 00000 n
+0000855408 00000 n
+0000855709 00000 n
+0000856010 00000 n
+0000856311 00000 n
+0000856612 00000 n
+0000856942 00000 n
+0000857236 00000 n
+0000857581 00000 n
+0000857888 00000 n
+0000858201 00000 n
+0000858525 00000 n
+0000858828 00000 n
+0000859131 00000 n
+0000859434 00000 n
+0000859737 00000 n
+0000860040 00000 n
+0000860343 00000 n
+0000860646 00000 n
+0000860948 00000 n
+0000861272 00000 n
+0000861574 00000 n
+0000861898 00000 n
+0000862200 00000 n
+0000862502 00000 n
+0000862804 00000 n
+0000863106 00000 n
+0000863399 00000 n
+0000863693 00000 n
+0000863987 00000 n
+0000864280 00000 n
+0000864573 00000 n
+0000864867 00000 n
+0000865161 00000 n
+0000865455 00000 n
+0000865770 00000 n
+0000866075 00000 n
+0000866380 00000 n
+0000866685 00000 n
+0000866990 00000 n
+0000867295 00000 n
+0000867600 00000 n
+0000867905 00000 n
+0000868210 00000 n
+0000868525 00000 n
+0000868830 00000 n
+0000869135 00000 n
+0000869440 00000 n
+0000869745 00000 n
+0000870050 00000 n
+0000870355 00000 n
+0000870660 00000 n
+0000870965 00000 n
+0000871270 00000 n
+0000871575 00000 n
+0000871875 00000 n
+0000872180 00000 n
+0000872485 00000 n
+0000872790 00000 n
+0000873095 00000 n
+0000873400 00000 n
+0000873705 00000 n
+0000874010 00000 n
+0000874311 00000 n
+0000874615 00000 n
+0000874920 00000 n
+0000875225 00000 n
+0000875530 00000 n
+0000875835 00000 n
+0000876140 00000 n
+0000876445 00000 n
+0000876750 00000 n
+0000877055 00000 n
+0000877360 00000 n
+0000877665 00000 n
+0000877969 00000 n
+0000878274 00000 n
+0000878579 00000 n
+0000878884 00000 n
+0000879189 00000 n
+0000879494 00000 n
+0000879799 00000 n
+0000880104 00000 n
+0000880409 00000 n
+0000880714 00000 n
+0000881018 00000 n
+0000881323 00000 n
+0000881628 00000 n
+0000881933 00000 n
+0000882238 00000 n
+0000882543 00000 n
+0000882844 00000 n
+0000883149 00000 n
+0000883454 00000 n
+0000883759 00000 n
+0000884064 00000 n
+0000884368 00000 n
+0000884672 00000 n
+0000884976 00000 n
+0000885254 00000 n
+0000885562 00000 n
+0000885870 00000 n
+0000886193 00000 n
+0000886516 00000 n
+0000886839 00000 n
+0000887162 00000 n
+0000887462 00000 n
+0000887763 00000 n
+0000888064 00000 n
+0000888365 00000 n
+0000888666 00000 n
+0000888966 00000 n
+0000889266 00000 n
+0000889566 00000 n
+0000889866 00000 n
+0000890166 00000 n
+0000890466 00000 n
+0000890766 00000 n
+0000891066 00000 n
+0000891411 00000 n
+0000891723 00000 n
+0000892058 00000 n
+0000892390 00000 n
+0000892695 00000 n
+0000893000 00000 n
+0000893305 00000 n
+0000893610 00000 n
+0000893918 00000 n
+0000894219 00000 n
+0000894520 00000 n
+0000894821 00000 n
+0000895122 00000 n
+0000895423 00000 n
+0000895724 00000 n
+0000896054 00000 n
+0000896348 00000 n
+0000896693 00000 n
+0000897000 00000 n
+0000897313 00000 n
+0000897637 00000 n
+0000897940 00000 n
+0000898243 00000 n
+0000898546 00000 n
+0000898849 00000 n
+0000899152 00000 n
+0000899455 00000 n
+0000899758 00000 n
+0000900060 00000 n
+0000900384 00000 n
+0000900686 00000 n
+0000901010 00000 n
+0000901312 00000 n
+0000901614 00000 n
+0000901916 00000 n
+0000902218 00000 n
+0000902511 00000 n
+0000902805 00000 n
+0000903099 00000 n
+0000903392 00000 n
+0000903685 00000 n
+0000903979 00000 n
+0000904273 00000 n
+0000904567 00000 n
+0000904882 00000 n
+0000905187 00000 n
+0000905492 00000 n
+0000905797 00000 n
+0000906102 00000 n
+0000906407 00000 n
+0000906712 00000 n
+0000907017 00000 n
+0000907322 00000 n
+0000907637 00000 n
+0000907942 00000 n
+0000908247 00000 n
+0000908552 00000 n
+0000908857 00000 n
+0000909162 00000 n
+0000909467 00000 n
+0000909772 00000 n
+0000910077 00000 n
+0000910382 00000 n
+0000910687 00000 n
+0000910987 00000 n
+0000911292 00000 n
+0000911597 00000 n
+0000911902 00000 n
+0000912207 00000 n
+0000912512 00000 n
+0000912817 00000 n
+0000913122 00000 n
+0000913423 00000 n
+0000913727 00000 n
+0000914032 00000 n
+0000914337 00000 n
+0000914642 00000 n
+0000914947 00000 n
+0000915252 00000 n
+0000915557 00000 n
+0000915862 00000 n
+0000916167 00000 n
+0000916472 00000 n
+0000916777 00000 n
+0000917081 00000 n
+0000917386 00000 n
+0000917691 00000 n
+0000917996 00000 n
+0000918301 00000 n
+0000918606 00000 n
+0000918911 00000 n
+0000919216 00000 n
+0000919521 00000 n
+0000919826 00000 n
+0000920130 00000 n
+0000920435 00000 n
+0000920740 00000 n
+0000921045 00000 n
+0000921350 00000 n
+0000921655 00000 n
+0000921956 00000 n
+0000922261 00000 n
+0000922566 00000 n
+0000922871 00000 n
+0000923176 00000 n
+0000923480 00000 n
+0000923784 00000 n
+0000924088 00000 n
+0000924366 00000 n
+0000924674 00000 n
+0000924982 00000 n
+0000925305 00000 n
+0000925628 00000 n
+0000925951 00000 n
+0000926274 00000 n
+0000926574 00000 n
+0000926875 00000 n
+0000927176 00000 n
+0000927477 00000 n
+0000927778 00000 n
+0000928078 00000 n
+0000928378 00000 n
+0000928678 00000 n
+0000928978 00000 n
+0000929278 00000 n
+0000929578 00000 n
+0000929878 00000 n
+0000930178 00000 n
+0000930523 00000 n
+0000930835 00000 n
+0000931170 00000 n
+0000931502 00000 n
+0000931807 00000 n
+0000932112 00000 n
+0000932417 00000 n
+0000932722 00000 n
+0000933030 00000 n
+0000933331 00000 n
+0000933632 00000 n
+0000933933 00000 n
+0000934234 00000 n
+0000934535 00000 n
+0000934836 00000 n
+0000935166 00000 n
+0000935460 00000 n
+0000935805 00000 n
+0000936112 00000 n
+0000936425 00000 n
+0000936749 00000 n
+0000937052 00000 n
+0000937355 00000 n
+0000937658 00000 n
+0000937961 00000 n
+0000938264 00000 n
+0000938567 00000 n
+0000938870 00000 n
+0000939172 00000 n
+0000939496 00000 n
+0000939798 00000 n
+0000940122 00000 n
+0000940424 00000 n
+0000940726 00000 n
+0000941028 00000 n
+0000941330 00000 n
+0000941623 00000 n
+0000941917 00000 n
+0000942211 00000 n
+0000942504 00000 n
+0000942797 00000 n
+0000943091 00000 n
+0000943385 00000 n
+0000943679 00000 n
+0000943994 00000 n
+0000944299 00000 n
+0000944604 00000 n
+0000944909 00000 n
+0000945214 00000 n
+0000945519 00000 n
+0000945824 00000 n
+0000946129 00000 n
+0000946434 00000 n
+0000946749 00000 n
+0000947054 00000 n
+0000947359 00000 n
+0000947664 00000 n
+0000947969 00000 n
+0000948274 00000 n
+0000948579 00000 n
+0000948884 00000 n
+0000949189 00000 n
+0000949494 00000 n
+0000949799 00000 n
+0000950099 00000 n
+0000950404 00000 n
+0000950709 00000 n
+0000951014 00000 n
+0000951319 00000 n
+0000951624 00000 n
+0000951929 00000 n
+0000952234 00000 n
+0000952535 00000 n
+0000952839 00000 n
+0000953144 00000 n
+0000953449 00000 n
+0000953754 00000 n
+0000954059 00000 n
+0000954364 00000 n
+0000954669 00000 n
+0000954974 00000 n
+0000955279 00000 n
+0000955584 00000 n
+0000955889 00000 n
+0000956193 00000 n
+0000956498 00000 n
+0000956803 00000 n
+0000957108 00000 n
+0000957413 00000 n
+0000957718 00000 n
+0000958023 00000 n
+0000958328 00000 n
+0000958633 00000 n
+0000958938 00000 n
+0000959242 00000 n
+0000959547 00000 n
+0000959852 00000 n
+0000960157 00000 n
+0000960462 00000 n
+0000960767 00000 n
+0000961068 00000 n
+0000961373 00000 n
+0000961678 00000 n
+0000961983 00000 n
+0000962288 00000 n
+0000962592 00000 n
+0000962896 00000 n
+0000963200 00000 n
+0000963478 00000 n
+0000963786 00000 n
+0000964094 00000 n
+0000964417 00000 n
+0000964740 00000 n
+0000965063 00000 n
+0000965386 00000 n
+0000965686 00000 n
+0000965987 00000 n
+0000966288 00000 n
+0000966589 00000 n
+0000966890 00000 n
+0000967190 00000 n
+0000967490 00000 n
+0000967790 00000 n
+0000968090 00000 n
+0000968390 00000 n
+0000968690 00000 n
+0000968990 00000 n
+0000969290 00000 n
+0000969635 00000 n
+0000969947 00000 n
+0000970282 00000 n
+0000970614 00000 n
+0000970919 00000 n
+0000971224 00000 n
+0000971529 00000 n
+0000971834 00000 n
+0000972142 00000 n
+0000972443 00000 n
+0000972744 00000 n
+0000973045 00000 n
+0000973346 00000 n
+0000973647 00000 n
+0000973948 00000 n
+0000974278 00000 n
+0000974572 00000 n
+0000974917 00000 n
+0000975224 00000 n
+0000975537 00000 n
+0000975861 00000 n
+0000976164 00000 n
+0000976467 00000 n
+0000976770 00000 n
+0000977073 00000 n
+0000977376 00000 n
+0000977679 00000 n
+0000977982 00000 n
+0000978284 00000 n
+0000978608 00000 n
+0000978910 00000 n
+0000979234 00000 n
+0000979536 00000 n
+0000979838 00000 n
+0000980140 00000 n
+0000980442 00000 n
+0000980735 00000 n
+0000981029 00000 n
+0000981323 00000 n
+0000981616 00000 n
+0000981909 00000 n
+0000982203 00000 n
+0000982497 00000 n
+0000982791 00000 n
+0000983106 00000 n
+0000983411 00000 n
+0000983716 00000 n
+0000984021 00000 n
+0000984326 00000 n
+0000984631 00000 n
+0000984936 00000 n
+0000985241 00000 n
+0000985546 00000 n
+0000985861 00000 n
+0000986166 00000 n
+0000986471 00000 n
+0000986776 00000 n
+0000987081 00000 n
+0000987386 00000 n
+0000987691 00000 n
+0000987996 00000 n
+0000988301 00000 n
+0000988606 00000 n
+0000988911 00000 n
+0000989211 00000 n
+0000989516 00000 n
+0000989821 00000 n
+0000990126 00000 n
+0000990431 00000 n
+0000990736 00000 n
+0000991041 00000 n
+0000991346 00000 n
+0000991647 00000 n
+0000991951 00000 n
+0000992256 00000 n
+0000992561 00000 n
+0000992866 00000 n
+0000993171 00000 n
+0000993476 00000 n
+0000993781 00000 n
+0000994086 00000 n
+0000994391 00000 n
+0000994696 00000 n
+0000995001 00000 n
+0000995305 00000 n
+0000995610 00000 n
+0000995915 00000 n
+0000996220 00000 n
+0000996525 00000 n
+0000996830 00000 n
+0000997135 00000 n
+0000997440 00000 n
+0000997745 00000 n
+0000998050 00000 n
+0000998354 00000 n
+0000998659 00000 n
+0000998964 00000 n
+0000999269 00000 n
+0000999574 00000 n
+0000999879 00000 n
+0001000180 00000 n
+0001000485 00000 n
+0001000790 00000 n
+0001001095 00000 n
+0001001400 00000 n
+0001001704 00000 n
+0001002008 00000 n
+0001002312 00000 n
+0001002590 00000 n
+0001002898 00000 n
+0001003206 00000 n
+0001003529 00000 n
+0001003852 00000 n
+0001004175 00000 n
+0001004498 00000 n
+0001004798 00000 n
+0001005099 00000 n
+0001005400 00000 n
+0001005701 00000 n
+0001006002 00000 n
+0001006302 00000 n
+0001006602 00000 n
+0001006902 00000 n
+0001007202 00000 n
+0001007502 00000 n
+0001007802 00000 n
+0001008102 00000 n
+0001008402 00000 n
+0001008747 00000 n
+0001009059 00000 n
+0001009394 00000 n
+0001009726 00000 n
+0001010031 00000 n
+0001010336 00000 n
+0001010641 00000 n
+0001010946 00000 n
+0001011254 00000 n
+0001011555 00000 n
+0001011856 00000 n
+0001012157 00000 n
+0001012458 00000 n
+0001012759 00000 n
+0001013060 00000 n
+0001013390 00000 n
+0001013684 00000 n
+0001014029 00000 n
+0001014336 00000 n
+0001014649 00000 n
+0001014973 00000 n
+0001015276 00000 n
+0001015579 00000 n
+0001015882 00000 n
+0001016185 00000 n
+0001016488 00000 n
+0001016791 00000 n
+0001017094 00000 n
+0001017396 00000 n
+0001017720 00000 n
+0001018022 00000 n
+0001018346 00000 n
+0001018648 00000 n
+0001018950 00000 n
+0001019252 00000 n
+0001019554 00000 n
+0001019847 00000 n
+0001020141 00000 n
+0001020435 00000 n
+0001020728 00000 n
+0001021021 00000 n
+0001021315 00000 n
+0001021609 00000 n
+0001021903 00000 n
+0001022218 00000 n
+0001022523 00000 n
+0001022828 00000 n
+0001023133 00000 n
+0001023438 00000 n
+0001023743 00000 n
+0001024048 00000 n
+0001024353 00000 n
+0001024658 00000 n
+0001024973 00000 n
+0001025278 00000 n
+0001025583 00000 n
+0001025888 00000 n
+0001026193 00000 n
+0001026498 00000 n
+0001026803 00000 n
+0001027108 00000 n
+0001027413 00000 n
+0001027718 00000 n
+0001028023 00000 n
+0001028323 00000 n
+0001028628 00000 n
+0001028933 00000 n
+0001029238 00000 n
+0001029543 00000 n
+0001029848 00000 n
+0001030153 00000 n
+0001030458 00000 n
+0001030759 00000 n
+0001031063 00000 n
+0001031368 00000 n
+0001031673 00000 n
+0001031978 00000 n
+0001032283 00000 n
+0001032588 00000 n
+0001032893 00000 n
+0001033198 00000 n
+0001033503 00000 n
+0001033808 00000 n
+0001034113 00000 n
+0001034417 00000 n
+0001034722 00000 n
+0001035027 00000 n
+0001035332 00000 n
+0001035637 00000 n
+0001035942 00000 n
+0001036247 00000 n
+0001036552 00000 n
+0001036857 00000 n
+0001037162 00000 n
+0001037466 00000 n
+0001037771 00000 n
+0001038076 00000 n
+0001038381 00000 n
+0001038686 00000 n
+0001038991 00000 n
+0001039292 00000 n
+0001039597 00000 n
+0001039902 00000 n
+0001040207 00000 n
+0001040512 00000 n
+0001040816 00000 n
+0001041120 00000 n
+0001041424 00000 n
+0001041702 00000 n
+0001042010 00000 n
+0001042318 00000 n
+0001042641 00000 n
+0001042964 00000 n
+0001043287 00000 n
+0001043610 00000 n
+0001043910 00000 n
+0001044211 00000 n
+0001044512 00000 n
+0001044813 00000 n
+0001045114 00000 n
+0001045414 00000 n
+0001045714 00000 n
+0001046014 00000 n
+0001046314 00000 n
+0001046614 00000 n
+0001046914 00000 n
+0001047214 00000 n
+0001047514 00000 n
+0001047859 00000 n
+0001048171 00000 n
+0001048506 00000 n
+0001048838 00000 n
+0001049143 00000 n
+0001049448 00000 n
+0001049753 00000 n
+0001050058 00000 n
+0001050366 00000 n
+0001050667 00000 n
+0001050968 00000 n
+0001051269 00000 n
+0001051570 00000 n
+0001051871 00000 n
+0001052172 00000 n
+0001052502 00000 n
+0001052796 00000 n
+0001053141 00000 n
+0001053448 00000 n
+0001053761 00000 n
+0001054085 00000 n
+0001054388 00000 n
+0001054691 00000 n
+0001054994 00000 n
+0001055297 00000 n
+0001055600 00000 n
+0001055903 00000 n
+0001056206 00000 n
+0001056508 00000 n
+0001056832 00000 n
+0001057134 00000 n
+0001057458 00000 n
+0001057760 00000 n
+0001058062 00000 n
+0001058364 00000 n
+0001058666 00000 n
+0001058959 00000 n
+0001059253 00000 n
+0001059547 00000 n
+0001059840 00000 n
+0001060133 00000 n
+0001060427 00000 n
+0001060721 00000 n
+0001061015 00000 n
+0001061330 00000 n
+0001061635 00000 n
+0001061940 00000 n
+0001062245 00000 n
+0001062550 00000 n
+0001062855 00000 n
+0001063160 00000 n
+0001063465 00000 n
+0001063770 00000 n
+0001064085 00000 n
+0001064390 00000 n
+0001064695 00000 n
+0001065000 00000 n
+0001065305 00000 n
+0001065610 00000 n
+0001065915 00000 n
+0001066220 00000 n
+0001066525 00000 n
+0001066830 00000 n
+0001067135 00000 n
+0001067435 00000 n
+0001067740 00000 n
+0001068045 00000 n
+0001068350 00000 n
+0001068655 00000 n
+0001068960 00000 n
+0001069265 00000 n
+0001069570 00000 n
+0001069871 00000 n
+0001070175 00000 n
+0001070480 00000 n
+0001070785 00000 n
+0001071090 00000 n
+0001071395 00000 n
+0001071700 00000 n
+0001072005 00000 n
+0001072310 00000 n
+0001072615 00000 n
+0001072920 00000 n
+0001073225 00000 n
+0001073529 00000 n
+0001073834 00000 n
+0001074139 00000 n
+0001074444 00000 n
+0001074749 00000 n
+0001075054 00000 n
+0001075359 00000 n
+0001075664 00000 n
+0001075969 00000 n
+0001076274 00000 n
+0001076578 00000 n
+0001076883 00000 n
+0001077188 00000 n
+0001077493 00000 n
+0001077798 00000 n
+0001078103 00000 n
+0001078404 00000 n
+0001078709 00000 n
+0001079014 00000 n
+0001079319 00000 n
+0001079624 00000 n
+0001079928 00000 n
+0001080232 00000 n
+0001080536 00000 n
+0001080814 00000 n
+0001081122 00000 n
+0001081430 00000 n
+0001081753 00000 n
+0001082076 00000 n
+0001082399 00000 n
+0001082722 00000 n
+0001083022 00000 n
+0001083323 00000 n
+0001083624 00000 n
+0001083925 00000 n
+0001084226 00000 n
+0001084526 00000 n
+0001084826 00000 n
+0001085126 00000 n
+0001085426 00000 n
+0001085726 00000 n
+0001086026 00000 n
+0001086326 00000 n
+0001086626 00000 n
+0001086971 00000 n
+0001087283 00000 n
+0001087618 00000 n
+0001087950 00000 n
+0001088255 00000 n
+0001088560 00000 n
+0001088865 00000 n
+0001089170 00000 n
+0001089478 00000 n
+0001089779 00000 n
+0001090080 00000 n
+0001090381 00000 n
+0001090682 00000 n
+0001090983 00000 n
+0001091284 00000 n
+0001091614 00000 n
+0001091908 00000 n
+0001092253 00000 n
+0001092560 00000 n
+0001092873 00000 n
+0001093197 00000 n
+0001093500 00000 n
+0001093803 00000 n
+0001094106 00000 n
+0001094409 00000 n
+0001094712 00000 n
+0001095015 00000 n
+0001095318 00000 n
+0001095620 00000 n
+0001095944 00000 n
+0001096246 00000 n
+0001096570 00000 n
+0001096872 00000 n
+0001097174 00000 n
+0001097476 00000 n
+0001097778 00000 n
+0001098071 00000 n
+0001098365 00000 n
+0001098659 00000 n
+0001098952 00000 n
+0001099245 00000 n
+0001099539 00000 n
+0001099833 00000 n
+0001100127 00000 n
+0001100442 00000 n
+0001100747 00000 n
+0001101052 00000 n
+0001101357 00000 n
+0001101662 00000 n
+0001101967 00000 n
+0001102272 00000 n
+0001102577 00000 n
+0001102882 00000 n
+0001103197 00000 n
+0001103502 00000 n
+0001103807 00000 n
+0001104112 00000 n
+0001104417 00000 n
+0001104722 00000 n
+0001105027 00000 n
+0001105332 00000 n
+0001105637 00000 n
+0001105942 00000 n
+0001106247 00000 n
+0001106547 00000 n
+0001106852 00000 n
+0001107157 00000 n
+0001107462 00000 n
+0001107767 00000 n
+0001108072 00000 n
+0001108377 00000 n
+0001108682 00000 n
+0001108983 00000 n
+0001109287 00000 n
+0001109592 00000 n
+0001109897 00000 n
+0001110202 00000 n
+0001110507 00000 n
+0001110812 00000 n
+0001111117 00000 n
+0001111422 00000 n
+0001111727 00000 n
+0001112032 00000 n
+0001112337 00000 n
+0001112641 00000 n
+0001112946 00000 n
+0001113251 00000 n
+0001113556 00000 n
+0001113861 00000 n
+0001114166 00000 n
+0001114471 00000 n
+0001114776 00000 n
+0001115081 00000 n
+0001115386 00000 n
+0001115690 00000 n
+0001115995 00000 n
+0001116300 00000 n
+0001116605 00000 n
+0001116910 00000 n
+0001117215 00000 n
+0001117516 00000 n
+0001117821 00000 n
+0001118126 00000 n
+0001118431 00000 n
+0001118736 00000 n
+0001119040 00000 n
+0001119344 00000 n
+0001119648 00000 n
+0001119926 00000 n
+0001120234 00000 n
+0001120542 00000 n
+0001120865 00000 n
+0001121188 00000 n
+0001121511 00000 n
+0001121834 00000 n
+0001122134 00000 n
+0001122435 00000 n
+0001122736 00000 n
+0001123037 00000 n
+0001123338 00000 n
+0001123638 00000 n
+0001123938 00000 n
+0001124238 00000 n
+0001124538 00000 n
+0001124838 00000 n
+0001125138 00000 n
+0001125438 00000 n
+0001125738 00000 n
+0001126083 00000 n
+0001126395 00000 n
+0001126730 00000 n
+0001127062 00000 n
+0001127367 00000 n
+0001127672 00000 n
+0001127977 00000 n
+0001128282 00000 n
+0001128590 00000 n
+0001128891 00000 n
+0001129192 00000 n
+0001129493 00000 n
+0001129794 00000 n
+0001130095 00000 n
+0001130396 00000 n
+0001130726 00000 n
+0001131020 00000 n
+0001131365 00000 n
+0001131672 00000 n
+0001131985 00000 n
+0001132309 00000 n
+0001132612 00000 n
+0001132915 00000 n
+0001133218 00000 n
+0001133521 00000 n
+0001133824 00000 n
+0001134127 00000 n
+0001134430 00000 n
+0001134732 00000 n
+0001135056 00000 n
+0001135358 00000 n
+0001135682 00000 n
+0001135984 00000 n
+0001136286 00000 n
+0001136588 00000 n
+0001136890 00000 n
+0001137183 00000 n
+0001137477 00000 n
+0001137771 00000 n
+0001138064 00000 n
+0001138357 00000 n
+0001138651 00000 n
+0001138945 00000 n
+0001139239 00000 n
+0001139554 00000 n
+0001139859 00000 n
+0001140164 00000 n
+0001140469 00000 n
+0001140774 00000 n
+0001141079 00000 n
+0001141384 00000 n
+0001141689 00000 n
+0001141994 00000 n
+0001142309 00000 n
+0001142614 00000 n
+0001142919 00000 n
+0001143224 00000 n
+0001143529 00000 n
+0001143834 00000 n
+0001144139 00000 n
+0001144444 00000 n
+0001144749 00000 n
+0001145054 00000 n
+0001145359 00000 n
+0001145659 00000 n
+0001145964 00000 n
+0001146269 00000 n
+0001146574 00000 n
+0001146879 00000 n
+0001147184 00000 n
+0001147489 00000 n
+0001147794 00000 n
+0001148095 00000 n
+0001148399 00000 n
+0001148704 00000 n
+0001149009 00000 n
+0001149314 00000 n
+0001149619 00000 n
+0001149924 00000 n
+0001150229 00000 n
+0001150534 00000 n
+0001150839 00000 n
+0001151144 00000 n
+0001151449 00000 n
+0001151753 00000 n
+0001152058 00000 n
+0001152363 00000 n
+0001152668 00000 n
+0001152973 00000 n
+0001153278 00000 n
+0001153583 00000 n
+0001153888 00000 n
+0001154193 00000 n
+0001154498 00000 n
+0001154802 00000 n
+0001155107 00000 n
+0001155412 00000 n
+0001155717 00000 n
+0001156022 00000 n
+0001156327 00000 n
+0001156628 00000 n
+0001156933 00000 n
+0001157238 00000 n
+0001157543 00000 n
+0001157848 00000 n
+0001158152 00000 n
+0001158456 00000 n
+0001158760 00000 n
+0001159038 00000 n
+0001159346 00000 n
+0001159654 00000 n
+0001159977 00000 n
+0001160300 00000 n
+0001160623 00000 n
+0001160946 00000 n
+0001161246 00000 n
+0001161547 00000 n
+0001161848 00000 n
+0001162149 00000 n
+0001162450 00000 n
+0001162750 00000 n
+0001163050 00000 n
+0001163350 00000 n
+0001163650 00000 n
+0001163950 00000 n
+0001164250 00000 n
+0001164550 00000 n
+0001164850 00000 n
+0001165195 00000 n
+0001165507 00000 n
+0001165842 00000 n
+0001166174 00000 n
+0001166479 00000 n
+0001166784 00000 n
+0001167089 00000 n
+0001167394 00000 n
+0001167702 00000 n
+0001168003 00000 n
+0001168304 00000 n
+0001168605 00000 n
+0001168906 00000 n
+0001169207 00000 n
+0001169508 00000 n
+0001169838 00000 n
+0001170132 00000 n
+0001170477 00000 n
+0001170784 00000 n
+0001171097 00000 n
+0001171421 00000 n
+0001171724 00000 n
+0001172027 00000 n
+0001172330 00000 n
+0001172633 00000 n
+0001172936 00000 n
+0001173239 00000 n
+0001173542 00000 n
+0001173844 00000 n
+0001174168 00000 n
+0001174470 00000 n
+0001174794 00000 n
+0001175096 00000 n
+0001175398 00000 n
+0001175700 00000 n
+0001176002 00000 n
+0001176295 00000 n
+0001176589 00000 n
+0001176883 00000 n
+0001177176 00000 n
+0001177469 00000 n
+0001177763 00000 n
+0001178057 00000 n
+0001178351 00000 n
+0001178666 00000 n
+0001178971 00000 n
+0001179276 00000 n
+0001179581 00000 n
+0001179886 00000 n
+0001180191 00000 n
+0001180496 00000 n
+0001180801 00000 n
+0001181106 00000 n
+0001181421 00000 n
+0001181726 00000 n
+0001182031 00000 n
+0001182336 00000 n
+0001182641 00000 n
+0001182946 00000 n
+0001183251 00000 n
+0001183556 00000 n
+0001183861 00000 n
+0001184166 00000 n
+0001184471 00000 n
+0001184771 00000 n
+0001185076 00000 n
+0001185381 00000 n
+0001185686 00000 n
+0001185991 00000 n
+0001186296 00000 n
+0001186601 00000 n
+0001186906 00000 n
+0001187207 00000 n
+0001187511 00000 n
+0001187816 00000 n
+0001188121 00000 n
+0001188426 00000 n
+0001188731 00000 n
+0001189036 00000 n
+0001189341 00000 n
+0001189646 00000 n
+0001189951 00000 n
+0001190256 00000 n
+0001190561 00000 n
+0001190865 00000 n
+0001191170 00000 n
+0001191475 00000 n
+0001191780 00000 n
+0001192085 00000 n
+0001192390 00000 n
+0001192695 00000 n
+0001193000 00000 n
+0001193305 00000 n
+0001193610 00000 n
+0001193914 00000 n
+0001194219 00000 n
+0001194524 00000 n
+0001194829 00000 n
+0001195134 00000 n
+0001195439 00000 n
+0001195740 00000 n
+0001196045 00000 n
+0001196350 00000 n
+0001196655 00000 n
+0001196960 00000 n
+0001197264 00000 n
+0001197568 00000 n
+0001197872 00000 n
+0001198150 00000 n
+0001198458 00000 n
+0001198766 00000 n
+0001199089 00000 n
+0001199412 00000 n
+0001199735 00000 n
+0001200058 00000 n
+0001200358 00000 n
+0001200659 00000 n
+0001200960 00000 n
+0001201261 00000 n
+0001201562 00000 n
+0001201862 00000 n
+0001202162 00000 n
+0001202462 00000 n
+0001202762 00000 n
+0001203062 00000 n
+0001203362 00000 n
+0001203662 00000 n
+0001203962 00000 n
+0001204307 00000 n
+0001204619 00000 n
+0001204954 00000 n
+0001205286 00000 n
+0001205591 00000 n
+0001205896 00000 n
+0001206201 00000 n
+0001206506 00000 n
+0001206814 00000 n
+0001207115 00000 n
+0001207416 00000 n
+0001207717 00000 n
+0001208018 00000 n
+0001208319 00000 n
+0001208620 00000 n
+0001208950 00000 n
+0001209244 00000 n
+0001209589 00000 n
+0001209896 00000 n
+0001210209 00000 n
+0001210533 00000 n
+0001210836 00000 n
+0001211139 00000 n
+0001211442 00000 n
+0001211745 00000 n
+0001212048 00000 n
+0001212351 00000 n
+0001212654 00000 n
+0001212956 00000 n
+0001213280 00000 n
+0001213582 00000 n
+0001213906 00000 n
+0001214208 00000 n
+0001214510 00000 n
+0001214812 00000 n
+0001215114 00000 n
+0001215407 00000 n
+0001215701 00000 n
+0001215995 00000 n
+0001216288 00000 n
+0001216581 00000 n
+0001216875 00000 n
+0001217169 00000 n
+0001217463 00000 n
+0001217778 00000 n
+0001218083 00000 n
+0001218388 00000 n
+0001218693 00000 n
+0001218998 00000 n
+0001219303 00000 n
+0001219608 00000 n
+0001219913 00000 n
+0001220218 00000 n
+0001220533 00000 n
+0001220838 00000 n
+0001221143 00000 n
+0001221448 00000 n
+0001221753 00000 n
+0001222058 00000 n
+0001222363 00000 n
+0001222668 00000 n
+0001222973 00000 n
+0001223278 00000 n
+0001223583 00000 n
+0001223883 00000 n
+0001224188 00000 n
+0001224493 00000 n
+0001224798 00000 n
+0001225103 00000 n
+0001225408 00000 n
+0001225713 00000 n
+0001226018 00000 n
+0001226319 00000 n
+0001226623 00000 n
+0001226928 00000 n
+0001227233 00000 n
+0001227538 00000 n
+0001227843 00000 n
+0001228148 00000 n
+0001228453 00000 n
+0001228758 00000 n
+0001229063 00000 n
+0001229368 00000 n
+0001229673 00000 n
+0001229977 00000 n
+0001230282 00000 n
+0001230587 00000 n
+0001230892 00000 n
+0001231197 00000 n
+0001231502 00000 n
+0001231807 00000 n
+0001232112 00000 n
+0001232417 00000 n
+0001232722 00000 n
+0001233026 00000 n
+0001233331 00000 n
+0001233636 00000 n
+0001233941 00000 n
+0001234246 00000 n
+0001234551 00000 n
+0001234852 00000 n
+0001235157 00000 n
+0001235462 00000 n
+0001235767 00000 n
+0001236072 00000 n
+0001236376 00000 n
+0001236680 00000 n
+0001236984 00000 n
+0001237262 00000 n
+0001237570 00000 n
+0001237878 00000 n
+0001238201 00000 n
+0001238524 00000 n
+0001238847 00000 n
+0001239170 00000 n
+0001239470 00000 n
+0001239771 00000 n
+0001240072 00000 n
+0001240373 00000 n
+0001240674 00000 n
+0001240974 00000 n
+0001241274 00000 n
+0001241574 00000 n
+0001241874 00000 n
+0001242174 00000 n
+0001242474 00000 n
+0001242774 00000 n
+0001243074 00000 n
+0001243419 00000 n
+0001243731 00000 n
+0001244066 00000 n
+0001244398 00000 n
+0001244703 00000 n
+0001245008 00000 n
+0001245313 00000 n
+0001245618 00000 n
+0001245926 00000 n
+0001246227 00000 n
+0001246528 00000 n
+0001246829 00000 n
+0001247130 00000 n
+0001247431 00000 n
+0001247732 00000 n
+0001248062 00000 n
+0001248356 00000 n
+0001248701 00000 n
+0001249008 00000 n
+0001249321 00000 n
+0001249645 00000 n
+0001249948 00000 n
+0001250251 00000 n
+0001250554 00000 n
+0001250857 00000 n
+0001251160 00000 n
+0001251463 00000 n
+0001251766 00000 n
+0001252068 00000 n
+0001252392 00000 n
+0001252694 00000 n
+0001253018 00000 n
+0001253320 00000 n
+0001253622 00000 n
+0001253924 00000 n
+0001254226 00000 n
+0001254519 00000 n
+0001254813 00000 n
+0001255107 00000 n
+0001255400 00000 n
+0001255693 00000 n
+0001255987 00000 n
+0001256281 00000 n
+0001256575 00000 n
+0001256890 00000 n
+0001257195 00000 n
+0001257500 00000 n
+0001257805 00000 n
+0001258110 00000 n
+0001258415 00000 n
+0001258720 00000 n
+0001259025 00000 n
+0001259330 00000 n
+0001259645 00000 n
+0001259950 00000 n
+0001260255 00000 n
+0001260560 00000 n
+0001260865 00000 n
+0001261170 00000 n
+0001261475 00000 n
+0001261780 00000 n
+0001262085 00000 n
+0001262390 00000 n
+0001262695 00000 n
+0001262995 00000 n
+0001263300 00000 n
+0001263605 00000 n
+0001263910 00000 n
+0001264215 00000 n
+0001264520 00000 n
+0001264825 00000 n
+0001265130 00000 n
+0001265431 00000 n
+0001265735 00000 n
+0001266040 00000 n
+0001266345 00000 n
+0001266650 00000 n
+0001266955 00000 n
+0001267260 00000 n
+0001267565 00000 n
+0001267870 00000 n
+0001268175 00000 n
+0001268480 00000 n
+0001268785 00000 n
+0001269089 00000 n
+0001269394 00000 n
+0001269699 00000 n
+0001270004 00000 n
+0001270309 00000 n
+0001270614 00000 n
+0001270919 00000 n
+0001271224 00000 n
+0001271529 00000 n
+0001271834 00000 n
+0001272138 00000 n
+0001272443 00000 n
+0001272748 00000 n
+0001273053 00000 n
+0001273358 00000 n
+0001273663 00000 n
+0001273964 00000 n
+0001274269 00000 n
+0001274574 00000 n
+0001274879 00000 n
+0001275184 00000 n
+0001275488 00000 n
+0001275792 00000 n
+0001276096 00000 n
+0001276374 00000 n
+0001276682 00000 n
+0001276990 00000 n
+0001277313 00000 n
+0001277636 00000 n
+0001277959 00000 n
+0001278282 00000 n
+0001278582 00000 n
+0001278883 00000 n
+0001279184 00000 n
+0001279485 00000 n
+0001279786 00000 n
+0001280086 00000 n
+0001280386 00000 n
+0001280686 00000 n
+0001280986 00000 n
+0001281286 00000 n
+0001281586 00000 n
+0001281886 00000 n
+0001282186 00000 n
+0001282531 00000 n
+0001282843 00000 n
+0001283178 00000 n
+0001283510 00000 n
+0001283815 00000 n
+0001284120 00000 n
+0001284425 00000 n
+0001284730 00000 n
+0001285038 00000 n
+0001285339 00000 n
+0001285640 00000 n
+0001285941 00000 n
+0001286242 00000 n
+0001286543 00000 n
+0001286844 00000 n
+0001287174 00000 n
+0001287468 00000 n
+0001287813 00000 n
+0001288120 00000 n
+0001288433 00000 n
+0001288757 00000 n
+0001289060 00000 n
+0001289363 00000 n
+0001289666 00000 n
+0001289969 00000 n
+0001290272 00000 n
+0001290575 00000 n
+0001290878 00000 n
+0001291180 00000 n
+0001291504 00000 n
+0001291806 00000 n
+0001292130 00000 n
+0001292432 00000 n
+0001292734 00000 n
+0001293036 00000 n
+0001293338 00000 n
+0001293631 00000 n
+0001293925 00000 n
+0001294219 00000 n
+0001294512 00000 n
+0001294805 00000 n
+0001295099 00000 n
+0001295393 00000 n
+0001295687 00000 n
+0001296002 00000 n
+0001296307 00000 n
+0001296612 00000 n
+0001296917 00000 n
+0001297222 00000 n
+0001297527 00000 n
+0001297832 00000 n
+0001298137 00000 n
+0001298442 00000 n
+0001298757 00000 n
+0001299062 00000 n
+0001299367 00000 n
+0001299672 00000 n
+0001299977 00000 n
+0001300282 00000 n
+0001300587 00000 n
+0001300892 00000 n
+0001301197 00000 n
+0001301502 00000 n
+0001301807 00000 n
+0001302107 00000 n
+0001302412 00000 n
+0001302717 00000 n
+0001303022 00000 n
+0001303327 00000 n
+0001303632 00000 n
+0001303937 00000 n
+0001304242 00000 n
+0001304543 00000 n
+0001304847 00000 n
+0001305152 00000 n
+0001305457 00000 n
+0001305762 00000 n
+0001306067 00000 n
+0001306372 00000 n
+0001306677 00000 n
+0001306982 00000 n
+0001307287 00000 n
+0001307592 00000 n
+0001307897 00000 n
+0001308201 00000 n
+0001308506 00000 n
+0001308811 00000 n
+0001309116 00000 n
+0001309421 00000 n
+0001309726 00000 n
+0001310031 00000 n
+0001310336 00000 n
+0001310641 00000 n
+0001310946 00000 n
+0001311250 00000 n
+0001311555 00000 n
+0001311860 00000 n
+0001312165 00000 n
+0001312470 00000 n
+0001312775 00000 n
+0001313076 00000 n
+0001313381 00000 n
+0001313686 00000 n
+0001313991 00000 n
+0001314296 00000 n
+0001314600 00000 n
+0001314904 00000 n
+0001315208 00000 n
+0001315486 00000 n
+0001315794 00000 n
+0001316102 00000 n
+0001316425 00000 n
+0001316748 00000 n
+0001317071 00000 n
+0001317394 00000 n
+0001317694 00000 n
+0001317995 00000 n
+0001318296 00000 n
+0001318597 00000 n
+0001318898 00000 n
+0001319198 00000 n
+0001319498 00000 n
+0001319798 00000 n
+0001320098 00000 n
+0001320398 00000 n
+0001320698 00000 n
+0001320998 00000 n
+0001321298 00000 n
+0001321643 00000 n
+0001321955 00000 n
+0001322290 00000 n
+0001322622 00000 n
+0001322927 00000 n
+0001323232 00000 n
+0001323537 00000 n
+0001323842 00000 n
+0001324150 00000 n
+0001324451 00000 n
+0001324752 00000 n
+0001325053 00000 n
+0001325354 00000 n
+0001325655 00000 n
+0001325956 00000 n
+0001326286 00000 n
+0001326580 00000 n
+0001326925 00000 n
+0001327232 00000 n
+0001327545 00000 n
+0001327869 00000 n
+0001328172 00000 n
+0001328475 00000 n
+0001328778 00000 n
+0001329081 00000 n
+0001329384 00000 n
+0001329687 00000 n
+0001329990 00000 n
+0001330292 00000 n
+0001330616 00000 n
+0001330918 00000 n
+0001331242 00000 n
+0001331544 00000 n
+0001331846 00000 n
+0001332148 00000 n
+0001332450 00000 n
+0001332743 00000 n
+0001333037 00000 n
+0001333331 00000 n
+0001333624 00000 n
+0001333917 00000 n
+0001334211 00000 n
+0001334505 00000 n
+0001334799 00000 n
+0001335114 00000 n
+0001335419 00000 n
+0001335724 00000 n
+0001336029 00000 n
+0001336334 00000 n
+0001336639 00000 n
+0001336944 00000 n
+0001337249 00000 n
+0001337554 00000 n
+0001337869 00000 n
+0001338174 00000 n
+0001338479 00000 n
+0001338784 00000 n
+0001339089 00000 n
+0001339394 00000 n
+0001339699 00000 n
+0001340004 00000 n
+0001340309 00000 n
+0001340614 00000 n
+0001340919 00000 n
+0001341219 00000 n
+0001341524 00000 n
+0001341829 00000 n
+0001342134 00000 n
+0001342439 00000 n
+0001342744 00000 n
+0001343049 00000 n
+0001343354 00000 n
+0001343655 00000 n
+0001343959 00000 n
+0001344264 00000 n
+0001344569 00000 n
+0001344874 00000 n
+0001345179 00000 n
+0001345484 00000 n
+0001345789 00000 n
+0001346094 00000 n
+0001346399 00000 n
+0001346704 00000 n
+0001347009 00000 n
+0001347313 00000 n
+0001347618 00000 n
+0001347923 00000 n
+0001348228 00000 n
+0001348533 00000 n
+0001348838 00000 n
+0001349143 00000 n
+0001349448 00000 n
+0001349753 00000 n
+0001350058 00000 n
+0001350362 00000 n
+0001350667 00000 n
+0001350972 00000 n
+0001351277 00000 n
+0001351582 00000 n
+0001351887 00000 n
+0001352188 00000 n
+0001352493 00000 n
+0001352798 00000 n
+0001353103 00000 n
+0001353408 00000 n
+0001353712 00000 n
+0001354016 00000 n
+0001354320 00000 n
+0001354598 00000 n
+0001354906 00000 n
+0001355214 00000 n
+0001355537 00000 n
+0001355860 00000 n
+0001356183 00000 n
+0001356506 00000 n
+0001356806 00000 n
+0001357107 00000 n
+0001357408 00000 n
+0001357709 00000 n
+0001358010 00000 n
+0001358310 00000 n
+0001358610 00000 n
+0001358910 00000 n
+0001359210 00000 n
+0001359510 00000 n
+0001359810 00000 n
+0001360110 00000 n
+0001360410 00000 n
+0001360755 00000 n
+0001361067 00000 n
+0001361402 00000 n
+0001361734 00000 n
+0001362039 00000 n
+0001362344 00000 n
+0001362649 00000 n
+0001362954 00000 n
+0001363262 00000 n
+0001363563 00000 n
+0001363864 00000 n
+0001364165 00000 n
+0001364466 00000 n
+0001364767 00000 n
+0001365068 00000 n
+0001365398 00000 n
+0001365692 00000 n
+0001366037 00000 n
+0001366344 00000 n
+0001366657 00000 n
+0001366981 00000 n
+0001367284 00000 n
+0001367587 00000 n
+0001367890 00000 n
+0001368193 00000 n
+0001368496 00000 n
+0001368799 00000 n
+0001369102 00000 n
+0001369404 00000 n
+0001369728 00000 n
+0001370030 00000 n
+0001370354 00000 n
+0001370656 00000 n
+0001370958 00000 n
+0001371260 00000 n
+0001371562 00000 n
+0001371855 00000 n
+0001372149 00000 n
+0001372443 00000 n
+0001372736 00000 n
+0001373029 00000 n
+0001373323 00000 n
+0001373617 00000 n
+0001373911 00000 n
+0001374226 00000 n
+0001374531 00000 n
+0001374836 00000 n
+0001375141 00000 n
+0001375446 00000 n
+0001375751 00000 n
+0001376056 00000 n
+0001376361 00000 n
+0001376666 00000 n
+0001376981 00000 n
+0001377286 00000 n
+0001377591 00000 n
+0001377896 00000 n
+0001378201 00000 n
+0001378506 00000 n
+0001378811 00000 n
+0001379116 00000 n
+0001379421 00000 n
+0001379726 00000 n
+0001380031 00000 n
+0001380331 00000 n
+0001380636 00000 n
+0001380941 00000 n
+0001381246 00000 n
+0001381551 00000 n
+0001381856 00000 n
+0001382161 00000 n
+0001382466 00000 n
+0001382767 00000 n
+0001383071 00000 n
+0001383376 00000 n
+0001383681 00000 n
+0001383986 00000 n
+0001384291 00000 n
+0001384596 00000 n
+0001384901 00000 n
+0001385206 00000 n
+0001385511 00000 n
+0001385816 00000 n
+0001386121 00000 n
+0001386425 00000 n
+0001386730 00000 n
+0001387035 00000 n
+0001387340 00000 n
+0001387645 00000 n
+0001387950 00000 n
+0001388255 00000 n
+0001388560 00000 n
+0001388865 00000 n
+0001389170 00000 n
+0001389474 00000 n
+0001389779 00000 n
+0001390084 00000 n
+0001390389 00000 n
+0001390694 00000 n
+0001390999 00000 n
+0001391300 00000 n
+0001391605 00000 n
+0001391910 00000 n
+0001392215 00000 n
+0001392520 00000 n
+0001392824 00000 n
+0001393128 00000 n
+0001393432 00000 n
+0001393710 00000 n
+0001394018 00000 n
+0001394326 00000 n
+0001394649 00000 n
+0001394972 00000 n
+0001395295 00000 n
+0001395618 00000 n
+0001395918 00000 n
+0001396219 00000 n
+0001396520 00000 n
+0001396821 00000 n
+0001397122 00000 n
+0001397422 00000 n
+0001397722 00000 n
+0001398022 00000 n
+0001398322 00000 n
+0001398622 00000 n
+0001398922 00000 n
+0001399222 00000 n
+0001399522 00000 n
+0001399867 00000 n
+0001400179 00000 n
+0001400514 00000 n
+0001400846 00000 n
+0001401151 00000 n
+0001401456 00000 n
+0001401761 00000 n
+0001402066 00000 n
+0001402374 00000 n
+0001402675 00000 n
+0001402976 00000 n
+0001403277 00000 n
+0001403578 00000 n
+0001403879 00000 n
+0001404180 00000 n
+0001404510 00000 n
+0001404804 00000 n
+0001405149 00000 n
+0001405456 00000 n
+0001405769 00000 n
+0001406093 00000 n
+0001406396 00000 n
+0001406699 00000 n
+0001407002 00000 n
+0001407305 00000 n
+0001407608 00000 n
+0001407911 00000 n
+0001408214 00000 n
+0001408516 00000 n
+0001408840 00000 n
+0001409142 00000 n
+0001409466 00000 n
+0001409768 00000 n
+0001410070 00000 n
+0001410372 00000 n
+0001410674 00000 n
+0001410967 00000 n
+0001411261 00000 n
+0001411555 00000 n
+0001411848 00000 n
+0001412141 00000 n
+0001412435 00000 n
+0001412729 00000 n
+0001413023 00000 n
+0001413338 00000 n
+0001413643 00000 n
+0001413948 00000 n
+0001414253 00000 n
+0001414558 00000 n
+0001414863 00000 n
+0001415168 00000 n
+0001415473 00000 n
+0001415778 00000 n
+0001416093 00000 n
+0001416398 00000 n
+0001416703 00000 n
+0001417008 00000 n
+0001417313 00000 n
+0001417618 00000 n
+0001417923 00000 n
+0001418228 00000 n
+0001418533 00000 n
+0001418838 00000 n
+0001419143 00000 n
+0001419443 00000 n
+0001419748 00000 n
+0001420053 00000 n
+0001420358 00000 n
+0001420663 00000 n
+0001420968 00000 n
+0001421273 00000 n
+0001421578 00000 n
+0001421879 00000 n
+0001422183 00000 n
+0001422488 00000 n
+0001422793 00000 n
+0001423098 00000 n
+0001423403 00000 n
+0001423708 00000 n
+0001424013 00000 n
+0001424318 00000 n
+0001424623 00000 n
+0001424928 00000 n
+0001425233 00000 n
+0001425537 00000 n
+0001425842 00000 n
+0001426147 00000 n
+0001426452 00000 n
+0001426757 00000 n
+0001427062 00000 n
+0001427367 00000 n
+0001427672 00000 n
+0001427977 00000 n
+0001428282 00000 n
+0001428586 00000 n
+0001428891 00000 n
+0001429196 00000 n
+0001429501 00000 n
+0001429806 00000 n
+0001430111 00000 n
+0001430412 00000 n
+0001430717 00000 n
+0001431022 00000 n
+0001431327 00000 n
+0001431632 00000 n
+0001431936 00000 n
+0001432240 00000 n
+0001432544 00000 n
+0001432822 00000 n
+0001433130 00000 n
+0001433438 00000 n
+0001433761 00000 n
+0001434084 00000 n
+0001434407 00000 n
+0001434730 00000 n
+0001435030 00000 n
+0001435331 00000 n
+0001435632 00000 n
+0001435933 00000 n
+0001436234 00000 n
+0001436534 00000 n
+0001436834 00000 n
+0001437134 00000 n
+0001437434 00000 n
+0001437734 00000 n
+0001438034 00000 n
+0001438334 00000 n
+0001438634 00000 n
+0001438979 00000 n
+0001439291 00000 n
+0001439626 00000 n
+0001439958 00000 n
+0001440263 00000 n
+0001440568 00000 n
+0001440873 00000 n
+0001441178 00000 n
+0001441486 00000 n
+0001441787 00000 n
+0001442088 00000 n
+0001442389 00000 n
+0001442690 00000 n
+0001442991 00000 n
+0001443292 00000 n
+0001443622 00000 n
+0001443916 00000 n
+0001444261 00000 n
+0001444568 00000 n
+0001444881 00000 n
+0001445205 00000 n
+0001445508 00000 n
+0001445811 00000 n
+0001446114 00000 n
+0001446417 00000 n
+0001446720 00000 n
+0001447023 00000 n
+0001447326 00000 n
+0001447628 00000 n
+0001447952 00000 n
+0001448254 00000 n
+0001448578 00000 n
+0001448880 00000 n
+0001449182 00000 n
+0001449484 00000 n
+0001449786 00000 n
+0001450079 00000 n
+0001450373 00000 n
+0001450667 00000 n
+0001450960 00000 n
+0001451253 00000 n
+0001451547 00000 n
+0001451841 00000 n
+0001452135 00000 n
+0001452450 00000 n
+0001452755 00000 n
+0001453060 00000 n
+0001453365 00000 n
+0001453670 00000 n
+0001453975 00000 n
+0001454280 00000 n
+0001454585 00000 n
+0001454890 00000 n
+0001455205 00000 n
+0001455510 00000 n
+0001455815 00000 n
+0001456120 00000 n
+0001456425 00000 n
+0001456730 00000 n
+0001457035 00000 n
+0001457340 00000 n
+0001457645 00000 n
+0001457950 00000 n
+0001458255 00000 n
+0001458555 00000 n
+0001458860 00000 n
+0001459165 00000 n
+0001459470 00000 n
+0001459775 00000 n
+0001460080 00000 n
+0001460385 00000 n
+0001460690 00000 n
+0001460991 00000 n
+0001461295 00000 n
+0001461600 00000 n
+0001461905 00000 n
+0001462210 00000 n
+0001462515 00000 n
+0001462820 00000 n
+0001463125 00000 n
+0001463430 00000 n
+0001463735 00000 n
+0001464040 00000 n
+0001464345 00000 n
+0001464649 00000 n
+0001464954 00000 n
+0001465259 00000 n
+0001465564 00000 n
+0001465869 00000 n
+0001466174 00000 n
+0001466479 00000 n
+0001466784 00000 n
+0001467089 00000 n
+0001467394 00000 n
+0001467698 00000 n
+0001468003 00000 n
+0001468308 00000 n
+0001468613 00000 n
+0001468918 00000 n
+0001469223 00000 n
+0001469524 00000 n
+0001469829 00000 n
+0001470134 00000 n
+0001470439 00000 n
+0001470744 00000 n
+0001471048 00000 n
+0001471352 00000 n
+0001471656 00000 n
+0001471934 00000 n
+0001472242 00000 n
+0001472550 00000 n
+0001472873 00000 n
+0001473196 00000 n
+0001473519 00000 n
+0001473842 00000 n
+0001474142 00000 n
+0001474443 00000 n
+0001474744 00000 n
+0001475045 00000 n
+0001475346 00000 n
+0001475646 00000 n
+0001475946 00000 n
+0001476246 00000 n
+0001476546 00000 n
+0001476846 00000 n
+0001477146 00000 n
+0001477446 00000 n
+0001477746 00000 n
+0001478091 00000 n
+0001478403 00000 n
+0001478738 00000 n
+0001479070 00000 n
+0001479375 00000 n
+0001479680 00000 n
+0001479985 00000 n
+0001480290 00000 n
+0001480598 00000 n
+0001480899 00000 n
+0001481200 00000 n
+0001481501 00000 n
+0001481802 00000 n
+0001482103 00000 n
+0001482404 00000 n
+0001482734 00000 n
+0001483028 00000 n
+0001483373 00000 n
+0001483680 00000 n
+0001483993 00000 n
+0001484317 00000 n
+0001484620 00000 n
+0001484923 00000 n
+0001485226 00000 n
+0001485529 00000 n
+0001485832 00000 n
+0001486135 00000 n
+0001486438 00000 n
+0001486740 00000 n
+0001487064 00000 n
+0001487366 00000 n
+0001487690 00000 n
+0001487992 00000 n
+0001488294 00000 n
+0001488596 00000 n
+0001488898 00000 n
+0001489191 00000 n
+0001489485 00000 n
+0001489779 00000 n
+0001490072 00000 n
+0001490365 00000 n
+0001490659 00000 n
+0001490953 00000 n
+0001491247 00000 n
+0001491562 00000 n
+0001491867 00000 n
+0001492172 00000 n
+0001492477 00000 n
+0001492782 00000 n
+0001493087 00000 n
+0001493392 00000 n
+0001493697 00000 n
+0001494002 00000 n
+0001494317 00000 n
+0001494622 00000 n
+0001494927 00000 n
+0001495232 00000 n
+0001495537 00000 n
+0001495842 00000 n
+0001496147 00000 n
+0001496452 00000 n
+0001496757 00000 n
+0001497062 00000 n
+0001497367 00000 n
+0001497667 00000 n
+0001497972 00000 n
+0001498277 00000 n
+0001498582 00000 n
+0001498887 00000 n
+0001499192 00000 n
+0001499497 00000 n
+0001499802 00000 n
+0001500103 00000 n
+0001500407 00000 n
+0001500712 00000 n
+0001501017 00000 n
+0001501322 00000 n
+0001501627 00000 n
+0001501932 00000 n
+0001502237 00000 n
+0001502542 00000 n
+0001502847 00000 n
+0001503152 00000 n
+0001503457 00000 n
+0001503761 00000 n
+0001504066 00000 n
+0001504371 00000 n
+0001504676 00000 n
+0001504981 00000 n
+0001505286 00000 n
+0001505591 00000 n
+0001505896 00000 n
+0001506201 00000 n
+0001506506 00000 n
+0001506810 00000 n
+0001507115 00000 n
+0001507420 00000 n
+0001507725 00000 n
+0001508030 00000 n
+0001508335 00000 n
+0001508636 00000 n
+0001508941 00000 n
+0001509246 00000 n
+0001509551 00000 n
+0001509856 00000 n
+0001510160 00000 n
+0001510464 00000 n
+0001510768 00000 n
+0001511046 00000 n
+0001511354 00000 n
+0001511662 00000 n
+0001511985 00000 n
+0001512308 00000 n
+0001512631 00000 n
+0001512954 00000 n
+0001513254 00000 n
+0001513555 00000 n
+0001513856 00000 n
+0001514157 00000 n
+0001514458 00000 n
+0001514758 00000 n
+0001515058 00000 n
+0001515358 00000 n
+0001515658 00000 n
+0001515958 00000 n
+0001516258 00000 n
+0001516558 00000 n
+0001516858 00000 n
+0001517203 00000 n
+0001517515 00000 n
+0001517850 00000 n
+0001518182 00000 n
+0001518487 00000 n
+0001518792 00000 n
+0001519097 00000 n
+0001519402 00000 n
+0001519710 00000 n
+0001520011 00000 n
+0001520312 00000 n
+0001520613 00000 n
+0001520914 00000 n
+0001521215 00000 n
+0001521516 00000 n
+0001521846 00000 n
+0001522140 00000 n
+0001522485 00000 n
+0001522792 00000 n
+0001523105 00000 n
+0001523429 00000 n
+0001523732 00000 n
+0001524035 00000 n
+0001524338 00000 n
+0001524641 00000 n
+0001524944 00000 n
+0001525247 00000 n
+0001525550 00000 n
+0001525852 00000 n
+0001526176 00000 n
+0001526478 00000 n
+0001526802 00000 n
+0001527104 00000 n
+0001527406 00000 n
+0001527708 00000 n
+0001528010 00000 n
+0001528303 00000 n
+0001528597 00000 n
+0001528891 00000 n
+0001529184 00000 n
+0001529477 00000 n
+0001529771 00000 n
+0001530065 00000 n
+0001530359 00000 n
+0001530674 00000 n
+0001530979 00000 n
+0001531284 00000 n
+0001531589 00000 n
+0001531894 00000 n
+0001532199 00000 n
+0001532504 00000 n
+0001532809 00000 n
+0001533114 00000 n
+0001533429 00000 n
+0001533734 00000 n
+0001534039 00000 n
+0001534344 00000 n
+0001534649 00000 n
+0001534954 00000 n
+0001535259 00000 n
+0001535564 00000 n
+0001535869 00000 n
+0001536174 00000 n
+0001536479 00000 n
+0001536779 00000 n
+0001537084 00000 n
+0001537389 00000 n
+0001537694 00000 n
+0001537999 00000 n
+0001538304 00000 n
+0001538609 00000 n
+0001538914 00000 n
+0001539215 00000 n
+0001539519 00000 n
+0001539824 00000 n
+0001540129 00000 n
+0001540434 00000 n
+0001540739 00000 n
+0001541044 00000 n
+0001541349 00000 n
+0001541654 00000 n
+0001541959 00000 n
+0001542264 00000 n
+0001542569 00000 n
+0001542873 00000 n
+0001543178 00000 n
+0001543483 00000 n
+0001543788 00000 n
+0001544093 00000 n
+0001544398 00000 n
+0001544703 00000 n
+0001545008 00000 n
+0001545313 00000 n
+0001545618 00000 n
+0001545922 00000 n
+0001546227 00000 n
+0001546532 00000 n
+0001546837 00000 n
+0001547142 00000 n
+0001547447 00000 n
+0001547748 00000 n
+0001548053 00000 n
+0001548358 00000 n
+0001548663 00000 n
+0001548968 00000 n
+0001549272 00000 n
+0001549576 00000 n
+0001549880 00000 n
+0001550158 00000 n
+0001550466 00000 n
+0001550774 00000 n
+0001551097 00000 n
+0001551420 00000 n
+0001551743 00000 n
+0001552066 00000 n
+0001552366 00000 n
+0001552667 00000 n
+0001552968 00000 n
+0001553269 00000 n
+0001553570 00000 n
+0001553870 00000 n
+0001554170 00000 n
+0001554470 00000 n
+0001554770 00000 n
+0001555070 00000 n
+0001555370 00000 n
+0001555670 00000 n
+0001555970 00000 n
+0001556315 00000 n
+0001556627 00000 n
+0001556962 00000 n
+0001557294 00000 n
+0001557599 00000 n
+0001557904 00000 n
+0001558209 00000 n
+0001558514 00000 n
+0001558822 00000 n
+0001559123 00000 n
+0001559424 00000 n
+0001559725 00000 n
+0001560026 00000 n
+0001560327 00000 n
+0001560628 00000 n
+0001560958 00000 n
+0001561252 00000 n
+0001561597 00000 n
+0001561904 00000 n
+0001562217 00000 n
+0001562541 00000 n
+0001562844 00000 n
+0001563147 00000 n
+0001563450 00000 n
+0001563753 00000 n
+0001564056 00000 n
+0001564359 00000 n
+0001564662 00000 n
+0001564964 00000 n
+0001565288 00000 n
+0001565590 00000 n
+0001565914 00000 n
+0001566216 00000 n
+0001566518 00000 n
+0001566820 00000 n
+0001567122 00000 n
+0001567415 00000 n
+0001567709 00000 n
+0001568003 00000 n
+0001568296 00000 n
+0001568589 00000 n
+0001568883 00000 n
+0001569177 00000 n
+0001569471 00000 n
+0001569786 00000 n
+0001570091 00000 n
+0001570396 00000 n
+0001570701 00000 n
+0001571006 00000 n
+0001571311 00000 n
+0001571616 00000 n
+0001571921 00000 n
+0001572226 00000 n
+0001572541 00000 n
+0001572846 00000 n
+0001573151 00000 n
+0001573456 00000 n
+0001573761 00000 n
+0001574066 00000 n
+0001574371 00000 n
+0001574676 00000 n
+0001574981 00000 n
+0001575286 00000 n
+0001575591 00000 n
+0001575891 00000 n
+0001576196 00000 n
+0001576501 00000 n
+0001576806 00000 n
+0001577111 00000 n
+0001577416 00000 n
+0001577721 00000 n
+0001578026 00000 n
+0001578327 00000 n
+0001578631 00000 n
+0001578936 00000 n
+0001579241 00000 n
+0001579546 00000 n
+0001579851 00000 n
+0001580156 00000 n
+0001580461 00000 n
+0001580766 00000 n
+0001581071 00000 n
+0001581376 00000 n
+0001581681 00000 n
+0001581985 00000 n
+0001582290 00000 n
+0001582595 00000 n
+0001582900 00000 n
+0001583205 00000 n
+0001583510 00000 n
+0001583815 00000 n
+0001584120 00000 n
+0001584425 00000 n
+0001584730 00000 n
+0001585034 00000 n
+0001585339 00000 n
+0001585644 00000 n
+0001585949 00000 n
+0001586254 00000 n
+0001586559 00000 n
+0001586860 00000 n
+0001587165 00000 n
+0001587470 00000 n
+0001587775 00000 n
+0001588080 00000 n
+0001588384 00000 n
+0001588688 00000 n
+0001588992 00000 n
+0001589270 00000 n
+0001589578 00000 n
+0001589886 00000 n
+0001590209 00000 n
+0001590532 00000 n
+0001590855 00000 n
+0001591178 00000 n
+0001591478 00000 n
+0001591779 00000 n
+0001592080 00000 n
+0001592381 00000 n
+0001592682 00000 n
+0001592982 00000 n
+0001593282 00000 n
+0001593582 00000 n
+0001593882 00000 n
+0001594182 00000 n
+0001594482 00000 n
+0001594782 00000 n
+0001595082 00000 n
+0001595427 00000 n
+0001595739 00000 n
+0001596074 00000 n
+0001596406 00000 n
+0001596711 00000 n
+0001597016 00000 n
+0001597321 00000 n
+0001597626 00000 n
+0001597934 00000 n
+0001598235 00000 n
+0001598536 00000 n
+0001598837 00000 n
+0001599138 00000 n
+0001599439 00000 n
+0001599740 00000 n
+0001600070 00000 n
+0001600364 00000 n
+0001600709 00000 n
+0001601016 00000 n
+0001601329 00000 n
+0001601664 00000 n
+0001601968 00000 n
+0001602292 00000 n
+0001602595 00000 n
+0001602898 00000 n
+0001603201 00000 n
+0001603504 00000 n
+0001603807 00000 n
+0001604110 00000 n
+0001604413 00000 n
+0001604715 00000 n
+0001605039 00000 n
+0001605341 00000 n
+0001605665 00000 n
+0001605967 00000 n
+0001606269 00000 n
+0001606571 00000 n
+0001606873 00000 n
+0001607166 00000 n
+0001607460 00000 n
+0001607754 00000 n
+0001608047 00000 n
+0001608340 00000 n
+0001608634 00000 n
+0001608928 00000 n
+0001609222 00000 n
+0001609537 00000 n
+0001609842 00000 n
+0001610147 00000 n
+0001610452 00000 n
+0001610757 00000 n
+0001611062 00000 n
+0001611367 00000 n
+0001611672 00000 n
+0001611977 00000 n
+0001612292 00000 n
+0001612597 00000 n
+0001612902 00000 n
+0001613207 00000 n
+0001613512 00000 n
+0001613817 00000 n
+0001614122 00000 n
+0001614427 00000 n
+0001614732 00000 n
+0001615037 00000 n
+0001615342 00000 n
+0001615642 00000 n
+0001615947 00000 n
+0001616252 00000 n
+0001616557 00000 n
+0001616862 00000 n
+0001617167 00000 n
+0001617472 00000 n
+0001617777 00000 n
+0001618078 00000 n
+0001618382 00000 n
+0001618687 00000 n
+0001618992 00000 n
+0001619297 00000 n
+0001619602 00000 n
+0001619907 00000 n
+0001620212 00000 n
+0001620517 00000 n
+0001620822 00000 n
+0001621127 00000 n
+0001621432 00000 n
+0001621736 00000 n
+0001622041 00000 n
+0001622346 00000 n
+0001622651 00000 n
+0001622956 00000 n
+0001623261 00000 n
+0001623566 00000 n
+0001623871 00000 n
+0001624176 00000 n
+0001624481 00000 n
+0001624785 00000 n
+0001625090 00000 n
+0001625395 00000 n
+0001625700 00000 n
+0001626005 00000 n
+0001626310 00000 n
+0001626611 00000 n
+0001626916 00000 n
+0001627221 00000 n
+0001627526 00000 n
+0001627831 00000 n
+0001628135 00000 n
+0001628439 00000 n
+0001628743 00000 n
+0001629021 00000 n
+0001629329 00000 n
+0001629637 00000 n
+0001629960 00000 n
+0001630283 00000 n
+0001630606 00000 n
+0001630929 00000 n
+0001631229 00000 n
+0001631530 00000 n
+0001631831 00000 n
+0001632132 00000 n
+0001632433 00000 n
+0001632733 00000 n
+0001633033 00000 n
+0001633333 00000 n
+0001633633 00000 n
+0001633933 00000 n
+0001634233 00000 n
+0001634533 00000 n
+0001634833 00000 n
+0001635178 00000 n
+0001635490 00000 n
+0001635825 00000 n
+0001636157 00000 n
+0001636462 00000 n
+0001636767 00000 n
+0001637072 00000 n
+0001637377 00000 n
+0001637685 00000 n
+0001637986 00000 n
+0001638287 00000 n
+0001638588 00000 n
+0001638889 00000 n
+0001639190 00000 n
+0001639491 00000 n
+0001639821 00000 n
+0001640115 00000 n
+0001640460 00000 n
+0001640767 00000 n
+0001641080 00000 n
+0001641221 00000 n
+0001641373 00000 n
+0001641670 00000 n
+0001641927 00000 n
+0001642184 00000 n
+0001642496 00000 n
+0001642753 00000 n
+0001643010 00000 n
+0001643322 00000 n
+0001643579 00000 n
+0001643836 00000 n
+0001644148 00000 n
+0001644405 00000 n
+0001644677 00000 n
+0001644949 00000 n
+0001645221 00000 n
+0001645493 00000 n
+0001645750 00000 n
+0001646062 00000 n
+0001646319 00000 n
+0001646591 00000 n
+0001646863 00000 n
+0001647135 00000 n
+0001647407 00000 n
+0001647664 00000 n
+0001647976 00000 n
+0001648233 00000 n
+0001648490 00000 n
+0001648802 00000 n
+0001649059 00000 n
+0001649316 00000 n
+0001649628 00000 n
+0001649885 00000 n
+0001650142 00000 n
+0001650454 00000 n
+0001650711 00000 n
+0001650968 00000 n
+0001651280 00000 n
+0001651537 00000 n
+0001651794 00000 n
+0001652106 00000 n
+0001652363 00000 n
+0001652620 00000 n
+0001652932 00000 n
+0001653189 00000 n
+0001653446 00000 n
+0001653760 00000 n
+0001654018 00000 n
+0001654276 00000 n
+0001654590 00000 n
+0001654848 00000 n
+0001655106 00000 n
+0001655420 00000 n
+0001655678 00000 n
+0001655936 00000 n
+0001656250 00000 n
+0001656508 00000 n
+0001656766 00000 n
+0001657080 00000 n
+0001657338 00000 n
+0001657596 00000 n
+0001657910 00000 n
+0001658168 00000 n
+0001658426 00000 n
+0001658740 00000 n
+0001658998 00000 n
+0001659256 00000 n
+0001659570 00000 n
+0001659828 00000 n
+0001660086 00000 n
+0001660400 00000 n
+0001660658 00000 n
+0001660916 00000 n
+0001661230 00000 n
+0001661488 00000 n
+0001661746 00000 n
+0001662060 00000 n
+0001662318 00000 n
+0001662576 00000 n
+0001662890 00000 n
+0001663148 00000 n
+0001663406 00000 n
+0001663720 00000 n
+0001663978 00000 n
+0001664236 00000 n
+0001664550 00000 n
+0001664808 00000 n
+0001665066 00000 n
+0001665380 00000 n
+0001665638 00000 n
+0001665896 00000 n
+0001666210 00000 n
+0001666468 00000 n
+0001666726 00000 n
+0001667040 00000 n
+0001667298 00000 n
+0001667556 00000 n
+0001667870 00000 n
+0001668128 00000 n
+0001668386 00000 n
+0001668700 00000 n
+0001668958 00000 n
+0001669216 00000 n
+0001669530 00000 n
+0001669788 00000 n
+0001670046 00000 n
+0001670360 00000 n
+0001670618 00000 n
+0001670876 00000 n
+0001671190 00000 n
+0001671448 00000 n
+0001671706 00000 n
+0001672020 00000 n
+0001672278 00000 n
+0001672536 00000 n
+0001672850 00000 n
+0001673108 00000 n
+0001673366 00000 n
+0001673680 00000 n
+0001673938 00000 n
+0001674196 00000 n
+0001674510 00000 n
+0001674768 00000 n
+0001675026 00000 n
+0001675340 00000 n
+0001675598 00000 n
+0001675856 00000 n
+0001676170 00000 n
+0001676428 00000 n
+0001676686 00000 n
+0001677000 00000 n
+0001677258 00000 n
+0001677516 00000 n
+0001677830 00000 n
+0001678088 00000 n
+0001678346 00000 n
+0001678660 00000 n
+0001678918 00000 n
+0001679176 00000 n
+0001679490 00000 n
+0001679748 00000 n
+0001680006 00000 n
+0001680320 00000 n
+0001680578 00000 n
+0001680836 00000 n
+0001681150 00000 n
+0001681408 00000 n
+0001681666 00000 n
+0001681980 00000 n
+0001682238 00000 n
+0001682496 00000 n
+0001682810 00000 n
+0001683068 00000 n
+0001683326 00000 n
+0001683640 00000 n
+0001683898 00000 n
+0001684156 00000 n
+0001684471 00000 n
+0001684729 00000 n
+0001685002 00000 n
+0001685275 00000 n
+0001685548 00000 n
+0001685821 00000 n
+0001686094 00000 n
+0001686367 00000 n
+0001686640 00000 n
+0001686913 00000 n
+0001687173 00000 n
+0001687487 00000 n
+0001687745 00000 n
+0001688003 00000 n
+0001688317 00000 n
+0001688575 00000 n
+0001688833 00000 n
+0001689147 00000 n
+0001689405 00000 n
+0001689663 00000 n
+0001689977 00000 n
+0001690235 00000 n
+0001690493 00000 n
+0001690807 00000 n
+0001691065 00000 n
+0001691323 00000 n
+0001691637 00000 n
+0001691895 00000 n
+0001692153 00000 n
+0001692467 00000 n
+0001692725 00000 n
+0001692983 00000 n
+0001693297 00000 n
+0001693555 00000 n
+0001693813 00000 n
+0001694127 00000 n
+0001694385 00000 n
+0001694643 00000 n
+0001694957 00000 n
+0001695215 00000 n
+0001695473 00000 n
+0001695787 00000 n
+0001696045 00000 n
+0001696303 00000 n
+0001696617 00000 n
+0001696875 00000 n
+0001697133 00000 n
+0001697447 00000 n
+0001697705 00000 n
+0001697963 00000 n
+0001698277 00000 n
+0001698535 00000 n
+0001698793 00000 n
+0001699107 00000 n
+0001699365 00000 n
+0001699623 00000 n
+0001699937 00000 n
+0001700195 00000 n
+0001700453 00000 n
+0001700767 00000 n
+0001701025 00000 n
+0001701283 00000 n
+0001701597 00000 n
+0001701855 00000 n
+0001702128 00000 n
+0001702401 00000 n
+0001702674 00000 n
+0001702947 00000 n
+0001703205 00000 n
+0001703519 00000 n
+0001703777 00000 n
+0001704035 00000 n
+0001704349 00000 n
+0001704607 00000 n
+0001704865 00000 n
+0001705179 00000 n
+0001705437 00000 n
+0001705695 00000 n
+0001706009 00000 n
+0001706267 00000 n
+0001706525 00000 n
+0001706839 00000 n
+0001707097 00000 n
+0001707355 00000 n
+0001707669 00000 n
+0001707927 00000 n
+0001708185 00000 n
+0001708499 00000 n
+0001708757 00000 n
+0001709015 00000 n
+0001709329 00000 n
+0001709587 00000 n
+0001709860 00000 n
+0001710133 00000 n
+0001710406 00000 n
+0001710679 00000 n
+0001710937 00000 n
+0001711249 00000 n
+0001711491 00000 n
+0001711803 00000 n
+0001712045 00000 n
+0001712357 00000 n
+0001712599 00000 n
+0001712911 00000 n
+0001713153 00000 n
+0001713467 00000 n
+0001713725 00000 n
+0001713998 00000 n
+0001714271 00000 n
+0001714529 00000 n
+0001714843 00000 n
+0001715101 00000 n
+0001715374 00000 n
+0001715647 00000 n
+0001715905 00000 n
+0001716217 00000 n
+0001716474 00000 n
+0001716746 00000 n
+0001717005 00000 n
+0001717302 00000 n
+0001717559 00000 n
+0001717816 00000 n
+0001717962 00000 n
+0001718108 00000 n
+0001718370 00000 n
+0001718645 00000 n
+0001718920 00000 n
+0001719197 00000 n
+0001719474 00000 n
+0001719734 00000 n
+0001719894 00000 n
+0001720154 00000 n
+0001720429 00000 n
+0001720704 00000 n
+0001720979 00000 n
+0001721254 00000 n
+0001721529 00000 n
+0001721806 00000 n
+0001722083 00000 n
+0001722360 00000 n
+0001722637 00000 n
+0001722914 00000 n
+0001723191 00000 n
+0001723468 00000 n
+0001723743 00000 n
+0001724018 00000 n
+0001724293 00000 n
+0001724570 00000 n
+0001724847 00000 n
+0001725122 00000 n
+0001725397 00000 n
+0001725672 00000 n
+0001725947 00000 n
+0001726222 00000 n
+0001726499 00000 n
+0001726774 00000 n
+0001727049 00000 n
+0001727324 00000 n
+0001727599 00000 n
+0001727874 00000 n
+0001728151 00000 n
+0001728428 00000 n
+0001728703 00000 n
+0001728980 00000 n
+0001729257 00000 n
+0001729534 00000 n
+0001729809 00000 n
+0001730084 00000 n
+0001730361 00000 n
+0001730636 00000 n
+0001730911 00000 n
+0001731188 00000 n
+0001731465 00000 n
+0001731742 00000 n
+0001732021 00000 n
+0001732298 00000 n
+0001732575 00000 n
+0001732852 00000 n
+0001733129 00000 n
+0001733406 00000 n
+0001733681 00000 n
+0001733956 00000 n
+0001734231 00000 n
+0001734506 00000 n
+0001734781 00000 n
+0001735056 00000 n
+0001735331 00000 n
+0001735606 00000 n
+0001735868 00000 n
+0001736030 00000 n
+0001736290 00000 n
+0001736567 00000 n
+0001736829 00000 n
+0001736991 00000 n
+0001737253 00000 n
+0001737513 00000 n
+0001737675 00000 n
+0001737937 00000 n
+0001738199 00000 n
+0001738361 00000 n
+0001738623 00000 n
+0001738900 00000 n
+0001739162 00000 n
+0001739324 00000 n
+0001739586 00000 n
+0001739846 00000 n
+0001740008 00000 n
+0001740270 00000 n
+0001740532 00000 n
+0001740694 00000 n
+0001740956 00000 n
+0001741218 00000 n
+0001741380 00000 n
+0001741642 00000 n
+0001741904 00000 n
+0001742066 00000 n
+0001742328 00000 n
+0001742605 00000 n
+0001742882 00000 n
+0001743142 00000 n
+0001743304 00000 n
+0001743566 00000 n
+0001743828 00000 n
+0001743991 00000 n
+0001744253 00000 n
+0001744528 00000 n
+0001744790 00000 n
+0001744953 00000 n
+0001745213 00000 n
+0001745473 00000 n
+0001745635 00000 n
+0001745895 00000 n
+0001746155 00000 n
+0001746318 00000 n
+0001746578 00000 n
+0001746838 00000 n
+0001747001 00000 n
+0001747263 00000 n
+0001747538 00000 n
+0001747800 00000 n
+0001747963 00000 n
+0001748223 00000 n
+0001748483 00000 n
+0001748646 00000 n
+0001748906 00000 n
+0001749166 00000 n
+0001749329 00000 n
+0001749591 00000 n
+0001749851 00000 n
+0001750012 00000 n
+0001750274 00000 n
+0001750549 00000 n
+0001750824 00000 n
+0001751101 00000 n
+0001751378 00000 n
+0001751655 00000 n
+0001751932 00000 n
+0001752209 00000 n
+0001752484 00000 n
+0001752744 00000 n
+0001752903 00000 n
+0001753165 00000 n
+0001753442 00000 n
+0001753704 00000 n
+0001753863 00000 n
+0001754125 00000 n
+0001754402 00000 n
+0001754664 00000 n
+0001754823 00000 n
+0001755085 00000 n
+0001755362 00000 n
+0001755624 00000 n
+0001755783 00000 n
+0001756045 00000 n
+0001756322 00000 n
+0001756584 00000 n
+0001756743 00000 n
+0001757005 00000 n
+0001757282 00000 n
+0001757544 00000 n
+0001757703 00000 n
+0001757965 00000 n
+0001758242 00000 n
+0001758504 00000 n
+0001758663 00000 n
+0001758925 00000 n
+0001759202 00000 n
+0001759464 00000 n
+0001759623 00000 n
+0001759885 00000 n
+0001760162 00000 n
+0001760424 00000 n
+0001760583 00000 n
+0001760845 00000 n
+0001761122 00000 n
+0001761384 00000 n
+0001761546 00000 n
+0001761808 00000 n
+0001762085 00000 n
+0001762362 00000 n
+0001762624 00000 n
+0001762787 00000 n
+0001763049 00000 n
+0001763326 00000 n
+0001763603 00000 n
+0001763865 00000 n
+0001764028 00000 n
+0001764290 00000 n
+0001764567 00000 n
+0001764844 00000 n
+0001765106 00000 n
+0001765269 00000 n
+0001765531 00000 n
+0001765808 00000 n
+0001766085 00000 n
+0001766347 00000 n
+0001766512 00000 n
+0001766774 00000 n
+0001767051 00000 n
+0001767328 00000 n
+0001767605 00000 n
+0001767867 00000 n
+0001768032 00000 n
+0001768294 00000 n
+0001768571 00000 n
+0001768848 00000 n
+0001769125 00000 n
+0001769387 00000 n
+0001769552 00000 n
+0001769814 00000 n
+0001770089 00000 n
+0001770366 00000 n
+0001770643 00000 n
+0001770905 00000 n
+0001771064 00000 n
+0001771324 00000 n
+0001771599 00000 n
+0001771861 00000 n
+0001772020 00000 n
+0001772280 00000 n
+0001772555 00000 n
+0001772817 00000 n
+0001772982 00000 n
+0001773242 00000 n
+0001773517 00000 n
+0001773792 00000 n
+0001774054 00000 n
+0001774218 00000 n
+0001774478 00000 n
+0001774753 00000 n
+0001775030 00000 n
+0001775292 00000 n
+0001775458 00000 n
+0001775720 00000 n
+0001775995 00000 n
+0001776272 00000 n
+0001776547 00000 n
+0001776824 00000 n
+0001777086 00000 n
+0001777245 00000 n
+0001777507 00000 n
+0001777784 00000 n
+0001778046 00000 n
+0001778205 00000 n
+0001778467 00000 n
+0001778744 00000 n
+0001779006 00000 n
+0001779165 00000 n
+0001779427 00000 n
+0001779704 00000 n
+0001779966 00000 n
+0001780125 00000 n
+0001780387 00000 n
+0001780664 00000 n
+0001780926 00000 n
+0001781085 00000 n
+0001781347 00000 n
+0001781624 00000 n
+0001781886 00000 n
+0001782046 00000 n
+0001782308 00000 n
+0001782585 00000 n
+0001782847 00000 n
+0001783007 00000 n
+0001783269 00000 n
+0001783546 00000 n
+0001783808 00000 n
+0001783968 00000 n
+0001784230 00000 n
+0001784507 00000 n
+0001784769 00000 n
+0001784929 00000 n
+0001785191 00000 n
+0001785468 00000 n
+0001785730 00000 n
+0001785890 00000 n
+0001786152 00000 n
+0001786429 00000 n
+0001786691 00000 n
+0001786851 00000 n
+0001787113 00000 n
+0001787390 00000 n
+0001787652 00000 n
+0001787811 00000 n
+0001788073 00000 n
+0001788350 00000 n
+0001788610 00000 n
+0001788769 00000 n
+0001789031 00000 n
+0001789308 00000 n
+0001789568 00000 n
+0001789727 00000 n
+0001789989 00000 n
+0001790266 00000 n
+0001790528 00000 n
+0001790687 00000 n
+0001790949 00000 n
+0001791226 00000 n
+0001791488 00000 n
+0001791647 00000 n
+0001791909 00000 n
+0001792186 00000 n
+0001792448 00000 n
+0001792607 00000 n
+0001792869 00000 n
+0001793146 00000 n
+0001793408 00000 n
+0001793567 00000 n
+0001793829 00000 n
+0001794106 00000 n
+0001794368 00000 n
+0001794527 00000 n
+0001794789 00000 n
+0001795066 00000 n
+0001795328 00000 n
+0001795487 00000 n
+0001795749 00000 n
+0001796026 00000 n
+0001796288 00000 n
+0001796447 00000 n
+0001796709 00000 n
+0001796986 00000 n
+0001797248 00000 n
+0001797408 00000 n
+0001797670 00000 n
+0001797947 00000 n
+0001798209 00000 n
+0001798369 00000 n
+0001798631 00000 n
+0001798908 00000 n
+0001799170 00000 n
+0001799330 00000 n
+0001799592 00000 n
+0001799869 00000 n
+0001800131 00000 n
+0001800291 00000 n
+0001800553 00000 n
+0001800830 00000 n
+0001801090 00000 n
+0001801253 00000 n
+0001801515 00000 n
+0001801792 00000 n
+0001802069 00000 n
+0001802344 00000 n
+0001802604 00000 n
+0001802767 00000 n
+0001803029 00000 n
+0001803306 00000 n
+0001803583 00000 n
+0001803858 00000 n
+0001804118 00000 n
+0001804280 00000 n
+0001804542 00000 n
+0001804819 00000 n
+0001805096 00000 n
+0001805371 00000 n
+0001805631 00000 n
+0001805793 00000 n
+0001806055 00000 n
+0001806332 00000 n
+0001806609 00000 n
+0001806884 00000 n
+0001807144 00000 n
+0001807303 00000 n
+0001807565 00000 n
+0001807842 00000 n
+0001808104 00000 n
+0001808265 00000 n
+0001808527 00000 n
+0001808802 00000 n
+0001809079 00000 n
+0001809354 00000 n
+0001809614 00000 n
+0001809773 00000 n
+0001810033 00000 n
+0001810310 00000 n
+0001810585 00000 n
+0001810860 00000 n
+0001811135 00000 n
+0001811410 00000 n
+0001811685 00000 n
+0001811945 00000 n
+0001812105 00000 n
+0001812367 00000 n
+0001812644 00000 n
+0001812921 00000 n
+0001813196 00000 n
+0001813473 00000 n
+0001813748 00000 n
+0001814023 00000 n
+0001814298 00000 n
+0001814575 00000 n
+0001814852 00000 n
+0001815129 00000 n
+0001815406 00000 n
+0001815683 00000 n
+0001815960 00000 n
+0001816237 00000 n
+0001816512 00000 n
+0001816787 00000 n
+0001817062 00000 n
+0001817339 00000 n
+0001817616 00000 n
+0001817891 00000 n
+0001818166 00000 n
+0001818441 00000 n
+0001818716 00000 n
+0001818993 00000 n
+0001819270 00000 n
+0001819547 00000 n
+0001819824 00000 n
+0001820099 00000 n
+0001820374 00000 n
+0001820649 00000 n
+0001820924 00000 n
+0001821184 00000 n
+0001821330 00000 n
+0001821590 00000 n
+0001821865 00000 n
+0001822140 00000 n
+0001822415 00000 n
+0001822692 00000 n
+0001822952 00000 n
+0001823111 00000 n
+0001823264 00000 n
+0001823561 00000 n
+0001823818 00000 n
+0001824075 00000 n
+0001824387 00000 n
+0001824644 00000 n
+0001824901 00000 n
+0001825213 00000 n
+0001825470 00000 n
+0001825727 00000 n
+0001826039 00000 n
+0001826296 00000 n
+0001826553 00000 n
+0001826865 00000 n
+0001827122 00000 n
+0001827379 00000 n
+0001827691 00000 n
+0001827948 00000 n
+0001828205 00000 n
+0001828517 00000 n
+0001828774 00000 n
+0001829031 00000 n
+0001829343 00000 n
+0001829600 00000 n
+0001829857 00000 n
+0001830169 00000 n
+0001830426 00000 n
+0001830683 00000 n
+0001830997 00000 n
+0001831255 00000 n
+0001831513 00000 n
+0001831827 00000 n
+0001832085 00000 n
+0001832343 00000 n
+0001832657 00000 n
+0001832915 00000 n
+0001833173 00000 n
+0001833487 00000 n
+0001833745 00000 n
+0001834003 00000 n
+0001834317 00000 n
+0001834575 00000 n
+0001834833 00000 n
+0001835147 00000 n
+0001835405 00000 n
+0001835663 00000 n
+0001835977 00000 n
+0001836235 00000 n
+0001836493 00000 n
+0001836805 00000 n
+0001837062 00000 n
+0001837319 00000 n
+0001837631 00000 n
+0001837888 00000 n
+0001838145 00000 n
+0001838457 00000 n
+0001838714 00000 n
+0001838971 00000 n
+0001839283 00000 n
+0001839540 00000 n
+0001839797 00000 n
+0001840109 00000 n
+0001840366 00000 n
+0001840623 00000 n
+0001840935 00000 n
+0001841192 00000 n
+0001841449 00000 n
+0001841761 00000 n
+0001842018 00000 n
+0001842275 00000 n
+0001842587 00000 n
+0001842844 00000 n
+0001843101 00000 n
+0001843413 00000 n
+0001843670 00000 n
+0001843927 00000 n
+0001844239 00000 n
+0001844496 00000 n
+0001844753 00000 n
+0001845065 00000 n
+0001845322 00000 n
+0001845594 00000 n
+0001845866 00000 n
+0001846138 00000 n
+0001846410 00000 n
+0001846667 00000 n
+0001846979 00000 n
+0001847236 00000 n
+0001847508 00000 n
+0001847780 00000 n
+0001848052 00000 n
+0001848324 00000 n
+0001848581 00000 n
+0001848893 00000 n
+0001849150 00000 n
+0001849407 00000 n
+0001849719 00000 n
+0001849976 00000 n
+0001850233 00000 n
+0001850545 00000 n
+0001850802 00000 n
+0001851059 00000 n
+0001851371 00000 n
+0001851628 00000 n
+0001851885 00000 n
+0001852197 00000 n
+0001852454 00000 n
+0001852711 00000 n
+0001853023 00000 n
+0001853280 00000 n
+0001853537 00000 n
+0001853849 00000 n
+0001854106 00000 n
+0001854363 00000 n
+0001854677 00000 n
+0001854935 00000 n
+0001855193 00000 n
+0001855507 00000 n
+0001855765 00000 n
+0001856023 00000 n
+0001856337 00000 n
+0001856595 00000 n
+0001856853 00000 n
+0001857167 00000 n
+0001857425 00000 n
+0001857683 00000 n
+0001857997 00000 n
+0001858255 00000 n
+0001858513 00000 n
+0001858827 00000 n
+0001859085 00000 n
+0001859343 00000 n
+0001859657 00000 n
+0001859915 00000 n
+0001860173 00000 n
+0001860487 00000 n
+0001860745 00000 n
+0001861003 00000 n
+0001861317 00000 n
+0001861575 00000 n
+0001861833 00000 n
+0001862147 00000 n
+0001862405 00000 n
+0001862663 00000 n
+0001862977 00000 n
+0001863235 00000 n
+0001863493 00000 n
+0001863807 00000 n
+0001864065 00000 n
+0001864323 00000 n
+0001864637 00000 n
+0001864895 00000 n
+0001865153 00000 n
+0001865467 00000 n
+0001865725 00000 n
+0001865983 00000 n
+0001866297 00000 n
+0001866555 00000 n
+0001866813 00000 n
+0001867127 00000 n
+0001867385 00000 n
+0001867643 00000 n
+0001867957 00000 n
+0001868215 00000 n
+0001868473 00000 n
+0001868787 00000 n
+0001869045 00000 n
+0001869303 00000 n
+0001869617 00000 n
+0001869875 00000 n
+0001870133 00000 n
+0001870447 00000 n
+0001870705 00000 n
+0001870963 00000 n
+0001871277 00000 n
+0001871535 00000 n
+0001871793 00000 n
+0001872107 00000 n
+0001872365 00000 n
+0001872623 00000 n
+0001872937 00000 n
+0001873195 00000 n
+0001873453 00000 n
+0001873767 00000 n
+0001874025 00000 n
+0001874283 00000 n
+0001874597 00000 n
+0001874855 00000 n
+0001875113 00000 n
+0001875427 00000 n
+0001875685 00000 n
+0001875943 00000 n
+0001876257 00000 n
+0001876515 00000 n
+0001876773 00000 n
+0001877087 00000 n
+0001877345 00000 n
+0001877603 00000 n
+0001877917 00000 n
+0001878175 00000 n
+0001878433 00000 n
+0001878747 00000 n
+0001879005 00000 n
+0001879263 00000 n
+0001879577 00000 n
+0001879835 00000 n
+0001880093 00000 n
+0001880407 00000 n
+0001880665 00000 n
+0001880923 00000 n
+0001881237 00000 n
+0001881495 00000 n
+0001881753 00000 n
+0001882067 00000 n
+0001882325 00000 n
+0001882583 00000 n
+0001882897 00000 n
+0001883155 00000 n
+0001883413 00000 n
+0001883727 00000 n
+0001883985 00000 n
+0001884243 00000 n
+0001884557 00000 n
+0001884815 00000 n
+0001885073 00000 n
+0001885388 00000 n
+0001885646 00000 n
+0001885919 00000 n
+0001886192 00000 n
+0001886465 00000 n
+0001886738 00000 n
+0001887011 00000 n
+0001887284 00000 n
+0001887557 00000 n
+0001887830 00000 n
+0001888090 00000 n
+0001888404 00000 n
+0001888662 00000 n
+0001888920 00000 n
+0001889234 00000 n
+0001889492 00000 n
+0001889750 00000 n
+0001890064 00000 n
+0001890322 00000 n
+0001890580 00000 n
+0001890894 00000 n
+0001891152 00000 n
+0001891410 00000 n
+0001891724 00000 n
+0001891982 00000 n
+0001892240 00000 n
+0001892554 00000 n
+0001892812 00000 n
+0001893070 00000 n
+0001893384 00000 n
+0001893642 00000 n
+0001893900 00000 n
+0001894214 00000 n
+0001894472 00000 n
+0001894730 00000 n
+0001895044 00000 n
+0001895302 00000 n
+0001895560 00000 n
+0001895874 00000 n
+0001896132 00000 n
+0001896390 00000 n
+0001896704 00000 n
+0001896962 00000 n
+0001897220 00000 n
+0001897534 00000 n
+0001897792 00000 n
+0001898050 00000 n
+0001898364 00000 n
+0001898622 00000 n
+0001898880 00000 n
+0001899194 00000 n
+0001899452 00000 n
+0001899710 00000 n
+0001900024 00000 n
+0001900282 00000 n
+0001900540 00000 n
+0001900854 00000 n
+0001901112 00000 n
+0001901370 00000 n
+0001901684 00000 n
+0001901942 00000 n
+0001902200 00000 n
+0001902514 00000 n
+0001902772 00000 n
+0001903045 00000 n
+0001903318 00000 n
+0001903591 00000 n
+0001903864 00000 n
+0001904122 00000 n
+0001904436 00000 n
+0001904694 00000 n
+0001904952 00000 n
+0001905266 00000 n
+0001905524 00000 n
+0001905782 00000 n
+0001906096 00000 n
+0001906354 00000 n
+0001906612 00000 n
+0001906926 00000 n
+0001907184 00000 n
+0001907442 00000 n
+0001907756 00000 n
+0001908014 00000 n
+0001908272 00000 n
+0001908586 00000 n
+0001908844 00000 n
+0001909102 00000 n
+0001909416 00000 n
+0001909674 00000 n
+0001909932 00000 n
+0001910246 00000 n
+0001910504 00000 n
+0001910777 00000 n
+0001911050 00000 n
+0001911323 00000 n
+0001911596 00000 n
+0001911854 00000 n
+0001912168 00000 n
+0001912411 00000 n
+0001912723 00000 n
+0001912980 00000 n
+0001913237 00000 n
+0001913549 00000 n
+0001913806 00000 n
+0001914063 00000 n
+0001914375 00000 n
+0001914617 00000 n
+0001914929 00000 n
+0001915171 00000 n
+0001915483 00000 n
+0001915725 00000 n
+0001916037 00000 n
+0001916279 00000 n
+0001916591 00000 n
+0001916833 00000 n
+0001917145 00000 n
+0001917402 00000 n
+0001917674 00000 n
+0001917931 00000 n
+0001918243 00000 n
+0001918500 00000 n
+0001918757 00000 n
+0001919069 00000 n
+0001919326 00000 n
+0001919583 00000 n
+0001919895 00000 n
+0001920152 00000 n
+0001920409 00000 n
+0001920721 00000 n
+0001920978 00000 n
+0001921235 00000 n
+0001921547 00000 n
+0001921804 00000 n
+0001922061 00000 n
+0001922373 00000 n
+0001922630 00000 n
+0001922887 00000 n
+0001923199 00000 n
+0001923456 00000 n
+0001923713 00000 n
+0001924025 00000 n
+0001924282 00000 n
+0001924539 00000 n
+0001924851 00000 n
+0001925108 00000 n
+0001925365 00000 n
+0001925679 00000 n
+0001925937 00000 n
+0001926195 00000 n
+0001926509 00000 n
+0001926767 00000 n
+0001927025 00000 n
+0001927339 00000 n
+0001927597 00000 n
+0001927855 00000 n
+0001928169 00000 n
+0001928427 00000 n
+0001928685 00000 n
+0001928999 00000 n
+0001929257 00000 n
+0001929515 00000 n
+0001929829 00000 n
+0001930087 00000 n
+0001930345 00000 n
+0001930659 00000 n
+0001930917 00000 n
+0001931175 00000 n
+0001931489 00000 n
+0001931747 00000 n
+0001932020 00000 n
+0001932293 00000 n
+0001932551 00000 n
+0001932865 00000 n
+0001933123 00000 n
+0001933396 00000 n
+0001933669 00000 n
+0001933927 00000 n
+0001934239 00000 n
+0001934496 00000 n
+0001934768 00000 n
+0001935040 00000 n
+0001935297 00000 n
+0001935610 00000 n
+0001935867 00000 n
+0001936139 00000 n
+0001936411 00000 n
+0001936683 00000 n
+0001936955 00000 n
+0001937227 00000 n
+0001937499 00000 n
+0001937771 00000 n
+0001938043 00000 n
+0001938317 00000 n
+0001938591 00000 n
+0001938865 00000 n
+0001939139 00000 n
+0001939413 00000 n
+0001939687 00000 n
+0001939961 00000 n
+0001940235 00000 n
+0001940509 00000 n
+0001940783 00000 n
+0001941057 00000 n
+0001941331 00000 n
+0001941605 00000 n
+0001941879 00000 n
+0001942153 00000 n
+0001942427 00000 n
+0001942701 00000 n
+0001942975 00000 n
+0001943249 00000 n
+0001943523 00000 n
+0001943797 00000 n
+0001944071 00000 n
+0001944345 00000 n
+0001944619 00000 n
+0001944893 00000 n
+0001945167 00000 n
+0001945441 00000 n
+0001945715 00000 n
+0001945989 00000 n
+0001946263 00000 n
+0001946537 00000 n
+0001946811 00000 n
+0001947085 00000 n
+0001947359 00000 n
+0001947633 00000 n
+0001947907 00000 n
+0001948181 00000 n
+0001948455 00000 n
+0001948729 00000 n
+0001949003 00000 n
+0001949277 00000 n
+0001949551 00000 n
+0001949825 00000 n
+0001950099 00000 n
+0001950373 00000 n
+0001950647 00000 n
+0001950921 00000 n
+0001951195 00000 n
+0001951469 00000 n
+0001951743 00000 n
+0001952017 00000 n
+0001952291 00000 n
+0001952565 00000 n
+0001952839 00000 n
+0001953098 00000 n
+0001953410 00000 n
+0001953667 00000 n
+0001953939 00000 n
+0001954198 00000 n
+0001954495 00000 n
+0001954752 00000 n
+0001955009 00000 n
+0001955155 00000 n
+0001955301 00000 n
+0001955563 00000 n
+0001955825 00000 n
+0001955985 00000 n
+0001956245 00000 n
+0001956520 00000 n
+0001956795 00000 n
+0001957072 00000 n
+0001957349 00000 n
+0001957624 00000 n
+0001957899 00000 n
+0001958174 00000 n
+0001958449 00000 n
+0001958726 00000 n
+0001959001 00000 n
+0001959276 00000 n
+0001959551 00000 n
+0001959826 00000 n
+0001960103 00000 n
+0001960380 00000 n
+0001960657 00000 n
+0001960934 00000 n
+0001961211 00000 n
+0001961486 00000 n
+0001961761 00000 n
+0001962038 00000 n
+0001962313 00000 n
+0001962588 00000 n
+0001962865 00000 n
+0001963142 00000 n
+0001963419 00000 n
+0001963698 00000 n
+0001963973 00000 n
+0001964248 00000 n
+0001964523 00000 n
+0001964785 00000 n
+0001964947 00000 n
+0001965194 00000 n
+0001965356 00000 n
+0001965603 00000 n
+0001965765 00000 n
+0001966012 00000 n
+0001966174 00000 n
+0001966421 00000 n
+0001966583 00000 n
+0001966830 00000 n
+0001966992 00000 n
+0001967239 00000 n
+0001967401 00000 n
+0001967663 00000 n
+0001967925 00000 n
+0001968087 00000 n
+0001968349 00000 n
+0001968611 00000 n
+0001968773 00000 n
+0001969020 00000 n
+0001969182 00000 n
+0001969429 00000 n
+0001969592 00000 n
+0001969854 00000 n
+0001970116 00000 n
+0001970279 00000 n
+0001970524 00000 n
+0001970687 00000 n
+0001970932 00000 n
+0001971095 00000 n
+0001971357 00000 n
+0001971619 00000 n
+0001971782 00000 n
+0001972027 00000 n
+0001972190 00000 n
+0001972435 00000 n
+0001972598 00000 n
+0001972845 00000 n
+0001973005 00000 n
+0001973267 00000 n
+0001973544 00000 n
+0001973821 00000 n
+0001974098 00000 n
+0001974375 00000 n
+0001974637 00000 n
+0001974796 00000 n
+0001975058 00000 n
+0001975320 00000 n
+0001975479 00000 n
+0001975741 00000 n
+0001976003 00000 n
+0001976162 00000 n
+0001976424 00000 n
+0001976686 00000 n
+0001976845 00000 n
+0001977107 00000 n
+0001977369 00000 n
+0001977528 00000 n
+0001977790 00000 n
+0001978052 00000 n
+0001978211 00000 n
+0001978473 00000 n
+0001978735 00000 n
+0001978894 00000 n
+0001979156 00000 n
+0001979418 00000 n
+0001979577 00000 n
+0001979839 00000 n
+0001980101 00000 n
+0001980260 00000 n
+0001980522 00000 n
+0001980784 00000 n
+0001980946 00000 n
+0001981208 00000 n
+0001981485 00000 n
+0001981747 00000 n
+0001981910 00000 n
+0001982172 00000 n
+0001982449 00000 n
+0001982711 00000 n
+0001982874 00000 n
+0001983136 00000 n
+0001983398 00000 n
+0001983561 00000 n
+0001983823 00000 n
+0001984085 00000 n
+0001984250 00000 n
+0001984512 00000 n
+0001984789 00000 n
+0001985051 00000 n
+0001985216 00000 n
+0001985478 00000 n
+0001985755 00000 n
+0001986017 00000 n
+0001986182 00000 n
+0001986444 00000 n
+0001986721 00000 n
+0001986983 00000 n
+0001987142 00000 n
+0001987402 00000 n
+0001987662 00000 n
+0001987821 00000 n
+0001988081 00000 n
+0001988341 00000 n
+0001988506 00000 n
+0001988766 00000 n
+0001989026 00000 n
+0001989190 00000 n
+0001989450 00000 n
+0001989725 00000 n
+0001989987 00000 n
+0001990153 00000 n
+0001990415 00000 n
+0001990692 00000 n
+0001990954 00000 n
+0001991113 00000 n
+0001991375 00000 n
+0001991637 00000 n
+0001991796 00000 n
+0001992058 00000 n
+0001992320 00000 n
+0001992479 00000 n
+0001992741 00000 n
+0001993003 00000 n
+0001993162 00000 n
+0001993424 00000 n
+0001993686 00000 n
+0001993845 00000 n
+0001994107 00000 n
+0001994369 00000 n
+0001994529 00000 n
+0001994791 00000 n
+0001995053 00000 n
+0001995213 00000 n
+0001995475 00000 n
+0001995737 00000 n
+0001995897 00000 n
+0001996159 00000 n
+0001996421 00000 n
+0001996581 00000 n
+0001996843 00000 n
+0001997105 00000 n
+0001997265 00000 n
+0001997527 00000 n
+0001997789 00000 n
+0001997949 00000 n
+0001998211 00000 n
+0001998473 00000 n
+0001998632 00000 n
+0001998894 00000 n
+0001999156 00000 n
+0001999315 00000 n
+0001999577 00000 n
+0001999839 00000 n
+0001999998 00000 n
+0002000260 00000 n
+0002000522 00000 n
+0002000681 00000 n
+0002000943 00000 n
+0002001205 00000 n
+0002001364 00000 n
+0002001626 00000 n
+0002001888 00000 n
+0002002047 00000 n
+0002002309 00000 n
+0002002571 00000 n
+0002002730 00000 n
+0002002992 00000 n
+0002003254 00000 n
+0002003413 00000 n
+0002003675 00000 n
+0002003937 00000 n
+0002004096 00000 n
+0002004358 00000 n
+0002004620 00000 n
+0002004779 00000 n
+0002005041 00000 n
+0002005303 00000 n
+0002005463 00000 n
+0002005725 00000 n
+0002005987 00000 n
+0002006147 00000 n
+0002006409 00000 n
+0002006671 00000 n
+0002006831 00000 n
+0002007093 00000 n
+0002007355 00000 n
+0002007515 00000 n
+0002007777 00000 n
+0002008039 00000 n
+0002008202 00000 n
+0002008464 00000 n
+0002008741 00000 n
+0002009001 00000 n
+0002009164 00000 n
+0002009426 00000 n
+0002009703 00000 n
+0002009963 00000 n
+0002010125 00000 n
+0002010387 00000 n
+0002010664 00000 n
+0002010924 00000 n
+0002011086 00000 n
+0002011348 00000 n
+0002011625 00000 n
+0002011885 00000 n
+0002012044 00000 n
+0002012306 00000 n
+0002012568 00000 n
+0002012729 00000 n
+0002012991 00000 n
+0002013253 00000 n
+0002013412 00000 n
+0002013674 00000 n
+0002013949 00000 n
+0002014209 00000 n
+0002014369 00000 n
+0002014631 00000 n
+0002014908 00000 n
+0002015185 00000 n
+0002015462 00000 n
+0002015739 00000 n
+0002016016 00000 n
+0002016293 00000 n
+0002016570 00000 n
+0002016845 00000 n
+0002017105 00000 n
+0002017251 00000 n
+0002017511 00000 n
+0002017771 00000 n
+0002017936 00000 n
+0002018073 00000 n
+0002018329 00000 n
+0002018600 00000 n
+0002018871 00000 n
+0002019142 00000 n
+0002019413 00000 n
+0002019684 00000 n
+0002019955 00000 n
+0002020226 00000 n
+0002020497 00000 n
+0002020768 00000 n
+0002021039 00000 n
+0002021310 00000 n
+0002021583 00000 n
+0002021856 00000 n
+0002022129 00000 n
+0002022402 00000 n
+0002022675 00000 n
+0002022948 00000 n
+0002023221 00000 n
+0002023494 00000 n
+0002023767 00000 n
+0002024040 00000 n
+0002024313 00000 n
+0002024586 00000 n
+0002024859 00000 n
+0002025132 00000 n
+0002025405 00000 n
+0002025678 00000 n
+0002025951 00000 n
+0002026224 00000 n
+0002026497 00000 n
+0002026770 00000 n
+0002027043 00000 n
+0002027316 00000 n
+0002027589 00000 n
+0002027862 00000 n
+0002028135 00000 n
+0002028408 00000 n
+0002028681 00000 n
+0002028954 00000 n
+0002029227 00000 n
+0002029500 00000 n
+0002029773 00000 n
+0002030046 00000 n
+0002030319 00000 n
+0002030592 00000 n
+0002030865 00000 n
+0002031138 00000 n
+0002031411 00000 n
+0002031684 00000 n
+0002031957 00000 n
+0002032230 00000 n
+0002032503 00000 n
+0002032776 00000 n
+0002033049 00000 n
+0002033322 00000 n
+0002033595 00000 n
+0002033868 00000 n
+0002034141 00000 n
+0002034414 00000 n
+0002034687 00000 n
+0002034960 00000 n
+0002035233 00000 n
+0002035506 00000 n
+0002035779 00000 n
+0002036052 00000 n
+0002036325 00000 n
+0002036598 00000 n
+0002036871 00000 n
+0002037144 00000 n
+0002037417 00000 n
+0002037690 00000 n
+0002037963 00000 n
+0002038236 00000 n
+0002038509 00000 n
+0002038782 00000 n
+0002039055 00000 n
+0002039328 00000 n
+0002039599 00000 n
+0002039855 00000 n
+0002040024 00000 n
+0002040162 00000 n
+0002040418 00000 n
+0002040689 00000 n
+0002040960 00000 n
+0002041231 00000 n
+0002041502 00000 n
+0002041773 00000 n
+0002042044 00000 n
+0002042315 00000 n
+0002042586 00000 n
+0002042859 00000 n
+0002043132 00000 n
+0002043405 00000 n
+0002043678 00000 n
+0002043951 00000 n
+0002044224 00000 n
+0002044497 00000 n
+0002044768 00000 n
+0002045039 00000 n
+0002045310 00000 n
+0002045581 00000 n
+0002045852 00000 n
+0002046123 00000 n
+0002046394 00000 n
+0002046665 00000 n
+0002046936 00000 n
+0002047207 00000 n
+0002047478 00000 n
+0002047749 00000 n
+0002048020 00000 n
+0002048291 00000 n
+0002048562 00000 n
+0002048833 00000 n
+0002049104 00000 n
+0002049375 00000 n
+0002049646 00000 n
+0002049919 00000 n
+0002050192 00000 n
+0002050465 00000 n
+0002050738 00000 n
+0002051011 00000 n
+0002051284 00000 n
+0002051557 00000 n
+0002051828 00000 n
+0002052084 00000 n
+0002052247 00000 n
+0002052401 00000 n
+0002052698 00000 n
+0002052955 00000 n
+0002053212 00000 n
+0002053524 00000 n
+0002053781 00000 n
+0002054038 00000 n
+0002054350 00000 n
+0002054607 00000 n
+0002054864 00000 n
+0002055176 00000 n
+0002055433 00000 n
+0002055690 00000 n
+0002056002 00000 n
+0002056259 00000 n
+0002056516 00000 n
+0002056828 00000 n
+0002057085 00000 n
+0002057342 00000 n
+0002057654 00000 n
+0002057911 00000 n
+0002058168 00000 n
+0002058480 00000 n
+0002058737 00000 n
+0002058994 00000 n
+0002059306 00000 n
+0002059563 00000 n
+0002059820 00000 n
+0002060134 00000 n
+0002060392 00000 n
+0002060650 00000 n
+0002060964 00000 n
+0002061222 00000 n
+0002061480 00000 n
+0002061794 00000 n
+0002062052 00000 n
+0002062310 00000 n
+0002062624 00000 n
+0002062882 00000 n
+0002063140 00000 n
+0002063454 00000 n
+0002063712 00000 n
+0002063970 00000 n
+0002064284 00000 n
+0002064542 00000 n
+0002064800 00000 n
+0002065114 00000 n
+0002065372 00000 n
+0002065630 00000 n
+0002065942 00000 n
+0002066199 00000 n
+0002066456 00000 n
+0002066768 00000 n
+0002067025 00000 n
+0002067282 00000 n
+0002067594 00000 n
+0002067851 00000 n
+0002068108 00000 n
+0002068420 00000 n
+0002068677 00000 n
+0002068934 00000 n
+0002069246 00000 n
+0002069503 00000 n
+0002069760 00000 n
+0002070072 00000 n
+0002070329 00000 n
+0002070586 00000 n
+0002070898 00000 n
+0002071155 00000 n
+0002071412 00000 n
+0002071724 00000 n
+0002071981 00000 n
+0002072238 00000 n
+0002072550 00000 n
+0002072807 00000 n
+0002073064 00000 n
+0002073376 00000 n
+0002073633 00000 n
+0002073890 00000 n
+0002074202 00000 n
+0002074459 00000 n
+0002074731 00000 n
+0002075003 00000 n
+0002075275 00000 n
+0002075547 00000 n
+0002075804 00000 n
+0002076116 00000 n
+0002076373 00000 n
+0002076645 00000 n
+0002076917 00000 n
+0002077189 00000 n
+0002077461 00000 n
+0002077718 00000 n
+0002078030 00000 n
+0002078287 00000 n
+0002078544 00000 n
+0002078856 00000 n
+0002079113 00000 n
+0002079370 00000 n
+0002079682 00000 n
+0002079939 00000 n
+0002080196 00000 n
+0002080508 00000 n
+0002080765 00000 n
+0002081022 00000 n
+0002081334 00000 n
+0002081591 00000 n
+0002081848 00000 n
+0002082160 00000 n
+0002082417 00000 n
+0002082674 00000 n
+0002082986 00000 n
+0002083243 00000 n
+0002083500 00000 n
+0002083814 00000 n
+0002084072 00000 n
+0002084330 00000 n
+0002084644 00000 n
+0002084902 00000 n
+0002085160 00000 n
+0002085474 00000 n
+0002085732 00000 n
+0002085990 00000 n
+0002086304 00000 n
+0002086562 00000 n
+0002086820 00000 n
+0002087134 00000 n
+0002087392 00000 n
+0002087650 00000 n
+0002087964 00000 n
+0002088222 00000 n
+0002088480 00000 n
+0002088794 00000 n
+0002089052 00000 n
+0002089310 00000 n
+0002089624 00000 n
+0002089882 00000 n
+0002090140 00000 n
+0002090454 00000 n
+0002090712 00000 n
+0002090970 00000 n
+0002091284 00000 n
+0002091542 00000 n
+0002091800 00000 n
+0002092114 00000 n
+0002092372 00000 n
+0002092630 00000 n
+0002092944 00000 n
+0002093202 00000 n
+0002093460 00000 n
+0002093774 00000 n
+0002094032 00000 n
+0002094290 00000 n
+0002094604 00000 n
+0002094862 00000 n
+0002095120 00000 n
+0002095434 00000 n
+0002095692 00000 n
+0002095950 00000 n
+0002096264 00000 n
+0002096522 00000 n
+0002096780 00000 n
+0002097094 00000 n
+0002097352 00000 n
+0002097610 00000 n
+0002097924 00000 n
+0002098182 00000 n
+0002098440 00000 n
+0002098754 00000 n
+0002099012 00000 n
+0002099270 00000 n
+0002099584 00000 n
+0002099842 00000 n
+0002100100 00000 n
+0002100414 00000 n
+0002100672 00000 n
+0002100930 00000 n
+0002101244 00000 n
+0002101502 00000 n
+0002101760 00000 n
+0002102074 00000 n
+0002102332 00000 n
+0002102590 00000 n
+0002102904 00000 n
+0002103162 00000 n
+0002103420 00000 n
+0002103734 00000 n
+0002103992 00000 n
+0002104250 00000 n
+0002104564 00000 n
+0002104822 00000 n
+0002105080 00000 n
+0002105394 00000 n
+0002105652 00000 n
+0002105910 00000 n
+0002106224 00000 n
+0002106482 00000 n
+0002106740 00000 n
+0002107054 00000 n
+0002107312 00000 n
+0002107570 00000 n
+0002107884 00000 n
+0002108142 00000 n
+0002108400 00000 n
+0002108714 00000 n
+0002108972 00000 n
+0002109230 00000 n
+0002109544 00000 n
+0002109802 00000 n
+0002110060 00000 n
+0002110374 00000 n
+0002110632 00000 n
+0002110890 00000 n
+0002111204 00000 n
+0002111462 00000 n
+0002111720 00000 n
+0002112034 00000 n
+0002112292 00000 n
+0002112550 00000 n
+0002112864 00000 n
+0002113122 00000 n
+0002113380 00000 n
+0002113694 00000 n
+0002113952 00000 n
+0002114210 00000 n
+0002114525 00000 n
+0002114783 00000 n
+0002115056 00000 n
+0002115329 00000 n
+0002115602 00000 n
+0002115875 00000 n
+0002116148 00000 n
+0002116421 00000 n
+0002116694 00000 n
+0002116967 00000 n
+0002117227 00000 n
+0002117541 00000 n
+0002117799 00000 n
+0002118057 00000 n
+0002118371 00000 n
+0002118629 00000 n
+0002118887 00000 n
+0002119201 00000 n
+0002119459 00000 n
+0002119717 00000 n
+0002120031 00000 n
+0002120289 00000 n
+0002120547 00000 n
+0002120861 00000 n
+0002121119 00000 n
+0002121377 00000 n
+0002121691 00000 n
+0002121949 00000 n
+0002122207 00000 n
+0002122521 00000 n
+0002122779 00000 n
+0002123037 00000 n
+0002123351 00000 n
+0002123609 00000 n
+0002123867 00000 n
+0002124181 00000 n
+0002124439 00000 n
+0002124697 00000 n
+0002125011 00000 n
+0002125269 00000 n
+0002125527 00000 n
+0002125841 00000 n
+0002126099 00000 n
+0002126357 00000 n
+0002126671 00000 n
+0002126929 00000 n
+0002127187 00000 n
+0002127501 00000 n
+0002127759 00000 n
+0002128017 00000 n
+0002128331 00000 n
+0002128589 00000 n
+0002128847 00000 n
+0002129161 00000 n
+0002129419 00000 n
+0002129677 00000 n
+0002129991 00000 n
+0002130249 00000 n
+0002130507 00000 n
+0002130821 00000 n
+0002131079 00000 n
+0002131337 00000 n
+0002131651 00000 n
+0002131909 00000 n
+0002132182 00000 n
+0002132455 00000 n
+0002132728 00000 n
+0002133001 00000 n
+0002133259 00000 n
+0002133573 00000 n
+0002133831 00000 n
+0002134089 00000 n
+0002134403 00000 n
+0002134661 00000 n
+0002134919 00000 n
+0002135233 00000 n
+0002135491 00000 n
+0002135749 00000 n
+0002136063 00000 n
+0002136321 00000 n
+0002136579 00000 n
+0002136893 00000 n
+0002137151 00000 n
+0002137409 00000 n
+0002137723 00000 n
+0002137981 00000 n
+0002138239 00000 n
+0002138553 00000 n
+0002138811 00000 n
+0002139069 00000 n
+0002139383 00000 n
+0002139641 00000 n
+0002139914 00000 n
+0002140187 00000 n
+0002140460 00000 n
+0002140733 00000 n
+0002141006 00000 n
+0002141264 00000 n
+0002141578 00000 n
+0002141821 00000 n
+0002142133 00000 n
+0002142390 00000 n
+0002142647 00000 n
+0002142959 00000 n
+0002143216 00000 n
+0002143473 00000 n
+0002143785 00000 n
+0002144027 00000 n
+0002144339 00000 n
+0002144581 00000 n
+0002144893 00000 n
+0002145135 00000 n
+0002145447 00000 n
+0002145689 00000 n
+0002146001 00000 n
+0002146243 00000 n
+0002146555 00000 n
+0002146812 00000 n
+0002147084 00000 n
+0002147341 00000 n
+0002147653 00000 n
+0002147910 00000 n
+0002148167 00000 n
+0002148479 00000 n
+0002148736 00000 n
+0002148993 00000 n
+0002149305 00000 n
+0002149562 00000 n
+0002149819 00000 n
+0002150131 00000 n
+0002150388 00000 n
+0002150645 00000 n
+0002150957 00000 n
+0002151214 00000 n
+0002151471 00000 n
+0002151783 00000 n
+0002152040 00000 n
+0002152297 00000 n
+0002152609 00000 n
+0002152866 00000 n
+0002153123 00000 n
+0002153435 00000 n
+0002153692 00000 n
+0002153949 00000 n
+0002154261 00000 n
+0002154518 00000 n
+0002154775 00000 n
+0002155089 00000 n
+0002155347 00000 n
+0002155605 00000 n
+0002155919 00000 n
+0002156177 00000 n
+0002156435 00000 n
+0002156749 00000 n
+0002157007 00000 n
+0002157265 00000 n
+0002157579 00000 n
+0002157837 00000 n
+0002158095 00000 n
+0002158409 00000 n
+0002158667 00000 n
+0002158925 00000 n
+0002159239 00000 n
+0002159497 00000 n
+0002159755 00000 n
+0002160069 00000 n
+0002160327 00000 n
+0002160585 00000 n
+0002160899 00000 n
+0002161157 00000 n
+0002161430 00000 n
+0002161703 00000 n
+0002161961 00000 n
+0002162275 00000 n
+0002162533 00000 n
+0002162806 00000 n
+0002163079 00000 n
+0002163337 00000 n
+0002163649 00000 n
+0002163906 00000 n
+0002164178 00000 n
+0002164450 00000 n
+0002164707 00000 n
+0002165020 00000 n
+0002165277 00000 n
+0002165549 00000 n
+0002165821 00000 n
+0002166093 00000 n
+0002166365 00000 n
+0002166637 00000 n
+0002166909 00000 n
+0002167181 00000 n
+0002167453 00000 n
+0002167727 00000 n
+0002168001 00000 n
+0002168275 00000 n
+0002168549 00000 n
+0002168823 00000 n
+0002169097 00000 n
+0002169371 00000 n
+0002169645 00000 n
+0002169919 00000 n
+0002170193 00000 n
+0002170467 00000 n
+0002170741 00000 n
+0002171015 00000 n
+0002171289 00000 n
+0002171563 00000 n
+0002171837 00000 n
+0002172111 00000 n
+0002172385 00000 n
+0002172659 00000 n
+0002172933 00000 n
+0002173207 00000 n
+0002173481 00000 n
+0002173755 00000 n
+0002174029 00000 n
+0002174303 00000 n
+0002174577 00000 n
+0002174851 00000 n
+0002175125 00000 n
+0002175399 00000 n
+0002175673 00000 n
+0002175947 00000 n
+0002176221 00000 n
+0002176495 00000 n
+0002176769 00000 n
+0002177043 00000 n
+0002177317 00000 n
+0002177591 00000 n
+0002177865 00000 n
+0002178139 00000 n
+0002178413 00000 n
+0002178687 00000 n
+0002178961 00000 n
+0002179235 00000 n
+0002179509 00000 n
+0002179783 00000 n
+0002180057 00000 n
+0002180331 00000 n
+0002180605 00000 n
+0002180879 00000 n
+0002181153 00000 n
+0002181427 00000 n
+0002181701 00000 n
+0002181975 00000 n
+0002182249 00000 n
+0002182508 00000 n
+0002182820 00000 n
+0002183077 00000 n
+0002183349 00000 n
+0002183608 00000 n
+0002183905 00000 n
+0002184162 00000 n
+0002184419 00000 n
+0002184566 00000 n
+0002184713 00000 n
+0002184975 00000 n
+0002185250 00000 n
+0002185525 00000 n
+0002185802 00000 n
+0002186079 00000 n
+0002186339 00000 n
+0002186500 00000 n
+0002186760 00000 n
+0002187035 00000 n
+0002187310 00000 n
+0002187585 00000 n
+0002187860 00000 n
+0002188135 00000 n
+0002188412 00000 n
+0002188689 00000 n
+0002188966 00000 n
+0002189243 00000 n
+0002189520 00000 n
+0002189797 00000 n
+0002190074 00000 n
+0002190349 00000 n
+0002190624 00000 n
+0002190899 00000 n
+0002191176 00000 n
+0002191453 00000 n
+0002191728 00000 n
+0002192003 00000 n
+0002192278 00000 n
+0002192553 00000 n
+0002192828 00000 n
+0002193105 00000 n
+0002193380 00000 n
+0002193655 00000 n
+0002193930 00000 n
+0002194205 00000 n
+0002194480 00000 n
+0002194757 00000 n
+0002195034 00000 n
+0002195309 00000 n
+0002195586 00000 n
+0002195863 00000 n
+0002196140 00000 n
+0002196415 00000 n
+0002196690 00000 n
+0002196967 00000 n
+0002197242 00000 n
+0002197517 00000 n
+0002197794 00000 n
+0002198071 00000 n
+0002198348 00000 n
+0002198627 00000 n
+0002198904 00000 n
+0002199181 00000 n
+0002199458 00000 n
+0002199735 00000 n
+0002200012 00000 n
+0002200287 00000 n
+0002200562 00000 n
+0002200837 00000 n
+0002201112 00000 n
+0002201387 00000 n
+0002201662 00000 n
+0002201937 00000 n
+0002202212 00000 n
+0002202474 00000 n
+0002202637 00000 n
+0002202897 00000 n
+0002203174 00000 n
+0002203436 00000 n
+0002203599 00000 n
+0002203861 00000 n
+0002204121 00000 n
+0002204284 00000 n
+0002204546 00000 n
+0002204808 00000 n
+0002204971 00000 n
+0002205233 00000 n
+0002205510 00000 n
+0002205772 00000 n
+0002205935 00000 n
+0002206197 00000 n
+0002206457 00000 n
+0002206620 00000 n
+0002206882 00000 n
+0002207144 00000 n
+0002207307 00000 n
+0002207569 00000 n
+0002207831 00000 n
+0002207994 00000 n
+0002208256 00000 n
+0002208518 00000 n
+0002208681 00000 n
+0002208943 00000 n
+0002209220 00000 n
+0002209497 00000 n
+0002209757 00000 n
+0002209920 00000 n
+0002210182 00000 n
+0002210444 00000 n
+0002210608 00000 n
+0002210870 00000 n
+0002211145 00000 n
+0002211407 00000 n
+0002211571 00000 n
+0002211831 00000 n
+0002212091 00000 n
+0002212254 00000 n
+0002212514 00000 n
+0002212774 00000 n
+0002212938 00000 n
+0002213198 00000 n
+0002213458 00000 n
+0002213622 00000 n
+0002213884 00000 n
+0002214159 00000 n
+0002214421 00000 n
+0002214585 00000 n
+0002214845 00000 n
+0002215105 00000 n
+0002215269 00000 n
+0002215529 00000 n
+0002215789 00000 n
+0002215953 00000 n
+0002216215 00000 n
+0002216475 00000 n
+0002216637 00000 n
+0002216899 00000 n
+0002217174 00000 n
+0002217449 00000 n
+0002217726 00000 n
+0002218003 00000 n
+0002218280 00000 n
+0002218557 00000 n
+0002218834 00000 n
+0002219109 00000 n
+0002219369 00000 n
+0002219529 00000 n
+0002219791 00000 n
+0002220068 00000 n
+0002220330 00000 n
+0002220490 00000 n
+0002220752 00000 n
+0002221029 00000 n
+0002221291 00000 n
+0002221451 00000 n
+0002221713 00000 n
+0002221990 00000 n
+0002222252 00000 n
+0002222412 00000 n
+0002222674 00000 n
+0002222951 00000 n
+0002223213 00000 n
+0002223373 00000 n
+0002223635 00000 n
+0002223912 00000 n
+0002224174 00000 n
+0002224334 00000 n
+0002224596 00000 n
+0002224873 00000 n
+0002225135 00000 n
+0002225295 00000 n
+0002225557 00000 n
+0002225834 00000 n
+0002226096 00000 n
+0002226256 00000 n
+0002226518 00000 n
+0002226795 00000 n
+0002227057 00000 n
+0002227217 00000 n
+0002227479 00000 n
+0002227756 00000 n
+0002228018 00000 n
+0002228181 00000 n
+0002228443 00000 n
+0002228720 00000 n
+0002228997 00000 n
+0002229259 00000 n
+0002229423 00000 n
+0002229685 00000 n
+0002229962 00000 n
+0002230239 00000 n
+0002230501 00000 n
+0002230665 00000 n
+0002230927 00000 n
+0002231204 00000 n
+0002231481 00000 n
+0002231743 00000 n
+0002231907 00000 n
+0002232169 00000 n
+0002232446 00000 n
+0002232723 00000 n
+0002232985 00000 n
+0002233151 00000 n
+0002233413 00000 n
+0002233690 00000 n
+0002233967 00000 n
+0002234244 00000 n
+0002234506 00000 n
+0002234672 00000 n
+0002234934 00000 n
+0002235211 00000 n
+0002235488 00000 n
+0002235765 00000 n
+0002236027 00000 n
+0002236193 00000 n
+0002236455 00000 n
+0002236730 00000 n
+0002237007 00000 n
+0002237284 00000 n
+0002237546 00000 n
+0002237706 00000 n
+0002237966 00000 n
+0002238241 00000 n
+0002238503 00000 n
+0002238663 00000 n
+0002238923 00000 n
+0002239198 00000 n
+0002239460 00000 n
+0002239626 00000 n
+0002239886 00000 n
+0002240161 00000 n
+0002240436 00000 n
+0002240698 00000 n
+0002240863 00000 n
+0002241123 00000 n
+0002241398 00000 n
+0002241675 00000 n
+0002241937 00000 n
+0002242104 00000 n
+0002242366 00000 n
+0002242641 00000 n
+0002242918 00000 n
+0002243193 00000 n
+0002243470 00000 n
+0002243732 00000 n
+0002243892 00000 n
+0002244154 00000 n
+0002244431 00000 n
+0002244693 00000 n
+0002244853 00000 n
+0002245115 00000 n
+0002245392 00000 n
+0002245654 00000 n
+0002245814 00000 n
+0002246076 00000 n
+0002246353 00000 n
+0002246615 00000 n
+0002246775 00000 n
+0002247037 00000 n
+0002247314 00000 n
+0002247576 00000 n
+0002247736 00000 n
+0002247998 00000 n
+0002248275 00000 n
+0002248537 00000 n
+0002248698 00000 n
+0002248960 00000 n
+0002249237 00000 n
+0002249499 00000 n
+0002249660 00000 n
+0002249922 00000 n
+0002250199 00000 n
+0002250461 00000 n
+0002250622 00000 n
+0002250884 00000 n
+0002251161 00000 n
+0002251423 00000 n
+0002251584 00000 n
+0002251846 00000 n
+0002252123 00000 n
+0002252385 00000 n
+0002252546 00000 n
+0002252808 00000 n
+0002253085 00000 n
+0002253347 00000 n
+0002253508 00000 n
+0002253770 00000 n
+0002254047 00000 n
+0002254309 00000 n
+0002254469 00000 n
+0002254731 00000 n
+0002255008 00000 n
+0002255268 00000 n
+0002255428 00000 n
+0002255690 00000 n
+0002255967 00000 n
+0002256227 00000 n
+0002256387 00000 n
+0002256649 00000 n
+0002256926 00000 n
+0002257188 00000 n
+0002257348 00000 n
+0002257610 00000 n
+0002257887 00000 n
+0002258149 00000 n
+0002258309 00000 n
+0002258571 00000 n
+0002258848 00000 n
+0002259110 00000 n
+0002259270 00000 n
+0002259532 00000 n
+0002259809 00000 n
+0002260071 00000 n
+0002260231 00000 n
+0002260493 00000 n
+0002260770 00000 n
+0002261032 00000 n
+0002261192 00000 n
+0002261454 00000 n
+0002261731 00000 n
+0002261993 00000 n
+0002262153 00000 n
+0002262415 00000 n
+0002262692 00000 n
+0002262954 00000 n
+0002263114 00000 n
+0002263376 00000 n
+0002263653 00000 n
+0002263915 00000 n
+0002264076 00000 n
+0002264338 00000 n
+0002264615 00000 n
+0002264877 00000 n
+0002265038 00000 n
+0002265300 00000 n
+0002265577 00000 n
+0002265839 00000 n
+0002266000 00000 n
+0002266262 00000 n
+0002266539 00000 n
+0002266801 00000 n
+0002266962 00000 n
+0002267224 00000 n
+0002267501 00000 n
+0002267761 00000 n
+0002267925 00000 n
+0002268187 00000 n
+0002268464 00000 n
+0002268741 00000 n
+0002269016 00000 n
+0002269276 00000 n
+0002269440 00000 n
+0002269702 00000 n
+0002269979 00000 n
+0002270256 00000 n
+0002270531 00000 n
+0002270791 00000 n
+0002270954 00000 n
+0002271216 00000 n
+0002271493 00000 n
+0002271770 00000 n
+0002272045 00000 n
+0002272305 00000 n
+0002272468 00000 n
+0002272730 00000 n
+0002273007 00000 n
+0002273284 00000 n
+0002273559 00000 n
+0002273819 00000 n
+0002273979 00000 n
+0002274241 00000 n
+0002274518 00000 n
+0002274780 00000 n
+0002274942 00000 n
+0002275204 00000 n
+0002275479 00000 n
+0002275756 00000 n
+0002276031 00000 n
+0002276291 00000 n
+0002276451 00000 n
+0002276711 00000 n
+0002276988 00000 n
+0002277263 00000 n
+0002277538 00000 n
+0002277813 00000 n
+0002278088 00000 n
+0002278363 00000 n
+0002278623 00000 n
+0002278784 00000 n
+0002279046 00000 n
+0002279323 00000 n
+0002279600 00000 n
+0002279875 00000 n
+0002280152 00000 n
+0002280427 00000 n
+0002280702 00000 n
+0002280977 00000 n
+0002281254 00000 n
+0002281531 00000 n
+0002281808 00000 n
+0002282085 00000 n
+0002282362 00000 n
+0002282639 00000 n
+0002282916 00000 n
+0002283191 00000 n
+0002283466 00000 n
+0002283741 00000 n
+0002284018 00000 n
+0002284295 00000 n
+0002284570 00000 n
+0002284845 00000 n
+0002285120 00000 n
+0002285395 00000 n
+0002285672 00000 n
+0002285949 00000 n
+0002286226 00000 n
+0002286503 00000 n
+0002286778 00000 n
+0002287053 00000 n
+0002287328 00000 n
+0002287603 00000 n
+0002287863 00000 n
+0002288010 00000 n
+0002288270 00000 n
+0002288545 00000 n
+0002288820 00000 n
+0002289095 00000 n
+0002289372 00000 n
+0002289632 00000 n
+0002289735 00000 n
+trailer
+<<
+/Size 6673
+/Root 1 0 R
+/Info 6672 0 R
+>>
+startxref
+2289967
+%%EOF
/Modules/ARM/STM32F10xRxT/PCB/STM32F10XRXT.pcb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/PrjInfo.txt
0,0 → 1,16
[InfoShortDescription.en]
ARM microcontroller module
 
[InfoShortDescription.cs]
Modul pro ARM
 
[InfoLongDescription.en]
 
 
[InfoLongDescription.cs]
Modul pro práci s procesory ARM řady STM32.
 
[InfoBuyUST]
http://www.ust.cz/shop/product_info.php?cPath=22_36&products_id=84
 
[End]
/Modules/ARM/STM32F10xRxT/DOC/SRC/STM32F10xRxT_Top_Big.jpg
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/DOC/souhrn.pdf
0,0 → 1,2200
%PDF-1.4
%¡³Å×
+3 0 obj
+<</Type /Pages /Kids [8 0 R ]/Count 1 >>endobj
+
+4 0 obj
+<</CreationDate (D:20101203131325+01'00')/ModDate (D:20101203131325+01'00')/Producer (Acrobat Distiller 5.0.5 \(Windows\))/Author (mija)/Creator (PScript5.dll Version 5.2)/Title (SCHEMATIC1 : PAGE1)>>endobj
+
+stream
+<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d' bytes='1030'?><rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'><rdf:Description about='' xmlns='http://ns.adobe.com/pdf/1.3/' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:CreationDate='2010-12-03T12:13:25Z' pdf:ModDate='2010-12-03T12:13:25Z' pdf:Producer='Acrobat Distiller 5.0.5 (Windows)' pdf:Author='mija' pdf:Creator='PScript5.dll Version 5.2' pdf:Title='SCHEMATIC1 : PAGE1'/>
+<rdf:Description about='' xmlns='http://ns.adobe.com/xap/1.0/' xmlns:xap='http://ns.adobe.com/xap/1.0/' xap:CreateDate='2010-12-03T12:13:25Z' xap:ModifyDate='2010-12-03T12:13:25Z' xap:Author='mija' xap:MetadataDate='2010-12-03T12:13:25Z'><xap:Title><rdf:Alt><rdf:li xml:lang='x-default'>SCHEMATIC1 : PAGE1</rdf:li></rdf:Alt></xap:Title></rdf:Description>
+<rdf:Description about='' xmlns='http://purl.org/dc/elements/1.1/' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:creator='mija' dc:title='SCHEMATIC1 : PAGE1'/>
+</rdf:RDF><?xpacket end='r'?>
+ 7 0 obj
+<</Type /Catalog /Pages 3 0 R /Metadata 5 0 R /PageLabels 2 0 R >>endobj
+
+8 0 obj
+<</Type /Page /Parent 3 0 R /Resources 9 0 R /Contents 14 0 R /MediaBox [0 0 595 842 ]/CropBox [0 0 595 842 ]/Rotate 0 >>endobj
+
+9 0 obj
+<</ProcSet [/PDF /Text ]/Font <</TT2 11 0 R /TT4 16 0 R /FXF1 37 0 R /FXF2 66 0 R /FXF3 69 0 R >>/ExtGState <</GS1 34 0 R /FX1 38 0 R /FX2 39 0 R /FX3 40 0 R /FX4 41 0 R /FX5 42 0 R /FX6 43 0 R /FX7 44 0 R /FX8 45 0 R /FX9 46 0 R /FX10 47 0 R /FX11 48 0 R /FX12 49 0 R /FX13 50 0 R /FX14 51 0 R /FX15 52 0 R /FX16 53 0 R /FX17 54 0 R /FX18 55 0 R /FX19 56 0 R /FX20 57 0 R /FX21 58 0 R /FX22 59 0 R /FX23 60 0 R /FX24 61 0 R /FX25 62 0 R /FX26 63 0 R /FX27 70 0 R /FX28 71 0 R /FX29 72 0 R >>/ColorSpace <</Cs6 12 0 R >>>>endobj
+
+10 0 obj
+<</Type /FontDescriptor /Ascent 905 /CapHeight 718 /Descent -211 /Flags 32 /FontBBox [-665 -325 2000 1006 ]/FontName /BDBDJC+Arial /ItalicAngle 0 /StemV 94 /XHeight 515 /FontFile2 31 0 R >>endobj
+
+11 0 obj
+<</Type /Font /Subtype /TrueType /FirstChar 32 /LastChar 122 /Widths [278 0 0 556 0 0 0 0 0 0 0 0 278 333 278 278 556 556 556 556 556 556 556 556 556 556 278 0 584 584 584 0 0 667 667 722 722 667 611 778 722 278 500 667 556 833 722 778 667 778 722 667 611 722 667 944 667 0 0 0 0 0 0 556 0 556 556 500 556 556 278 0 556 222 0 500 222 833 556 556 556 0 333 500 278 556 500 0 500 500 500 ]/Encoding /WinAnsiEncoding /BaseFont /BDBDJC+Arial /FontDescriptor 10 0 R >>endobj
+
+12 0 obj
+[/ICCBased 33 0 R ]endobj
+
+13 0 obj
+4170 endobj
+
+14 0 obj
+<</Length 153994 /Filter /FlateDecode >>stream
+ozÌÃò·üðº<nó0ä‡?üøâ7/Þ|d½.i“ýç¿þymÿáãoÊã4ŽcûÅýùñóCZ§9זÒü˜«ôßýÝËéÕßüæÅÏ>^°²=.kœLÛ¶]pò|óë<¦›ÿï)g›¼< s•y^Oµ‡!I›ûð»Ãã¸ÊxVüuÊn\ ÒG÷SíáÿòpÒW§óäïþ¾þ±Omaxø–ÍT&F™֌íÙ@¦:%¶”ÿ=Y{íIþó§Û}Zÿ󇇩vÀ´a\ÇÛã
+Î~ªqeón\G×\æ:õï×\–Ç¡ø5ÈO8  j
+ó××3m©8Ƭöށ•óŒδ¤ýùLÓ ³·âŽ³›pü¤ÎZ¡ý횑>¨ÃQöÃ1?N[Õ¤YˆúÁ¨ýRe­2V9æ¡÷Ä÷ßýíÏÞ·ÞËã,Ssèßâ×?6ðkÀ_—ª2Ï¥ýúÍǯÿ¢ý:T{ëqÎ[_Žß|÷ÝÇ_|÷õ;¥(ªŒ^íùuÑö¾þå׿øu_§ÇaSÚqRgxÞªdîÇ÷?ûð3åg®“b«Óþõ¸ÕU©t†~õ¡/b'TíI¤®½éǪ²UΧªΩ³úþãð˜†Y7ԏïÀ¿n°­®ÜÛ",ó—÷ý÷YŒµË§ißüV§Éœër[µmþ?¾ûýÓ~õº ¹Îøíå|ÿãÿxûûüñ?kóå± ‘¿-ùçiøŸïÿ§v@ý1-íƒ%Ò×Ý"›r[§B®Ó`ÙêDÎÕFÐ.JI‰×ß_纈”eÔÁþö÷¿ûÇø_ÿááݏO?~þ¯?þáa˜ÿC]VÒÐœd–WjsitÊoÿøéGŒ¢çöU¼éåo_­éåÿ~•ÖÇñ可^çºý׿ªÐÿöùÇßýñá—ÿ&ÍTxYòø¸¾¬â;b]¿{÷üñÿ{õ:m˜ËËÿôãÄg[W…ÇEÌ¡ºgŠŽiß ¶ÖÁO]“F­#„µê‚¹Çú|B‰úPâ@éa-GXU߯ü´…z
+>ÿàSíeL¢ökî_ÆïÓ îyØ^ÏÛcÎU׫ íÒ§þ/ßÐo½6›ó,Ÿlªcý+OX¹¿Þ~øøª~éãË_ۗ]¿Ñq­‹æk±˜fý*ÿæÇê—T—.Ýù^ׯ®~zúùÿuÊ?¼ûþ¸ôÕÒï¾í‹y]m‡ºˆŽkí-]R¾3þðÍ/?’Û\7–m“­b¬"Ry±^ê\ßÞ«×ËãRíš×Õv|9üðëWuwÉ/ÃÂ¥Õªu(«ÇV—µRtCùzà>“Óx"¨MÍ>Ñjou¥d[ió| mû•4v¡ïßn»Ž¨ü¸vK„éå¯DÈo^ÕuáeÀªM¿üöU‘õ‘[R­Ž>sáÐwuPæÓÎKWçªl¡—jõRò¦à5ÈÉe¹vºU~ãнÉ?4éÞôà»Wõ[ñŠÉ–r*µe/\ýy}\s”ê­J5B¬|6'ª*ÒéÝ;¶äæÉ÷_/û¯J0Ó&ªåíoªJZ¿û3Àˆ‹îÃîÿ,½EéE“3 ^¨¯« ß||ûס‹ë§›8wߦ¢è¼%9·³ÿv=NØyÿi¸
+šJ]‰•©@·ÑËô¨]_^mÖö¹ûþ•TÓ.ºï›ÆNq[eùðnÌΪQÊ *}嗃•×á³ýº8I4]|åfq!«ÎaLPÏÿ›a÷Mƒ¼¬ª_£MO3ä|9|‡yâ'ÄÛdý‘Ò§uûÌt<ß|-}ß¾¨JôåÇÐ~ˆ÷<Èw8q€¿Ò|ÿ¦ÔIùî;vã .rÔ蓣¶‡ªÉ&[×lªzîPÊTå­5ÝÂÐ'PŸ:Ï/U+K5p_—¥Úq»e·ÎÌ"þ€A|‹üuZçUÃO:¯Z CJ›ËfžT&6?‹d"¯õëzí?ñݾ¶ûÚî]ÇSón—ªÔÉ4o»ÎªVL'ýTô×02bkí‰j
+±KÕò×j>/ãVòÚÅS]ù›ÿºšï¥»†‘…\=ËuxƇ?=ŒÛã¸èO«:.+ƒÒ—Íó”Ç:ñ…yR&äH9í/R®Æ\;É;¡\û0§À3!GÊëVgfày«ºB9çy©t¶@™#åjd•(/u,ç”ËRLqÁÕÆ»{ñq™õXN)W;ªŸØ²º6äuhÖ '”ëj—†@¹~sÓzN¹þ42 žrݓçxä„gÙ[#Ïuê5[ý„g¥ãxä„g¥ìxVÊ'<ËÔÝUãÎí¤Ä Eƒl>/ÕžúObT òÖb/ ”+³ícÜtn"n92k¿[/¯­\ٜ¬üTkÔ¾Hcìû¤ÐËh£×èj$¯cmåªudke©Ñ¹0 ð
+QYzØGº$º^S*Ÿ.ÃXקI¾µ¼¦y¿ÆŒ³^ژr“I\»aL汅ŒI^ëb•Âv@ˆ.ækîCŒÅ~M-
+ÃmkjŽèÄOen„èbN
+…TÅjC)TN%<Šmhùé¹ †r
+;9žžñ±×ù–J’£âu8ncSµ&ù¦ë,ØÚÎd±µçfó4¤~n.?u½ºÎïvê¯7›ÛQV
+ãº>TÜáÌ¥…ž#Då‡9è\RNÉ÷ÜX÷ú¼xŒ¾”-³ç Òå&•ˆm°çÈ1À7(D9šé.Tßs¹£ç„Ò˜¶}ÏýÀp¶²¥öݗ2«.hnûx{°’i"ÊO=v›º‘¢¿.‚OR6ȁò¨û˜Q–8ú´RžåÓmÛ`®Rµ I…¤­*aÑáP‘ææց³hÐâ×ExdÍ
+äÄ
+J÷Ę&Žîs§fNKwT-|è” ©dv”S_œä§˙+Cc1ȉ֓«Í1eo…å:’rJuNȂ½MÚc"‡XRG¶¡\<¡Òh$+×SŽY¡*0)Xyè!c›F¡4W•µÑËO/Œ `€KPˆr<£ñg î[j——|\6Òܽ6©Ê·N!¤“÷ꢄ@ný§Ô-ÒJvY â§~å¾Í9q´íÕ už· ZUï­Íº¸­‡n¨¢&µòҗ ÒÝó(×%wM“Þë)°<ÁCé b¦…±Mxkc„‡’\(†ã»QØÉñ̐ˆÚܝku=ºA`¾˜/Ñ _" ó% 9ñ%Nrn¼ʄ)ãC6Êik3ï„2?7.G€œ,G0;l9‚Ùq²™)ʀœP†qà(ë¢zB9Ihn <+äŒçªnKà¹ôìl Í]=•¨+­„dØ(⿒OǔDBTœrr* iPIl+âæ1†æœ1
+Z¦’Hˆªx¤ Ê›ç5” b(—¤åxfîkÝÖ7©fQÅnîû˜ïԎCa¢”"}};RÈ'›ÅºÝîîŽtÚýΕҖhíø=8ÚCŸôŠóéÅ¾Ö D¯#€˜˜‘-A̽ªnjuJ…¬ºã8|Ÿ–rJ”Õ’šYÓØԉJ,Ñ^G`5'}]hm­tïÝRuQxGœ2ÑÉwåƓ?BÖæp<
+£ä÷g¾ÓõÒÅ-?Ö¼•ñw:ÞÍ·ÕÙñS5’rŠ>8~%HèfQÝ,
+3çS²sŽ'KRÚÕ9Ñj{ê,AZR.MmFYN´r?Z$FÒ €roCj’´( ͵6uíÀ— åè§fƒR1ÙQÎæ­«à\œ®[mî*½a¨Ò@
+\B¶(d[J‡á´³;SùD7†Ã©¼yˆŸ6ßÆiêù\½aWù·³Í·j—´#c(Ì”m¾FÒ €2œÝš[Ÿ¤ç׆–m¾¸…(‡Ÿo^6@”3ir®sÁɦ³Å0f­
+\B¶(‡Ÿo^6;rèK=f€ÃÑùf8WóÍ×võîÁ9›or #†oU“xôª¶¤1
+YƒÌ¬Ñ)LýКmL8Ö&À— åè1]£u²ζ K^Ö¦·xٖ¾îcÖ €²É8pŽ6L¶-Hk\*…M6ßnŽãÖ!Ÿxpäp<¥|kÅÇH³u\½H©Ò¾çl¾ñА®uƒLkÃÓÃÒ]'ýôpp³p:䓣¼ìےxëgãzÄ?SÉI´QµÅß2®Õ…§¦aøÝÏ/ÌÛ'§Ú ŽÕªrjl¡cu½½á#”ˆª·A`Þ"Á1I\U8ÖÊR[Ë]™±7ƒœ›IÃÃ??°®*ò$ù)&Ùþð£¨ðr%w”@œ¢hʆAúîÛÏIÅiþš¹_^Fù©1Þ%!—¨’£àʹï߄,=挖ǒ}½üô¸¸…(GÛ¿wP²c3ÃHUíjÙÉ p
+»0ï‡[߶RYÐÄÕ#×åfØ*ïu>_ÄÔm«¬³äBCñ«³‹‡KÈ盺náúÖ70ã­CnÆDßàOü›rñ¸*è«.i‰Z›£Èæœx[x ‰çq™b9WÈsÄç!ÉM{†õ¤é:К2
+¤rßUÞàw*G¾¹2“¸Bî#.>2í”q=OºÓq[öŸ'.Zå|Äë±ÆáTÈ}ÄkÏOèòí@\ܳq8rñ±®¡X#Êq@“(â‘x‡ÜG\šz&”q9Ð=i"m…ÜG».npÐÏÇ/ˆ~c#žyfò<ñ±*
+Ú+é0Y’3ž8 ÷|Aí`Y‡óÐ)8)q¤rßEÏ0‡ñj:—H\!÷Ñ)‡Inž#nž’ç‰ÏfŠ¥é@¼êB% ' ÷¯ÃÉq>Ï-`ÌÏ !{žx©Ÿ2ºå8 rk=r®ûˆçÇœç『¹Ù'žx‡ÜG\öå<¾}3,HÜϯZ
+Ò¾Ç`!mg°>}³W@û.{…´½r؂Ì\!í{ÌÒöæJïç—8]wv!¹Æ¶)Ù\Æuù¿KSùœPLêzÈõÃY²Ÿ¼Ü€3‡˜Ë•#ü¤3ü
+ôgഁ
+•ÉsÁRúêWÞh.ÄϹýøýùå«o>~û!ð’- ÕWLBu¨8}Å|N’˜$/1›Ò­íêif¶×5¥m×â›ü• µ
+ ±µ(¹^÷ëÕ'¦ñ+F\CÜ×ǃ°‚Ý BÌ¥|ôS9ƒtƒ q«’ãjš-²e‹ž5ŒkPîmXô¬Ds¢FÞÞ4&UÛвEϸ…(‡žu²ζ "[½l=öÕ0f­
+»z÷àœÍ7q:·{£ug–h¹Q jo¬ã3¡·’ðjœÓƒd§„côWt 9möšGHÈÿ‹o_Ém՗)¥Eÿüþ"3.‚—ª`¤®Ìƒi…܌ɽÈ~(>îa$Ö8ñÈLÈ9\{ƚ\{RØ]“7îUË׳́6ÝÑLvÈ@jƒÌþ kç¯AÏC‹ä.B£é¿Ó‘s„`çrç«E’?ï×Me(š ý“Õ$]?žõq} Ó[Òs§~Ýê\²úy¥Ô3^Ûz÷ºne©Ý,YþëÀ3´yyÝ]‰!„WböήÄH̒ƒx^w!¯Äò²o+^‰ù²×¯:Ƌ2ۉ‡æ¹‹2·ÚE²Ë‹2N€ÛeìvTÖÉ ýf¾Ý0›%dwÐFMñb·Ô€[l €ræÍ.@kt
+C»äomô²¿ç p
+¸_
+å 
+\B¶(G°“,”vý0´\ vÒ¥ˆ6«7ìê݃sé²2BJKŽHŒæX£FËÎD õòʙž#@R¿}K
+Ícä]¦ò¦‡wgjÙ+}À€J
+(ç]pCÊ)7H—ßèQöJß‚ŒB”#*}yÜ`œmASÈL6¨lÀ€²
+(ç]pƒq
+œCG1Ù ÅCµR@™²¢œ‘Âl&¹€là²E9‚dv¡ñÂ.5Áä.õ^èA®Þ°«wÎ¥”–Ýw"aÜXIš’¶è˜Ò²Óƒˆ¡Z) ¼àMBfÖèzܱµÈdãàrŽÎ0´áõ “p¶Y¨£8ÙT‹!†ê¤€²É8pŽ6L¶-Hk\ÎÑæesíÎÑùÅ[œÔL ÇQšçgõ W/RrzÐÎå~ZíÞ5®ËSnoÙNVv{]á~ƒk‚»%) ÜÛpûé4è(…qkV*ÛвÛO‰.‡0ÿ؆ßOM6BÀÙd±½ÎdÃnXÂü2
+(›l€€3¥@ÎWºmÖ0߈A.‡0ÿ‚l®ÝeŽã? w8Ãq”ö¾”“ýÔՋ”Ü~zs½Ÿ2‡,!«m`'ÛzjRîu’—r7vË5>Z møýtÖ 0E߅–ý~
+ p
+p
+-ËûZä²SØËÑ^*]úxN6BT¶ùqZ¼l¨@6‰§öҖ‚JeÈfå À9Ú0ÙÀ0È¥RØÉÑdsíjò^×Ýÿ‡‡
+Ž£äüž\Ýþù¯^êßó {ëݧ1yqéù –ÿÌñ™ã²"907uG¿uËژµŽ[õQJëZÅ`»JÁó1‡Á™ú«Falª‹µ1ªBe\(¹T
+ç„ï¹ç.ÈB–±\Ì™Ëƒ„0"ÿÕ7ùöá„<ü8…Eu¿Ìօ÷Kpø=쿐/Åáû»çÒØÞ2ƒ)z¤¬f®¼X:;CXËÎØ&†šÒ¤€rÆ»)„$­
+“m Ò—Ja'G0¶™Ø<ôÀŒmÃñ”n:whH»z‘’3¶/p®í¤P)-¯™¹eçX.Îtî¦r óË( ÜÛðÆöÀB©=ïÛв3¶‰.‡èÌFÁئl„€³-Èb†°ÉS¹„ùeP6ÙgJœkN¶-Hk\љíesí®ÑyÍ 43‰ã(í×Όm«)ycû6Îå͛:+S¸ ‘ë܏"õ΋¼7º[1Zv7oˆ¡÷jHåކ»y3ÌZúc÷ÖƤ&¬q p
+»z÷à\ï§y쒆Ҿ&ÛÉÆèXÖ²ßOGºûn
+(ç]°KRvIÃQöûé‚]ŒB”#î§yìbœmAÛëL6ì†ÀÀ>
+(ç]°‹q
+C8ô²mAZã2…`— ›o7â35®ípyîÒç^í§yÈâh߁s:ßê·%ÉÕÌî!¤Ú¸Flš6_–˜â$(NÞÖ]Îi£qhÕìk@4(n®Ši
+ 0è\Nñ(mxmÈd#œmAÓTL6è2k …#”M6@À(€s´a²mAZãrŠG^6×îCù:õÃq”ÖõYmÈՋ”œ6ts:ߪÕ\6Ÿo…ut2ˆÍå-µ;*ϬÛöX–SÚöÇֆ]­H_-J]¼×ø
+¥P˃oC˵¸ øV
+;9dL 6êKBéG*FµßF³v'5½3Å çJåœ’µ(ä6{¬¬sÚ¸¸T
+;9ºl=)øúì ‹¾’Dˆl\sÄÉ|ìèvšŒRgpŸK{JžömœÓ“ñÔ¿6wG㖞‡q©~¿ÉÊrà1©B
+α?YM
+(ó€’=J#=jcv.€.A!ÊÑN ã!80U=0b»<D#gÀ砀2ÑÑãPÀqÚpFÊ1À%(D9ºl®Oûž—R€|zxËçŽTo²¥5…CÜoÊmÃÒ\ÐF '°´E–nkíöÔ !«<¬°Qkßä
+£ëäFAËچií[±¬Âԟ@aZ6­Ý0”KRˆrx­ÝÉ9ۂ,Ш½l]ç6Œ®--;ÙBΔ9×6œl[–\‚ÂN¯µŸŒŸ¨jv"¿{Ææ¶ÖîëEJ¦µ_á\Z‰ò
+taå[/BË ÷ŒÈûŽkTÕKÏKãfìª3͟ÑLÍ@"†P¤ emÙXÉj4
+COœË6´ìL,b(—¤å&–É9ۂ,4œlj CMRв“M!äL)smÃɶiÉ%(ìä&_êô=£‰e8ŽRžŸ5±\½HəX8ç¹Ez& Q(5œIò_l‘ÜK˟îpqyÏr‹€vÁ±ùŽÒ'fÛΧûZ'=F%1¦>&¤ø7î¿(·ˆ8Ð×M23óÕîw^Éë0Gî—UX®QÁ”¥+Þ1îzØÒû~Vƒ+Õ>ƒnўØíºuª„ g3ˆiyŽŽÔJ1:;œÅ·u¥Iž•i¬ Œ×–ߧùÕë²Î/Ó»ÒŸwMâr¢Œ
+SÀoĹv0àìÅ ýäÄLûQ^aüãìÅÜÀ€ûPÎ4©I¬±ºS#kg/Æ0À%(D9¢ƒ²ζ ‹ÿ&ÜÀ€a
+©™s†Ñ_ä5
+ZÖ6¤†B2j(…ÔÕ0¶¡e©¡\C¹$…(GÛ‡EäeS9[ۈçK§âdë¯WÆÔk‚–l
+!gJœkN6å‚Ê%)D9ºlut§ i°Êd؜*íqT•&ϝq0‰5v¹ZEi²`÷œÎScœÞÞ÷¨ì.£æe7Ì*¾íªïï ΢¨WM5yB§jË=Ïw‡x:†c”—á™õ"Ë,X§‡¹X¿½?}AgšÿÛ¯ÙòÕ<ã¯æÑ(0rzõ²ÞTÇ6ãv’™`Óuc8„ÌñŽY0€I{,š˜cOéSk­8i-Ö:t˜Äh5¤è♤2âzÜ4v\•@~iL;Òjµ’²©±ÆA·<ÁZZ×mªîLãÚÏ[Ž1±3#
+’<\œJaZ{(§µ!/e/cîŽ$P`™m,I£b)™@|«Ë îeð½ê;˜&ÙÒ^Œ7 ôøŽ½'­Îý‹s­Îê F«=í8iVƒ|ýYMöÑ÷'%…(ÙÓeˆÏVû~ÖR?6l¿8?0ü·¿¼ˆü©so
+NußãÝ-]Ö՟CoܾÝÚœ5hÐ Eï6é<­¸ºC -»ƒ&b$ÖHþv™¶ášòЎ1Âƒ|µìšˆ.A!Êšœlyï7»ôˆœãÈdÃ11fÖHþv™ÉFˆrF
+K;* Dý㸅£Q’4T0ÊN0yŒ¹× -󨀐„JA؏
+È0À%(ìähcRwóµÙ!gcwæ“ót¤ÝÜæ‚a¨ûŸì8²)„²)ÊV‘ÔP.ˆ¡\’B”ƒ²…cÖ§ád”G.v8)@nÌ·ºoâØJëí( íçqNç›ÎJ{•’¯RŽu5•€{•rœÇ¶ÊÛ«”ÄዓÄ᫔¤ìp:ä®W)7Iϲ”Ý«”g6uÎW¯R¢Q{•rß Æª½JéX½z•ÞX^Ð5H¿^K¶^¿¥Ï›té'†zÍI兞d@fÖèúõ[kt `€KPˆr¿ºÉF8ۂ,ôy;ÙÔ+N õg“Ê& à À9Ú0Ù¶ ­q©vr¿ºeºw=0ÄËî†ã(ݾ|LŸ¹«)9¿úÎ-õ¤Å;©"í" ÆAÏØ LX0Ý(ï¡8ˆÇ±d&ÀaÂR6@fF°=æ-‹·Ë—?¨c"'—œÖw‚cÕrñxVoî¾<^PÿyíÇ
+àØÖʧCî{ðX禼—žðBo:s®>³µh£nkÙu‚±ê¶cõbk/Èæ½Aðà±ä¬i÷”[ÛÒ¡;ˆÇYH8ˆã5Ê˾­{<†÷+|êç’]~êl”ûNp¬ÒX½A`Ѭ7Ý ²ê=?˜Tk‹75£kՋÄf–#±F§€òLS—k¦¥¨eoØM1b¢Ñ°3ÙòÞo9¤RÎitQ6šeÀ˜Y#ù›–&!Ê)L1JÑd#SŒ¤lQŽhØ͌Q†a7k̯™ZÄ¡a7â‚Ï ;«7ìê݃sþùÊ*â äå‚åҜ»¼äMˆÝÝ{BG!R+œ@'¥.‹?ûùNÅÒޟ¿Wþ|7]ØöV Nn…ð]@ƒ\]n—錞ª‘-!ö ߏ\Ò%¹.K2ƒùDȺbF­#„µÚ\,MGÚ$e±Òîuë©×y¬ð®'ãQé˜:ó½ñöwbn>ÜñŸ¿¯ôrÙöáOø^pá¨êÆӶͯëó0ä‡?üxýØúð(ñ¢YEé\øõ™–±~ûªN…ñå_¾ªC—_þïÛ3âïÀ߸
+bqe¦ÝùäӋ­öIqÏ2NjÇᄊ´óØÞÿþ| dWv€#ºS¬ué§.$Æ] £¸1Zձ݇`¿‘#éû™ˆ35ÝW8úN.µpñoґ&–Ô›§ê¤”fº÷¬ïé¨0çLÌ!hŸÄN ›ú;÷tþ̪µNۊ1VùqÛåÝzq9 ÏÍe?8~!¬Í W×ÌI5ù¹AJ›ëæhcˆ£–½»pæ€ʙ@z¾'£0èíG´1 ï0¹x{´s
+Î`ÀÍ
+»z÷à\ùE¶žÍ I5BL% $µZý²èæÌ]»,z0@£Æ£—L[_W¬ª/[³êÊ7Šð›úeþ³Ãë'ºÄZÕ7Z鋡°¡ÉI_r :Uqïå§&\)#iª6PÐ2'Œ‡ˆC
+µ<d׆–Ÿ^ bߝB”C¦˜ÁÊ^¶ª½Ùj9Ȧe'1Àù¸“­d+;ÙÊN¶r­ìd+;Ù
+cÒ €²É8pŽ6L6p p
+2‘ b(—¤åð‹—M!ä¬/éÆy_ô½l}[0Œ¾m-;ÙBΔ9×6œlÊ1”KRˆrøepô
+Hý^ô,K¶Çéùccñ¹X¾™¯nù‚ˀb<©ßš8òtá۞ªa"FِÆ>¿ éâT{)·r7ò§Ú«i²òӋI®j-cÖ €roCj’´( -DØÚèe©.ƒ\*…-ãe1
+ Ú0ÙÀ0À%(D9 ›„a›"ÑúÔ©v5Âãôò3·Ç1`ßÕÛQ²€ý+œk—
+€dÕÐ]¸Tzzos© ¸¹T€‘X#d/fpƒLZÆxnÏàÆ0À%(D9¢KÅdÈûàÏÔÁ9]*”.`̬²›l„(g¤0Æs{“\@6p ٢ѥ#Ì\*85'qèR¹Jnnî«7ìê݃sùtZ^ô’–Aúý>Z&áR.¾e÷t1ôa4R@¹·ážNËsS„ŒÂÔ.˜Y½ìžN#¸…(Gx:ÍɈr†GËÀ9ž53Ùðð1ôa4R@™²¢œ‘‚rÎ6(¹€là²E9ÂÓi6Í~¾âžN3<FœË§Ó\½aWïœkÅy<è”ÃAᔶ)΃Ò>Ò1ÅyT½ÓèŒÝmÝ¡8ËÈ3ßö…šs6Õ_ùͪú›æ ã.ó\òB#™úu!§‘LýBuú¯ì4Ô´ì4b¨¾A
+‰wön-;×
+1ÔqB
+(/êX3ÈÜßæ&…©?óÊ6&u¬À— å®“p¶Yèöp²©c„êÒ ”M6@À(€s´a²mAZãR)ì䮕eA„‹ëáBg‡á8Jûk¥'®W/Rr®• œSÏ@5yG„At·$!=zGž-õaòX甬\-Û­_¡4Œ¡]ô4
+(#w£Af­
+\\‚B”£Ë–Y§€$iv\ßpÎU
+«wa+ß,ã…c ðJˆ±„TKdÀဥËtL^iqê€ÈÊ¥÷4N|I=‡»Å‰âp
+·5Œ¤q
+QŽ ›7@Ðëk'¶ëÆM9#†rN
+(Û¸‚^Œ
+p
+¥0mí¹z¶¡e©¡\\‚B”£m&óÖO­l€€³µŸ{“óE©˜ls÷$Co¤‘Ê& àL)smÃɦ\\‚B”£Ë–Y§ç`4ȬÙ¥¥¥D@€óåÑÏre±l“\
+ Ú0ÙÀ0À%(D9âéYn÷:ýéY֛žvže88=Îõéëí(ùÓ³Û8—ñ<’¦,ÄWHÊöž±A#iÆþðcm´ìâyˆ‘X#¼º¥m¸xžqЈçÙZĊÅólŒB<0À%(D9B<“m ï=_…FҀsÄژlˆÆ!ÆÌáÕ-“åŒñ<Ê9ãy(ãy ¸„lQŽÏÃäûŒçab}FØây\òý‹xWoØÕ»ç2¾BÍkyPͱ]\„@Ö_¡_A:Œ¯Pˆ§ãpŒòs
+*ã+V»Dÿ^òa´g]î
+¯ ¦fì2@áÄ1æ®THDÿAº÷…¡Hêa°ý7 g"††;‘ʙ!T€$­
+Ž ††5Ê& à À9Ú0Ù¶ ­q9Çp /›k·Äð
+ÈÜ&¤Q˜4êmLzÌe\(¹T
+;9‚=a²ÎT“'çªë;ÙÔ †Z ¤€²ÉdȆ6L6p p
+'Zf£ñB1­&âÐF;^(>³Ñ¬Þ°«w卆‹’é×Í:õ>=ì'\”4 kŒÙHåL«ÄÂ åh%‹ùËÄ^Žh£Q6BÀÙd1ûÉdƒ…5Æl¤€²É8pŽ6L¶-Hk\*…ÑFÃ%Lßú^&­&â8J·/šýeõ"%o£ÝÆ95*êll_ŐõѦ.nålì
+2gqO/Žtj­æ5ÄÑñ8FùFä<Y×o½ÿ!Ï;¯òiÁYûþ,%v.RÝÃÏco¾™T|®*•%à˜T—ïÂÁÚâMƒ½x¯öšÞs EǛ´ùˆ¡6!) Œ›IZú=kc  .€.A!ʬF' Êì5p‹ÎdƒÍG µ IeÊFˆrF
+Ê9Û l䲁KÈåV#ã7i52~“vœáÀjt1žV£«7ìê݃si5ò2»AúUtÚkzU/³Óæ#†Ú„¤€òB; ™5:…~UÝÚÀevãà¢Áj4Ùg[…“Mm>b¨µF
+(›l€€3PçhÃdۂ´Æ¥RØɬF^”÷=Ð/Êӎ3GéöE}Z„®^¤ä¬Æ œÓù6êåCÙÿz=BúÝV N!k½Àd§1Ôþ*[ø¥?´A
+,Oª·dÔ Ðwfkڀq p©vr´1‘G"RpÖm]ã|"çmlÇ@†QX£S@Ùd²‚rÎ6(¹ÆBé·PÞɶx½¥õ©ÓdÜû§ôW‚‰sØ·{Òâ¯~þ럗ú÷ÇßÔíz‰½?§©Ê´<!ŠÓ3ær٘4² •tC6H¿»kÝÒÕ7븬J¥u-0
+kt
+¥‰Ñ†õ ¸ †r
+R5¹žóÁAæž
+£j}¶B>5ÈG)/îÊËM.U“c[úouÅ䐬¢kÅ»9Nkv»Ük¹,#H¼Ø%y´·­û0_u.©/ï¼@5‰ŽeÄd6ä©ÇeÏpJtlì)yˆ8|amÙ £ q”ò0‡qrmbm$űtmmg8)¶µõ€q鏵VœÜ}@>5Èp$¨áÈ£ρ*ÎèqÚܒÀ•€#~\!çDÅA> ¤p
+(ÏÇÚëê{uêŽW~kêÖÄâoê˜ÖPëa­ú­ÉìØTºôöœ ö4<hÖ{µŽÖº~×À­½> JsۙoíՈ¾™·'Я>¼ùáÍÃÅâŒwk¬!–uâ—Ý•sÃYÎB0ÇöÙ§+[sôÞ¾Ÿ§´]*ü¼'ݞž ¤¹‹th§e’¶ÎG›³èÚbUŠ×>\­¦%t æÌ]]RU¢©ŸË±K¦=i됾«K@ÚwI¿!êæBÅIn×ÅtJӃ8'u
+søñ/~ù®S•¤CkÝnêir¥oώ¿=¼,}vð5·ƒðµèã>8øZÛùž|õ²?øŽµ@å™Ge€LZƧewðE p
+QŽxðe²¢œñàK9çÁeãÁ0p¬
+ú¥ÏrNbj¬áUÙw#6©”$ºÅ¤ýr¬æî‡oßÝV¢ÈŸÝ3îz˜BB?ÇÛÆéw…í`aŒk¼ml‡cÌK
+V 5“ù¯¬&ê8®^¤äô  œ›á©¢cԙ?hciQæ€|²€KfÓ&¤âôÌÔgtRkõÄçbtZ[îVôíˆrIŸS¸Àý¾¨Šî“]\$»«tò*¤®/)†~^ßÞhj)Û7=ÅdFFs E•žˆžˆHð¤ƒ8œµ¿¤çpòÉ(;œiÇûÏ9=%ƒÜšFy~Ê ÙÂ/¬Ãá_.®Ä£iË^¿ï
+cä†WxiODyäúOut†6¿K®Fdwò¢ç+eZÛ·Tæ~†&cÕ€µüôBr­o‹ÇHí›5
+£+«FAËچ©³ò÷èÔÙºÆ̓keSg‰¡\’ÂNŽSuvN0 ˆž`}™:+}mTþíøïVg=c‘Õ0xÍuŽ gÂê7PÚçË`»„ðY(i§Ò)ò©ìöïmm±uO‡Çp½­¼¦nü'‹¯?y£6ËÜmßkjªágƒ0asÖ»’ö™ðSÄÑavBêg³Ž‡÷iå†q÷yÙc”Ý «Ö?„ÜîŸöúVèçãx‰Ü–â ïzÄiöó N^wýLòlð,yE7½ã»)…È6´kKrµG…˜m'`tǝÑQȓc_–9‹òv¨³:‡(;¡CAÇÁ@Dž{Þô'Ì/ԍI÷sèK(ü遒
+FÇɕ§¶Âš\äyÈxM<x’mYèÚ:::ٖڒPƒvi›³BD…‰}˜êאã˜*Ä­™üý*ªNÍ©çĒwYæ™cªüÌsÀ‰ã^š7lYÃ|ÞÍÕͧÄ8f€±1=d‰a¦bâX6cö3ï ²ŸyOß÷~_
+q{“í)€Ø§_Sü.bßàít ÇïݙhàÙî:ªZï÷¸:·ÂŽžwk Ƕâ˜nqó™)µ9Ÿ™R›cÁ,¾ fñµñBæA/d”u ‡å„Ø<Ä7ÈoÙ•;ž™Ñ<3CÚñ¾(ùq¦°I†UÁ$ê›ÑÀ±͞¶‡ß1ªÇÙÊYOÎúªû5w¹ì ᎊd9æT"¤ÎÖ%®@vlÇYÆäý'«}Ûú5Û
+½èÅ+[¡Í a+"4)[©IŽuØÏÇ‘³ÕVqÌV›Ñav,a¥¯&ð’üc«€œì„|†™mŸjfÚ :„íp2¹ö+í`6îØÁl•š‘ƒœ«Ô¬ÉI‰#‘pq%SÈ'¿&¹]W 'cÊ‘ãe+"Wh¾¶*0÷#Vzk«jÅÃâwxÛu™ÿ›»î>ÿ¸££ž©%‘jIÄ¡&NË~~֌¤ÇàG!^#£Ó–ÙÞiì´-@lõ=‘kjôϒ[NmǏBª¦Yg’ìŸîñà©;ÊìÄ ¡Jg _Á)ŽB„ŸÞÏÔ8x±yF¦‘Û‰£ëê›Úü±7wqŒ^áÍçøæ.éà˵ˆRBòŒñÒ~vIª©ãÞן±îÃÛvÀq׏T !τl“î<vùVπϞr¤c<3ù6ú0¤ãîsC¼Ö1닼¿²¾p5˒ZiÇ06}‡Ð…º9»Íp¶°{ûý\5@ìiQÎk¡ºèe­cÆBd$š†©?Å5
+{Ë!{á~¦cˆ]Ïё׿ÂZw¢¹È•Óxáÿ¨EÖo0+/­;K·*Óäqün®ühžCãçÄó³Ìݲ¤ç‡<›Öï¤@Ùð}÷/µÎÀÉÍ;ç›0Éá¨"©žãZ’‰/§½é,^ú“¶Ô/ãpÖ>ǽ/@g=í|øwܕ`@¸’k/šó3»L`¸êŒ‘çUgmÝ]
++s¼'g>2c”ÇqsK-qJôdG[æ¿)ÊA.8»ñ(—ï±>[ë>³l~%#äÀÉî9Ôk•êdÞ}ñÁOII¹"úÞÐ}p6±ã?7Rà»9™S-Ÿ8ƕg›èÕø
+ÄV²ãeDø’ì2"8´ë«^
+b3šù²ùe‡^2â8/™aÙ3À¢7 8îéÅ9<ïbú!´Œ¢j8€‡9ZÖôÈ,kóҊ§8yÆþ…8 ½’NÑ_«GǞ%{ºüàUã'!Ÿ)pxBž‡<r†œy9p&`^œ ˜ì´);sŠÇrçèQ¡'Í<ð¤‘=„¤C¡õ!_aî=Nî
+7ùá¸zE+o3Öz@ìAߎ¼ã’ÄÎ6e®Ù:Þ UǛ©)!´RyÉ1%„8ЪãÓ¾1'ôÉÓ¾u,‘9[q —½ª³ˆõl›?„y¶¶trm¡=–„È#ԑŽ—ñÌñB-k ¾à‚UÓæPö×VÀAolAOBÂY5s÷!0Œ@š!à´áªŒÑ²¦NH­•"Ž££6†kKÓVípŠ÷ÈáEtÃis,y:œu§iÞ<÷6õÚUo[R¯UŽyYqo^V?ÊKœ?2‚!.ÀÙ;༑îkšã·#^h‘íé_[̋æ´rQ0,«©°;Z2$´‹|«&LneµÅ{YY5¥0ØæJÁ•“†¾‚ðcP˜Ú
+{H˧ˆŠSË)Žð&
+¿ÇÈj…ƒ‚+wf ÒÙ5
+]kŠA.•ÂNŽ§ƒd¸Š9q¤½e/7—šØÅÁ¢`ˁX¿¥ŒÜ£`åΌA:»F¡‹cm@`ãÂ0¶ÅSˆr<$SÅ—±N¶^}övº.åæ)Üúš+’æŸÖòSó™4ÿ1¦~ç„XÖHPB–+J
+a†2*ÍF!õ}ˆmhùé¹ ùV
+QŽ§ƒd˜ÒžùYHÈڜ§RnNÙ¡gjUSŽQ~j†N)cèª5) ¼èxyˆö…ž‰ÉÚ@ö'ãÆw§åx:H¶X4]µI¤…ÉkSY’Ù˜AÙ6ŒöO§`å4xsJÍê7
+R8YZS©§m 3 ‰È.1TR@˜‡äÁ œRül´ì&†ñ‡X^¢À
+Ù­ÒîÙABÖ®(êú(åÉ­Ò(Û*m£>®
+(óÙAÜ*Ýœ}3žœ À0¾‡1–§°J²ÿ†¼Mí!³á<”ö-ðûÒ²û†‰¡_()X9…ÎC·Bjk£—Ý7L p
+QŽ§ƒdûv¡š€¬ÍfߊFïGXËn„‰¡ãG
+(3šƒˆ«Å(t÷ƒµÑËn„‰a|w
+ýe,k¯qÀ0¾ËËË·¥ì‚Åõ÷aQÍü>,iB=3Zvc ;mb9Ç}¸ªX¤:…¹éMÖF/;‰.縈¹6"„ºt·ÇÍxð¶æ®YÏá»iТƒñ ²xŒ‘‚•»bo®ú…nX0Œ `€KPˆr<$Såýñ´ù)m>!%ìuI6a-Szª¶ö¼9ŒZ΋£À2¦›‡È„4
+}ÂZ˜ÒÆ0ŒïFa'ÇÓA²ƒâÁ×Id›½âQvJA¡RµP+@ÁÊú:)!IUPH=Ûèe¯x\&ªG^Ž§ƒd{ó¢o®díÙûєDxµì&†ŠC
+(÷6œÀ’F'°Ü›}½ì&†ñÆXž£À
+³‡Á1È·Rˆr<$ÛOi»÷ï ’©“I^·ÜtÓ²›ÒÄy»½S°2t3@æþì')Ì=ۘÞTŠÇ— åx:H¶×¥y*hÌõ°i±rÚ.M ՔIåކӥÇĕ¿SèQ€Ö^å4.€a|{sÑ·!ûUºdué¤pýkë£ä:÷+¨–Ý*M ]ƒIå¬O®{Hòš–pyMKËn•&†ñr,ÏCX¥rؖ£aB»¤ošÞ”[F!il*ÀÀ¦
+(g²oä9©}…6°‰6øNs,[yÖ8gª¥ƒ4ÅpXTESÅqX43UKñ3yåsÐüF¤`eUûQŐTqdT-É0À%(D9ž’AµÌɦÖû&€¨b˜5™GÞª¡j)o;;ûIÊãä(°LµÏAšbH
+ª–äÆw£°“ãé Ù~Ñ*3 év$—‹²Ä¥ðI9,9ÄÐ%‰Pîm¸E«ÌT%;…8hmà¹]ãÆ·W5}²ÿ†íÍFÙü7¬›¿/nKü‰1ðF߶Æò¿aÝTŒÂ¬]„6°-3‡Áol{9ž’Viø´ ²rý+Îce+(|Z¶Æk0( ¼Pû6ÈàuiõXY3wp1·¬Qˆr<$Û l÷÷Y»ƒ¦6œ)3(›À†ÑÅ1
+ZÖ6Là
+)Yi6
+sÏÇ6´lùV
+XKÆ0Œï4ÆòLíÛCöÓöÍ ¬Ö.™¡=Lv‰1‹Ú—Ç(°Z³F!Eõ•ö°q p
+QŽ§ƒd]šo )ôö¥´Š¦ç’†& hÊ €23Þ’TÛ…Ô_e`É{¥x p™¨ñ{9ž’Ζµä!Xú©Ö\œû,x·”'CqU6
+õÙ ,á«ÁI¾ò  nt`ÀÍ
+VNQàªaÍ^àa¦ªÙÛ ÞD.æ J…(ÇÓA²ý¶d‰_ éntnêfç–AG<7bè¦C
+2øVŸ¤µ‘¨¾‚‹Ve£åx:HvP<ìj¿A°¥ûó}S
+Ë.j‡P6•A|ŒÜìÖÆ°‹ñ0 ãÛÇxø6"äà¦e’7B:@»ƒt 1T({7m<6
+(÷6¼›¶g“5
+×z½ìÝ´S8<3
+QŽ§ƒd˜Ò¥ç~r'€àÜ –GwÒ0–~¶ëNJ÷@#÷䥤€²
+¤Ÿ€ÎІ<€ bo¥åx:HvˆâÉL®H¡¥é½ÎaSaƒ` FP¶¯Þ ɦ©×ÙÚð_¤÷\{¾käåx:H¶ŸÒ .5H1åt›ó.ÆÃ0t’ÊiãÐP£ÐCG­Á–Écß>·!{§îþtO™_GkjêîN23Yøˆ²K ‡P¶ƒ/ð402¯·1¸ƒ“ÎÅ"ïŒB”ãé Ù~JK֚¶´ö“"N¦µ0Ô·M7-»)M °¤`åÖꖱú°%‰õðN-»)M p
+3¹Ðn„]f ƒ@ië–Lœdïkٍ01tüHÁÊ/@z~S£zÒs¶‘Š\\‚B”ãé Ù.@\®ë÷ÐCéoôÐì2÷0\o£lâÄÐðoRøÿÉ{›YvMlŸ¢ÖôP($…Öü¾oD·Ñ@ Ð3p¿¾Sä÷ñGY•U½œE2)JdHÔ)*Àߋ˜ï<‘á6×ê8xUÈZA
+¶’²É(ð@¢e8`ôNQ×ü1Dz™À|ZÏ(4!¿sp1 šk ŽÕa[+HÁV’C–ãñ"oµœ7R¯\9˜µ[°xúV°XžrHá‡\Q»J¤@ªDãàðqh b9°q‡l(cZ£ãÒl)ØJrÈr<^$Û6wiÄÈ%VÅK:–QÉ®ñ°¹Fá¹!•CÈٓÀ¼„cpIÇê°k<Ö
+R°•äåx¼H¶¹KcJ&bt%LG%Wʞ|‰ki:;ÎPã`0×¹³LsЕ²×Áµ´·‚Þná°Éñx‘ŒW.Û=w”o¤¹Ïuí6’Ý) |âaSɴ톪Œ°7Æ1Ú\r€8V‡ l­ …·[8lr<^$ãJkeXšq GŒ¦œ§ZTŒP^iõ1|>u9f¤@¨¨qpXǗct:¡^Ç°·‚l%9d9/’ñ ¯ìtù ßç:ôÑ~¿'|¦ía«¹Ù¦õí#„]ûŽÑïCø~V‡}ak)¼ÝÂa“ãñ"Ùãá_8`äû0º‚ߏñþ…¡aÝìºrpÚ7 ¾qÀ÷³:ì [+Hq›]WYŽÇ‹dÖ¥oÑej 9ò^?„ ÏQfNSŸ—q
+Ü$4Ãqb„¤„¬XÔb­ [IYŽÇ‹dxe;jIà€‘æ^šÈĹN$²3/¤Ç2
+íLÎÁa4Æ0h®q€8V‡ l­ [IYŽÇ‹d/FKŸDŽF ^3âÅÂGÌ䐂&©›IR¸Ñß0׍ֵÆË #[A
+o÷ue˜udŒ—òâxaҒ€‘¸U»Œ®×aüºúi‹8^hÅðtuÂ!Àz)Ç1|?—ÝûXîUx+@a­‡MŽÇ‹df¥5;¤ 1«¹ë‰(Žg—£À+µÔŒëösäà‚e1Ú\ç âxØ[
+k%8lr<^$³¿[Ó4e¼0턨ü}Hãì:4Òò… Ó-R K$¨æefbìº38ØuhÔá¦Ù
+R°•ä°Éñx‘Œ—[íáèŒñß}b©Ê+•
+SNö´N¡I+œ`Ôái-Öu³ ¡蛮V`Ok)ÐnpÈr<^$ÛÏ¥Í{è˜3ˆÓ7hgÆ÷¹ˆ;Ná²ˆÓ÷çŽ îÞCoőĝC–ãñ"~Ž$œyVPǬæ¯|Ÿz¾¤ñN’ÿ³:üøkå+Ö7ÞH¡{çà°vPÇ4 VtM̞×Ñ`½¤`+É!Ëñx‘ŒVzE1Õ(pĈý[‘PÍő¨%
+|­DÖ#R4]ҵ1ŽÑæ:Çë ÀÞ
+ˈxfÃ2
+ƒhgã€hh«Ã⥭ °V‚Ã&ÇãE²]`¿`ð³*ø³1~€Í%Å!‡Óóíö3 Ì~〫⮬ í›Év=ÆÃ0ˆÐ`UŒà`c<ƃÍ%Å!‡Ó“#þ"`Êf‡Õa1Ö
+P„v ‡MŽÇ‹d/[jà ±ŒU…Ä3ÖKMcÍ…‰sSÏÞ|g‘XÆ8ôM©–šÆZŠÐîãÊ0êØ04ZóöÇ#ÔhŒ¸Âž«‚N-=I²9ÓfOîµ·98 G—aà
+3p•YæL³Vâ¶4Ê!Ëñx‘ìÛ˖8!ök<3»»ZxI‡n¿ÆCG‰QÀ‘b|ÑÕÂK8ÎA/éx¼Æã­ [Y’ë%Ô±avíîaÄÌà[âÍBkŒÝ=´æ’‚âC€¯ä[âÍAç 7 ½Þ=ôV‚­‡MŽÇ‹d/svŒÎ¢^•Î²Þ˜¾×K æé˜b*a¡áupöV‚­‡MŽÇ‹d»À!+:1z'ŪkŒÝj±æ’‚␃Á¼q1T‰rP_…×Á[-Þ
+Rx»#Ãì³_¶´àRà 4Ô®9"tÔ.BZp©]•4
+\¥4€-ð3`*/W
+„ŽZ\j­0
+kw½2lud̘f¦3,D¼mAcvaÚÂʌâJW®¦7*bx×P9èuh¯ƒ¦½¤ðvÇ»ˆ±ŽŒÙ>;œiŽ–›LªZ&1JpØ( Žq ÌsΈiQà³[ª­ƒgÞŠžRÑ8‡,ÇãE²=oú ŽAà2«]}•(9À!onáÂÆÁá’c-g±;Ê¡X(¢ÖQèL³V”j貏Éö/ž3 æ´ÎӒ˜ö-q‰}Ÿ+“:ÂL*1¼Å¢Ž<l,q‰·‚ÞîxË%֑1/c¸à=(ǜÖYtôœÛø:m|q’‚#”3H"b®(p-–Pë`ƒ·¢¤¤Î!Ëñx‘lØRµF cÏc"VkŒ¥jµæÄ1ã Ò0Ţ앃&bõ:˜ªÕ[A
+ b†Méñ¢/
+kéˆl¤œaÆAFLÓ")½ÆZz+ZÊÛ᲏É^Æp—ÆÆ1<¬óèè9C–¡Ÿ#¡ä@¸›ŠS£Ñzþ½£ÑÇpK—:œC–ãñ"ÙæLóûÎö„Äî Ûk7v˜®0§PW™s ÌSæˆï“qhö˜†ÖÁûÃÞ
+ö:h¥½NÁv+‡,ÇãE2
+ë+ᶜ(±ÜùúŽÚ”†½R("Ph‘¯x<;LODE; ±KgÐG_žÇDQ!íRa—Z.ô±'â.Š¸Šô §u)Zdù.@X-Vä‰(‰Ç
+Ò)Ú~/¹tqþí¿Iò]'@¸N½Ä(A'ë%ì¤G@'U ¥é+êÄAèDRÐ (\'DôeñŒÿlÓ¤`hêDQ‰Ô”ä
+q%霔„+É¢¤Ëú‘(iÝÑIJr”t‰6%éfJrJ•tiÇs%©žücÇ@ýÞq.ë)ò;Fi—ßuÒdî
+:ÂuâÑI{~ “ç
+ŒƒÐ ®“©ýÌuB¤º±«Ì¨ßur[ÇÀïg.}¾Ø“çěí ®GˆN¦ng¡“ç\~${ª“'"˜ö`O¨:!Ât²V ɞB¥Züƒ=aý®4˜:¡ÀЉËo:YîŽ49a: ˆ¥“³X·™þƒN]öP'§,KL'B'@¸N
+&ÓI±™EtRÒ¼ÂúM'l°ÿ~äÒÇ>9?›p%{B„ëÄ¢“Óºèä9õ%{ÐIfW°'„N€pTL$¦“j3‹HUÓ¼Âú]'§u ü~ÅÒgœú¡“j3tRmÍu± w;Ï­ÂÇÎ¥‡®G@'—MT¢“Ëæ%щƒÐ ®“Kû™ë„Huق£‡¹N.ëò{M3yßuÒl¦ƒN€p8BtҬۈNšìD‚N<çÊ0¯“Ž0:ÂuÒ1‘˜NºÍ,"UKó
+•4D×¼>5ÌÅ+Ð?ÍŝÜ6Q‰N¦ÍK¢¡ \'Sû™ë„Huۂ£‡¹Nnëø½äÒeŸ‹×uòlO¦mê.6¡E{2­ÛˆNVÚʤG¨NÖ)B°'O°{@Õ ¦“•3ÙC¨TõÈó
+êwLëø=Íä3Îôª“>”ì ¦“€€û¡{²Â’= è¤D#Ί`O”¸û„w#é¤ØÌ":)i^aý¦6Ø?réc·'Ë’æb"\'Ž€ƒ%œˆ¿%ÍŝT;<gÒ0:ÂuR1‘˜NªÍ,"UMó
+Q'ëx°ºN®ª"¢
+ªLÒDþXÚÁkFhýAâ'"« Î¤=ù²ú *ðßk,íâ¾ W¦G o—DDÏt çúï3—ž%©#ÃU@Šcü)"êw }þû‘KeS-ˆ©ÀTA@`á+Ó`¹
+`Ш˜;ªÀA¨ÓU@Šc3˜ü!"ë7°}þ{ ¥ƒ¸/««€S#D˜§¨Ìc¦Îs®¢£&5ª€ó¨©À(Žm¥àOQ¿«íóßK.]ꮬ7\ݾ2Tà,gøÊ\Þ¸
+°üñß{,í T€å•«€Ƕ¼¢àOQ¿«íãïÝ:E\^%`ê*hö•¡GˆXÕRD¬z]Xów¬™]g²\u»
+Hql«n
+þõ»
+Ð>ÿ½æÒõÅ`wâ* ÂTàl§¢ÅçfÈU€Í’ÿ>ré‘l7c®R˜
+.s~ÄÍE¼l¾È›1þŽÖ³´‹û²iwœö•¡Gàä!Z|î‘]ØCó÷š¦ÔBØ£»
+jœ¶…(QÄÓ拼G÷߯XÚÅ}9ËqûÊP#Dˆ’,>N\8Zñßg.=³-8ã¤Nj\@Pð§ˆÅæ‹|t㿹ô±Ûq™
+ AÎ)ïø•q¢æ*À‰›ÿž¦Ô#N¹áDÏUpÄi+ (øSDÔo*`ûð;[ÒAܗ“_WÁm_*p„¨àNŸ­¦Äò÷™¦Ôª
+xÐk*0
+ª€
+þñ¶ù"ôúïg.}î“"Ä]Ýæu¨ÀðjD‹ÏówWÎçý÷K;Œ8)‡ã~Wü)â°ù"Ÿÿó÷nˈxþŸT?‰« ÙW†
+!BÀíBá–qÀmÃß{šRÀ-ä*èqÚ
+âˆ"¢~WÚç¿_±´‹ûâ>tTûÊP#àï‹ŸÞ:W¼yþûKßÉÐ[è*¸â´ü)âeóEöò÷j"z “
+θFnfW#à+ŸN\WAMۨ厥¼˜É¦åPã´KˆàU~‚Ñ«¬`ð*«
+‚W™:9m]½ÊI'pÇ»NŠ}vèÄ"UIS½ÿ®“·Ó;à=Ò,Éè×É籀 %n—­~ï%M!l½—.û,¹r<ÈIC¬Òuà ¨i¬ÒBÔ±!z1ÄõÀqõñj
+£€¸Ú‡—¾Vðœsð´z¸lº„b!:¼HÊae­˜Î?€Z@¬öYim½qpÓI×8C×IG·°V„J%—y¶jìº!štõ Ñ6?¢Æµ«‡Ôj҉PD(“YùÈú¢– m½qïÚO“NV&‰¤AD„J5rÇX3b[I:+ä+–>êGä~Ô¤“Ž2kõ@°ŸI¥Lfå@­? Fûˆ¥¥Û8÷ù2væ³mI'‚ˆ: •J.óZ(pùӓNîò饟ˠt"`ÔÉýwÍcçÖ A‘Ê"sU°·jý¦A|„6ؔ¤âXuf%+}AT’"‚’"BÄT„)A–Ë ¬5*IÌQÅwûˆŸ§¾þÕÆLJšÏ¥ºƒEÿjýцë­'w7¬„…I'‚ˆ: ÕəzŠì³(ÁåQ'eY /]V(¤s0èDvYQ'Jt&³òàHí³ÒÚzã.উQŒ:DÔI@¨T5wŒµ¹N`IƒI¶×Q£= &é#õ’trjDr”ª‹þ²þ€¨aì õÆ]ÀM'mi1êDQ'¡RµÜ1.N4[šœŸˆ&çóâÔ®Ü/½AB{­Õˆ8w©”ƒÉ¬üØÒäŒöYim½qpÓI_Ó}ÔIG@²µ: TªÎˆÊÜ9Ñ<²=Ywì>¢F[°'
+ZûI'7&•r0™•ïlO&ç¥áâ8w³N걖A'Š:‰ˆîˆêÑäÁy…à™ÆŽ">ÿŠJœq0MNíü#¦‰
+AŒ‘Óä2J˜a0Yƒâ
+ƒé ö0˜ܔt.µF% "*) D*E¸
+'‚=MÎâùsˆßÏu¢`ÐÉB¤ÉY)‚NÀÁdVþìirFû¬´¶Þ¸ ¸édÝ6H:©Ø‘X«B¥ªì)*såDC°$#—"?¢F{00
+âêßtÂÕ¿éª-÷{I êwó#jTZ½®þ­ Ü%šN¸)´VDÜ%šÌº à• vqVZ÷xƝ»Dkw‰ÖjîM*p ÌƒMÞ%D†­'÷°K M¸Òäl‡¡ÕWšœ±7™{î6ÜÍBwûVZÏŒ;O¬A<M°Vó4Á¤Ê þ­~Gœaì°õ®ñëeìðÔÉtÂC¦Ðê#MÎ8·1™¯Ümxê5LÎ832î<u²ñÔÉZÍS'“
+(ó•¼~GÌ09³õ®q‹×hlÚï,³r HƑY/IÍgßÕÔ#+m~û‰h¥Ï*–.ê;¢Sî¼¼%Z©‡Dm+^MDýxŽ!î÷Ñ:SNm WÌWmZoÓ´Ÿˆæ¡‰yæ
+±þŽh=d\"§q”7z§÷DWÑt
+µ#Voù0«SÊ:m9 U¨in
+ýý`-m 
+‘qz§qãôŽÈ8u9Úª«§wDëîՊ±îòàÛw]…DËè~Kt]zb¼Q¦ýBOë¸÷þIão‰¸hz/‰ÞJ÷œM~Ö‰ÞsºÑ&½ã$õˆìß«`MTõ'¢ròYú=ß´‰éß‘ÓìoT@No‰ÀiõMÃ3Ù½#"§õ€É·œÞ§ûÍ4N~»÷£Åˆ~cUÚýóhyKdҝíç^ðžh½}öó¸ÑÛÑrÜ¿°*FôFO¶=|Û&½oSùÅ·3¢wmjUGËÛ6‘è]›æ:—”ÎoÚäDoÛ¤×{{­o¤#Ñò*|¯L¬£Þr"Ñ{Ndò'½å´’UüȉDo9!]Ó{N$zˉãNì?Œ»·DUýV…DozÁsET~ìONô®?™tóvüQoX¼k“ý¦M×øŌðŽÈÖ*mþ¼Î|KTfÓmÓÛogD¿Y?­g0nÓ"»¶þ¶MFô›6]íçµï[¢uûsþØ&#úÕ:óþyý–¨”C§·ÃœDï †µé|CdmzGt/OŚòßÍ-Fônn±6•7ÒY›Þ§çŽñç^ðŽÈV=óúŪç‘·éüE/xG´r~ÿÜ3è}znàOwÔö
+±Å¹ˆ¶T|½1=t*¢˜âÛ¦"QÚ@Š¨,²ñZR‘¨æ=9‰úhwÍE"E×'·"±–N­§"±¥ÝÇm(¥íü¶©ˆRœ3Q¤"¡ŸŽ¢Æ.„ÆÜürøPO
+¢´ƒ6hb£pïý#Phµ7žXÎE‚u’!Œýqà6™…ÕÂ|/l©"·×NdÿHÅ7æõ’¾¿
+}ìî<HE"E£ÖS‘X‹\Gú³ ½ð¾øõS‘Ð #E(zá1g셑B&%oG*òéÆñæ
+5 ýô)\¡µ EB/t¦"asÛ6 F?ß½H˜ÇŒ" ¶Ðڑ‹ÄþÁo›‹D
+¡ˆÌcëæ®Pi['ß½ã
+!·Û­ôU—¥1î
+>þ²Úù;+¥·¶‹€OûÓ+k\>mx>¡M¼×.€D×9øøë9G-°HKÈ&8Bšh¥UãN­vünÕÒ¹íúaEåÈ6ZQ?Ã5„•ÒŽ­}ËáV [Qþ+ÉÒ
+¥SÛñ¨Û/ ¿ žÆó/hý+ד2¾±æ_ð„!ÇﲀðÒò B¿K㠑»}AÖÎßÙ6”NmûzS,«®‡¢!{TG¬-á“5"CVVØÅ ±r
+,šzÕâO¶ÒzçÀ¸+ÄïÖ6-Û.Î[£p†dy
+¸•ˆ5Ñ;¢¯µˆ¬‚lËìÊ
+ÌÁÇ
+l5ü¾|Ç¡´C{´#îµñÒkúܧ®d¼výÝÚ¦¥sÛ95
+›vхàŽCO= q‰¥*Ùwª$I+A÷•Vã@úýý˜jèQÚÀ¦È²YóÒ•ìÜ’ÔZíøý²MX/[Û5ہ—ÖŽª
+;4î7³q°vüζ¡tj;–jSçA
+¸2—P@GHËZ»Deê#H&àº7§üÎhJ”&ˆ&8Bšè¥Eç½vüζ¡tj{к(‰¬‹:Bó£
+¼05
+°BÍõqE¸ÒÌè˂úûÓJêCÕPA4Áƒ9~´´
+`Ü) ÕŽßÙ6”NmÏž·:Ñy롓#$[“U!/^{ âw
+&¢“¨Ö‰( u2þŽ.¨¥D!M´Ò*€q7Y;´¶©€¹í02‡žz"Äó†cê¹ÚÓ CnIeòÎ\Šì`5o؁ëXs†ß›ÎÌ,M°"Á¤!.±ƒVZBٜ{ã)#kÇïlJ§¶gOžÉèä™ kcS\ÀuÐ9¼
+¡ŒU  ² ÖEÙDþPÚ@vQCh'³Òڍ;»¨Õ®¿[Û´tn»x¬Äpÿù±.ôʹ2®ééa“¯lŸ !/-4KÑ&¹V›æ¼RP“rêí„Âlð½„ÒNæ5UÄÉ;x·AÒݒû‰Wf­vû]ۆҩíËöNÍr¡éòþd„æo#B®C-P· Ž7süÎÀ/)'b+‘ár"*C‚bî N=ªûšaý†á¥Mb…XMd"jªÿ\S!Ïön¬˜ËS5ýɝL‰:É.
+s¿4"!T‡D4Í<XôHU¿8tƒòú3¢hªÃ ù©iÍ>+–,r>Ø«úÏâD[½ÓÂì'Vu31<fbx# ô1•á3Ûª¹o¶K÷XÿhdXµü¨dHÄÀˆàJ§šëÿ†!ã،¡žiJ–ú•\‘W"d{;pf}r]{"ð ·,l;É(·…¸AqéÞ¶€aköbào^ÅÌTˆ ¤Èe‚áYóï5•q|JNù­þ£mõŠ¯À‘ê/v«B¢g¸2âS¼ SuÝz—zý%.D¡ ÈP|wOÄÙ ±ÀRMÇÜ.3× †DhTn@tݾáTÛêïxofb"îô?úQèž¼Ó¹˜îÁU±<³ÿU†¤êüÁ-äõŒã€»âæ~wâô{r¿;ÁëwõcoQšáHFÝ?ú•u
+»ôÒ8(Âø/ àI[âú`xÀ€_ð`Ç:ŠXàßg `Ã|kúø<K<4bp‘  TX?½&UO¡Ž®o öü.ˆ«š¸= ‡¤ø†¢ƒ»¨qÿå[, Ćì+†@h˜^¨ah/ x— 0<qŽ
+f‰üMCŒ‹ÐxӅ@lÆùŠUrs—Lpü¡Mú¼¨!"šVHþøBƒƒBlérçôò ±爣lñ kq˜å+†0ÿ7mØ/O)HÃrÎVåxÈxYYΦþ…Ðlœ†¥#¦ò@Zf“yÆÓq€Ÿ>ýw­ðßÕßËV?²æè8>n:lÊÒ| rûïºÃŸ;Åg àTâÕ=ä\K›|¨XˆŸ¬Wœ|©Ê%¤i=Mü~kúí¿bô†D4=®
+¸Dþç/Ûa¬3‡‚ÕýÝ ¡«{FšÍæ[º ¬ØÐ\´5;¤
+­þWƒ†&¬±˜¶ÄPÏ¥G\—ýDÁºQ¯(¢Ê_wOü—w|Äoh oÜh Kˆ¡¾€Š…Ö­ÁmŒVÕ^vÓürÝuãZˆ­»ïv« Ã[zñ}ۋ,÷üŽa@èÙ~Vï–ÀV T†m¤ß{Í ¯þ”ÎÍ<“/~ܸ õD\A:#(ß´”ê•óÑQC\z¹™Öc2f_ul³‰~j„ìD„œö8cÙ|® ø†µ¹ƒ:l¾bØ}ýÿ™jÀŒÆ}fpoaiFm*¹ë³Õæœàåæ®)x¡Ö·î±@éCëµ­–@}U6 *~
+2;mN×î*‚ 'üšº·"ÅYuÕé™à¿fp”úáÖ½U…—³ÜzÇg!n¸aå¥GA£X`‡zÅc-° ëz³EÓ_n·Ôƒ…‹+›´þ‡Ü1ÂΠL íY`Í&lÅD¼v™:p$ðæî†]fÞ=š†?Šp{µ(A]t1¿–oÅe èîw"tÕ´f9ù
+$÷€¸¦ËwâÛæΩ ó½tòw·• ¼‹›Æªi ˆCWt=L}7œi4eàœÉ&ρã]›<žÀaàxü¨õDÕßKõÉs —‹Íu]ö¼pæ?ÐiOMrß±²–ë6 #:`Hý¡}|•–õhÑ­b¬þ²~xEN]~ }—pË@uĝÉ'ÈÁL=ìÇZõ€‡à«ððD]wý>§¾Ê;htxðh /\ ½Î~еî9¡
+' Á6¢†ÎÎãـH:»ÆñQ¾A'ËÆÇÓ:O„ì2ußcž-E8ÿCýZ ã¥q^{ÂMcç¹'ü>Ž‡;V¸\Ρº‡ŸŸCÓꢘ á™2’?4à`¿fH„|…ΚÛ~ÄoÀ‘À™5tSåláM•;¢U`}a80¬íÌ:TDðò+Âø×KUN°b!ÿ–! ŒoØ-8PÂœô*èHš`g!ԎÀ¡»r†SÅlnˆÚÕ»Hãi /D¦Ý8¾fÐ}½qÎÀu¼À·/ 
+â:9°1ëª-C ôzÑz¤²”鷍V<‹œÁ\Mg¼…ÏÕtÆsÄ¥'ê‡NaWU[Š30Ãvib†„˜`HÄ­5²¶o—FíEí¢ßcèŒß>ÊBTEuR ]ñ)ÅåH… q¨õ_cH
+Ìf p™‚òí ×Ä_TƒØ!ãú’êð3 TǵÆ
+UFûXBºå®NaüŸàQl ­?™*”Þ=ÊÐéÝ£Œ]݅ÔøSC
+þ–!›ÜU‡¼¢îB~CÑ)Fú=¤íµ¢àCºÜ™4Ä^fb/¤L
+ù6†ÿÈî}$–È>Ò¬»Î‚È8õ¡žpuYN/°¢üLÎ@H
+Cþ7A”Éè¾OðDôßÚ9!œð[ý7ž‹áõÎj@Øn n>µ@¬ÿþ‘¡Nq´÷ x–æŸ ¦¸€˜é÷K­yCüæ5Ò7ì¾°oˆ h‘a»ÌŒ )ÕªŽ„ƒ´þB»öÐä,ë4Œºž¦i"3]UœÃnÌWž÷1ÕjáyŸ0Ô+Ôz¤wÜ™‘xRÔ§ÌH<ê“'¢_0Ô¨°ö6P,V„‡h263~
+ª½ÕHãS³?.k¨±Ì ,6DÑ#Î
+šŽÓ¼“`xšÿ²è$Îx©*¡÷oê¹ü‰‹Íð®hy^éՕ]épfà,Æâéõ¨}™G^‘=«/¦'N~Ո5´ 0¿uN>ÙFg†!¦>Ó ˆªˆ‚K|åÖDycP®¼ÈزrQEº!9bq÷ãåñÝ<~j¸v[*ÖpuµÀݲÒ)Êp5éPWù¯Må4ðw /½,£~7½hlowĞx Ý'ˆÒݙ)ù1Sýj¾Ðúϑ8\_3¼yË0üþǢ̓@¸‡¨¿Ý.IÌy–ƒ‹Çzž4¡Á“çY³Äox¨ÿGz@E°• ò€Š‹òÕoБßÛî#wÍÞÍ3E¼úã,ÎYÁpŸœ)|tœ·jõ?~¨_ýð7ú@WÇþ­É©ÖG  …QQøx‡!˜Ä9 äj©ƒ'øO€ÜØ/ã´®Ž^{MFuèAo¤hº“—QÀa ¯mðëT@`±9èB -ˆà—ó¸:ëÁ‚ãÄ«VDâ²q%Dùpv/àÍûa2JN¼î…õQµB‚½¤ú¡ ¬‚ð®-¢–(P™ä  ÊGðú–!óè©ë9ÔPTå,€pI‚ÇH o%;9"´RXÍ TÞLªá`(}ʌ©[ÒêŸgՌp‡_'ìPõµý]ýwDÀbŒÈ ŽÃ©5ùTŒ‘6^›ûϯ(¦„P§–‹K”Ž©Á~Wù.®(.–©·YRÔ›%EýI
+všÎš@Ýò"x@'!­ÅgBºîÃù#´àÃÖÝËð4.õu¾Œ¦¨ø¤ÃÂÜÒ9háïlFîiQ`Ìθ»Y_Yï0bwƒÄ•ÊP.ñÉÚÉxŠRd W-Ömte½ò4`ZQÌ´FPN“H†D\긯°ÄM·k­¨ßPæóo*1¢ãüÓšsiðFÇîº]»§‘aÅYQ@tB#FâpK“2ðd¾êAüÊZ G¬ë}N¦1ø y
+æ¬zOK¼΁iÕûwµ[&]đâÂÓ\ÆáRw
+ù_!<
+å9r<`K~ÁOOŸÚˊÚËqj/s0¹¼Æ¨ü(Xê*BŠµ¸u¢>®!1ód¨×¡ÇwÎðÐØ/ALìŸF3Ä;~¯#7UµËý ã¢ÝÝ §àåß1tÆ0pðÖÉ¥“ôÀÁÄB`¨ ü×ùr%îŠüW®(é¶ÃnÈ}Å°€¡FŽU|Üá«ø
+HÆTMBìªIˆßGI¥»3{xvlײÛRC 1£O¦kè÷ û¹
+²>M(òù—ä
+½~$p&P{q@Ü%ý~ŠÈ44¨Ä[ˆ0>Gè8äÃ(}axà™.Z" K–HÇ
+–Âøßà§ÕÚ-QB¬^ìáÐù Œò_6Y">c†CB£áXg—Ñù‹„%úÀ¸ýQ"|£Ž¶1|JKwiÎL–ÈK”YCÒ %8Ûûhäß Ð‘ GB€á,‘ñ×QÁûk†”!0œÁÅ}dpgx‰Jî`V$<>Z¢6±ã¹gý ±êw„¸òÚtKò4\mÒ, ÄÉ%×±0Ô^Ö%Œî3!º0¬à% u t¼C¶¼ÀDÈb9Ž²"i|ȧ¯‹횬Kêd¹Ÿåà7 ÙY‘´ê2<khÕ¼4°66
+¤Éêãö
+/áo`S;ð †ñü“
+±ÁÐ_o(LíÐ„Ä 1”¡!ž–4‚§ð×ê6rëS6ɳ!>1€xNÏËsT8›ƒâH¬Ó
+Çüb´"Í +KUÍ=Ïʒq¯$Š‘geä©Ê=käΣˆL1çF‘FÝ(çæ /gžAâÞ)îLQó¬ D¤¸ò˜"S¤1D¤hyL)z¶d@DŠ™-ˆ¥Ä‹sliVr71RœGž•ÇYô$Ê)
+\i") "řge "WÀFQqòOŠZó,D¤¸4£ŸSàzD¤HˆHÑò,D¤èy–"Sä>¦ˆH1¶>¦ˆ@qzèmC]Œ¢d{ D¦˜;E/יg) "EÝúØU·>vÕ­)"R\[SD¤Ù^)îm¼("RÌ<‘)ÆÜ(Ò4äƤhG^÷­ÔdiÝD¦;ÅÈg^÷)®mD)"R´<K)zž¥€ÈieD¤ۘkcsíÞf)EdŠ<K)"RÌmÌ)"®s¾
+xÈßö«Pä¼َW—uÛ}*"ŽÛ{³üõÞ,ÿqmAtŠˆûž-qÜõµ!ßÃæv½äuq×7·up›ÛìqÖm̝59y)$ïëf-˽õuE¤½T+ÖËî€È3݈@DfÉzŸÖSï€Èû¾’Ú¡ˆøuÏÜR b-§õÔ; òn‹£îˆlُHDì©ÍìÁG?lº"Ž˜Óvýw@d›{&YyÜ6¦&uo«©O)€ˆ<¦ÍüŒ–gþvÙ¨³k"ùÌç.¶†²­a×/‘ˆ¨ÓnsP Ì£Ÿ6W®à‘Gÿˆ@ÄþQmä*…"òè¿#yôs†™Õq¼6.µEäÑÏeÁ-yõp^¶ÿÐPÎóÊûÞª­¦À£n«)Mõx0÷«ó81*CÄGž?äH7P‘Ç~¢"ëC[ÂzÏ|æãÁV1ú*ý3R‘¿­~—»ø\˜“sP[¬ebTæë&¹Ÿêˆêpq̾¨‚^H
+EÄÑÐ1æ@DÙ÷L<î<^,ãªñ`
+ˆØ—ñØ ±œ»Ý®R q/٢ւ¸Ÿ±SŠˆx¨Ì)Žm]w:kËë\ŽˆHà×vV[ñ`¸ÅOÕsó;œSg˜Ž @ÄZp)j=ª¹µ
+çÚNüV–sð€¸ng“'rôw¤"Örè¬íÑb‡ÎÚý€K˜ö¡#}ʋ²7l;Ò¯Ûqë<֑ˆÜŽ¨ïPI”kœ×=êlŸ×{ÓUn¼øW¹½ë~Ý)ú¶_ïC÷ëN1¶ýzø¶"¯êû^hwã"ŒSÌmeاÎ0‘"Ï0Lìäõø¨èA"[ԁ7ªâÚÖ\:EËk”…e£Èûuy`:Qôm=>†ZԘT![Ô/Ó.dŠ#*dÈ#JŸ†þciìñè؃ÙxD¬åÌ<€ˆ·õä{8"RŒ[KxTöq;¬'{\Gîɸ °¥(ȵè¨Ìi>÷ÀÒ?)°2¯¶ÏKg˜ßq̍Bf˜H‘ý§ëja¦hÛþäìú1Š¾ù¤ÏnÒEö9HêïC¿œXxà]Zxà{eä/<ðN±{à+.ýwä¦"¶£z-Ó¹L蹏î̓ržö]zsDlî—.÷muDæ¡Ö²a&T„Dh#ñˆ±W{-Ñ]µ:"Rt؏ɀ±¾í>ø ²<úç 芆>ÆÂòÿ³hfˆ§Í4¢3cËùÔ)0ŸÊóqæw
+Å5RˆŠÝVK·®0bT¨¬0bš(±þ1•Öœ‰ë§À:Æ)°ŽqŠ±×‚uL¤˜™ë§À:Æ)°Žq
+ÇÍUÛËlXôÌ8EpæÕÁ¡’rè{s@d
+±ÊEî—O"E™ ‰¼´8·Ýg¹Ɋd¯@dŠS)ô "ÅЮE!—‘O¸Vh#¢Qõµ" 2Å©á¥!Sóî#^Õô!a‘A‹¢ô!qŠANA­´^Fµ@\ÕØz uñÉ[ƒ Žœ¾YµÌ ÓCu*¯€Ç ÅhÓ×BeœP!µ~WýúÔ:6°5Y¹/}y”k2¾Tàße%¬¬á»ð5[ /
+ ªåJ¸Œb!³úåðȅ}9£àZyQLG|ʸËo‹w9·է©lSn<Î=L™«ƒ­¯çXä©rÓú,ªuê4Rà}ÈC›ÆœûGhÎ4â4ÔȍÈ)o¤€¼xlš{§ÀÞ@¾´{§ÀÞ  !žq8Î8–ÎäCð4&RÌ
+éí<72
+ž9N¸œ'\‘âÞ)îLs#§À¹‘SàDÇ)p¢)î²QÜ6¦  >6uöÁ˜ú¬ÛMæyS༦ ¼ÊÍýÖ¢sÀýÖªånÁ
+‘y¤¸æô˜7çÑøJlÓÔàŒñZOOI®lFÖɋeezdó@˜½iÆ(°ø¯Z©‚Ç…¿yŒ
+—Ö¥KÑcdOÌÒc´—Túô ÅGŒ‡¶c að 9<h‹Bú=hNÁ×6×}-<¿i²²Lêô 9<h‹BŸè„Í)&_Wƛ4ô EŠ>±Á#•ŒžIî¦w¶áùÅ£Ç:Ø-♯ÜZÄ3Ÿ9´h§@4 ŸùœÂފÆr’Ñ‘¢Ó‚ð­âÛaÞñs-‰fìCBõ¾.¦­¡Ì-¯Z4:¥U ’;W
+}¤÷¤Áf‚à‹BVŒçCʉ.ÓúÐñúrv—a!dÇ» ö¢Íëëù×æõõÒ¢˜%ƙ/
+±dŒ3_†KöŒ™—÷gdŒø¢ÐÇáù$rÁ–‘ùò î4„¾å×âfQpÿ¡dÝ !þ=š+Ë^ÆÿÛZ‰{©EÑ¡¯ŸŠÆxˀ'Û-ƒ5.«oiõÑØZâZé,º»à]¡p„ò¸}ãüÇÞ[¶5Ûâ!{KÆ#­—hGèØ>J\]â™h[]JO–"ˆž'†yp³.ÀÖ°‡áÛÙ[%szlUä¡ã¥6‡]Ž<¨-E/ù‚·?œ÷A•›ê–ìˆûB§À.(Rèú"PŒ¬1¢Ñ²“‚» £À.(Rô±QèK×ömíÙcR`Å.i=(f–…û£¸9󓂻±š¶g™b–b&Yl7F
+îƜ¢ø×WŠ²}}ۍŠ;Sp7f؍9wcFQ9^œâ.…JÑ:÷ëNýú¢‘M?ŒS4®P»%óÃD
+¬?»ŽJúaœ¢suÙåÝóÃ8Å åÇaÏÇ#ÅàZI O®'׋B,OÐ#…®bŒÞ§˜œ AAQÐ)fÛ(fK…VŠÅW†JoSœ¾2$Å=6
+üA\µ™?È)ì‘e}à×<‘Âf)Y=Чàð)8Ew{©ðKDŠ16Š1ÅØlÝe-“~)§0¿T¤és£éYš¹Y;ú¥|ql֎~©H‘­ýRN¿”SÀ/)fÝ(ħ´&?Ýøœ›µ³}Κüֈ°½’Qp¯´®Î”ö[B­QpÏfܳîJ;EãûòN‘­ïJ;E߬ïJ;ÅجïJGŠ±SŒL»ÒN»ÒN17kǸz×éܬco×w‘NF´#Z×*¥‚bî:“­¨ ŠzМ¢¨m­Ú䠙w¶âäÞÛ^ÞَسÝhGݬïl¯µ²X]ÞÙv
+ÜÙæ&ßîlG
+öH‘-o°ï:ï:9EÙÖì¼)²¥cŒ¸ìdËrn–Ž÷CÖ.GFoÒ;nÒ/}§èIZÞ¤w
+ܤÙÒñ&½S´ÍÒñ&½SôÍÒñ&}¤˜;c=¡ŠRÜz¯ˆõõ‡ÚuۍW}ÑÜwã~;70
+ž¬¯ x~a8¿øGhÄSg':fpÄȆÔNtŒ¢ùèW
+žèE÷ÑOŠ¾SôLÁÓ£àiL½p”À“”@Ñ;egFag'Ξ&G?)&×9Nqïw¤°»ô¤°»ô«ò꥝“ÏI0¯ûyM ¸iÉZ‰'KFqú:§xf< clc$
+ž¢Nѝ‚gõF³úH1ÚFaëuÐï`=XvwfD
+x7–5Ô³'úP…Ž~ØK÷Ô<5‘b΍BG¿QÐëd“–æÛ"}[‘b–b–DAšQ¦K"ýcFÿX¤¸wŠ;Sзe•kXRÐse×°Nq—âβÐëdë'pŸ’QЧ´ŽÜA”)°†-úÒ°ùƒŒ‚þ u”1¢·Ç(èíÁþÄÏ¿…Yº:ãù·Qðü»Âÿa~‡@19¢$ó•ùrHa¾£(ÙÒ¹/'P$Kç¾£ /Ç(èË1
+á‰^¹oåÁȆ$ÝbdCéˆãà9ê
+ý ž£–†hž£F
+miCL
+±B<G5
+ž£.Š¥B;G]¡0 ‚sÔH¡ïóÔ#/ž£:ÎQç¨+þHZ7
+Ó:[ŠóK§Àùe¤˜;Å̈q
+Ă8"Nœ'N“ÖEqœV çáÄ×)pâë<pž»(º#”B5†3áE!Æ΄úPè¹B(¥y®Êð)ÑsÅà!z®œ‚ž«ê0fð\!ÚÐOQ‰è*ž¢<ÏåIlÁx±“Ø'EIñhå@¨Îs½ô­3'w˜e
+\ášÕÊC<½m¶Néf°É‘úi×5ú QÂØ_£…±ï<èQD¸y£Í°ˆw cÝc³GÄZèsdl¶ù3º#}ŽB Íç(¦­Rdö ÏÑ(èsD\­û‚>Ǿ`ó9ŠY}ŽFAŸcö¨›´GæA¯dÁl³iÐi¥,â¦4ßVàqSi¾u
+aˆÕSMF_[qeòSðñWBp…1§!dÑ2;µÏDå>ùæ’Ö–= ¸´髱~ûªŽ¸8q² <5PG 2D•ßÙ§6PÞ`½'‰ÿ(¢*Âæ]•I dZ© T³WV!$
+Пñ3o:QÄ9“
+®’T@ð$ÃÐ'œ¿u­ßº@’_úâZU_Ó>«ê¤Îðãº»ê~È·.vÓ°b=æ°Uõ ^ebéˆ}æµA òJCmQXÞÚàbÖ@K…éÀÙ_˜á}Ca™Ô¸Ö8±Z¯ñVíÓÁb´;âÐß Öe·–>Š‹¡a“S¬!8£ÞÕ2Á’ÿL ÔoðÀÛ¨QµÀíòyƒð"ߦ˜Ÿ}ˆl Ãiÿäçâªçޗã£$
+D°Á¹ZÀ†RNîjSˆçˆm×#¤ºÁCSïÄGU˜zݚ4:Æ%TìL2CÀqë²ÁlÁ†½xl*~ ôÁ¸×[æ$Q³¸€~h˜uFc͊ãÕÃØz±Ö˜Y®ÄÌøŠÌ¢ž¢ÜÍM¢ŽyØÓ¡0˜Ð¸Ð敓®ì¸
+û)vðùEh\ˆû;Â9X·7Ë?‡…½8À¯d{”RDx”Û–‚Õ«LYvÏ €mÄÊ]A3$Ó]ÀM¿"ÜïŠ÷¸ŸÁß®šaäŽB–ܘ.[§@r„àlû4¢¹|-øè&s ìÌú<\‹-æéŸ!ЇƎˆCp•0 A_l`téöE0Ѿ@+×¯¸ôéÖ ä¤pëElVOûCËE¶N@3ôµføÅJC,ëƒôåEmܖ2¢Ïh°mô”^¸j´Ã3«EŸz‘ñVýXŠû8¦Àz="u)Øz)@¯[ª·©2Ö']
+ê]õä¾Û+¢0a1ež«mNµ4ýd™·gçôÞ­ “ôE€yJFSIœ?* GE§¼õ¦kü¨B½Å!‰úªSë4ÿIÞïú…˜ÕWÌv4Úd$5Rà€Ï6üó±‡\1‹ µÅ£ŸÖø €õc¼ÛrÔóv€ /V*6¬ Ùš¯­òðÖGÑÖ|“]õ{KÔ,¢uÐ;©Á[â[„‡")-ÐIŽ ¶Ì-þ´Ç>Ô °\qŠR¶$¯cʖXSù¥ÎˆŸM™˜é;öŒè¥•ß.¯®õ¿²d÷üʀ–Dbßácö“Žâèvg‚šà(®Pxú¸›sÃzÁeYNÞAéNÞëçj-ì—\¸—–~w¿î¡P—aLNÍZ¶Ý—š—Ìf؏Z†c6°°Ó1ÆbTÍç?›Š¿"àbb²!š†[‹·‹6[ Zûšë¶T&N<F˜äGj½W‘­×ÌÝJîö\¿55‹`&Zªo††
++ë
+%ÞçC"A⡘hžQè݁–Sâ3Y½0ÛÊ( ßa,þ
+é­$1$~Àˆ¯ëåçålLI²ÖiÄÖ:˜0Ș0Â{¶ÓÓæÛ4b¥L#Öï.ƲO#¶\yÄúµ@1~9ƒîkgÂà•ZæÕ_=¢¬—ˆÏÌiw­Ìœez"ù8&Në>qZωÓý˜8­Å8¥º)µÄùÀÐþž0¨laüùk8nœö.=„•¬Æ^è€ÁÉȜtêٖþ« Ϻ|Œ÷¦®T_Z¢.Í[èÜ'§éȼõfïõbÖ¨#ïãH1<ÙO{2ÇތÒÛwÍ\ÅâƒXöâ`|*½²Ã\eñ1›¡®áC<0``Ò Y±Ìn0ì-Ž8í€gz'¿D•ÇGuZÂؑ÷bxžöÜ͊ÅÜ^2À3?5d dý?ú7ïÁ§ÿÀ8x#G€aQÁ‹ƒv¢á±âGýJõ[KÔ*Ú
+€{xS1£_ÇÞúæ"ß%‹-0SÍM˙µú JŸ¡YT›CùA´üî˜yu/¸­] ^¾<0îxŽsÈ°d÷ï {ócÑÓv;^÷¦œˆ´)HÇT.½|iSW—‡Ýì·‰1J
+G°’OÂ/£3†2؇cMË'.aøI(cÌENSpñH$Ït"›0x¡NÂ8³'’|šÎÈß+ãÞÉsäϙ$ž¦®d<MXÉ^~u™ä鯼VdšHl¶Î1I^·Q‘HòÎoûG&y†à—ÃÏy“þœIƱpšöuPœ1eµð£¦_?1⢓1êAÍùR¿äÕP<ÍxΪüœIú/÷<`Š>q]ÕCwË_›±â°Õ¼5°âǯºêW¢µŠÍÜù0Rq8õ°žyë—yøzïV/ތ:ó>̳. ’
+o}Çx¨w«oFy.œûãßtkïYõìcs]́ï`
+obÈ«%“<‡äð~ªL
+F&±Oï ‹’’Ú3Ï<´ŒDâf„îõP¢º¯¨vpíXÙ73IÆh44’pê/—›²É3°^h'`¥¯ú¡5FážÌ´3JóJ€¤=!~ñ¨ô@òe/‰ä9o¶{ðt»ú ëº}Ÿä…>¶l'’oz $S†N¬CûŶ>$ÕI£ce’DæÇ®Äɉ_ÉEæsÞ¤Ÿó”úœIÂüàþ2}Œ>Gƒ±%õ×-®ˆ¡ý…Ü_&’ð5Vð0Gw<³w‹ð0Gwæ7›2Ig’€±à w"yŽ ‚ñ™p-I$<ð)Šµ|)/ZѺ=‘<ÇgàYâ®­uÃlØùñ՗Hž#ÇY#—ÇR}%Ëmd’ð%Ýóîni½ÄC$ŽÁH&ycÒøê³ð´Ï_g7Ò8 cX$B&¹{Y}*Øoj<öäó0ÿMµ1‘|ÕK&yvÆ
+]­Í Yàe*3d?]M‘$\v,ðVv3°üPœs'’.íe_ÇH$ÏbgP&É6 3Éó×Geéedӊ£1Cr$ŒÎú†EX²è=Bû]ZÖ ¾ÆØþ±Y¤5ÑâÃY˜Iº,»À
+rtHûš…=óºüI¶‰$`ôl6‰ä–¶‡îW|ît™$`0eíDòN¶ŒÎ6›(—]I»LÚL1˜¾=“ƆE;) À+êI}.:sf’8?ú:M“ÅÚ8)K"‰xa"yÎâÎ$÷/ªYö)E÷ƳßMiùSwŒH2¢TÒàR¾ Œ³0æúDz ‘düöa½Â³/Ö+®}SÚQIž¿FJºÓbjFIäÉ-ËnÎå}³{ƒÌj¸1š¹Ø€ÕáȟI§µ$ŒLrsÚvŒnwE‡E’È)0&’áê_FN…³–s
+ûGݧ™,Œ…ö¼DÒ¿qL˜ëX&1Yìñ@bd’Îé‰*¹e’ˆ!YÉsDýÛsåWºÈŒú†I$ª# ژ¡6ÉsLþóý—^áæ–'áœ~/»åîÔ)e"yú¼02‰Ù&«7ì꥿Dȋ1V[r„‘I:§ÈpџÔ4NɄav´DbҎ\<N$QZa$’§Y··(-Íݒ¥-pÈ Sq&yçf^ëF&'}Ó0Û
+iê'’ŒQx#HžvÙ5,‹ø"›H¢´ÂH$Ïq™aÉlhAR~—åÄU–c$’çȁ²ay<h{ $ö{د„‘Hž~…´é—›H"ƆY&±ñ?²M^-‰$Ž‡0Ésžôۖµ.zλñ%„^„‘IÌ®hUx4Z½ðÑèNÂÀHû2È$±bd’çHcS{á
+{Y謹*_”Y02IìE‰äiÎþ×å ¿ÜŸöF-áÃ2IìE‰$`ÈÂܛqÆáz9§Ó¶¬×ÙÐìŠeç—¶ÝÓÉ´‚[8™ çG&yÎFÂϙ$|.² (sŒÑÉ:“£$ŒDb;0a”/1>“I cLížm©% ؃«C&1KÛ=ºÝÙî.Z–ìõ‹€‘H‚æ丞Iž#ïM˜ƒcºG€a˜K:šHÂù"b’/O ‰ä9w¿Æƒ­6˜"mŽÙ6yÁɉwš…¼¹ F‘ý"‘x/ýê÷Hå{>ÉSlݬzÐOŽ!9ÀÎ96…%˜­e,‡¥ থÉ|´Q4˜£ø1Ðϒê¯+Q³8ŸFÀÍô(ŽÖ‡ïÎh Wõ'Ñm¡¡®C ÁÛ˜ÙÌÓٙUý
+iÈÖÕîñ'’§ï‰1‘X:&€'å‘fÛ#ØFãý8]F€Rê\ßaŒÓeÄ°^~n#“ »²%;Ñίµ;ÿxb(
+l€>g’ç<„Ÿ3Ésþ!Êë>ü²/¼ óí¯†{O“IÂ/ûØù "Š…áóÁLé—Iž3Éç¼\<G"
+ÛùV˜ƒOã6¦Ýxi#‘<çÅ1®…L@@¥M(ä
+k ÃÓ $’çLòʼnlRCÄ ^èˆÝtBWí¢×ñV»Èì§*s€/i½,ð#VP|&yê’Ú}üxk­ßá[íg¼×v?-ÓüÕe’§.þûüž<¼</Ócݯ€’€Ñx‹ŸIÌJbúß°ng’€!N3ÉSÎÝqpKÞÎ)œèOÆ°f’€QוIž®†žMq]R¥Æ4‘¸¥~¼
+r/óD0F"–ÇçLmÛÌВIž!„™$c,9~d¥'âŽOÍÏ ÞŽøï©ÁN¼œ:‘ŒÆÛõLÂ[)¦\jÄi¼__.¼'ŒDbã^ŒüœI<>$`$’a3>ùËëÔD’1V،#‰Í¡ç£ {Õt˜w/Ì¡„ñ§ã,…ñA‰è–¦ï¸ÌÐÝw üî›H†ÝÐNËÒD¬¤Ä˜Hƈ,KƕF„«ÌH9aD’0Û){nœšÃ~i[=Ÿ(H§Ä˜Hž)<j-/â¥è¬¯è'’€AN'{¸ÀN‹}_L$Sad’1S—o#™v¬+¯Ã0–Œ±YÚ#aL$‘|L$O9Œƒ£B NÄØ—“HÂéà,ØA2ÉðÑ°ŒúĘHƞÛÒ¨O$c3ûöDÖÔiÇ'’°¦c"q+º, IÀ`úډdÜöŒ°­ Ó¡õÖˁã1&’çá¶ÓwT,øŶŸÚ¦³›HžÃËÒfÒùL0Öæ™I°’ñ‡‰$Xc6ù#Ñ<CNۆ—µ+N±™$bè«?‘t‡¹SôǸ—ŒÁTÿ>®…‘IžrètY2‰zIÒf’§‡_+ *¹dZaF©L¤F&1 †eù«“´/RWO$O9¸+ã`3‰ÙÇO]™ä9₯4™Äìc:z
+xÅy¥·QÀ@’ÜDâ¹)º«²¹,°^VfÂÄ=O¾÷˜HFO8a‰ÄŸÖÉœN$¶¯#zO2¾ x¼6@Äh<&’°~èa¶2Ù^04 qÉ0ƒùúÌN ý²3É8l°÷K»™è©HØÐ
+HÄ+1
+»Ž‘=²?ðҋÜxن;é^¨œiîÓÄ8Wœoˆ!€ÚÈñKŸFŽút€zÉÑz!|Om䨠OcŠ‘ Asj#Gž}:Àe)Óx@Œž’9õ"1ö ñœJp—3ÞŒoƒwã» Ù)®4„‘ÎóÃS\ñòàl““¿\´9ƒä€½©#Æ2ÍB9ÃSP¤ŒC)(^R)ålC£Lœ*©ÏK2JËd:Ӟ­.©C.T“OUÄXsJb£^èT4y :óLÞ=‘ÓïO„AgžÉ»'pJGœÉ3ç9²Úí¬rþc/Þø
+jàc²°…6ø»œlRƒ¿ËÉ0hr™l0ãÌk_|– #¾:µÇ£y %$n’‰1yˆùcÛ ùL€%aÈ©,“<çn?çå1hNœÎš»gÈ{ϑÝObL
+ ÙÅ]ÅD1”Ï"‘<çŸ3I<î"Óòtþu‹—Žf ,Ñ#¨“™$ðá91‰=9Œ×ÌMýšÝœôs™HB†ô ù¹0M×Âgr"/³EÙÁ‹ñ¨™ä9’kZhÏ5Þx4ƚožç†ßg"3IÌ셙ìÖÝ"¯ò5aL$c&׆ÓÜð¤›HƉ§<'’/"¦@…ýpðÕm³!s1ZLô‘žHžs°Ã‡Y9çÒK.Î0L`ÇÎ܀ðs9vÏü÷Òƚ0JT–ê>éƹ‚vhÇXmu˜HBŽì¿ôœò–ëjgÞํLbsý@£Kû’b(›wþy|ÓF ‰>²Øð&§Ùç<ȟ3‰ùj¯ c֋NbߎÚú8“<çòçLâfŒñó,x¿0{‹Œmäs¸a`˜§L&É+1És„ÒÚñ¡µL9F"y_»‹±÷É¥í9»£}ú‹Eò>ë kš–¾Ï9­rÀèéæϙHž
+éíWæ÷‘I†nv2IÆXZÄàL.ãA‡8™ä«Ë$–¡r‘]Ëù‰‘ϐDòtO¹×‡Ô®œ{øÕÇџZÛíq©ƒO5’×£ùÃr¶
+7êF­âhýã—]%&`…ŸÜZ¼u+~üRï¨'o Î¼<=ŒóÓ¸ \µÁé\€cÄ1T¦7µG“úò½yñã×ÎÔ¥èá+Í©U´Öot†Ož¨Ïü¥Ö­øñK½À™ÔïIƒ£ 09†€c,©ÖCC¤f‘,8àˆ„jªwԋÙ#j0
+úB„QÐuÀ5ˆ)È1Ö¥ †@íŖ5ˆI&j›‚jST½@¼õÄ;š úÝÜ£þ±ìËýëýKíξ×ùø׿ýúçé45÷§Ø¿GBKû8óýВ]VF¤ûûÜÒpóù -Ù¥ÕwÝá²þ°ñú¦%ÜN¿GBKæ0þ]whé=[A#?ðô‰o‹nÛo ­ÃCô;¤7o[Ò»–tÒ}גÞµôOýÇñøøÇ£Œÿþññ/ã÷|nq¿X¸¢?›pA\Ñ­h;þ뫖𽦢­6 '&§>ÓndÅ·Ex½ñê#ïFãÇhúr
+$_N ØFb*_ð¬èª¾j… úr*ÀìŸX[Ñ õÆÛŒËiíq¸qCì½7ĸY¬´›Ú²(`ݐ#õ«ïQz¶, zMÛ-ôÞYÞH·Û  ¦(‘4E# ˆ)¨S”,²~õ%<¨Iä€3
+ª¨YÔw“6«?ÁNßM£h‹ÌžëÉìÖêZlõG‰`PÀM܋ö¡sö1ä#Å(~xÒGÔ÷È´êÔ¡8ft4«¿ÀNOË¥ÖGñã—÷®zòÖ®ÇÄ{У4QÀc|{KÀwuº€(~„èa«‡¤Å-
+ˆ0à{|¶Ðú(º€¡ž¼×câÝ<ÊøX ÆAšO„}0^Mb
+ªĤöâ5ØFºð‡Soƒcµ>Š®ÁPo¼:ñn.Øyá¬g±:ÀLùè¿ë;Ñ> ù#¶È‹¿F¦\G߀~ÉÁÛé›:ÛeèŒÏx§@oAï]õÆÛ žxòeûx£n0nÏÕìÌ _À‡âǯqB õ% ‹ƒ zà­C@ïõàͨ3ïf}Bþ»enò;žœs@wZ|ð}îÅ£¯È÷–êŏŽ¾Äú
+.0Ž7<Û9.ñ3F†·8dÆó>½X½ø¡À¢P?^=tj+rM
+€jõÌ|ÑU¢ÖGÑÐÏXïÌÖë1ñž<NËá(¤þ°F‰öÄâÝ)ÚY°bÐëíYGQó•G;Ù@-.à0 ­Ÿ°Ù©wÔ;³ƒ:ñž§hÌÙ2Ôl‡)Ú#5Â=Æ£$šDV S”õ˜‚¤fñÄ}XìaŠc'óÖ±±yïª'³{}L¼Cƒër‘¹%-20Av¼j‹HQM‹LÃ,חš¨KZd YýµÎEF½£ÞyԉwÜöÁeÑ>gû`ôlaÏö¹#syñc͹~÷9¡p\VoÔÍ<Ø:÷Aõnû`àí*‰÷, Î¢DòXK”Ë´³¦XàYT,zýÀ¨cÑ.Ý ]. 5½užEÕ»EoízL¼ã7xà<¤3g¸Xa`“ô+²[tüƪyI4ý‘;Áëk Ô,ê7è€Ýê½6~cl]¿AöŽzgv¯‰÷I@Åe‰SpD—þ£uF1
+¨zÔ^¼²€# ЩGNQo½ØmŠ÷ŽzòêÄ{ZEC¦–¦T%i£‡ÙˆëŒJ\çdtâ:¨z[%EíÅ´ÑÃläÔ%nô2:yï%nô:ðžVÑðæOUꕭ†U”v1¬c´šas«ÖÁP_j¢.QÀ8êéÍj¦ÖiUSï¨wގú˜xÏŒY.˜0탰lj Íî©1¦]T:`=4Dj÷¼²éÔ{ÜeõÞ÷¸êÀ{Ö 'é¨JüX’aºå°Ë1–á—:ðúRuI†ß؃aØUë4üªwÔ;³{}L¼›ûcF/‹(X"t/‹“aHæeq6ó&[á„Ð%Ö¶LÚ‹Íœñ0? Q›…Z§—…zG=yuâ= ¨”ADÚð=è€ñE§.¶•òî^ ²šE|±EÀ¶¹€ÛøÞóÖñ=轣ޙԉw¸Á0ž[±àˉ¹ Ïóá¬#éÃo£ØY°¯jÕ¯WFj/¶
+†La6
+6ú8¢¯±‘kŒ/lôÒê©!P{ñJ<ñ“uOb4hÅ A¯¼‘:ñ>iP98
+0Ž¨A@cL¥ÕoAÀP¼’Á"©![—€ìõàÔ‰÷, ²Š†R0.8¼‹qbwøy Uo€šÅ†}0ö(àÈ>ê­7ìƒêõÎì^ïyŠÆ´Œ5 (€±¨IbhQ@M2Ôs
+‚šE
+^#e·¾ã,ªÞQï¼õ1ñž5SMÖ$`,Aƒ€c,©ÖCC¤öâ–4Em¨u
+ö‡<–-´¾â\ ÞQ=õ1ñž4˜Ò‰Ö$`¬®A
+€1v¡՛†DíÅ5HEm¨u
+^ñ$ƒbðŠ'Q{1d: œdz1œdP ²Þy 'µ§hLï]“€°Ä)zœŒ ¨IvœŒ¨½˜N2d‘Ô€­K@öîõ5˜yŸlÓFߟØ̶´Ño-môV ²ž´´Ñ[ëQÀ–6úî£<§ÞëÉ[ÜèÙzš¢m:ªIÀˆG5 IÔ¦£š×oAÀPÌG5°(ê3Õ$ z?ÓQÔ‰÷¬Áøʁ9îïÓIfßÓIfßÓIƊAƒ¬‡†HíÅ|’Ùk:Éì5d¬4èõÆ[M'¶5(9
+¼zöU“ýÝ(Œ‚VQläb•äk¥¼¾ÔD]Ò*{Ð VIµÎUT½£Þ™Ýëcâ=k0>•]¹‹%ísc°¤ƒ5Dj% ö A
+:`·ú(€Z§€êõÎì^ïYƒñ¡7ûӝ2– A¸KrŒåNI°þ¿àRSqK„C¤¨Í]R­ÓR½«ž¼õ1ñž5(9
+²whÐy;êcâ\uVÀoIyµÑ `[õțâyÿ+mô{AµêKMÔ%mô°[ý6rµÎ^½¯ü–°ÑgÞ¡ÁCMè)Ś pŒô`ë$`­é¤skPE
+»ÕǓŠZ§€ê]õ5˜yWÚ±=k š]ƒîdñ(ÖÏÔYƒg:«îxô‚Ô,JƒØ­>ž5Õº4x¥£\`»èö"àúGJàjæ×D,qŠÚׂ&¿&4ÉTÄ▧¨}ˆÚ¾Ô:¿&ÔûÅE($
+˜xŸ4(9
+ÐKÔ àKÀ3}NIC öâ–5Ïô9¤Ö%à•¾oG}L¼O¿A
+“DOF˜L#(+Ôoɲ­"M°[}´¹¨uš,Ô»ê£e;óŽ)Ú¦»‰ï&0÷–ŒJ=J* ¸Éf³énBE
+»ÕG›‹Z§€ê]õñn"ó—évi_¦Û%À⒌JÛ5Ý.mWÒðv¥Û%)`ìV5¤Ö%à’ŒRÙ½>&Þó•]”j–]4–0Ea÷ä$’]”“Œõ[²l‡â–¦(,›¢6»§Z§]T½«>Z¶3ïyŠJ@ªYÀ¦(à$’€œd¬?ÒåK(niŠ‚EQ›jªwÕÇ˗Ì{ž¢.à2]¾À¦(à$’€œd^/_BqKS,ŠÚPëpI–ïÀÛQïHb|L¦ûþ^@0:‹kMº‹Ùt¿Ö4ëžL÷¡hÀa­GÔ:T摒¦ûÌ» ¸mÓå˶M—/0t°¦ßضN—/ۚ¦ð¶¦Ë—P„pX}œ‚jªwÔoéò%óžÔ*J$­¢`\Ó>G|]Ó6Bœ:ßMÀä*ºþ‘ï&Ô;ê·t7‘yÏSTRÍPc‘“pI@N2ÖïénBE
+Ú÷žZç÷ zW}¼›È¼O¤€
+BµNÕ»êϚ¨ÏYÀ²åü¢ò‹:ÀX,[Š“/«0Ëó‹öbÈ/êE
+¿ë2™îû²ù$³$Óý]Œ¦û»˜M÷åJ»M÷*JÀ+™îE“Ê2™îÕ»ê£é>󞧨¤š% Æ"' à$’€œd^/_T¤€°‡)
+ÚqYÔøZX&ïzW}4üfÞ§ßà5­¢0â*Jø+9§UÔë£é>ó*J×ô9¤Ö¯ieý–L÷™÷iŠR@©™À§¨  ID5ÉT/_BqËSôâ*5¤Ö) zGý‘._2ïðÂÃN|}~§Jközú;wþ’ú8,µc< Ôs×yñc¼´¾æzK!j+6d) €ÍêW°Skh2êõÎì N¼cŠ–Ét_ÊdºÀŒ¥$›K)“é¾,ɤQ–dºW‘&‹Ø­>š$Ô:Mê]õÑtŸy‡÷Ét¿ì“é^cqٓÍeÙ&Óý²%Óý²%Ó½Š0v«¦{µNÕ;ê÷dºÏ¼Cƒçt»tòí’ÐÁ™(çt»TZ²ºõG¯£Ût»»ÕG«™Z—Ï4Ù½>&Þó•]”j–]4–0Ea÷ä$’]”“ŒõK2݇▦(,›¢6»§Z§]T½«>šî3ïyŠJ@ªYÀ¦(à$’€œd^M÷¡¸¥)
+Em¨u
+¨ÞQ¿'Ó}æ=OQ×à9Ý.À¦(5tN·Kœd¬oév)·4E©ƒ–,×j]<Óގú˜x^ †€ã¡;†€p³Ø9Œ`p^|
+ŽWùBýɇ„: pŒÖ Ù¹ðÖ! ÷Îzñfԑw°áu1
+Ø3·%#àfñÂëTàêWüQÀ«_¢§úRuIFÀ1ê· €·½w«¼uêÌ{«¨¸Š:`¬ƒêÂVI±ÀUT,ªÞ5ŠXç"`Ú*é­cõÞ­>0»×ÇÄ{ž¢Pj¦€,j’˜šDP“ õœ‚ V,DÀ¦¨ à­C@ïõWKÔ׋€x>­-ƒŸO×ÀÒì‰Ì¸Cž_ëÅraý£…â=Æ÷§v®ßJ őó8®QêÁ¢·î
+_b}àíj‰wlŬj~-f™ò³(8M³kñ¬YÌîågQ<Ëz¾ó juuÀf­/ñ¬ÉÖueïª?k¢>§³èՍ7ãÉ>|M܀ñH¡¾&" /Ş8Ä×ÂUì7¬¯‰ká€V¿ØŠ¤E[dàõÙ鋈ZÇׄ÷ÎzñvÔÇÄ» xá¹v xâÉs Å¦C€ªKÀ®£¾á9vP‡¢ Çh½DÔ:T﬿Z¢¾¾& G‚ÉÂÃèà] “„³“…³hõÀ¨U„Q!ö(à0Ixë0Yxדּ{}L¼OS”JÍPcQ“ÄÐ$¢€šdV¯)hÔ*RÀØã5Ô:Tï¬oQÀÌ{Ö í¢ÚE#à4»§Æ˜vQéõÔ¨CñJ4˦S»§·»¨÷ÎzðFêÈ;VÑu<ax¬#Õܧ
+ýŠõÎÛ N¼O.–)ݑ–?F¦ôè¹ÎÕÅ22¡‹……ë>YT}¹5‹ø>vÀU‚€xX—­˔Þyԉ÷!àY0E)à¹@Í0nÏ“ÄY"½øÑÑKŒ<‘N‹ƒ…¸Fë ¶‡uÕ:ôÞY/ތ:ò> ˆ)êH˜¢°]AÀ1LQgq\€A‹cEÀuÇôÖ1E½w֋·ëzL¼›€»gµÈ܀š™èŸ$»‡°ˆÜÅ%-2ç–¡ž› ,2±8–Œe©Ç"â­c‘ñÞY_Ã"3ñ>lÍWÁ!à8ôD#àf±µ´JÞ'°3 8Nh©~ Æâ`ÁƒE§xëÐ{·zñfԙ÷¬Aîƒîƒ;™ÆÐö91÷AéõÔ¨UÄN{РísÞ:öAïõ5ìƒïYƒP£@0XÔšc
+N¼ç)J»¨ÔL»h,aŠšÝS“ˆvQM2ÕoÁ.‹[š¢fÙtêa÷ôÖaõÞ­>ðvÔÇÄ{ž¢²lSͲlÀ¦(,לD²l—dÖu(niŠÂ6]’a×[§e{My;êcâ=OQ
+(5SÀXÂ54‰( &ê9AŠ[š¢Æ¢S¼uè½³¾'އ€çõV› X¨¹60n+Îûm„?Æ~äŏ_û…1V½MA£ŽÅÁB£¾’[o½™€ÞûDގú˜x74(FA@°a M€ñ¢q°ÐêhÔ¡8Xˆ€cÔ·(€Z§€êõ5
+˜yŸ4¸Ø*꣰Ø**@ΠÁ~x´bРêMCFí
+.¶Šº 2»×ÇÄû¤A
+Z½4¸â7V“€0Em¨u
+hIƒý#:hpxWû[1hPõ¦!£ŽÅ–48Ü­]ƒ[wÀ
+­–@Õ{çíÀ
+•t’YËt’YK:ɬ%dÖ2d y‹'™µ¼žd$ F¡L'¨1\ÒI†º–t’u(æ“ XuI' ¨ÞK:ɀ:óž5Xöé$Söé$S¶t’)[:ɔm:ɨÞ4dÔ^ܧ“LÙÓI¦ìé$Söé$c€Èl<ɔýõ$#9
+.ù$£çÚ#àˆ\âIFϵ»–x’u,^Yƒ%ždð»·^òIç­Ä“L|®Ý5¸ä“Œ GÔàO2Ðu°Ä“ ©CñÊ,ñ$CÔzÉ'¯¯QÀÌ{Öà±M'™ž³:iðØÒI¦§À´bРêMCF‹é$s{<Éôb8É 4hçmO'¶5(9
+€s¸S@-qäBqmÝ÷¦…âpÕÙsýÚu(څ°÷Þ<êA}öñöÖGñã—÷nõâͨ3ý.; 8.+ž P¯ `Ÿ,¬¸“‹¬‡FŠç•Üþ(Wpn5j}£€V/ތ:ó>\—û»£G¤Ý):ÅcŠFÀ=ÉÖeµ¶ûï{”zq÷âǯ(±¾üq]Ú‹c<"à°Ö عÇÛ[ßlŠzï¨wÞuâï.µ["; '㖀0Þ]jhdP®c¤ú–€°çúHj/Zü`V¿ à­C@ïõÎÛQïIƒÇˆ
+
+ß)÷Œ]9Þÿ1tu†F²ækԞÄú¦õÞ[o†î¿¶&5XZ—ž‚¾ã”Áô½¿,˽þåþ¡˲NX{óõk¬ž®ï^u½Æ*tŸpցµ÷#ƅI×3,ßúü ëè™:–­•÷¤:ˆuz÷ïy»"–·°®îkÓ±ú]ôý+è;ì=éG°ëª3Ö½a·Œ55¬³{‰ÿؖ°Þµµ.cöß÷/åÊÜtðu­]ËG±¼­2ÖןÚ"ÖWm7ÖöÎý6ö…»rXÊHhP| ÖÒ=Hûœé!ߎ±ªí/_cõe{ìmë®M»›oNāuìØßbµ{ܹ1øJ:¢´6¶¸/Pz.–>‹ûʺ}?[„Õ7Öo¥Û±ÀõgTÛwºëÁp5aÝçªÞVÖpw ïó ÔÑã×¾×eû¥
+¿…/±®žÛæǶ„õ®­ñ V¨u¬Â6€áf¬Âè+¬³`¤ö>ÛÚcd¨í=ÞÿØ_±î}rý«í˜voÛÖÛ¶Žîòc[ÂzÛÖºŽóÚ­ê «ìW£º®ýÜýV©ço´åX+ߗXÇñ;=
+YŽÇ¿=x…Þ¯žš9²áÙ_U„Y´³Õ¾Z(ÜWk‰«Ù€Õ‚ÊÖÇÈkbþÕÓ%±…rËú@y¸‘Ä —la’ãã× y>þ¯_ÿÍ¿spÙƵs¸ìãöÍ»²{ gÆÊA`bH´ ²õ^‡Ú[0 «÷aå(00Ä%Z˜äøx‘Œs› bìòBŸâ´óV’À=ùXG¿Õ -¨Lfbìz &Ž÷A ,.!ð$ÇNjd³À>¥± ©®0aŌ¦´Ø%Åa *sº¹À6!]`›°.0§´ Œ)-q0¥'9>^$ƒÀ#wÌJgk–ôg@êb}m³K̺ÜúêWíãfÉË#•’ݽrTL&´À2û¸)i㒟-ôÅwÌôÁòÇ/r! ñm-Ìr|¼H6 \7û®
+-ôrXä’-d9>^$ƒÀ#
+i;ÄØí_×îâ\›}»À׊mƒ=>>¶ 2™qˆ±« ŽúÀâ‚â-Lr|¼H6 ¬)훐ê
+AXŽsÝ4â$àŒ<¯ ˆc_îÇ g.äÇ 7Îq™CCmøîäXØÎq‚Êq 8=r?ãpª9¥@ΎÇ$à¬æôp 8ÝV™qqœ{ÿo™BÎi‡’€HÀ9Ìi<àpªi g‡£ŠãpÖn2H8€œþB^ÆÄqöˎQŽCHÀ9í3(àppó9¶÷+ž4DŽ£¹*œòҎæ¼p4ç‰ã¿âøoG8ú
+Òý_ZhÁˆ1‡ØE‚·`Ÿ9އ•‡W¸†¸´f9>^$£CIáí5vØ]0s ÎqZ¸¸ <žp‹…Ñ‚—ÉŒCŒ]oÁÄñ>(°saçC6Éññ"Ù,ð±ã#×!•Þ,øÁv9GfPƒâ /[A`Ä¢x vfñ>¬ńcÓ$ÇNjdt
+ö^t;E¦1õÞ_qŠôÌދî½
+öa§Ñ‰Ê,’aO –gÇi>ùA.@ §´Œíô¬ÛÜÎÜò4oTW˜ûÕ¡ywÇgÙÚ2dŪéT«­¡eJá½»\m¢r)زË^-ìµïšQkuˆá{ˆfBÃ>C¡SX/#dÕù”T¾«°åU§Zö¾"UnÃóš!uËTøíŒ'¹óhøÞHÈd7$üu— —ñ³h4,)ãØU6ö>œÇÉau±–Ë{ϐ%SÝ{Z½RËíÒh ÷âóyp "PAÒвÆR¾ŸØΩ³y5ï7emUkº‡\BߋÈOÕé˜}ü2\‡ä¢ìáø8ÇÐ[^ÓN˜!e¢Ú%[Þu[ÏÞwÉE÷ éZ3%Ý_FÌ{Ïãc7 ç~:ó¦»d›
+ú5KÄ>tÖå„&!÷†óÇ©·†#캓¤ 7õڐC¡â§óJUÚe˘¨Ä Æ²¿ /Lü:yŽôâýfh¸÷åõÌ©ŽM~• 
+T€Ô¾'Íe˜gë?­ý–¡8Vä{Pƒ‚œhÐGl’âVJÙm®I.‡ˆgª@!B`Gè1© Ò?œÌ±rƒ§
+ìGÐ+A^ûrȎ=¼ûN¶=̈́­Xò0º鋶Ɲ¤ 9¥Có=èãc< Òd‹YÌ÷ ' g;f³
+õÀWßÁEˆ¾ŠùcêIÁ‡`ۆN>GB
+afX>õëùy:äæˎU¯T‚G?à¹*"ó8wØødž畱þ‰–qÂv"?ûõóXä§üs,éÚ44”ûþ5rÁÏ­îØ0ײÙ2␯Ê<ÿ‚4ø¯Üfsîþä;
+÷‘†ã>Þú{<lbÉچçE€´ü ’–Öu·Eõ8ð[êK—r`ä|ç|E.—mCB.=§þûÒÂÛc#[Zœ“¿ë0\_n+Û©W‚ôx0Šá"ˆ>8{Ò˜Pa¬9‘-'@
+çHM?ӒWŸ¸Öø ËÇ4³¾’[rX›ô«ÄŽ|o¹Ïˆ°ñvbc—ъ²²­´s÷§@û<
+ûÄ92ŽÚ¹ÂFýÍ!l®úÇ  öw“Â!Ý…ÖNyï6]»f¦Aúï«jõ£ÏqːוÍe—\„|!×T»G ú*cOé–y؉üÀ_ѽ<ø_9”.Ä!!_p8Ud¤[Žçç;öνÒqu€§kDòŽ03{¶¥|—1µ?ÿÆÞK³×óï(þ ¨tؓöóËÉ!Ē–ŒG2jú
+]­ÓÚ>ñ‹óۍû-¶[ášwóbîݚ·ïç¼Ç´eÈ÷yÒZêA¢6ðŠ¸i)S~\Oæ^w,—ÞP…àlê¬ÌKÉ>– ጑˜w,CTWÈf÷sb¹>ː÷¸¾_cw³aIwƏˆ
+¾O+á˵¯Ù5¿©öògÑwjh5ûÞÑîI÷ɈØÚøûFýè}×6êg©}•Yܛ–¾„Ͷe´ûë÷Øá­ªÛ1ù`›Ø%·ö1TGLÄèÆÏ« ;ü.Ÿ*糤Ƅ=k§­¤åsÕÜ݆$Ëh-¿-æîæ|oc‘áŽÈ?ÛñEÅ¡™mªùåÅ?ýÐ7ÇËhvø³¡£‘¯‹G^2ˆO=InëÉu#U][x*óóÔî^ü"ý¦±ÄС––å>– ŒŽX§’}w©«M³!îwó¾_ü~^üþçß8(·ÛÄ)r»7äÅgbôwð‹rH¨õãhÈçU‹ë‰Ñhõýcñi,΁“bäc­ð#»âúiïR´,ŒIM ‡Õ ì3děÒ爵¸
+6DhI·4­‘wçÌýÙÃV¢Øˆ£ÑÓ1Nü§9¶Ufœ([}¤¡ $iw×Ø#æ7{É&¶"ÛÊN'S@ò{X<3æâÿ©—È{¹[ ŸzhÄjjdÄ;¡œ|pÔm¬&1X Ù~ú} Š!zX(__ rË $‰yvÚÎÅj=º²Äp6djŸ]tFôçáÏû£GׂÞý1â¤Þµ%ár¶53éB¶½ÿ? ý²×†¤Æšz¥3ä%¢ò®<qþ[-ʳ áœÈ,¢e—/÷¤ð+Ô»ãÃw%1. N¼†n|úQLÄ}¸ÁÞ‚O²àXººf¬‚\=Á¢.äƒM"¥ïHSY54z½^¶2õÙiª—wN)ô†K¼˜]ŒRØdÙqŖ<_A¯³ôÁ¦b…ápªn
+ÀlA¼nkz³ý±H´e]È÷I=!Ñji]ì•$IŒÜwÞ!í³*d Ù¡õÊÝ}ìüÔ‹žûhLbF?(’Áb·®^…ÑùQé7轩¾2ٛxºZÇ~èEü½cÛËq›¶~€Ÿ·|N/Ã¥Øh¥Øï§#ÙGz‘øǬÅøǙžàC#47C¦¯»"+ú«ü铱;tì†à;ýÝÇ֍Lú'ç!öCӌÛ-ú³µ_92DøÀXyÈR/]dë`d"…¶.ˆFmm!µ#q·Çÿ0¥š|ñTòU=3Ú¯ÊXØƱ°+ù•Rç Û–«£ΈÄmœ‰Û~ÃÆ_£¶ q|õÛø ê7­mû#_O¯ÜÓ9ÙÑ$ªÛÆ©ÝÛbr¶Å(ä¼kÂÒÏfÈ~¢Rûmµ…vœÝ8#zZëYŠ´u!ƒF­;bàŒì+î̝ñºžÄ;lí °izŠœŒ³=ŠÇ…Ìeƈ·Ö#žÊTإéF:~7£ÉW8i;šod¥¸6Â)ҝ+;oÞ;Ta‘5¦³±ŸwDž0b¾ñAÄüÄ™Þ9LºOñ÷’û·ýú
+¾iº¼%€Þ>Ÿ$F†¤¢¿2\†´x7¹>³J Êu‡túÙHDx~ÝK•ßç}VúS(IðóH%Ixv$býá¾·¿ÜN(mM•-CÛª:φt¹‹[ëÙÖj;÷|}µ=7Ôý jëCùÀ!g±4Äî78Ýä'ë)§›à^ˆžw„wBüþð»W”ܘ±F-Ã7‚wERçKRy˜‚ÎqёÌÝÿÌ~2Üä¾mõª®[Ïûw }fL€0Šï—­ï!ûŒÕÐâïF3]H¡ÁЇ\)¸ÍøƉ ×&cA”KB~:¹¨»Å†7†ï—ÿُCð¬ïdÞÄzYüù×÷•ð þØoú{Ñ]xd>Æï•ôŽH$Ädÿ~Ýö.G’ÛÅÀÜüU>NË¿¼ Ÿ Ëîúí!ÇI°Y]â«â=ÿôæòÍàw'òþ:¯gø½ZÄïp »û†{í÷¹¡žo9s¥Gw¨õy/ÜÞµö«×‘-ÏëvEd·ª·”ªžpÒã­ÈÎ~¨õ ÆÒ¿ÌpD†óc©Çî[þÊ¢VÜ/%²2‰ðký)z_÷¦¹ûÆ#£i€fEŽÚL‚`6¬g«EEsÏÂËÌ#²Ÿžƒ¼öG”ˆ°ŽF
+Ô‡,¼1dµÉO»9‘†UWô„–Ÿïšùœ_0U=#Å֏‚Pnçìc &ÄÆ1¤@‰ø泐|<2ïßk§ñ’ø™n!Ÿ=’ï_ðјá7õÖÚU´¿¦¦àÕY“&~ÿCªŒfF½Ç¬WÇ~~ÁZîÙÀHš"Ø-¡õOýyÙ1_¤H¼_‰ðª§û{.¶ô[žYÕr·@¶tªž^=œ¯{ÍƛxK œ
+#cIdwMÀ)=Ì7Rºê²†‹n$=dL t##2ËÃ)ɶaÌ
+»dCh<Ò°íˆåF†òiYå3£“©HöÞrԛq¬c¡«ŸfŒÄÛ "'O|ÞÕʵËp6€° •ófQw¾&,lG³s}îx.7¢rõûq6$é
+F£×í̬µÉ8«¯Õç¼ÔŸ0«D8«ñúÇ£ ÏÈ?†MP(üb4áAøÇ£
+cÀ¹«Ò“ÝQ:„ØÁNö˹¤þÓÕ¾=i@¦AÛÓ¤û˜·ëjª @´MÚ%ŒQÒd–ûÐՖ§È´¬m|ýcˆ¯È¡J ¶¡å]C{A
+-ýÃ^B{I÷8¾^#‹ފÜ{ÀHgS¤„`g´ì
+V¢§Ñh?Ž&ßßJ_zï4°`¸Dš©ëÅh¨zu4%EšrK#yÄ>ò4O‹4O
+S/&]ñÑ]-F»i˜–ÒѤM
+Ü<í 4u\vâ™0Op42.O#ãòç-ÍïcHó¼hž@ÓuW1„ð6š¦ã2"÷4ϊ4ϺiàÒîÏv5Œ«èŠ6$Bð4ªÐs4)Œ+ë®b4p2$d2&[r4zJr4rJòçãh]Ï>ïºÇ¥ÈM“G¤‘]Åh¦ªæŒfÂè™4È¿g4È¿çiʋ¦1„mñ4O‰4OWƒAi`Žào#Œ ©Ìý™>½hR )8“¦0© NùE¿A;åÓDÕєiædñ‰§›ÆBöÍó¢yM“1i‚4\ÈIÃàéŽæY‘&„)¨ a%@S™,–4–$4Lxãh҈4é×þË=.E<MgÒdÐôè^bnNŽ&…q5¦B±èL-ÐTg‚#4¨Ýhòˆ49Œ«Àm†4 AšŒ˜¤É¸©8šò¢)†FᤡQ¸£ !*]:IŦÑ0X,ïÃK¿A»ëґØѤM
+Õh†w†TšT"MºÇµ³ôÝãR䜀HÕôŽjT4¾r49EšFV™84–44…Î> ¡éŽ£É%Òä02èù}  ¹£Z¢Í¥« H]‰µˆ9÷Fä‘Cs:€x.û¼¸ž·ÀZċ¸æ"QmëFú²Z?rT;ˆB²:‡G±òש±olÏ‘³±sî*pR_ hw—k»Ëª¯Õޟª˜§$ bÁ5µe•ÛGiæQ“¹Ë–rd²/K;©J1–õt—×°ò×ÝêBÏÎ Pë‡í蜴|žÕ9ºI;ÿ%®ÐE]·9:T_'–Ç2ŠÍcè¼®Y}›*8UDDhŽjR‘Ãe…²ãúuj )ªr×ܸÍYSÈhJxE¶#ã‰Õ\$zó.ŸÉeêZۈÌ4Î_ù>ˆü~‚ìrSŠ£6eÙs=oqäʌäJ‹M¡ûs, jqpânoiÝ|9éËù±8(õJ ¤é.`fíM†%ƒ–S»ËϺM9Œ‡šTy£Üå¥æ b²™ƒ(B#mE㊚†”¿Î IÐ}PhÞÏ&ï6ǦCÿž¬<¥¨:ï7ò}!Y¹¤f\v¹”ÈUÒ:EEú1^ýH±S}ç؈þv@Ä'v—‘·Ÿñ?òÍkù‹îó@~NbƳΑTguîÄ4 4@öÛÄ.wð]RžÍÊ_’îqEUïƹHó¥µvæy—ÅZFcÂCŽÀwy®:r÷<V»yH º«¬½8F/»Õñ÷V¥§Üf£«ÊeÉì"<$I û±"|qa­Ž Ä†ˆŽ‡3Ö%0{fVMDpÿðHö3ÔeòåÔ"gݏŸ¡ž±Û~lõÌP—ÌF"Ý|¹Þ3Ô«JkCäkÑÕÀ! 3´*o¾¾\
+îM»\ÝÍ
+‘å­)¡5Êé.§y<ë¦x®9æKÍÇVeVõ¥#YúRãÊõž¡Å—"ÞVDjñ¥†ˆÞ+’&D\úþ±_›•¿NÊ»é(Dx¤"bû ›<GD¿š|KX|±',ÓJÅ#•ȣ6CQMh@n¶¤³/å%RnšYlÏð‹ ×6Üoêê<4÷†ˆnß8ˆ6ÜÊІ£ÆTß ë©®_Œë›åéã‘{Î&¼R<’S¤É÷œá eOD/d½ki±±4}"먤`Ä*k<‚9JNZù2Ǜœü9I)ò-±sòÈ#‡¯•¥]W֞AßóÑ@Ú؊$v0)øhúת¦€dÌ1ʔ‚ ¥ JAÖ¢$‚U‚v±ŠÐ3JA"”GÉÃ×Áj¶rj‘‡|®|Í1¥àÇV——‚ ¿\+×{†L
+{Àý?|Oëýë×÷€ZâPV”ïeÅy-šb|˼%~Qö–eo¶©ƒ•yÆ_Ƶ|¹PÅF1ÇÍa¹_áo­f?CESæq$&Su†J¿ö€Ÿ“À4Hó’^³x#BS¯–’Iü¡1Àœ=Qöþ"õš³‡½­Ê£…9{®=€é—‡æìS«Ÿ³¼î_?›LÕ9ËëÚ~N° Ís;i@„&_-“øCÊAöæe/’ð`Ĺ°·Uy”{Îr¹ö€S7‡vÏهV³Iü3gùþõ³ÉTÌY¾ö€Ÿ#%Hó4âN¡y|K©›ÄR²7µ({·–Ÿ³ÔÙÛª<Ò=gŒèmyÜÊ=gZm&ñ÷œ¥vÿúÉdªÎYª× )s‚4OOÜI²ãW¬[
+Ïùøs°T#Uº¨#p rWªÍÚÚAʪŸµ…¤2ìÿÎãV¼n:'û‰¡U?kLe}Ü9®¿¶úÙ³¶
+B¤ëH³¶Š&ä|0*"çcNë™Ñ¤H“=DTœÍãîç ±0¬÷s«¸2‡õ¶
+‰+t\nòýÏqº‰4rÎ=c9„§œGNÙVFFÈ·nb0{Dl[#rÓìs6ÏBd‘ÜAºå¬xD¬ÿZÓßG=ڏ»“–[ eœ¸ˆti•Æøo·šÀãi6Gð»÷e9c_È5u!â½Gj‹4µEš²|Kýœl}Y[®rꮫé-°iêr W9Ùùe;×:
+Í×Ï]ԗ?´š´Õ|µZ4Æó’˜Ó­ Ÿ\ם
+ç| ?¼™‘»ZzѤ›fŠ„‚ÒîɖÂVF¬ )þVµó%Hœôi4Ž+ñ¸9‡ŸSyxœ+µ,ï`¸ž4‚÷˜5±àqÔòh79|ä‘}f½ãÔ¨å½jê¹·Ëúv°D6ZƑ¦§Ëðᑎۛfø“\E'ìv•h,C։üZ>ëDóP þn @¾yæßHç- 8šX÷”ít~x$}+í‚ …n/ºf'|Äðz
+‘,:åvõuYÏ
+î„-?—Ý2zd¶H#7 CD/;={t‰ì3¾‰Gß©,«2—ãv͌߼¡o¤€†H“;ºœ¥´ÎQǺ²Üò—"/‚07Þ
+“Gû©šå@êÉ·³‘U¸%=%©¸Ù\ÈzѬ›F4j»|bW‰¡¸3О¬Õ¬PŃu#C[–L9ugM*êú,‰»Y‘Ûm#'vv•7C_ë)wY¾'d­!ä|rÊÉڕ‚$d5z¦Ä}ߖI-‘‹H˜^|™9é‰t¶z2_”ª6åDˆ.ˆG¾‘#šùoRJš=D³Ê¤$³ˆ¬3®¬yirVÀŽÓ*sÝ\­´
+µN®~FMkE3ê0ÛkézšŸ¿t×W¥º¬ŽÜ‰ªÚ͞Zx,Ãñåû£¶Ë×G-½jüÐÚlÿVrv¨ª ÛH%GXº±\Ä"\õ-8Ô0®[ÿ1oË7FÈ5Ù·}“­Ë—aùx4hP·L“{>´¬^Ä"rhÄþG‘ö@ûÄòÅõØDÕvs…Žq…³–Ñ
+È¡Û
+ö 34Ø3ÌÐàhªÞå0ZñÂìü4§x]?~iI®åSNwùqýû ¸¢g“ãEï喉vèûˆ××.·bå¯sCžâ5þÀlûoaˆxžŸ¬?  °V¡/ºÖ9<’•¿N“'h-}O1d"v.Ç+Øòfœv’ 봃žhöNWNí2°.²fۗNy‘Èš§mUd Þ¶ŽÅ]>YCµÎᑴ,{®¯‘TzÊÝpÁ¢ó„«æBŽlW›AæÒ1+_CnKaD¾/¤ù۝qí+rµv^<ä»6‘ãxå/fÈ<Zú©Vf'ÓÉ°½
+9Hl—„eÓÏ ù¾‘tsI²Ë;›f:ùzÕð{ï£yôldžä2$ÉK0÷|ɦú>'ÐvYm»œ=¹J&_V«v–xRn
+ÇCä)¾%±–Øå¡åýØE*þ»âë ÷(WöHkw«±l­¢5ªzšÈzf„?ÇEs!ߦVd¨/éÎ ·¿
+¾ïð.y±ÓæÂ:$ᄙ“CÍ ÊPšé­Pî+ð‰Œ³þn§ñ Üy»@Å[؄w
+7Ïéõ¦yM…Ï%iªÅQš¢²ÎhŠÊ:O“R¤Ié¦É*{&Cö’z:£Al O“V¤‘Ý)F–õ4.Ž,cÀÎ{\ŠÜQasŠ4z#šrCD¾0O3¥%Äyõ4ÑVM^‘F¾£éˆM@šŽ(U.^ì
+}Uc¶ÞãRÄÓLĪ$ÍTÛ`O“K¤Ñw Ò XƒfÀG×E¯]÷¸Ù' OuKM ߌ퀨·ž¦©=oÇEò¦©ˆ…öŠJëi
+C·Ôef…‡ªGdf…¾ÉG¤2SmzE™Y 9ô4åES͌7 Enš 3ù6ïœí[wK‘C£±¬{”™Šœ}YN¥Ç†"ÇwK4Œ^j4Mo¶/œÌt©Qj*bQp±ú¦Q©©¯0;ŠušŠ|_q¬ÃC‘›&Ü1
+==ù…‰ÝXôÈÛ ÈáC¯aÆönùþù¬ÂºU‘oË+F{EÜÌ^1ÆKû¹â˜eèuKKÏôÈOD{EfÙõùë4W߉ æ»"zÛ»3ñò}qÀí}‡9´ønµUIþ%ëÛbtûÌáK6ßJ?ÜÞJö1G8ã-Éhð–4DÐZ֖ZTâ­íC¾'¬Â£ÞoR>rXÇ[€æÅÃû Ï¶'ߗφÕîþð}¾ê|ÛòméM¥Ã
+n—'¢÷ð·KOSt\M£dãvé£Êw—Ä+³ÛœÑà6·ceçæosFƒÛ܂W$osžFãò!à ïrFƒ»â*Ú]Îhp—›xæ=ÍÓè9¹x³õƒ;؉ϞüëÄBƾN\1½OŸ¯XÚ ó3–ûvÔm×Ø7D;­º#ž ¡IËÏÏê¸×c~öïubºd_]wPEüoŠ9\©ÉæðIJKRK^P×ÀÝ©é *¢êÙ<o'ƒtÍ3"ëÙlŠ“yÆ ýì·ØáçRø-$
+mŠì7E,Ò0‚—}ÜýÉA'`¶[›¦9Ä·_ÒÐ×ßÖ*ü^@c~/¶V»ûš›Cü—
+ò¡Ç†—éîm'¼ä¸ûì^ÉöTƧ‡;˜ÙŸXRø–͆‡|hÃc|ºû½šCn¹±n>ÔçÛ¸ªûÞë&‹âÖjsÈ-7æ=‡´u±ß10ìwoñÜO0¶E0/7:Ós¿¢]Ÿ}_Ù}ƒ‡†±O¬­áúܓ!þûên=>Œ.äir‹4!"c M‹;c M»c yš°[ÈhJüN[Èӄsc MŽçlÆû±y^Q¶0ޏ§ {
+-íü©$|a´ü3ØM ïÐfÓèi˜ö“FS£„¦­¦ÑÀVÓÓ¤M¸Ò
+ÒSÇhª;
+#<Í §Q‹ðàiîïÔ"<ͧQ‹ð`4=œF-ƒ§¹¿S‹ðà_Ér8XDO“W¤ ï Œ¨`4)ÞyQÁÓ<æ §‹¨`÷ϾB‹¨àiî¯Ð"*MsoBÓâ›%#xšðÞÄFSãݒ Œ¦D=#xšð2‚Ñäø҇ÄhRü
+Ð Öz#Mo+#"VÕ÷¼…ˆŠ|;£°ZD‡C>û!x\|þ¼0Oõæôjíf–=z ™µ>Â:ÃúHœÉ‡­“õçU‹Èœ[«3®XIþya¿½.sT†À¶µFBœ"M÷]Öú€$øïÏ¥±&2.i°ƒNSåùðM„ñ(XëÐîd‘Úx)Ò
+©T‰,®:|Ì(9æTÉ
+'ªÉáÔ®ZtÝ#ç„~¶žàö»‘¦«NÖ£®Êéw­õpe*çL¤]­¯¤{{萖®Z6Rp¶Ù@ëÎØeê/˜ôäbsHç‡æAli
+ŒTˆøß«éÊDë‹k#“¦k-{„ÂjiåšU{|Uõԍ̻uΏ­:ŒÂV8Â9D-ûR½=J€GÏ;fú“ôÙ»3ì\’Q˜ƒü£»ÁÓaTüèŽñНd§H\™é®¥»“ãüȗ¢­ Rn7\"4Ag-š’s…i4[¯Tn ‡4$å(<ÒÖ] ³aœ1cÖºî{Ogع,3ïFZä÷ró¤8#ÂTŒF”6IG1HÓ_H¬Ä8g9¿SE¼(Ÿ+Gº”fèn1¿:ð‹³è‘4<'›{kMÏd|Â/¶•4£EäY¾Ö6\éÃsÞH¾õ¤«‡¹Õ9{®VÖ  ÆYfÑ·®Á9{a&K¹GZtmÚüâ[oº‚XíbÉjI =ˆ˜·ÙŒÉ/œÏù¤\_ÈxÕZÊÆ~]¹™o4"²u7ÂüÀ!ÀæPC7\#}‚qY-1pݾ¹ª–0XBŠ¨}þ{ð.#/ÛýH^s”$'sâ(ÒFDR»ku§ŒOŠŒu·¥ÖŠi{åMª µ‰CV¨…tðƹZ²ßš6î:¤»GJÎ#kaÆ,áÐFV˜Ã…t]œœO­u"¨•|ˆs¸‘tñÙ!*ÂTn¬õ„”H΄2#$>Âlét#»ÕÂügŒÂZ÷H¨nã C(n¤­»?Ië®ÅQ3֏µî‘ÇÞË͙#}ÍÆõ(æâ͈L‚ 8f—}Æi ÉórT"¢¬UáŒEÎ0˜´Öí­mèëR¡aêS‰C$ø™¯¥g4ÇY‰ùÖ§…bÁ(PËF
+Î6h½Áñ‹£`ˆ©Ôõ!¦R—·ü
+fæÖ#ºÐ°×é ÉÇ|ñYëj>šÚd"8'R·¹Z6V¥ÒÅ#©Üµ¦î3Û°j("ûÃÝn„·ÖbŸÉ™ãbëû’4ž2ÛUËFJãýG“ Íׇ¨« k! ©qæ(Ø:yöÐ!é5öÕnίÙØyA­êþ}t&Nš¬Á؝²hüÈbkcV‹Èw-èpª3DIÅËùPíYªÔD)t†A-šß‘sF
++¶ž!¥ØC¡·Qx¤µ»fÃ8cƬõ&çZú8ú¢ts.!H¬%4ç”ßì‚m9çÕqu&!Yf*$«CR¹k•8ŠŽðÖzáØeÇØtnêüq!mݵàäcœõõϵ®.Õ®‡†Ôuײ‘‚³ÍZ¯4dÆØ;çcNj®½ñ+ÀØ=rÞx]-1n½»ù™ÊyqìGÓÛÇUeõv8dldŒÁHÎœNݦ!%Ô²ÊK–ڂˈõÇ#ÏkìWq춞›ÒÌ0c6
+Ìêpëp¾Z{^¿àøø›~›ÖNɊdZ
+tÅqù¶¤?@½‘=cYa~ªÓš
+*ݜ÷RDxÚÒ9¬°Ô$g‡t eÜsXÕö.AG¹ŠÜŠÜ(ªZãù_YÏ_Mä7ó›f;CxÄÿÊ¥±NdɽrEžu#So|ÐÐÚzô†jýb«åÑû:9sö»#=ßʸ ¥é~÷L÷¸€Ÿ‚S$g£Ê-ßÕ⯌ä¤ö{ùó§FOÞkk˜½ÇÏ‘¶®Z’åpí³B¹Ö‹Ù|!-Ô*:ÓÂqsÕ?H-²²z›„>ٔò‰Æ#^³å‹\ú
+Újöœ õÌh½P¢ö/é֖KC¦»qiP}7®&º!×:h¬‡3…”ui/d¦»Ö¸z(ˆ¼ÍÔÃIƒ­Ï_\ÕÛøH´èò*t4ã²ZâÕ΃5ó0¶£ãT;J×¼º~ ÉznxYëEÞÄۀ—íÙ9‘HÇ)rà­Íèy­^֌3Þ­uœsÿ¼0?PužHÃö9Ö¦çõ$RŒ#«8pôU}e<RK¬•Û=úª'K‘­
+É×­-א×
+ª€*èïµt3o¸òÜ|£³—§ÓÍÙ['JG” ¦ÒR¾D¸gœÀ“ÊŠôßȈÇ&ž]^HD|¸ÂÝnÊàN¶Œ‰ R§O…›ÁªO-iîŒ#D ™ò Ȑ›¯šy•$g+nœz,InŸSÏ钗\D¨ó=>ýëÀ¶¦<¬Ô
+î;‡×t1´9r»äã!Q¯.ÞʞÉk֘RȝåC -ÒgL…»÷3}óE¬?nñ«ì™PsGßÏܭeå’*š
+§ù
+yÉVŽI•÷Á/£Y^62¹+‚Rñ`y/“Ç×z‘0™ê±,o\5Sp+@%ADñ.b)`ETI@Þ<±0²âòßX<Ù½£‡eWÄî÷©dYššOUsoa È!—æ¯ P þÀç€WÔ ïLð]ÞAR\$òU†¶Px͟GdqòEx<e/š!$.@:dN¯§É¤Có"B  /
+’Bª*‹Bª¹ÊÆÇݤŸ¿ð•Q{ RFLuÍU65wƒ\)rg¹—ý¼ÁáØ}kå—}œ[öÂÖs2»PnÙ½l8G}Ùk¸{¬ñˆÑ)‚SӚ
+ó¼5+ÿ`×P1 žtPûB_dÐTfˆÿ9"”™ò9Ux¥àùˆvË>pÁ†Ê`÷¦¡
+ÖR|i‘½{­©°w^°k·®øÀ3È œÉ¤Íxðc-K@&A&5Ïô–E‹´ê–ł}˜†ZSOØTæÇ |ŽOnôkÜè_ˆL3$z€FßAT”#Õ{¶ÉiF<DB¼‚Í@4¯S¦K^8u¬2û'Ib³UœØOi0ҏÜ1ˆÌ×9æ¶5'¦ª’—ìþ%yfÐä~3f"¹ùTˆû­šï}—Îä®"9 Ug)ß{¼öH
+D5¹E‹Þ:è5ý°6Y݂¨¦3·h‘­ƒâ¹Ÿßµçµ¼êà‰H*[–ªû¨qŠ@“¦:ÕÍö´žÇõíR__ZêÑ
+¾ŸV°ð]OÞ=D~)²¢ým©N©V¬üáWÕÚ=CK9™lÍ·x¬ëãÅ~‹˜oñ
+q„¨cŸGC2Չ|!ŽrÇZ)ˆ±û}$ÍYù¹Y+K¹âHëF»Þ ˆ¶y¤:‘o­éŽ9»ùõI´òгíöV~ì®olck7cåÉ$°µv¯=o· ¿¾1‰Vzvï5׿¦¾üDL_uögóøò3¿÷Ñ6g· ¿¾1‰VzÜWnmõ_ ALZ/©qšêD†é÷³æ+¿Wß¾iHu"n4ä-øùb%‘µ/ì­<¤zûªëàuÇ:DkÜ1o9æ6Kw¨ÍÝ-yvŠ¨¦³ÆÇVa}"ì~¾x€HîR+˜êDêµûÚ_líÇ~^Æôƒ@´×Cª1ý`ôîú6´è Æ»g ܧOÖ#éÉ}wƾæi¾;@ô+ƒT'bgÁÊ®¶»¨•'“Èöµ{?ugìŽ|µRRˆ›áç0ú<zùo_‚“Id»t¿‹ìÞî`Á7+‘ŠÈ_ösè~¥PWßëþnVô·5üçK+ˆˆ‘Í¿äçÈ݌ØÖºø¿[õÑÙm\ãù¶zDdÆñ闼 SÚíÆõ?ßz—€ü¶O2ýÖgCù9r7e‘’|oNžeúOÊB‘¿[_ò‚ ‘w'òßÈPÏ?ɋˆhþu ?Gîf&:ÚÏßʨž’çÁ¢ùׁü¹[{®w½æ÷2ÐóOòRäÂJP@~ŽÜϙúoe¨çŸäõ›•ƒ3/•ÁêÕ:bïWÁùu Væ‚òc4S& ?Gî‹û°múß{_(2ýo@ŒŒöÈùQÍFÆ#?G¯íW™/6ÿƒ¼Î¯v@¾~ëk«­ÇWåË7ìø>}ù:A³ÊäçÈýS¦í½±òé7ÖÑ®·Lé+˜ÞÜåžÞKb@–̾Rhd¢2Ðüë@~¨ÙÈäKú1Ê`F¢2QcO@~¨YeâÜö·óvÛÇYú·ùÿoæÈG^”‰k¼_¿__¾§ÿà;׊¿­BŸ+ÌaOç[ýùë[þ'5ñËîG¾í)½——ëÛµL¼Î
+8AV-{¯Y™€Ñüë@~ŽÜ×吽bl¯Ñ·ÇWæ¾¼Ö‘ëÚ§]q†þ~>)d×û¸­jàïÇó/EVì´¥ûŽë´°ÉC~¯<Ä
+Çv,o¼ƒû|ãy2üR™ºZAv=½úžD[x‘<ßܗžÌT"„2ýëýßÿ{߇ò.9˜·ŽÊ­Óšk8µz‹ÒhÎùÇÁÿí?þõ¾CW?ëó=N¸NY]rïÑت2ŠêïGn_±Æïç]¡Ý#:HÀhÀï!•J‘þv˪¡¾³Ícÿ^)`$`%4xÏ¿"²Ö_ÿ·ÿå3¶Ø'Wï<oLr³—È&•çŽlÒyʐnÉs¿u«Èð&+²I©†MZó€[Ô
+žÇs0‹„G•Å`Eú»Ò „÷²ŒÞ¿-aHjÀo9ÙTC~çPšÇþmSVBƒçñÌP¥ó¾*dÚ0¶À,«¶h¡û¹*ӆ߰÷FbMEmÆom_D¤BÛ°äaÚ°XA ؍^Àóxfa¶a"hÈ
+Ó\‘ ÑÀßl_D¤BÛ°äaÚ°XA X‰^Àóxf ¼ãŸ¾gZeVA¤Èo–½¹ºç ;r&ïuä×<H웓ª¿3FüDҞ@CŸÛEÈC~¯•g±‚°R4ÏÁ ÃçkÇ0QŠ€ð”cÕ ¼ãÂsG°T‰¾¯Q~«1@`®h ÉÃ+Q+·†Èã9˜¡„S—AÛ0¶À&˗h¡;æ‰mÃY¾ÜH²ó
+òÛ´a hâ-yh†”€ÝÐày<³ƒ0Û0´@d…
+Ã\H€4à·¶a hâ-yh†”€•Ðày<3¾RKAù\—Ÿ-ÍgK˜lRbøÙ~ëÀžˆ ý¡Sä¡% +P´[J8ðxfa–0)fµËOA «¹n,­¿á}EvùPƒ”óІ(aZ)%x<3tZ5³Eþf.O8ü)êڋÿN×o¥ «·wœô7s~èú­—Pt
+ „u°ø)ðÌq
+</?¾§Ÿã·Öb"¨Å—Ÿ#Ã
+Çs0‹Vd›«ŸüMG ¬Ã‘À°øÆ(Rdá ²Œî«€•Ðày<³8_Ð&"åÑ:c,¯„1ڇ„Ìè2üVc€À\häÁ¦R´RJ8ðxfǪÎäoAîkÆzÊzÚ®êÈo³ª ¬Ù@×p&Œ!rK7‡u¡½-¯+G8
+‘Çs0ãXzîóßoTlœÙºä0åŒÖ;
+Ù-P Ó´?ýš–†DqkZú[ÛWqkZª-´ýé×´Ô
+ ƒ<”0¬ ¬„Ïã9˜…×Þ³±mx=ÿcÛð-¾DÞ¿m†Ú04ෞÒöå(j¨{0Ê<*.GÑ
+òۜ@‚3
+¢g$sÊA¬ ì†Ïã9˜„õ”œr@VrJ…Æð ͅè@~ë  8£ x†Aò0§Ä
+O?¦üîq>ü>NgÚp«~>,¿M¦¬„Ïã9˜Å6¬„‰Ü~> :lÃ3·)6|ûù°C¤ùù0è0çԀ•Ðày<³x¨¥V™<(ÒdsZŽ“Ô¾gž8p"¿Í¡HàÈ
+žÇs0‹m˜A”¹åD´ž÷ñKÓ¾ä·iÐ@ …þæAB"m’ †úN74ýÛ´aJÀJÑx<³Ø†5j–ÖCÂ7£JU߆)!-”ð[s¡t‡†Q+·†Èã9˜q!~ÄÙ™ë\Ýϖ$:£™-½¯öZ‰ìgKü͙ ™ë@æBÈCgK°‚Ãϖç` ël‰ˆÌuHXæB$ÌÙ C"ûÙs&CDæ:Ô s!æÁÙ­€Äð³¥Àã9˜p»*MJ˜æÃӝž-‡EXÂïßV¢É©9hÀo«ÁlV4p¶‹8:žî|­Z)ç` k Á|„1a–0 CBèP~ë\f³Ð€Ù.òÐù0¬ Z)ç`{é<ãñá’üñá’ýñaùm{éìC~g^â'rûãÃyøãÃòÛôҔ€Ý·?>¬y$öÒ$¬½£aô $Ì>胡A~c€À\Ñ@:’‡!,V¢vßþ¬%óˆ—x㢭m.î¾®¶o¯*w%·EDöÞ‡wÍþÒgÈ÷ž–Ô¨*/ÞR"¹‹ú›»C´Mö ûKÈCw `%ÄJjð<žƒ[z‘'¹EDöZÖHti·)Š–¨E4‰zKØ8ÑÀßÜ""ûGÔ ûK̃;P´°R4ÏÁ,Ö&"僬P~0Ɣ°˜Ë:,aüVïƒ0Ê„¥üH˜%LÑx<3îx˜%L%<]ÓXÝm‰/Õݕyiò()5à·zʧ»Õ<´„a…HÐJÑx<³HXK˜JW«P·+qC˜x…ð[½Â(ŸîJT k ƒ°HŽh<žƒ é´„Hùt9•òërjCK¸×é–ÅÅ£Ôßê} (h@ù!–0­€¬„Ïã9˜E¦„Hù +”ŒÑ†¹”ÀŒÐ oµÎ@åÂ(?f “0$@<ç`Æ{äU*K˜ˆ”ϐ °(¿!dµ„ÇŠal%äJjÀozŸˆ”5Hù1–0­€¬„Ïã9˜EÂZÂD¤|ÊÆh Ã\JàÝMhÐw}g ,åCÂR~$Ì&aH€4xÏÁŒWAjœb‘ B*~Š‘Rœb¤ËO1®é§ü­¼é§Ѐ òÐ)¬ DõSŒÀã9˜EÂ:Å "–  sŠA˜DN?ÅàoàM?Å ™@0N1h$ªŸbÏÁŒUQ¤x@Ž~²Ø¡ïäøáH. Í® 6¤ÍŠÕñÞ0…üÖÃDäx!4àø!òЊ°‚°<ç`væE"r¼YÉñCÊ4W$HG4ð7‘ã…Ѐã‡ÈC(Â
+øMcˆàÐ*4%S Ó
+HÀJhð<žƒ;-„i×-7 òmÝ°ùt0!€M+~,ݲKó·n‡e?–†n¨µÀVPVBƒçñÌ"a³åD¾¢$,_Yæw˜„!‘ýXš¿u;,û±45`C­ýØÐ
+ü]0“!’¥ÕCCÚs!æ‘ØÍÁ
+úØôÎCOéÂ
+êz½éïêÒ·jJÈCÔ€ß
+‘¼»jH»Kb “=Z!´R4ÏÁŒ„åEBCˆ˜[»D:µIìQ®eWHJd‰^
+ò[כˆÈŠ4`Å
+Jf÷q«Q°%ìy<3.äø®*'ÿÓ{ãϕð{KÐJ ÿ~«÷‰Hù@Êy˜uéäb¢ÝX—ö<žƒÙAX×¥`U9¹uh5†%Ls!:¢¿é}"R>ЀòCf]:ù‡˜h%Ö¥=ç`ÆŠõ=¾µú¸¡¤ÊýÂ"!¿o(î`7÷AAJ|¦…ïýBhàïÌó°@’Ü/„†‹7wo(Â
+HÀJhð<žƒY ¼Æ½2Ò"²/º!«7(_Rcð[ SBèP7Ž‚€Ô=N¢†zNó(˜ÝÒ
+HÀJhð<žƒçëÏ\a" <ÿLÍï[ï–p_ƒW‰¶ŠR~«1@`.4€òP°B$h¥h<žƒY lª4T靕VémŒ­ÒÛ\•ØtT~ku‚
+¨°ÈC«4¬ Z)ç`ÂåڕëÞ7ÿ~ R߸ðu“©^Ÿ¿“þÞïÕ¿
+ ¡Ù%¤ÑêÅ
+ú;ÿ‰']ÈcÔp½Ã
+Í㒁‡Z X™Ä*Ïã9˜„ÎZ¹åd5÷›f4fÊ«gjîF”ÎÖ ¿b€é’Ú{hBóhr¬B­€¬ìb•çñÌxoiò¼Œ,ñé{æ3˜+²¿_½xù½ï-ÝÍJTYx‡†Ê…y¼¤È[‹æû­äËj$`%4xÏÁŒï_Î=Š½Æ멃¬¥ï]>ûlå|³Êþ^åµ/á¨D•ÃŠÐ€ßƒu¢º£¢ªácÜ°yìß»Näf%`%4xÏÁŒ7Ä˧MXŠls×+àu(u{ûv‘ðºï=Kð´5ð7ŒQ¤óÒü4t4V+ +;/î[ÏÁ,Þjé%<%×{Ýå…û$½í.7Nä·¹ÕB iÔ€ß%>%×ÆöÛš‡>W+ +¡ÁóxfñV‹&"æâ> èàƉƝJȝjÀoCaœ¡Aè0}®V@VBƒçñÌb K>KŠ$¹!$¾{¶Kï̇Y>”ò£ü¾ðYb #È/Jxo‹h ëNJ(?hð<žƒY,a%LD̅oAÞWÂ(JHùQ~Ó–0‚ü¢„…KXwŠP@ùAƒçñ̎²¯È-­Ïô]2]ÄC~—,ÄëS@‰B~YØU¤Ë~#êH“»l¨Eú\ ê$`%4xÏÁì(a&"æò™>¡Ã‡üH˜OýA%
+ø1u#ò)Ù±W®qYöš6ý{ÞV@VBƒçñÌH8ñ4s¯½† :å~wÂeÈeæÊ›j ó7!"æRÃŝˆÃ
+5ÙÏÒ:8˜Ì‡k,Lææ¿ñÉP¤óèa2æÁÏ­ ¬„Ïã9˜„1ÒRDn0+ÙH¡1Üj¡¹"A:¢¿1
+þµŒ5]ß?ހ®uyÆù
+éb>÷ï·ÆÈoC˜B‡ð»Ë­pEv$Õ ÏÖ0„vT+D‚VŠ†Àã9˜Å*­„‰ˆ¹¨L ƒê¦„Q!)—™ ¿i 1—ôž Ó
+HÀJhð<žƒ™¾þìüÏw‡îÆ×1a§ñ–RzÇ«ÿú&3u‘¶ÌÜëSrDb#M¾ÃëÈÊF†œ xÏÑ9¤6Ÿj¾Œæ:ßý‰_š{ÝO¿ Áãj3žçP^_dŠœ!±2Yr—s«÷>oä×ûŒÇ[kŸÐÅÃm·ÌœÇ€œ~þe eqLUÞ؈õØ>d¼Zë»åa<_åk‡d_uï>YÍٔûÎ=³Üa!øYmfY\±¼Œ ÊÂÊì²Hô3Ê"¡FÝõÐS÷™mõÆ]E¹£•©A¤ö2UB]¥æ 5“¹«ÍG½iÓ§jÒ@Us"°©”Ec)—;ëFðmÝ÷k©urúç» z€Û´ÊÝܬ«hËûÀ‹mï7Ú‘zߦïvœÕ<öèÛäޏ>ª­›6£Ö)¯/2RëœÌ[î2#1µNS7Ú¾Nóãí%jsÞ@ýQ±—¸MÝ(-"ðªÖ(xš¥n˜Ü|üR}^îEêð>DϦÞèÑ?ð¼h]uã–cKÅ| ^Í¿“ùxÏíÈÖ‘S¦±uK ~{ ¼¶æ—)A‡\!•ÄèÍÙ¸½ã⑞|ªºOFsa?Ü‹é#w°ÐT`ªš¥åÿT¦jÅË4Óûí¼”©ÔCãÊó·@vìY›ªð .üSdD¯þQ¤'ŸJY@s1ßÁë`g¢éGª<ßå:̞W.î÷®ó‚|dVÀÃôÇ Èë/ƒÑ‹ó’Á=ýñAB-›8Bh‘XË&ý
+/Îw¦j½¨HO>¹R3ýÁÜé3Zh‘é½H¦ª9ËAGõÕ¤aGmæX_fy7Ô­7J¬w³ÄºùAp®[¾`D4÷¾{Mc!SFK°‹4¯~XØÄó©!•ÄÕü —ï' ғO¥~nôêH>wËâš)!˜ªfYÔ~‚ˆê™û.£ñá<ü3%weŠ·†”©"`ŠTjÏ<lFî֞阮CÙÕՅ4çÃòÞ³´¹[dŸ
+TÊä†u¯§0/¤*ò€"¨«š
+õY-„L⩍"qAõ¼ó9“;\"£ã‹$%8gDîäSñ,Y¨WÁâ
+£Y<fr¯d1ŠoMÊ´þ©‡=CÂ?³þàëmRuÞæÁ
+ùÂ˦º$U÷ߐÆõÿ¾£ ¾³·W{‘}µeEnü·2M#o‹LãÛèQ/Q.dÈXˆŒa;Þ¼Jø6ö}"Ã#x!©ö56hÞÈû‚Jåú—Arq©
+ÒCûR¦ªY½1¿úÇ´Áµò™¶ÇƒÎf_ʈÊjx•ƒiáYq䅝pEŠ¬]kî2•kŕ,°^šX72VP½Î¨Xh*°PÍ°¹ÉZ›"]v‚4Ug»€æNÈ]ÏÉÃÂn¼Q¦O¦ªÞÐܽ>HJ2îf¸^õô}æ ì£R–±9{¶’Ým!͍ÑVæT"R§OU¤WWÍx4Ns/aEU-䍼0šø&“8 ‰¼îƒ×<xq¼³‚5y¶n^uzÍ`z^=XøMæbUQ󪲦©öà!>EÚ®c&Uc/
+¯Ðš¾Ê„ÖTslMµÄÖô{õH•¶£©*Û4W¶ äþ·^Õ5 "Ùpk%AÍÿè÷܍žÂ•PåUFD¦ÿ>€—~ÀB¿Dø}`*~à1ý>À«Ú*ëˆk-uõ!¢5üŽë$¬Ô;®Ô× êŒëuÆõ‚:ãz‘ÓfÖLòw­½ƒ£”ûÍQI#¯š|­Ûñel͜\^mGfñÚ ¤j‰kš¢¹¥¸îI´ð /±GÊýG=oj‚”Ž©-7G2J‚7L¹„r7uš“ñO˜—|w=Å 3ÎoP¦ÚâÀTk/¶¦Öâ
+ޅgŽP{G¬ _d
+ގµH¨ó¼Ÿªšq?UsW×Á,4˜ªf¼C«þ)LU}M0þ)ôÆM=xÞ(ôLo •ìV«î¼g–ꃴæS) hV¦…SÛB ˜ef5Mï3Ô»Õ[I½CM;ܼÃ?|ïË;üo]ª‰h°·tH©âP³<ûh4‹…F³Cò‘jû 7ÿµNŽA€Ül©ƒ±r°q*”×à ÜGü¦™T`ªš¥­Ï£õ¨ “e*­G™¢õ¨7Ðz2CªÄXÚsøø«¶ìˆ%É´•;}•Ñ¼‹D#¹L»Œâ}a‹ô
+m…%xË=-A",A¦¢Ÿ¡Y˹;(eEZH¦Z‚Mž…¾Y{TŽ›N¹ç/È®‡›ûmF£oðAòtuõÆ«h)Ó§â ]jȽ³ŽÁÂnjÝ~Þú¶­2ð:dnY»62è[¸¦‰¯Á­#¹;#¼ö7­‹´”¯ä<F¤š/|mޞYÛ¦’Q’¼ƒ½‘ýµEÞٞúzèûIîˆÉ£âi*Äâ8…ѐÞ1Z‰,ÞÙï^šJîò0ÎÒ[{%wô«R¦³!5Äû&ƒSÍԖ·þ¼o°¸:¶Þiñ5s6΁€TڃTÕ̶æ
+ûý!¥:Vôäëæäì÷”ÙµˆÖ qeÓ#¾¯-½±ÃmM\H™I¦ŽïTÉÔè­9q„Üë8,Td×;kó}ð:dX7Uf×MÄ;Ôº©Q7ÁKëæBd†,5ÑxŒusšyZN^¼FeôÈKSFjâQ^éº+ýƒh³ßdÄ«‚ϯ—¬C™Nô¬,Áiz W(Ó«o,SÄ`Õ2½¹ž›‘ò26߯CFÊÔÊ L%VËq~µL'ʝe:Ù¥LÕc,eæuËS¹Æy;C½*=ñ!k=fÔ|*D"¦fÆfîƞý•óÈ楩ä £Y^Á0¹+Ò§O¥,D³a*¹yÿ˜ú“^‘"‚8Ñßdn‰<>X£¤”“®Ð݁š7¤d¥o¤nVĀäæSÙCDÄÌ Q×[°ˆŒú­Í3ò:eXǬ̎ë]±6q'F֞¾,RçÜ»2ƺ–2X7"Óh阡z¤…TåÏì½±¢‡6çCƒèZÛNÕñ5Ç5)S¦´Ð"¡”ÉT5{oXÄr÷ñîUsázrײسì뚪°¼t5y¿ÎP%j¬"W˜OX©c¹šZ·ß˜¨¦gÛ/è«ÔçlWfT_ó®ãC3÷à˜{ŽmPÔ^cóŒ¼NÔpÊü¥u\^ó0uœï{Ð÷F“ø^ýß­¿)a}ÉøãÆËE…_fé·ÔCk´5‡P§ø& ûHc3dfA;Þª`Mä[YZ/‚»E6‹dÆ›©j–Vhrb½
+ç!Œö´.à+§uí©‡•Æ…´‘Ë·¹uÿÏ&Œ7êá±rx,4Uaéè¼Ñ¿šn‘ædžz aÚî}x£´è1´ž;0½íŠnh•-uÏ}š~4´´¹ÚÍúÅFrœƒi»µ›Öü–iµgF^{*WÑOÔfvʀ\¾ç¨•kÐ\͌tç^cߦê|mò Ûžç¨=~-•Ú CÊô©¤-ÍÒÞ+×ÉÑ'T»×°‘ÂùRÎî ¹på¹gŽã`!ˋ,,²™j*xC5Ãcš»´8-w´n£YZ‘ñ©~ýë}Ñ~ɬ؜ï,1ʀìˆ[/Ó÷\."©
+eš¤’è}D¢Ø2V†Ì䎷cU³±XP3Sš‹ïË6¬B¿ïˎˆŒäSíhlV³¼/kxQîH¥þfz•,Æ;J2oÙ
+¢Ñ، ™ÞŒ“
+ú"„õ.ËN¯ÖÍrûZŸ÷ùvSÇsã\HßoћT-LãíT_뉜6k¾9ù÷2¬õÉÇÔz"¬õÐ#=™ÑÓ¹̼´úT™’¤ß¢Ÿ%bˆáõE&q¤€H‰#DÉ{®«^-Y¾Õô|É2òU¤¼wlªÂr×+ݗµ9ï¹·ÌÊ~^$Ëè<oó fðÂxÙ"âU¦êØQ¢fÌÆ5wFd,EFô¬ ¥ÊøÝ"­ùT•sohnœŸ#÷Æi:°haÔ¯šÕÈóXr—¯îcÙ¬¥¦ùµF™T#hD1ºã8WbØ<dˆh¹Ï8þ a,\f ×+Ž…ëÇÂéÃh–ø)&w"jóÜã Sëæƒ?Ãf-‹›£c”—")ùTZîЬu¹³þÔkn´ŽÕĺªÈðµN"˜Í¯ÄäÎò¢…Ѹ'Õ×:j¦7˜»Öº›ã¸ʝc+–¿2dje’Œs‰H÷þёÊ]¿•ð˜Öp°Ð¯'˜ê×ÞЯ§AÔcèŸ;Seÿ­”¸B¦ÅÕg!ÿÂÔÃ/2=ÎTj3•ÚãL¥ö8S©#ÎTê3•¿ì‡ñ@lnwœ½9yôƒkÿLç|&r×ûàzf©E¤%Ÿ
+’é0¼B@D-ü&z ‰–bój\ñ‘|<‚ošÚc5ë
+o(îš
+LUóÐUúé™öÌSbHÅÛFԜ1—cî¼{O  M¦9zLsþY¹WùVk[¾c»ø"S¹óŒ2•›DÚâF‹k[£ÉœÙޛ ë•ë¦¼oËQÅjîì7|,›o6÷ƒWÿLåÈ%ò¯ûàeOB_)"Å·e2†WèIˆ¨…ßdBo#q|l^#ö6cı§Ä<°©nö>ŽÍýô*¼Á¶<š[™µžŸñƄAD®Œ@®M@î;C"w–ï{FŸ Ñ[€|—¢Qr²|õÜ|–ñr5·´±j†Ó^EÆËͧ*lMz"­IÏO'gó_ÆÆv0k³v0³q0³axä‘æWöÈu˜3a3ä^¸* O™ÊVhîØ +Wä`vC,‚6‡Tí šÛrÿæŰԫ˜ÕkÌü{Ьˆœ[‘dô`æ?›+‹5Ž®¼z2±$°PKDfH•…U¾3e:^ï¸Ð•²CÚð©¤tÖɤé˜êˆ•H&÷)#¶¹YBÿ"CD[ÆäÜ©Qs÷ír^\}{æ%3‹Lß.×é.ß.gb ¹9mn¯ö÷2DÆÁk¼ÆÁk5EdŒ˜júVI¦Ãð
+ýÆW™ÐoÌû™b¿1±/f‘á[åÌì ¹°@î‡WéÛxõ­~f¤žk¦´8S:Ú
+àÕΛ DØ
+àgm)ð¡Ñƒý#¶‹);‰A‹C*ñ¶e°è¼åoZ|*ö$ð¼ö6(m¹³sÕcG—¨v‹…áQ¤ã{>‡®@% 9ÔÃ!« Z†¬2(r³¥ Õ­3Œ¤‡Üo®ÑÃÂo2·³ð¯[étG ùO¶9Ø8ÙÂ6²|æÛÊBÐVvnêWXôÍӃë0à1¸z×uÝ!hž¬A3´oa¡kD´&ÆTÔÌïL½ŠŒtµ¾ ®€Ýíïd€(÷Âo5üS·º^UFºêçvƒr§˜jÏ7™ikîg³aá7™Ò¢ž,l\­…=؋±È˜>Ug­‡æÁ3ðÈýôjå¸_½êÏ­ªŸµn@""Ó#Côô!{úÙÉt7*±ÈR¡'£ŸÙÛ-d¸z¸üs™.«]èkéCöÇdÊ>Û"%ùTÊ ;&èY‚l)5]îdÇÇc©ò$ÿž_}“¹8ÿÜ'ÞkJ\ßëƒ ÉÒKí½è…à¼éÍYƹÁÙ
+¤ÊîžÅFpÚ¹gŽsa³ÜûX¯·î•çr³x›'5_aWÜÐTë¥( UfÈe¸Ü¹[¾,Ä,žÕVëhHU¹ŽÍØ?ÒÜuŸeDYT®Õ‚)4«7
+ÍÝûç׿Ø×µÕ½•víçс›?H`Z¯Èt]võ­²âi*EÙ¯ëuk¡mNæ0i«Xå¬ô|yãRÃW´î튅 ‡“¶’GL•š×¼ç]6w ÝÌjŠ·™ˆæµËÔÊ$Çô×{ñê}œÅÈÈ3nªç‹Ì;ieä!*±pˤ`³<'¸æ s˜&öà‰÷±‚I¨?|¢ÛØܝ=Éç’çɍfyÚQrßÈûPÎ
+[û\òjC7-Ͷ3œ/ÖvF¦±rÁi5ÕÃ82àn<&ÜR‹O%L©yçMӖ)êù&“XÃ1Õ»èË2ÙÕèÙè1yíE›— Næ
+25Ø£;àE>žë؅îI¥`/i_×í¹r/Iu˜…
+îÚúa+>~×»”þcŒÍ¢kÇðÈû
+yN¸MuÉØb-Ò ï܍uÌ"9ùTX¬[Hk‘[°p#µEdNŸjÇP°š…»É]XˆTÊš•»x5W žj¸· ¦õð_*!RŒ7vªB^ÐÌá ýS0¢¥,2§O¦Åx¬Ÿ»ò*!•²€få¾ã÷Ü1äºdÎ%Ȗyg ™o©\{Ûp!3}ˆž¾fÎT|½’š-DîJ×>rdøy˜Ò®Å©7°*¥Èîýë3ë︳˾1›vJõAå/2û{he$lýUtSv8/Ž)ªW=@TÏ9üŸ.³‡6DFÃÇíçœ'ƒJÊe¨‹€áELÅǏ YŸÈEîÇn´Y‘ºwAù1y)¯)§'”— ¿“ixT˜2MÖýÏÈÔP¦æèí6µ$ë¥Dº$­<ë,Û¼rÈÈ/3YH8Êi‘i½ßZW¤é5yÀeßQª »Få SdpÒÍ9B4aŒ
+”Ò¬® y˜Ó~wòôܲԬ27ÎeH°^+Så}›SŒ;wžR1šu<¾‘ÉÓ
+–ûÅMžP7ˆPÏ™´×ÕÏØTQ?—,L+v’× ñ³, $‡T:½Lôáà†R—9­\§…ENê|“Q=åÈ+ y½Ò yøT)np©Ÿ™ûéC"ä ·Û#Dðä·"CÖzòÖÌxŠ2o;m8MÈÅC‡Ô
+n›XNlxŒ^|µ4.WÍxŒ^sÇM-´H ©ÀT5ï¥ë ÜH¼ŠlQªž²ýlò*GHU……j®ôr¯d
+ Ýs©U!9Ðà ¥ã>_k¨HÓ×^#êŒlâºiâNÈx ìêoh4@£ÕáÌßÝ6ërMwÛ¬~…ãx$›­ØæÊ6¢}nD£ù› ùÐ"›mèvŒÏÜp£,ê%ÞlF/"J#Y¥ÍèN÷\$´¡ˆ«âB’ ¤Z7tóàÊ „QÁ21U²G"%±6LCfɇ¥6\²B“ˆ$¡A\¾äMIœ8¨)‡JƒH樂xÓ]­ªáíÐ=ÞtOç%iª¯9vÒåôZÅ¥ôñ‹øÚٕôñã÷/Ò¿ýÕ÷ÿþÃç÷ÿðãoÿüñù‡ðñ‡Ïß}ìØøñÃÇõþc+¥¬Ý~\¾êr!˾¬×1ëX¿W ³ý½| úÇç"+¸·.
+ÞÕ\wÄÚd´ýÕÌ5FvñåÊy(rÝ¥_’ÀuGÀµd¯[5_ï³ïj ®;âì]Ï~òÚVý%‘ëŽÙk î—v6Yá!y(ÂÞL®;®UïÑÏoç¬Á»Z‚ëŽØ¶lõj'Ó{º¾^Ӂ°Ç‘ëŽØ>xHZ²ç¥•-ˆJº—vÖè’í%=ٛŒl FÒ½´£F¶Šåž?õ=—!­K®;.ۖ*ûÖãˆP¹îˆ‘M}×Èï¾K 7_êí+¼Éq²ÕÞ³\½Ù؈Z÷Þg+]6iWßUÙ·íݨ®;bÛò¨¥± eÑZÞ59µ½ÆØW;­5Ì\q
+»Ÿ¼F&ƒ< ò²åFÈuG„k'G-ŸœUm½Çñ¥Ü5¹ikæâz¥>°s1‹ëõÖ·yß àZ²>#; Þ_oØSe‘êMyß®SêÒãU¬FÞèvÖû&ÇYé
+q…¨kÈ&Âõ ¹îțb½²Öºz bê}…1úZÞp]õžçJk­¬ýJ ˆ~óàº#ᆭuéë-Èã&g-oröÊÖ×r‡ðw_o ZË»&§¶¶Þ=žý[Ç;MÎZÞäìÑk3ÿ:˜ó3?3VÝdzq›ùµ¼qöoAï49ky“ãf¹V•-3¢®WÍýœvGÀuŒc—§³Ü9_½›ÓÀuGìLtÔàù¦–ŠÄs}ô®k¬
+g\ÞqÇ.¥Ÿ}ð¶o¹ím–ì£7ïåéeQI÷~Î&ñœù©/‘R¤WëŽ€ëú.瞱u\ï7ÑQ\wȃ§uŸÛSÌÛˆ±î½úÝ&­ïˆÎ;½ìõ Î;@t–×±;‰£–Ož¶˜zÑZÞ59µ]²×‰¸¯÷Yƒwµ×q;üt¬>o£üۙà¦É©íUïtîÂϼ­e:ö·_oØó&{¿%}uE–N·+úf¾ù
+$?nÈóVú*+^÷ék.NûN~¹öÄÒ¬sÈYzÙ~õŠa‹QŽ‡f¹.Œ<¾æ
+¯‡ªûǕÂn%£_Ó·þž×$øù…È\žýƒ®N뷔±®&çæהd'p«àyÕcyÃîCX‘‰ßZ*‘õœÍ¢ «Þ¹°Œë!è]jٍµÈt©tKrÙ±\T·ŒkܔߟZOPĶGRHàï]ÆçE^[i깎f¦-#È  µj)=Ö²ã²Æµ|k°h’)S‡Ò´íhehÙ®™—U¯§ð6 ¥]oçÍE ¤Y3N
+݉ÝWºÏétÄØÐØÙ#ïÛ¢stÛw¡yšºÝ çzì‡lņ8
+yî±Äª{?|"›¦úö:Mӊ³óxY÷ˆ-+`ït ¶ÎtÓ>«;‰OdÓìùJiÚ¾ú»b¦7Ík|(Ùgp'ò4–ϲ=«»Ò4™
+‹øöšÙ÷Õ,g@ŠT}×*{»ú5®èû¾íäqC͸/DvÙ4E$Ë¥ôlš*\r,âiò<iò<ËJ·²R<ëæYçpÓ»4lšzÐìïkr·›©cÈÜt"Ocy\»ˆÕýN³C5œ©»=ìúô±¹&ëlC3uGè‘M3E²¬4Dwi¶>Ù4¥l¤UÐXdÓ´qÒXdÛ'º{Äô¹/ˆ7ÄØyâ|çDl[L9ÿ:Ûwë<nˆí‡SÎÈNdë>¥uö‰ÂW=»13OØá@fvòÈ¢‰²ë<²iò1ƒydÓTáj”cOSêISnõ‰õ¬O<ô
+’“Úc#8Vd´“ §†<yK÷| ¶W“Ùû’,49C×>¼çy‚‹t:œ?ÓĊ,r/ÄҁwS‰³z«"åƅ(r܊HuóçBҁ9ïO8c~Õy E¶uØu!EF2¹ ¦˜Q-²×2ʅ3•Ì¤9,=s¯8§)‚9VµèRC¹Ç Å"o2Ó9«°†ûK}šò‹g}tŒÔuwì@fóHt+qÛ^:–$Žý†Ì£•yÏCÉÑÒyÞÏ¡䢦õւ,ý°ÏkdmC‚ ;ÎB×}HSäq!Û{ _\^ÌÂ%#ý:ݏ²”ODæjrá„G%ã«ÔÒq³è‘W§œì[î…\þX‚lš
+„š9‘•8ußµ™X¹kÊ}¾JfPKÇN?¯;·q"yx®y?—äÆ å&‚[n–µ¾Ý»œ<ˆ{8´?;#Ç EêÜ°‹î­#«õåçëNÀ²u¯°Ø ¹Ö3SóD¤- Wî^2εtž|ö&!úUouz¥ xÈ,oÕ¡ÈãBbñ=±Hér¢£ÚkVdVÏ5°ë äA+¢ôA=ê>srÈLžkÏÖzÚ§6ÓoÈÀ~†ºOÜØ°töVÖPû´˜üž
+-Òüø72O”KöÖèØðùd}pîKdғ eio1H'2‹çÊvEË҂G
+½CtíµÎe¼ÚÇ ’ŽVÆy¶¶2¿‚‘%ôšcvÜþê¥fÜ4‰<Ñ@ c€å6"}ce%šÂýð5{;¤\y¯¤ŒdI}iJWg.š
+GˆD³•Uzø×f˯¼m× AÆßìL2ÜÎd!؇ˆïuí<;Bßra¡’±Y'Nñ†`÷ ®É–ÇZ!r¹9rï=|}ÔÛd Ù½Ðke ٍ3Ñ­¡È¤7Åô5œð¯¿N5½ÊÚO»Á‰œîUØÜÏ,ÄïpئŽ {o¬Š¢î½oH:zzì„cŸÏҍG
+z háìMC=­‘ëi±î­ªZÀòª)ZÇ!ع)Z¹ÞÄ±½Wüú¦œ‰éùäœz*4 ‡CÎèt\WdDÏÅÓHJæ¹Koô '€téuL«°æçßµôÂפóN—0ö7~ƒê_€»Î„ø
+òô’§©OĈ؁är"­x®!g
+ßëL銤ƒKµhü
+uÇH–
+¢çb\=íÌèî ñ5+r;{ÝûJɅQ…þö㰏ÍȱÓà“mãBòàׄdøûY¬‡19>7¡)i÷øl‘|ãŠã”|Í2®t ُQ¦Î²NĎuS¬ñõ†=u§D*î”^Hà÷tÉ^~Ó~_ôBt’üþjùVû5¢Ñ^V
+ÆB²SrH¼q…âm&;¥åÎ±¤g!ì1V¦œc,™ÌT¡Hõ;“¢JZrÃG-†]Z ;¥åçî÷WÚªDºÝq%§)Ö;j¾oˍŠ»CJñ\ÐT%cµ6܈Ö\ÃÌN5xM1Š;kƒÓ䩇åÑ<"—iAÑ]{ýÑî׿¾ø’7íþä¡9J2ñÈu¤yºÐ´|"yž\)ž’iP:²%ˆGˆAPç‚ü$D*£aÅCåESoˆÌ*©K–²ÊÒ%·‘#Þ'/g˜â³b‰z1\дà›Ö(˜ ’ûɺ·OaŽ‰ž)™ ä1ÃÒe -:Ïx%÷Ò ‰Ùë՘áA‘~p5fŠ€äƓa”Þ0« 3ƒC./ÇÉhA-]‘qp©¬šzkxÝKö6T.X’¿Þ°§i1­‘"íhù†[öŽfVÕ×
+ËD+é–fI.Íä%½æåÒÅ ór'çe‡”W.^²¬ÍMéŠ
+¦—ÖyGýy\È5ò/«Ù4ƒsÊÎfº¬
+d”0ˆ|ƒäúzÃöœ­&
+ÉÑs1‡¼;fòx¤Æ9Ï͔çfx»­sôEîÎß,‘\ݼ£‡“49ÇKxŠ9U^öG‘¼Ô‘
+l}©ÌÓ®ÊÓì<½îZº"ÃséÊ’õ¶üUúôëeÔÇ!x«B¹ŽÁKÓy”®H›§îy:ÉÎ>‡5&"ƒñ-+’èõƒ<‘odjÍü‹<¸Ež‹$Çõõ†™Ìî´½Ú³5‚Q¬*¹µ/(¬ÿ
+Í¿"e…î­¸àY¢’©)K§5
+²é[¤”“ öä(ïlEÄÌä´î-U²jÒ‘ñPk¨´°ºoMUòÝYÞÐb*‰9øayyéÏH–.oNø‘,¤ÞqpyI·¸"5”<ð†6DÕÎYÞжÈòþ€¶—¼ihè¥\ißÇj/ò¦áäݯ¼
+ž«ð=mH.Ì"žoH̞‹oàõþ-î¦ÃjzzíòQڇÈ_ Á ïûÏ_K3™SûØðeõÈWÓµGñ­ ¤Þ.öéäÂËÂúê"õ­DÎ츸Þaž_ΰÌók´ˆ|1ùÐËp…ã½z¾Ç,eø
+zkJÞú?ðÿÛÖ]ˆzéaD¿Â¶¥GP¸_Ê7D}دÙoåKš^N1¾çUh4/[$Ùu.ôSÙ^ƒæíjšé•¢ˆzDo9ê÷õ=§ìu·È®³rAÓ|øYÂbâ弜,Ù§þ:‰å/Ö{£„¿D³=Z¯w˜"<WÊðíUå5 zäB5r¢¼“
+ª‘ø’`ßi¿â¢&#ÀšD8Mûb¬ÐdÒìBEA8ÍK¯½yÉ;Rݖ®ˆFã]»
+Pµ*^9
+QV£ëðⲘÄÛ?aŽ€+£ç’“ÇáQª¹®< B£þ£ÈP ~Ÿóàó©’_MEéŠÈ­Ä:u*®Î˯1¹²Ö1×ëà2{rG³c
+h<×¢‘HC#=†FVvÑJ“àœä=ˆõš%‡’.‰ÖYßPrµ{G|¥IÑ×Ñ IÅ[UòÃkÈÖ!%œ\iø¶<Ôk½²Ksg”˜ˆb+Q}‚¥u^ȏR¹']10ÍÎÌéžKfø‡J^çȵÛS„õÙ~"O•<q.¯4Q^[8¹6M:ošk_;ËM|%,"÷›ä« 2‰ÇíŠú(‚D§—Czñ\Q¼Õ)™š²tƒÄƒ >)_oØӔ†UÈBöŠ;­£"ð¾V.h†Ò’)êi^½d«ýa¡¤§^;æ’ß¿yG“˜Í_áy;·Æ dЗú$½w+Dp²G¿0½ÕKæ+tIïW ¾9çµ0Hqyö¸•-
+ÞÇø)É> mñtúsÚ_\Áy!-¸VNò"öŒZ9úFÊÔ¢rd«G銄è¹Ø7’¾ÎoYÖqFÓ|´×:Qëq9©ïçŒð8’ö¬GÉ®ƒ°2$áM¡››µTtyz`T¦ë2!F„ó
+¹e¯{õ~;èïÏ×.nîµ(úØ'€ßRÆâ¼Á]ã2%”ýN,ːß/Ԃ¨·H8ôøür"ýòwÿQaq7
+‹k‹×eVF~…Au ¿wFẇ^5ÙþLÔ¨û·Q˜h‘pèñyÓLÎkØvÇÇKï@ö2¯5þöðÛðúx’þþ|q콏R9»ƒü®Ò^Š”ëœN%äëTAËØ¿j
+Ô¼Ÿ7Í ð: vs Èv"Zéê+ð/ÆõÝ#p³nÑ+±\°MØ"¿w‹CÙQÂJ–>Mòûó k
+%à7­ODڇ¤ýX[˜µj ^Ï›f¢p ;…û5*ïéÈÜ#%4Ù6m°kÔúûóőåX‰!¿[‚ü–2>¿(2®C8JX‹ÔjʐߋCjA
+Á¬ÈvËMv%uGË\Yç›þþT¯PRˆ§ %à÷.ãó YÑQ‚¼vÆ2ä÷â@Î]P4î B4¿M9^k¯p×±‹
+û蕕‘ßFaRˆ:”€ßC‘zùª„r­ï´ŒýÛ(L
+´áÕñÓÇ/â:ìn?~¿Öã¿úþßøüþ¿ýÃß­Uy¼þ¬U¹àÿðãoÿüñ˯¯¥ú×_þç×ßÿøúçÿ¼Hþôúç‡5ÖŒ´n3>Òz-~ü"¯¼/Kô¿|ù»ßܤcÍÿ·¿þï¿~•>~ó//ä7Ÿë¯?­¿~¹¯ØÇñã7¿úÿá׿ÿñãïÿý·ÿûÛ?þðûß}ü—ß=þüÝßüÏßüã—pIxQüò÷ÿöçøßÿúǏúŸÿô7ÿëÏ¿þýÿûá_ÿ/üÓoüþ㗿þÛo÷çÿ´lP>~±þÕ!c—ò÷ÿüÿÿgeý¯¿úõÇÂ~ÿãE÷÷¿ùòÿ2/(Ú
+endstream endobj
+
+15 0 obj
+<</Type /FontDescriptor /Ascent 832 /CapHeight 578 /Descent -300 /Flags 34 /FontBBox [-21 -680 638 1021 ]/FontName /BDBDKD+CourierNewPSMT /ItalicAngle 0 /StemV 0 /FontFile2 32 0 R >>endobj
+
+16 0 obj
+<</Type /Font /Subtype /TrueType /FirstChar 49 /LastChar 88 /Widths [600 600 600 600 600 0 0 0 0 0 0 0 0 0 0 0 600 600 0 600 600 0 600 0 0 600 0 600 0 600 600 600 0 600 600 600 600 0 600 600 ]/Encoding /WinAnsiEncoding /BaseFont /BDBDKD+CourierNewPSMT /FontDescriptor 15 0 R >>endobj
+
+17 0 obj
+3732 endobj
+
+18 0 obj
+<</Length 8 /Filter /FlateDecode >>stream
+xœ
+endstream endobj
+
+19 0 obj
+3595 endobj
+
+20 0 obj
+<</Length 8 /Filter /FlateDecode >>stream
+xœ
+endstream endobj
+
+21 0 obj
+3904 endobj
+
+22 0 obj
+<</Length 8 /Filter /FlateDecode >>stream
+xœ
+endstream endobj
+
+23 0 obj
+3689 endobj
+
+24 0 obj
+<</Length 8 /Filter /FlateDecode >>stream
+xœ
+endstream endobj
+
+25 0 obj
+3833 endobj
+
+26 0 obj
+<</Length 8 /Filter /FlateDecode >>stream
+xœ
+endstream endobj
+
+27 0 obj
+3796 endobj
+
+28 0 obj
+<</Length 8 /Filter /FlateDecode >>stream
+xœ
+endstream endobj
+
+29 0 obj
+3668 endobj
+
+30 0 obj
+<</Length 8 /Filter /FlateDecode >>stream
+xœ
+endstream endobj
+
+31 0 obj
+<</Filter /FlateDecode /Length 25657 /Length1 46156 >>stream
+H‰\T xÕþϽ3»!/’lPf!A䕆@² <@7d7’ !áhx‰ºD>L!"J ¢0‰
+-*ZúAŠTÅZ^j?‘´ß‡P‘ž](…ÎùfæœsÏ=ÿž{@B° Ùó’’ *s÷±vBa¹»²v½§hb‘ê
+æìÄAyܼƒ ØPÈÔfþ ~a~…DÞñ6ã<mè²ie[¾¹hÓ2K̟8;q
+ÇË4M6X®‹³X€%ç仜}‡Ø+³”N5—Jù,Æ*Ì1—£Zu*§©’žAŒr§[LVìü_ÊSe*Ï´|»ñ%³Xɝ3žûb2Oˆ¦M<'î 2¾ãÏòkG‹e’hE‰J<uå„7SÌ·±Ù,ÁlsyԚ5ì±ßâ4ÒJÄc|sÎÑx5St¨™f¢ðˆ³"OÔ?|¾Œv Eâ;¦½,¤ª¿‡Gùyi֙åîîÇv3
+ðK|ÃUþÀÆÊ£ä šÌLYÉõžGŽ¹ËìM(5ga"c§U…ÛŸ–>yÒ¨´‘©¿H1|ØÐ!ƒŸ”<p@Ò‰ ñqýû=ÓWïc×z?öh¯h[TdDÏátïÖ54$8(°K€Õ¢*Rz¦K3b]†«›è“u7+Ü(\†ÆªÌ‡m Íå7Ó¶LcËÿg™v×2í¾%…i)HILкf´eèZ+MÉq2¿6CÏ׌k~>Ëϯ÷ó!ÌÛí¼AsD–fh¹4‡‘¹°Ôãpe°»¦ Àt=½801MAÌ1gDè•M‘J~FD8†7 „pR†MÏpQz†/CÆ8ÜEFvŽÓ‘m·ç'&”^¨ÐG]ãý&H÷‡1,é†ÕF+óUƒ5ZSÂQO]k
+\ñÁEz‘{ªÓî|_Œnñ7Èxá›Èÿ‰ì¼{º³öÁÕhéqD–i>Ñã©ÕŒ·rœ®Ú}ßü|öÁ{EL¦Ë“É¡ëÄqyG+ó­äš¯_Uwë+Ö>k¦ftÑG륞™.>›Ç@nµ½ÙfK;h^€Í¡y&9u»12ZÏwgôj
+‡'·úý¨4-êá•Ä„¦°nwm
+íz y)¾¿æçüæ>n\î}dɗ‘þ47„¡jœ‰S皆ú>ÅCá)Êfüäï2ŠøDʌ.é.OØpŸÞ·ßPcÂtÍsÜúµïÖ¸ïi,1a7àc}}r¿Õxý¿¼oÄÅùZĚÎgÊ9¦úåÁ‰ […®W†iücøÍغó‡'1üv»ï€×´¦¡€cYŽó®¬¡ ºiIÿá¾êƒ¢º®øyïÝ÷v5ZWqm”1B?¢(ÊàWnD¡š _ ±?šÚš4호p…N›V‡ ±@Mµ`ÇŐ˜´Agj:‰ÓL1mc?òÁL:m’1éD"¯¿sß{ëîà 6mÿ)³?~÷œûuî¹çÜ{ß¼²ˆZÁ5½N¿˜kBNM´{E
+"¹“ø)ëxgE|S²w®ˆ(S>¥ú+V}~aJ~Ay0);\aû6¿(N²ê—EëìR$!+¨%ªvIMÔd-‚rs´1 Áq‘ŠŸ!ƒzG—Ç‹¨”%)'â«Èµþ—MN¾ÁN]æ{ÜKÒµn¶™‘óâå/ÄÉqæ k0×`~Qy8<6®¡fM¸Þ&D<““²"TŒÌLůËì]Æ(KŒà²,n€ø³T¶×0Ñ.—Ꮳ3m~ºp8'%)'\ÞÚe†¶¥$ùRÂÝê9õ\xwv…8]fÏÁÄHN}|µSY¤PiMGŠRWÐPê
+˃Ý>|ÔϨŠšU±¦¬c&ê‚ÝID©UYËJ’X |‹<£zeûÄn|„d­
+ѯÞ*ú]o7ßÑI9¯·«ÊòvCéµê˜±uÿ®þ³@½¨·ãÌl7ßÕûMëyœsÂ3¨¤IC·yç)ÞJ¥ËSL>ƒè2p¿Ð
+=@KE/öǏs¹}±þ=¯5ÐÑoþ^ QHí§Ÿ¶âûiÏ¥^¤jÞGq1çŽ%‡xu3ŸùvLÍÈ¿Wl¼mã#àCÄяkŽ¥|>Ëûg4PcÅ«y%Ÿçé)ðA'>]qZéŠÏqî¸t³¼[p¾;y
+×"ûh’íãÒ²?Þ"_ì Œiøi“|O ҏôb*EµxBÔb#çütc<…~Ål úM“÷õ!ºùU‡³©gÉø/7‡´v¬çaœë€‚Úéf=Vʵ¯Ö[Ëù£µÑ,ŽãÎa~O¢°˜GÙF%5@× ãœÄ¼¡{ ù›ŽÜ=€þ3ìs›0÷è¹ïj~ËðóÅ #$ß$màw
+Á´pF½„|œ†oƒoê°E«%™9 ²´0‘Ø
+%;Á~0
+>5ªäJ{RÍB=/Tfû³ánÊ»Ýßnæ™d^mM^ÇVçÖåÞXœ/^ؒ×säµ3Ѹ.µFÆ¢URy0² ’²ß`ç§D!'¥J¢& %ªäÌԆ"ƒ£’P‰I”l%JnL¢i«#-e96Iœ8óÿÁ®çkØõL¹#2}š}H^£@bâú€}€¬kÈÝìÍ`Œ‚K`Ù5\ïãz½Glì]RšA£`˜Ø»vöß’Û̀±w íìmü¬·!mì*¬«ì*†öVºaidDáú‚¡ †ËS0œU‘,ûCúÖ|%Ëþ’ñ‡•“ÑEì2ÑCg—Ñøeâí ìFXW`]!8
+NqށŸM€7À²¨ ˜Ù›it“e—Ò¡%ZÅ.²óąI½À~'ôì5¡Ï~+ôëÐ>è öZÚ§hê î±CÛ¡ëQ_Â~©u*¹¨ƒbzÈzÐ Ú@F6ʪÓ['9G&ä*,M>úç䔙¨Û5´kÌÏEhÙS° ýƒ!¦†Žÿ.¡#Ç`qúþ °¸}ç,.BÏîÅEhëvX\„ºz`qj뀑e/ž©«4´í þ¨íÅ,íÅ,íÅ,í%¶—_䖁í§éº:ÌØ 5<¿NÑÎRíUª­¥Ú)ªõQmÕPm9Õ6R-L5™j>ª©T;G1Uu»TuSm‚j§©–¢ZˆjAªÕRÍOÔ, ¤W?)T\¨L”?WÐO­ˆØ0Æf4€eÀc?
+²4ƒ°L£Î$`dgaˆ/‹ÕÝÆ=6Ž«W€T¯]¶‡í«¤™Ú|´Í—ó±RUEq:̎,µfýü3+±D-ì ^üG z }Ë«déÓ¡sJ´’þˆø Xut) Ñ t#I  ‘Í\/&2{ :’–7à6[:´@9KËù]ÃÊ-ù¯ÊGr–Áü»|Nù“?k iå(yiX¹,R^¯ÏšQòj(K¡ÎúEèˆÜ¨œž¡Pq"­ìãjXù®ÜªìEE_¾bc
+žjSֆº”Uh/&oVÔÚVšåÊò|Ô~Ï°²CçÍ: v¾,:­ñ‰×7dé6ué¸©ÓÔfúŠ)bZ`
+˜“×ä1U˜f»¹Ü<Ë\j6›fƒ™™‰¹"›»¦† þº
+¼¯ÞW«Ú*ú"b·w™IKrew^gXY)Ök¯'l©²ïZ!oSÀ½Ïs É/HY8©ÏªiÑ­€W=}<Ê«ðLñªrÛ
+Uî}M²õB•ŎšîߝÚMÜñoÆòß>(êßÍ'</é‡}P×ÕM±T?! ½n]Bo^ÓÕ9d2¡´—ÿ$}Y±¬¬,žÍå ¢p/”¤©@^¶œ—Y,…Àûÿÿݽ’?;—¡ªö“TRÒ}‰†­ £ ¿µ»«ó,Ò%~<¤’ø)¦©bbØ$oþ{‹ôï.X…yè/èü]¸%UœŽ©Ÿ%¾Oa¿*Á…ÃÅDHÀp!°§‘Û~iì¶ZBþEü†1D’ÊÜß É’·ˆ{ÿêsó¼^f1X¼ìۙÙgäó³Ï˟{”U‹Aª –£ƒXÌ&;±”™ìžÒY&»Ûj3Ù]åN£ÃU>[ªp•W±JWùc¬ÒmÃ*=¥²Tá)õJn«Ïèp[£ÃSZêñ‰¥‚‹ÕíºÊ+\®òJ¬$b7Æ,VËË­ÖÒÿ°]ý±M\wü½w¿âûa¿óÙÉÙq;f™ 8¿\<r¬BÛøQPK¢aeˆRÒ 2
++
+£ŒPڎl%ü¨è:X֔0 kÙÊ@d³¦)i­ÄÐBø#CÓÚØû¾sBµ­¶î{Ïwç÷¾ïûùñÞÉTjš%%Höz<:ë”D‘#s‘¹_+Ù¯MsZzb‰ó'qn ËûKû¡_kPO„ Øirôt¨w£S±ì{tO&i²Q#k& ‘N$'’z¢
+e2{ÁÍÿƒ$€›zúâò×û= ’Î_·BžÄAîî$¼mBˆ„ô’¹ÛˆÜÆiÜ ƒó§·@πr–Bß0C4X2ìb1/ŽcÜە[îîþÛôÐZЅ ˆ¢2ÜtŠ'–-·d<AM+q¤ó·\.ÒÄ–OÓ ¥#•]AŪ
+T ‡lf¾Ç‹d²ÇuÅ)8$Å$óEÞ¾'J—+¼+|O•¶KíÊJãyo»ï»¥›ÉÅMÊW§xH:@¯˜Ÿkâ5åS—ÿQºV8RSíÀÈAÄÑU®o`³œp5„,(\Wðòk“"ƒÐËN¦‰S(…ØÃÑÚjPw]|vq±ÛK‰©˜5hq|vN£‘
+Qۛ¢Ei”@Æãgٝh× 3ú}£x^uL\ù­K㟝š2,EæYã±TÁ·&Æ9adxà©€ VÜÑjÔ3ϲ“ê5§0d J,¢HE´y ¼»}ûÉw·ÅyÜʆôîµÏ½îßùàőöÕ«vvån_û]¿bîüÍέG=?'/n[¹s×®ÐàågûWµ™üíO.äþy ’öƒPaüMÃQ«Î½\]£¾¥öªWTa·HÛÏsnà8RENd…“
+"”„G؟Ù 1v†ý‡ :Óøu»ÒwÁýl#gö’¤·¨íƒ°{Û-VäD¢sfŒ/ì´ ÜöŽZƒ5ߝ˹j)ñW1#ÁñeeIÖE+€ÏXÕRꎥ Պ&Ԋœg$l·m…-o-Žë°'Ó9“»ÈÛo^º4«Åmǹ3Ÿ/8ž;
+[eÌӘJ€DAL•nÛ{]v\èß\¶·ì€ñžñ±zMý´´Èa˜Î¯ù9GµP­ q jÈ^·aŒ8]§áqº4ˆe°D,gìw.ˋ'“:ëâñ(“¸šbéémtÝN÷Qž‚HL[$&F&5‰9%³+ä>k‘ w©úƒ_&–òÿËè®ਪ+|Þß²owßn²?YÂã…%›„` ‚«yŽ ŐTþLêò£˜P"5С„ß( ãH,§Õ F)‰ÐF°C3ÖâXÑ2ô‡Ájg;( u YzÎÝMN»ó^Þͽo÷ÜsÏù¾óÛp‰£¢ŒG㠙ã@ —Z´¢B¢Hñ ΣË@mÝÀJÊdÀ ñgª ¢³ãùÉõ]­s[ó¼ÀÎ÷¿[µqÇIª­Øvíƒ~ÚllÙÚóêîÃUöõ›É§M^ÿè̎ÃEÕV ‘óç chUšõFzèH:Ÿr:<ß´]Ôå‚R5\efº†™”äXĄ‚3Ì 
+U£yBš)*’› Tdñ‘êh搐ò›¡±ÓæÜ?û1vÿñú®þgþ¸ñoÉK?þŸú'V½0cù/_}vÕÒL÷’’Ê’ûþý—Ç$ÿó§-‰ŸÒét5=pªý·}âoÔtïÝõöÛp ïòëÄEmw‹Jp1Mr—!
+K•º«‰s†GR%J4gaÖäø©‚ØÏg¼Oѵ ³Üé,žýвXåµÄ ã:ª1ì °z—{ËS¥’;…pELðù&.äï´&Ó'xŽòõWŸ—nt´¾”ô%ovÞA¿¢g^!؝@fAI„”0’ÊÁ. 7‹#A‡±ÙEE¾S‘óMŸËtè˜lØ]D¡")ˆÄ3 œp =!Ž‹HÊ|à->˜¾|´_Ç×ýâý"}ý·»…;[T\‰òòÁŽä]±e`#Jj#—Dgâàð´}œƒAŸ=
+]-­Ð–9—ë+]«‚[ÉÚ*mÖÖ97ê›]ۂðžÎð¤ζÂø°¬b|ÜeE>f¥3DtØƾ":䤛N8¨£›ÕÛFa“Ƕ;J<†‡yºéŽ#ãBM‡8å°~xt“°¥ñÛ~æo»{°¥¹Ø¿–¢¼DÚ·¸p‹V1‚çâ˗‘e554-Ÿ–sJ€ÀLFæ´ …]Òøäå'¿jXÚ²-yýüùäõmnX¼éùºúç&Ok›¹®½cýÚ×ùð‚]Kö}vq_ÝÏ
+×GV…ט­á­æîÀðñðWËÖu+ãÞÀÞ@G€O.X¤°<¬»H¦PŽ¥Xùf•{>Ùl4IÏU§(¹ 71ò-'N`dïeµm,òtÒ´w0—¼¶—yÛ
+Tûô"5v'ÿ‘ü&ùE²ó­|üž#=¯´åBÎ…ög³FSÉ$Ð2QTSbQEÆb k³à,ökûwG€
+äOèD2ÊJý½½¼¦··ïõÞ^øF#ù»tô;¢Z[ßΛeÆe…kL~ÕÂ$gµ‡™­£Õ O«m?9HZ kRŒ¢Á•êÜZq„1dn’U®LÀ'6RÆQ¢`nê§ÔßÈÏö%9cëÚéîÎdOòT'z·œî—&KŠðîA;OV¨¤:H.§¹œ©¹’¤äBQùû1vB&aÍÒÐæ ã’q™W&À×X‹ ƒåP0û9e¨2s¤É}“øxóyíý{ßñ¸™m—@kRPç =¦De›¢ÇrÊcå ÅyL!a͒©œöørüU&Ðåÿá1¥exI÷ô•qÚw‹Ÿeë’ ;iu&ëÀë[ý„È5Ð7¨ÄMëP·Çý›®ôà[A +J(‚Øeñ·Ø(1êµÅŽÆs¼Íø½|Z9i\1œš\Cç°jc±óqU¿êºêvHºä’ÜÜ9Ì!Ktuš¢ª:Œ5EW)!`Æö ¶‰¥ê™°Ä8Ç9?ÎqKÒ3á[S–5SáJ7k´DÓ¿´eìuÑ9mŸn‘'Tþpµô¡tQâm•º)µÕúIõ¢ÎÛtªãÿ†GýPekÕf•©/z>ùs*K³à†+GÎ2}¡ŠX8Qq 
+W‹\TXšµ¥($ž"™!¾-FO»§§EN=!ÜÓ9gN?d~¿ö‘.ÉÃ5õØ­+ —¿EðÖÐå¨sñ¡¥4ÂsxFæ)*g¥±G.ìß³ÿ<ýúå©£²Kåc7¦ÒãÉ)¬–î<ú̶­¨"v‚âù"åJ6ã(‘ &:ÊlIš™©‹496:”†WʍŽ&çyƒSÉ 8x(oŒápdøÌ1c
+
+HöÎm¤iz‰Š*:Jú9»éVñ!Õ*
+ üƒã&ïÞóÞ&»çœûûó;dqœ`W¤ñøÞsže–&‹€ñËã]hU|Ú*½.¼júß§Ð…ø‡qŸéûâqa¬\ã—?f´Ÿ.i|Aúbü[þïú·
+[Ì­e=x'éñ½mPE­ ™çö×dyÓ_“µ¼‹±@Â#Ä¢j¥½3Qچî-/MÛSó†F‹p­›É·°z kQéûx2áòÐ îÄ¥²XYQ‰óWMš(–*iÖ^HIÐÏŒØ?8­ð›‹C…3?ك›ßÅ㦝4øƒÝÿX°äҚŸýº>>Ž¿üÖEüÙ}çÿ0¾û•…6)¼ÿò¯XÅݵg Ú ¹»èL°Ëq3uÑé³^DÁe—;\sP©C”æO8ôxIŠ–Ç­‡†ÞG£Ð»9
+ê=d£[zêe颋kێ¿tü$î÷|»yÙJáÚpdà÷‹Ï±ºªOšÃ NB¨hÌRuJµ6YnÐӞÖge…öŽð4!V%xk¬‘¾'¾,ý\¼L%MēÅÓ"Q¨U²^°Ù¢¡Ï“õ³§}pO‹»Èö8ߏõùCìù9gZ¾3•šFÕHdPWÕTªI‚(ڒ”$¸:É ÚeMC1QtŠ¨&¦˜2ÅñÖJ¸[Ú+“ÎK¢4“²gz­‚mPá{A knÿ¯ÍèÚÝfÔÃd|CC#0‰±É“U¤£O.Ç.¨‚LțLÈK äE0jåhd{d{ d;SÕg›Úöɤù)~sµÏãcùºê”‚![¦¯žZ¦U¯2K³€ÈýÞ6®›ø PìøÔ
+’³XÙB^ºFn\ú!gF~1¼™\º\]Ԉc5Zâx0
+(!j³‘ˆìr¼
+ºõßx@.ÉÈ¥Ky·ç»M–€{oM?셯،ìO,raq“J¡ð
+E#0;½ss!Â ØrÖ=?Qkhˆ}íwN¬šÃµwÖ^ž†ÿyn <ÈíÓMMMmÀ~¼WÃÙoܾ¹ÏÔØS 1»ýÓÁdÖ—Ì`6f͉Ü<0žŽ/Òµ­³#…®Õðǡ҆Fœ„+±o3®ÂókC‘ÉøY,)´î)̕þCyµÇFmßqÿü¸óïÎö=ì{ç.wçKrKó¸<8R­VGÒñdb!i ¶
+j „kéJÅlˆu*ch<J«•¢m<ÚÂ…2ZP;mÑD…hÖm$1ûþ|ç4[5©#Øþøìäìïïóý|?Ÿ¡‘{/~·åÔèý&úí‘Zúã܌»@鋰Fë»9Óg°~‡D¶R8IÆ1bI˜ÂVä–%­ÅÚh’´YYšŠY,Œ9o™qKÃä; Lˆ4è¬Å8ãZ¸yÜ
+®Ÿc8Ü´ajœðeßÌVÓ_÷5ã¶zÂ0ÏhÃÉôÿ‡“qçÀ‚æric…L¡¥||ô•ÁŽ0Ä›JXƒc¬Ú”ƒ×?5ؔcÕê<¬ÎYA]I¬¨€Õyˆ?MPå9«Ë ›ŸzFò0Їá?Ë-šÐ:°„Y„ýw¡È¡3£:,ØzúiX¬þ‘~œ[»Áõ_g.."DœW[‚<ò
+^oH…hZ ½œÌ…èýò ëÏ.J–ý!2QÅYžY²lgÚmmB«8×Ó!ÏõÏ ¶…ž—w’B JQî(gó)1=ØeàE°š® À]C­Øwàê6ÁŠ—%nHO°?‚"¼‚×Ð2A:án3ë@B˜i:K|b„­—Ð4­×#ñjGSÃ³× D¶škH%QLt£M¨îmÔtà˜>øæE}èµ³(råCê»ýâý
+y-E»Oë¯^ûHÿÕñ³¨ãú?ô‹¨…Ž"î%ýÔlL¤1`·“ðGÔoõˆ‹½ätaº·SèôҜ#
+
+ ­1Ûý;”Ë
+Xó½ ëù~¢ªq7çBîºpGÑvim ·`ì­Æ>‰Ã .™W
+‡ 8¸O>¸qÔ¬ãÝ£ÅéŸGÒ5BáÈŽpý/G#Jþ:Ü/Žøº:@Ê5-<-6›ë
+¯´ýØÕÇ?gßÄ¿âÜϟä?s}Ê àpb"ïE^ä6wˆŒ%»Å-
+87ó[…ç’Ϥ¶;wð;|т;/+)¥H!ˆÒ ›®®Rˆh.gy_h D†R’³<šN¡#1XX 7ÎDËmѨDs.¡ÁV8h[çŠ;ùŸZžJºœG¢!Öj¡)҂RÉbøÌÂDCåAÓî§0{îHD9Œ7œ•€b¨ÍC+РȂN¢Cª§%þjxâi6…(E¥xl»\dk)~4'þ½Ò`5¼RÜزáKn“änÌeÞèòïã^Tuw„ÖšobÙ@¿4Ôp8?À…1-sï†ñEl±‚‰"´Þ¯X Z詏’Ù<ÛÒJ2­(µ5uuY`%($(¡Åç•%Z6HŠõRé:áœ{vÝòßÎnéjЗ|oÑ?¹÷³}ÿÚÀ ñ÷ڛ›„®¶÷¯Ù0²ûŒþÅNtEX¶µíÑUSŸHÈ?ÈÔïëYþÖüEï¬w=¿m}ç¬lvqIÃñ§V_\õämÌÔJðC ŠVb@u2d
+N@ÝÚv’\uԈª°ÄYA!
+$ðÍ5tÛDOcŸâÃ|Æ[)ž$_?f±yÒôää¸''üÀ$VÁ°)µ˜„bR‹DΓVHý%9•˜ÙÍ`7äÐnÊ¡ÝdŠ}\ít!FæåÐ>.‡v͇-ùWr˜Ñî4 àõŒBä áp2„†²bÁùՂýõJE¤çž¯\º ß_qú±ƒëÞd†F_×G÷mCÎÛÔ¬Ñ#oÿáiäÅ5²Áœk‚ÙÑ·“FÛºD°†£³ŒeÉT\W¸þ®˜ÍBÍ¢VU†ÔdƒÊˆ*e¯pT:æ9ØÛ ŽSŽ».æhq4ɱä¿É.÷Ø(Ž;ŽïÌîÞíûy{»wœ}ç×ù·±Á6ö¢#·ˆ!Áà(rÅD8‰M
+˜ðj£
+N!’hdÔÉe‰×„¢A¼&t¨ä4Cà&Q*ìÄ¿Žñ"‚-ÿg›ÿCLg
+»FZkmb7IÏX*kI4… Žö÷1—ówÍö³'YüršaYÂâ  D^VTU
+"ôƒâ3¿ýku´M@ö‡UÅê¯ÿ¦¸îõâ[µA;T< g5÷½UÓW
+ÑâÍÿì;AÿLlþ¹DOûç??±óA=&>饡EPXÄi#m¶¡VºkãÛäJ‹Ñj
+î†rݘ ù¡§K:á0iEŽ´pÔþ{œã:%Ê
+iŽ wÞði
+ː•0H¶ì1”Ç’¤ó fžGP‰h
+W”Ê*f"ª¬"+
+$Â$’LÆLÆH„!ºÁ3èžÈ’eº›)'Ž[‹ÒHX\5u6ªýC¡€3·ŠñŠ©Vq?¾ƒ]ܳ9×¹ í,tܹÅú–Îò"‚L:ö·b/”ü(šÔC9
+JNP)c
+{H9¢|¬ÐŠDÐB! J`C!7¶4-°T‘G(U…V‰Ñö><èÅbAŠLŠú¨5·V˜£Åôjm5ð)¬¦¢šÏ¸±¸Y"Ÿj†Ð
+|¾
+/ïŸø«Á_ÕAäߨz‚᪇ðJO©õ¨¤–L$“G’¬ bó‰ Ç¥A?˜JÆ<¹¼ª¹Ñvñ‹.rmòl³È7Ú5NeCõóä8 øfTò¨ã»P‰< i!G(¾#ÕÈÍSÛ&€1“ïÜÎhPü {~SÙBæÚ5BQW3¹ÑÂUxÊñùý%³áúFƒ ¸/â~è¨þ‚×>|·ú¿-͵¿ƒµ`ŸÆÖ
+ñýñÀ 3ÎF„Dó\^^®æÃ_‰öqOÉOªëÂë¢Ãñw¤ËöåÈß͛öÍÈûeïÅÇâ‘Û 6„Ùœê± ÔNöqörÙ§Ìgš¤Y
+ÀÔ¤œ`ÁŠ)¢S}ADšè‰Ý⑉{d·D_£¢ãÇ‚ÉæApËאHÄDÄÁ{¾xȈ×@öS܄ô&ÊÅø– ‰®Áxk{E·G9´ш˜"ZîxeD^ȗ
+ò¡D*ȗ
+©4'ˆÂü©arkäû¢¹Š”··Þ‡ÞD³ZFÀ°Ýô1þt×'bÈÆ0‘ꯨwVŽ-ªª¬¥ÁœÀ»TPýONl|í±#ý^ñß¿:½7/ýΖW¼yË«ì/ Ÿ,øýÓŏ‹—¾¾ûÆÒ}çÞºpæÔûαô(ä«(Z1NèÍÊv©"ò¨Njä>ƈ‰A'ƈH±‚yû ÿöA‰¼}P#oô~îgJîs$?\äÛy Åc³ÍÙöbs±ÝmvÛñAúù%í¥¨ÄÉ¡÷Ò}ìfiƒ¼C~Y:É
+'%),í’ÞÇ´R¹J]¯nWiýìjâº¢ïͼù¼ÙÝ™õì¬÷cv=±p¼­ÄPÓȵù•Sœš&$´*¶
+¦I ¬H©Ô6­ QƒÒ`Œ•7RÜ¥R•Ê¨¨EˆbÚ Ô`¥ÈI ¶{ïÜãyϼ™wÏ;çž ãïYDð£Úà³:I7¹JFÀ®D£!rï3ðé•]èÓì4ì¯2”Ï‚£¿ç €|Î7&)Éƒ™xå F³Ú2MÒ"x“fàMšW­:]8;U%*ù[;×U4
+-öÊ2xû»2挦Xuli²:³<֔ZžYۜ\›Ùû~jKf·º;>*–ZÄ¥Q3‘Xí¶¹;\ÙÍD;­nK²,–Îé—Nà‰V³`ÄÝv¼\ìIø`Û.õaHMÄ_mbþǐ
+‰c}4 b¦s'.O|eåNö?A_~nů‚Š”„û•H‚šþ,‡ÓhrarQÒOîHþ"üŠùš©§Ì¹fOr ɒ¹©l¡L7åp4cи”wJ˜¬£Ë¡Îd‰Ï#²ôȱº®€­ŸÏd „&}¤IÒ7&ÄA È\œ!³‘8d¾pR‚8"u9Ox4Ñù‡HxÐ{KØ°c¥Éwh?)'£Ô P7ŒægÐ̊u
+…akxJ‡eÅbqèÕmõ¢{|DzU®©:8$‹ÇÒÄV£i
+¦{ށ4<騱+jkj KM@ÖPÕâ5ñ
+”‡;7Ž‚Â÷rÇÃǛ]Ä&QX\èqG\i‡Ûíö¸“.s%Çøù|Ãì‡äÈ9ÈI C/†?!P l†Ž¯&l
+1
+‹æT(x8ß4ÃýØGŒêŽ osœ¢¸ÀS£½¥øð¿N¥ƒÛikKPõA¯]ð’ÖPZA58‰ôÄõ‰môÝËG÷)ýwÞ¡=»Æ•²?šø6žËƒpY"¸øɛŠ ¢‚écI]A´…Ú ]T´³=ÑúÈjTÉ*]Ê…­‚ˈ"g•Ê~eRa Z†$B†+ A‹ƒ¢w:öZš©j_ÞSµ²ª`ä!}* ԄΤ°ä.GI3ûoŽ"Ióù€¦HMá?ŒÌÁ>¥¬¹B­÷TAÿt†˜@3\^{ª ú›ß2 bCüãĵœrAÍI =WÁKÓ9.˳2j<©Qµ"•´Œsíôº=ÉK$R¯Ó¦6NµT¸TÌ!áTܤŒNàFmIøÕ°ð«*
+£÷ðyÇ3¹€àuyuñÈ¡;%§Kq…Mê'Lê-dê*dê*äÇ®B¦C éÐaê*dê*È÷g•©«ÁuP:”©q‘yÉu& †yßdÛÌ£f¯9hr¦-ÏÓél>PÕìäýoc!=c,Ô Æ‚ŸÄÁ¤çY£Rgà‡éö'˜’)|@ÍÆSGÉÏacð‰‘'nCw¨¢$H¼dsàIu~ä–<ã ÇÊíÀÂeðÆSwõֆc/bi ¶yaç).räLMÛÒ²™NöWZç¼™ù5d¦$3E ŠNÆB›Ïç™ðŸhd鐹a$;¡²è<¼d)µŽ…Â*ÇáeG“ TàjOµ^iÖàŞÅz™²§Äå8íIëËÍV{«¸ ·zZõMæQžè°;×ÚVÚWJk•[£½QjQ$#ŸãUBÞ°ŸFY?Ý<q Ù(ËÓËãñ£÷h´‚z(ZP´pqÅt1<æ$ ͸M8Ž¿ŠÔ®0£¸Àî{è8+ß|Š/NãSKù‡Ñ)ÂIrI –™áƒ(E@}‚ Ré‡éô,!òŽª…œ ²%®°¯7Ú7Šhœ¢á*“祑JóB’ª¤C¹ ç­+Aúö{oß¹Ø×ýF_ÿžî>VCÑ}[GÿšùäÞë¨9oÞ¸ù»+7®“êmâ&=L!ژܧà)ø9¼s‰@o€-
+LVBeyeó ÚBµQí_d,ò¯Ö*)#åo6+M¸ÕØì |æ½eÞò}V8ì.¼ è!.Žãy•\5þ6·7à¿Ë÷
+–±‰²]elF…3ë¬è– d»LH
+x(’<D 즣çÀinÐãÜÓ킺i toç”58› |º}éøЏ_L>:ê¨áöøÒ îk„¸.8)1Òî™5-ë¡ =вÙɋìy#«ÓÉ蔐Ý[Q±kØæ:~F,áýÈ>…¼zÉ×I®Ÿ †œŠ0Yò£’¨(9✟) èqHcÙ7È:ñX¼««‹™@P(Ýў֪ô,ÕD#Ñ©leÅ̪,‘£ªï5ˆ 0
+j¯ÒÙ´£YקùwÿæȪ¦«;?ý=—¿¹£qÁs!³¸ì…®ºÚ×JŠâ ·¿l.O-¯
+åhR¸|ގTÇßýÌixìk6fŸ1˜?]d$²C‘
+I,ò
+GNT¥!„>]pö$§§¡ C­…¤\Ílhb°ˆ­"«hFê•×‘u´_ꗷÃ6²î¶ËÛØ ¤Ï ¼û¥ƒò7à°ü"û!|“ý†¼¯²·àì¼Ï®ÁEvÆYN‡…!ĒPÍZX8Lö8V(íAª¤_ós—q>|êÀŘcð02ÈçPî ޖNÜ+ùVêñ¨
+'aä÷I£>Å9Ñæ+ͳ°ˆ‘ˆØ"gEwÄ^m¼Tò’tDÿªqÊsJ<åý¥!NȎ
+~9¨EÍ&2Ky†|I‘ê­ûK2ތҫ…f‡•!:¬žUÞÖß1/ïË¿Ò~m^f–UŒ”¢‚å3Â.w‘³Iç–!Հ1*òóc+wNŸW1g(
+^I–‰(ʞ±«L#†¡™
+.uª)‚j2Ñ 3ÏÀ™šU djg4¢U©B@U&˂@EܟUX—E¬Nmš`FŸ(ïqÆkȻŽ¢ ÓyŽ^.졉.ôe§ow^>fÇ !Äš—Íñ±ßgoŏ—<‚Ùb³O™#À‡oƒÒÈ nŽJ¬¼ºÙÚ*µb„ «Žëá2[áþVÊl5Qj þüZ…mòŒÆ‚6ITز·oò “Ý)džÃ¥œ-hMjˆAöåŽüî[ÓãuUÇ>ȽHž½0+÷Gš$¹ë‹Úoäԉódq&—ÅyUä– FŽDÉ?Š)cCP„xÄ°DEô;–Q®8jy‘+‘úTt4>˜¼ÊKç¼|ˆ3âÄà“x,n'«Œ£Lp4RžlH›¼ðª²ÒÂVR£ÖhÍj³Ö¤ñ)I+éïe¬Œ?ì·úýýÁâVm‡og`gðYí ïëÿÀaö=å'æIߏWÙÓ&ÌëÉø”›Œ
+ù•x¬Ä˜oì3#rkøioÙÙ"Z C5}–…ë9ðû«,ÀC5|j•ÂPœ2¿e©ª"ò?€¸§õñ7ã4>LÛNè '0L{¥Ír,ºÖzÓ¢Ö0iÝ XcüUÞ[N¹Ú v©B·:©R{«7Ð7´íx¬|7îá載M(âDhŽ…ÍñKóžÔ¢as,oA˜oç7%!“°§ô"¥óüYòŠ¾rÉ+áå«{O‚:y”É+dæÌL‘Vo@`ò£×[l–h±u\e'‚¶/´‹ìÁT‚™éã¯á;O ¿o'<çàîôt`v]kG©¯Ú£ä;=šJLM]<ž˜[Ù°{U:·þûf²2¶Á(+INyò™Ý[é†g¶gVòܓÄÜóòJ'GͦoIÔ"3¬Ò4æá󎌙ƒ{ >v£QK“r½i›u’…t¡Ô)w™Ú#­–»Íò0}C»Èi—ü<yV: _'ã4‘ªI­”’mé;ÒÄËWːLÓ:ËÆ}ý=gÊ[:KfTb¬ŠPLߔhº$Ò>O
+`<`Q€ö * ˆI>¸PÜFéq€ÈR€ès1ü¯8ö+ë˜ò!ÀԏÊñ¿*~0í·•Ô| vy3J´í÷Ôcß_hlH÷4˜)̶þ0' Ðöw€¹øy,ˆ,|¢€o§TÀ’—–~`ú¡Ǹ¿Ó.à¾)½è“ÌU€5û²ß-`íÛ%a.\¸pá… .\¸pá… .\¸pá… ÿü
+U`\Ø«ó'ÅóÛ|åæ«^ôX] DZåÛ¯õÓ8@q
+g°Éy>
+
+endstream endobj
+
+32 0 obj
+<</Filter /FlateDecode /Length 16587 /Length1 30428 >>stream
+H‰¼VyTG¯î9À„ 7*¶t€šá!.“”1rÍ ¨IŒ4CÌewˆš]fL@かq‚1ñ@}Áè"žºñØDž·&¢»òÄÄ­†E@Ÿ/ûÇ®]¯ßL}߯¾þU}W 0”ÈÑèµÄ7׶!É|7¥ë#˜
+€_’eͤ­å¿N؅`sŒEQWGÞGz„wqæÛ
+Ì;^‹Ul@t¾ÀT’¿½V=%@ȬBŠÌ;Ø6€¢õÈ^l!¸ÍÆ™‚æ# ÍÜÌV°m*úk@¢3Y$øú/2ÞûŸÏÌäLۀ9îüúž°fêBŠë1졈Ï;6+Ë¡} ÇîÊëm eÛW[1€ˆFdo’a]ƒÿ¾Kѯèz|@§o¹xÀ貔²G˜ ^ëô‰DŽaòÐ]ìÚ­ÁE"sĒ1bLˆ9ãpLX«ƒPÖG2xmpé`Ø5ÒA.`˜8ôŽã$úÛzýýÇàŠN{F«hÃð™\҈šZ§×)èē ی{ ŽTÄýPz%qoЗÎÇ^ÐãO GtH¹zŠYBoW­…£ ÅÉý¡//’x̦ZOXd„ÖbŒGA9¯póÝ£ ÔV³™bŒ4i"ôÖ|®˜d("Þk¢ÙBŠa µ
+'¿kmm™þ³påeÜyi^؎¦ôº3ò䉉Ð)hCoj­Çp\
+LÀ©ÍÉÞª;‘MIÇ+¯IÃ+>MÍ]^·m°82Jt&©îҐ ³Û6ÌgË:Ó¿Ÿî¥½üU›Ä/rO!9ò´¦2Lšàˆ«ß²kå”9ºvz֟*’Øæ ÷”Ÿ8p±þ¤m‡øjný?¥’)̱òú¸‡õ2Qز•ß,L PˆF‰¶}!‹ž›‘6q"¬È­[û~|k̄+îéƒ.{$gžx¨¨ûùÚê'÷w\P,­)þlßóq¥î\­Vyëú.ßÅ*¢®Í_T•³bêZ<[úfGȝëÒêßÕóVúve×:G9t|½ÑÉ ºC‰ØU\‘ÈEà
+Óy!!L¼ÝrÊR°²ŽdÌÃ` ŒêÁá˜ßë…gcÇFFþŽ»JÙo¡+cØSЍx
+…\Üø\Òðy>çÖªUV¯öõÊ̞",™ð¸þ-Óš]†½w®)æøÒy3ÕwÃ7ËÖÌ8rd·@ró˜´s¤ï'ìO&5Mè´;݃AÂÝÛ—¥çäËRò.‡b¶NŸ²XÚֈ/ ³¾
+à׋½ñ,½ÜJù‰«·d2É¢rÀY-r/8°û(\tTžÙjɓÃÁ]EÄÇ·×¼q´2]f{ôn/ÑCǪÚåTàËùvyV{óé~ñŠQñ¹_lɪ\¶÷€nmК_·hÆ_}íbÔJòtý¾‚$÷Č↝ïíÙèÉj²vß;8²cçªámSªj
+‡}“LT Uü :¢_ê5ûÓ¶Óê_ «Ä7[ÚݜkŒ¯ Š/^½†ñ¬„¨*ý¡ä/†½??îR
+§`—¡f #Åpt>m$9Š »—w:ÅòÑËPùCYŒ”Œ -yͱ„E0–`9†6r¦ kÏ}Ÿ2rg•\!EôžÇ3»|Üf0¤‘ã»j[e¦,Š˜„IM–ð}Ž ‹HÚDæšx&ý­õn€ ¹±’—m4gnFfŽ@_g¨vŠåؤþ8+#AÐ`÷ÊEŒ2
+y”Dý\UD!AªÕnáHÄ*›¦Še|¯U¢r%ÉÒ«ÎVÂÐ…ː+•±Ï™#•ÉDèx‹
+_ÑPç»nœÊÎà¦×‹bÈfýö‚;º¸6…Êd°&÷3e—'VjϨÚîä,®žö:¨žÛç•Ýž2²*OÖ½ÖT?À:6ª¬fÕä›Ä.
+eBòŽ*rԚ9hÀY©`Á'z|ÏÀ·ÇÓ!sm¯œÏ·8>­õ\çô|fF–%sÖˀçŽulnÎû^½ÝŠç¾R–7þÚõÇÿø˵ܯW¥”T¤~滳ûŸG×÷ô³­Oª~üÅâ7%WVDn\x ;ë±ÒrrÜm^¦_kLÖÎlÿȜbªù[@5…¸8qÿ|çØ>ä^dã›ï®ìô[Wë¯}=–Ð%QSÇz‹³͊Z|chܔM¯ø¬µÓh¬KüS£¸¨ìt…9¼»G™»ZÕMé×ì\Å
+Y˜¶zKæ [ƤVïwxÁû˜Í=Ÿr¦¦9«OÚ<?s&ÌGG92Úl™ªPåÀfê@½¡Mþ©5m &`#Çÿõ¹§и¡¤8¨ÓWû™‚ßlAð{.Zâ•>mƒ¥Ã“N;‚±òdF¦êä¼ø ª
+I¿„yñ³Ýk.7´ït®j嗐2¢üã
+bÛ±IC¤‘Ò<ééô„>H‘¨s4Ä"êY0BòVÃI¸ÑJ ^ö<ÑéIŒÄD²ÅVr—4QúoLwÑÓL SÍƲۚöˆ^â.ñ®(IeÒ©B:áôo®£AŒƒ)0Íé±½¸Î7p~‚ã.¤b"£Qß”_G1œ\é\ZN%&‚ÉcŽ±]ØQ/¦‰ân)TŠÆØb0³º@(~‡`4™!eÛњëa zf7FÏY¸C|ˆ?QžŒ!qd<I!62…L%Ùd6Zµ”ì!ÉYržÜ¡,u¡^h§@:Úi>ÝC+éYz•ÆÄÄ1S™l&ŸÙÃ|ÇÜ`ÝÙ VÉF³ãÙYìÛ21.
+µZ5%ReÌö{{?àJ©º{³÷ÞÌ{3óf潙G7é|þOØBá)\gÛ~óAïG¡ù:qÞnÞû÷ò Ÿä·ù Ÿåóü[¾À×ø}ÞJì‚5¢ kxY
+*å >CïŠôyŽ(?»3kbžà;cUê)Êãêyõ¼PÁé,¬¹§‡ò=œk°3ÝJ1¢¦œ¢ñÿNÀGhš¸Íψ-ÔÃßRþÊ?5ôEŠ(OŠ¾{[­Q–Àb§pšøR–§‘£ÊQ¨.…ÇoR5¢ñ ä–nõŽge[¹¨üË
+Y;¦Þ½F;azœnýØKõt•gðFnR-Ñ ZÖZ¯«×¬|Îd7}`a‡Ý}‹«x®¥ñv+ƒ›áS~4qDíW÷ª_UŸAnÇ©ù¤—éÈ&ßGÞzv|Ö܀³§9b!-¦eX]5ÕâTZZ#­ÅyÆ)مÚr;NÞïÐO(Š Õ{lļ.Úü“ÈPOÓnìÿ}4€3à0 ďÅ1Å-úįÄÑCWéªòŽâåµtI}^ÝCÍ4—š8’†—fcހuÒ"Nÿ¥Ø¥ˆ{ë–õ{ë‡ïß è~0¥–n¥øˆ¼5-ޕÕ+ª*+–—?¼lé’Å‹.(ó”–ÌhރÅEsõ9nmöç
+cŸfo
+ÞOuËo(˜+Ša#Ñ0bC³ibo(hò^ˆÔäJäªbë‹è~‰ oÒÌ)z­Þml
+;‰´¾–àI”4¾pm(:´à°†3×Ɗ$Vö4Ù£F¤ŸDÅ(I®a/Q¯MUm„Ýïb²qi Sǐˆáœ6Gú^æ-T#Ö%ë‚:nGäòG‘ySŽ_¾Åé¨foîòGâ1öПh?— 玠†e~‰:ïçàvt“sy„Ë‘¹"tÙç
+a•ë;ÆÙÐ{
+šàî¡×ÒF Ë%¬³Ô®$lFìnFí7Š¾Ï!DôÁ¤={{Rܦ1{îLÚ2EˆwéÓ+¶üD\#mî”ø€Žøª¢>hŸ‰qäiˆÓœF^뢬Æú”æ[—p;5‰—í]‚5ä}¾íDܜƒPˆjr˜vx­÷Ÿu¬RUçX¯úئ®+~λIìùX”hb;8Áaa‰B(l'6qÛ`—8alÑ  LkXÓªB'µÐ&V¶
+±Fqœ¬uRh2­Œ~ÐýQ¦j u¦ý•([Õ?–ýîõË›˜4ÿι÷Üóî=ïÜsï»çh-™âŹ²žýðý
+@ï¯ãd]L‡ñÔ1<-÷“‹ØF©rêfì žhÇÈ'±Â¿E»µ%\›ë­˜ßä“(´bm%²ú¤æ=¸s}€Ü>…;ÓY:Ãpûíæ(æj”&±kÁú{÷˜IDýkú3½FïáÜÿnœ]t­ôOÌïß`ÿ’ÊOܧ/‰M÷܆v¶ß#ªOÙãL|32
+ÍZ-ř¥˜/ñ%ÜA±¨øS>|Êg+|ÿÈßÁÎö%wsWãffb½ ë¿jõü{¾Ã:;83;»þ®h8ék‚_ã_àfø}ÞÝ·r¹·D™Ì£4e™?äï8"/זüe€äï<vÊ/èð¬Na-€à‰Ü§“ú|˜?ççø
+ì 0Î9]þ?üàû€úÂåb•gÐûˆÐ dþ$_௔Ÿj³@Ùx?¾Ì?žy×iñ®ÈS¼QBÅ@"-›yÿo¾Cò"Ìï9[dï5%G±Þe»7F)ãWú!«eý|•?¼z—ó´_Õwa>O?§ì$€¶³¼ z¹ŽÜБg‰gÉJ©˜‡+ O0‡Ñ*G þ;ßå»Xßíükþ’?ã¥ÚND-†u㥥|šÏøÿ=^BNa¬?àÜð}Èßãxø!]€.äò ÈÀlº…l¿ºD¯bÿø ? zt_å³Ñž‰‚Ìç•Äu  Ý¡?ñW˜¯ˆÔ7
+cªPíR…þiMÿ4ïB1¯àÕ¼€W·Á½öCß}?ôýJßO¬º²•]…xfž¡AÁ›!Bb+U ‹ !·‰­ñ
+˄7"¶ ë!Åψ&ð>śoP¼[µv«òUÞ£ÊnUveÉËçp‹â™’‹Mb3æÚ"6Šz%…«Ò"P—òi±AɧD’OBŸ€]d½X¯êP÷A~u)ëÄú¸Ï²Â»õf´ád&¤Þ|ðɇ IMp¸¡4ÍàÝÀU@(K>P-È+¼xƒ><hñ´N¬CËZØ®÷—zG¬\ɅX¹Ð³ ÓãÂô¸È$\àVQE+ÐD€TôS†çÊàWF(Ëqª°›vkÅ"¬†´h=TY¨õÄ -oº6J@Ø ÒFã©9™Þ\ØIÛr hºÓÀ`&w²Å3OsknÑ 5ˆdwéˆËU¡dåʤ|¼ )ç/ªÈôî¥S)\.…Ë¥xÕéšА:š®7p‚á@0xAžw(«4ew˜’ȁþïµIUO[€ò9½Hm 4%¨•à™ؖ@{œÕ²½è&Œ¶"•ÌE*9‹ÐW¼-w«R&¸EŵôÌâË«3½Õˆ{€F­ÑìEÜze†hr—£ÅmXôC@ª•‚ PȲ‚0ƒ¢³wÔ:êõ`6r‡œN­¹jOUwU_Õ骡ª‰*ÓÛZ (¢E<”—‡LN¶y‘7KK¡0éüµâƒŠïSÜ£øcžEaý/aýrX%¬¿փaýé°¾>¬—‡õ·zsêםúq§¾Õ©¯têUN½Ò©—:uo6‡xéôŽâ5ŠW(^¤xo‹ë”~·“ÍŒŒgǨíG–Ïm‰Ž[Ûfˆç“µíI±F*ß´¬°í²”%5K“¢Øv1=Ð~ƒLìô”™~gj6yLO˜¾iZn*19Lv“Å”kÎ1g™˜ç›3Ìfsš9Ŭ™Éœ›˜ºéÁ›)7-KŠ´ÉST9K“\“_c»Ø¬ábû†hÍ5ˆMî¤@«5öÍögl|&–j¯áXN€M5ù±jg ašÚ[å ÄÒ·‡™…P‹i?M05<%UGÇrjƒcÄ\v¤w±!C!ùLp8…{{C”·ßïÎY—ýÄzßCXÄàÎÙ_¾snžÄ^lÆ΄b²0U
+åû¿ëÃ?5
+øF£;¢;¢Rª´£ÓDQŠvÞÀ;_}ß,؍åÞÜU{´ˆFC¤æ4ÚI²·Éf;Ÿ)u¢gŽÎMŠÞÿ“™[¢º‹v2¬¤a§‘6ÿ¦¼Úc›¸ïøïwûαs÷;;gŸÏ;¿¿ò~×&‡hH£¥Uêftê²IÄ£íDiˆ5™¨:¨íb ©¥ÚP[y¸aÐh£/õ¡níFµ¶ô±ˆ¢3†e'ûžÐÿv‰÷»ï}§Ïëû»Mæò~™9ÿ+拤tA¯°¢eG-Ö¶B•eÌ l&ã4Myy«YÇHáVoñ$W‰W2½¥Ì*ñZ¦W,ÁB"SʘŸ¦Fè$
+±¨§ØS2®©’[ž;k¤ÔHëráÑêáÚáºáøáºÃñöÑïlr›½3ÁÄÉ@ÒU¨ Û]U…¹ †ãk©(#•d¦Ž[@ò“‰y ٓxñ¨
+ô2mEômXÛÙø´ö¼6¦q)"֏~™âØ$Æ~®Q«¦ÃuÕÍZ­?“kc\Àhjn–9JæÂQÁ´7Ø{ì«íýöv«½€wñt‘PÙM¦Èûäsr‰Xˆ·µ¶B‰ˆºÁ¤´¬Ü\ÑÄÄge½™+‡)H¢ø*GÄø.Ø&®;Žß{¾Øw¶“;ߝÏç³Ïbß9þ›%Áa!vË
+=¦7èq¶Š‚$`kXOØ£rG2Hç’T/3Õ O&‰*¢[ôñÀô±Í9ÑT%;ä<QF[bZð›ŽdºâÚw·=øD©\كš6,z£wGGºKªŠÒ3¿oӊ‡Þz}ýÝD•áßoxqåÂÞU©¥p({@FÐ#‹„‚Úì·>nµ¸uIAÐõþ`6ÑüÖ
+97Æòd.¤8oÞºC*Kª')Šš:/Ã5›pS2›Õ2±4•à8‘4 -G› í*F†#5Ô,Tд«*v0õçGWýe?öße1(­b÷³f/°×Ø6k*ͧqzYÖõ(„6»Zl®
+׋àÍ-ëWªÊML¹A’”/L€µªnš® ù÷@Ýýgñ¯í³Te.“É™³×I›-RÕ]³l2£’ËäÅl6<÷™ê´?E¶}ê¢È€é!Ë÷ȕéCȬ£ ‚‚³¥ ™£¥ßÎ¥eé<¹r®´¼Ï¼3IÆ>PiKù<½~…jGFaþHhw7òy¾‹·,u.Ž®uk£‡‡¢oX_s²tÄ1œ±ˆÍE­9ªíyª­ÒrÙFb–®5ç2Í͍-kg‚1>-¢€Gé P:—j¼%ìk7rFnc6K‹a½Î¥ï¡BH’DœÐi6°1“I¢ÔŽ˜Á1A3ޅO÷Ïåڊ ðQûŠ
+æIë^"•î¢lÀèÀ:&ðTÙý‹+«,xÒ«.?êøÆò£Ñîõ=wÙ)¾üª¦|ƒJ•¯Pqx7”¯ÊõrD®vXó{ÁJa#ê –U»ªȯ <,i ¥Öqk*}Ýxÿ©¾§Ïmïš9;b“ëˆ`.²¾ûÇ_ïÎ!ê“{žXWQ
+í¨¼„Ž•^ÌæV=lh÷0ªîo’85ð» ×£­ÙüííÅGv½{3ԀZA`yÄZÙŠþ
+¤[ìr˜Ú\˜±–%±öÈîù Ö>ª¦X–¤6>L‹X5y#
+Þúƒ?07§R.!X`[&þ;;fcnc 7\wʍ*Ž¿‡3$ ¦î'ßý­·ÌÃt©òTS2Z -d°´a.ªÏ¥ƒÞ
+u}¸E ‡šõa$ €ß'ùý>ä£Ä¤¡ë#…â;xÂ'°gÀáƒ;rØíˆÑüaPðQTª g¹TWª/՟MOYSj[‚|\úÄ~qT¼&ҜˆDozÁwfCd€¤:_©Èä^&琄ùç ³Ï4‹sô˜‹¾ÙM,#5ä‘äòÃÀûò¤ºöš}Çê}§Eñ¶*_€@ GÐmmjdŸ¿$n„Æ›§wî1›Ö³fkրñæ=D×Êy]B{¦~‰•?µœž(…‚Œ  õk)/š*”ßæN{±pY¾¬|Á!ܐox­gäù…÷å”Ïøϛʫ‚[–úŒð/î¦hÙËîtÀ‡k³œïXßa˜'ñHÍsÌ'—{ÞSôZ[™¶Ý¹€oZä
+“ÀIg#¯ ºÜ¨|ÛÞàNñDŽcâ1÷Qù”òš—y…û5Pø¹ø ÷ùˆò²—Y'vËEågüNñù%e——é;ݝò2åïzn=¿Z`âÊ.'¶ºÛ”•Ü2¾S`V;ã³ú˜8cnÈa/¢‘«¥)›Ì¥Û-u:Áæõj?UC=*é6hÐô"|ÂËPVLDö´áÌáÜ"DLÎÄqÙîwå…ñòÍ1˜ùñòçc‚’—a.ÔI¾¼¬ÈZ^! ˆ9H·®¹f¼üþìÚ!õÈÌVg‘Ì¢nò•ùF¡Õª:Ä h¼ü÷1ћ¯­Î˜Ì¼;ï¬ÎÊxù:ä°Øê`p֓¿’·½¨ÊÔ "aÈKè0(8‚‚mŽÔc· ¦ž¹:t¶teÏM­™|ó7ÿF¶ƒoNâÅ¿,}²õ¢:Ä¡žý¥¿>‡—ÞþøJéÔIÎÖ$É}$*M]+(´Jûl*(ú„ îËú:}'“ö„/Oøï«?QqŒI0/¨;ƒ˜å̼p&y§“ã5¶B᎚\•Â¬›ÜI—Û-ü‡òªmâ<ã÷¾ö_pðù|¾/ûîü•‹'þ
+.¤ø—Ð]ÂÈ6 x ëDÿa„Hl@Õ
+Æ -e]˜¦i ­J‹X!´«5cSSuRZµ¬heÒ2!0AK7’ìyφÖi]â¼w÷¾÷žsÏóü~ÏïçV¥zΐ%¦´jÎÉEp$"1G¬ԟ_il@š›•ãŸL;£ÛRœ(qÒy
+‹‚(XáÕxËn˺Q$
+’„¾Æúµ&m?.õRNDô ;v¿_Ú³öPë×W^øݹ–VN ¼Ñ¾°é¹÷W¯þàðû?ÉÎ5Eòu=Ù¿&ù•”îö«5Ï|cÏ»»šÈÒE–Vÿt`]Û£šW ?øàÎCä¥pÝbñéÍZãÌ°»_o‡U?vаóÈB3(P9Ìi šFrõþšeÝ<NÍëoô÷øGüv—?çïðwû7š^õŸ÷;ü—ªßËK´ùõ–²»²èïßz¯‹ýϾm]§Oðž³äÝ&>%ãÙɃ$<¶Ã$|DNWæäŸIU£M“»¬#hdj9ÔããðÞM(t’òõèS7uÖN}ÐkC›|£ü×?Ã7*nønêÿ
+0³±½ùfë;}{+*8‰PKyY/ö¦d¯W’U®¶©$[PCŒjhh¢ÔZw¥EaU1¦ªª’Qݱ0¹^d¤B¤:ÔX0S؈Å$ƒ«487VAI„‚`…z!7ØEuPݔR’².¨ƒéfz™­L?C3rb†ò,X¦‡TmaÚþܑœÿ¿~,XüÓW°h%[ö=q‹FæN+F7/Xäq’´M\~iï[¤)sœZI7îÚ¾|×£{-Ji.Û ¶£W¿ùöf<«ª$i›hÛýÖҁG¬™ÛÞ•ýEÈT_;Zó]+LÉ+aA¤+ì ¿¢
+#›þÖë°!ñwMM2(„l^ÃfwÔA…|QUaT91Bõ,X dÀtÁLŽÈH—‘lÖfd3ݜ–·5ÂI8’–M£&-¦+ªG»£[£ýÑýёèxÔ=‰·€PÁC‰lÌFøƒ­‚©d\¸€…"Zñ6 tõ-ƒtÀû&|OÙà«í¨Áôê<:Å#Þ`iDÑt?=BÛé7a5F-D]ðÏ}k§Å#c@%WdvTa'ê&úˆÖ”.ÈìDŸ"Yʳ¯0
+…Ù`:•DÁt:ÏqœLóÁ`:f9VCI¡$-Æ.£ÒcpFÐJ›‘7ÒFƘŸ0’F ˆ7›~Ðr•Å1×âñ4Jù|.›Í…ÃñxMžÈ7.×J³B´ÓI«ªSTD¦Ý.º‘ÎA]uÓ4­,La˜}½f­
+Ä1­µIù²Öé§Zۤ߹žëõy¹î™ÙÒt±T(–†ú‡wŸ$[¼>"‡nÌ`%úë"µjËd×ú1Löq‡fïb‚ævÜ¿ØSºiè¥©¹åP‘ŽÍO>'wÔ5a¬M~8Þóú֑®ÑX4´{!s}Bö/Þ,ÿ >þzIEs4”Þ‡çã·ú7—,
+
+endstream endobj
+
+33 0 obj
+<</N 3 /Alternate /DeviceRGB /Length 2575 /Filter /FlateDecode >>stream
+[€°5la‘QIBHØADED„ª•2ÖmtFOE.®c­Ö}êÒõ0êè8´׎8GNg¦Óïï÷9÷wïïÝß½÷ó '¥ªµÕ0 Ö ÏJŒÅb¤ 
+@8(”µrœ;q®ª7èLöœy¥•&†Qëñq¶4±jž½ç|æ9ÚÄ
+Ó¥$ÕºF½ZUnÀÜå˜(4TŒ%)뫔ƒ0C&¯”阤Z£“i˜¿óœ8¦Úbx‘ƒE¡ÁÁBÑ;…ú¯›¿P¦ÞÎӓ̹žAü om?çW=
+߁Þô-•’2ð5ßáÞüÜÏ ú÷Sá>Ó£V­š‹“då`r£¾n~ÏôY &à+`œ;ÂA4ˆÉ 䀰ÈA9Ð=¨- t°lÃ`;»Á~pŒƒÁ ðGp| ®[`Lƒ‡`<¯ "A ˆ YA+äùCb(Š‡R¡,¨*T2B-Ð
+»—½‡}Ž}ŸCâ¸qâ9
+N'çÎ)Î].ÂuæJ¸rî
+î÷ wšGä xR^¯‡÷[ÞoƜchžgÞ`>bþ‰ù$á»ñ¥ü*~ÿ ÿ:ÿ¥…EŒ…ÒbÅ~‹ËÏ,m,£-•–Ý–,¯Y¾´Â¬â­*­6X[ݱF­=­3­ë­·YŸ±~dó ·‘ÛtÛ´¹i ÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî”Ý#{¾}´}…ý€ý§ö¸‘j‡‡ÏþŠ™c1X6„Æfm“Ž;'_9 œr:œ8Ýq¦:‹ËœœO:ϸ8¸¤¹´¸ìu¹éJq»–»nv=ëúÌMà–ï¶ÊmÜí¾ÀR 4 ö
+nßLÝlÜ<9”úO¤[þ˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾
+æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ ÷„óû
+
+endstream endobj
+
+34 0 obj
+<</Type /ExtGState /SA false /SM 0.02 /TR2 /Default >>endobj
+
+stream
+37 0 obj
+<</Type /Font /Subtype /Type1 /BaseFont /Helvetica /Encoding /WinAnsiEncoding >>endobj
+
+38 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+39 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+40 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+41 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+42 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+43 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+44 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+45 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+46 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+47 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+48 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+49 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+50 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+51 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+52 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+53 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+54 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+55 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+56 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+57 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+58 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+59 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+60 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+61 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+62 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+63 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+72 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+71 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+70 0 obj
+<</BM /Normal /CA 1 /ca 1 /AIS false >>endobj
+
+69 0 obj
+<</Type /Font /Subtype /TrueType /FirstChar 49 /LastChar 88 /Widths [600 600 600 600 600 0 0 0 0 0 0 0 0 0 0 0 600 600 0 600 600 0 600 0 0 600 0 600 0 600 600 600 0 600 600 600 600 0 600 600 ]/Encoding /WinAnsiEncoding /BaseFont /FLCIJD+CourierNewPSMT /FontDescriptor 68 0 R >>endobj
+
+68 0 obj
+<</Type /FontDescriptor /Ascent 832 /CapHeight 578 /Descent -300 /Flags 34 /FontBBox [-21 -680 638 1021 ]/FontName /FLCIJD+CourierNewPSMT /ItalicAngle 0 /StemV 0 /FontFile2 67 0 R >>endobj
+
+67 0 obj
+<</Filter /FlateDecode /Length 16588 /Length1 30428 >>stream
+.‘˜#•bbÌ3ÇÄÕ˜]$ýV‡•ôIí#˜À
+Ø"ÓÆðæÐm¦¬ýÚ2ݸĽ<wê졒Òyç|ïvôƒÚˆºŠB®òÐ~óº¤;a×/À˜zzé¯= ç®7§‘a'ö½õá‚o6m›yÛq<7ÿþÃ|IÑOç3϶-é½{ôÙ"÷ÍŖ‹—¿[3kîõ·o JIYס zÎ-"ÄkÇî-®÷ç¬.ýkî´ÆõJ+ÿ|’Ç_I‰í½Ó0.3´ä7cäŒ3dù~z™ZݲÉ2ý:·,hAŸÓ窛æj:–«mrµÞœºÏÝ;!$nܦý£•WÖKþx0áÝs&ä.¸c:þÝ©SMS~/¿„{.ΎØژ^slj.™”=¢fô¦V‹p Çåàñښ*E¯†¢¥1}g˜Lý»R£Hr¯$ÀþN ~êëâx"æ‹ì^õyÁ«
+jÁžƒuFæbÂ@çE)þQãMZs…ʲ#
+ú;¡QÆ $JòAχ¶ë\†{0 œ^z=¿ò[›|Ûç­ëO®<p³å¨bÝß$U}þT}mOtú”4õ­gCOÔêÔ·{G7&©¼*¬ø4Õ¼¤fs?itŒätrÍÅþ}ÎlyP/²)mKÿ~Š¿þÒWͲà4ÚW7XvðIUe„<Ñ=²rLÓöåçŽ=ÜÖ«îD¡Ì9{0µ³ìØÞ uǝ[¥WÌuÿ”Ë®§°‡ËêFö8`TH"/ÿ¦<%T)&Ùü…"vVFÚ¸q°Â\³ú8ì戱S—Ý5ö¹ä§Ë<ö@YóóՕïi=¯\XUô/زóãJÃÙj½êæµíAó÷VÄ\3oQβI«ñlù›­Co_“/ýÍ]±töò öìZã.ƒî`:ÙþCžP&õFW"ñyÃtAHˆS àAŸœÒ¬´U‡yaŒƒ18 ~½€çÜ¨èèßño{)ë ö†R {‚cú‚^b±—6<—4BžÏ¼¹âþ¢?kÖ üú‡û¥÷gLÏ}T÷–õG½¾w¶1îÈÂÙ25w"k«¦<¸CD½qXÞ6$èî§óãǶ¹<¾a ñέõ‹Ósò,¥)¹—Âû²›¦Lœ/onÀç2Y_õÝºY™qú$݃å¦1sŽÚ°¶¦&ô(—6LÂC¬
+«û¬úu£v̕×.Ä,§NÖíÎOöMÊ(ªßÖóîÎõ½8m֎»û†´n[1¨¹u⢪|£7ßó¸ò>W2´ïå]^çTÈOnØç›9¹N5:>yá—åš&eÖÚöygò#쵓ýíGõØp+qVæ䴍8&ZãñBAà•Ý~2(ÕpØ5É$ÕнH˜abw9êñ%þ3>m>©ùµ`éý„£öÄÏ*Ë+ˆbϋW¯+1ª
+⅋᳋_°÷*èØD&–B¡Z +œ8¾ F&,õˆ#ñ€êˆ’ÿª"i2Œ«<¢z·G´ÝTÀp„…fy&±P<M0í+8æ„èeé<š¥íZAPö\‚á9ÂÅ!Gp<ËXxk±Œs™ß§-<Á;_@ÏÎã©]!n3XÊ ]
+µ-ž¶ÑvžGL"dˆ&'„>GP…c¥ÌVIwkÏ6@Pü(ÙË6š(°ÖEڐ„#Ð"Yzª‹æx.¹;ÎÁÊ´Øݽ
+B§ŠA¥P?WÒHêpÙy
+ÿ÷¾Äè à!àAð¹UÄD(£Tcˆò4$4y‘e´4ªEp).[«Õ*•jZqCEp×Ö­µŠcéԍVÏà†Z=®íT´ðÞü  ¸Ì9홞Irß˽÷ÿÿûýë½WÇGóxŽ –;¨õ¼~äNˆÒrf“–3ŒÀ¿¼É)ŽÁkԂ–îI0òAϙÌÃGi5',ò1Z#÷2}zÞ çbŒjÀk´È‡¢µza;–àM&3®Ç©ÍB”ÁˆXä­ M­p|tŒŽoÁ¬‹1jM&î©Vh½FgŽtHy:*GÜÑZ£&
+»­ZŒÜ^Ð;ØGà5£FŒ³NmäbÌƃIä\$–×é8½A×:¤Ó:4½IûºÁój]²èyÓÂÓ
+Ë@:ºÌf}>“S§a…°LäÒm鎰²¦Z&ššA‰™‘”… $·ÌD~gpOOœœeᦥ$b¤Û2¹$ 7Á†SB§q‰&de4g Õ–‘æÌùô沏©¼:X¾>,'ô÷¤yëød[²-89ՊÀnŽR°vªÀŽ'67lòg8vòHa'›þ„ÊÀý•¡m5À”çþ«ÒHüGҞûҞs¤½`™Ìª¸€PÕ«}¹Áaªþƒ…(Ÿ­Ü.ÜËˁÃÈ/–ƒ5n.Ûx¬}¶O•x‹RüÎ]S*Úl-¾-çUü½äˆªþQ±ÌÃwþ·崞ShUmêùģ֨¾.*Î4îk¨WÕn|?]qéèæ­Ùr—Õ3C,;âF_L(*N·Z#ü8nbÜ2éÌú#aCum –¿UûúÏi?‡+é >£²>½co¬9äqå±w»½W‡¯ìî»pF7|ECïºq*;€›^/Š!›õØ»_r
+îèâÚl*“ÁšÜϔ]žX©=£j»“³x¸zÚë znŸWv{ÊȪ<Y÷ZSýëب²šU“l»(” mÈ;ªtÊQkzäp dA¤‚Ÿèñ=ßVO‡Ìµ½rz8<ßâø´ÖsÓó™Y–ÌYS,ž;Ö±¹9ï{õv+žûJYÞøk×ÿã/×r¿^U”RR‘ú™ïÎî|]ß;Ð϶>©úñ‹ß4–\Y¹qáî¬ÇJËÉq·y™~­1Y;³ý#sŠ©>æo9Ôâvà`|Äýócû{‘l¾»²Óo]­¿öõXB—DyLëy<,ÎR4+jñ¡qS6½â³ÖN£±.ñOâ¢²Ó!8æðvîeîjU7¥_³sO|(ddaÚê-™3l“Z½ßáïcF4Oô|ʙšæ¬>iSðü̙0åÈh³eªB•›©õ†6ù§Öh´1˜€AŽü×çœz@㆒â N_íg
+d”_Bʈò+|#¦Ú6~dRfT_¨"›ÓÕQ÷FG^öpéüe%å÷ýkÜí·V%ž8õÞÒ’+?ՙ}l4¬YT_’¿Ý;êÀ¤<˚7.\êÞIjغI;ŽW}áïVZÔë¨õï>Ñl.ëÓ°OØøÐ7ÒþiÏêìnû
+XP°nþ¾CÞû¿^ݹ]@Øj’2Y¡,»~Ío&¬ÔS&£í˜ö”Ê(˼ý^8?®ŽG´-ÝÀ“Ùëâ\—Rš< ˆ$IŽYö:¶åà‹o& ü¤º–vÙA혛$‰žCb¡¥5ü®p>Ýü†‰pÒàCøÇBÈI(ŕ;áøi`8‡|Ìï3`–îãhwXw!CŠ$‚Ì‘́õ„E®Ap
+gÙ[@ Q2eÄýQŠ+ÁjPb?IŽýÝԏ†#—Ç™7]ƒ$¥ô€|Å“’` §gÙmpn“,ˆó¥ÅR‘ô ¸Á/Œ_S…¤’ÒË ã±ÍF9°ªI< ‡¥Eˆ)1̃Ïá8 dž`Dêw ö×PµPQډrŠœ–AS¥X)ñR’d-Ö³ÈÁY?қ¨i“ÀleÎ5]/Jþ([€é0²aäAœƒà<a¨œ
+'á<D+1xÙóD[p¤'1ÉB[É]ÒDè¿At2ÝEO3L5ËnkÚ#z‰»Ä»¢$•I;¤
+é„Ó¿a¸Ž=0¦À4§Çöâ:ßÀUø þk¸nˆ5ŠŒF} P~iÄpr¥si9•˜&9Æva D½˜&ˆ»¥P)c‹ÁÌê¡ø‚Ñd†x”mGk®‡-è™Ý=gáñ!þDIx2†Ä‘ñ$…ØÈ2•d“ÙhÕR²‡$gÉyr‡²Ô…z¡éj§ùt­¤géUÇLe²™|fósƒugƒX%͎gg±oË@Ƹ(\O4z7¦5%56UˆÁb¤8I\,ϊ—¥Òa©\@‰ã!1ÎAýÀR(Æø؂/ý‡ñªâ:Â3o÷lã|؃/.{,vö™ÿÆØƜ}¾“©ÕÆî !çŸsl~ThZ¤n$‚³v „–ÐÔÒÖU²GɆ´…–*¥›„Ÿ¢P¤’5ÔjՔH•1Ûïíý€+¥êîÍÞ{3ïÍ̛™÷fݤ[ðù?a …§p4žmûͽ…æë8Ä]x»yìß˃|’ßæ3|–Ïóoù_ã¿ †öex+± ֈ.¬áe1(Lñ!ÞÛâßJ±Rª,V–(ÕJ«Ù§ôa=ßT®)£ªPóÔEj³ºG}Ç¡8:‡Gç¿v|œâLY?#î x”wÅYµZÙBÇ©Q(ÊÇ₨â]bœ_…|Ò
+•F¥QøD% >(ßJÓS¦¸SÜb:9S҇8"<Ê:µXɤ¯`¿‘hω0à·i\Ô#Òv(#â¸x\9ªT«ù
+WÃwi;<äQ^W'9:Ҕ;Ž­"ËÚ§ÞtåÎÁ,”ßp+q£˜kUŠoŽ¾“Çð¿
+;ðCDþ0¯£rõº2 ¾ þÜz‘Ïb§i‹8Í߅_ʱ¿Ìümeíæí°ÆrÚ$ѱMÌA<¯¡OøYÎ÷oæŠ.R•,ÑA—D^ŸsDïFœn¥~6¨”'ø ½+Ðç9¢üìά‰y‚ïŒqT©§(«çÕóB§³°æBœ^DÈ÷pF¬ÁÎt+ňšrrˆRÄÿc8¡iâ6?#¶PKù+ÿ@ÔÐ)¢<)|øîmµFY‹ÂiâKYžFŽ*G¡º¿IՈÆ'[ºÕ?:ž•må¢ò/+d¹ï>î˜z÷í„uêqºõc/ÕÓUžÁ¹IµDƒjYkiP¼®^³ò9“Ýô…v÷-®â¹–ÆÛ­ nB„oLùÑĵ_Ý«~U}¹i§æst^¦_ ›|yëAØñXsΞ䈅´˜–auÕT‹Sih´çi§djËí8y¿C?¡(2Tì±óºhðO"C=M»±ÿ÷Ñ΀Ãt‚>?Ç·è¿;D]¥«Ê;Š—×Ò%õyu5Ó\jâ\H~^šyÖEH{ˆ\8ý—b—"î­[Öï­N¼~' ûÁ”Zº•â#òÖ´xWV¯¨ª¬X^þð²¥K/Z¸ ÌSZ2ÿ¡yÍÕ縵ٟ+|ÀU0kfþŒ¼é¹9ӜÙS³23Ò§¤¥¦8TE0•úõ@X3‹Ã¦Z¬××{d_o¢í>DØԀ
+Lcja{˜6y¤#»þk¤76қÉN­Šª<¥š_×̑:]âÖ¦ Ú_¯ÓCš9f·µÛûívÚn7&hþ™ÝušÉaÍovtþpØE3Ò}º/’î)¥hzšh™ùú¶(çW³ÝùþŠ¨ ´,(eèu~s–^'50•"[§ÙØô×¹ÜÔd_‡Þn’^kf—ØCÈg‹1S|fª-F둫¡~-ZzÆrR{¸$³SïlÛ4•¶”1­rëÌü7fÞë‚yŽ/¸ï~ªK1ü3{4Ù5Œ}šy¼)x?Õ-¿¡x`®(
+ͤ‰½¡ É{!R“+‘«Š­/¢û%&¼I3§èµz·±) ×&­~Ê}² À;l]§¿f´u·¹Ò¥‡ÚêˆN'cõSoÌòj³&S<¥Q紘a£S³ãÌ¬û‘$ÍnÙÃe«auÒ²,5ÒW! L­Cƒ&Ak*—ŸH9å†'ĘevÂ#=æ_ØpVH¼œo:ŠœºfÜ&D€>ö·É˜¶8&¥Èy›dSÆI2Ô@O´Í’sþ|"©>ø:VÛýežÒC¢GßæÔðóQ#lÛªXó»ÝÒÁýC^jGÇìm
+Æúµ»N’wAIÈaI9“ ä­‘”Þ%9=¬#’ßDñ@”g¦'Ùιþî
+¥»Ýÿç¤!ër–ýwoZ\M³¢dr¿rR’z™†…ÕbÑÐÒjé“hœ@†е€6چ¬Þv]sêÆ0
+“ÊuDæM9B~ù§£š½¸Ë‰ÇØC¢ý\‚œ;‚z”Aú%ê¼sœƒÛÑMÎå.GæŠÐ!dŸ+¸S¬C®y·–c¸ÉlƌATŠ½4“ʨ¹·”aÜ7šÉIEȈtY¬ ?s8ê¥ýȜƒÈ}½àµ Yñ§ô&ýÚ䡒9Z/¨ï!w­§JäÖîcü*¶C3;ÁmIÍàtïļØ{*þJn‰w}ü½ƒLÐ ü%[kÛ,¨©WBNtÝ
+NítÐJ&•à&ð*}„Z¿÷'ná[XçóÈè§!¿ºDlº9t7Î7PLpø…æ°|*m-¸ æ¢F¯ƒ—¼óIÂz±—ÀƒÀS¾§P™ÌTâ(ŸâJ¾뭅ÌaXæ2‰*k‚¾î/AžޛÊ;péˆ{\úexÊÑ{°N »­Qq2÷Ûð
+«1O‚äó<"¡V”-l؃Êä[ìÂ}õ}zÚÅý˅õ
+ޕùE¡#´U¢¬§ E¡üÆ ñ */´GÛÏgµ?ûO$x³ãðü]ŒêS&54„U
+»Râ:⫊ú }&ÆeK¤!>Nsy­;ˆ²ëSšo]Â=@îÔ$^¶wi֐{ôEø¶qs:t@B!ªÉQ`Úáµ~ÜÖ±JTÿa½êc›º®ø9ï&±xäcQ ‰í8à‡…%
+¡`°ØdÄm €]\â„E°E'€2­aeL«BÔB›XÙ*ÄÅq²ÖI¡É´V0úA÷G™6ªÔušöT¢lUÿXö»×/|lbÒ|ü;çÞsÏ»÷¼sϽï^œ£µLdŠçÊzöÃ÷+ð{æÐO\‚Ò‹@§ÊänИÊã_‘ómú”ÈÝ¢ž‚8Oï£ÐXäã¤Ýð¢LùÂI6$çn²;þGì~€¼z2µÕ ƒT‰Óo;FoW;ÉëðÿÞó)ZO6P½¿Ž“u1ÆSÇð´ÜO.bG¥Ê©[˜±ƒx¢#ŸÄ
+ÿí֖p=n®´b~ t’O¢Њµ•ÈꓚKôàÎõrûîLgé À]ìg´›£˜«QšÄ®qëïqÜc&õ¯éÏô½‡sÿ¸qvÑ´NÐ?1¿ƒýK*?qŸB¼$>V4ÝsvÚÙ~¨>e3ýñÌÈ(4ohµ|g–b¾Ä—pÅ¢âOùð)Ÿ®ðuþ#;ۗÜÍM\›™‰ô2¬ÿªÕóïùëìàlÌììú»¢á¤¯ ~›á÷ytÜÊäÞe2Ò”eü¿ãˆ¼\[ò—’¿óØ)¿ À°:…µ‚'rŸNêOðaþžŸã+°/À<8gätùÿðƒïê G”‹UžAï#B'ù“|¿R~ªÍeãýø2ÿxæ]§uÆ»> OñF ‰´dlfäý¿ùF| ɋ0¿sätl‘½×”Åz—ífÜ¥Œs\éÿ…¬–õ;ðUþð>ê]ÎÓ~U߅5ú<ýœ°“ÚBÌ6ò‚ZèIDä:rCGœE$ž%+¥b®€>ÁlF«e€øï|—ïb}·ó¯ùKþŒ—j;µ֍—–òMh>ã[üôx Q8…±þ€sÃGô!;àá‡t>ºË/ ³é²ý轊ýã'ü,èÐ~•oÌF{&
+ ¸Ú>Õ~F¼M1`øšqhÆ¡‡f·H‹·Ä›ñb †YX\qÛ»HŒÐ ‰±iÛÐ÷C6²räqCöŠžøK¦7u¦ÛàS€†wˆ×5TŒ©BµKú§5ý#ÐX¼ ż€Wðj^ÝgôÚ}?ôýÐ÷+}?±êÊVjteâ™y†o†‰­T.‚†Ü&¶Æ+,ވ؂®‡?#šÀûoV¼AñnÕÚ­Ê{Ty*»UÙm”%/ŸÃ-ŠgJ.6‰Í˜k‹Ø(ê•l~¬J‹h@]ʧÅ%ŸuJ> }>dv9õb½ªo@ÝùmÔ¥¬ëã>Ë
+ï^ԛц“™z|ðÁ'‚$5}Àà†Ò4ƒwW¡,Yø@µ ¯ðâ úð ÅCBx@nÐ:±-ka»Ü#\ê]°ra$båBÏ.L Óã"“p[E­<@#RÑOž+ƒ_e¡L,Ç©Â"lÚQ¬‹°Ò¢õP!d¡Ö/´x¼éÚ(5`/pH§ædzsa'mˁ èNC€™ÜÉÏ<Í­¹EƒÖ RÝ¥#.W…’•+“òñ‚¤œ¿¨"Ó»O”"L¥tp¹.—âU§k@Cê8h¸
+ÜdÀ†ÁpàxÞ¡¬Ò”Ým`
+µ^D³që•¢ÉE\Ž·aÑ ©b T
+r€J@E È
+2±ÓSfú©Ùä1=aú¦i¹©Ää0ÙMS®9ǜe^`žoÎ0›Íiæ³f&snbê¦l¦Ü´,)ÒR$OQå,MrM~qìb³†‹Aì" 6×p 6¹“­ÖØ?6Ûœ±ñ™Xª½†c9
+QÞ~w¾;g]öë}aƒ;gùιxR{9°9;_ŠUÈÂTA(€Èm¶†ƒcÚ*m¥ß7¦UK
+ušÓh'ÉÞ:$›í|¦Ô‰ž9:7 (zÿOfn‰
+ –V©›Ñ©Ë&e¶¥ Öd¢ê` ¶ˆ1¤–jCmäá†A£¾Ô‡ºµÕÚÒÇ"Š:Ì”œì{vB7þÛ%þÝï¾wö>¯ïï6™Ë{ød>äü¯˜/z:ÐqX½ÂŠ–µX Ø>
+‚ˆÅ“Ôò¡Cø=äðKŠ×rŌX*ŠWŠðØ=Å"&’» ‰¥¬ÔÕàÁâÕ+§ÿç ©å:aÃDo†ûZÂz(ÖÖÚÞ¢Ö6§íÔn¬¼Þ@iб6{ÑÅ ŠS˜™ë÷¹’Ç#9ÝLãÝ…Ž$ŽgXӎZ¨%kï™P«’,ãB¨€ûÆlvW6Ä¢žbOÉ|¸¦FHnyR#­Ë…G«‡k‡ë†ã‡ëÇOØG¼C²ÉmöÎ'IWm .lwUæ.Ž¯¥¢üT’™:nÉO&ædOâiÄ£*쀶Ð7Êó6»·€ÿ=Z¾÷ hœU ‘¾Qî ’.vPQ¹¡€ë«¨¡þ%¶,`z¥(^+˜‹=€ï´XÄó0¢
+ð Ć}H hu±”Ô×4)UÀOe[ªa?&e-ál{; [M–öùºhowÃ$PࣶOT)]-¬Åqao«zz0x³wzz•x°ïd²Qš†Ã"‘º¤.ÒU–<ü“®
+-­m‘¨ÓÅ°ÑÖ°l#m1»É@¨ÌËvØ`יËw¢Î<–ËNÅjËVhvË-ÍíÀK¬ÂH‹»|TfiÁ#’hçC^- ž¯Ü¢èÚÿâž×֏ç^EYžß»ï±u{R"©"žu›÷|çêHëØÏ~u_£(‰aÓÄл¿cz ïì»w¦ÕŻźì]¯þlí3®5ýÄ|…üðZû'ɦQõ}2ÀznÜï?% 5Rאª«OÕhº>@Ñ.Š¢)=¨ð4Í°zÀ€ù1T
+ޝµy³¢['©'Pœƒ+¢‘þtBTÒQƶ áo1ë½íD,–rùfˆ)_HmS ߮²ŽËêõx|,ïc½öð0¨¿Îý­rÁÂÉd.ÉBT„Cµ·*7ªÄÉBÈã­+žýõ_.þdÃ*#æ‰óÙc{§oÛ±CsH2µÒŒfÏìƒÁàÙ±7gÚ¢º,)ÒSo½ð‹—Š™J›9º$1¯2{PÕãq#ÙNà¹ÕE©ŽôíÒ
+K=…ùöœºÌVR™–Ê}ÚtŒ)\y¡žaËv©÷$G×p7{ö¿rùèáÿUø¿Ë߶‚/ÍOS#Îa¾Åpx>æt|Ë šÓô–ÒGùC¦>f_7ÇÅxÓLyUðÞ·¸\~Ã4æoöž~Gfß]0$ýµÛét_ÿÃMƒŽPß+0×fë@C÷‚†|¨^q¿oœ|9q$ùºíµª36vWbgò€¶?z0ùRÔ²%²5º)ùpz—m—ëÉÈ®(w—ø ¸Õ6$‘!iÈi]©õê+"w$‡«Ùfá6­[ïŽö$nK.n9¾AÑ|ºUjCXH$¹Íâï#o4ÐË´ÑG´amgãÓÚóژƥ8ˆTX?úeŠc“û¹F­š×U7kµþxL®q ©¹Yæ(™ G{ÐÞ`ﱯ¶÷Û7Ú­öÞaÄÓQDDB d7™"ï“ÏÉ%b!ÞÖÚ:U$"ê“Ò²rsEŸ•õf®¦ ‰à«ÿá»|`›¸î8~ïùbßÙNî|w>ŸÏ>ÿ‰}çøo–;„…Ø- („° I»jHeHQ¶®í²i…v´Mš’J­@ah4:u02h蟡MC´Ehë´¶ªZ :]Ñb¨Ý{¿wv’QƜø½¼;Gò½ïû~Ÿ_©jUŒ»5<̀DS‚dwˆFROHé4Òí‘4J ñ4uiD͂ÇVj ˆŠðÒ]3"‰mfÁ›Z 7·æÌØÒmÎUJ ïÑó{O|rpÕÁ¦GÈú4Š÷u-üڎGKcèp÷c½ûž-ýåފÜÇw÷5¾´áÞg¿E$ǹˆSk׶)ùë›Ú
+u@~ìíí5°š³Þnr<# ‰C҈{48?Ž&œŽ Åýáñò…»+v<Œ1øÝ¡Æ)UÕ(ÍÃ`²ÎÖÄMþÓW† dY x˜d€eq€ÁQƒãDž8Ì©™TP–ê‚oáM¿ŽÚSa ¢Æœø@s ¹üÿ@´˜JØÝu\-çäm5ô˜Þ ÇuÚ*
+’€­a=afPÈÉ KfP½ÌTƒ<™H$ªpˆnÑÇ?nÐÇ6çDS•ì<’óDm‰iÁ?n:’éŠkßÝöà¥vrejÚt²èÞé.ý©*JÏü¾M+zxëõõwU†¿áŕ {W¥–¡ì=A,
+j_°ßú¸ÕârÔ%AsÔûƒÙHDó[X+äÜȓ¹â¼yëZ ©,©ž¤(jê¼ ×lÂMÉlVËÄÒT‚OàDÒ0´tpm.´«ŽHÔP³PAЮªØÁÔœ]õ—ýØ—Å X´ŠÝÏþ™½À^ckجad¨4ŸÆéqHdY×£Úìj±Q¸*\,‚7·¬_©*71MHäIR¾80Öªºiº‚"äÜu÷ŸÅ¿¶ÏþQu”¹L&gnÌ^'m´HUTwͲɌJ.“³ÙðÜgªWÐüÙö©ˆ"¦‡,ß#W¦!³Ž‚
+
+Ζ‚fŽ–~;—–¥óäʹÒò>óÎ$û@¥-åóô6úª…ù#¡Ý!ÜÈçù.Þ²Ô¹8ºÖQt®rŠ¾a}ÍÉÒOÄpÆ"F4µæ¨¶ç©¶6JËe‰YZ¸fԜË477f´¬ Æø´ˆ¥ƒBé\"¨ñ–°¯ÝÈ5¹Ù,-†õ: ”¾‡
+¹±ðÕÛ{½GUœ‘Dt»¸²Š,¦ˆ¦„ èõ¿JQ=/c«[–`tÕp $gµ‰OñVÐUÆBºv`Äöd¢ZÀW\ãXd€VRf„¨2«åÈÅ}}¯n&nA+~ºlõÒÖûJ¯ÖÀM\í˜Vw]X÷ ʙf¹¾dIC`{7¾LŒDÞÄ7n=°Ëajsa>ÄZ–ÄZØ »çƒXû¨šbY’bØpøH0q,bÕä(xëþÀܜJ}¸\„`m™øïì˜MŒ¹ÜpÝ)7ª8þΐ$˜ºŸ|÷·Þ2Ó¥ÊSMÉh%´Á҆¹`¨>”z+<O
+¬Y>ƛ÷]+çu í™Zø%VþÔrzVl 
+2‚‚Ô¯¥¼hªP~›;íÅÂeù²òÿ…pC¾áµž‘?ä?ޗ?P>ã?l*¯
+ܺBæšñòû³k‡@Ö 3[E2CˆºÉÿUæ…:Tw¨Vè0 ñòßÇDo¾¶:c2óî¼³:+ãåëÃbªƒÁYOþJÞö¢*S/pˆ„!/¡Ã à
+¶y8RÝ,šzæêÐÙÒY”=;49´fòÍßüÙ¾9‰ÿ²ôÉ~ԋê‡zö—þvøZ\zûã+¥P'9[c$÷A’D¨4u­ Ð*í³¨ è‚º/ëëôLÚBl¼<Y࿯þDÅ1&Á¼ î b–3ó™äNŽ×Ø
+…;jrU
+ø€YEÁ‹hlªÚOÈ(¢Âë[ýý é‹(
+³µ7¶5ÖÛ{5FÇä…ÏŸ@:%Ýñ£cЪ- OLC–ËÝDÒ뾯±ìĒ(¹û}D•-ÕL½îå5,
+mòV\ðÿ]ÿ ߨ¸á»©ÿ+ÀÌÆö
+1ª¡¡‰Rkݕ…UŘªªJFuÇÂäz‘‘
+‘êPcMÀLa#“ ®ÒàÜX%
+‚ê…Ü`ÕAuS6JIÊ
+›ÝQcò <FU…QåÄhÕS°`’Ó39"#]F²Y›‘ÍtsZÞÖ'áHZ6š´l˜®¨íŽnöG÷GG¢ãQGô$ÞBA%
+°M0á¶
+¦’q ãŠhÅkØ42ÐÕ· Òï›ðu<eƒ¯¶£Ó«óèxƒ¥EwÐýôm§ß„ÕµuÁ?÷­Œ•\‘ÙQ…¨›è#ZSº ³}Š4f)ϾÂ(¬JìêÆJ :óØÄØSt¼Îñ{ŽÒô 9ÂÜ<rÜÁµB#@cæußÿœh´à³äˆÍ»š÷xVDEPÊmzÉ¥Ü֏Sxêò vˆÅ©«Gövç†
+%y„’´k¸ŒJÁA#`(mFÞHc~ÂH"ÞlúAËU:Ç|\‹ÇÓ(mäó¹l6Çã5y"߸\+ÍÑN'­ªNAP™v»èF:uÕMÓ´²0i„aöõšµ*|Y¯ìÌõª6U~à$2êÍ[âVù¡ëÒ{]†‘0¬üШ‰v[™¤œ,Zs2\ܙ,”Ń%(Æf¤‰9ÐXSNæXSl€æاåØ9U N>WöV+¡$IeŽã7õá1ØþðÃc°Í:ÂNŽ84Øl]Ã~r¼û.ø±8ÝzNjêšé™#æÜ.·?禽d‡G é© ‹y2°’‹/=ÿßì—ÍkAƟÉnÖD1®’´âŨ$ˆ4¥UT“XiiCµ-mVZHµ TJ @/zõ$¶(֛ñæ]O<Šb½‹Rºë3ى–ô`+ŠÞY~3ϼ³³Ï¾ûŶÀöÛÝ ~÷«õ?|Jµ¼°[= ˜¬m~{nDîªÛá?Ëg]×ýþr½Ñÿ²?í&»Ô-ÿf#Ç?ꌞTeUœÔjEÇFÆÖ֚/}õÜ/†:ÑæðÁø©™çþeµô#ç›åƟE-V†wÓKÀ±mÓ[#þر²³$ކ¸²Ç5¼ I¾Ús|„/†¤ßÎcŸȄtÔì‚ ‚ ‚ ‚ ‚ ÿˆ@A—$,­Tš8ØzI¦ÚÚ÷®ëÊâÈQä€c8ŽÎBº{NœÄ©Ó¿±ëRl\ƒvÅ¥/6ºQÄy\@?0„QŒG;qe­àƂ øк7ë—sˆaÆlm!ÅZ™™¥¸„Ú¡Êé+gÇÉá¬Ñ$0k´ÅxÍh›ú¾Ñõ«ÞR_9_š›÷f«^¥ZÙ|½<õúhAyª9ÌÃã¡«¬+¬k´kƒ¡=U\åèuLqlóÛý5µ{Ñêƒ+{ˆÒ-—I:J›ïmBwÂ{"²23½j=º²ëÌ×X<Ö°{){qJ·O_,¯o¾Ý‰¦cyvµ÷ëñ]€5ñ—+
+
+endstream endobj
+
+66 0 obj
+<</Type /Font /Subtype /TrueType /FirstChar 32 /LastChar 122 /Widths [278 0 0 556 0 0 0 0 0 0 0 0 278 333 278 278 556 556 556 556 556 556 556 556 556 556 278 0 584 584 584 0 0 667 667 722 722 667 611 778 722 278 500 667 556 833 722 778 667 778 722 667 611 722 667 944 667 0 0 0 0 0 0 556 0 556 556 500 556 556 278 0 556 222 0 500 222 833 556 556 556 0 333 0 278 556 500 0 500 500 500 ]/Encoding /WinAnsiEncoding /BaseFont /FLCIIB+Arial /FontDescriptor 65 0 R >>endobj
+
+65 0 obj
+<</Type /FontDescriptor /Ascent 905 /CapHeight 718 /Descent -211 /Flags 32 /FontBBox [-665 -325 2000 1006 ]/FontName /FLCIIB+Arial /ItalicAngle 0 /StemV 94 /XHeight 515 /FontFile2 64 0 R >>endobj
+
+64 0 obj
+<</Filter /FlateDecode /Length 24987 /Length1 45228 >>stream
+H‰\T xLg~¿ÿÿÏLä&I&ZgIÉ¥ˆ¦nÙɄ.A‚vb©™\$Q‘¸6ÑÔ¥Jì¸Öª%U­Uµ8Ñ°aÙÕV»ö!bµÛÒíºµ]ô¡ì>êVÍÙo†µìùžsÎw¿ýßÿD`$FÓ3µ°Ê=0»1wdQ…·ªnܲ4`§ µEsféëOÍaٗ€­×äªÒŠã5õ€=œéi¥Sk&¯J{ozð–•x‹O¬OXÃþf±ÍSeÌhߧ½Åk™îVV1«:òIw&ÓoŽîS+‹¼Â[øU2ÓÉÞꪰaÔÀöŠõõiފ’¹»«ÀnŽ‡ª*gÎâ¼ùÙu5 ¯šQR•ï?rxœã‡ZÚÄòëж!V% °.ñ{9ð÷—[—òÀ_|ËÖÍ÷^ ;©;ñG|@7Øj7ö£ GllD-Ö¢6ŒgÎ/‘Ï 1-ÅZMè‰ÍœÏf´°î³˜‡èD1ÖÌÇbù [-æNwÅ`ŒF%VÐk6&àœZ„¾i¨¢–ÛZi­±ÞÆVì—G­;ƒE -ÖwÚiëK¤°Åk؀s´¦Í^dr”¬ùf ^NTd•Z?rN¼À9(䢅‹$ö^‚KCµ2‹½l±LëkuÆD”¡(†
+/3¼0<¦Î¬œ‡uLÝTÓÖÌdÍÉÿ§™yW3ó¾&EééHOIÖ]†n¶dz3Ïs3¾"Û(ÐÍkA<7ˆ¯âŒ;l »bʲu“<ºË̙Sæsy²Ù]cXh–‘Uš’ŒÆÐ0FÃ3£ªFŠÎ  "¢]B"8)Óad»ÌX#;)ã]ÞbstžÛ•çt¤$›”Udš0†˜m“‚*È
+vê2ßã^’®u³ÍŒd͋—¿'Ǚ7.¬Á`\ƒÅáðظ:„š5á:›ñTLNʎP 2s&~]fï2Fyb$—esğ¥²Å¸†‰v¹iósqЅù)I¹áÊð–.3´5%ɗîVÏ©ç»r*Àé2{$FrÊá«J’B¥Õ)J}aG@©/ªvûðP_<£*jvåêòŽTÔ»“ˆR«²–•,$±@
+yFõÊö‰Ýø ÉZ!RÞÖ¥ÔyBÛºTKçst*tÂÒ¤ŽÿøŒÉ.ÆFLÉò4¾Êðå´rxeûèÊéáY>©‰ý3†­âw†ˆú}YT“Xç™NßÒK)¨ÔQ…ÚF»Út
+ôÑ^stM°ß¶i$, b9¤¨ËÍð˜Ûܨqa–A!pª/ÓNñERà¯'ôÒ^"öӟ€ÛÅvÚYEz'fX/Qm^G©Y»LËP÷ãÖ±þÆËWýˆª£4c&íA|­Áø{có¯2¶S1æ_Î2†jÌõÇOìÈ{±¯1×'^Žá6*Öb_BÀ}læ_È>ç}WJ‡—£íÛh³‰ýç%°vŽIîÃý1ÖL;[¯1µ¢M#üú°ülƒg6P÷"ƙ
+Àt`0´U@ð,0sæÕd¼"f86e| 6ô>ø¶É˜µÖpL3-öX<O²qŠªl$ó˜œ/³°¥Ã›sŠcÆaßU÷Êû¼NŽ©(#÷Ä ­ed"¶漃͜‡ÔªF×p̲}³_8Ö¤O6¯ˆYkºÌ°F”bÇzÃŽ/¢¼ƒŽcÌJc+ΔfÊßÄÛûû´U¼Gk´¹´@O‡ëAۈ:H½x—c/ï„ü„‹›ž~å^½ël‡?ûéIøô¢_½Uô+ºÞn¾£“r^oW•åì†ÒkÕ13bëþ]ýgzQoǙÙn¾«÷›&Öó8ç„gPI’†þ nóÎSš¼UJ—§„|Ñeà~ ,=@KE/öǏs¹}‰þ=¯5Ò~Ñoþ^ QHí§ZŸ¶àûiÏ¥^¤ÞGq1çŽ%‡xu3ŸùvLÍÈ¿Wl¼mã#àCÄяkŽ¥|>Ëûg4PkÅ«y%Ÿçé)ð'>]qZåŠÏqî¸t³¼[p¾;y
+qÌçðËTaçõ­6òaã›vîãÆ~—™¦‘kž0:͓Ú$ó¤±åߺyë~8z§Íaû>ëÜ¥–žnrîQ=ƒvÚçÙqyÞ|@?”÷h©´oŒqšöèCØwœÒÞf;áOØ]%*áóÃԀuLÕꐏЛØ'r/ˆnæ{ïDí üÌwQ#Õh¯ã½À}3h¢¼/VQl?/u¸S™Y§—Q«1H‹E ÎÚ^ÚÎ{Åë`{xï½Òx¯çD?-?E?E»f郝qÁ}«ˆØžmäAÌn@¯Eö Ð$ÛÇ¥/d¼E8¾ØÓðÓFùž¤é%T†jñ„¨Å(AÎùé$Æx
+BÓ4­B}b¯ÁJɔ­¬YjeL£o´›´õ–R¶htÞ÷Îv€ÊèæǟßËÝï¹;Ÿï¹û=†õ¹/SÎây4Ïeyþ,òǂïo"E¿„T5Æcáù+ϝyþ
+ÍÛÎX"Ƴãêã*œwï­ôŸäE`ž‚ށ˜[lnî"Î&öԛÈ5Æg?×Öý%Q%7Êc /À÷Bß,žiŽõ¾=v†3íÿí?êù%ÎÔHži<¬¼HcÕœégñ£2ÓÙý¥Ïò‡œÑwŸÓÿ«_<ç‹Ì”—Þ—ÌàÏÔÞ£úÓóŽGö§å%E:÷ÕO_{Å|f™3Å´çîQáï†WîäþÅ1LŽ§ž·â;Â~¿ìó
+ßß6Ôa‹VK.2 r@"
+á„njÿzç¥G’(ÕÙ²”ttfiŽôèŝ#„RÇÁîç<œLw՞fw³s…céWc½¾óqßc{õã‰uú/½I=œ7™Ð¸ÎßÝ9B?¡Çc#ôWÉÎiý$¾–—K+bÉd"K7ˆ8â§7‡sCę}ÄÏãˆßìËǝÈÇq?âj¹BœÅB‚".h±ˆ8åqC©Úxl¨¶Vĸü$%bR.ÿÝ1Aă"¦J#"f¢Jã1ú
+¼¯VµUôEÄoï2“–äÊî¼Î°²R¬×^O ÙReßµB,Þ¦€{Ÿç,’_²pRŸUÓ¢[¯z<úx”Wá™âUå(¶ªÜûšdë…*;Š5-$Ü¿;µ›¸ãߌå¿)|PÔ¿›Ox^†Sû .®«›b©~Bzݺ„Þ¼¦«sÈdBi/ÿIú²bYYY<›Ë.Dá2^(IS¼l9/³X
+÷ÿÿ» z%
+4v.CUí'©¤¤û [AG~kwWçY¤KüxH%ñS4LSÅ6Ä°IÞ&ü÷éß]°
+cˆ$•¹¿’%oöþ'Ôçæy½Ìb°xÙ3¶3³ÏÈçgŸ—?÷)«$ƒTA,%F±˜Mvb)3Ù=¥³Lv·Õf²»ÊF‡«|¶Tá*¯b•®òÇX¥Û:‡UzJe©ÂSê•*ÜVŸÑá¶*F‡§´Ôã K!«Ût•W¸\å•,X!IÄn
+ÒãKPZ‡¶£¿G9zf>ž£Y{ž,Ò,Èbݝ˜U¯{=¢4½®®þLfiËìD—Ét¼]ì{æ;0î<œ&kÉ÷CY¾õd=GãÅ0d¿°ðñëß0cOÒ±½…ªggU£œ2jÃÞy¤§Ù¢9¡²çÐ4Ë$,Ùd!œˆïû=¼åÃT* ’Êd2ö‚›ÿI79ôô9Äå¯÷{$¿n…<‰ƒ&Ü;ÜIxڄ0 é9$s·¹Ó¸çOožå,…¾`†h
+°dØÅb^Ǹ·+·Ü'Üý·‡i¡ ´  Ee¸é!O,[nÉþ /x‚šVâHço¸\¤‰5,Ÿ¦AKG*»‚ŠU¢Ê®¡*ÐaBæÃfTzJüÿžÆ¡'‘õtk@ÓìÆ=˧("뒲+ˆª*‹ìÚ£.¿ès@ ùh ÐOBʇù¨7.ØÌ|;ÉeëŠSpHŠI拼 |O”.3VxWøž*m—Ú••ÆóÞvßwK7“Š›”-®Nñt€^1?!×Äkʧ.ÿ£t78¬p¤¦Ú‘ƒ:ˆ£«\ßÀ4f9ájYP¸®àå×&E¡#–L§:P
+5°†£µÕ îºøìâb·—1R1=jÐâøì:F#’ØÔ>Ú³©ÿ…o¬=zuóOÏõnÝÚÛûòÖ)2Šyüõ÷ÛNçòŸär¹ûÅoçÞ€×àµ÷žÛ͸ò7ð3ÀNF'­gizM;¿ì#‡‹ø÷yì@¢@8‡€U‚Gd;{™Í aÛ&ò7(èÒù;–n°uڀB•-ƒk
+Ì]vðïU/ð/ÍÝZþÁ7GÚØܒÀe æė'¹äЩf†Ø¤1*éºÝ¸g9(…VÐ#EKØÁ » 8áNPe™ÓdØR‰\R*§:!¡rpƒª«3¨*Ë2mdñâlF^òh@Õí&ö€–Ã¥“©qnXŠÛ MA»Æú™T…4Aã®eWñËFc|fã±ÑìÁ¬º9ÂqXøH–.] HßV[ÕeÎvu•s‹{‹ñªû¼û¦ÿfé¿ú‘rÖ ¥ðzTFƒTü0ÿI@þ"8;-P¦E¢8ð{QÀnQäpZ¦É±ÓKt /Oæ ›²ËáÂD•7”ŒBµ×ñ0ù
+éÝkŸ{Ý3¾óÁ‹#í«WíìÊݾö»<~Å<Üù›[z~N^ܶrç®]¡ÁËÏö¯j;23ø۟\Èýó$í Âø›†£V{¹ºF}KíU¯¨Â"n‘¶ŸçÜÀq¤Šœ$È
+Uã%n˜ £"ØöX2âyxÈ|š¬>+²UV^#O9¡\X˜ìÆ={…’Ó¸ÞÒ$«"R#í×J].Âè¤hžD( Ž°?³ÿ@cì ût¦ñëv¥ï‚ûÙF8Îì%IoQÛaö¶[¬È‰DçÌ_ØiA¹íµk¾;–sÕRâ ®bF‚ãËʒ¬‹Vž±<ª¥$ÔKªM¨8ÏHØnÛ
+¸™U(.ž4'F’ 녽#°¶Ê˜§1•0‰&.‚2˜0*ݶ÷ºì¸Ð¿¹loÙã=ãcõšúii‘Ã0_ósŽj¡Zã@Ԑ½nÃqº<NÃãti Ë`‰XÎØï:]–O&uÖÅãQ&p5+ÄÒÓÛè:ºî£<‘˜¶HLŒLjsJ$fWÈ}×"îR5ô;¿L,åÿ-–ÿÐ]5ÀQUWøþ¼¿eßî¾Ýd²„Ç K6 Á$WóŠ!©ü™ÔåG1¡Dj  -B ¿QƑ"X
+3)É5°ˆ g˜A#œ
+|‘ºH[â[d­ÐVfoÒ6g¢}ðªq^
+J @)xqå]T$FÛØa9“–ہŠàüàSÁµA)Àµ`Í»ÙèΔH$&ƒ˜f<Átàc:bd»ªFó„4ST$7¨È(â5&"ÕÑÌ!!å7;Cc§5̹öcìþãõ]ýÏüqãߒ—~þü?;.ôO¬zaÆò_¾úìª7¤™î%%•%÷ýû//HþçO[?¥ÓéjzàTûoû.ÄߨéÞ»ëí·áßä׉‹4Úî•àbšä.C–0*9tWç ¤J”hέÉñ/R±ŸÏx<ž¢kA<f¹ÓY<ú¡e±Êk‰ÆuTcØ`õ.÷–§J5$+v0
+°-Ey‰´oqá­4bÏŗ/#Ëjjh4Z6>-甁™ŒÌ!h
+º¤ñÉË'N~Õ°´e[òúùóÉë;ÛÜ°xÓóuõÏMžÖ6s]{Çúµ¯óá»–ìûì⾺ŸŒíyîø-BéÉí§è¬Å7̼ec߭ʶª×š×¿Ñ>ÐËbNšÀŠo¥ãí % × àº(VÁN!lqò1¢!¯©Wt:ސwl¡3ßô¸Gº«ÜÜíÎ$Ք
+é2 « XiF¡ˆÆSé)Œ$2N DÓÏ@½ðþ`'1d·k§=FO¯ÈâÿcõN[ß1U<Ԑ=~rø¡€ùA`n¤Ž?X®¬
+¯1[Ã[Í݁áãᯗ­ëVƽ½ŽŸ\°HayXw#L¡K±òÍ*÷|,²Ùh’ž«NQrnbä1ZNœÀÈÞ;ËjÛXäé.¤iï`.ym/󶞪61•Ckçí’ø2¯IWÊûXÙø<d[xH&Ÿ×`X(©H¿È¥ÆŽÀê…3×TO Þ[z¤ª§·'ž]õõ«o~ÆÎþjŏX½f?i¬úÑCk?mÔCs¨öéEjìNþ#ùMò‹dç['øø=Gz^iʅœ9
+íÏf)
+ˆ88d”•ú9ÜG{{{yMooßë½½ðFòwééwD!µ¶¾7ˌË
+טü«…IÎj3[9F«AžVÛ~r´$Ö¤Eƒ+Õ¹µâcÈÜ$«8\™€O(l¤Œ£D'ÀÜÔO©¿‘ŸíKrÆÖµÓݝɞä©Nôn9Ý/M–á݃vž¬PIu\Ns9Ss%IɅ¢ò ö!cì„Lš¥¡ÍÆ%ã2)®L€¯1°Ë¡` ösÊPeæH“û&ñðæóÚû÷¿ãq3Û.Ö¤ ÎzL‰Ë6Eå”ÇÊA‹ó˜Bš%S9íñå8ø«L ËÿÃcJËð’îé+ã´ï?ËÖ%vÒ
+ò§’pðPÞ30ÂáÈð™cƐì&œÛHÓô-Ut”
+$-àZ7“oaõÖ¢Ò÷ñd ä; ¡܉Ke±²¢
+篚4Q,UÒ¬½’ Ÿ5±pZá7‡
+g~²7¾‹ÇM=:ið»ÿ±`É¥5?û;!u||ù­‹ø³ûÎÿa|÷+;
+x  rI(
+Á DŸ©äÄ 0E%·á¿>oeÛòeO|sãÉՅ}8»ñÕºG[~ü¥'z oJ‡Kâ?Wøã‰]…Âî…{ê}ÿµKM@Ô; 2¼yÔяœYJPª(HY"55¡#ª0tÄ-½ò”0ÓÖlƒhQCTÿºz¦ÎwTLZ 'l¾åú…Ìý<­«…¨K’Åk‡X5¼MÈ ¿-¬’÷¦¿Q0z‹ %Š«!}ßÉðÖ+øNÂOmbë„Dõ‡ðÛѹãž" ¸¯M]pû÷øÁ÷˜êºß÷á¯ÃÉޑÙÌï)½#Ÿ–÷÷S8àDcÁX i¯ÆÏÐö UU(é/%)” œœ6óc¹4a
+$Ꮓ[»
+)•Äe: ;èƒ%¡&“¨J€±/„[9+—}1¬ƒø˜œòýWõ•*Ÿ P>dª_„Òè'KÖNuŸ-lïïóÿ²ãWÒ{’ÏüÊêÁ¯%›Öb²qåÕO’éoà‘óËágΞÆËúŸøaíÒ®–ϬzrÝö…›] ±Îc'T”
+΄³‡YJêE!¡jÝÚ)h!:ۊ-ï
+]E’߆‡Àÿœg&7;ÿÍΕÑìÜp,WéñììO·ÝS|›ÌÝßr.ßÖљɏ¦r0Qq’ïè “Fcãí
+•Ì3n0‡t·:pÃmÚì‰b'¦çí¶N`v = pšõóђxyôPß-֔Yþƒ£‘ Yù7"¦‚C™é|üàƒÔ{$ÈF·ôÔ=ÊÒE3× ¶éøIÜîùvó²•ÂµáÈÀïŸcuTŸ4‡!œ„Pј¥ê”jm²Ü =¦=-¬ÎÊ
+ ý8‰áWñm$g±2²…¼tÜ¸
+à’š†w7(`@†®85ÌòøÙے×#¨ªê&¢*Ñt™s×*÷ÖAN\ œ»Ô_Œäæh$Ãn$ÀǓ|rì˜uêÔ1 ™Œ{Z(枴S®ðz$óUà«ÈW‰¯”¡­’Y„‹
+&{Ž1çD¼4HbT\áYãù¤Ò3Ã3Ã+ŒSÆ8s®0_\a|Ý\kPH4k4˜O’YÂ#ŠC[ŒO™Úf²Eؤl¢=Â.Eö¯iÖJØN¨Ç0j%
+j﬽:0< ÿ5òÜþ0x‘Û§›ššÚ€ýx¯†³ß¸}sŸ©±§@bvû§ƒÉ¬9.™5Àl̚¹y`<<_¤k[gG8
+ØëTÆÐx”V+EÛx´…?
+e´ vÚ¢‰
+ѬÛHböýùÎi¶jRG°ýñÙÉÙßßçûù~>C#÷^ünË/¨ÑûMôÛ#µôÇ#¸wÒaŒÖvs¦Ï`ý‰l¥p’ŒcĒ0…­,È-KZ)ŠµÑ$i³²4³XsÞ2㖆Éw˜5hÐY‹q(Ƶpó¸\?Çp,¸iÃÔ8á˾™­¦¿îkÆmõ„ažÑ2†“éþ'ã΁Íå6ÒÆ
+™BK=øøè+ƒaˆ)6•°ÇXµ)¯j°)ǪÕyX³‚º’XQ«óš0 Ê%rV—6>ôŒäa Ã—[4¡u` ³û+$î:C‘CgFuX°õôÓ°Xý#ý8·vƒë¿Î\"\Dˆ8¯¶yä¼Þ
+Ñ´@{9™ ÑûåAן]”,ûCd,¢Š³<³d5ØδÛڄVq®§CžëŸl =/ï$…@”¢ÜQÎæSbz°ËÀ‹`5]€»†[±ïÀÕ0l‚/Kܐž`Ex¯¡e‚tÂÝfց„0Ót–øÄ Z/¡iZ¯G âÕ4Ž¦†g¯ˆl5!֐J¢˜èF›PÝÛ¨éÀ1}ð͋úÐkgQäʇ(ÔwûÅ úò<ZŠvŸÖ_½ö‘þ«ãgQÇôèQ
+5X‰5¹we
+b§’¶LÈ¡˜ãði]Ü"fz½’¦ÿ¾qenÏî}:£¿ñûC¨ñ&ü²±O^[zx~U¿B×vuöìÖ2sk;O¡®®¢ùCoé¯~p\ÿhk…¶ åŽ ûKúnÖ/¤°æ{A×óýD1Uãn΅ÜuᎢìÒ"Ú&nÁØ[}‡\2'®p&pŸ|pã¨;XÇ»G‹Ó5">¤k„‘/áú_ŽF”üu¸_(ñuu*€”kZxZl6×^^iû±«ξ‰ŹŸ?Éæú”ÀáÄDÞ+Š¼È;lîJv‹[œÆo³Ir0•ñøàE“e"^lô°xàb£Šk—S“Âb¶§g‘bü ~c‹K®Hö'©d±ÿ›öµåΠ3Í4ÝŒ‡Ñ灛~`a
+8-v=ø”þóQIúÔt7ÕM¯¢ž¤éTº–Ê…¿CMµÎˆ4MI6¥gS[»"m%W¼‚1n’&H™@1AÚ c)ò7çAÊŠ àæ/Õ&ŒJœJ’LRéT_“˜’j¬èˆÍI´¦–p?r.v-ðöøû¸5Î5ü:aurUjµ™pnæ·
+Ï%ŸImwîàwø¢w^WÜ!%hSJ‘B¥A7]]¥=Ð\Îò¾Ð@ˆ ¥$gy4B)Fb°°nœ‰–Û¢Q‰2æ\4Bƒ­pжÎwò?!µ<•t99&ŽDC¬ÕBS¤¥’Å𙅉†Êƒ*¦ÝOaöܑˆr„o8+ÅP š‡V D‡TO9þJüÕðÄÓl
+QŠJñØv¹ÈÖRühNü{¥Ájx'¤¸±e×Ü&Éݘ˼Ñåßǽ¨êî4­5ßIJ'€
+S$FMQÐó¡ ÿEvpçÄÔ
+åGzSû‹A~ÜWUÆÅxmÜI¡7ë!Æyðàý/ðÓîÇW Oë%®ªv…o§ÛÙs,-aHà›k趉žÆ>Åÿ†ùŒ·:R<I¾~Ìbó*¤éÉÉqON
+Gg'Ë ’©¸þ®pý]1›…š?D­ª ©É
+D:.[þÏ6ÿ‡˜ÎL›î›Njl¸­«Ëq@Í®
+ÔTòMÏ*üî"úƔxe=zîLáMp"oïØ°m“þìA²æŠ
+n!lþì%ÓTROIÇ¥¦ë®1ݙOµëóvg9µL_n,s´ç¹çÕñ…ôš4d¬f¶YšÃΑ¶–°K¤•Öv´ÖÚÄn’ž±T֒h
+&Æ<@¥¨V\ïMæe¾."GëÒr]+O·Z'ͨ›_——óu}ro]wã^yWú…ðÁè+²•"¦ˆÔìZ¢Iß;½9œŒ¼ž‰œO]´ÞMqs¨œð¢NJºaø@ëcm 9iKI·ãNfr]³Ë¸“ç3ó&™ëÊ<Îõf¶H»¥³ÒmùvFomV£5T7ÛÓ*BΪôú4NÇ”œ2 RÆörDùX¡‰ …B@•À†BnliZ`©"ŽPª
+6Z‰¡$¦‘kó+§85MH"hUlM ’@"Y‘R©mZA£¥Á+ n¤¸-J¥*•QQ‹Å´A©ÁJ‘“l÷Þ76¸-Æó>žy3ïžwÎ=$Æß³ˆàGµÁgu’nr•Œ€]‰FCäÞ7fàÓ+#ºÐ§ÙiØ_e(ŸG ~ÏùoLR“3ñÊAfµeš¤Eð&ÍÀ›4!¯ZuºpvªJTò·v4®«h.¢Kî{²Ûõ ­Ö!ø°aNj¡ ä6± 1€ÎMhUˆV@a¹xªìæ'¾è¸þüo/eO&÷=tøÄñg¶½HŸM¼5H˨ñ:•œ<šÞþ½?~ðáDŽiÌ®#m`äzÿ¸!1Ó3 æý¦RëÔf6Jß2Ö:ë2K*[ù#N[f {^¹PòQòZÉ5çfâ³ä5Á<7›Í§®)䮶@ª4¸K¥Z³QzÀlpÌl46˜›×ÔºcôVÄ¢q9²¢ÀȐf ¤*­¡Ä³£že³©eûv›½ßjâ™jǐ9¶HZHU[Åd ÂÂìçp+D܎`Äa|C°ÔÆbõ눎ýÃXå»Ú vE›ÔB´J“µYâÈ ÖfGQÀ&Ғ&²–œUX=ƒi­íMÃã3IW„zm¼8$Š]ü½Ç3¨·ÚËkQ‹AŒÀ€sÔ¹Ç3¹nëÙ}vn;°í§ Oç^ß¹ë׿yj÷Ñç~uäö±.*¿°f¹kbïÿù÷ï]|ÿ,bÖ*: xÌÖù‰,ÉÄ¥õr«ÒÊׇ¶Êەð­!=ŽYPl:þZì•eð:'öweÌM±êØÒdufy¬)µ<³&¶9¹6³%öýԖÌnuw|T-µˆK£f"±Úmsw¸²›‰vZݖdY,14Ò/À;­fÀˆ»ìx¹ؓðÁ¶]êКˆ¾ÚÄü!ŽŽÏ™Wè1©™ÊÂè´WUÀÖ_Ži6K³nU©ù•ó
+ÓHåf •HËŒ\ 5S[óMãCÍV{>?ڎã&TÂqȐC‚\­Åñö¢°åÚT‘A;¦)f‘šûˆíhå.âEË«D•îŸãÌõ‰›Ô¹tFèOÞg92~QZ®Ûðü_£ÇúhÄ>LçN\žøÊʝ삾ü܊'^)÷+5ýY§ÑäÂ䢤ŸÜ‘üEøó5SO™s͞ä@’%1sSÙB™nÊáhÆ q)ï”0Y%F—CÉŸ%<Fdé%% bu][?ŸÉ: MúH“¤oMˆƒ@‘¹8Cf#qÈ|á¤qDêr0ž$ðh¢ó‘ð 3ö–°aÇJ“ïÐ~RNF©A nÍÏ ˜ë
+êC\ŽšÿVFU™‡ñ+Uô–øyÆt‡Owd,à,|p½ü¤!ÅÔ\IyASz:6§ÀќBSÄD¹˜ðŸ•1…©KøJ¦xê׌MƓòNã¢ü‰ª½ªÒ
+µJóôzµŽ/3W™-¬Eݤµð½lò3þžúWö¡:¤^×¾P¿Òã1ÃPd™Iªªq®Ã€ëº§©Ž¦©2cžb8Šb Ó)„_Q5N&1ØÛ4ês…‰ªr¶Ž£òœpE¢ôÑR ü!HxdB—‘UpB¿ZœqK(“°ÄD Fb⤠E„%#É°ùqùÊÇ@†šoÝ ì/èHþh¾µ Ê(<ÚülE;QHYg{­³Ð–æ#ÐÑ,½¨eq=¥
+Ïj6ršåÏÈ/5íœùöÀyÅæM¾Áç—Õs½¬¬€]î-«‡æ|oN4§ÊëÅ'´@Ƈ¼Oòyxâ Q'zËëā^›Ë½V½4bÍ©Pðp¾h†ú±ÕÞæ8Eq§F{KñáJ·Ó֖ êƒ^»à%­¡´‚jpé‰ëÛ軗'ŽîSúï¼C{&v?*e4ñm<—á²Dpñ“7ADÓǒº‚h µA»¨:hg{¢õ=Õ¨’Uº”+
+[—EÎ*;”ýʤÂ@µ I„ W‚Eï"tìµ4SÕ¾¼§je3T-À:ÈCúT
+¨ IaÈ]Ž’fößE’æóM‘š8™ƒ}JÿX r…Zþé 1f¸¼þöTô7¿)d<6Ćøljk9å‚2š“z®‚—¦s\–+feÔx>R£jE*iç<Úéu{’—H¤"^§Mm&œj©p©˜5B©:¸IÀÚ’ð«aáWUpõ~ÚµN¹7Úê‡K½Î4M‹åÒw—K‹å`|÷q¹´ÈiQp¤‘K" ¥Ã¸0Œïˆ…Ó¸žK¤š
+àKoòC²¨„„_Ø'íOÅ¿‡n‰wBŠÄ$·ó¬÷ٗ½ëÞ 'ŵp  ‚·ÀJĤfÀ{ÜOxÜ[èÜUèÜUè÷\…Λ@/äg°
+sW¡sWŸÿTç®Bg®ƒË¡Î‹ŽáWoôXÓE™ÃðnyB»·ß;âõx’'
+yޛwº'ÛyÿÛXЇŒ…3ÌXH¹Nìñƒ•F×¾“^sSèÂÛÜl<p~úA™ßHõßwÅ!T£*;©.†-́<P^ÃT˜£Ì|‡ûĝŸé]r`–M»Ç¬š¶î°”Øûn}û6eÖ ÛW·=ºçbæ·,3M…ÌT
+ôŸ:Ö¹ýX׶ÎcB—îÚ0ð·Ì¥›?Âؼxáâ‡g.œ‡êh‘F‚AT€—ú» ûö·ì¶”Š‰ £âE#'äM9ed{|w\«ukcÓÝé±fm¡±È][©­2Zì6wU¬'þQ¸×ë~TÐî+¸ŒGŠ¤¤Ì«’jíoKÓíögú͑¶î ôŽ`*ÐQ ¿ø2Å6õ麅JqaœÃ ¾í†¯3 ©—ûüŸ!C÷Ž%wv BʸVĊM×ãP…P,A¨\ޏà[X…S¸ Â#›s\1WcÌÕs†`ƒ]³ffØñSyÀ»0H$àŠóG5T{8Ùh?$ÄvævŸ¹PY?²vDi68њА¨FòÂ`—(uÄaèuªÝóý—W>sí¹¯ŒsÞÙÐñ«Ãë×h‘?xqö읃ûÞ¸ûÒÌÚÌ]ñÐ¥Ó®\8ÿ'¦¥Û Ï†:çO*a[ÂER¥ô˜4GZ!­—âhD#fÈ!&5¬óâ#JÊvkX+Œ‡pH(tþVºç*þå;Ã$Má”`veã’2ÌN6N-.õÙéÛkû >¬:øDªAö¹ÎÀ¦Ó¬Vkqzhúd3«
+’´íàä–ÔÂœ§L™´8\ %¬™V{¸´!µdm揬
+Ń_ cä7‹þ|
+QpKE æÜ{üGa±%ҎaR,¢ˆM’ò‰ºe¢BlK <¨jõ¤~‰Ú®nQw«‚Þ߯Q{Ô˪¢2º±¨YºñÅWݬjÖQä¬.jvdU…±—…“œ¸duQ}_X‰<<ñ芇l¨Ÿ…ɾÛuL`ÉÈãTTØç˜ñJ&K\F™D•STUáTC…ŠœpØ#ØљuK[ÇnÝÚuüx(YVpàçöäå…ïíÄjëÀË;3?~bl”;ÔÁÏÅëRîÞt
+×è­¨ÐÝ=ŒJQ£„Ü#$dU'—!¹Jdˆä! ¿3¡ì®„]ŸóðéJî?ó0µ@Ãþ¯Q`&«{ª.ËH>D£’0-S€¦h²£T2bÈԜbƒt̘硵áGWqhJœ
+(á'¾éÔ0J•Û0»`s{ÊÌ8)]‰Ê`Փ@AØÀ§«þæ²q•(Ëx•‘­AUtj óð<¡Y›OVàB‹ÖB:ÐF¼QxVë i'/¨;´É[hy•þ¤ êQz¡WÑú%ú”ÞE·éXxê¡-C ZM›„@ÙF*e Je.1xöꈉ¼o1)2¸ª@-Ø1.Ȭ*ü¨ ˆ°•÷&¡6ðw)y)‰ÊS)e̯¦ª¦•&„"Q@ðÂÃPBM¬¨”ˆËå6
+3}¸mCéæѸ"»:!ó7­¿ë+å%¿<5°ZJd¶>ýƒ¹„@`‡ìø'°ÃÆͱ#Ϻ" D^ÂâIÆ*O2N¤Àè3VXAl泀û‰?+¿fõºôºöFàM«GîQzÔ ±üHMT ‘<3jWáZýy¼K×ʃߑšÕf}~`/ÞG÷é'„“Æïõó‹öUñ
+ùÐüØþŒƒ9¤tË3¡ÝƦ[Y
+LD© 0_ZÇʯÏv1…¢ˆªFV"K"±]fbË2mZ]0uÑ°©b µÏ¢³D°K #DDÁ<kb³Ä!¦‰”@n˜ä†hS77…Ôú®B6ûð:á+³þË~ÕÅÆQ]áïޱ׳3³3³³³öþ9ñ®íx5Øęč×NbìĊócB² æ/ub
+ !%NJ
+<”ˆ"x@üHÀ‹qˆ!HˆÈT¢y¨¨¨*‚@I ´!dhSäݞ»»v¤Š4êKy™;úî=w{¿sæÜs=‡<’gŠ¯Lë5Ò#<1D\ø¶¥ìLфdAó¢9sù‹ì¼ýD-,˜-™0ûsbú†qDž>¢›ÓŚš
+jƒÖàëÐ:|íúq¿š´’þʌ• d‚£Öh`4¸ß³Ï·ß?n÷õ?e=xÂ~VyU}×<íÇþ›ò¥ý½oÖ¼bçc æ<ª2 Æ¢eÆ*ã°!áùéSËɖü¨Ó04ÓoYô?‡í@ ÞRlêšá×êUÅVU%`ÑiNõˆ fÆxs콏Mñî“q‘¶§øpZí¶Òßn½gqkŠõ¾e°VG1T`+]£µhCš´^Ëk\#Íqû'£5i'òfwÏdw“‘x9dÎ\›(Œ„ÌË !±Ïy”LžDm(¥—\êHÁ¦×¾¡oZûFhÃm[NCË_‚š¿Ä–.͔ÜêmØùOßêt”D§£Ó_v2èøA§ä=J(²ûÄÎÓ)®«…ò'ڝ~k/oêê¯ò/*Ws÷9—J,LŸÌõÔµÜܖÛñš™¬‹î2ªË’³Çzôà>¾ëÇ&z3›DìIRìùˆüJgiŸ5Åÿ s‹-±ªÚ(ŸM{I`+h/¡Þ™ôyÒÛl:ÌQXCæV6̇åÛ¼ëÍ1v¿KÞé=ÀöʼO²Çå'¼WØ †åE¬QNyùùcV!þ–Sf°7Yíë¥k-‡ñe^…ËŠRÏ8…oÎ|ºìá#å)Z¢2âƒOl ^‘ øRºÂ§˜1)ËåžÓüv"I-¾t=­ß¡Ò¿ÕËuñ\Ò÷By„± °!܏<$„
+Ǻ°a°‘Z7C eü—)ß'áBʜƝ¥ä!Õe^¤Äí¢ßv-n¦>"’¡è@'ìEÖ<ÙÈɜͱ' .©wæ”`QPYPd»3,[°½LáÃ$”šK§¢ŽW®Œþ‚äo߬r
+ègãW€Å›ôìcE)ȃRƒ«¨šƒ@äw@”Þ#½ê~`Á_€…ŸÒI…Þ¨ý ¨Û 4<4® )ï¡íaà†1 ™t—<´¶mÃ@ûÀR°Üú/è+bEèþè¡o¬Ü¬Ž}ÑOó‹Xû0ø<°ŽxXOsÜHßq˂"6÷·Ò<3¹"¶&€mãÀwºpá… .\¸pá… .\¸pá… .\üüƒ(6$!±Áƒë ˜×2L¿°ƒ•U¡p$«Æš8PW¿¨!Ù¸8ÕtÍÍ-7-imkïè\ê,[^|¤«V÷ÝÜ?€µƒX7´~ÃÆM¸·nÉàö­ÙëüÿQÊpˆêLZª‚ÔbV` ¶ã^ŒâìÁ>Œçó¤#ƚЅÁ/±‹Æöâá|>þ§¯ã×*Òuç&ÓXIW£š•f¬ÑU”=$…„E˼t'„º’Ì¡ÓL‹²D÷הä2’ï,É’ÇûW ô¦zöŒŽŒ]KF±tõ"EëßČ` qvà!’FèÞµ´þ×û´2ÏQªº‰ù
+Z‰‰fl¦eûÈ
+õiì÷(‡\F’è͵¸—[DÒ|ùO:»© Mv—Åk>”5éÙ«d‹dÏ' ¶]ßËQ¹ ýâù†Å¢}ûϓ?ükbv‡ YØ@ð\xó¿¾ô1ü
+
+endstream endobj
+
+xref
+0 73
+0000000000 65536 f
+0000000017 00000 n
+0000000047 00000 n
+0000000089 00000 n
+0000000148 00000 n
+0000000367 00000 n
+0000001481 00000 n
+0000001638 00000 n
+0000001723 00000 n
+0000001863 00000 n
+0000002404 00000 n
+0000002613 00000 n
+0000003096 00000 n
+0000003135 00000 n
+0000003160 00000 n
+0000157234 00000 n
+0000157436 00000 n
+0000157733 00000 n
+0000157758 00000 n
+0000157841 00000 n
+0000157866 00000 n
+0000157949 00000 n
+0000157974 00000 n
+0000158057 00000 n
+0000158082 00000 n
+0000158165 00000 n
+0000158190 00000 n
+0000158273 00000 n
+0000158298 00000 n
+0000158381 00000 n
+0000158406 00000 n
+0000158489 00000 n
+0000184240 00000 n
+0000200921 00000 n
+0000203601 00000 n
+0000203675 00000 n
+0000203868 00000 n
+0000203889 00000 n
+0000203989 00000 n
+0000204048 00000 n
+0000204107 00000 n
+0000204166 00000 n
+0000204225 00000 n
+0000204284 00000 n
+0000204343 00000 n
+0000204402 00000 n
+0000204461 00000 n
+0000204520 00000 n
+0000204579 00000 n
+0000204638 00000 n
+0000204697 00000 n
+0000204756 00000 n
+0000204815 00000 n
+0000204874 00000 n
+0000204933 00000 n
+0000204992 00000 n
+0000205051 00000 n
+0000205110 00000 n
+0000205169 00000 n
+0000205228 00000 n
+0000205287 00000 n
+0000205346 00000 n
+0000205405 00000 n
+0000205464 00000 n
+0000223571 00000 n
+0000223362 00000 n
+0000222881 00000 n
+0000206199 00000 n
+0000205997 00000 n
+0000205700 00000 n
+0000205641 00000 n
+0000205582 00000 n
+0000205523 00000 n
+trailer
+<</Size 73 /Info 4 0 R /Root 7 0 R /ID [(o‚B¢HÃ.*ÿG2ù)(]¼AØÊí%Øå²3ƒ—)]>>
+startxref
+248652
+%%EOF
/Modules/ARM/STM32F10xRxT/STM32F10xRxT_Top_Small.jpg
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SCH/STM32F10XRXT.BOM
0,0 → 1,58
STM32F10xRxT Revised: Wednesday, December 22, 2010
Revision:
 
 
 
 
 
 
 
Bill Of Materials February 2,2011 13:50:54 Page1
 
Quantity Reference Part
______________________________________________
 
2 C1,C3 10uF/6.3V
8 C2,C4,C6,C7,C8,C9,C10, 100nF
C11
1 C5 2.2uF/6.6V
2 C12,C13 22pF
2 C14,C15 10pF
1 C16 10nF
3 D1,D4,D5 1N4007SMD
3 D2,D3,D9 1N4148SMD
2 D6,D7 Y
1 D8 LED3mm
1 F1 0.75A
1 JF1 MicroMatch6
2 J1,J2 JUMP2X3
6 J3,J39,J65,J74,J75,J76 JUMP2
62 J4,J5,J6,J7,J8,J9,J10, JUMP2X1
J11,J12,J13,J14,J15,J16,
J18,J20,J21,J22,J23,J24,
J25,J26,J27,J28,J29,J31,
J33,J34,J35,J36,J37,J38,
J40,J41,J42,J43,J44,J45,
J46,J47,J48,J49,J50,J52,
J53,J54,J55,J56,J57,J58,
J59,J60,J61,J62,J63,J64,
J66,J67,J68,J70,J71,J72,
J73
1 J51 JUMP2X5
1 J69 USB_B_01
1 L1 10uH
1 L2 MI0805K400R-10
4 M1,M2,M3,M4 HOLE_M3
1 Q1 BS250SMD
7 R1,R5,R6,R8,R9,R10,R11 10k
3 R2,R3,R4 560
1 R7 1k
2 R12,R13 22
1 R14 100
1 R15 56k
1 R16 1k5
2 SW1,SW2 P-B1720
1 U1 LM1117MPX
1 U2 STM32F10xRxT
1 X1 #32768Hz
1 X2 8MHz
/Modules/ARM/STM32F10xRxT/SCH/STM32F10XRXT.DSN
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/SCH/STM32F10xRxT.pdf
0,0 → 1,895
+%âãÏÓ
+0000000016 00000 n
+0000000964 00000 n
+0000001267 00000 n
+0000001472 00000 n
+0000001618 00000 n
+0000001840 00000 n
+0000002335 00000 n
+0000002374 00000 n
+0000002396 00000 n
+0000006861 00000 n
+0000007075 00000 n
+0000007383 00000 n
+0000007405 00000 n
+0000011249 00000 n
+0000011271 00000 n
+0000015030 00000 n
+0000015052 00000 n
+0000019264 00000 n
+0000019286 00000 n
+0000023173 00000 n
+0000023195 00000 n
+0000027275 00000 n
+0000027297 00000 n
+0000031205 00000 n
+0000031227 00000 n
+0000035038 00000 n
+0000060116 00000 n
+0000076798 00000 n
+0000079475 00000 n
+0000001053 00000 n
+0000001246 00000 n
+stream
+stream
+H‰”WiÇý>¿b>’†Ùêû <#Šµ»Y2²ÁXØ+*–±’KŽœüú¼êkz8Õ ZVu¼®zUódûÑöÛ}Ïã¿ýöªý³^ô¿BúÜ Þ?ï_ýÈû×ݓïö¢ÿ×Gl¿í;Þ{©Yý»Îxɼ.òC‘9B@äõ—cÜ÷^8 ë™ÓýÊ Îœì;vûî ¹rÿÆéßÇû÷]Ü ‚q‡Ìâ<tÇÓoºÍ¡{r8Hœ<¼øÆÖ*ÿ¥){ï™4Üô‡w]
+NüRg€ÚT dg`ÂÓLYlaÊK¦"705bó=UæÑtÑQ˜5tN‚/aþêTU½á%ÖÛ;Ãn55Î5eÒ%bx`âÌ£¬§$’ \ö(ÙęGY×GÑJ1yæYÊ8Cgì€hÛç99YŸ©ÈÍ3¥áP—áPoú¼E¡Ñyéëȱ¸¹þáé-¹«¨dŠñp‡´Z´º*Ë+˜âFª¸ûì°þŽv1 9ôšàҝëëÃ÷×ë]Òg@³†f>8< ë«õ÷×ùâ
+Ûy¹º XDÀ÷ºuûtÿ4ùÊQB#„,Zmÿs¿IÚЃÈÊÒ«Z”£Š.&UŽóö°Ï3ÁUº¾;ÜÖ5”¤µÃKZ
+Mö ›×
+òQ-ëïïŽï?õW¿“¬+Kù¹@Ô1àÃWP°ûéÓñ/˕6 'û_ŽÇOq傸˜¾”„fxš«ƒ§š1’ ¯ÛˆRøѾŽÕe<ªÔ û‚Úë°íÚ¾v³ííSíñm§Ï6”MT§¤•ÐUyÚ.·ó6âñ6}âE9MLj¦w–x/§é‡7±*•¬ðMÃ%S©ÒÓ\ÝîcŠæœÁw*Æ]ËSŽÆLxµ¸Y‡»ÃîøÅˈ/—æ½ÂtܙrsäÅ~·NÙ£™ v”=7k!ïv7“bÁº¸Û=åfQÀ•º5öÓöFß=»:dW p%Q ÒÅ[_TÕu°@ÒR
+dQ¢pœð:ˆiœy·fq½6ý—#9D9HχV­Ë®@«szˆÍf­[¡cp_>ãlóÊøA׋Ý.ë:“H7ëb¬rî㵆`á0êrÎÎ9mÔԈÌà„ε~³¶C˜h´£dEq¶oÁGÃjIW•®¶oµµ§`Í_Ö£«Ãš vUª>õ)N4WúIzU<çw©ž­øáÍü#žx)œO76K %˜Dxɝ¡†Çp«)k3_ü%çLÎä!M½bJ‹>®ðQÚLwäã([FŒ‰NÚw9Q†Ì' äÈ$nT|B‚çÅf½ @3ÖWÀŸR_ÅÁyóÔî¥ÏÏ»ÍæÞAÄ
+ɸ».b‚s&omÓØ ¬5Ø°¤há©f&çñæ+E3£¡Â/Q„Áçú+L~NÚ¶îRŽ"i*£¡T¹œ½»]îxhÀÞàÃõ4aÏ%²]à5CK£ŽwJR;V$¾zY3kÌïP®•4£1µ}z6L;>~J ÛЁ¿Í$C(˜‘x0¡Xçqró|™«gê–¡© ?pýHQìPu—†”ŸoÞC`µ:ò ± Ә7bÔÑJ§Ï ³a™­pÔÏ]/ÃDËÙ¡g(¡Ðq“d„Såh§l9™ ¬eóM!n|OÍKi©z²ªÜ3¥‡Mn`­ï&}ßaÈv˜IOÛ脫1Ÿ§±t¿½êR·—ƒ«£OV‰QÞVèK’×¢J_¢Ø»ïŠŒ?
+»é&>¤¤6 ÷è@ëaé^ïe¡(Mb¶˜¯eoF®Þw¿tÊÐGÝՊœ¯ªH|83ªãÓ#Ð)|…æQ×}ę“¢Ǚàâ¤"’~$eÿ¹ë`*‹
+ Œ•£ú²"w¾—-´<Ö9Í
+Îú4Í
+ªZUÊH f’h‘ÍTp4nWâ-rŠcHj@wb ^4f³B¼*$¦Èj“Pˆ·nA–{Y(J³˜,–kɛ‘«ñÆ»®o'^,1Â'óìh”­ì« A3pP‘§$„ÏDÃBZYïÆÙÍ1"Ò<BHÀƒª0°—…‡N„À0j)øë’]О€0$šXJUェ.¨ÈÔõ¶d6ŠY{ñ˜œ3/ëùç†ÛU,ÚëB²^oßF¾ßwÏ$»fÇð‡éØçZ_:Ñtª,Ït*ŒX¡mšm*È·JB¤´ÈS¥’ƒL£3Ol]3í¦¥Eži¨Z×*–¦Ã™êÄ8ߤTg‘Sý çâ›ÉÆ+Õ)œI•œo‚´J%¡Tgݤ**÷²P”f1Y,ג7#W‡ê,wßu#UW§ 
+ýÿ-iHÃ]
+ã€Ùº¾1߇LJeŽ3E
+âØÛ&œ¤R‰&£7Fš–BÜR8­eÕ5ËÙàFîn®ÎÙ%ò¯’¹¢FÌì÷–Ї“÷¿~ÿó-Zõ–§êóÔ£¢a¥©t¶ó’¦Æ÷ß·ñµ6è;_|Í/dƒ±áþùõmžr}ۖø¦æ I•ê?dŒ³FŒd·ƒ–Ô”‡WOÃFV&‹¸è#ŠOä{ô`‹JÀÛ5Q:ˀo;XÃ_ ÄA‚ NWŽÇ"/3x¡1xsr¼H¼ 9â_þè¬Kb×kÄ<6êv`×ÄÞùx½ÁüpƒBUÚ_™B!>ðÌðtr'.¨¯x;š¥JEGÃS7 h9ó®>¶’Ù!¾F¡AnÄ:Êi¯áLÜ4ØÖîË°ö E(ÆfÅ3$‚1CDšµÖ4´þ ¼lR0oXÇXÅáú+\÷XéÍЃߝÁØ.±Çß±/ªÕ_ªš4ØØ»>h#´áʗø8C½l›óçO×÷„ɇŒ§‘/%ç¨ÄùH¢üÒñNàWNWÏ'ŽtÉx°©oËCŠBø:ZÔnðÍ—Qm!Ëñr+&KDb†Ó®+ ¯“¿nz{28yä
+stream
+H‰Œ—K·€ïó+ú¸°\¾Ù<jflÄN¤U4£Ä€aÈ €aÌê`]üóSd=HövDŸfªXõ±H«‹‡ ­ò~ñaUڙå~¸Ž×ƒ^¢rë—Gø‹^|öJƒ™÷*–ëËáQ+ü½Þ»7×ßÁëÑ)ç´]®gÊÀߞÿñݯ8úÝõ`€¤—ËéÁ§A­0íË¡‹#Œ£ØšjírPfqk¬c/ ;¼(\¶Ê1(Ÿ;Ñ© ìÛAð“Ê8yeªˆp”ŠuT1vÃIeÛ9“Øà¤àÉɛCë#¿~ãµ@ )õk!Ç
+?Át¢V9 kÉÊån-«2¹M‡R·¦XÙÅN
+ž½%´>rYKÿ4E¤S$…‡Óu¡· J9ç–bë^¿lÝïÁ¢Ïá 풌U©ÆgœRSÜQ±.I'e‚X€Â$ŠÏ«â`Påíx›ÂG•»ö^D• Þ§‡ÓJ—‚6®^¢£õ—ï_ÝaÃ}?é¸PˆÊe•ý6¬8ÄÕöÉS=ìj16`•E¾
+”Ðåëõ"
+Yå±~©F¢ttžJ• I1a«í÷¢µòXª‰ò„ˆƒ‘(}| JՐ¨˜1ëÛ`Ì!i¹ã¦À±bŒ¯
+œ“JT©IŠ _#SÒh¥J%LRL˜ð0€~ó0聨˜ë»`üXlÞ“f}ŒÈͳ !Yñm$½
+oe]¹^´²Ð«C³ ‰ûõöåðõÍÐøR‰×´\χ‡Ï¿¾CûGÈ0CÚ˵׷ ß]¯"€½!{h5 |c›ZÃa°Úí[S°Ëð¡ãI÷Р¶2=ngP3rËitýðér}µ¶ãóóU3ïã;ýzƏïL·OןvVöñ{úÔ4g¿gö,c›&í9­{N2{ÖFCD;#æéóåx~ߦ3¶j>îrÜӏ×÷—]‡¡Óßw½ (Cz‡%ÝC1
+9òØXk6Ž‰·rJ§ïޑ3M]ÞÂàЮ?¹ídݘ͍³uÞ{™y4;W´^Žÿh0•ÏÐì”c59Ÿöîé݇Óތ§½ O{÷à´wNíœöîÁioSO™6-¿Ù´“Ù_D·ŠÝ;áÆAI
+|,âbB䷆5åó`  zw°*ûA1¸Üÿy ^A­Å(¨’°ãËk„—X˜úì,À¥xµF€2Dpå¡Z ¨4Ì3¤)Z"”ÏXπ5µI¢(6‹µ¥ËeEaÀ.aàB:Z*îX†,Å—v@¤ÒVí Únɦ¯ÕâRœ6¬R}VÚu³„R[:8àÁ±^DáW•S¿eã¹Äs©6ÃÍ.¤²ÈEÂ\ˆƒO·åv`Ù«lp4I<FñVgòvOkçLbc‹§&oŽkû†™,‰KK±õI"> ƎØDš‘{S¼L—õ€¢[.$-ÇÇpQàä¾ßå1òºš½°œ0ôÇÆy¨2ؖzк¾‡ò7֙à–VK~~8^lЗ÷oàNćó›_®?–ÂbŠ;–/×!oÇÂÐ2;EÌp9ð҂…†ÍxU)֎qé
+˜É8<¶ Õì4ðì‚rÅ
+‘ËZþ¥)p½wV”¨ ½QÊ9·Ìë\÷úeë~ÿ }Þ¸`ËfÁ¬Á,”YYvPDáÚFHJX¬H Z‡²<Q”«¶°kôõ;ÄdÁ®³ë†C‰J|I4+pft¥ †Ë&ËTŽ¶PBA…Ä ‡•;öÅõëXìÙ;¤zL'Q"é8SàgMN»@‘‘ób0top-({ú̐ !»n‚ábK6…>Ê5Sô¼OFÇâÇb[’˜J/@²É¾T.:*‘ø$EQš]) ˜,I¯xWˆÂj]Š99‹ÄlQÐÔèËaõAã]¤ÉœÜ4
+ó²ÅAuH:HÖUÄ<€¥9,Åá`©=NÁÒz+6†ß^Ñcº+­ßvdõȝqŠÑìÛ¸hxJÒvØøI¡w¨ê3ï ö} Q;LyŒó/ŒÆm‰žRIa×°ùG%e>ª¿÷ßTÆîíqZظPÈ«ÔxÕ&UY!«'dŒÆx 6TûÆ6*|Œ¡Z8rÒ9IiìÁŽûd…¾6D9ß%G‘6KC˵¼6ñ„XñBA‡uÞÞìø'$µ<IºOÕà¢0¥jqxªÞJG)OÕàĆT<tèö±ÝCpª¶S5¢¿H+íÆ·w/åd5¯Ïsò¬¦LrF6§’Óќ«]eàV¹¼`>VËÐ\Œæ2ÔмO<y/u½9¯֋åÔ/!s«d>Hf’åPÆåªDØWe
+stream
+H‰ŒWM7½÷¯èãĀµ%•êëšLrÖý b`±j|ñÿ–ß#©žöNÀ§I‰ä£ÄÒ#/_/ù:É¿¯¿}¹ÌuIÛ~]kIe¾¾¹|¤9_Ï׿^š§Ü}ÕéHå:ïkږ,{ë´¥µš¢NkªM\R=‚8§C\}»˜¢¤ykë°Î)wQ«$»ó”¶Õ—sISqcŠæœ
+ZDn¹¸û7Wh¾'u’Ó[âxi÷ì5c»~Öo÷æç;bݔ©¦5ÔM™æ4yݔ)§ÝëÆD^­)ôêÍZ ƒÎY7En&¯ayKµcˆî
+‡5¡Eäí¬¡±º!(ˆWg"¯ÖrÑ«·\ôæŽuch¸ ¬4V18‡‚ÁÕÚ Eä–K¬S°n ðºáŽ‡uc»Ywæç;†º™—´î×, ®º»ép…ø›§v~Í ®C}GÖ÷>TÑLö9ì>4
+Ó¯7µ&9©õúYþ®‚±ä­=êyZ®··ËË¿sýåöÏåöéò’§©ýüýh.I<d©¾EŠPW”œÓwD0á€V)òrÝÄ®gYZPqªb¿nۖ¶l;D!w>kúK‘²ˆº|¿î!Ꚏá'‡SjZȶ¦ÂÃù-çp8ßÿx<«b±ÆüÚñÈÕÔ{4ëǏgž÷ö*ËíHµ5n›·4í”g¹÷]¤õH’¸I[ZúÇdŠ%Ǖ¦kí÷BÏewäQ¶åšS]͖’¹¦B#«)AEÈí#µPLÙ ¨Âp
+v<nj¸ÛZ–Ñü|bÇð¸uËS[ärv}©÷ÞQ!Õ!=bÜYjòˆÞ~|ûnÞäxŽ-n6gíX}Ãyoq^þþD#ùÉÁIےÿÏ[-AŽŽk^ô©n¸ä—´a{y=ÚS=]?7“Û«¼à_¤:ö¯½¾Å{Ðo™#eDz-`â±<èrûnCç(e“C瘗FÖ¼Q´æŽ
+4´FkçÖ9–I»f,—?lÍ9NkB‹È{·¥ï†í°²y£hÍsAóÇ\Ð"œuŽDƒeb…1DwN‚ÃÚ Eä–ËÐ9Ra£*B爏;Gp4?ŸØ12Nk‰Ì/máj$[öÖS‘)=SæWSc~õìÌ?Ï)ÇΠ¶®ÐŒ!yWšµ%÷GÐJ—æÜ0`X"ýR4z†Â¸_­ûÕ»s?àغb5k@÷Î
+ZDn¹Ä‡ÆÖ¨"tØñ¸ ànãøÑü|bÇ8¢Êx Jj¬‚ÒqÔ8‚¢qàZƒàÜJ>¸9T\AQtçP0x'7"jœ €†,¬äŠÆ!ÌÃ\À@gE4\V«œCÁà5ÞñˆÜrŠ
+Àõ!WU`%EcOÿ
+1üÉUJü:Ôó˂«„5¯@qŽ=ž°
+vú*êͨîL=Ú}*V®µ$hÔӟJ
+­&%`jhS™ GÄòÑX°N¤0†è¾©`hµ6\lf²”kœŽ ðé¨+ât¤;~2a·Ï>ƒùùĎa:>:BÉa«9Ì µö&Õ&ˆ>À@ÁùÖ~ÖPEm÷ë¨Hoa²¢èΡ`ð=ÖɈ¼Oªñáh8ƒ«M(}€A.œo ‡Ÿ5ÔQȅËÀJcƒs(|•2"·\ÖP7¦°éHa:ŽÇÓwÛì3šŸOìêæXÛé%aÿm§\Ãbä`¹ÃZh
+ÀûC•SÐðíV2EgŽ˅¼ƒ€ÆKÄuEKã.ß*3´š°8sYjx\La¤¤Š@JØñ˜”¸Û(g4?ŸØëF[ð¹ý™Ñï&²éöeÈríe(Á6ÐÕÔ߇·;[6á\?ïöŸ—¿?ÑDž˜i‹.¦´f›WÞO)¥³jõpNyísÊgٖ%âg©Ù<—ëíõò’¿Ô\÷¯½¾dz9äí PÍNÆîÕO&¿*Ê"ŸBü8Ë"¬œeÉ=²/Ecg*ÀÞ´·Ó»qÿ²h‰q}M{0VÉ}«ÌÐK¬Î;àýíƒÊ©hȯÀJö¥hìÌ\ÀÞÌÜ΀ÆýÄuEKã.ß*3ô¿£;àšK_þ›+ŒùU˜;3?w¯æç;bÝèSÿGyµdG °}OÒÕ¼!$„\¡×èvî¿®À’m:óúY
+°-Ëï×ì3¨ô@aå`ìçå{uÊךÏá˪QûoçSuîÚޙ]\3•~®N»ñëꬳ: zoïÿªÎ½®o¨ù—ñߖ¾Ìsu"›¶–ôU‡jp%ƒT8\ã¸"6}dfÒNtš¤ÕýÖ·¤­ 5’.#
+stream
+H‰ŒˎÇí>_ÑGÉÀVºÞU‡\,EHlË0¤E.AÉ"€÷ȆcÿÈâ£XÓ³Za.CßÍç%eïJØb®V¿—¿íðûøæû ?¦½»×‰.f¤~™âã¥ù!/´à|Ûb+®f¤mÚjw ÁìR7`t=úí颈0´)·w~€,@ ƚÌ{6¬ÙÊ+&6i5ùéò£zÁ!›^0B¬ìÁeoÀÝõ¼x1ëƋæ|7
+ 4^È{6¬ÙÊ+e&1i5Y¼Sìu"ÈÓCò)'ÅÝ\QjɄöã (l®ø=»–6ªó©½÷.OÄ1©m>þ‚àl&ŠäbY(q¢˜ZÂîöbµìÕÚG˜QÆî|QR4WP‹媈ÐÆ·@¿¾~׊ƒh—í¡ J!¬hÏÛãõòêM|ýø_ |€„ÝcÛß^^ùýwŽ¿ãÓ_MÄ{s-XÓ׈aðo«sæÙF;—ÊVjt!!ƒ¥ºLeÐd„‹§ç<n™‘X eµVòýÐ$HJPPÊsl>øø ›oOQ)³¤ÔÝ¥è§+ —˜ñsÎw±OÞmT` DŠ)/›jr½(â Ä-Áæ¡&k4ïj 17Eªb¡,"8à€öTXÁ\õ3Ì;f×0Œ#ø]À`=døv!.q|ÿ·½íùÛ´ïüNqÆßÿž>] FwPdsò‡7_oï~ùå÷_ûéÓï۟·È~úlh-£
+k¶rÄJÅm6i5ÙL D%oú7FªÙ_t6K†´øÌÀ(P€Ž×æãÅw›XUe«`|¦«€¹»02­Á§ ¦ð㻂Ç-7R7•Ù¾#û~ùA0ðQ¦êå2´c,ªWU™)Â\ögšY…O䫟Ž1|\ºÇo6ßÅVy_š¤@¶ËWÊc<"åŒóDö eIRmPÊM˕J—å+A–ù¹|¥³y23¤²fÕÂ*†-†c*
+JW0±†b+oC
+ʪ¤¾Ð¥¾Ð.¤
+eSƒø­ef‚¦l†Y5³ªa‹áâK±‹˜"dcÄ\Ą♥©çJ¾°_@±.b@ÖFC í‚è…'Rtž©¸‰Ô‰˜ò0÷½ù,O©…¢ޟnXŽË¿¿»ŒÑˆ‹Â{UéØrjv1Þ­Ë·cŒ=$h·1¯{Ø÷0ëÇ÷oOEÊk–1Ƙv𚶧¥;Á{XªXás¡È'»q Ä桵¤I0ÞËÍY#Šè³ˆE#ž‹^†nD5Eï°–•×&wyåίÿùøÍœŒ{H3û ŒC„€¦EcEÓ»t´Õž0å̹9cn9‚æG°Ü€Ä)×! ÖëLn溄‚ÞÛdPe ‚U ·Øµ˜Mã”PæŒöèÉ6lÕ{Ž yë‘'r’'r!².½ Å~K™™Á)[¬š¹Õ®Ålñ$†Íž’Œ˜§ä@ØS’(ž9%™zŠ ûñKQňíÔDìㄛ9ˆ[Ï¢:K Ä,*ƒXt¼TT>Ž£ÍÔÔ¸¿º¼
+—d IgÈ#ÐÍçè©ü˜Y@.VNÌjÙb9NAÁH¡ !æ0BŒÅ3Ôލ3pHúé ̗b¨ÎȳË̪pFˆrbVˡ3žcߓa†í5ÚT
+išJñùý4Koíìf?ý¦žûWNÙW{B³ö…µ'Ü[ÐG?Üw—ÌôðúŒÂÁ0Ù*õ÷«"ŠŽç W9 l5TÏlïà/,VGe–Q™ËÏçÕ¼DñpîÅNšaœ!„NvAcN·P…Aò<]*Èß»9…*È÷•“àúDܜB¸®”³8%ï³EÇ8„è¾0$…EHÂÕ¤VX⠀ºXÚ õp±¶ ù<ìƒ#ËvL¹,4Èáù‹”TcÆõa"ð^;)ÁÈ+C*Æﰅ-Rîæø—Q2´xÿª«§ÌèÐߓ‰ÚÅcÜp7_1ÜùŠ(
+£{\†–´¥¡5ã'+wiÜò0½òcu{º0 á®ycƷ荄Òÿ§‹yŠ"?HU MuJ CƒðùщY¦ç¶L` ž®v#¬:í˜bvC3U‡/cwŸþÕÁ€ê€t²*FòŠŠêJW óQ!0ÍcZAfÑ3­,`_¹U|wgûý¿žRå—-AOڇÕK܁±¥wóNN޴Қ±e ‰!ì
+n ™O„Œ‡U¯T}ÇK£QE…»/Y
+Fœ)Dëdsö^«E.h€5n¶o|½,„_ߝzlêªqÆø†@ïªa5¤Ý¯ÐÇjA@¥…ËdSDMÁ ©bÀ8–}è#‚ãPn?&½J'É¡í˜çŽmf238…3B”³X¶X>z£À¦Z­3ŒcáÁåTÁ}äq¦Ù¤Î´q¼¨ÂÆ·ŒØ#Ïl¬0h„3B”fµl±\œ™Ú®
+“»Ãi—³…ßYÂM·eZºÙ®7¼Ç‹ïËOË9º†ü^GkfÄAˆ¦õªèáÉîԖ‚'
+Õf-FÉ3G-³¦[–ÍåM•Zòûþé\L¸«oV÷^uCZX ™±Éí1çÐ8e'Bo[ëCšaPº6O2QäÚ´ˆE #ž ®Ñ-±d½M§9…f욛ï;·<†§7ë¥*ð´ãÔ!œÅô_gÿ…RïKÿ…L¤¸HwŒ8Q¨
+î¿¢ã™þ O)ããÜv=Ür¸í~¶O·Œ—³[“šµÈÔ¤¡‡!ù¼K.*|\6Ÿ:÷iA”}Ô¬ž¡–‚'Š©Íڌ–Ï}f‰PºwÜ/¯±Š­ÆуËiµ “ÔØd¦œ2{3Áÿ¯–;ŽºŸ¯¸Ë;†ét=úµML1ã˜$`¼É$YÄ=YĘ@¾>G¥gÝîÁæ©%•Téœ,Îá76»dƒæ*rW{qUÔ/‘
+a c#«’œ°,ë²£æ3n}]W2J ™öÖ4™«hÈ]ŠìÅ[q¿Dw^ é/h©-àĝ°¬KËhb]âZKª‘¨ÂH(Œˆ|N
+3¹4¶Aà•líLµììÖb1T¢ß%Suf1Ä….ÍޖW—¶VR=þ“+¸Ú]ûåÔB¢ôðƬ·¶ÕO·îûWXtwCh¤‚VÙnXÁà]\±³âBm‹ç¬Èô½ewŒ
+jt[´èC¸â¹¶[ðN«š)ÄYŽ¤*}<<­21 “Æõä
++‹hÏ[grŠœ!QÎ`<<Çð,†ÜE0X/2c~v3ºÀA]Ȍô{¡ŒŒkˆäTDÂØWC̗Q¶,fŒAr\.i
+hÉ =Ë
+ÉÚ©ˆ(”/dÅN̺´µ’”;¾
+stream
+9
+Yë\H=ç(ôÿ‰LÕ³;íLO‚x$HÞrIa´{ŠGˆ=Þs)!
+<Î0¬¡'ƒßo¹ôN·~†Zœ5` =«:9¤1×Õ:–Pëöøýöû¢Co7‚€tÓrß0žáŒ Tw:±…ÃT¸Ó±uÐ¥5àö®‹®ÖÆíÂ]Ó9CÓý+›šÂ¹Sý¢ ‚Çí·ÛŸ¿ÝŽ{ ùùùm÷ãžs=Žzÿövûô5Ïßþ}ûë·[ãþÛ/w#œç3Ÿ
+ÉÉ3žl‘¸ÁÆDFSNl8x„š}UÛ%­«î>½î<l}Q5c%¾}+fhl‰]ˆk.e^gST¢æ‹…‚"·±W:z1ùb1åRvÊjüx¹~¹ÄäþO»RÊÑçw\Ž6ÇSœ˜!ž§ ÖiÓ•ÇV(EnªÞörLó† -‘¹¦@#Ö¬åÕðŠ•bLT`4õ¸ ò4)ÀaÓ•çV(äÂe¥1y›s
+œ»@jž¹åÒ\©˜€¥BK…ø‡¥bÊ(…«ñãåúuó²!®2¥=;M|´=Ä»!ðjì†@ÃÝù1–C†íô4Ž‡À9㦲‡@`—ÈÂ6ÿpÌ­…á.g©ç9Èâ”C‹î†Ú(¸_ÕÔ.ßåØÝÍçœYöò˜#ƒÙm× ²Ú’•£¼î2„²›™Lpû‘&ïFÀ}wªÀîVµ¶›w9w³r±e%jÆཝCÀàØRóÌ-—æïe
+ì^†ÀîeàßËT¶k÷býx­p)–|ÎÖÂ÷œ(gjÎý¼ÍuÞéYµ åBYÍÄiÂfWló®PÔË!ÝŖËz͘МS€à0&³ óµÓáñ¹“áódåiW£ƒò¹ÖK2Òj†Kæ q¸€
+½¸õêL«÷»‚ˆ”®”×üCѹ.A—…
+LC¨å‹
+žyÈ£ ÏÙ<ŒúրÀ4HÌ4(pJÌi¨`k€ØրÀ4~<ëå9e—ëøüµÆwÃIÛ(ìN¤Äü㒕ytàÉr,§ÿýþ‡ ˆCgr__Ïé¼ò.?•ì}â 6ã]!2֛Ôþ”Ÿ\nš×Óáҳ䣍G½Ÿ»J?bÉÆìiÖ'ŸFó©À^ùô<›ùԂs<í[ù˜ç깞fréh^ªü…KÏò¤Kýf¹¿×Y¢yšãÉç¦yýÔ^ùô<ã§ûq“âú=%ù§÷$Í1¤XØ°¯Vj°®>ûýf‚ržë°–ã‚ê\‘h§cî°-§8[¾šs
+I®¡gŸ äšK(ÝÁFô¹ä¸š«Y!V ´sá2¸Ò˜ÐœS€à´&5Ï|å2õϵcë?ÃS˜ºSþYY$™IJ‚×C•F¶šâ×^ßµßéõlOlÎâé@ãBç,>»ê²\Ûò˜èRÔ¹ÏF&ƒ„ÐÎ=ζÖå½4çP¢ªÎ¡Hìq§é)óœ½ápj×PN·Þæ…cÆ@Û7­¶¤åI¯9ÁrHÚãIFÆTÆÂìà±j`g"ƒÉXáÔº÷UÒô¸S±uåjÖ ¾½CÀèØr»p·tT#WM«t܀@¦ÄTÂd„Cvw6•¥­wïN­¯|ɤҤ¼[GŤRgN¥Ìoµµul†xª&X‡NÓ¦Ǎ“ÊJsËc¢f ´]C€ÈjKVŽòú¨ŠûkLT`4åÀ†ƒòqfŸF=×'E몛ç@;[V¢f ÞÛ9 Ž] 5ÏÜrQ…¢7,
+Äqö
+Š·ÍKjaA5}3†X«éÉéÀâLe³rnÆ¿™­Û=a÷‹–­ãÈpא1·ï|»‹=_ŽÇӎåȗ"£w ,˜Ü>‡}\J­ƒ=n´IêÈÕ!ªÆqµïÇ-¿Üzµ†üÏïX93»L˜æ3êkî0»^Þä'¦-_>¾õgÐú÷ûãÊ#©kØÒ´Åó“@NÝgI×<I
+‡|µÁøHMQñc®d”O%@iÊhÓ4‡ƒ Žhb<²ÌW9†ùCªQ¾
+wÈW›ŒO@a“pî¥Ed1‡A>ù°ŸC>'â§àóåøýQ‘±´¥ÑhoÍI6é­+¦M6HÇù$‡„$³CŠ8a‹<¯£þ4»^¤áÈBhDï¡­Û1Q©ëCʛ4Ý*+ìKNÓ¾Ô!¢jê$Ì (Θ:Q+²%«¨NewðÏúøÃrð‡C;
+stream
+}ï_ѐ—±ajo}ݺõ{›°î„…eYÈdÃîäa÷!_•t¤Òíéuƒ{Žª¤:*骤Ó/§Ükˆëy]s(1ž_¦ „­Æón‚ÒCöj [>Ÿây¡Ÿßš›SHÙmåýîúçÓ°ÅVíaKç¼­¡U>¹n!­&ÈÄ`°†ÒÌ¡“­ç“ RÈm¬C;†ÈÖÒö5†¼Íõ5…µLm…f]8]µ•Ûûóés§çКw¥ÛS¨ÑÁ%ôzp‡®ª;w¶»;P sëJڀӺ
+MÀÅRUQIÕ²UÚÑ`ÕYzGƒµY•6d¶U€£EWiyÒÜréaZkŒŒ©”;ƒZU€r©Ú(¦j݊­ÒÑupUm¥nÖU §ã"”ہ»¹³ùÑC6z@`£ðíÑC7ëhqPÞï®f]C÷“Å/—ÙÝÃè{À9@ ³´u²ãsðØFær-9eÀi=ÚJÍ3çkÉ;ÀF[{pµÆpðEø¢c…7§°ÑepUeÎ8z¸h5ÏÜ|™æ_¦À†¸¡;nºÛFŠ£úþ;C ϙ@Iz(Z1Ld¨I܀ª†¸ð9ª™9%`6#a褪k‹ü^™"šU,‡ª¦:°Õ‡Ž1´ìé V‚K(ͽ =:ú©ñ­@“^­hç}]‚ª¤f•¾ªô…Ёí|§Y"ï002ü…ÇFSš['")Ú«öÍåR(š—QX+=º}Î ô}Òn¢âž·(ãˆööTLJñ€¥Ñ毸‰Ó<ZG»jÞ
+šwŒ›M½E±kw\—Ñ‚(®TòL@­
+¶éêŠPC[#­¾
+Ì,0…&y¶#ԝ…øUeHZ®:_â°HfoñVëûð!¾jpµ-a®Ã~éië‡t½¿®>ëúñî¯ûw¯RJQ©ƒIãiOÁc¤¾áüëÏ´VF… ö\F‰J!¢Oxg<f:¿>pç¤ÝÞ°^x@ëh_Umº§Þëù1šAIKƒ K¾]·igOuÄq # óI ©Ö<Ddþäé%MxñŠ?à°±>¬óäª3ãÄÙ{•ÐÙâF§>Í£±8û„Óq99ëaœÞãW¶ç‹íÑöËÉÅC¡†ƒmk4jʈ–4hÀÔç¡(NŒu*í£ ç¡b<¦Š–T’(3 ã]ðÕò™zãRç*ÁlÆ۪،»u"Ã\Á-˜bäLq€Gùy©9Gª~q´ªT
+i•†3ò†VïUˆºŒ•j)}†µÞª '؇µ#ÿèܘ§äß>¿ûéÝOËëƑüŠr*–ø:^³ۈjª‡b963io\ð=ۜMÞ¶|SüÕ¬ãڜIܱ9¶ùZ—Q©+¤MΦ
+DgC0k‘m¦ÌÈn³(ïw×}?‘·8ó$7î\€sÛB*/CMp¬UyÀf-Iò–ø)²ÅÌ/4™aȹЧIw\¬£bD`%L5Š*@UÀ¦-=”…-
+EUUÆfZ8Zý1Ç^„euéaMhz(¾™¶á?*ïw×}zą‡µуGzc®øºaãa`làìžÆF錑Ûkc¶ëÃD¯N…ýô·'zkÜacݟu«´Se1AN¾žž
+Š÷Ò©;òÅ;~*ËÒ>|zÕ Œô'Ij?Ñ[:^ÈV^_Gªeê‡)VLs¹ÉèM[!Xy´2˜1y™ ñ`fڑ§6³1Ôej4ËæÖé”â´§uôth+·wÎcˆzædºÒíô5D·s§s×hîlÜáځ;ººª-ÐY‡@OmãvànîLû/S .ï*(K²
+$;`åê»ÔݝïûåZ}ÿŠ‡Q?ŽDKµ±Õ N¥n8aºð_&LQŸV»ßk¶8º¾_íç*…¾ŒæLŒ-_ø8i£‰Iµ[­úÃw<—·_úqT¥¹®ú£…ŠÝD’²r¸‰v}©)n4dÍÎ)6Ñ¥Ð`ÒíE4dý
+êÓ:z:.B¹¸»ªíš)X35SÀ·›)ݬÍÒAy¿»~Ýkû·žËÐ|O¹¯-à|!Ð×ÚxËÙ´=ôÒoÎEîFMU¡™VŽVms¬µçöO¼ð°gTXÚ# 8ax¡4¼ÀÎGÙû®<t,¡
+8M«GC[‰9Ö®çv»
+ÃP´Ÿ¯˜2°†õ²å:H"‹Áö)¶õRä÷CŠ—Ïcw:“©+ɒŽìê>¦ï´ˆÿ
+úàP(D¶"£w¢„ ‹PK†n/‡vŽYPiQ¹%¾@Ìa@ ‡%ìÛ@©Éû‡ñ#PöiΑ)é«Ftk|û9ØÁtðƒCÁي¨îX¹M­{œÐ«"UÓª«C{G¶j;h&—Ã%É\#<˜N€Ž"†£üˆ/!q•‹l˜^]Ú»d›¶ƒvŽ×s‡#æpDĔw­ éû-îãA¥ý2çµZ›R &`k„*£DrmCÖ†éŒ q@‚&Ãôâê@çÈViGå78C²3‚c.’nN
+­4!…Ä,ðòù1>`Vëå¢óõî2ðJ«_jÖmáuTZ2Si
+stream
+–i'$0ùP¸þOŠŠûøs¨ä© )<¨ ¨ÄÉ>ìÓ0eBDÎèSÁmÑ\éYW4™ˆh–‡¿Nˆ!!Ý¡VÑiíÊðÏUÏp‚ü„H­NjN¹ã!U‚œ#í+åB|¸@¾gèˆ'õjm³і„A´#ƒ¢£46
+GH 7ùsž!‘IÛ%¡DHìs¨Îél5
+Ë°Ãû]­SSFFDÎÇÛFŒp‰o;º £D8*Õ[Qâ½ú ¤BDÚ´`!±B„É9¨´éÞá&3â4p²JǦQÙjVGdaÖs°Á‚ÿԓô FD×[Zð–=Ò% ø½gA4•ˆXIµA4•xï¿M«J¯”Æ<{ÌGKÇ®"%ȍzx!8ܔ؀€ïí7"ÄÛ5‚e§<ÜyÓõ‡J åv\Là•·dÌ;Šv(ȇ‘°JþʘPÞl»¯}h¶‚ÃŽÕÍħ›>9¨›6:è¨N(nRð. %"ܕËâ-ôïü&¡ø©#Œùiuã#Îû>÷aÓd㍁Mwê&¸4Oª‡Ì'Œ'«Ç÷Ó©ä
+º®ì!J3.ðü~1‚î¨\ÿpã ®ùÑ0¿WŠÇ£#³aP!ôø~6V/â†TbÐ鬥ž»½Õ”(>hòà =ìåo-”ëô¼åyè[ȓ+Ã'DÅ?èQ¾\¤gûc¦Aã-@Ð&¾X%(þ­$*Ú6^'ûú‡a1@Œ”°I
+û IHÔ˘CG}t=‡ɇ _§½rõMWý¾7Á®]…ÇŽâO×)÷~ZÈiÕrì+ñ¹³ÊmDVÏ ]ª‹«eGòíqòÍi‹²È¸¬DƶJ*«¼š¾…øL¬âȋ>Ã=xâ"|ÒC<|Ç$Åït»\͇CP ämqª&£“U_î$ Ô)çå7,hpý±B)¾Â£†ŸŠé%TG¨$ŒðAB{}šÆ¸;\°pðùûëÓ¯ŽYc‰«Bp„è톄‹i{‰A„S»hx@@ €Î©™š`Í0¸‚„<p¨5ISúzÙ2³økæÓƶJv‚îM´BœÛ£à2$”@ 1 L”2h0 ¸VóyŽöW(¨Tá*
+8iO߃¾dþv‚áûûz:Æ%ôÿa±íëh\>Ôˆã¶YS¾ËCb‚Û|@BÃ?84ÁüSœâÌô3£–}†ªc¤=à»bûî! Å®añ«+¾+¶ïçŽI'y#ô3ßµñ³þ†‹ Àˆxkv)Šx'
+/ÉÁuB„Ä™¿ht€‡  £q\@‡h%§\.+L€Ä’ò
+ !PB
+ !B"
+õÜ6mø?Üñ”8=C:=?Ǹ#ÊdÀ)ÏXHè#
+$$A1Ÿ˜„0> dg áW’ô³1ÞÇú/Ø«!!eéYÑ/O•ø¹“Œ“
+D¶¶ÓƒG‡øå:¸xÐJ”wÊ ¦½ëâÉѤ€S)÷lI›’ÑQ"Rr
+Ó3µQ<í
+²Âpòð%~~å×óʯÿýú¯þûþ÷_z¦eMö(“
+ çÖT þüúRX¸ëªÂU«`?ñ³oƒ›º®àª5Y¥~ ¿¾þó/õ:?V¨8`X|ۛ+ S2Ão‚Ï6¿)r皝
+ÌoûƾÙ*ªQ ZãUîÈå&z^––‚z®X¼;÷çêˆÎk¾gjJµ›ó™N÷ SŠÌ}ÿÊ>úJE®×1[ՕêÑå/n¦Ÿ‰[P¬Nzb zœ| Ôpzl¡Wnö¦WoÁ¾Š“¶R‘ëU¬Vu¥ztùË[ÐCܨkƒªýt#:uà%ð´<‡r±ýúr"sX|õ“6CÕ.ðˆOø8;±Ta¨VÂLOðêòšwƒÎQÒYæéŠÒÑä„`æõNdî¾øákÐT :Òû\Wþ¹<2ébƒ®<1®«Õ3p›7¢#á ~;*÷êɍàƒÎÐß67€¥ÓzNj[®­¥ ‰¦YÓ,èïsµØ×ñ¤§ÄRƒ¦9°–µæú,Û ô5J]1SÞt”´±œ8ðxz‰AŒ}9±¸ŸØêgò›Ò´+<â4ã÷%ui«†v!ܺ¬vß.ߥ¾¿¶b?…Þ-֔5Ï6Ý¢⑭VM»ï§ÐÈð´øNpÆbE®[°™Ö¥îØå8o¦ösiÆ^¦äA½1µâ
+º='Ä[­¾ªrßJ¥ÆÕñs“LÙb…¡¼Y.ĸ¬v×Ðs­4žL ÒÊN±aB‘çó?Š€‘Vˆ¬ñò•P^4\ã÷|†Í(/…Q^BxyÉj/¯ËaÉÈî4zzûª»ICb\w=#Œu€Òaœ䋥?™jk_¯Ÿitj°Xa(wBŒëjõ ܖœY¾`mQGQŽ>qò FúÐòÐÕV<ª=Š‹¦»Œß[‚ÚRº[‚ÊÒ¥îØå¸lfaNÖ#oOÙù¤‚œÔ°¡aµÅôuedeɟ},2ôÙR…®:6m«Å¯u磵vÒ§ƒ>N(F‚Z›\ª
+”k?¶Úꧼí§ÒàX¡yÜP`C»n]V»oŸû‘¡ì²¼aÏ)Û‘>)7~øÙJú©6ì²!Ò¿ò˜è+¹^ÇÛGy÷èòKlΩ{Ð"1BKhÒmoD+lNš÷Ë×ÒQ3èß¹€|±¢ÐíÄÞ/_k~]~ë͸­sÛÕ¸ñ6­4é4h_
+áöRÂn·×¸iò¢©
+-G5 -Ç0 -ãx>×Ðb«íp?oCË!þÏv$×
+ð1$çéº÷ß~I¶èü]匧(ÒcëÑö2&˜ÝYÈÝÝÌöß®iŸ.ÉáÛKù®×JK…$šÀÒT%¸l[‚öЖŸe‹KX­³€AæP>1œd¼;—%•xwf%•@ݒJA† 6DfaëL*ûp'°à3LXͳ€Í‡™Ï؟¤òôu¹*©+ŠZÑ4a?ñþ
+Rr㙬<TI…«Œ"¢
+ª³°6&—SùÌø¨®û¦¶zN¯±ìgþ¶ùÛ«ÀoCd~9lßÕuÃhy./2a5Ï6'›“ÙØø°Î¨|"J,Öô¿a…°b„
+Ld+‚°{E”ȍ—¯Ïí8MXÝQÈÝoƒf§zu©Wäˆ}síÚ·¯tí›+×ËLáê~²Ÿw§Ç–#r˜å¬Ö(äÎ/9§ú ƒ´kýŽvÿ颴s³Œd* ,}™©°h\i·-Þë©.&a5F!÷½m¢ÏÀfTV¸œ­ŒŠ0¬ÈB-mËJžØJ“91&ûNv#W_+’L¢ì ¬]ÁÔDŸy?Fåð¸QaANäêQè؞æF%
+stream
+H‰ÜW;¶í:
+ÌÏ(n܁—õ³äéô‰ïüӇTU€_Ï ³]húþ©«^ïó§ßózßò§®v=ÕàºF†ïÕfùóû#C¹¯û¬ƒmpÀÚþþü÷??õ}®¶¿f×Hœ·ËÅñHe "²¥—Þ ÷ßçuçõy͔`x‡Á£ƒíÚ>ÚO>m•”L[÷U«Ú|óöz87@ŽØ{\{&† U‹õj+Q Ý5
+#6ÅÊ»'Ók¿î¼Þ¯Ù›0¼ÃàÑÁvmí8–¶®™¦Y¤”¿Á–†0vOî.ÙÚ{8£iïÕÓr¿‘ɂKËʑÌlÚ|fc†|Ëêõ¤KvPºcÀ¦”Òqd2{ʬ́c—0\m<"÷¤ü_¢ùXV>¸ý^lŸÓ­|èWö t£uáÓ_ÃÊ÷é÷DZiÙ¶8%"®aðȇìª>¢‘Ȩö§[õ;i¼«peèÓ­Ž,ˆ&C¹ÚŽ&²ù'\Žö¿Û5òr¿ÊJdÂpî'›Ê’ì“H±
+ˆ\ãå~ãúHMÐΡÛwSdm¨¥sÈý’›)2÷Y¾ýúsõ¼>­\(| #4©Ô•UŸD&Úý°*Ý,yÆ  ‰ä½^sì #­«cioŽÕÝù‡îìë”L®½ÄÈ"’G‡'xԑ%fÑÓºqÑ@Pf¿Ëpp_ýThÀÇ>
+‡T¸7€C"×­Uh(¼3$˜“u¢C¼û³±ØÂî1Ö!¬‰8ìX©?kR§€o`'wìçÿã*ÐÐïíPqh`>Î’KaD#‘*>êeÓǓT¯¶»¸°¡ʅI:ĄFùUkä„ìƒäîÁ$r¿ÄŒ:²è¯Þ<.Í6®úƸ$ŒhZ=¶;&`_X%¦¥Kû#^½FóFPÒ/c5ˀ°¤JÑGð' ;¢žf>aê´;2ߌî”Dßû¥$¬8<Í#y
+È]
+#ˆRñ‘øÙ÷§ºï;1·ö©çº*i֞™ìJrìM ;¨en¯¸‚î: +¶ßU}D§í¯öe´Šo¿`ÇÊ®bûçҔr&üaº¡³¥áçì¢ 6X<!¹$f4¥â#1•ŸfÃÞ]¢ü£À4›ýÚd3{‹òӊUû¡ò³Q*B*?¾z
+=†ëwë RãØj±ÝÀ³
+Ý@»H5¶áz>ÙĬ(sô dÿµA=­Î“µ˜DQɤ¢Þ< ë®sBσü¹{ø­k „ ®2éšsÂå†_’ÜGz„â—4dyÿ/{N“H
+D>Ž U½9#2 åS…p•"É
+¿ÄŒ
+V‹h¿Jø°[ö¤¡5;¼î4"ùD@ò å£3+·óB£bʳãÛ¥Z¨Xíæa5×nȾEäõ×Î5È#Mˆ>P<ˆùJåðoÕÍî™õ’Ñ0ü×ýZe°ÏÏ«ohmk~ JŽÚ9yg×óbÝ{eªö¿‘×­üôÄ& ïn@t²¥í£=÷æxäl±2°ÿê™9Ô3tž©³ñˆÝ»ùîµ±xºpP Ã5
+•HhiÆ´FæÂ(G¿K“…h"Å$r¿ÀŠ
+i.Ö>‡çÖEˆF»-A–3 ,Y@ð­‹!äë}}^ÅT•! l˜ Ï\ž}V.Ͼy“ðì[yyD4 †dh¥ïÊ%.‡
+lÁ)2Pù.¼C“
+PC2´Òwå2FÎ<®ŸY&dÊ{2:ؐæ³ÆƳۋ%6âV¡s 4T°Q4 HHF ÁuUØxóŽåø=¬Â˹ l(3Ùy(ñÈÞøñ°¼Ô]ñ–}­ñ9e`à™
+stream
+H‰\T xTÕþϽ÷̈́l’ (ox$BÁȖ†@2 @'d& I°šhd!8¬R¤¥ˆ)ð‚
+ã™ó
+U4ßr[+¬ÕÖÛ؂}òˆuap ˆá¸õvÚúÉlñÖã­n³™e>k¾¨—Y¥ÖœÏq
+a£fª…Úbm©í²ßí?ìÿ«ÿ¦•j-FÏÃÎþ5läÊö¡gÎá"iF‘ :9i½À0—–Óo©¶QG9Ié
+Úví­Õn)!Ç~Ú|;áöY?üKüký»ýMÖtä3tpº"³÷2Láó^Ë· ŸP8÷ÎA ”A#¸3“h
+M§jîäËTO[‚¹ï¤Ü¥Ïé:ç!ºs~L¤‰!bÃ3¢DL«ÄjÑ$>?J» “meG™ ‡Ê‰²DΒ5r­4å1ùyQ~/b°T¨êªº©x•¨†ªIj¶Ú¨.©KÚí¨ö-ÔVa[lk¶ýËþ„=Ã>ڞgŸh_ißkÿ4ÄÃÓù!öà÷¸ï¡órtÉ=X!ú¨XqBœàyž„b™+xRE-/R“è®UÛŠ4­*ž{ý±xS|/Ê\Nc0Eô¾ãÍÖA½Ë¿tõ!®©\Û ö\m §¹âº-» ¢?ÇüHöR‰ò(¾çÈ®6áï*”¢éšØ*GóTšN¹;åtz{„‹·Ó­e<Ç#é]Þ c)•~¤ÉSÔW~……xVœÆ5¾ÇKð*V¥X>T‹Kx‡oEOmš-Á֑þ"ʕO<DMjWןº“Ô:àeš(ëm×ÅÌF‹
+ø+Ñ@‹ü/ 
+ðÍ9K#´Ñ¢åXÉÂ'Έ1bíƒçËݎ£|Ë°“‰ íð©Ï1ƒ¬eÖßxº{ð†]Bü_s•ßq„aòúøGŠF+GVq½çgmµºR(ʬ©…Øb×àµ'ff;8sPÆ/Òè߯oÚã}R{÷Jy,9)1¡gGããºݜz×GîÒÙÝ©c‡‡Ú·‹jÚ&ÄnӔ„$—‘ãÑÍx©âaÒ´áe†÷>†Çԙ•ó Ž©{‚júƒš™¬9ùÿ43ïhfÞÓ¤(=éÉIºËÐÍãنÞLãó܌/Ï6
+⫂xãN'讘²lÝ$î2sæ”ù\žlvךed•„&'¡14ŒÑ0ÆÌh£ª‘¢3(ˆˆh׀FNÊtÙ.3ÖÈd`Ê8—·Øçvewv: ’“LÊ*2
+MC̶‰Adض,Ó £—ªÁR½1éoYs
+ð×®>ÈñÞåØâ¢n €æäÞ¨±ügÜLL4#bÏâ3å3‚tZrҜfaUQ:ÿ¸}ͽõ Háö;^ڜ‰B&Ìùyî;´ŽÂλ‘™ò_î«>8ªêŠŸ÷Þ}o„²–
+É&›HKø¨¥®Tjªµ”e"!,¤ÓÚÂĀ4I±Ð„Œ5ÉؘÑ;ÊÔi°­ôÏÌTÓiÕA;ÉëïÜ÷Þ²ûÂjÛšÙ_~÷œûuî¹çÜ{߬ò˜ZÉ5ÝN?È5§&Þ½2‘ÜNü”õǼÓâ¿1¾ )«¶/‰)>¥ú+V}aqFaQE(mU´ÒömaI’dÕ/Š×Ù¥XJ^HKU풚ªÉZåÆxcB£b"?Cõ¶Q)5JZ~ÌW¹Æú_>2=ý;u˜ïq/I׺ÙfƖÌJ–¿$'™7*ªÁ`\ƒ…%ÑèȤ:„š5áZ›ñTJOˋQ™™‰_‡Ù½ˆQž ÀeyÜñg©l1©aª].ÇGgÖì|tÑh~FZ~´2º¹ÃŒlÉHóeD;Õsê¹èÎU•Nàt˜]RcùËá«íÊ$…J+Ú2”Ú¢¶€R[\êôá; ¶$tFUÔ¼ÊåmSQêL#
+H­ÊZV²Æ*XäÕ+Û§vâk$"k…THyk‡BRçut
+míP-ÏÑ©Ð K:þã3&¯$”=2%˳ø*×ӲÁõ”ç£+§§ù¤&ñψ¶Šß6bêkôeQE~`­g2}K/¥²*ÔÚÅÐ&S@œ¢жòà.î‹öAàÏÀR ˜dëÖ›b–Ѷ“ûbŒ<Žä*ªðN¡ûõRó*æ;¬÷Ð=À1”›Å[tÒXL; G¿çñ±¶Û Ïa£…ê¡?Šú­Ð‡ 7¡¼ý²íòO¾ÕÀ€ýLŒsÀ^ïtí,-UæXK9Æ,j0Ç]à| mRÀ+€}JÕ*=f3êÁTù÷±XióŒ³õËÑo*äj”'Á<Hf¨§h±:žžÏÅúˬu=´×_ì·m
+ËÆÂD`Î_êb³<"Á67ª]X«åPR"õeÚ!¾H
+ÔXñj^‰Ççyz
+àR§1ÛwÃdßgöw7ð%éß¿“ߊ!úœrѼ.U.’O{1@΂œâøÓÙ'è õ®ýC¬Fæ?Ýz·ìÞ×ádõiڔ'âñð8-cˆåh¸eïyZÆ0^@Ý CeqbTÐmZۄœ>T6î¤é u*lÄ}s@\¾€3඲ÿhZ͐¹ ¨íø^âõ¹´Š‘à×ìW­ÁªwöÇÙ÷þÀ¾€x…Ö‚§ƒ‹ÁÇãÛ>/’b¾ÈŠ÷¸ÌgIŸ«Íµœ¸–ø®¹þ˜ÿO@î¼ô/þ¯çR±
+v~JrBª :`’±P¢J®ášptpL2*1‰’­DɍK4csFcV–cSą3ÿìZ¾†].sFcO²ÉË` HìC\°ð‚u¹›² ‚1pL#»Šë}\ï±÷ˆ½Kê@3èƒ` L{ÒÁÞáï›Br»0ö¤ƒ½Ÿõ6¤]u…]ÁÐÞÊÔ/Ž
+p™,*hföfÝdÙÅL¸E‰U² ìqcRÏ³ß ý{Mèß³ß
+ý:´z’½–ñ+$VŠz‚{Ðè:ԗ°_׸”\ÌÉÆ0=
+ª¿ºË]®z¨6IµSTKS-LµÕj¨ õj–3k*!ÔpŒ?WÐO4Eíc3IJⱃ¼rÂS¨Ê?âçºj¸¶9ï/^Ý[Í&pãþ† ò>0àšÀ2š@#hÀÙ zÀ8˜9`Dt> ¤²4ƒ°L£Î`dgaˆ/‹ÕÝÆ=6«
+WUŸCvD«¥™Úý´ÍŸó³zRYIq9ÍÎ,µ|fûü3±Ä,ì0 >üG
+"ŽèuÄaÅ\qf? ð80ûóqÇóq!܏¸®g±ˆ Y,"Î@yÜPº&ª©1îI‹˜´;pgÌd1¡ˆ©ÔȤˆ™¬ÔxŒÞ$Bd!~Y„ÐyD!2'B6Ü©+„œ9(z’èí9c»ZŒ±]ELä¿ýôµD"t¸1µ¥;ÑWè­Nô^ýù=Û<º¶9ڒâ]
+ê‰;MŽœ
+Òô°k¬ï~èšIEQH4îXv¿l4Æg6Í̪›#̇…ÅaéRÑå€ômµU]êlWW:7»7¯¹Ï¹oøo”Þ÷«+g R
+¯Ge4Hŏò÷‘ä/‚³ÐòeZ$Š#¿'ðüàEþ§iš=µXÇðòd² ».LTy}É(T›q“¡¢¸ÁRõÁFÒF֒m„'Cä+°Lî=Y ;øʃ³0—‰dcv"5¦»²:3cN°š‚Ó¢)4 Ný µuš7­Äëêjk€ú¶ ƒ.ÀŽEXß$^ú¢ž”LûÅÛ÷~uèå‡ñYã_}ð­÷ÿÞò`_ßÜäŠó¯\¸±ªý­Ã{Œ?ÿõvß²ãçŽî~v0¥9“/¦Äpë$pŠÏ´XýÍŒª1~àʈ¬¹TWP–+½Á¬ •ZDSMFîeäIQ†"{<ZÅÜ'Sžȝhl„E$ øe/ҋ͆ßW­X›§íÒøyz‹¾±”{ºøºÆ³²xƒ¶É³KÛãy­ô˜& !Î换jN^Â0.f°X0al¢J¤áÚUõòæ9Š|dµ5² Mͽ¾-´6DB&crh»´>j{S£(Èxü »íša¦qC¿oÁ«.‚‰+Üê±4þÙÉ)òQdž5K|kbŒ‘ÖI†gN*jÅ­F}1ó,8©þas
+!˜B€Àjž#ƒC1$åפ®€bB ”@@[„~$AÂ8ZEKiåÏ(%Òڈvh†Z+Z†þ0Xíl„¡$KϹ»‰ÁiwÞË»¹÷íž{î9ßw¾ƒŠ0"ƒfŽ-\iÖ
+õСt.åtðpÓvQ— JÕ`y˜™édR’k`
+¶»ËE%¸˜&9€Ë…ÅŒJÝÕÈ9Ã#©%š³°Gktü‹TBìç2^¥t-ˆÇ,w:‹§A?´,Vq31͸…j ;¬ÞeÞ²T©†dÅF!\Q#c}¾qóùіdbêXÏq¾þÆfév[ËËI_òNççmô+úÁ»ÈÀ,ÈÀ ‰bFR9Ø¡“Áf!r$è06«°Ð—c*òpÓç2:&vÇDQàH
+"ñô 'ˆEOˆã"’2ï{‹÷§/¿Ï¯ãë~ñ‹~‘¾þo»…{[T\‰²²þŽä]±¥o#Jj#WDgâéãð´}œƒA= 'Ñ,~Ó/èÌ/<ýÖ¿>c`‹¥7Ðw#‚Æ•h~`J`Jôªþe±ì(¦kȺZZ¡-s.×WºV·’-´EÚ¤­snÔ7¹¶ÿà=›áH9’m…ñaYEø¸ßŠ"|Ì|K'fˆè°Ý…tÀI7žrPG'«³‚Fmv<”x ótÒÇF‡sÊaýÈ}þþ–Æoû™¿uTKs°3Ey‰´oqá­4bÏŗ/#˪«i4Z:&-çú”™ŒÌhº¨añÕS§¿ª_Ò¼-yëâÅä­Onª_øüæÚº&Li±nÛúµûøàüWíþìòîڟåìzáä]Bééígè̅7Ì}ªycÏ݊ÖÊ7›ÖÜß×ËbNšÀŠo§ãí
+% × à–(VÁN!lq†cDC^R¯èt¼!ïÈçpÓãê®ts·;“TQ*d¤Ë€®‚b¥†"O¥« >ZÈhq0mL?YôÒûýÄ€M|[;í¢xzEÿ«÷ÚúŽ©¢†ì1ìÈs"µ|q`I¸.²*¼Æl o5w„O†¿
+¶ƒhú—6£Œ N :§íÓ-ò´Ê§WIç¥Ëo•¨ÔI©í¬ÒO«—uÞªSÿ7<êy•­U›T¦¾äùäÏ©,͂®]8Ëô…ÊcáDù(\ÍraAhÖæxŠd†ø6]]î®®f9õ„pO=ìœ1õ°ùýšÇ:$×Ôw¯^þÁ[M—£ÎÅO„–ÐÏá9<š§¨œ•|Ä»t¨÷õ=éõ×&Ë.‘OܞLO&'±úÊñg·mEñ
+x  rI(
+k\‚k‘ô¢ùw¨Übå¯ãç¡8N¸3Øåø=«—p±AýˆX+‹–EÊٓ¶R%éò4M‰éÊT؈'QÈH¶wR*‰Ët@vÐKBM&Q• b_·rV.3úbXñ19åû¯ê*U>A |È
+T¿¤Ñ'<N¯+œè>]ØÖ߇gÿeƯ¦w'Ÿ;ð•UC_K6­ÁdÊ˟$ÓßÄ#g;—ÄϜ>‰—ö??ðÃÚ%]-ŸYùäÚmÇ
+”Ô‹BBÕºµÑ$Bt
+]F’߆‡ë‘Àÿœg&7;ÿÍÎ¥Ñì\s,WéñìlO¶ÝS|›ÌÝ×r.ßÖљɏ¦r0Qq’ïð“Fcãí
+•Ì3n0‡t·:pÃmÚì‰b'¦çí¶N`v = pšõóђxqôPß+֔Yþ£‘ [ù7"¦‚Ùé|üàƒÔ{$ÈF·ôÔÝʒE3^¨j;úòÑã¸;Üóíæ¥+„+·"¿á «‹ ú¤9 Ѹà$„ŠÆ,U§Tk“åí1íiaµpJP–kï
+ïBbU‚·Æé{â+ÒÏŋTÒD<Y<)•Zõ'ë›- ú<Y?{Ú÷´¸‹lóýHŸ?ĞŸq¦Eà;S©iTD¦uUM¥š$ˆ¢-iAI‚; “ ª]Ö4$E§ˆjÑaŠ So­„»¥=Òé¬$J3){¦×*ؾG”²Úñèöÿڌ®ÜmF=LÆ14<“›<YEÊ1úärì‚*Ȅ¼É„¼J^C¡VŽæ@¶‡A¶Ç@¶3U}º©m¯LšŸâ7—û<>–¯ËN)²eúê©eZõ*³4 ¸Üïm㺉¿ÅŽO­€¼‹dEvUIJ@Ž3B`†²2K«îÏҊ`Vt‚Y–æý)0K²™»¯6öÁ¸£3ŸAlp`èÇI ¿Šoã9•‘ÍäåÛhäÚe ÿrjä·6‘  ¢‹q, FB‹&P%Dm6‘ŽW!ÂC·þkÈ%ù¹t!ïö|—¢Épïm éG½ð›’½à‰EÎí%nR)Ô^!©iøxwƒâdè’SÃ,Ÿ½-y=‚Š0¡ªn"ªM—9w­"qoàĵÀ¹ ýÅH®Frˍdøxœ/PBŽ±Nœ8⃁!“qO ÅܓvÊ^d¾
+“uc“ËO>i|U˜,M”%¬œYi {lÍ_ïå‹ä6A’QÐf,pöiÜàrˆ´"?äªÕ1ŠêEM?ÿX„Y,W'Öy[ȹÁäïb/ãÂ1漈ˆ—IŒŠË=«=¿ƒTzfxfx…1bÊgÎæ‹Ë¯›k ª‰fóI2KxDqh‹ñ)SÛD6 •´GØ©È~â5ÍZ‰Û õF­DÁ¤ž9Þ9ØÁ„Pªj:Ô}Ó´Ø9µû»üÄ?HzëöI6ÀuŽæQ5Ûñ¼¨c}‚4±ï¬;ª€è]bak€´þҖڥ. Z ééó±Ö±®æ¯æsaÀÙp4b³sÑ;7çò( ‚-gÝ󵆇Ñ×|çØ 9lP{gíсá `ø¯‘çöMÀàIDnŸljjjö{à½Î~ãöõ½¦Æž‰ÙíŸ$³æ¸dÖ³1kNläæþñðt|‘®myà(t­6€?•64â$4h\‰}›pž_ŠLÆÏbéP¡uwa®4xó?”W}lÔæöûÚ¾óïþû¾s—»ó%¹¥ùN8¨V«#éødb!i ¶
+¨òɜÕåƒÍK·½£yè'ðŸ‡ÆäkXÂDüwž¦ñÐéló4,Vÿý~’[»Áõ_c/R.*LS[Bnä|¾°3ŒÀøx™3ûäAן]´,Â8Uřޙ²jgÛmmB«8ÇÛ!Ï Ìµ…Ÿ—w`!£iOŒ·ù•8„â2È"XM×àŽ¡ÇVâ;Hõ ‚`%˒0¤'ÔEQ·BÖÐ2N:‚‘n3ë@B˜a:Krb„­—Ò4­×+P‰j†DSó7TM5%Öb%YLu£¨þmÔ´ÿ¨>øæ}èµ3(zùCî»õâyý2>‡– ]§ôW¯~¤ÿêØÔñýúT‹ÂGÿ’~j¶&Ò(°ÛI¨Ãê·zÄE><M˜æë:} ÂPr Ÿõ<
+g'ïÍ í-¤.!ø
+8ÿßøõ?ƌ96Cè5ŠC
+5ZA4¹wEb§’±ŒË¡„ãði}Ü"azƒ’aþ¾aEn÷®½:­¿ñûƒ¨ñ,!üÒÑO^[²x~E¿ŽÂWtuöìÒ²rk:O¢®® yCoé¯~pLÿhK…¶å#ûKúenÖÏg&aÍ÷€®æ¨b4¢&<¼ yê#Eó¹%EŒM0܂±·û /¤dNR)&àMà9ñàúO¨ŽwŽgjErÍÔ
+…£»p„ë9Uò×á~¡p$×Õ)Ò®©‘©ñY|WdId…íÇ®>÷söîWœûÜ'ܟ¹>u àpâ¢Û'ŠnÑí°yÂ8’ì(8lÀf“äP0&“ñ$‹&ËT¢ØèáðÀÅÅ×N ¡!…ÅlO É"Åä=,òÆ-žZžêOÑ©âÀ7íkËÿœAIf˜i»™ !£Ïƒ7ÀÃ$ú; ×ÎUwiƒë¡, ©€´|vü?ªMU;§ºsna¢è™HFê5\‚ &N(˜a&y`s©‘œÖ^(.‚mlÈoP-I~ŸÅ*ɒìMÒa¤!'DO’‰=xÓßY}î½æ’Öé†Oµ.m+OLû+ÚóÜö¯ìÕ+Ù¡™gúv¾M§f¬Ò{QÕ³›'ðÖÑUtMCßc ֓´ØõàSæoì{T%ö«™nº›YI?É0éL‹|‡žbm,šœjÊÌ¢·vEÛJ¼®$xcܤL6b‚Œ ’ÆRäo΃´ ÀÍ_ªM•8•Nљt½»699ÝXÑŸlM/æä\äšïë ôñ««Ýk…U©•éõô&~À¹É½Ex.õLz›s»{»?Vpçå ÅVB6¥)Uò0ÕU
+wͨz݉Sô|h"‘Ü1>µB9Á‘ÞÐ>!b÷U• 1Q—ð'DìÕ£Ì&=Ì:¸÷yÚ=àøŠái}ÔÕ®¸Û™vî,ÇH„øæZf×ÄLåžrÿ†ýÌmuPX<_?j±ùlzr<æɱ@Œ‘R‹K(.µHx®´\ê—hÉ©ÄíÈnF»!‡vSí&Sìcrhg
+qKD0˜åáVÿHàF{9ԋ9²”bÚíâÐvn?Ÿòdì¥ÝUíÇ0ÆdDO°],nºŸfo²,¸ÐÝÇŞŸ–]èÀ8Mär48…PH¢‘Q'Ÿ#^ŠñšÐ¡²Ó ›<F©°ÿ:ƈt\¶üŸíþ1i˜6Ý7ÔØp{w·‚ÝU¨¹ì!›žUüÝô)ñêôìéâ›àDÞÞ¾aÛ6&óÙýdÍ#ÜBØýÙKe¨”ž1RŽKM×]cº3ŸêÐçÎrj™¾ÜXæhÏqÏ©ã é5k(ÉZ-l‹4‡#=h-a—H+­5ìi­µ‰Ý$=e©¬%Ñ288jØßÇ|Þß5ÛϞdñ+i†eq ‹/€yYQU)d†¶P2wœ¥œé%C'½·ÂËI±ƒï !D9,ÇUZNȲCâùJˀÐÐ%UMhzHÓtƒ—8ÇbU]ƒsÄҎ¦ª<ÏqžÉ1 ]§¸¨mGµY<zˆJP´\Å¢‡ „P$2„ö¾ZƒB4ÒYŒ:Åb4RtÎísí &ÐÆ ÀûéØÕNß®’Mþ¿NÒ.E&72ÝÝÀf«°Ù:ф!8p~Ë
+¨…Áú;
+ ÊÒQ`ä¸ä±^{Y ³,ӀÎlF5€6ˆÐJOýö¯Éh»€ì/,ª‰5\ûMiÝ륷ê‚v¨tÎjþ{>Jҗ‹Ñҍÿì=AÿLláÙDoÇç??±óA=&>ée EPXÄ#c¶£6ºkçÛåJ«Ñf
+\5ž|†<!pÂÓº´s­Á$OHP‘õfI>مŸÍœ«‘ÑÂh_¶…{t»‹½G¢y×UU¢Ê7rwWVåH·¶e‹&ꃴ"­qYg’ Hr,¡YîXÆÁI.W=Ʌ½>se’^ã1×ð¥á’•°3°=“‡£ˆÀ»\ö¦€U«6\Qª¨š‰¨Šªœ(“H2m3m#†èÏ¢»b oH–ÍèN¦œ8<n+I aqÍÔÙ¨îÅ"ÎÞ,í‹WMµJûñmüëÒîÍù®ehG±óö-,6´vU–dÒ±¿•ú äDÑ ÊS8ÊRfö,’2®hרÆÎÑ©M4àAœy¹Ô÷Ì3Àçcיs•¦Úpƒ7™—ùúˆ­ÏÈõõ®<Ýj›4£~~}A.Ô÷Ë}õ=M{䝙çã/ËVš˜"R³ëˆ&}ïôRäpz0òzz$r.}Áz7ÍÍ £J‹:)é†á­µ­ä¤-%Q܎;ÙÉõ-.ãNžÏ̛üe®;û(חÝ"í’ÎH·ä[Y½­EAŒÖ˜l±§U…œU™õœ‰5*yeŸrHSØCÊåc…V$‚
+U
+¹±¥i¥ŠD8B ¨*´JŒ¶‡ðáAç@( RdRÔG­¹u´-fVk«©€OaµUIB>ãÆâF™|’ ¡ø|^Þ>ñW‚¿ªƒÈ¿Qr‚á’Cx¥§ÔyTJK%RM©#)Ö±ùÄ †ãâ L%cž\YÓÒä»ø¹6y¶YäíZ§º1ùFà\Çù(¾•|'êø.T"CZÈŠïH5róÀÔö `Ì·³ÂÞ£_àT®˜½z•Pԕl~´xE'žr|þ@Ùl¸¾Ñ (î‹x:j –àµßmþokKÁï`Ý}اñ°e…ÂvMŠ ! L¢sk~ÑäTǓóZ×^z 5ÏÝýô×*Ž:ëÎ{÷á.·«OÅìGFÖ?<í«}ÿ0Uñ­¥÷ÿlÇÂo. )r4Y+¬k˜Ù=à ì}Ð[ýÀ”m7?ß1³½›ŽiéÎÆy=+ÍÜ
+ŠÞ ŠŽCEШ
+‰DLD<¼ç‹‡Œxd?ÅMHo¦|ñQŒo šéZŒ‡¸¶ÐQt1q”G‹ˆi ¢…à¶WAä…|© ڑA¤‚|©Js‚(̟&·F¹/
+‘[ HeGÛ=èMT±1שa ۝AÃáOw}"†l ©ªàppg•ØÒ¨šê:̼H5üäÄÆW92à•þý«SkqËÒïlyåǛ·¼Âþ²øé¾Eû~ÿdéãÒÅï£ï¾±tïٷΟ> õ¾kì:=
+ù*ŠVŒz‹ò´ŠTyTµrcÄÄ cD¤XAŽ¼}Ðû DÞ>¨‘·ú
+?ûÇÓe÷9R˜F.ò¼„â±Ùæl{±¹Øî1{ìƒø ý¼ü¢öbTâäˆÐûè~v³´AÞ.¿$ä…“’–vJïcZ©^¥®WŸViAŠñþGvµÀFq]Ñ÷fÞ|ÞìÎîÌzvÖû1»ÆƒX
+n‹ñ¼gÞÌ»çsÏݳˆàGµÁgu’nr•Œ€]‰FCäÞ7fàÓ+#ºÐ§ÙiØ_e(ŸG ~ÏùoLR“3ñÊAfµeš¤Eð&ÍÀ›4!¯ZuºpvªJTò·v4®«h.¢Kî{²Ûõ ­Ö!ø°aNj¡ ä6± 1€ÎMhUˆV@a¹xªìæ'¾è¸þüo/eO&÷=tøÄñg¶½HŸM¼5H˨ñ:•œ<šÞþ½?~ðáDŽiÌ®#m`äzÿ¸!1Ó3 æý¦RëÔf6Jß2Ö:ë2K*[ù#N[f {^¹PòQòZÉ5çfâ³ä5Á<7›Í§®)䮶@ª4¸K¥Z³QzÀlpÌl46˜›×ÔºcôVÄ¢q9²¢ÀȐf ¤*­¡Ä³£že³©eûv›½ßjâ™jǐ9¶HZHU[Åd ÂÂìçp+D܎`Äa|C°ÔÆbõ눎ýÃXå»Ú vE›ÔB´J“µYâÈ ÖfGQÀ&Ғ&²–œUX=ƒi­íMÃã3IW„zm¼8$Š]ü½Ç3¨·ÚËkQ‹AŒÀ€sÔ¹Ç3¹nëÙ}vn;°í§ Oç^ß¹ë׿yj÷Ñç~uäö±.*¿°f¹kbïÿù÷ï]|ÿ,bÖ*: xÌÖù‰,ÉÄ¥õr«ÒÊׇ¶Êەð­!=ŽYPl:þZì•eð:'öweÌM±êØÒdufy¬)µ<³&¶9¹6³%öýԖÌnuw|T-µˆK£f"±Úmsw¸²›‰vZݖdY,14Ò/À;­fÀˆ»ìx¹ؓðÁ¶]êКˆ¾ÚÄü!ŽŽÏ™Wè1©™ÊÂè´WUÀÖ_Ži6K³nU©ù•ó
+ÓHåf •HËŒ\ 5S[óMãCÍV{>?ڎã&TÂqȐC‚\­Åñö¢°åÚT‘A;¦)f‘šûˆíhå.âEË«D•îŸãÌõ‰›Ô¹tFèOÞg92~QZ®Ûðü_£ÇúhÄ>LçN\žøÊʝ삾ü܊'^)÷+5ýY§ÑäÂ䢤ŸÜ‘üEøó5SO™s͞ä@’%1sSÙB™nÊáhÆ q)ï”0Y%F—CÉŸ%<Fdé%% bu][?ŸÉ: MúH“¤oMˆƒ@‘¹8Cf#qÈ|á¤qDêr0ž$ðh¢ó‘ð 3ö–°aÇJ“ïÐ~RNF©A nÍÏ ˜ë
+êC\ŽšÿVFU™‡ñ+Uô–øyÆt‡Owd,à,|p½ü¤!ÅÔ\IyASz:6§ÀќBSÄD¹˜ðŸ•1…©KøJ¦xê׌MƓòNã¢ü‰ª½ªÒ
+µJóôzµŽ/3W™-¬Eݤµð½lò3þžúWö¡:¤^×¾P¿Òã1ÃPd™Iªªq®Ã€ëº§©Ž¦©2cžb8Šb Ó)„_Q5N&1ØÛ4ês…‰ªr¶Ž£òœpE¢ôÑR ü!HxdB—‘UpB¿ZœqK(“°ÄD Fb⤠E„%#É°ùqùÊÇ@†šoÝ ì/èHþh¾µ Ê(<ÚülE;QHYg{­³Ð–æ#ÐÑ,½¨eq=¥
+Ïj6ršåÏÈ/5íœùöÀyÅæM¾Áç—Õs½¬¬€]î-«‡æ|oN4§ÊëÅ'´@Ƈ¼Oòyxâ Q'zËëā^›Ë½V½4bÍ©Pðp¾h†ú±ÕÞæ8Eq§F{KñáJ·Ó֖ êƒ^»à%­¡´‚jpé‰ëÛ軗'ŽîSúï¼C{&v?*e4ñm<—á²Dpñ“7ADÓǒº‚h µA»¨:hg{¢õ=Õ¨’Uº”+
+[—EÎ*;”ýʤÂ@µ I„ W‚Eï"tìµ4SÕ¾¼§je3T-À:ÈCúT
+¨ IaÈ]Ž’fößE’æóM‘š8™ƒ}JÿX r…Zþé 1f¸¼þöTô7¿)d<6Ćøljk9å‚2š“z®‚—¦s\–+feÔx>R£jE*iç<Úéu{’—H¤"^§Mm&œj©p©˜5B©:¸IÀÚ’ð«aáWUpõ~ÚµN¹7Úê‡K½Î4M‹åÒw—K‹å`|÷q¹´ÈiQp¤‘K" ¥Ã¸0Œïˆ…Ó¸žK¤š
+'†ƒfÞÐ@ÊY6À7o"7×l“KÜ? P'¼³jã¾Q[.ü엝E‹'·ý¤kþò™Ï×J‰×ŸZ6ÿýwß˔
+oµ<UûÚáÌ>áx{û¬7_Íü%Çñð%‚7û!YTBÂ/ìSö§âßC·Ä;!Eb’[„yÖÆûíËÞuoГâZ8ŽÁ[`%bR3`Š=î'<î-tî*tî*ô{®BçM ò3X…¹«Ð¹«€ÏÿΪsW¡3×ÁåPçÆEÇð«7z¬é¢Ìax·<¡Í;àõº=É…Š¼ïÍ;]Ž“í¼ÿm,èCÆÂf,¤\'vûÁ‡J£kßI¯½)támn68
+û[ö [JŏƅQñGŒ¢‘ò&Œœ2²-¾'®Õºµ±éîôØm‘±Ø][¥­6šíVwu¬;þQ¸×ë~TÐî+¸ŒGŠ¤¤Ì«’jíoKÓí…ögú͑¶î ôŽ`*ÐQ ¿ø2Å6õéRº•JqaœÃ ¾í†¯3 ©—ûüŸ!C÷Ž%wv BʸVĊM7àP…P,A¨\>€â[X…S¸ Â#›s\1WcÌÕs†`ƒ]³ffØñSyÀ»0H$àŠóG5T{8Ùh?$ÄvævŸ¹PY?²vDi68ÑÚА¨FòÂ`—(uÄaèu®Ýûý—W=sí¹…¯ŒsÞÙØþ«#Öh–?xqöì]ƒû߸ûÒÌÚÌ]ñpϙ‹W.^øÓÒíЊçC÷'•‡°-á"©RzLš#­”6H
+Ô,Ýøâ«.V 5ë(r V5;²ªÂØËÂIN\²º¨¾/¬BžxlåC6 ÔÏÂdßí:&°däq**ìóÌx%“%.£L¢Ê)ªªpª¡BEN8ììè̺e-c·më<q"”,+8øs{òŠCÂ÷vaµeàå]™?16Êêàçâu)wo:¢PÞSˆ‡"•{ڊ`¸2ÂÅZ(bàPD’8P&T)ñ\6£|Úº|κAV—'V—Ó½7a]>a]F>a]n™\6aMVAw»ØmŒrGˆkôVTh‹ˆF¥¨QBî²*‰“ː\%2DHr„ß™PvW®ÏyHøt%÷Ÿù˜Z aÿ×Ç(0“Õ=U—e$¢Qɘ–)@S4YƒQ*1djN ±A:fÌóÐÚ𿣫84¥N…v*'²µ˜úá•%o7Ùz—={÷¤®ŸvMkmªZ/ìÍt¾<¾aöœWv
+tž',Ð擕x¥Ð¬5“v´ ožÕÚÉ&ځ;„â êNíEòÚO^¥¿F‡èè¤zŒžGgéUt…~‰>¥wÑm:^‡z(BËP‚VÓ&!Pöƒ‘J¨R™KŒއ½:b"ï[ FŠ ®*P vŒ 2«
+üõ${’¨<•âPÆüjªjZ ¡aB(/Œ1<)Ô4AÀŠJ‰ˆ°\n`£Pó}Ÿl%9…c'|c‚ +ŸÄê_ü±©?šŸIgÒQ¯¿/Í$Œ©X
+œ˜]—‚ÖíÇ%;6Ÿéç±Ä]Ý0ӇÛ6”^0W„ÀbW‡ dþf åw}%£¼ä—§ÖH‰Ì¶§0w£°È찀ÿvØø¯9väYXW$(‚bÂKX<ÉXåIƉ}Æ
++ˆ­Â|p?ñgå×,´^—^×Þ¼iuËÝJ·zÑ"–©‰Š!’gFí*\«?wëZyð;Òu>?°ï§ûõ“Â)ã÷ú…À%ûªx…|h~lFƒÁRº‚Žå™Ðî
+cS€­, &¢TP˜/­cå×g»˜¿RQDU#+
+‘%„Ø‚.3±e™¶­.˜ºhØT±‹ÚçÐ9"Ø%ˆ„"¢`ž3±YbˆÓDJ 7
+
+LrÃ@´)ˆƒ›[ŒBj}W![|
+vãßIÜxcc'&Ώ YÈ&
+Á‰ùI8)M«ÐˆÀD<jAjûbDbšJ¨‘@‚<TTT•‚@IÚð“
+Uæ' ïrîîڑ!â^掾{ϝ{fæÞïœ9÷\ä™â7¤õéQž".ü
+ÛRv¦hB² yÁœ¹ôŸì¼ýD-,˜-™0ûksbú†qXž>¬›ÓŚš
+‹[S¬÷5ƒ%°*ªˆ¡[é­EÒ¤uZ^ãio6ˆÞ3­9@{8‘7»k&»‹œˆÄK!sæ|Ø<O`$d^*H‰í|Σdò$jC)½äR‡ þ3½æ}ãšWBëoÝ|
+Zþ"ÔüEÖՕ)¹Õë°óï¿Öé(‰NG§¿ìDÐñ'‚NÉ{(”Pd!÷ 4ˆ§S\W åO´;ýÆ^ÖÔÝ_å_T®æî=}6•X˜:7™×r`S[nûŸÍd]t§Q]–œ=öÐoìå;¿ys¢7³QĞ$Şwɯt6‘öYSü-™[l‰UÕFqøLÚK[N{ õN§W“ÐȓÞfÓaŽ2ÀúxŸ<à2·°a>,ßê]gŽ±;ùòï~¶GÞï}‚=&?î½Ìfx4,/brÊëÈ/Ëï±
+sO\„ÔÚJ (ã¿Dù> çSæŒ0î,%©nó%nüŽ°kq0õéِ E:a/²æ‰F¶HælŽ=YpI½Ó'‹‚Ê‚"ەaقíe
+ôáP7/(bS/p Í3“+bKØ:Ü~‡ .\¸pá… .\¸pá… .\¸páÂÅÏp0ˆbC‹<¸f‘€y-Ãô[;XY
+wc`7öb<Ÿ'1քn¬ ±܃4¶äóùsß•¿Z‘®97™æÀJºÕ¬4c®¢ì!)$,Zæ¥;!ԕdfZ”%º¿º$—‘|GIö<Þ7Ø?Ð{SjÅîё±«Éèà ú1@Ö¼ )Zÿnbfc؀»°‘4B÷®¦õcïÓÊ<G¨ê!æ+h%&š±‰–í#+HÔ§E°§P¹Œ$ћkq7·ˆ¤ùò]:{¨ Mv—Åkޖ5éÙ«d ¥«ü…mF÷çrT.hÿá\ÃbѾþÏÉ/¾ž˜ÝnB6<Þüíãß0ý
+stream
+t2—Ý= jv™1(.`Ô5
+¨ÄÄõ£kˆxÆ WºñØDŸ‰Ç®<1q«añ|¾ì»v½~3õ}¿úúWõ]0@/P
+D Gg2Œ•^[q In X›nŠVõÁTk,Ûb£œ­ŸvÀU€Í°ñD}=uéÞ˓ï,°mz-^@ˆÉékIþÆ:íÔ<aÓ
+Ñ_+2£Õa¡À×QðÞ/|f£¦:{ÌðÖ„ð„²Ñ ù‘çp…#>ï8ö—· w²´sG]å@¢š‘½MH†uá(ªÑoè|s GQ.í1¬,¹ì~OÌ ¯ó(¦"cÙ úJ½»4¸D`ŽT6\Š‰1Ï×aT>%é¿"¤´?Hìé pÀ¬€<zG ÏÚûýýǐÊWÆqÉêÁSù¤ÐÚ:ßQèÁ“ kÀýDû*GüP~!q{ß/=
+•E\Õþ=¹«o†H\¿øk@ê‰Eó½v2œ»)7 9öð€ïõç³~ËØÌŽ#yqø÷HŠª<“yªcaŸ£O»÷jÏÝ9wổ3çÔ|ûÆàääÕ}p
+ªçÜ"B¼¶îØèzöŠ²¿æMmY£r±òχâA90åbrlŸmÆq™Á¥¿™"§Ÿ$+öЋ5šè;ë-Ó®r‹óûœ6GÓ:odëá„X]««½mÊnwŸ„ ¸që÷ŒV]Ô$i®þq_»§ïW'äÍ¿i>òÝñ㭓/9{Î͊ØԒ^xJ™˜=¢KèM­áŽËÁÃUõµÊÞÍÛD‹búM7›<MYŒ"ɽŒt9-ð±o̬‹ã‰4š/v°t{Õç¯*á°.E蓕Œ&L<es2öÂD³EŒ…&ŒOÆBUzxZ:‘bмiH1˜'­VŸaÖë”D¸%B=‚xöq¨&I2þÙ8ŒïŽCwãË£î?;óyéÎÆ@]àâââ¨"â(Êâ°E£:âàÞÁ–D34‚=ëŒ"rK#¥øG¥˜uç2
+\†{0 œXtµ ê[›|óçíkŽî¦ÚÛvçrõß$µ}ÿTwegtúä´ökbƒ6èý57úD·$¬º,¬ü45waý†þÒèɉ¤úsúžÜx¯Id;Y֑þýd?Ãù¯.ÉÓh_}¨lߣڪù(÷ˆª1­[–LÍ1¾¿¹wãÑ"™sV(µ­ü𮳍Gœ›¤sÿ)—]Mf”7Žè±×¤”D,XòMEr°J2T²á eì̌´qã`ený2\ñqHÛð±Sß2õ=ßSŸyøžªþçËËÞ>Ø~FU][ü/xgÛÇUÆSuuە-Šy»*c.Ϟ[“³xâ
+zïTKÜÁêY÷2µ7#”˧ìÛ·UD†]; ï¢ø„ûéLJËØ—Ç7Œºy}͂ôœ|KYrÞùð~ìúÉæÉ/5ãs˜¬¯ú„Ç® Þ Ê8ñN¢þÞð
+ëwaûƒ€æ×ù–•òckwû&GNjTŽOªþ²âlëÄÌÛnïL~¸½a’ŸýáÈk¯š™9)mŽ‰Vz¼Pxewž J5>d’:è®f˜Ø]z|©ßôO/ÓþZ¸ènÂ!û¨;>žå–Wޯ^ƒVbTÄA0
+Ã'¿@îU
+б#ˆL,…Bµ@W8qüS™°Ô#Eâu¥ÿUEÒf˜–{DMnh‹¹á ÍòL>c¡xš`:Wp:Í ÑËÒù4KÛ-´’ ìyÃs„‹C0Žàx–±ðÖçÊ}Ÿ¶ðïP|!M<9Çv…¸Í`) /t)Ô¶xÚFÛy"1‰!šœúAQŒ•Êµ
+Â9KX¦ n¤Zÿœ9‚ÐX­„Q@p¨ p¨_ÓyQ„Vo4k i²ñ£Q“f6èM„Î`Ò¦h ©z¡IÓ=u‘ù7ïUÕԕ†ÿ{ß btðð øÜ*
+b"”Qª1Dyš¼È2Ú
+r.ËëtœÞ ȇkFÒi ƒÞ¤}݌àyµ.Yô¼Àiáik@­Œ\¤:Z=Rk
+æLZ­Ü¡'†ŠSF¤©t&´´Æ†e ]f³>‹É©Ó°BX&ré¶tGXYS-M͉ ÎÄÌHÊÂ’[f"¿3¸§'NβpÓR1Òm™\’…›`é‰N!‰Ó¸Ä ²2š3ÐjËHsæŒ|zsÙG
+ÀM¯ŐÍú?ìÝ/9wtqm6
+² RÁ‚Oôøžo+Ž§CæÚ^9=žoq|Zë¹Îéù̌,Kæ¬)–ÏëØܜ÷½z»Ï}¥,oüµëÿñ—k¹_¯*J)©HýÌwg÷>®ïèg[ŸTýø‹ÅoK®¬ˆÜ¸ð@wÖc¥åä¸Û¼L¿Ö˜¬Ùþ‘9ÅTó·€j
+q;p0>âþùα}ȽÈÆ6ß]Ùé·®Ö_ûz,¡K¢<¦Žõ<g)šµøÆи)›^ñYk§ÑX—ø§FqQÙé
+¢•¼ìy¢-8ғ‰‰d!Š­ä.i¢
+ôß :™î¢§™@¦še·5í½Ä]â]Q’ʤR…tÂéß0\GƒS`šÓc{qoà*üÿÆ5\H7ÄEF£¾(¿Ž4b8¹Ò¹´œJL“Çc»°¢^L ÄÝR¨±Å`fuPüÁh2C<ʶ£5×ÃôÌnŒž³p‡ø¢$<CâÈx’Bld
+™J²Él´j)ÙC’³ä<¹CYêB½ÐNtµÓ|º‡VÒ³ô*Œ‰‰c¦2ÙL>³‡ùŽ¹Áº³A¬’fdz³Ø·e c\®'½Ӛ’š
+BKhêië*Ù#‰dCÚBK•ÒÆMÂOQ(RI‹‹jµjJ¤Ê˜í÷ö~À•Ru÷fy÷fæÍÌ{3nÒ-øüŸ°…ÂS¸϶ýæƒÞBóuâ.¼Ý¼ öïåA>Éoó>Ëçù·|¯ñßCû2¼•ØkDÖð²¦øïmño¥X)U+K”j%ŒÕìSú°žo*הQU¨yê"µYÝ£¾ãPŽÃŽ£ŽsŽ_;>Nq¦¬Ÿ÷N<Ê»â¬Z­l¡ãÔ(åcqATñ.1ߊB> i…J£Ò(|¢’ŸF”o¥é©GSÜ)n1œ©aÉCeZ¬dÒW°ßH´ŠçD˜NðÛ4.êi;”q\<®UªÕ|…ö@&‰,þ”j¨†«á»‹´ò(¯«¿“iÊÇV‘eíSo:„rçà
+Êo¸•Ç¸Q̀µ*Å7HGßÉcø_…ø!"˜×Q¹z]_n ½Èg±ÆÓ´EœæïÂ/å؏_æFþ¶²ˆvóvXc9m‡hŽØ&æ ž×Ð'ü,çaçŽÃ7sE©J–è K"¯¿Ï9¢Œw#N·R?TÊ|†ÞèóQ~vgÖÄ<ÁwÆ8ªÔS”ÇÕóêy¡‚ÓYXs!N/"ä{8#Ö`gº•bDM99D)âÿ1œ€Ð4q›Ÿ[¨‡¿¥ü• jè‹Qž>|÷¶Z£,ÅNá4ñ¥,O#G•£P]
+ß¤jDãÈ-ÝêÏʶrQù—²ÜwwL½{vÂ:õ8Ýú±—êé*ÏàÜ¤Z¢Aµ¬µ4(^W¯YùœÉnúÀ»ûWñ\KãíV7!Â7¦ühâˆÚ¯îU¿ª>ƒÜ4ŽSó9:H/Ó/M¾¼õ ìø¬¹gOrÄBZLË°ºjªÅ©´
+¸ì¢é>ÝI÷”R4=Í ´Ì|}[”ó«Ùnˆ|ETPZ”2 ô:¿9K¯“˜J‘¿­Óll
+ÒÄÞPÐ佩ɕÈUÅÖÑýÞ¤™SôZ½Û؆k
+ “V?å>YPථS_3Z‚ºÛ\éÒCmuD§“±ú©7fyµY“)žÒ¨sZÌ°Ñ©ÙñFfÖýH’f·ìá²Õ°:iY–髦֡A“ Ž5•ËO¤œŒŽr ÃbÌ2;á‘sŠ/l8+$^Î7EN]3n"@ûÛdL[“Rä¼M²)ã$j 'ÚfI‰9¾ ‘T|
+=
+Ê0îÍä¤"dĺ,VП¹
+œ õÒ~dÎAä¾^ðڅ¬øSz“~mòPÉ­Ô÷»ÖS%rk÷¿1~ Û!Œ™fßà‚¶¤fpº÷b^ì=%·Ä»>þÞA¦¿
+èþ’­µmÔÔ+!'ºn§v:h%“Jpx•>B­_Œ{‡·¿ð-¬óydôӐß]"¶N݀:€ç¨@&¸|ŽBóX>•6‹ÜsQ#ÀÎ×ÁKÞù$a½ØKàAà)ßS¨Læ*q”Oq%_‚õÖBæ0,s™ÆD•5A_÷— ÏïM帋tÄ=.ý² <åè=X§„ÝÖ¨8™ûmxý HﵡœP»Iè†Õ‚˜'Aòy‘Ð +J€6ìÁ
+Z1¿:É'Q
+hÅÚJdõIÍ%zpçú¹}
+z¼„(œÂXÀ¹á#ú¿ÇððCº]È吁Ùt Ù~t‰^Åþñ~ôè¿Ê7f£=™)2Î*ˆë@AºCâ¯0_©oöMøð
+Ví»ü>Ob|™;ÆN¬Œ|ÞÁ>ñCº¬ž?Íù—ü[µÆŠJMÍлˆÀÜú,ÕÀ˜ù~>*æ~;†Ï±+Éo†|“ÿ÷9æb§:w$!}cü‡g¸œsé.€½ûs.öу
+HmŸj?#Þ¦0 | HÍ84ãЌC3[$ˆÅ[âÍx±CŽ,,®¸í]$Fh
+Äë*ÆT¡Ú¥
+À«x5¯nƒ3z퇾ú~èû•¾ŸXue+5º2
+ñÌ<Cƒ‚7C„ÄVª@ACn[ã– oDlA×CŠŸMà}Š7+Þ x·jíVå=ª¼G•Ýªì6ʒ—ÏáÅ3%›Äf̵ElõJ6
+¸\
+daE!fï8¨t Ô :
+êÁlä9'œZs՞ªîª¾ªÓUCUU¦·µPD‹x2(/˜œló"o––BaÒùkÅߧ¸GñÇ<‹Âú_Âúå°þJX)¬ÃúÓa}}X/ë nõ<æÔ¯;õãN}«S_éÔ«œz¥S/uêÞlñ6ÒéÅk¯P¼HñÞ×)ýo'›ώQۏ,ŸÛ)·¶%ÌÏ'kۓbT¾iYaÛe)Kj–&E±íb
+Лk8›ÜIVkì›í ÎØøL,Õ^ñœšjòcÕÎ@Â4µ)¶Êˆ¥7n3 ¡Ó~š`j
+&xJªŽ,ŽåÔLj¹ìHïbC†Bò™àp
+÷ö†(o¿;ߝ³.û‰õ¾‡°ˆÁ³¿|çÜ
+<)ˆ½ØŒ/Å*daª @ä6[ÃÁ1m•¶ÒïÓª¥Ç2i«ü›¤>ã/4kGVè}cd“BّUڑõ>»B­ZÚ-‘"iW¨ì
+ˆÄzöïΏjµZǨ–¯É&kL,´îÜ-eK[‚¯ÙÛ|±Z»Ï:\ßõ`{¬K6×Û}ÃÔåo
+wyÚ|ñzO½ßÞ⠍Ե,¼g¸¦‡^ÖòÎZdgËäXuƒi”Íur¬A9Ö «ÎS§ÆRY´4SM¨6œ”#Ú¼ $pd±-T“—µwÊæ5¶ü珧Ÿ£yÎPl¾½&¦²i¹w¹W6a•É¦PgMùÏ­±-çsFSÔÙöÊ÷ׇ4jñF;vDwD¥TÿhG' §‰¢í ¼w¾ú¾Y°˽¹8ªöh†:HÍi´“do’Ív>SêDϝ›½ÿ'3·DtídXIÃN#mþMyµÇ6qßñßïöcçîwvÎ>Ÿw~%~åý®M!(АFK«ÔÍèÔe“2ˆGۉÒk2Qu0PÛ ÄRKµ¡¶òpàÑF_êCÝڍjmécEf Ê
+Nö=;¡ÿíÿîwß;ûNŸ×÷w›Ìå=ü 2rþWÌ=Hè8,‚^aEˎZ¬l…*˘Ù,,LÆišòòV³6Ž‘­ÞâI®¯dzK™UâµL¯X‚…D¦”1?M:ÑIÈ8tC£§n,ºŽ4fÊ ¹i¸Õyf©èè1‰S s3†@,ˆãUC]#­Q^˜¤~‹ìx¿Á‹v» žâ9ʬ°P‘0ËRø§xÜrËi•T×$uj`±<gW(× j;¬ñÝÔ{ЄÁHÄâIjùÐ!üò@ø%Åk¹bF,Å+ExìžbÉ݅ÄRVêjð`ñê•ÓÿsÐԈr°a¢7Ã}-a=kkmoÑ k ›ÓŽöj7Ö^o 4hŽX›½èâÅÆ)ÌÌõûÜNÉ㑜n¦ñn‹BÇG‰3, ŒiG-Ԓµ÷L¨UI–q!TÀ}c6»+bQO±§d>\S#$·<wÖH©‘Öå£ÕõÃuÃñÃu‡ã'ì£ Þ!Ùä6{g‚‰‡¤«6P¶»ª
+ÀõUԏP
+_0"y䨫Ñ=r†‰ÝA—¥ ¦ŠaÛ¾½‚7l(óÉ{;tnÀ¾Fo‹t,¢ÚZcáÅ
+¾´eÃï o‰û‡¯¬?ðe¬ï‘ُ&×ê&I?vîâƬ®<üӜÇjs‹ÏÝÿ·Ýë7=4ûÉ!S«œû’ |°£ÂÜe£¥¹¹tGVDVF—tþY¶êÝO3{۞é|¾ípç+ÎI÷Ûη]ïº?v~ê¾àüÆ=×@ÌB@)ƒ>˜Ä9¡*YGèxbÃ>¤´ºXJêkš”*ৎDz-Õ°“²–p¶½€†­&Kû|]´·»a(ðQÛ'ª”®Öâ¸0‰·Uˆ@==¼Ù;=½J<Ø÷Š@
+2Ù(MÃa‘H]Ré*KþIW…–Ö¶HÔébØhkØÀN¶ÆÀ‘¶˜]Œd Tæe;l°ëÌå;QgËe'„bµe+4»å–ævà%Va¤Å]>*³´à‘
+ŽÁ•ÑH:!*é(c[ð·˜õ^v"K¹Š|3Ĕ/¤¶)aoWYÇeõz<>–÷±^{xT‹ßÀ
+çþV¹`ád2—Çd!*¡Ú[•Uâd!äñ֕?Ïþú/—F²a•óˆÄùì±½S‡·íØ¡9$™ZiF³göÁ`ðì؛3mÑ]–é©·^øŋKEL¥Í]„˜W™=(êñ¸‘l'ðÜê¢TGúvi…÷ÎÔ²4´=¹ß۟Z“žII”H¤ê1E¥mbzΐ»Ôg숇C$~‘ÂqóTu,֒ˆÅâ 8‘âérÉbi¡,šòóTZq–K²|·$ËNɯH$ä3K˃(¸-¸;H¿ÄÁ¸ úTHõzS‰D@õºTÕ+ Òàt$¶ñ¤P¬§êëy%Šy1¯By'ñ=ЮDL5¾,¨Aõsõ’ʨœo¤b$“&ñ"D榎[Dà”!µÁˆ¬&ÿ$s„!píñ†¥ƒžÂ|{Î]f+©LKå>m:Ɣ@®¼Ðό°e»ŒÔ{’#ƒk¸›=û_¹|ôðÿ*ü_‡åo[Á—槩ç°Nßb8<s:¾åM‡izKé£ü!S³¯›ãb¼i¦¼*xï[\.¿aó7{Ï¿À#³ï.’þÚítº¯ÿá¦AG¨ï•˜k³u ¡{AC>T ¯¸ß7N¾œ8’|ÝöZÕ»+±3y@Û=˜|)jÙÙݔ|8½Ë¶ËõddW”»K|PÜj‡È4ä´®Ôzõ‘;’ÃÕl³p›Ö­wG{·%—
+·‹ß h>]ª µ!,$’Üfñ÷‘7èeڊè#Ú°¶³ñiíymLãRD*¬ý2űIŒý\£VM‡ëª›µZ<&×Ƹ€?ÐÔÜ,s”Ì…£‚=ho°÷ØWÛûííV{ï0âé(""¡²›L‘÷Éçä±okm„*u ‚IiY¹¹¢ ˆˆÏÊz3WSDðUŽˆÿð]>°M\w¿÷|±ïl'w¾;ŸÏgŸÿľsü7K‚ÂBì–BX„Τ]5¤2¤([×vÙ´B;Ú&MI¥‚V 0´:4ôÏЦ!Ú"´uZ[U­€®h 1Ôn‰½ß;;É(cNü^ޝ#ùÞ÷}¿¿Ï¯Tµ*ÆÝžf@¢)A²;D#©'¤téöH¥„xšŠ:Œ4¢fÁc+5PDEx鮑‰Ä6³àÍ
+ZÌ %ìî:®–srŽ¶zLoÐã:mIÀÖ°ž°G3(äŽdÎ%3¨^fªAžL$U8D·èã7èc›s¢©JvÉy¢Œ¶Ä´à7Étŵïn{ð‰R;¹²5m:YôFt—þT¥g~ߦ=¼õúú»‰*ÿßðâʅ½«RKáPö€ G µ/Øo}Üjq9ꒂ 9êýÁl$¢ù-¬rnŒ äÉ\HqÞ¼u-†T–TOR5u^†k
+~ŠlûÔD‘ÓC–ï‘+ӇYGAgKA3GK¿KËÒyrå\iyŸyg’Œ} Ò–òyzý
+ՎŒÂü‘Ðînäó|oYê\]ë(:×F9Eß°¾ædéˆ'b8c#š‹ZsTÛóT[¥å²Ä,-\3jÎeš›3ZÖÎc|ZDÒA¡t.ÔxKØ×näÜÆl–ÃzJßC…$‰8¡Ól`c&“ D©1ƒc‚ f¼ ŸîŸËµà£ö2Ì“Ö ¼D*ÝE3؀сuLੲû-+V<VYð¤W]~ÔñåG£Ýë{î²S|ùTMù•*_¡âðn(_9•ëåˆ\í°æ÷‚•(ÂFÔ3,#*ªvU3_AyXÒ@K­3âÖTú.ºñþS}OŸÛÞ549rvÄ&×Á\d}÷‡¿ÞCÔ'÷<±®¢ÚPy +½˜Í­zþØÐîaT3Üß$qjàwA¯G[³ùÛۋìz÷f¨µ‚À
+ý(z|gP× ?ú±åqqPÂ#–QqXú\fXìnËn¼×ö²íSþ’tI¶ÒüFþB¢›#ÉBÁ
+yƒþE Ú8Áá CA,€BŠ‡ÈS¨u婂“Ï_ DA®nc]€al䆍ÜØøêí=‰Þ£*N‚H"º]\YESDSBôú_¥¨ž—±Õ-K0ºj8P’³ÚD‹'x+è*c!] ;0b{2Q-H૊®Šq,2@+©?3BT™Õräâ¾¾W7· ?]¶zië}¥W kà&®vL«».¬{åL³\_²¤!°½_&F"oâH·Øå0µ¹0b-Kb-ì ÝóA¬}TM±,I1l8|$˜8±jòF¼õ`nN¥>\.B°À¶LüwvÌ&ÆÜÆ@n¸î”UgHLÝO¾û[o™‡éR婦d´ZÈ`iÃ\0TŸJ½ž'…ú €#ˆõ{ýø Fdõùì£.³DÖÅ¡)tÁ³êI“š©ÔO54$Sšn§ÍØZ,6mÑìªd®!É= ¶! ëúp‹4-êÃH@¿Oòû}ÈG‰IC×F4
+Åwð„O2`πà vä°Û£ù ࣨTAÏr©®T_ª?5š:Ÿ²¦Ô ¶ù¸(ô‰ýâ¨xM¤9‰Þô‚ï̆ÈIu¾R‘É1¼LÎ! ó ÎfŸiç6è1}³šXFjÈ#É凁÷åIuí51úŽÕûN‹âmU¾8Ž ÛÚÔÈ >I܍7OïÜc6­gÍÖ¬ãÍ{ˆ®•óº„öL-ü+j9=+6P
+AAê×R^4U(¿Íöbá²|Yù‚ÿB¸!ßðZÏÈò
+ïË(ŸñŸ 6•W·,+ôá_ÜMѲ—Ýé<€×f8ß±¾Ã0O⑚ç˜-N.÷¼§†iµ¶2-l»sß"´È &“ÎF^t¹Qù*¶½Áâ ÇÄcî£ò)å5/ó
+ ¬ÓºÄyïî}ï=çžçùýžßÏ­Jõœ!K8Li՜+’‹àHDbŽX5¨?¿Ò؀47+Ç?™vF·¥8Qâ¤ó( áb1 ³]9|9"ú¾Ä¡H@iS}Dl?>”KÓ³ˆð®.û ÛGPÀê0¾i=‡.>·(¹¤sÞ×&?CΠK^Ù>yýerã݈þîeÛ«³Š§kùæ ¸½=qo æ¢Ÿ§‚S§Í/‚ êxÐ`gÖ&¾“°Íª›—XœX¥¬Hl l¬ßœy6óËÚW#ÆýƒÀyãLøávLb¡ÞÜ\¿S¦þGú/ôCõÁw‚ꪴ“S7)†r}nŽRwåhþtŽô@m]°"ÔP{ÒlÈ2gH¸Òã$ìqñxÜ!ÅÂFm-éÓOàǨ|À¬¢àE46Uí§ dQáõ­þ~ôE…µê ½º²‡ŠX5]n“EìU³rvñºiÕØY/ôF ,!þö“±2ã·íP É&´o©F ø_Û!ñYP‘\YEêÎÀ Á©ë¯Õ93‚ 1˜$íe I•E$@ò¿r~¹PA,ßÆFMuêNÉ|µÄþfTÌ­ç?Ú¹oÕ¶gMrµaß¡ÞÉ[lÙË[&ßŕ“‹ï.œ·ŸXµ?³`ß?È,‡2]ë²]ρ8=‡žðuά½?µÔב*¤6 O
+O)»|?¸ïgm•_
+´·bR/·l;#^oˆ³|ä%=Rsqêcse»¾"¹hžBsç$›Â¶xÚUEí“––´»:?{·=¾»&]ÌÛìü 3ÇpôÌ­îÖz5¬)í|µ™0†ÙÚÛëí½£còÂçO ’îø€Ñ1hՐ'&ˆ!Ëåˆn"éuß×XvbÉ ”\ˆ}ˆ>"ŽÊ–j¦^÷òQ°Âªñ–Ý–u£H$ }õkMÚ~\꥜ˆèvì~1¾´gí¡Ö¯¯¼ð»sß'a-­œx£}aÓsï¯^ýÁá#ö~’?jŠäëz²Mò+)ÝíWkžùƞww5‘¥‹:,­þéÀº¶G5¯~ðÁ;†(ÈK?àºÅâÓšµ.ƙav!¿Þ«~ì 3`瑅fP r˜Ó@5Œä"êý5˺5xœšÖßèïñøí.Îßáïöo4½ê?ïwø/U¿–—hóë-eweÑß=¾õ^ûŸ%|ÛºNŸà=gÉ»M|JƳ“Ixl‡Iøˆ®ÌÉ?“ªF›&wYGÐÈÔr¨ÇÇὛPè$åêѧnê¬ÿœú ×†6ùF+.øÿ®†oTÜðÝÔÿ`fc{òÍÖwúöVTp¡"–ò²^ìMÉ^¯$«\mSI¶6 †ÕÐÐD©µîJ‹ÂªbLUU%£ºcar½ÈH…Hu¨±&`¦°‹IWipn¬‚’Á
+õBn°‹ê º)¥$e\PÓÍô2[™~†fäÄ åY°L©Ú´ý¹#9ÿýX°ø§¯`ÑJ¶ì{ âÌVŒn^°Èã%i›¸ü҆_=¶HSæ8µ’nÜ;´}ù®G÷Z”Ò\¶AmG¯~óíÍx2VUIÒ6Ѷû­¥X3·½(*û‹©(¾v´ç»V˜’W‚HWØA~E¾Â81ÁÞX‰^Iqµ@‰‘‹D“Ï\Þ«ôúzý½êÓ“â)úQ`zØw×㱏`Ä
+¬h
+ü­×+`C,âdPÙ¼†Íî¨1‚
+ù£ªÂ¨rb4„ê)
+X°@ɀ邙‘‘.#Ù¬ÍÈfº9-ok„“p$-›FMZ6LWTvG·Fû£û£#Ññ¨#zo¡ ‚‡Ø&˜ð[Sɸ„q E´â5lèê[é€÷Mø:ž²ÁWÛQƒéÕytŠG¼Á҈¢;è~z„¶ÓoÂjŒZˆºàŸûÖN‹GƀJ®Èì¨ÂNÔMô­)]Ù‰>E³”g_aV%ö
++¢"(å6½äˆRnëÇ)<uy;ÄâÔÕ£{»ƒsC…ÂÊ`Øf ÛîqiOÊã¹gÎöю+—v<®[ðÊ–;Ýû×ï]úöïKx#º-wë·ö·‘u+dk¼õ¾íãHë¤m¤åqÊü —Aó‚Ùp&o:;„Žxkv™³[(ėe×8× ëãk²ñ=ٗBE®,¦‹ùan88œÎÿ‰ºœύå?¥®¡klH‚Ç&—wsù0
+„h§“VU§ ¨ˆL»]t#ƒºê¦iZY˜4Â0ûzÍZ¾‰¬WvæzU›*?pÈõæ-q«üÐuiŒ½.ÃHV~hT‚D»­LRN­9.îLÊâÁc3R€Äh¬)'s¬)6ÀÀGslˆÓrìœ*'Ÿ+{«•P’¤2aÇqŠ›úðìøá1Øfa'Gl¶®a?9ÞýüXœn='5uÍôÌsn—ÛŸsÓ^2€Ã#ÐôÀTP‚Å<XÉŗžÿoöËî%Š( ãϙ™v‹ÖQv5–íqSv‰pE‹
+í.âÒå?Øõ?)îCºâ/ڑÁUôâ0Œ1Üô}mEºu4‡÷}ÿkõ¢ýÝ]Ì=çĔÞÚD”j¡g¥Ei›TR^9+D‘$:µ6Æ´Ö&Å Z[¤_jm“þØ3ÐןJegfÝ鼛ˆGG÷Dzú‘ÅRTÏ`.:OuŽêÙ5‚AŒ’=yܣј¤±ýowkJ÷gE#­ì"@n9”¤cdóó£¯ÉuOëSu+¥wj®lCÁ²Ý ‰ë“²}ó~ù‡ÿùçÓ@,˜¢®ô¾|=¶™é˜*
+stream
+[€°5la‘QIBHØADED„ª•2ÖmtFOE.®c­Ö}êÒõ0êè8´׎8GNg¦Óïï÷9÷wïïÝß½÷ó '¥ªµÕ0 Ö ÏJŒÅb¤ 
+@8(”µrœ;q®ª7èLöœy¥•&†Qëñq¶4±jž½ç|æ9ÚÄ
+Ó¥$ÕºF½ZUnÀÜå˜(4TŒ%)뫔ƒ0C&¯”阤Z£“i˜¿óœ8¦Úbx‘ƒE¡ÁÁBÑ;…ú¯›¿P¦ÞÎӓ̹žAü om?çW=
+߁Þô-•’2ð5ßáÞüÜÏ ú÷Sá>Ó£V­š‹“då`r£¾n~ÏôY &à+`œ;ÂA4ˆÉ 䀰ÈA9Ð=¨- t°lÃ`;»Á~pŒƒÁ ðGp| ®[`Lƒ‡`<¯ "A ˆ YA+äùCb(Š‡R¡,¨*T2B-Ð
+»—½‡}Ž}ŸCâ¸qâ9
+N'çÎ)Î].ÂuæJ¸rî
+î÷ wšGä xR^¯‡÷[ÞoƜchžgÞ`>bþ‰ù$á»ñ¥ü*~ÿ ÿ:ÿ¥…EŒ…ÒbÅ~‹ËÏ,m,£-•–Ý–,¯Y¾´Â¬â­*­6X[ݱF­=­3­ë­·YŸ±~dó ·‘ÛtÛ´¹i ÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî”Ý#{¾}´}…ý€ý§ö¸‘j‡‡ÏþŠ™c1X6„Æfm“Ž;'_9 œr:œ8Ýq¦:‹ËœœO:ϸ8¸¤¹´¸ìu¹éJq»–»nv=ëúÌMà–ï¶ÊmÜí¾ÀR 4 ö
+nßLÝlÜ<9”úO¤[þ˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾
+æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ ÷„óû
+stream
+<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d' bytes='1030'?><rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'><rdf:Description about='' xmlns='http://ns.adobe.com/pdf/1.3/' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:CreationDate='2010-12-06T13:36:28Z' pdf:ModDate='2010-12-06T13:36:28Z' pdf:Producer='Acrobat Distiller 5.0.5 (Windows)' pdf:Author='mija' pdf:Creator='PScript5.dll Version 5.2' pdf:Title='SCHEMATIC1 : PAGE1'/>
+<rdf:Description about='' xmlns='http://ns.adobe.com/xap/1.0/' xmlns:xap='http://ns.adobe.com/xap/1.0/' xap:CreateDate='2010-12-06T13:36:28Z' xap:ModifyDate='2010-12-06T13:36:28Z' xap:Author='mija' xap:MetadataDate='2010-12-06T13:36:28Z'><xap:Title><rdf:Alt><rdf:li xml:lang='x-default'>SCHEMATIC1 : PAGE1</rdf:li></rdf:Alt></xap:Title></rdf:Description>
+<rdf:Description about='' xmlns='http://purl.org/dc/elements/1.1/' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:creator='mija' dc:title='SCHEMATIC1 : PAGE1'/>
+</rdf:RDF><?xpacket end='r'?>
+0000000000 65535 f
+0000079553 00000 n
+0000079583 00000 n
+0000079625 00000 n
+0000079689 00000 n
+0000079914 00000 n
/Modules/ARM/STM32F10xRxT/CAM_PROFI/M2.PHO
0,0 → 1,481
*
*
G04 PADS 9.2 Build Number: 414666 generated Gerber (RS-274-X) file*
G04 PC Version=2.1*
*
%IN "STM32F10XRXT.pcb"*%
*
%MOIN*%
*
%FSLAX35Y35*%
*
*
*
*
G04 PC Standard Apertures*
*
*
G04 Thermal Relief Aperture macro.*
%AMTER*
1,1,$1,0,0*
1,0,$1-$2,0,0*
21,0,$3,$4,0,0,45*
21,0,$3,$4,0,0,135*
%
*
*
G04 Annular Aperture macro.*
%AMANN*
1,1,$1,0,0*
1,0,$2,0,0*
%
*
*
G04 Odd Aperture macro.*
%AMODD*
1,1,$1,0,0*
1,0,$1-0.005,0,0*
%
*
*
G04 PC Custom Aperture Macros*
*
*
*
*
*
*
G04 PC Aperture Table*
*
%ADD024C,0.001*%
%ADD063R,0.116X0.071*%
%ADD064R,0.055X0.072*%
%ADD065R,0.072X0.055*%
%ADD066R,0.071X0.116*%
%ADD067R,0.066X0.121*%
%ADD068R,0.056X0.076*%
%ADD069R,0.121X0.066*%
%ADD070R,0.081X0.081*%
%ADD071R,0.076X0.056*%
%ADD072R,0.086X0.086*%
%ADD073C,0.081*%
%ADD074C,0.16*%
%ADD076R,0.072X0.123*%
%ADD077R,0.067X0.055*%
%ADD078C,0.25213*%
%ADD079R,0.055X0.067*%
%ADD080C,0.086*%
%ADD081O,0.07575X0.03047*%
%ADD082O,0.03047X0.07575*%
%ADD083C,0.071*%
%ADD084R,0.088X0.076*%
%ADD085R,0.086X0.163*%
%ADD086R,0.056X0.056*%
%ADD087C,0.21*%
%ADD089R,0.065X0.155*%
*
*
*
*
G04 PC Circuitry*
G04 Layer Name STM32F10XRXT.pcb - circuitry*
%LPD*%
*
*
G04 PC Custom Flashes*
G04 Layer Name STM32F10XRXT.pcb - flashes*
%LPD*%
*
*
G04 PC Circuitry*
G04 Layer Name STM32F10XRXT.pcb - circuitry*
%LPD*%
*
G54D24*
G54D63*
G01X146000Y264500D03*
Y251500D03*
G54D64*
X246800Y235000D03*
X239200D03*
X201300Y223500D03*
X193700D03*
X149200Y203500D03*
X156800D03*
X149200Y195500D03*
X156800D03*
X344300Y226500D03*
X336700D03*
X331900Y180000D03*
X324300D03*
X200300Y215500D03*
X192700D03*
G54D65*
X161000Y223200D03*
Y230800D03*
X169000Y223200D03*
Y230800D03*
X135000Y256200D03*
Y263800D03*
X331500Y171300D03*
Y163700D03*
X280000Y183700D03*
Y191300D03*
X195000Y284200D03*
Y291800D03*
X239000Y284800D03*
Y277200D03*
G54D66*
X331000Y152500D03*
X344000D03*
G54D67*
X315800Y141000D03*
X296200D03*
X326700Y137500D03*
X346300D03*
G54D68*
X177500Y199500D03*
X189500D03*
X166000Y186000D03*
X178000D03*
G54D69*
X342500Y165200D03*
Y184800D03*
G54D70*
X187000Y110063D03*
Y119937D03*
X157500Y110063D03*
Y119937D03*
X125000Y150000D03*
X115000D03*
X212500D03*
Y140000D03*
X202500Y150000D03*
Y140000D03*
X160000Y315000D03*
Y325000D03*
X192500Y150000D03*
Y140000D03*
X290000Y182500D03*
X300000D03*
X182500Y150000D03*
Y140000D03*
X162500Y150000D03*
Y140000D03*
X152500Y150000D03*
Y140000D03*
X260000Y315000D03*
Y325000D03*
X270000Y315000D03*
Y325000D03*
X280000Y315000D03*
Y325000D03*
X182500Y130000D03*
X192500D03*
X152500D03*
X162500D03*
X290000Y192500D03*
X300000D03*
X290000Y315000D03*
Y325000D03*
X150000Y315000D03*
Y325000D03*
X300000Y315000D03*
Y325000D03*
X186500Y188500D03*
X196500D03*
X310000Y315000D03*
Y325000D03*
X125000Y220000D03*
X115000D03*
X125000Y210000D03*
X115000D03*
X125000Y230000D03*
X115000D03*
X125000Y240000D03*
X115000D03*
X172500Y150000D03*
Y140000D03*
X125000Y250000D03*
X115000D03*
X202500Y125000D03*
Y115000D03*
X125000Y270000D03*
X115000D03*
X210000Y315000D03*
Y325000D03*
X125000Y280000D03*
X115000D03*
X220000Y315000D03*
Y325000D03*
X125000Y290000D03*
X115000D03*
X320000Y315000D03*
Y325000D03*
X125000Y300000D03*
X115000D03*
X290000Y282500D03*
X300000D03*
X140000Y315000D03*
Y325000D03*
X290000Y272500D03*
X300000D03*
X170000Y315000D03*
Y325000D03*
X230000Y315000D03*
Y325000D03*
X290000Y262500D03*
X300000D03*
X180000Y315000D03*
Y325000D03*
X262500Y150000D03*
Y140000D03*
X190000Y315000D03*
Y325000D03*
X252500Y150000D03*
Y140000D03*
X200000Y315000D03*
Y325000D03*
X242500Y150000D03*
Y140000D03*
X290000Y252500D03*
X300000D03*
X125000Y160000D03*
X115000D03*
X240000Y315000D03*
Y325000D03*
X290000Y242500D03*
X300000D03*
X290000Y232500D03*
X300000D03*
X290000Y222500D03*
X300000D03*
X290000Y212500D03*
X300000D03*
X290000Y202500D03*
X300000D03*
X355000Y185000D03*
X365000D03*
X282500Y150000D03*
Y140000D03*
X272500Y150000D03*
Y140000D03*
X232500Y150000D03*
Y140000D03*
X125000Y260000D03*
X115000D03*
X250000Y315000D03*
Y325000D03*
X222500Y150000D03*
Y140000D03*
X125000Y170000D03*
X115000D03*
X125000Y180000D03*
X115000D03*
X125000Y190000D03*
X115000D03*
X125000Y200000D03*
X115000D03*
X366000Y252000D03*
X356000D03*
X330000Y296000D03*
X340000D03*
X318000Y190000D03*
Y180000D03*
X335500Y324937D03*
Y315063D03*
X227500Y115000D03*
Y125000D03*
X237500Y115000D03*
Y125000D03*
X247500Y115000D03*
Y125000D03*
X257500Y115000D03*
Y125000D03*
X267500Y115000D03*
Y125000D03*
G54D71*
X366000Y226500D03*
Y214500D03*
G54D72*
X320000Y115000D03*
Y125000D03*
X330000Y115000D03*
Y125000D03*
X340000Y115000D03*
Y125000D03*
X365000Y150000D03*
X355000D03*
X365000Y160000D03*
X355000D03*
X365000Y170000D03*
X355000D03*
X367000Y269000D03*
X357000Y274000D03*
X367000Y279000D03*
X357000Y284000D03*
X367000Y289000D03*
X357000Y294000D03*
G54D73*
X319000Y225000D03*
Y215000D03*
X327000D03*
Y225000D03*
X155142Y231000D03*
X174858D03*
X138000Y152400D03*
Y125000D03*
X214800Y175500D03*
X273000D03*
X309700Y182000D03*
X260500Y184000D03*
X185000Y277000D03*
X160000D03*
X309700Y242500D03*
X253000Y206000D03*
Y266000D03*
X260500Y218500D03*
G54D74*
X338000Y196000D03*
Y244000D03*
G54D76*
X148000Y275000D03*
X138000D03*
G54D77*
X355000Y200800D03*
Y193200D03*
X282000Y156200D03*
Y163800D03*
X310000Y290200D03*
Y297800D03*
X174500Y128300D03*
Y120700D03*
X145600Y128800D03*
Y121200D03*
X219800Y124200D03*
Y131800D03*
X212100Y132000D03*
Y124400D03*
X332000Y281200D03*
Y288800D03*
Y267200D03*
Y274800D03*
X320500Y196700D03*
Y204300D03*
G54D78*
X120000Y120000D03*
X360000Y320000D03*
X120000D03*
X360000Y120000D03*
G54D79*
X188100Y207600D03*
X195700D03*
X251800Y227000D03*
X244200D03*
X305200Y220000D03*
X312800D03*
X305200Y210000D03*
X312800D03*
X231200Y298000D03*
X238800D03*
X335800Y305200D03*
X343400D03*
X251200Y193000D03*
X258800D03*
G54D80*
X280971Y127342D03*
Y110342D03*
X306171D03*
Y127342D03*
X323500Y259900D03*
X340500D03*
Y285100D03*
X323500D03*
G54D81*
X192567Y240736D03*
Y242705D03*
Y244673D03*
Y246642D03*
Y248610D03*
Y250579D03*
Y252547D03*
Y254516D03*
Y256484D03*
Y258453D03*
Y260421D03*
Y262390D03*
Y264358D03*
Y266327D03*
Y268295D03*
Y270264D03*
X238433D03*
Y268295D03*
Y266327D03*
Y264358D03*
Y262390D03*
Y260421D03*
Y258453D03*
Y256484D03*
Y254516D03*
Y252547D03*
Y250579D03*
Y248610D03*
Y246642D03*
Y244673D03*
Y242705D03*
Y240736D03*
G54D82*
X200736Y278433D03*
X202705D03*
X204673D03*
X206642D03*
X208610D03*
X210579D03*
X212547D03*
X214516D03*
X216484D03*
X218453D03*
X220421D03*
X222390D03*
X224358D03*
X226327D03*
X228295D03*
X230264D03*
Y232567D03*
X228295D03*
X226327D03*
X224358D03*
X222390D03*
X220421D03*
X218453D03*
X216484D03*
X214516D03*
X212547D03*
X210579D03*
X208610D03*
X206642D03*
X204673D03*
X202705D03*
X200736D03*
G54D83*
X163500Y196600D03*
Y203400D03*
X201000Y200000D03*
G54D84*
X322200Y171600D03*
Y153400D03*
Y162500D03*
G54D85*
X297800D03*
G54D86*
X316500Y277500D03*
Y269500D03*
X308500Y273500D03*
G54D87*
X232000Y195000D03*
X237500Y185000D03*
G54D89*
X336200Y213500D03*
X354800D03*
X0Y0D02*
M02*
/Modules/ARM/STM32F10xRxT/CAM_PROFI/V2.PHO
0,0 → 1,5469
*
*
G04 PADS 9.2 Build Number: 414666 generated Gerber (RS-274-X) file*
G04 PC Version=2.1*
*
%IN "STM32F10XRXT.pcb"*%
*
%MOIN*%
*
%FSLAX35Y35*%
*
*
*
*
G04 PC Standard Apertures*
*
*
G04 Thermal Relief Aperture macro.*
%AMTER*
1,1,$1,0,0*
1,0,$1-$2,0,0*
21,0,$3,$4,0,0,45*
21,0,$3,$4,0,0,135*
%
*
*
G04 Annular Aperture macro.*
%AMANN*
1,1,$1,0,0*
1,0,$2,0,0*
%
*
*
G04 Odd Aperture macro.*
%AMODD*
1,1,$1,0,0*
1,0,$1-0.005,0,0*
%
*
*
G04 PC Custom Aperture Macros*
*
*
*
*
*
*
G04 PC Aperture Table*
*
%ADD012R,0.07X0.07*%
%ADD013C,0.23622*%
%ADD014C,0.05*%
%ADD017C,0.02*%
%ADD019C,0.03*%
%ADD020C,0.012*%
%ADD022C,0.055*%
%ADD024C,0.001*%
%ADD025C,0.01*%
%ADD031C,0.07*%
%ADD035C,0.065*%
%ADD040R,0.06X0.06*%
%ADD043R,0.1X0.055*%
%ADD044R,0.039X0.056*%
%ADD045R,0.056X0.039*%
%ADD046R,0.055X0.1*%
%ADD047R,0.05X0.105*%
%ADD048R,0.04X0.06*%
%ADD049R,0.105X0.05*%
%ADD050R,0.065X0.065*%
%ADD051R,0.06X0.04*%
%ADD052C,0.14*%
%ADD053R,0.056X0.107*%
%ADD054R,0.051X0.039*%
%ADD055R,0.039X0.051*%
%ADD057O,0.05984X0.01339*%
%ADD058O,0.01339X0.05984*%
%ADD059R,0.072X0.06*%
%ADD060R,0.07X0.147*%
%ADD061R,0.04X0.04*%
%ADD062C,0.025*%
%ADD088R,0.05X0.14*%
*
*
*
*
G04 PC Circuitry*
G04 Layer Name STM32F10XRXT.pcb - circuitry*
%LPD*%
*
*
G04 PC Custom Flashes*
G04 Layer Name STM32F10XRXT.pcb - flashes*
%LPD*%
*
*
G04 PC Circuitry*
G04 Layer Name STM32F10XRXT.pcb - circuitry*
%LPD*%
*
G54D12*
G01X320000Y115000D03*
Y125000D03*
X330000Y115000D03*
Y125000D03*
X340000Y115000D03*
Y125000D03*
X365000Y150000D03*
X355000D03*
X365000Y160000D03*
X355000D03*
X365000Y170000D03*
X355000D03*
X367000Y269000D03*
X357000Y274000D03*
X367000Y279000D03*
X357000Y284000D03*
X367000Y289000D03*
X357000Y294000D03*
G54D13*
X120000Y120000D03*
X360000Y320000D03*
X120000D03*
X360000Y120000D03*
G54D14*
X232000Y195000D03*
G54D17*
X227500Y115000D02*
Y125000D01*
X330000Y109900D02*
X334900D01*
X340000Y115000*
X330000Y109900D02*
X325100D01*
X320000Y115000*
X106500Y185100D02*
X139650D01*
X149200Y194650*
Y195500*
X115000Y190000D02*
X125000D01*
X115000Y180000D02*
X125000D01*
X115000Y170000D02*
X125000D01*
X120000Y120000D02*
X145100Y145100D01*
Y152300*
X169300Y176500*
X184500*
X196500Y188500*
X115000Y160000D02*
X125000D01*
X152500Y140000D02*
Y148250D01*
X115000Y150000D02*
X125000D01*
X227500Y125000D02*
X224700Y127800D01*
X212100Y124400D02*
X212700D01*
X216100Y127800*
X224700*
X212100Y124400D02*
X211500D01*
X207600Y128300*
Y158700*
X214800Y165900*
Y175500*
X222500Y140000D02*
Y150000D01*
X232500Y140000D02*
Y150000D01*
X172500Y140000D02*
Y148250D01*
X162500Y130000D02*
X152500D01*
X192500D02*
X182500D01*
X162500Y140000D02*
Y148250D01*
X182500Y140000D02*
Y150000D01*
X192500Y140000D02*
Y150000D01*
X202500Y140000D02*
Y150000D01*
X212500Y140000D02*
Y150000D01*
X319000Y165100D02*
X316500Y167600D01*
Y180000*
X318000*
X261000Y193000D02*
X258800D01*
X267000Y185500D02*
Y187000D01*
X261000Y193000*
X267000Y179100D02*
Y185500D01*
X273000Y175500D02*
X277350Y181565D01*
X278881Y183700*
X280000*
X267500Y125000D02*
X272900D01*
X275242Y127342*
X280971*
X257500Y125000D02*
X267500D01*
X318000Y180000D02*
X324300D01*
X258800Y193000D02*
Y207516D01*
X244200Y222116*
Y227000*
X272500Y140000D02*
Y150000D01*
X282500Y140000D02*
Y150000D01*
X242500Y140000D02*
Y150000D01*
X252500Y140000D02*
Y150000D01*
X262500Y140000D02*
Y150000D01*
X300000Y192500D02*
X308000Y200500D01*
X330338*
X290000Y192500D02*
X300000D01*
X290000Y191300D02*
X280000D01*
X279150*
X247750Y222700*
Y235000*
X246800*
X319000Y165100D02*
X321600Y162500D01*
X322200*
X338000Y196000D02*
X330338Y200500D01*
X365000Y170000D02*
X369900Y174900D01*
Y198000*
X360100Y207800*
Y220000*
X353600Y226500*
X344300*
X365000Y150000D02*
X370100Y155100D01*
Y164900*
X365000Y170000*
X331900Y180000D02*
X332800Y181483D01*
X338250Y183300*
X342500*
Y184800*
X331500Y171300D02*
X322200D01*
Y171600*
X331500Y171300D02*
X332506D01*
Y180000*
X331900*
X135000Y255619D02*
X129381D01*
X125000Y260000*
X135000Y255619D02*
Y256200D01*
X115000Y200000D02*
X125000D01*
X148000Y275000D02*
X153000D01*
X155000Y277000*
X160000*
X115000Y260000D02*
X125000D01*
X115000Y270000D02*
X125000D01*
X115000Y250000D02*
X125000D01*
X115000Y240000D02*
X125000D01*
Y230000D02*
X115000D01*
Y210000D02*
X125000D01*
Y220000D02*
X115000D01*
X146000Y251500D02*
Y253250D01*
X142000*
X136800Y255250*
X135000*
Y255619*
X200650Y215850D02*
X200300D01*
X199250*
Y215252D02*
Y215500D01*
X200300*
X199250*
Y215850*
X305200Y210000D02*
Y210913D01*
X300000*
X305200Y220000D02*
Y220913D01*
X300000*
X244200Y227000D02*
Y227125D01*
X239200Y234625*
Y235000*
X290000Y202500D02*
X300000D01*
X290000Y212500D02*
X300000D01*
X290000Y222500D02*
X300000D01*
X290000Y232500D02*
X300000D01*
X290000Y242500D02*
X300000D01*
X290000Y252500D02*
X300000D01*
X290000Y262500D02*
X300000D01*
X290000Y272500D02*
X300000D01*
X329998Y220100D02*
X331998Y222100D01*
X336200*
X329998Y220100D02*
X323900D01*
X319000Y225000*
X336200Y213500D02*
X336700D01*
Y226500*
X336200Y213500D02*
Y222100D01*
X355000Y200800D02*
Y213500D01*
X354800*
X140000Y315000D02*
Y325000D01*
X115000Y300000D02*
X125000D01*
X115000Y290000D02*
X125000D01*
X115000Y280000D02*
X125000D01*
X150000Y315000D02*
Y325000D01*
X170000Y315000D02*
Y325000D01*
X160000Y315000D02*
Y325000D01*
X239000Y284800D02*
X248563D01*
X275000Y311237*
Y334000*
X195000Y291800D02*
X194150D01*
X184150Y301800*
X173200*
X160000Y315000*
X195000Y284200D02*
X190100D01*
X177000Y297300*
X167700*
X150000Y315000*
X250000D02*
Y325000D01*
X290000Y282500D02*
X300000D01*
X270000Y315000D02*
Y325000D01*
X260000Y315000D02*
Y325000D01*
G54D19*
X330000Y115000D02*
Y125000D01*
X152500Y148250D02*
X154250Y150000D01*
X152500*
X162500Y148250D02*
X164250Y150000D01*
X162500*
X182500Y128300D02*
Y130000D01*
X172500Y148250D02*
X174250Y150000D01*
X172500*
X290000Y191300D02*
Y192500D01*
X262500Y150000D02*
X264250D01*
X315800Y141000D02*
Y142895D01*
X319500Y146595*
X322100Y133000D02*
X326700Y133958D01*
Y137500*
X322100Y133000D02*
X311900D01*
X309900Y135000*
X365000Y170000D02*
X355000D01*
Y160000D02*
X348400D01*
X347400Y161000*
X355000Y160000D02*
X365000D01*
X330000Y125000D02*
X328089D01*
X327700Y133750*
Y137500*
X326700*
X300000Y210913D02*
Y212500D01*
Y220913D02*
Y222500D01*
G54D20*
X157500Y119937D02*
X151863D01*
X150600Y121200*
X145600*
X237500Y115000D02*
X232500Y120000D01*
Y128197*
X228897Y131800*
X219800*
X202500Y115000D02*
X143500D01*
X138000Y120500*
Y125000*
X187000Y119937D02*
X180781D01*
X180019Y120700*
X174500*
X273321Y110500D02*
X287471Y124650D01*
Y156926*
X284297Y160100*
X279223*
X260500Y178823*
Y184000*
X273321Y110500D02*
X262000D01*
X257500Y115000*
X242300Y107500D02*
X221452D01*
X213952Y115000*
X202500*
X242300Y107500D02*
Y120200D01*
X237500Y125000*
X242300Y107500D02*
X277166D01*
X280971Y110342*
X267500Y115000D02*
X275275D01*
X285671Y125395*
Y130834*
X282500Y134005*
Y140000*
X247500Y115000D02*
X252500Y120000D01*
Y128197*
X256803Y132500*
X265000*
X272500Y140000*
X365300Y106900D02*
X373100Y114700D01*
Y207400*
X366000Y214500*
X365300Y106900D02*
X316700D01*
X313258Y110342*
X306171*
X145600Y128800D02*
X152500D01*
X138000Y152400D02*
X154100Y168500D01*
X156100*
X172000Y184400*
Y187600*
X177100Y192700*
X178300*
X183500Y197900*
Y201600*
X188100Y206200*
Y207600*
X125000Y190000D02*
X138400Y203400D01*
Y207047*
X158353Y227000*
X164350*
X168150Y230800*
X169000*
X125000Y180000D02*
X140996D01*
X153000Y192004*
Y199700*
X153600Y200300*
X156800Y202030*
Y203400*
X125000Y170000D02*
X135300D01*
X156800Y191500*
Y195500*
X125000Y160000D02*
X130528D01*
X161928Y191400*
X164735*
X170900Y197565*
Y200526*
X180300Y209926*
Y219942*
X184628Y224270*
Y237764*
X189569Y242705*
X192567*
X152500Y150000D02*
Y154450D01*
X168750Y170700*
X186897*
X205450Y189253*
Y201735*
X204673Y202512*
Y232567*
X125000Y150000D02*
X161000Y186000D01*
X166000*
X156800Y195500D02*
Y196600D01*
X163500*
X149200Y195500D02*
X147850D01*
Y203500*
X149200*
X222390Y232567D02*
Y199543D01*
Y190457*
X224358Y187611D02*
Y202389D01*
X227062Y182986D02*
X224358Y185690D01*
Y187611*
X235486Y174562D02*
X227062Y182986D01*
X219800Y124200D02*
X216800Y121200D01*
X206300*
X202500Y125000*
X163500Y196600D02*
X177600Y210700D01*
Y220636*
X182828Y225865*
Y238510*
X188992Y244673*
X192567*
X212100Y132000D02*
Y135200D01*
X212200Y135300*
X212300*
X212500Y135500*
Y140000*
X219800Y131800D02*
X216000D01*
X215900Y131900*
Y132000*
X212100*
X174500Y128300D02*
X182500D01*
X222500Y150000D02*
X222400D01*
Y154452*
X221100Y155752*
Y178347*
X218453Y180994*
Y232567*
X232500Y150000D02*
X232300D01*
Y154450*
X223100Y163650*
Y179355*
X220421Y182033*
Y232567*
X172500Y150000D02*
X172746D01*
Y154700*
X175988*
X209050Y187762*
Y209441*
X208610Y209880*
Y232567*
X196500Y188500D02*
Y195500D01*
X201000Y200000*
X162500Y150000D02*
X162600D01*
Y154450*
X177050Y168900*
X187643*
X207250Y188507*
Y205260*
X206642Y205868*
Y232567*
X182500Y150000D02*
Y158528D01*
X210850Y186878*
Y214895*
X210579Y215167*
Y232567*
X192500Y150000D02*
Y165844D01*
X212650Y185994*
Y220350*
X212547Y220453*
Y232567*
X202500Y150000D02*
X202600D01*
Y171871*
X214516Y183787*
Y232567*
X212500Y150000D02*
X212600D01*
Y154450*
X219250Y161100*
Y177343*
X216484Y180109*
Y232567*
X178000Y186000D02*
Y187169D01*
X186500*
Y188500*
X166000Y186000D02*
Y187000D01*
X177500Y198500*
Y199500*
X189500D02*
X189425D01*
Y200575*
X195775Y206925*
Y207600*
X177500Y199500D02*
Y201278D01*
X180700Y202700*
X183500Y205500*
Y214897*
X187300Y218697*
Y237792*
X190244Y240736*
X192567*
X316500Y162500D02*
X319000D01*
X242492Y196708D02*
X233708Y205492D01*
X245900Y191515D02*
Y193300D01*
X242492Y196708*
X245900Y178485D02*
Y191515D01*
X319000Y162500D02*
X321600D01*
X319000Y125000D02*
X320000D01*
X317658Y127342*
X306171*
X264250Y150000D02*
X245900Y168350D01*
Y178485*
X309700Y182000D02*
X300000D01*
Y182500*
X247500Y125000D02*
X237900Y134600D01*
X227900*
X222500Y140000*
X318000Y190000D02*
X319507D01*
Y196700*
X320500*
X297800Y162500D02*
X316500D01*
X251200Y193000D02*
Y193600D01*
X228295Y216505*
Y232567*
X282000Y156200D02*
Y157550D01*
X280050*
X278200Y157954*
X255000Y181154*
Y196500*
X240100Y211400*
Y220408*
X230264Y230244*
Y232567*
X272500Y150000D02*
X251200Y171300D01*
Y193000*
X282500Y150000D02*
Y156200D01*
X282000*
X242500Y150000D02*
X242200D01*
Y154450*
X225500Y171150*
Y180347*
X222390Y183458*
Y190457*
X252500Y150000D02*
X252300D01*
Y157749*
X235486Y174562*
X290000Y182500D02*
X300000D01*
X296200Y141000D02*
Y149900D01*
X297800Y151500*
Y162500*
X355000Y185000D02*
Y193200D01*
X342500Y165200D02*
X347400D01*
X331500Y163700D02*
Y164249D01*
X342500*
Y165200*
X331000Y152500D02*
Y159375D01*
X331500Y159875*
Y163700*
X331000Y152500D02*
X322200D01*
Y153400*
X157500Y247500D02*
X170421Y260421D01*
X192567*
X157500Y247500D02*
X133602D01*
X131102Y250000*
X125000*
X129450Y229800D02*
X141950Y242300D01*
X166277*
X180477Y256500*
X129450Y229800D02*
X125000D01*
Y230000*
X146000Y264500D02*
X135000D01*
Y268400*
X135800Y270250*
Y275000*
X138000*
X163500Y203400D02*
X156800D01*
Y203500*
X125000Y200000D02*
X140547Y215547D01*
Y216405*
X155142Y231000*
X125000Y270000D02*
X130000Y275000D01*
X135800*
X125000Y240000D02*
X134167D01*
X138867Y244700*
X164886*
X178186Y258000*
X179400Y258453*
X192567*
X125000Y210000D02*
X152600Y237600D01*
X168259*
X183206Y252547*
X192567*
X125000Y220000D02*
Y220200D01*
X129700*
X149500Y240000*
X167264*
X181780Y254516*
X192567*
X135000Y263800D02*
Y264500D01*
X149200Y203500D02*
Y212250D01*
X160150Y223200*
X161000*
X146000Y251500D02*
X150701D01*
X161590Y262390*
X161590D02*
X192567D01*
X200650Y215500D02*
X200800D01*
Y223500*
X201300*
X231500Y271700D02*
X233500D01*
X235351Y273551*
Y274401*
X238150Y277200*
X239000*
X233708Y205492D02*
X226327Y212873D01*
Y232567*
X224358Y202389D02*
Y232567D01*
X201500Y271700D02*
X199700Y273500D01*
X188500*
X185000Y277000*
X204673Y271700D02*
X204603Y271629D01*
X201571*
X201500Y271700*
X204673D02*
Y278433D01*
X231239Y271163D02*
X231400Y271700D01*
X231500*
X195775Y207600D02*
Y211279D01*
X196450Y211954*
Y219046*
X195396Y220100*
X194100*
X193700Y220500*
Y223500*
X174858Y231000D02*
X178005Y234147D01*
Y238817*
X187798Y248610*
X192567*
X201000Y200000D02*
Y207600D01*
X200300Y208300*
Y215500*
X163500Y203400D02*
Y210167D01*
X180400Y227067*
Y238667*
X188375Y246642*
X192567*
X200736Y232567D02*
Y237067D01*
X201500Y237831*
Y241500*
X208610Y232567D02*
Y236759D01*
X208651Y236800*
X230997*
X238433Y240736D02*
X232764D01*
X231500Y242000*
X238433Y256484D02*
X255692D01*
X255825Y256542*
X256873Y257000*
X262373Y262500*
X290000*
X238433Y258453D02*
X254932D01*
X268979Y272500*
X290000*
X238433Y260421D02*
X254235D01*
X276313Y282500*
X290000*
X238433Y262390D02*
X243779D01*
X248550Y267160*
Y267843*
X255192Y274486*
X238433Y264358D02*
X243202D01*
X246700Y267856*
Y268539*
X254496Y276335*
X238433Y266327D02*
X238433D01*
X242625*
X244900Y268602*
Y269284*
X253646Y278030*
X238433Y268295D02*
X241431D01*
X242888Y269752*
Y269818*
X252619Y279549*
X238433Y270264D02*
X240756D01*
X251412Y280919*
X228295Y278433D02*
X228300D01*
Y282625*
X230475Y284800*
X239000*
X226327Y278433D02*
Y283202D01*
X230876Y287751*
X230927*
X231676Y288500*
X243500*
X270000Y315000*
X224358Y278433D02*
Y284152D01*
X231457Y291251*
X238248*
X251275Y304278*
Y306275*
X260000Y315000*
X222390Y278433D02*
Y284729D01*
X230760Y293100*
X235049*
X235449Y293500*
Y294049*
X238800Y297400*
Y298000*
X220421Y278433D02*
Y285387D01*
X225292Y290258*
Y295825*
X218453Y278433D02*
Y286045D01*
X223379Y290971*
Y295825*
X216484Y278433D02*
Y295825D01*
X214516Y278433D02*
Y285541D01*
X213695Y286362*
Y295825*
X212547Y278433D02*
Y284833D01*
X211895Y285485*
Y295825*
X210579Y278433D02*
Y283567D01*
X210100Y284046*
Y285229*
X209175Y286154*
Y295825*
X208610Y278433D02*
Y282887D01*
X208300Y283197*
Y284362*
X201862Y290800*
Y295825*
X206642Y278433D02*
Y280756D01*
X206500Y282700*
Y283567*
X199697Y290370*
Y295714*
X189411Y306000*
X179000*
X170000Y315000*
X204673Y278433D02*
Y282800D01*
X197200Y290273*
Y291800*
X195000*
X202705Y278433D02*
Y282100D01*
X200605Y284200*
X195000*
X200736Y278433D02*
X191567D01*
X177000Y293000*
X162000*
X140000Y315000*
X192567Y270264D02*
X185806D01*
X185569Y270500*
X181860*
X152360Y300000*
X125000*
X192567Y268295D02*
X181000D01*
X162295Y287000*
X144983*
X141983Y290000*
X125000*
X192567Y266327D02*
X179000D01*
X178829Y266500*
X163229Y282100*
X192567Y264358D02*
X153180D01*
X153038Y264500*
X146000*
X192567Y256484D02*
X184805D01*
X184789Y256500*
X180477*
X195700Y207600D02*
X195775D01*
X188100D02*
X189400D01*
Y211350*
X192700Y214650*
Y215500*
X239000Y277200D02*
Y278433D01*
X230264*
X192700Y215500D02*
Y216256D01*
X189950Y219197*
Y229675*
X197359Y237084*
Y251602*
X196413Y252547*
X192567*
X200300Y215500D02*
X198850D01*
Y215850*
X199250*
X200300Y215500D02*
X200650D01*
X169000Y230800D02*
Y231000D01*
X174858*
X161000Y230800D02*
X161647D01*
X165747Y234900*
X170693*
X185793Y250000*
X186912Y250579*
X192567*
X161000Y230800D02*
Y231000D01*
X155142*
X161000Y223200D02*
X169000D01*
X193700Y223500D02*
Y227500D01*
X198767Y232567*
X200736*
X201300Y223500D02*
X201830D01*
Y227500*
X202230Y227900*
X202300*
X202705Y228305*
Y232567*
X239200Y235000D02*
Y239969D01*
X238433Y240736*
X253646Y278030D02*
X272707Y297092D01*
X282092*
X300000Y315000*
X252619Y279549D02*
X272070Y299000D01*
X274000*
X290000Y315000*
X254496Y276335D02*
X273161Y295000D01*
X290000*
X310000Y315000*
X255192Y274486D02*
X273707Y293000D01*
X298000*
X320000Y315000*
X309700Y242500D02*
Y263000D01*
X316500Y269500*
X253000Y206000D02*
X245877Y213123D01*
Y217252*
X234100Y229029*
Y233697*
X230997Y236800*
X253000Y266000D02*
X277200Y290200D01*
X310000*
X260500Y218500D02*
X256553Y222447D01*
X255753*
X251800Y226400*
Y227000*
X308500Y273500D02*
Y281125D01*
X310000Y282625*
Y290200*
X316500Y277500D02*
X323973D01*
X327173Y280700*
X251800Y227000D02*
Y236700D01*
X243827Y244673*
X238433*
X319000Y215000D02*
X312800Y218899D01*
Y220000*
X319000Y225000D02*
X318800Y225200D01*
X318300*
X290000Y202500D02*
X274000Y218500D01*
X260500*
X290000Y212500D02*
X275000Y227500D01*
X263885*
X244743Y246642*
X238433*
X290000Y222500D02*
X282500Y230000D01*
X264894*
X246894Y248000*
X245807Y248610*
X238433*
X300000Y232500D02*
X306989D01*
X332900Y258411*
Y259795*
X341205Y268100*
X361000*
X361900Y269000*
X367000*
X290000Y232500D02*
X265788D01*
X248288Y250000*
X247170Y250579*
X238433*
X300000Y242500D02*
X306200Y248700D01*
Y263800*
X312500Y270100*
Y272100*
X313100Y272700*
X323400*
X290000Y242500D02*
X259608D01*
X249561Y252547*
X238433*
X290000Y252500D02*
X273274D01*
X271259Y254516*
X238433*
X246800Y235000D02*
Y239000D01*
X243095Y242705*
X238433*
X335900Y271000D02*
X342900Y278000D01*
X351000*
X357000Y284000*
X335900Y271000D02*
X325100D01*
X323400Y272700*
X320500Y204300D02*
Y208500D01*
X327000Y215000*
X320500Y204300D02*
X319403D01*
X316853Y206850*
X315847*
X312800Y209897*
Y210000*
X332000Y274800D02*
Y281200D01*
Y267200D02*
X335900D01*
X342700Y274000*
X357000*
X332000Y267200D02*
X325100D01*
X322800Y269500*
X316500*
X366000Y252000D02*
Y257876D01*
X372000Y263876*
Y284000*
X367000Y279000D02*
X362000Y284000D01*
Y287697*
X360697Y289000*
X347000*
X340000Y296000*
X338000Y244000D02*
Y252500D01*
X340500Y255000*
Y259900*
X366000Y226500D02*
Y242000D01*
X356000Y252000*
X125000Y280000D02*
X130365D01*
X132365Y282000*
X154900*
X155000Y282100*
X163229*
X225292Y295825D02*
Y300292D01*
X240000Y315000*
X223379Y295825D02*
Y308379D01*
X230000Y315000*
X216484Y295825D02*
Y302252D01*
X220000Y305768*
Y315000*
X213695Y295825D02*
Y310777D01*
X210000Y314472*
Y315000*
X211895Y295825D02*
Y303105D01*
X200000Y315000*
X209175Y295825D02*
X190000Y315000D01*
X201862Y295825D02*
Y296518D01*
X190380Y308000*
X187000*
X180000Y315000*
X238800Y298000D02*
Y298600D01*
X250000Y309800*
Y315000*
X231200Y298000D02*
Y298600D01*
X236875Y304275*
X237472*
X245000Y311803*
Y334000*
X200000Y315000D02*
Y325000D01*
X190000Y315000D02*
Y325000D01*
X180000Y315000D02*
Y325000D01*
X230000Y315000D02*
Y325000D01*
X220000Y315000D02*
Y325000D01*
X210000Y315000D02*
Y325000D01*
X251412Y280919D02*
X280000Y309508D01*
Y315000*
X310000Y297800D02*
X318237D01*
X335500Y315063*
X310000Y290200D02*
X310600D01*
X314900Y294500*
X318900*
X325500Y301100*
X332300*
X335800Y304600*
Y305200*
X240000Y315000D02*
Y325000D01*
X310000Y315000D02*
Y325000D01*
X300000Y315000D02*
Y325000D01*
X290000Y315000D02*
Y325000D01*
X280000Y315000D02*
Y325000D01*
X327173Y280700D02*
X327673Y281200D01*
X332000*
X327173Y280700D02*
Y281427D01*
X323500Y285100*
X372000Y284000D02*
X367000Y289000D01*
X332000Y288800D02*
Y296000D01*
X330000*
X320000Y315000D02*
Y325000D01*
G54D22*
X163500Y196600D03*
Y203400D03*
X201000Y200000D03*
G54D24*
G54D25*
X309900Y134000D02*
Y150500D01*
X316000*
Y160000*
X325400*
Y165100*
X316000*
Y181095*
X311247Y185500*
X267000*
Y176707*
X279707Y164000*
X287207*
X292000Y159207*
Y134000*
X309900*
X319500Y146000D02*
Y155900D01*
X328600*
Y165400*
X337600*
Y167300*
X347400*
Y160900*
X336500*
Y146000*
X319500*
X201500Y271700D02*
X231500D01*
Y241500*
X201500*
Y271700*
X279108Y164599D02*
X325400D01*
X287508Y163699D02*
X325400D01*
X288408Y162799D02*
X325400D01*
X289308Y161899D02*
X325400D01*
X290208Y160999D02*
X325400D01*
X291108Y160099D02*
X325400D01*
X267000Y180799D02*
X316000D01*
X267000Y179899D02*
X316000D01*
X267000Y178999D02*
X316000D01*
X267000Y178099D02*
X316000D01*
X267000Y177199D02*
X316000D01*
X267408Y176299D02*
X316000D01*
X268308Y175399D02*
X316000D01*
X269208Y174499D02*
X316000D01*
X270108Y173599D02*
X316000D01*
X271008Y172699D02*
X316000D01*
X271908Y171799D02*
X316000D01*
X272808Y170899D02*
X316000D01*
X273708Y169999D02*
X316000D01*
X274608Y169099D02*
X316000D01*
X275508Y168199D02*
X316000D01*
X276408Y167299D02*
X316000D01*
X277308Y166399D02*
X316000D01*
X278208Y165499D02*
X316000D01*
X292000Y159199D02*
X316000D01*
X292000Y158299D02*
X316000D01*
X292000Y157399D02*
X316000D01*
X292000Y156499D02*
X316000D01*
X292000Y155599D02*
X316000D01*
X292000Y154699D02*
X316000D01*
X292000Y153799D02*
X316000D01*
X292000Y152899D02*
X316000D01*
X292000Y151999D02*
X316000D01*
X292000Y151099D02*
X316000D01*
X267000Y181699D02*
X315349D01*
X267000Y182599D02*
X314377D01*
X267000Y183499D02*
X313406D01*
X267000Y184399D02*
X312435D01*
X267000Y185299D02*
X311464D01*
X292000Y150199D02*
X309900D01*
X292000Y149299D02*
X309900D01*
X292000Y148399D02*
X309900D01*
X292000Y147499D02*
X309900D01*
X292000Y146599D02*
X309900D01*
X292000Y145699D02*
X309900D01*
X292000Y144799D02*
X309900D01*
X292000Y143899D02*
X309900D01*
X292000Y142999D02*
X309900D01*
X292000Y142099D02*
X309900D01*
X292000Y141199D02*
X309900D01*
X292000Y140299D02*
X309900D01*
X292000Y139399D02*
X309900D01*
X292000Y138499D02*
X309900D01*
X292000Y137599D02*
X309900D01*
X292000Y136699D02*
X309900D01*
X292000Y135799D02*
X309900D01*
X292000Y134899D02*
X309900D01*
X337600Y166699D02*
X347400D01*
X337600Y165799D02*
X347400D01*
X328600Y164899D02*
X347400D01*
X328600Y163999D02*
X347400D01*
X328600Y163099D02*
X347400D01*
X328600Y162199D02*
X347400D01*
X328600Y161299D02*
X347400D01*
X328600Y160399D02*
X336500D01*
X328600Y159499D02*
X336500D01*
X328600Y158599D02*
X336500D01*
X328600Y157699D02*
X336500D01*
X328600Y156799D02*
X336500D01*
X319500Y155899D02*
X336500D01*
X319500Y154999D02*
X336500D01*
X319500Y154099D02*
X336500D01*
X319500Y153199D02*
X336500D01*
X319500Y152299D02*
X336500D01*
X319500Y151399D02*
X336500D01*
X319500Y150499D02*
X336500D01*
X319500Y149599D02*
X336500D01*
X319500Y148699D02*
X336500D01*
X319500Y147799D02*
X336500D01*
X319500Y146899D02*
X336500D01*
X201500Y271199D02*
X231500D01*
X201500Y270299D02*
X231500D01*
X201500Y269399D02*
X231500D01*
X201500Y268499D02*
X231500D01*
X201500Y267599D02*
X231500D01*
X201500Y266699D02*
X231500D01*
X201500Y265799D02*
X231500D01*
X201500Y264899D02*
X231500D01*
X201500Y263999D02*
X231500D01*
X201500Y263099D02*
X231500D01*
X201500Y262199D02*
X231500D01*
X201500Y261299D02*
X231500D01*
X201500Y260399D02*
X231500D01*
X201500Y259499D02*
X231500D01*
X201500Y258599D02*
X231500D01*
X201500Y257699D02*
X231500D01*
X201500Y256799D02*
X231500D01*
X201500Y255899D02*
X231500D01*
X201500Y254999D02*
X231500D01*
X201500Y254099D02*
X231500D01*
X201500Y253199D02*
X231500D01*
X201500Y252299D02*
X231500D01*
X201500Y251399D02*
X231500D01*
X201500Y250499D02*
X231500D01*
X201500Y249599D02*
X231500D01*
X201500Y248699D02*
X231500D01*
X201500Y247799D02*
X231500D01*
X201500Y246899D02*
X231500D01*
X201500Y245999D02*
X231500D01*
X201500Y245099D02*
X231500D01*
X201500Y244199D02*
X231500D01*
X201500Y243299D02*
X231500D01*
X201500Y242399D02*
X231500D01*
X377900Y102600D02*
Y337400D01*
G75*
G03X377400Y337900I-500J-0D01*
G01X102600*
G03X102100Y337400I0J-500*
G01Y102600*
G03X102600Y102100I500J0*
G01X377400*
G03X377900Y102600I-0J500*
G01X315982Y200192D02*
G03Y200808I-394J308D01*
G01X315450Y202350D02*
G03X315982Y200808I2500J0D01*
G01X315450Y202350D02*
Y203364D01*
G03X315075Y203848I-500J-0*
G01X313655Y204658D02*
G03X315075Y203848I2192J2192D01*
G01X313655Y204658D02*
X313509Y204804D01*
G03X313156Y204950I-353J-354*
G01X310850*
X309308Y205482D02*
G03X310850Y204950I1542J1968D01*
G01X309308Y205482D02*
G03X308692I-308J-394D01*
G01X307150Y204950D02*
G03X308692Y205482I0J2500D01*
G01X307150Y204950D02*
X306250D01*
G03X305750Y204450I0J-500*
G01Y199250*
X303250Y196750D02*
G03X305750Y199250I0J2500D01*
G01X303250Y196750D02*
X296750D01*
X295292Y197219D02*
G03X296750Y196750I1458J2031D01*
G01X295292Y197219D02*
G03X294708I-292J-406D01*
G01X293250Y196750D02*
G03X294708Y197219I0J2500D01*
G01X293250Y196750D02*
X286750D01*
X284250Y199250D02*
G03X286750Y196750I2500J0D01*
G01X284250Y199250D02*
Y203659D01*
G03X284104Y204012I-500J-0*
G01X272862Y215254*
G03X272509Y215400I-353J-354*
G01X265609*
G03X265200Y215188I0J-500*
G01X259734Y212801D02*
G03X265200Y215188I766J5699D01*
G01X259734Y212801D02*
G03X259314Y211952I-67J-495D01*
G01X261275Y209991*
X262300Y207516D02*
G03X261275Y209991I-3500J-0D01*
G01X262300Y207516D02*
Y197740D01*
G03X262458Y197375I500J0*
G01X263230Y195864D02*
G03X262458Y197375I-2480J-314D01*
G01X263230Y195864D02*
G03X263385Y195561I496J63D01*
G01X263475Y195475D02*
G03X263385Y195561I-2475J-2475D01*
G01X263475Y195475D02*
X269475Y189475D01*
X270031Y188750D02*
G03X269475Y189475I-3031J-1750D01*
G01X270031Y188750D02*
G03X270464Y188500I433J250D01*
G01X311247*
X311678Y188469D02*
G03X311247Y188500I-431J-2969D01*
G01X311678Y188469D02*
G03X312250Y188964I72J495D01*
G01Y193250*
X314750Y195750D02*
G03X312250Y193250I0J-2500D01*
G01X314750Y195750D02*
X314950D01*
G03X315450Y196250I-0J500*
G01Y198650*
X315982Y200192D02*
G03X315450Y198650I1968J-1542D01*
G01X248700Y232056D02*
Y235209D01*
G03X248554Y235562I-500J-0*
G01X244479Y239637*
G03X243666Y239481I-354J-354*
G01X243504Y239158D02*
G03X243666Y239481I-2748J1578D01*
G01X243504Y239158D02*
G03X243473Y238724I434J-249D01*
G01X243650Y237800D02*
G03X243473Y238724I-2500J0D01*
G01X243650Y237800D02*
Y234411D01*
G03X243734Y234134I500J0*
G01X244975Y232273*
G03X245391Y232050I416J277*
G01X246150*
X247692Y231518D02*
G03X246150Y232050I-1542J-1968D01*
G01X247692Y231518D02*
G03X248308I308J394D01*
G01X248475Y231638D02*
G03X248308Y231518I1375J-2088D01*
G01X248475Y231638D02*
G03X248700Y232056I-275J418D01*
G01X274720Y308612D02*
G03X274180Y309430I-354J353D01*
G01X273250Y309250D02*
G03X274180Y309430I0J2500D01*
G01X273250Y309250D02*
X268841D01*
G03X268488Y309104I0J-500*
G01X245692Y286308*
X243500Y285400D02*
G03X245692Y286308I0J3100D01*
G01X243500Y285400D02*
X233125D01*
G03X232820Y285296I-0J-500*
G01X232786Y285271D02*
G03X232820Y285296I-1859J2480D01*
G01X232786Y285271D02*
G03X232733Y285224I300J-400D01*
G01X231777Y284268*
G03X231876Y283484I354J-353*
G01X233235Y281859D02*
G03X231876Y283484I-2971J-1103D01*
G01X233235Y281859D02*
G03X233704Y281533I469J174D01*
G01X235371*
G03X235509Y281553I-0J500*
G01X236200Y281650D02*
G03X235509Y281553I0J-2500D01*
G01X236200Y281650D02*
X241800D01*
X244292Y279350D02*
G03X241800Y281650I-2492J-200D01*
G01X244292Y279350D02*
G03X245144Y279036I498J40D01*
G01X249219Y283111*
X274720Y308612*
X237922Y303550D02*
Y307331D01*
G03X237068Y307684I-500J-0*
G01X228538Y299154*
G03X228392Y298801I354J-353*
G01Y296177*
G03X229152Y295750I500J0*
G01X230760Y296200D02*
G03X229152Y295750I0J-3100D01*
G01X230760Y296200D02*
X233009D01*
G03X233362Y296346I-0J500*
G01X234204Y297188*
G03X234350Y297541I-354J353*
G01Y300550*
X236850Y303050D02*
G03X234350Y300550I0J-2500D01*
G01X236850Y303050D02*
X237422D01*
G03X237922Y303550I-0J500*
G01X173566Y224617D02*
G03X173344Y225453I-354J354D01*
G01X171600Y226262D02*
G03X173344Y225453I3258J4738D01*
G01X171600Y226262D02*
G03X171317Y226350I-283J-412D01*
G01X168291*
G03X167938Y226204I0J-500*
G01X166542Y224808*
X164350Y223900D02*
G03X166542Y224808I0J3100D01*
G01X164350Y223900D02*
X159844D01*
G03X159491Y223754I0J-500*
G01X141646Y205909*
G03X141500Y205556I354J-353*
G01Y203400*
X140592Y201208D02*
G03X141500Y203400I-2192J2192D01*
G01X140592Y201208D02*
X130896Y191512D01*
G03X130750Y191159I354J-353*
G01Y186750*
X130281Y185292D02*
G03X130750Y186750I-2031J1458D01*
G01X130281Y185292D02*
G03Y184708I406J-292D01*
G01X130733Y183542D02*
G03X130281Y184708I-2483J-292D01*
G01X130733Y183542D02*
G03X131230Y183100I497J58D01*
G01X139504*
G03X139858Y183246I0J500*
G01X149754Y193142*
G03X149900Y193496I-354J354*
G01Y199700*
X150808Y201892D02*
G03X149900Y199700I2192J-2192D01*
G01X150808Y201892D02*
X151408Y202492D01*
X152093Y203009D02*
G03X151408Y202492I1507J-2709D01*
G01X152093Y203009D02*
G03X152350Y203446I-243J437D01*
G01Y206300*
X154850Y208800D02*
G03X152350Y206300I0J-2500D01*
G01X154850Y208800D02*
X158750D01*
X159708Y208609D02*
G03X158750Y208800I-958J-2309D01*
G01X159708Y208609D02*
G03X160400Y209071I192J462D01*
G01Y210167*
X161308Y212359D02*
G03X160400Y210167I2192J-2192D01*
G01X161308Y212359D02*
X173566Y224617D01*
X370000Y116191D02*
Y153672D01*
G03X369333Y154143I-500J-0*
G01X368500Y154000D02*
G03X369333Y154143I0J2500D01*
G01X368500Y154000D02*
X361500D01*
X360250Y154335D02*
G03X361500Y154000I1250J2165D01*
G01X360250Y154335D02*
G03X359750I-250J-433D01*
G01X358500Y154000D02*
G03X359750Y154335I0J2500D01*
G01X358500Y154000D02*
X351500D01*
X349143Y155667D02*
G03X351500Y154000I2357J833D01*
G01X349143Y155667D02*
G03X348672Y156000I-471J-167D01*
G01X348400*
X345572Y157172D02*
G03X348400Y156000I2828J2828D01*
G01X345572Y157172D02*
X344990Y157754D01*
G03X344636Y157900I-354J-354*
G01X340000*
G03X339500Y157400I0J-500*
G01Y146000*
X336500Y143000D02*
G03X339500Y146000I0J3000D01*
G01X336500Y143000D02*
X332200D01*
G03X331700Y142500I0J-500*
G01Y137500*
Y133850*
G03X331701Y133828I500J-0*
G01X331805Y131478*
G03X332304Y131000I499J22*
G01X333500*
X336000Y128500D02*
G03X333500Y131000I-2500J0D01*
G01X336000Y128500D02*
Y121500D01*
X335665Y120250D02*
G03X336000Y121500I-2165J1250D01*
G01X335665Y120250D02*
G03Y119750I433J-250D01*
G01X336000Y118500D02*
G03X335665Y119750I-2500J0D01*
G01X336000Y118500D02*
Y111500D01*
X335857Y110667D02*
G03X336000Y111500I-2357J833D01*
G01X335857Y110667D02*
G03X336328Y110000I471J-167D01*
G01X363809*
G03X364163Y110146I0J500*
G01X369854Y115837*
G03X370000Y116191I-354J354*
G01Y166328D02*
Y179023D01*
G03X369292Y179477I-500J-0*
G01X368250Y179250D02*
G03X369292Y179477I0J2500D01*
G01X368250Y179250D02*
X364760D01*
G03X364407Y179104I0J-500*
G01X360252Y174948*
X357600Y173850D02*
G03X360252Y174948I0J3750D01*
G01X357600Y173850D02*
X352310D01*
G03X351957Y173704I0J-500*
G01X348902Y170649*
G03X349005Y169862I353J-354*
G01X349971Y168848D02*
G03X349005Y169862I-2221J-1148D01*
G01X349971Y168848D02*
G03X349984Y168824I444J229D01*
G01X350400Y167300D02*
G03X349984Y168824I-3000J0D01*
G01X350400Y167300D02*
Y166439D01*
G03X351000Y165950I500J0*
G01X351500Y166000D02*
G03X351000Y165950I0J-2500D01*
G01X351500Y166000D02*
X358500D01*
X359750Y165665D02*
G03X358500Y166000I-1250J-2165D01*
G01X359750Y165665D02*
G03X360250I250J433D01*
G01X361500Y166000D02*
G03X360250Y165665I0J-2500D01*
G01X361500Y166000D02*
X368500D01*
X369333Y165857D02*
G03X368500Y166000I-833J-2357D01*
G01X369333Y165857D02*
G03X370000Y166328I167J471D01*
G01Y190977D02*
Y205909D01*
G03X369854Y206262I-500J-0*
G01X366262Y209854*
G03X365909Y210000I-353J-354*
G01X363000*
X360750Y211410D02*
G03X363000Y210000I2250J1090D01*
G01X360750Y211410D02*
G03X359800Y211192I-450J-218D01*
G01Y206500*
X359349Y205067D02*
G03X359800Y206500I-2049J1433D01*
G01X359349Y205067D02*
G03X359390Y204442I409J-286D01*
G01X360050Y202750D02*
G03X359390Y204442I-2500J0D01*
G01X360050Y202750D02*
Y198850D01*
X359518Y197308D02*
G03X360050Y198850I-1968J1542D01*
G01X359518Y197308D02*
G03Y196692I394J-308D01*
G01X360050Y195150D02*
G03X359518Y196692I-2500J0D01*
G01X360050Y195150D02*
Y191250D01*
X360041Y191037D02*
G03X360050Y191250I-2491J213D01*
G01X360041Y191037D02*
G03X360741Y190537I498J-42D01*
G01X361750Y190750D02*
G03X360741Y190537I0J-2500D01*
G01X361750Y190750D02*
X368250D01*
X369292Y190523D02*
G03X368250Y190750I-1042J-2273D01*
G01X369292Y190523D02*
G03X370000Y190977I208J454D01*
G01X376200Y207400D02*
Y114700D01*
X375292Y112508D02*
G03X376200Y114700I-2192J2192D01*
G01X375292Y112508D02*
X367492Y104708D01*
X365300Y103800D02*
G03X367492Y104708I0J3100D01*
G01X365300Y103800D02*
X316700D01*
X314508Y104708D02*
G03X316700Y103800I2192J2192D01*
G01X314508Y104708D02*
X312120Y107096D01*
G03X311767Y107242I-353J-354*
G01X311583*
G03X311166Y107019I-0J-500*
G01Y113665D02*
G03Y107019I-4995J-3323D01*
G01Y113665D02*
G03X311583Y113442I417J277D01*
G01X313258*
X315450Y112534D02*
G03X313258Y113442I-2192J-2192D01*
G01X315450Y112534D02*
X317838Y110146D01*
G03X318191Y110000I353J354*
G01X323672*
G03X324143Y110667I-0J500*
G01X324000Y111500D02*
G03X324143Y110667I2500J0D01*
G01X324000Y111500D02*
Y118500D01*
X324335Y119750D02*
G03X324000Y118500I2165J-1250D01*
G01X324335Y119750D02*
G03Y120250I-433J250D01*
G01X324000Y121500D02*
G03X324335Y120250I2500J0D01*
G01X324000Y121500D02*
Y126900D01*
G03X323999Y126922I-500J0*
G01X323920Y128701*
G03X323319Y129168I-499J-22*
G01X322916Y129084*
X322100Y129000D02*
G03X322916Y129084I0J4000D01*
G01X322100Y129000D02*
X311900D01*
X309072Y130172D02*
G03X311900Y129000I2828J2828D01*
G01X309072Y130172D02*
X308390Y130854D01*
G03X308036Y131000I-354J-354*
G01X292000*
X291203Y131108D02*
G03X292000Y131000I797J2892D01*
G01X291203Y131108D02*
G03X290571Y130626I-132J-482D01*
G01Y124650*
X289663Y122458D02*
G03X290571Y124650I-2192J2192D01*
G01X289663Y122458D02*
X283650Y116445D01*
G03X283770Y115649I353J-354*
G01X278884Y104717D02*
G03X283770Y115649I2087J5625D01*
G01X278884Y104717D02*
G03X278496Y104700I-174J-469D01*
G01X277166Y104400D02*
G03X278496Y104700I0J3100D01*
G01X277166Y104400D02*
X242300D01*
X221452*
X219260Y105308D02*
G03X221452Y104400I2192J2192D01*
G01X219260Y105308D02*
X212815Y111754D01*
G03X212461Y111900I-354J-354*
G01X208730*
G03X208233Y111458I-0J-500*
G01X205750Y109250D02*
G03X208233Y111458I0J2500D01*
G01X205750Y109250D02*
X199250D01*
X196767Y111458D02*
G03X199250Y109250I2483J292D01*
G01X196767Y111458D02*
G03X196270Y111900I-497J-58D01*
G01X143500*
X141308Y112808D02*
G03X143500Y111900I2192J2192D01*
G01X141308Y112808D02*
X135808Y118308D01*
X134951Y119940D02*
G03X135808Y118308I3049J560D01*
G01X134951Y119940D02*
G03X134742Y120262I-492J-90D01*
G01X139890Y130431D02*
G03X134742Y120262I-1890J-5431D01*
G01X139890Y130431D02*
G03X140553Y130877I164J472D01*
G01X143050Y133250D02*
G03X140553Y130877I0J-2500D01*
G01X143050Y133250D02*
X146292D01*
G03X146785Y133667I-0J500*
G01X147219Y134708D02*
G03X146785Y133667I2031J-1458D01*
G01X147219Y134708D02*
G03Y135292I-406J292D01*
G01X146750Y136750D02*
G03X147219Y135292I2500J0D01*
G01X146750Y136750D02*
Y143250D01*
X147219Y144708D02*
G03X146750Y143250I2031J-1458D01*
G01X147219Y144708D02*
G03Y145292I-406J292D01*
G01X146750Y146750D02*
G03X147219Y145292I2500J0D01*
G01X146750Y146750D02*
Y153250D01*
X149250Y155750D02*
G03X146750Y153250I0J-2500D01*
G01X149250Y155750D02*
X149382D01*
G03X149815Y156000I0J500*
G01X150308Y156642D02*
G03X149815Y156000I2192J-2192D01*
G01X150308Y156642D02*
X166558Y172892D01*
X168750Y173800D02*
G03X166558Y172892I-0J-3100D01*
G01X168750Y173800D02*
X185406D01*
G03X185759Y173946I-0J500*
G01X202204Y190391*
G03X202350Y190744I-354J353*
G01Y200278*
G03X202242Y200588I-500J0*
G01X201573Y202512D02*
G03X202242Y200588I3100J-0D01*
G01X201573Y202512D02*
Y226590D01*
G03X201027Y227088I-500J0*
G01X198867Y227685D02*
G03X201027Y227088I1869J2559D01*
G01X198867Y227685D02*
G03X198219Y227634I-295J-404D01*
G01X198153Y227569*
G03X198031Y227063I354J-353*
G01X198150Y226300D02*
G03X198031Y227063I-2500J0D01*
G01X198150Y226300D02*
Y221937D01*
G03X198296Y221583I500J-0*
G01X198642Y221238*
X199550Y219046D02*
G03X198642Y221238I-3100J-0D01*
G01X199550Y219046D02*
Y211955D01*
Y211950*
X199550*
G03X199650Y211650I500J0*
G01X200150Y210150D02*
G03X199650Y211650I-2500J0D01*
G01X200150Y210150D02*
Y205050D01*
X197650Y202550D02*
G03X200150Y205050I0J2500D01*
G01X197650Y202550D02*
X195991D01*
G03X195638Y202404I0J-500*
G01X194146Y200912*
G03X194000Y200559I354J-353*
G01Y196500*
X192030Y194057D02*
G03X194000Y196500I-530J2443D01*
G01X192030Y194057D02*
G03X191739Y193265I106J-489D01*
G01X192250Y191750D02*
G03X191739Y193265I-2500J0D01*
G01X192250Y191750D02*
Y185250D01*
X189750Y182750D02*
G03X192250Y185250I0J2500D01*
G01X189750Y182750D02*
X183250D01*
X182966Y182766D02*
G03X183250Y182750I284J2484D01*
G01X182966Y182766D02*
G03X182425Y182391I-56J-497D01*
G01X180000Y180500D02*
G03X182425Y182391I0J2500D01*
G01X180000Y180500D02*
X176000D01*
X174108Y181366D02*
G03X176000Y180500I1892J1634D01*
G01X174108Y181366D02*
G03X173376Y181392I-378J-327D01*
G01X158292Y166308*
X156100Y165400D02*
G03X158292Y166308I0J3100D01*
G01X156100Y165400D02*
X155591D01*
G03X155238Y165254I0J-500*
G01X143805Y153821*
G03X143666Y153382I353J-354*
G01X132286Y151754D02*
G03X143666Y153382I5714J646D01*
G01X132286Y151754D02*
G03X131436Y152052I-497J-56D01*
G01X130896Y151512*
G03X130750Y151159I354J-353*
G01Y146750*
X128250Y144250D02*
G03X130750Y146750I0J2500D01*
G01X128250Y144250D02*
X121750D01*
X120292Y144719D02*
G03X121750Y144250I1458J2031D01*
G01X120292Y144719D02*
G03X119708I-292J-406D01*
G01X118250Y144250D02*
G03X119708Y144719I0J2500D01*
G01X118250Y144250D02*
X111750D01*
X109250Y146750D02*
G03X111750Y144250I2500J0D01*
G01X109250Y146750D02*
Y153250D01*
X109719Y154708D02*
G03X109250Y153250I2031J-1458D01*
G01X109719Y154708D02*
G03Y155292I-406J292D01*
G01X109250Y156750D02*
G03X109719Y155292I2500J0D01*
G01X109250Y156750D02*
Y163250D01*
X109719Y164708D02*
G03X109250Y163250I2031J-1458D01*
G01X109719Y164708D02*
G03Y165292I-406J292D01*
G01X109250Y166750D02*
G03X109719Y165292I2500J0D01*
G01X109250Y166750D02*
Y173250D01*
X109719Y174708D02*
G03X109250Y173250I2031J-1458D01*
G01X109719Y174708D02*
G03Y175292I-406J292D01*
G01X109250Y176750D02*
G03X109719Y175292I2500J0D01*
G01X109250Y176750D02*
Y183250D01*
X109719Y184708D02*
G03X109250Y183250I2031J-1458D01*
G01X109719Y184708D02*
G03Y185292I-406J292D01*
G01X109250Y186750D02*
G03X109719Y185292I2500J0D01*
G01X109250Y186750D02*
Y193250D01*
X109719Y194708D02*
G03X109250Y193250I2031J-1458D01*
G01X109719Y194708D02*
G03Y195292I-406J292D01*
G01X109250Y196750D02*
G03X109719Y195292I2500J0D01*
G01X109250Y196750D02*
Y203250D01*
X109719Y204708D02*
G03X109250Y203250I2031J-1458D01*
G01X109719Y204708D02*
G03Y205292I-406J292D01*
G01X109250Y206750D02*
G03X109719Y205292I2500J0D01*
G01X109250Y206750D02*
Y213250D01*
X109719Y214708D02*
G03X109250Y213250I2031J-1458D01*
G01X109719Y214708D02*
G03Y215292I-406J292D01*
G01X109250Y216750D02*
G03X109719Y215292I2500J0D01*
G01X109250Y216750D02*
Y223250D01*
X109719Y224708D02*
G03X109250Y223250I2031J-1458D01*
G01X109719Y224708D02*
G03Y225292I-406J292D01*
G01X109250Y226750D02*
G03X109719Y225292I2500J0D01*
G01X109250Y226750D02*
Y233250D01*
X109719Y234708D02*
G03X109250Y233250I2031J-1458D01*
G01X109719Y234708D02*
G03Y235292I-406J292D01*
G01X109250Y236750D02*
G03X109719Y235292I2500J0D01*
G01X109250Y236750D02*
Y243250D01*
X109719Y244708D02*
G03X109250Y243250I2031J-1458D01*
G01X109719Y244708D02*
G03Y245292I-406J292D01*
G01X109250Y246750D02*
G03X109719Y245292I2500J0D01*
G01X109250Y246750D02*
Y253250D01*
X111750Y255750D02*
G03X109250Y253250I0J-2500D01*
G01X111750Y255750D02*
X118250D01*
X119708Y255281D02*
G03X118250Y255750I-1458J-2031D01*
G01X119708Y255281D02*
G03X120292I292J406D01*
G01X121750Y255750D02*
G03X120292Y255281I0J-2500D01*
G01X121750Y255750D02*
X128250D01*
X130733Y253540D02*
G03X128250Y255750I-2483J-290D01*
G01X130733Y253540D02*
G03X131212Y253098I497J58D01*
G01X133294Y252192D02*
G03X131212Y253098I-2192J-2192D01*
G01X133294Y252192D02*
X134740Y250746D01*
G03X135094Y250600I354J354*
G01X156009*
G03X156362Y250746I-0J500*
G01X166021Y260405*
G03X165667Y261258I-354J353*
G01X153831*
G03X153359Y260924I0J-500*
G01X151000Y259250D02*
G03X153359Y260924I0J2500D01*
G01X151000Y259250D02*
X141000D01*
X139601Y259678D02*
G03X141000Y259250I1399J2072D01*
G01X139601Y259678D02*
G03X139067Y259695I-280J-414D01*
G01X137800Y259350D02*
G03X139067Y259695I0J2500D01*
G01X137800Y259350D02*
X132200D01*
X129700Y261850D02*
G03X132200Y259350I2500J0D01*
G01X129700Y261850D02*
Y263904D01*
G03X129042Y264379I-500J0*
G01X128250Y264250D02*
G03X129042Y264379I0J2500D01*
G01X128250Y264250D02*
X121750D01*
X120292Y264719D02*
G03X121750Y264250I1458J2031D01*
G01X120292Y264719D02*
G03X119708I-292J-406D01*
G01X118250Y264250D02*
G03X119708Y264719I0J2500D01*
G01X118250Y264250D02*
X111750D01*
X109250Y266750D02*
G03X111750Y264250I2500J0D01*
G01X109250Y266750D02*
Y273250D01*
X109719Y274708D02*
G03X109250Y273250I2031J-1458D01*
G01X109719Y274708D02*
G03Y275292I-406J292D01*
G01X109250Y276750D02*
G03X109719Y275292I2500J0D01*
G01X109250Y276750D02*
Y283250D01*
X109719Y284708D02*
G03X109250Y283250I2031J-1458D01*
G01X109719Y284708D02*
G03Y285292I-406J292D01*
G01X109250Y286750D02*
G03X109719Y285292I2500J0D01*
G01X109250Y286750D02*
Y293250D01*
X109719Y294708D02*
G03X109250Y293250I2031J-1458D01*
G01X109719Y294708D02*
G03Y295292I-406J292D01*
G01X109250Y296750D02*
G03X109719Y295292I2500J0D01*
G01X109250Y296750D02*
Y303250D01*
X111750Y305750D02*
G03X109250Y303250I0J-2500D01*
G01X111750Y305750D02*
X118250D01*
X119708Y305281D02*
G03X118250Y305750I-1458J-2031D01*
G01X119708Y305281D02*
G03X120292I292J406D01*
G01X121750Y305750D02*
G03X120292Y305281I0J-2500D01*
G01X121750Y305750D02*
X128250D01*
X130733Y303542D02*
G03X128250Y305750I-2483J-292D01*
G01X130733Y303542D02*
G03X131230Y303100I497J58D01*
G01X146309*
G03X146662Y303954I-0J500*
G01X141512Y309104*
G03X141159Y309250I-353J-354*
G01X136750*
X134250Y311750D02*
G03X136750Y309250I2500J0D01*
G01X134250Y311750D02*
Y318250D01*
X134719Y319708D02*
G03X134250Y318250I2031J-1458D01*
G01X134719Y319708D02*
G03Y320292I-406J292D01*
G01X134250Y321750D02*
G03X134719Y320292I2500J0D01*
G01X134250Y321750D02*
Y328250D01*
X136750Y330750D02*
G03X134250Y328250I0J-2500D01*
G01X136750Y330750D02*
X143250D01*
X145750Y328250D02*
G03X143250Y330750I-2500J0D01*
G01X145750Y328250D02*
Y321750D01*
X145281Y320292D02*
G03X145750Y321750I-2031J1458D01*
G01X145281Y320292D02*
G03Y319708I406J-292D01*
G01X145750Y318250D02*
G03X145281Y319708I-2500J0D01*
G01X145750Y318250D02*
Y313841D01*
G03X145896Y313488I500J0*
G01X163138Y296246*
G03X163491Y296100I353J354*
G01X177000*
X179192Y295192D02*
G03X177000Y296100I-2192J-2192D01*
G01X179192Y295192D02*
X192705Y281680D01*
G03X193058Y281533I353J353*
G01X197296*
G03X197765Y281859I0J500*
G01X198913Y283348D02*
G03X197765Y281859I1823J-2592D01*
G01X198913Y283348D02*
G03X198979Y284111I-288J409D01*
G01X195886Y287204*
G03X195532Y287350I-354J-354*
G01X192200*
X189700Y289850D02*
G03X192200Y287350I2500J0D01*
G01X189700Y289850D02*
Y291093D01*
G03X189554Y291447I-500J0*
G01X182847Y298154*
G03X182493Y298300I-354J-354*
G01X173200*
X170725Y299325D02*
G03X173200Y298300I2475J2475D01*
G01X170725Y299325D02*
X160947Y309104D01*
G03X160593Y309250I-354J-354*
G01X156750*
X154250Y311750D02*
G03X156750Y309250I2500J0D01*
G01X154250Y311750D02*
Y318250D01*
X154719Y319708D02*
G03X154250Y318250I2031J-1458D01*
G01X154719Y319708D02*
G03Y320292I-406J292D01*
G01X154250Y321750D02*
G03X154719Y320292I2500J0D01*
G01X154250Y321750D02*
Y328250D01*
X156750Y330750D02*
G03X154250Y328250I0J-2500D01*
G01X156750Y330750D02*
X163250D01*
X164708Y330281D02*
G03X163250Y330750I-1458J-2031D01*
G01X164708Y330281D02*
G03X165292I292J406D01*
G01X166750Y330750D02*
G03X165292Y330281I0J-2500D01*
G01X166750Y330750D02*
X173250D01*
X174708Y330281D02*
G03X173250Y330750I-1458J-2031D01*
G01X174708Y330281D02*
G03X175292I292J406D01*
G01X176750Y330750D02*
G03X175292Y330281I0J-2500D01*
G01X176750Y330750D02*
X183250D01*
X184708Y330281D02*
G03X183250Y330750I-1458J-2031D01*
G01X184708Y330281D02*
G03X185292I292J406D01*
G01X186750Y330750D02*
G03X185292Y330281I0J-2500D01*
G01X186750Y330750D02*
X193250D01*
X194708Y330281D02*
G03X193250Y330750I-1458J-2031D01*
G01X194708Y330281D02*
G03X195292I292J406D01*
G01X196750Y330750D02*
G03X195292Y330281I0J-2500D01*
G01X196750Y330750D02*
X203250D01*
X204708Y330281D02*
G03X203250Y330750I-1458J-2031D01*
G01X204708Y330281D02*
G03X205292I292J406D01*
G01X206750Y330750D02*
G03X205292Y330281I0J-2500D01*
G01X206750Y330750D02*
X213250D01*
X214708Y330281D02*
G03X213250Y330750I-1458J-2031D01*
G01X214708Y330281D02*
G03X215292I292J406D01*
G01X216750Y330750D02*
G03X215292Y330281I0J-2500D01*
G01X216750Y330750D02*
X223250D01*
X224708Y330281D02*
G03X223250Y330750I-1458J-2031D01*
G01X224708Y330281D02*
G03X225292I292J406D01*
G01X226750Y330750D02*
G03X225292Y330281I0J-2500D01*
G01X226750Y330750D02*
X233250D01*
X234708Y330281D02*
G03X233250Y330750I-1458J-2031D01*
G01X234708Y330281D02*
G03X235292I292J406D01*
G01X236750Y330750D02*
G03X235292Y330281I0J-2500D01*
G01X236750Y330750D02*
X243250D01*
X244708Y330281D02*
G03X243250Y330750I-1458J-2031D01*
G01X244708Y330281D02*
G03X245292I292J406D01*
G01X246750Y330750D02*
G03X245292Y330281I0J-2500D01*
G01X246750Y330750D02*
X253250D01*
X254708Y330281D02*
G03X253250Y330750I-1458J-2031D01*
G01X254708Y330281D02*
G03X255292I292J406D01*
G01X256750Y330750D02*
G03X255292Y330281I0J-2500D01*
G01X256750Y330750D02*
X263250D01*
X264708Y330281D02*
G03X263250Y330750I-1458J-2031D01*
G01X264708Y330281D02*
G03X265292I292J406D01*
G01X266750Y330750D02*
G03X265292Y330281I0J-2500D01*
G01X266750Y330750D02*
X273250D01*
X274708Y330281D02*
G03X273250Y330750I-1458J-2031D01*
G01X274708Y330281D02*
G03X275292I292J406D01*
G01X276750Y330750D02*
G03X275292Y330281I0J-2500D01*
G01X276750Y330750D02*
X283250D01*
X284708Y330281D02*
G03X283250Y330750I-1458J-2031D01*
G01X284708Y330281D02*
G03X285292I292J406D01*
G01X286750Y330750D02*
G03X285292Y330281I0J-2500D01*
G01X286750Y330750D02*
X293250D01*
X294708Y330281D02*
G03X293250Y330750I-1458J-2031D01*
G01X294708Y330281D02*
G03X295292I292J406D01*
G01X296750Y330750D02*
G03X295292Y330281I0J-2500D01*
G01X296750Y330750D02*
X303250D01*
X304708Y330281D02*
G03X303250Y330750I-1458J-2031D01*
G01X304708Y330281D02*
G03X305292I292J406D01*
G01X306750Y330750D02*
G03X305292Y330281I0J-2500D01*
G01X306750Y330750D02*
X313250D01*
X314708Y330281D02*
G03X313250Y330750I-1458J-2031D01*
G01X314708Y330281D02*
G03X315292I292J406D01*
G01X316750Y330750D02*
G03X315292Y330281I0J-2500D01*
G01X316750Y330750D02*
X323250D01*
X325750Y328250D02*
G03X323250Y330750I-2500J0D01*
G01X325750Y328250D02*
Y321750D01*
X325281Y320292D02*
G03X325750Y321750I-2031J1458D01*
G01X325281Y320292D02*
G03Y319708I406J-292D01*
G01X325750Y318250D02*
G03X325281Y319708I-2500J0D01*
G01X325750Y318250D02*
Y311750D01*
X325599Y310894D02*
G03X325750Y311750I-2349J856D01*
G01X325599Y310894D02*
G03X326422Y310369I470J-171D01*
G01X329604Y313551*
G03X329750Y313904I-354J353*
G01Y318313*
X332250Y320813D02*
G03X329750Y318313I0J-2500D01*
G01X332250Y320813D02*
X338750D01*
X341250Y318313D02*
G03X338750Y320813I-2500J-0D01*
G01X341250Y318313D02*
Y311813D01*
X340073Y309692D02*
G03X341250Y311813I-1323J2121D01*
G01X340073Y309692D02*
G03X339907Y309015I265J-424D01*
G01X340250Y307750D02*
G03X339907Y309015I-2500J0D01*
G01X340250Y307750D02*
Y302650D01*
X340228Y302317D02*
G03X340250Y302650I-2478J333D01*
G01X340228Y302317D02*
G03X340723Y301750I495J-67D01*
G01X343250*
X345750Y299250D02*
G03X343250Y301750I-2500J0D01*
G01X345750Y299250D02*
Y294841D01*
G03X345896Y294488I500J0*
G01X348138Y292246*
G03X348491Y292100I353J354*
G01X360502*
G03X361001Y292583I-0J500*
G01X363500Y295000D02*
G03X361001Y292583I0J-2500D01*
G01X363500Y295000D02*
X370500D01*
X373000Y292500D02*
G03X370500Y295000I-2500J0D01*
G01X373000Y292500D02*
Y287591D01*
G03X373146Y287238I500J0*
G01X374192Y286192*
X375100Y284000D02*
G03X374192Y286192I-3100J0D01*
G01X375100Y284000D02*
Y263876D01*
X374192Y261684D02*
G03X375100Y263876I-2192J2192D01*
G01X374192Y261684D02*
X370588Y258081D01*
G03X370660Y257314I354J-354*
G01X371750Y255250D02*
G03X370660Y257314I-2500J0D01*
G01X371750Y255250D02*
Y248750D01*
X369250Y246250D02*
G03X371750Y248750I0J2500D01*
G01X369250Y246250D02*
X367341D01*
G03X366988Y245396I0J-500*
G01X368192Y244192*
X369100Y242000D02*
G03X368192Y244192I-3100J0D01*
G01X369100Y242000D02*
Y231439D01*
G03X369500Y230950I500J0*
G01X371500Y228500D02*
G03X369500Y230950I-2500J0D01*
G01X371500Y228500D02*
Y224500D01*
X369000Y222000D02*
G03X371500Y224500I0J2500D01*
G01X369000Y222000D02*
X363000D01*
X360500Y224500D02*
G03X363000Y222000I2500J0D01*
G01X360500Y224500D02*
Y228500D01*
X362500Y230950D02*
G03X360500Y228500I500J-2450D01*
G01X362500Y230950D02*
G03X362900Y231439I-100J489D01*
G01Y240509*
G03X362754Y240862I-500J-0*
G01X357512Y246104*
G03X357159Y246250I-353J-354*
G01X352750*
X350250Y248750D02*
G03X352750Y246250I2500J0D01*
G01X350250Y248750D02*
Y255250D01*
X352750Y257750D02*
G03X350250Y255250I0J-2500D01*
G01X352750Y257750D02*
X359250D01*
X360708Y257281D02*
G03X359250Y257750I-1458J-2031D01*
G01X360708Y257281D02*
G03X361292I292J406D01*
G01X362473Y257735D02*
G03X361292Y257281I277J-2485D01*
G01X362473Y257735D02*
G03X362915Y258182I-55J497D01*
G01X363808Y260069D02*
G03X362915Y258182I2192J-2193D01*
G01X363808Y260069D02*
X365886Y262146D01*
G03X365532Y263000I-354J354*
G01X363514*
G03X363032Y262633I0J-500*
G01X356768Y264367D02*
G03X363032Y262633I3132J-867D01*
G01X356768Y264367D02*
G03X356286Y265000I-482J133D01*
G01X342696*
G03X342342Y264854I-0J-500*
G01X336145Y258656*
G03X335999Y258318I353J-353*
G01X335092Y256219D02*
G03X335999Y258318I-2192J2192D01*
G01X335092Y256219D02*
X322146Y243273D01*
G03X322000Y242919I354J-354*
G01Y230178*
G03X322220Y229764I500J0*
G01X324726Y224478D02*
G03X322220Y229764I-5726J522D01*
G01X324726Y224478D02*
G03X324871Y224079I498J-45D01*
G01X325203Y223746*
G03X325557Y223600I354J354*
G01X328341*
G03X328695Y223746I0J500*
G01X329523Y224575*
X331781Y225593D02*
G03X329523Y224575I217J-3493D01*
G01X331781Y225593D02*
G03X332250Y226092I-31J499D01*
G01Y229300*
X334750Y231800D02*
G03X332250Y229300I0J-2500D01*
G01X334750Y231800D02*
X338650D01*
X341150Y229300D02*
G03X338650Y231800I-2500J0D01*
G01X341150Y229300D02*
Y223700D01*
X340785Y222400D02*
G03X341150Y223700I-2135J1300D01*
G01X340785Y222400D02*
G03X340794Y221866I427J-260D01*
G01X341200Y220500D02*
G03X340794Y221866I-2500J0D01*
G01X341200Y220500D02*
Y206500D01*
X338700Y204000D02*
G03X341200Y206500I0J2500D01*
G01X338700Y204000D02*
X333700D01*
X331200Y206500D02*
G03X333700Y204000I2500J0D01*
G01X331200Y206500D02*
Y209963D01*
G03X330404Y210366I-500J-0*
G01X326018Y209334D02*
G03X330404Y210366I982J5666D01*
G01X326018Y209334D02*
G03X325579Y209195I-85J-492D01*
G01X324958Y208574*
G03X324935Y207892I354J-353*
G01X325550Y206250D02*
G03X324935Y207892I-2500J0D01*
G01X325550Y206250D02*
Y202350D01*
X325018Y200808D02*
G03X325550Y202350I-1968J1542D01*
G01X325018Y200808D02*
G03Y200192I394J-308D01*
G01X325550Y198650D02*
G03X325018Y200192I-2500J0D01*
G01X325550Y198650D02*
Y194750D01*
X324050Y192459D02*
G03X325550Y194750I-1000J2291D01*
G01X324050Y192459D02*
G03X323750Y192000I200J-459D01*
G01Y186750*
X323621Y185958D02*
G03X323750Y186750I-2371J792D01*
G01X323621Y185958D02*
G03X324096Y185300I475J-158D01*
G01X326250*
X328750Y182800D02*
G03X326250Y185300I-2500J0D01*
G01X328750Y182800D02*
Y177200D01*
X326250Y174700D02*
G03X328750Y177200I0J2500D01*
G01X326250Y174700D02*
X322830D01*
G03X322567Y174625I0J-500*
G01X321250Y174250D02*
G03X322567Y174625I0J2500D01*
G01X321250Y174250D02*
X320500D01*
G03X320000Y173750I0J-500*
G01Y169257*
G03X320146Y168903I500J-0*
G01X320803Y168246*
G03X321157Y168100I354J354*
G01X325400*
X326395Y167930D02*
G03X325400Y168100I-995J-2830D01*
G01X326395Y167930D02*
G03X326434Y167918I165J472D01*
G01X326569Y167879D02*
G03X326434Y167918I-769J-2379D01*
G01X326569Y167879D02*
G03X326991Y167932I154J475D01*
G01X328600Y168400D02*
G03X326991Y167932I0J-3000D01*
G01X328600Y168400D02*
X334487D01*
G03X334932Y168671I0J500*
G01X335016Y168824D02*
G03X334932Y168671I2584J-1524D01*
G01X335016Y168824D02*
G03X335029Y168848I-431J253D01*
G01X336407Y170054D02*
G03X335029Y168848I843J-2354D01*
G01X336407Y170054D02*
G03X336433Y170064I-168J470D01*
G01X337600Y170300D02*
G03X336433Y170064I0J-3000D01*
G01X337600Y170300D02*
X338438D01*
G03X338916Y170653I-0J500*
G01X339848Y172202D02*
G03X338916Y170653I2652J-2652D01*
G01X339848Y172202D02*
X347898Y180252D01*
X348974Y181003D02*
G03X347898Y180252I1576J-3403D01*
G01X348974Y181003D02*
G03X349262Y181506I-210J454D01*
G01X349250Y181750D02*
G03X349262Y181506I2500J0D01*
G01X349250Y181750D02*
Y188250D01*
X349952Y189987D02*
G03X349250Y188250I1798J-1737D01*
G01X349952Y189987D02*
G03X350069Y190487I-359J348D01*
G01X349950Y191250D02*
G03X350069Y190487I2500J0D01*
G01X349950Y191250D02*
Y195150D01*
X350482Y196692D02*
G03X349950Y195150I1968J-1542D01*
G01X350482Y196692D02*
G03Y197308I-394J308D01*
G01X349950Y198850D02*
G03X350482Y197308I2500J0D01*
G01X349950Y198850D02*
Y202750D01*
X350438Y204235D02*
G03X349950Y202750I2012J-1485D01*
G01X350438Y204235D02*
G03X350413Y204860I-402J296D01*
G01X349800Y206500D02*
G03X350413Y204860I2500J0D01*
G01X349800Y206500D02*
Y220500D01*
X352300Y223000D02*
G03X349800Y220500I0J-2500D01*
G01X352300Y223000D02*
X357300D01*
X359800Y220500D02*
G03X357300Y223000I-2500J0D01*
G01X359800Y220500D02*
Y217808D01*
G03X360750Y217590I500J-0*
G01X363000Y219000D02*
G03X360750Y217590I0J-2500D01*
G01X363000Y219000D02*
X369000D01*
X371500Y216500D02*
G03X369000Y219000I-2500J0D01*
G01X371500Y216500D02*
Y213591D01*
G03X371646Y213238I500J0*
G01X375292Y209592*
X376200Y207400D02*
G03X375292Y209592I-3100J0D01*
G01X359727Y205899D02*
X370000D01*
X359308Y204999D02*
X370000D01*
X359655Y204099D02*
X370000D01*
X360009Y203199D02*
X370000D01*
X360050Y202299D02*
X370000D01*
X360050Y201399D02*
X370000D01*
X360050Y200499D02*
X370000D01*
X360050Y199599D02*
X370000D01*
X360045Y198699D02*
X370000D01*
X359818Y197799D02*
X370000D01*
X359422Y196899D02*
X370000D01*
X359902Y195999D02*
X370000D01*
X360050Y195099D02*
X370000D01*
X360050Y194199D02*
X370000D01*
X360050Y193299D02*
X370000D01*
X360050Y192399D02*
X370000D01*
X360050Y191499D02*
X370000D01*
X369107Y190599D02*
X369827D01*
X359800Y206799D02*
X369317D01*
X359800Y207699D02*
X368417D01*
X359800Y208599D02*
X367517D01*
X359800Y209499D02*
X366617D01*
X359800Y210399D02*
X361646D01*
X360234Y190599D02*
X360893D01*
X359811Y211299D02*
X360808D01*
X364202Y178899D02*
X370000D01*
X363302Y177999D02*
X370000D01*
X362402Y177099D02*
X370000D01*
X361502Y176199D02*
X370000D01*
X360602Y175299D02*
X370000D01*
X359553Y174399D02*
X370000D01*
X351752Y173499D02*
X370000D01*
X350852Y172599D02*
X370000D01*
X349952Y171699D02*
X370000D01*
X349052Y170799D02*
X370000D01*
X348951Y169899D02*
X370000D01*
X349886Y168999D02*
X370000D01*
X350292Y168099D02*
X370000D01*
X350400Y167199D02*
X370000D01*
X350420Y166299D02*
X369999D01*
X339500Y152799D02*
X370000D01*
X339500Y151899D02*
X370000D01*
X339500Y150999D02*
X370000D01*
X339500Y150099D02*
X370000D01*
X339500Y149199D02*
X370000D01*
X339500Y148299D02*
X370000D01*
X339500Y147399D02*
X370000D01*
X339500Y146499D02*
X370000D01*
X339473Y145599D02*
X370000D01*
X339203Y144699D02*
X370000D01*
X338538Y143799D02*
X370000D01*
X331898Y142899D02*
X370000D01*
X331700Y141999D02*
X370000D01*
X331700Y141099D02*
X370000D01*
X331700Y140199D02*
X370000D01*
X331700Y139299D02*
X370000D01*
X331700Y138399D02*
X370000D01*
X331700Y137499D02*
X370000D01*
X331700Y136599D02*
X370000D01*
X331700Y135699D02*
X370000D01*
X331700Y134799D02*
X370000D01*
X331700Y133899D02*
X370000D01*
X331737Y132999D02*
X370000D01*
X331777Y132099D02*
X370000D01*
X331905Y131199D02*
X370000D01*
X335236Y130299D02*
X370000D01*
X335833Y129399D02*
X370000D01*
X336000Y128499D02*
X370000D01*
X336000Y127599D02*
X370000D01*
X336000Y126699D02*
X370000D01*
X336000Y125799D02*
X370000D01*
X336000Y124899D02*
X370000D01*
X336000Y123999D02*
X370000D01*
X336000Y123099D02*
X370000D01*
X336000Y122199D02*
X370000D01*
X335992Y121299D02*
X370000D01*
X335744Y120399D02*
X370000D01*
X335792Y119499D02*
X370000D01*
X335998Y118599D02*
X370000D01*
X336000Y117699D02*
X370000D01*
X336000Y116799D02*
X370000D01*
X339500Y153699D02*
X369999D01*
X336000Y115899D02*
X369906D01*
X336000Y114999D02*
X369015D01*
X336000Y114099D02*
X368115D01*
X336000Y113199D02*
X367215D01*
X336000Y112299D02*
X366315D01*
X335998Y111399D02*
X365415D01*
X335828Y110499D02*
X364515D01*
X339500Y154599D02*
X349877D01*
X339500Y155499D02*
X349209D01*
X339500Y156399D02*
X346659D01*
X339500Y157299D02*
X345444D01*
X166533Y224799D02*
X173682D01*
X159808Y223899D02*
X172847D01*
X167433Y225699D02*
X172631D01*
X158736Y222999D02*
X171947D01*
X157836Y222099D02*
X171047D01*
X156936Y221199D02*
X170147D01*
X156036Y220299D02*
X169247D01*
X155136Y219399D02*
X168347D01*
X154236Y218499D02*
X167447D01*
X153336Y217599D02*
X166547D01*
X152436Y216699D02*
X165647D01*
X151536Y215799D02*
X164747D01*
X150636Y214899D02*
X163847D01*
X149736Y213999D02*
X162947D01*
X148836Y213099D02*
X162047D01*
X147936Y212199D02*
X161158D01*
X147036Y211299D02*
X160614D01*
X146136Y210399D02*
X160409D01*
X145236Y209499D02*
X160400D01*
X159736Y208599D02*
X160064D01*
X144336D02*
X153867D01*
X143436Y207699D02*
X152778D01*
X142536Y206799D02*
X152400D01*
X141636Y205899D02*
X152350D01*
X141500Y204999D02*
X152350D01*
X141500Y204099D02*
X152350D01*
X141493Y203199D02*
X152285D01*
X141298Y202299D02*
X151215D01*
X140767Y201399D02*
X150407D01*
X139883Y200499D02*
X150005D01*
X138983Y199599D02*
X149900D01*
X138083Y198699D02*
X149900D01*
X137183Y197799D02*
X149900D01*
X136283Y196899D02*
X149900D01*
X135383Y195999D02*
X149900D01*
X134483Y195099D02*
X149900D01*
X133583Y194199D02*
X149900D01*
X132683Y193299D02*
X149860D01*
X131783Y192399D02*
X149010D01*
X130883Y191499D02*
X148110D01*
X130750Y190599D02*
X147210D01*
X130750Y189699D02*
X146310D01*
X130750Y188799D02*
X145410D01*
X130750Y187899D02*
X144510D01*
X130750Y186999D02*
X143610D01*
X130664Y186099D02*
X142710D01*
X130228Y185199D02*
X141810D01*
X130519Y184299D02*
X140910D01*
X130772Y183399D02*
X140010D01*
X236083Y306699D02*
X237922D01*
X235183Y305799D02*
X237922D01*
X234283Y304899D02*
X237922D01*
X233383Y303999D02*
X237922D01*
X236983Y307599D02*
X237844D01*
X232483Y303099D02*
X237637D01*
X231583Y302199D02*
X234971D01*
X230683Y301299D02*
X234465D01*
X229783Y300399D02*
X234350D01*
X228883Y299499D02*
X234350D01*
X228392Y298599D02*
X234350D01*
X228392Y297699D02*
X234350D01*
X228392Y296799D02*
X233815D01*
X228477Y295899D02*
X229427D01*
X274099Y309399D02*
X274616D01*
X267883Y308499D02*
X274607D01*
X266983Y307599D02*
X273707D01*
X266083Y306699D02*
X272807D01*
X265183Y305799D02*
X271907D01*
X264283Y304899D02*
X271007D01*
X263383Y303999D02*
X270107D01*
X262483Y303099D02*
X269207D01*
X261583Y302199D02*
X268307D01*
X260683Y301299D02*
X267407D01*
X259783Y300399D02*
X266507D01*
X258883Y299499D02*
X265607D01*
X257983Y298599D02*
X264707D01*
X257083Y297699D02*
X263807D01*
X256183Y296799D02*
X262907D01*
X255283Y295899D02*
X262007D01*
X254383Y294999D02*
X261107D01*
X253483Y294099D02*
X260207D01*
X252583Y293199D02*
X259307D01*
X251683Y292299D02*
X258407D01*
X250783Y291399D02*
X257507D01*
X249883Y290499D02*
X256607D01*
X248983Y289599D02*
X255707D01*
X248083Y288699D02*
X254807D01*
X247183Y287799D02*
X253907D01*
X246283Y286899D02*
X253007D01*
X245331Y285999D02*
X252107D01*
X232607Y285099D02*
X251207D01*
X231719Y284199D02*
X250307D01*
X232156Y283299D02*
X249407D01*
X232974Y282399D02*
X248507D01*
X242657Y281499D02*
X247607D01*
X243838Y280599D02*
X246707D01*
X244239Y279699D02*
X245807D01*
X243650Y234699D02*
X248700D01*
X243957Y233799D02*
X248700D01*
X244557Y232899D02*
X248700D01*
X246654Y231999D02*
X248697D01*
X243650Y235599D02*
X248517D01*
X243650Y236499D02*
X247617D01*
X243650Y237399D02*
X246717D01*
X243600Y238299D02*
X245817D01*
X243527Y239199D02*
X244917D01*
X305750Y200499D02*
X316088D01*
X305750Y201399D02*
X315638D01*
X305750Y199599D02*
X315637D01*
X305750Y202299D02*
X315451D01*
X305688Y198699D02*
X315450D01*
X305750Y203199D02*
X315450D01*
X305286Y197799D02*
X315450D01*
X304099Y196899D02*
X315450D01*
X263209Y195999D02*
X315382D01*
X305750Y204099D02*
X314419D01*
X263851Y195099D02*
X313067D01*
X264751Y194199D02*
X312437D01*
X265651Y193299D02*
X312250D01*
X266551Y192399D02*
X312250D01*
X267451Y191499D02*
X312250D01*
X268351Y190599D02*
X312250D01*
X269251Y189699D02*
X312250D01*
X270002Y188799D02*
X312222D01*
X307641Y204999D02*
X310359D01*
X294099Y196899D02*
X295901D01*
X262855D02*
X285901D01*
X262300Y197799D02*
X284714D01*
X262300Y198699D02*
X284312D01*
X262300Y203199D02*
X284250D01*
X262300Y202299D02*
X284250D01*
X262300Y201399D02*
X284250D01*
X262300Y200499D02*
X284250D01*
X262300Y199599D02*
X284250D01*
X262300Y204099D02*
X284017D01*
X262300Y204999D02*
X283117D01*
X262300Y205899D02*
X282217D01*
X262300Y206799D02*
X281317D01*
X262295Y207699D02*
X280417D01*
X262128Y208599D02*
X279517D01*
X261684Y209499D02*
X278617D01*
X260867Y210399D02*
X277717D01*
X259967Y211299D02*
X276817D01*
X259179Y212199D02*
X275917D01*
X262472Y213099D02*
X275017D01*
X264078Y213999D02*
X274117D01*
X264983Y214899D02*
X273217D01*
X102100Y337299D02*
X377900D01*
X102100Y336399D02*
X377900D01*
X102100Y335499D02*
X377900D01*
X102100Y334599D02*
X377900D01*
X102100Y333699D02*
X377900D01*
X102100Y332799D02*
X377900D01*
X102100Y331899D02*
X377900D01*
X102100Y330999D02*
X377900D01*
X324933Y330099D02*
X377900D01*
X325563Y329199D02*
X377900D01*
X325750Y328299D02*
X377900D01*
X325750Y327399D02*
X377900D01*
X325750Y326499D02*
X377900D01*
X325750Y325599D02*
X377900D01*
X325750Y324699D02*
X377900D01*
X325750Y323799D02*
X377900D01*
X325750Y322899D02*
X377900D01*
X325750Y321999D02*
X377900D01*
X325664Y321099D02*
X377900D01*
X340391Y320199D02*
X377900D01*
X341048Y319299D02*
X377900D01*
X341249Y318399D02*
X377900D01*
X341250Y317499D02*
X377900D01*
X341250Y316599D02*
X377900D01*
X341250Y315699D02*
X377900D01*
X341250Y314799D02*
X377900D01*
X341250Y313899D02*
X377900D01*
X341250Y312999D02*
X377900D01*
X341250Y312099D02*
X377900D01*
X341173Y311199D02*
X377900D01*
X340739Y310299D02*
X377900D01*
X339855Y309399D02*
X377900D01*
X340135Y308499D02*
X377900D01*
X340250Y307599D02*
X377900D01*
X340250Y306699D02*
X377900D01*
X340250Y305799D02*
X377900D01*
X340250Y304899D02*
X377900D01*
X340250Y303999D02*
X377900D01*
X340250Y303099D02*
X377900D01*
X340226Y302199D02*
X377900D01*
X344683Y301299D02*
X377900D01*
X345471Y300399D02*
X377900D01*
X345738Y299499D02*
X377900D01*
X345750Y298599D02*
X377900D01*
X345750Y297699D02*
X377900D01*
X345750Y296799D02*
X377900D01*
X345750Y295899D02*
X377900D01*
X370582Y294999D02*
X377900D01*
X372422Y294099D02*
X377900D01*
X372900Y293199D02*
X377900D01*
X373000Y292299D02*
X377900D01*
X373000Y291399D02*
X377900D01*
X373000Y290499D02*
X377900D01*
X373000Y289599D02*
X377900D01*
X373000Y288699D02*
X377900D01*
X373000Y287799D02*
X377900D01*
X373485Y286899D02*
X377900D01*
X374370Y285999D02*
X377900D01*
X374899Y285099D02*
X377900D01*
X375094Y284199D02*
X377900D01*
X375100Y283299D02*
X377900D01*
X375100Y282399D02*
X377900D01*
X375100Y281499D02*
X377900D01*
X375100Y280599D02*
X377900D01*
X375100Y279699D02*
X377900D01*
X375100Y278799D02*
X377900D01*
X375100Y277899D02*
X377900D01*
X375100Y276999D02*
X377900D01*
X375100Y276099D02*
X377900D01*
X375100Y275199D02*
X377900D01*
X375100Y274299D02*
X377900D01*
X375100Y273399D02*
X377900D01*
X375100Y272499D02*
X377900D01*
X375100Y271599D02*
X377900D01*
X375100Y270699D02*
X377900D01*
X375100Y269799D02*
X377900D01*
X375100Y268899D02*
X377900D01*
X375100Y267999D02*
X377900D01*
X375100Y267099D02*
X377900D01*
X375100Y266199D02*
X377900D01*
X375100Y265299D02*
X377900D01*
X375100Y264399D02*
X377900D01*
X375077Y263499D02*
X377900D01*
X374824Y262599D02*
X377900D01*
X374206Y261699D02*
X377900D01*
X373306Y260799D02*
X377900D01*
X372406Y259899D02*
X377900D01*
X371506Y258999D02*
X377900D01*
X370606Y258099D02*
X377900D01*
X370816Y257199D02*
X377900D01*
X371519Y256299D02*
X377900D01*
X371746Y255399D02*
X377900D01*
X371750Y254499D02*
X377900D01*
X371750Y253599D02*
X377900D01*
X371750Y252699D02*
X377900D01*
X371750Y251799D02*
X377900D01*
X371750Y250899D02*
X377900D01*
X371750Y249999D02*
X377900D01*
X371750Y249099D02*
X377900D01*
X371688Y248199D02*
X377900D01*
X371286Y247299D02*
X377900D01*
X370099Y246399D02*
X377900D01*
X366909Y245499D02*
X377900D01*
X367785Y244599D02*
X377900D01*
X368593Y243699D02*
X377900D01*
X368995Y242799D02*
X377900D01*
X369100Y241899D02*
X377900D01*
X369100Y240999D02*
X377900D01*
X369100Y240099D02*
X377900D01*
X369100Y239199D02*
X377900D01*
X369100Y238299D02*
X377900D01*
X369100Y237399D02*
X377900D01*
X369100Y236499D02*
X377900D01*
X369100Y235599D02*
X377900D01*
X369100Y234699D02*
X377900D01*
X369100Y233799D02*
X377900D01*
X369100Y232899D02*
X377900D01*
X369100Y231999D02*
X377900D01*
X369234Y231099D02*
X377900D01*
X370834Y230199D02*
X377900D01*
X371369Y229299D02*
X377900D01*
X371500Y228399D02*
X377900D01*
X371500Y227499D02*
X377900D01*
X371500Y226599D02*
X377900D01*
X371500Y225699D02*
X377900D01*
X371500Y224799D02*
X377900D01*
X371427Y223899D02*
X377900D01*
X370999Y222999D02*
X377900D01*
X369696Y222099D02*
X377900D01*
X359700Y221199D02*
X377900D01*
X359800Y220299D02*
X377900D01*
X359800Y219399D02*
X377900D01*
X370502Y218499D02*
X377900D01*
X371246Y217599D02*
X377900D01*
X371492Y216699D02*
X377900D01*
X371500Y215799D02*
X377900D01*
X371500Y214899D02*
X377900D01*
X371500Y213999D02*
X377900D01*
X371785Y213099D02*
X377900D01*
X372685Y212199D02*
X377900D01*
X373585Y211299D02*
X377900D01*
X374485Y210399D02*
X377900D01*
X375382Y209499D02*
X377900D01*
X375959Y208599D02*
X377900D01*
X376186Y207699D02*
X377900D01*
X376200Y206799D02*
X377900D01*
X376200Y205899D02*
X377900D01*
X376200Y204999D02*
X377900D01*
X376200Y204099D02*
X377900D01*
X376200Y203199D02*
X377900D01*
X376200Y202299D02*
X377900D01*
X376200Y201399D02*
X377900D01*
X376200Y200499D02*
X377900D01*
X376200Y199599D02*
X377900D01*
X376200Y198699D02*
X377900D01*
X376200Y197799D02*
X377900D01*
X376200Y196899D02*
X377900D01*
X376200Y195999D02*
X377900D01*
X376200Y195099D02*
X377900D01*
X376200Y194199D02*
X377900D01*
X376200Y193299D02*
X377900D01*
X376200Y192399D02*
X377900D01*
X376200Y191499D02*
X377900D01*
X376200Y190599D02*
X377900D01*
X376200Y189699D02*
X377900D01*
X376200Y188799D02*
X377900D01*
X376200Y187899D02*
X377900D01*
X376200Y186999D02*
X377900D01*
X376200Y186099D02*
X377900D01*
X376200Y185199D02*
X377900D01*
X376200Y184299D02*
X377900D01*
X376200Y183399D02*
X377900D01*
X376200Y182499D02*
X377900D01*
X376200Y181599D02*
X377900D01*
X376200Y180699D02*
X377900D01*
X376200Y179799D02*
X377900D01*
X376200Y178899D02*
X377900D01*
X376200Y177999D02*
X377900D01*
X376200Y177099D02*
X377900D01*
X376200Y176199D02*
X377900D01*
X376200Y175299D02*
X377900D01*
X376200Y174399D02*
X377900D01*
X376200Y173499D02*
X377900D01*
X376200Y172599D02*
X377900D01*
X376200Y171699D02*
X377900D01*
X376200Y170799D02*
X377900D01*
X376200Y169899D02*
X377900D01*
X376200Y168999D02*
X377900D01*
X376200Y168099D02*
X377900D01*
X376200Y167199D02*
X377900D01*
X376200Y166299D02*
X377900D01*
X376200Y165399D02*
X377900D01*
X376200Y164499D02*
X377900D01*
X376200Y163599D02*
X377900D01*
X376200Y162699D02*
X377900D01*
X376200Y161799D02*
X377900D01*
X376200Y160899D02*
X377900D01*
X376200Y159999D02*
X377900D01*
X376200Y159099D02*
X377900D01*
X376200Y158199D02*
X377900D01*
X376200Y157299D02*
X377900D01*
X376200Y156399D02*
X377900D01*
X376200Y155499D02*
X377900D01*
X376200Y154599D02*
X377900D01*
X376200Y153699D02*
X377900D01*
X376200Y152799D02*
X377900D01*
X376200Y151899D02*
X377900D01*
X376200Y150999D02*
X377900D01*
X376200Y150099D02*
X377900D01*
X376200Y149199D02*
X377900D01*
X376200Y148299D02*
X377900D01*
X376200Y147399D02*
X377900D01*
X376200Y146499D02*
X377900D01*
X376200Y145599D02*
X377900D01*
X376200Y144699D02*
X377900D01*
X376200Y143799D02*
X377900D01*
X376200Y142899D02*
X377900D01*
X376200Y141999D02*
X377900D01*
X376200Y141099D02*
X377900D01*
X376200Y140199D02*
X377900D01*
X376200Y139299D02*
X377900D01*
X376200Y138399D02*
X377900D01*
X376200Y137499D02*
X377900D01*
X376200Y136599D02*
X377900D01*
X376200Y135699D02*
X377900D01*
X376200Y134799D02*
X377900D01*
X376200Y133899D02*
X377900D01*
X376200Y132999D02*
X377900D01*
X376200Y132099D02*
X377900D01*
X376200Y131199D02*
X377900D01*
X376200Y130299D02*
X377900D01*
X376200Y129399D02*
X377900D01*
X376200Y128499D02*
X377900D01*
X376200Y127599D02*
X377900D01*
X376200Y126699D02*
X377900D01*
X376200Y125799D02*
X377900D01*
X376200Y124899D02*
X377900D01*
X376200Y123999D02*
X377900D01*
X376200Y123099D02*
X377900D01*
X376200Y122199D02*
X377900D01*
X376200Y121299D02*
X377900D01*
X376200Y120399D02*
X377900D01*
X376200Y119499D02*
X377900D01*
X376200Y118599D02*
X377900D01*
X376200Y117699D02*
X377900D01*
X376200Y116799D02*
X377900D01*
X376200Y115899D02*
X377900D01*
X376200Y114999D02*
X377900D01*
X376141Y114099D02*
X377900D01*
X375812Y113199D02*
X377900D01*
X375083Y112299D02*
X377900D01*
X374183Y111399D02*
X377900D01*
X373283Y110499D02*
X377900D01*
X372383Y109599D02*
X377900D01*
X371483Y108699D02*
X377900D01*
X370583Y107799D02*
X377900D01*
X369683Y106899D02*
X377900D01*
X368783Y105999D02*
X377900D01*
X367883Y105099D02*
X377900D01*
X366821Y104199D02*
X377900D01*
X102100Y103299D02*
X377900D01*
X102142Y102399D02*
X377858D01*
X363023Y262599D02*
X366022D01*
X362605Y261699D02*
X365438D01*
X361707Y260799D02*
X364538D01*
X337387Y259899D02*
X363650D01*
X345750Y294999D02*
X363418D01*
X336487Y258999D02*
X363110D01*
X322000Y240099D02*
X362900D01*
X322000Y239199D02*
X362900D01*
X322000Y238299D02*
X362900D01*
X322000Y237399D02*
X362900D01*
X322000Y236499D02*
X362900D01*
X322000Y235599D02*
X362900D01*
X322000Y234699D02*
X362900D01*
X322000Y233799D02*
X362900D01*
X322000Y232899D02*
X362900D01*
X322000Y231999D02*
X362900D01*
X335984Y258099D02*
X362900D01*
X340386Y231099D02*
X362766D01*
X322000Y240999D02*
X362617D01*
X359222Y222099D02*
X362304D01*
X322000Y241899D02*
X361717D01*
X346285Y294099D02*
X361578D01*
X359800Y218499D02*
X361498D01*
X340983Y230199D02*
X361166D01*
X360891Y257199D02*
X361109D01*
X347185Y293199D02*
X361100D01*
X357382Y222999D02*
X361001D01*
X348085Y292299D02*
X360901D01*
X322000Y242799D02*
X360817D01*
X359846Y217599D02*
X360754D01*
X341150Y229299D02*
X360631D01*
X341150Y223899D02*
X360573D01*
X341150Y228399D02*
X360500D01*
X341150Y227499D02*
X360500D01*
X341150Y226599D02*
X360500D01*
X341150Y225699D02*
X360500D01*
X341150Y224799D02*
X360500D01*
X322572Y243699D02*
X359917D01*
X323472Y244599D02*
X359017D01*
X324372Y245499D02*
X358117D01*
X338287Y260799D02*
X358093D01*
X339187Y261699D02*
X357195D01*
X340087Y262599D02*
X356777D01*
X341887Y264399D02*
X356775D01*
X340987Y263499D02*
X356650D01*
X341050Y222999D02*
X352218D01*
X325272Y246399D02*
X351901D01*
X335753Y257199D02*
X351184D01*
X326172Y247299D02*
X350714D01*
X325550Y196899D02*
X350578D01*
X335169Y256299D02*
X350481D01*
X340714Y222099D02*
X350378D01*
X339396Y204099D02*
X350345D01*
X327072Y248199D02*
X350312D01*
X340699Y204999D02*
X350301D01*
X334272Y255399D02*
X350254D01*
X333372Y254499D02*
X350250D01*
X332472Y253599D02*
X350250D01*
X331572Y252699D02*
X350250D01*
X330672Y251799D02*
X350250D01*
X329772Y250899D02*
X350250D01*
X328872Y249999D02*
X350250D01*
X327972Y249099D02*
X350250D01*
X325550Y197799D02*
X350182D01*
X325550Y195999D02*
X350098D01*
X323750Y190599D02*
X350036D01*
X325550Y203199D02*
X349991D01*
X325550Y198699D02*
X349955D01*
X325549Y202299D02*
X349950D01*
X325362Y201399D02*
X349950D01*
X324912Y200499D02*
X349950D01*
X325363Y199599D02*
X349950D01*
X325550Y195099D02*
X349950D01*
X325488Y194199D02*
X349950D01*
X325086Y193299D02*
X349950D01*
X323948Y192399D02*
X349950D01*
X323750Y191499D02*
X349950D01*
X341100Y221199D02*
X349900D01*
X341127Y205899D02*
X349873D01*
X341200Y220299D02*
X349800D01*
X341200Y219399D02*
X349800D01*
X341200Y218499D02*
X349800D01*
X341200Y217599D02*
X349800D01*
X341200Y216699D02*
X349800D01*
X341200Y215799D02*
X349800D01*
X341200Y214899D02*
X349800D01*
X341200Y213999D02*
X349800D01*
X341200Y213099D02*
X349800D01*
X341200Y212199D02*
X349800D01*
X341200Y211299D02*
X349800D01*
X341200Y210399D02*
X349800D01*
X341200Y209499D02*
X349800D01*
X341200Y208599D02*
X349800D01*
X341200Y207699D02*
X349800D01*
X341200Y206799D02*
X349800D01*
X323750Y189699D02*
X349712D01*
X323750Y188799D02*
X349311D01*
X328750Y181599D02*
X349255D01*
X323750Y187899D02*
X349250D01*
X323750Y186999D02*
X349250D01*
X323664Y186099D02*
X349250D01*
X326955Y185199D02*
X349250D01*
X328251Y184299D02*
X349250D01*
X328677Y183399D02*
X349250D01*
X328750Y182499D02*
X349250D01*
X328750Y180699D02*
X348438D01*
X328750Y179799D02*
X347445D01*
X328750Y178899D02*
X346545D01*
X328750Y177999D02*
X345645D01*
X328748Y177099D02*
X344745D01*
X328541Y176199D02*
X343845D01*
X327873Y175299D02*
X342945D01*
X322099Y174399D02*
X342045D01*
X320000Y173499D02*
X341145D01*
X320000Y172599D02*
X340245D01*
X320000Y171699D02*
X339427D01*
X320000Y170799D02*
X338964D01*
X320000Y169899D02*
X336060D01*
X320072Y168999D02*
X335114D01*
X322000Y231099D02*
X333014D01*
X325550Y204099D02*
X333004D01*
X322000Y230199D02*
X332417D01*
X322819Y229299D02*
X332250D01*
X323638Y228399D02*
X332250D01*
X324179Y227499D02*
X332250D01*
X324523Y226599D02*
X332250D01*
X324707Y225699D02*
X332058D01*
X325550Y204999D02*
X331701D01*
X325550Y205899D02*
X331273D01*
X328673Y209499D02*
X331200D01*
X324983Y208599D02*
X331200D01*
X325088Y207699D02*
X331200D01*
X325489Y206799D02*
X331200D01*
X330455Y210399D02*
X330945D01*
X325228Y320199D02*
X330609D01*
X325519Y319299D02*
X329952D01*
X324746Y224799D02*
X329769D01*
X325746Y318399D02*
X329751D01*
X325750Y317499D02*
X329750D01*
X325750Y316599D02*
X329750D01*
X325750Y315699D02*
X329750D01*
X325750Y314799D02*
X329750D01*
X325750Y313899D02*
X329750D01*
X325750Y312999D02*
X329052D01*
X325051Y223899D02*
X328847D01*
X325750Y312099D02*
X328152D01*
X325489Y168099D02*
X327290D01*
X325688Y311199D02*
X327252D01*
X325804Y310299D02*
X326333D01*
X287604Y120399D02*
X324256D01*
X286704Y119499D02*
X324208D01*
X317485Y110499D02*
X324172D01*
X288504Y121299D02*
X324008D01*
X316585Y111399D02*
X324002D01*
X285804Y118599D02*
X324002D01*
X290571Y126699D02*
X324000D01*
X290571Y125799D02*
X324000D01*
X290571Y124899D02*
X324000D01*
X290501Y123999D02*
X324000D01*
X290155Y123099D02*
X324000D01*
X289404Y122199D02*
X324000D01*
X284904Y117699D02*
X324000D01*
X284004Y116799D02*
X324000D01*
X308435Y115899D02*
X324000D01*
X309955Y114999D02*
X324000D01*
X310849Y114099D02*
X324000D01*
X314462Y113199D02*
X324000D01*
X315685Y112299D02*
X324000D01*
X290571Y127599D02*
X323969D01*
X290571Y128499D02*
X323929D01*
X102100Y104199D02*
X315179D01*
X309087Y105099D02*
X314117D01*
X310310Y105999D02*
X313217D01*
X311084Y106899D02*
X312317D01*
X290571Y129399D02*
X310159D01*
X290571Y130299D02*
X308944D01*
X283542Y115899D02*
X303906D01*
X283887Y105099D02*
X303254D01*
X284755Y114999D02*
X302387D01*
X285110Y105999D02*
X302031D01*
X285649Y114099D02*
X301492D01*
X285884Y106899D02*
X301257D01*
X286247Y113199D02*
X300894D01*
X286405Y107799D02*
X300736D01*
X286643Y112299D02*
X300499D01*
X286741Y108699D02*
X300400D01*
X286877Y111399D02*
X300264D01*
X286924Y109599D02*
X300217D01*
X286969Y110499D02*
X300173D01*
X102100Y105099D02*
X219492D01*
X102100Y105999D02*
X218569D01*
X102100Y106899D02*
X217669D01*
X102100Y107799D02*
X216769D01*
X102100Y108699D02*
X215869D01*
X207024Y109599D02*
X214969D01*
X207914Y110499D02*
X214069D01*
X208225Y111399D02*
X213169D01*
X194000Y199599D02*
X202350D01*
X194000Y198699D02*
X202350D01*
X194000Y197799D02*
X202350D01*
X194000Y196899D02*
X202350D01*
X193949Y195999D02*
X202350D01*
X193570Y195099D02*
X202350D01*
X192477Y194199D02*
X202350D01*
X191715Y193299D02*
X202350D01*
X192164Y192399D02*
X202350D01*
X192250Y191499D02*
X202350D01*
X192250Y190599D02*
X202328D01*
X194000Y200499D02*
X202299D01*
X194633Y201399D02*
X201780D01*
X195533Y202299D02*
X201581D01*
X198150Y225699D02*
X201573D01*
X198150Y224799D02*
X201573D01*
X198150Y223899D02*
X201573D01*
X198150Y222999D02*
X201573D01*
X198150Y222099D02*
X201573D01*
X198680Y221199D02*
X201573D01*
X199285Y220299D02*
X201573D01*
X199530Y219399D02*
X201573D01*
X199550Y218499D02*
X201573D01*
X199550Y217599D02*
X201573D01*
X199550Y216699D02*
X201573D01*
X199550Y215799D02*
X201573D01*
X199550Y214899D02*
X201573D01*
X199550Y213999D02*
X201573D01*
X199550Y213099D02*
X201573D01*
X199550Y212199D02*
X201573D01*
X199871Y211299D02*
X201573D01*
X200138Y210399D02*
X201573D01*
X200150Y209499D02*
X201573D01*
X200150Y208599D02*
X201573D01*
X200150Y207699D02*
X201573D01*
X200150Y206799D02*
X201573D01*
X200150Y205899D02*
X201573D01*
X200149Y204999D02*
X201573D01*
X199962Y204099D02*
X201573D01*
X199330Y203199D02*
X201573D01*
X198132Y226599D02*
X201573D01*
X192250Y189699D02*
X201512D01*
X192250Y188799D02*
X200612D01*
X192250Y187899D02*
X199712D01*
X198095Y227499D02*
X199153D01*
X190185Y284199D02*
X198890D01*
X191085Y283299D02*
X198844D01*
X192250Y186999D02*
X198812D01*
X191985Y282399D02*
X198026D01*
X189285Y285099D02*
X197990D01*
X102100Y109599D02*
X197976D01*
X192250Y186099D02*
X197912D01*
X188385Y285999D02*
X197090D01*
X102100Y110499D02*
X197086D01*
X192249Y185199D02*
X197012D01*
X102100Y111399D02*
X196775D01*
X187485Y286899D02*
X196190D01*
X192062Y184299D02*
X196112D01*
X191430Y183399D02*
X195212D01*
X182465Y182499D02*
X194312D01*
X182070Y181599D02*
X193412D01*
X180977Y180699D02*
X192512D01*
X171783Y179799D02*
X191612D01*
X186585Y287799D02*
X190771D01*
X170883Y178899D02*
X190712D01*
X185685Y288699D02*
X189981D01*
X169983Y177999D02*
X189812D01*
X184785Y289599D02*
X189713D01*
X183885Y290499D02*
X189700D01*
X182985Y291399D02*
X189596D01*
X169083Y177099D02*
X188912D01*
X182085Y292299D02*
X188702D01*
X168183Y176199D02*
X188012D01*
X181185Y293199D02*
X187802D01*
X167283Y175299D02*
X187112D01*
X180285Y294099D02*
X186902D01*
X166383Y174399D02*
X186212D01*
X179385Y294999D02*
X186002D01*
X178099Y295899D02*
X185102D01*
X162585Y296799D02*
X184202D01*
X161685Y297699D02*
X183302D01*
X172683Y180699D02*
X175023D01*
X160785Y298599D02*
X171785D01*
X159885Y299499D02*
X170552D01*
X158985Y300399D02*
X169652D01*
X158085Y301299D02*
X168752D01*
X157185Y302199D02*
X167852D01*
X165483Y173499D02*
X167417D01*
X156285Y303099D02*
X166952D01*
X164583Y172599D02*
X166265D01*
X153312Y260799D02*
X166165D01*
X155385Y303999D02*
X166052D01*
X152680Y259899D02*
X165515D01*
X163683Y171699D02*
X165365D01*
X154485Y304899D02*
X165152D01*
X102100Y258999D02*
X164615D01*
X162783Y170799D02*
X164465D01*
X153585Y305799D02*
X164252D01*
X102100Y258099D02*
X163715D01*
X161883Y169899D02*
X163565D01*
X152685Y306699D02*
X163352D01*
X102100Y257199D02*
X162815D01*
X160983Y168999D02*
X162665D01*
X151785Y307599D02*
X162452D01*
X102100Y256299D02*
X161915D01*
X160083Y168099D02*
X161765D01*
X150885Y308499D02*
X161552D01*
X129528Y255399D02*
X161015D01*
X159183Y167199D02*
X160865D01*
X130416Y254499D02*
X160115D01*
X158283Y166299D02*
X159965D01*
X130726Y253599D02*
X159215D01*
X155555Y165399D02*
X159065D01*
X132628Y252699D02*
X158315D01*
X154483Y164499D02*
X158165D01*
X133688Y251799D02*
X157415D01*
X153583Y163599D02*
X157265D01*
X134588Y250899D02*
X156515D01*
X152683Y162699D02*
X156365D01*
X149985Y309399D02*
X155901D01*
X151783Y161799D02*
X155465D01*
X144933Y330099D02*
X155067D01*
X145228Y320199D02*
X154772D01*
X149085Y310299D02*
X154714D01*
X150883Y160899D02*
X154565D01*
X145519Y319299D02*
X154481D01*
X145563Y329199D02*
X154437D01*
X145664Y321099D02*
X154336D01*
X148185Y311199D02*
X154312D01*
X145746Y318399D02*
X154254D01*
X145750Y328299D02*
X154250D01*
X145750Y327399D02*
X154250D01*
X145750Y326499D02*
X154250D01*
X145750Y325599D02*
X154250D01*
X145750Y324699D02*
X154250D01*
X145750Y323799D02*
X154250D01*
X145750Y322899D02*
X154250D01*
X145750Y321999D02*
X154250D01*
X145750Y317499D02*
X154250D01*
X145750Y316599D02*
X154250D01*
X145750Y315699D02*
X154250D01*
X145750Y314799D02*
X154250D01*
X145750Y313899D02*
X154250D01*
X146385Y312999D02*
X154250D01*
X147285Y312099D02*
X154250D01*
X149983Y159999D02*
X153665D01*
X149083Y159099D02*
X152765D01*
X148183Y158199D02*
X151865D01*
X147283Y157299D02*
X150965D01*
X146383Y156399D02*
X150089D01*
X145483Y155499D02*
X148158D01*
X102100Y134799D02*
X147271D01*
X129679Y144699D02*
X147212D01*
X144583Y154599D02*
X147145D01*
X130469Y145599D02*
X147031D01*
X102100Y135699D02*
X146982D01*
X102100Y133899D02*
X146836D01*
X102100Y143799D02*
X146811D01*
X143715Y153699D02*
X146791D01*
X130737Y146499D02*
X146763D01*
X102100Y136599D02*
X146755D01*
X143736Y152799D02*
X146750D01*
X143728Y151899D02*
X146750D01*
X143577Y150999D02*
X146750D01*
X143269Y150099D02*
X146750D01*
X142776Y149199D02*
X146750D01*
X142030Y148299D02*
X146750D01*
X140837Y147399D02*
X146750D01*
X102100Y142899D02*
X146750D01*
X102100Y141999D02*
X146750D01*
X102100Y141099D02*
X146750D01*
X102100Y140199D02*
X146750D01*
X102100Y139299D02*
X146750D01*
X102100Y138399D02*
X146750D01*
X102100Y137499D02*
X146750D01*
X130635Y303999D02*
X146617D01*
X130129Y304899D02*
X145717D01*
X102100Y305799D02*
X144817D01*
X102100Y306699D02*
X143917D01*
X102100Y307599D02*
X143017D01*
X102100Y308499D02*
X142117D01*
X102100Y112299D02*
X141979D01*
X102100Y132999D02*
X141958D01*
X102100Y132099D02*
X140945D01*
X102100Y113199D02*
X140917D01*
X102100Y131199D02*
X140591D01*
X102100Y114099D02*
X140017D01*
X102100Y114999D02*
X139117D01*
X102100Y115899D02*
X138217D01*
X102100Y116799D02*
X137317D01*
X102100Y117699D02*
X136417D01*
X102100Y309399D02*
X135901D01*
X102100Y130299D02*
X135767D01*
X102100Y118599D02*
X135552D01*
X130750Y147399D02*
X135163D01*
X102100Y330099D02*
X135067D01*
X102100Y119499D02*
X135066D01*
X102100Y320199D02*
X134772D01*
X102100Y310299D02*
X134714D01*
X102100Y120399D02*
X134552D01*
X102100Y319299D02*
X134481D01*
X102100Y329199D02*
X134437D01*
X102100Y321099D02*
X134336D01*
X102100Y311199D02*
X134312D01*
X102100Y129399D02*
X134297D01*
X102100Y318399D02*
X134254D01*
X102100Y328299D02*
X134250D01*
X102100Y327399D02*
X134250D01*
X102100Y326499D02*
X134250D01*
X102100Y325599D02*
X134250D01*
X102100Y324699D02*
X134250D01*
X102100Y323799D02*
X134250D01*
X102100Y322899D02*
X134250D01*
X102100Y321999D02*
X134250D01*
X102100Y317499D02*
X134250D01*
X102100Y316599D02*
X134250D01*
X102100Y315699D02*
X134250D01*
X102100Y314799D02*
X134250D01*
X102100Y313899D02*
X134250D01*
X102100Y312999D02*
X134250D01*
X102100Y312099D02*
X134250D01*
X130750Y148299D02*
X133970D01*
X102100Y121299D02*
X133600D01*
X102100Y128499D02*
X133437D01*
X130750Y149199D02*
X133224D01*
X102100Y122199D02*
X132979D01*
X102100Y127599D02*
X132871D01*
X130750Y150099D02*
X132731D01*
X102100Y123099D02*
X132573D01*
X102100Y126699D02*
X132507D01*
X130750Y150999D02*
X132423D01*
X102100Y123999D02*
X132338D01*
X102100Y125799D02*
X132306D01*
X102100Y124899D02*
X132251D01*
X131283Y151899D02*
X132248D01*
X102100Y259899D02*
X130637D01*
X102100Y260799D02*
X129932D01*
X102100Y261699D02*
X129705D01*
X102100Y263499D02*
X129700D01*
X102100Y262599D02*
X129700D01*
X129125Y264399D02*
X129275D01*
X119099D02*
X120901D01*
X119528Y255399D02*
X120472D01*
X119679Y144699D02*
X120321D01*
X102100Y264399D02*
X110901D01*
X102100Y255399D02*
X110472D01*
X102100Y144699D02*
X110321D01*
X102100Y304899D02*
X109871D01*
X102100Y294999D02*
X109813D01*
X102100Y204999D02*
X109813D01*
X102100Y285099D02*
X109803D01*
X102100Y195099D02*
X109803D01*
X102100Y214899D02*
X109803D01*
X102100Y275199D02*
X109772D01*
X102100Y185199D02*
X109772D01*
X102100Y224799D02*
X109771D01*
X102100Y265299D02*
X109714D01*
X102100Y175299D02*
X109714D01*
X102100Y234699D02*
X109712D01*
X102100Y165399D02*
X109647D01*
X102100Y244599D02*
X109645D01*
X102100Y154599D02*
X109645D01*
X102100Y245499D02*
X109586D01*
X102100Y155499D02*
X109586D01*
X102100Y254499D02*
X109584D01*
X102100Y164499D02*
X109584D01*
X102100Y235599D02*
X109531D01*
X102100Y145599D02*
X109531D01*
X102100Y174399D02*
X109529D01*
X102100Y225699D02*
X109482D01*
X102100Y274299D02*
X109481D01*
X102100Y184299D02*
X109481D01*
X102100Y215799D02*
X109438D01*
X102100Y284199D02*
X109437D01*
X102100Y194199D02*
X109437D01*
X102100Y295899D02*
X109399D01*
X102100Y205899D02*
X109399D01*
X102100Y294099D02*
X109398D01*
X102100Y204099D02*
X109398D01*
X102100Y285999D02*
X109366D01*
X102100Y195999D02*
X109366D01*
X102100Y303999D02*
X109365D01*
X102100Y213999D02*
X109365D01*
X102100Y276099D02*
X109336D01*
X102100Y186099D02*
X109336D01*
X102100Y223899D02*
X109336D01*
X102100Y266199D02*
X109312D01*
X102100Y176199D02*
X109312D01*
X102100Y233799D02*
X109311D01*
X102100Y166299D02*
X109291D01*
X102100Y243699D02*
X109291D01*
X102100Y153699D02*
X109291D01*
X102100Y246399D02*
X109275D01*
X102100Y156399D02*
X109275D01*
X102100Y253599D02*
X109274D01*
X102100Y163599D02*
X109274D01*
X102100Y236499D02*
X109263D01*
X102100Y146499D02*
X109263D01*
X102100Y173499D02*
X109262D01*
X102100Y226599D02*
X109255D01*
X102100Y273399D02*
X109254D01*
X102100Y183399D02*
X109254D01*
X102100Y216699D02*
X109251D01*
X102100Y283299D02*
X109250D01*
X102100Y193299D02*
X109250D01*
X102100Y303099D02*
X109250D01*
X102100Y302199D02*
X109250D01*
X102100Y301299D02*
X109250D01*
X102100Y300399D02*
X109250D01*
X102100Y299499D02*
X109250D01*
X102100Y298599D02*
X109250D01*
X102100Y297699D02*
X109250D01*
X102100Y296799D02*
X109250D01*
X102100Y293199D02*
X109250D01*
X102100Y292299D02*
X109250D01*
X102100Y291399D02*
X109250D01*
X102100Y290499D02*
X109250D01*
X102100Y289599D02*
X109250D01*
X102100Y288699D02*
X109250D01*
X102100Y287799D02*
X109250D01*
X102100Y286899D02*
X109250D01*
X102100Y282399D02*
X109250D01*
X102100Y281499D02*
X109250D01*
X102100Y280599D02*
X109250D01*
X102100Y279699D02*
X109250D01*
X102100Y278799D02*
X109250D01*
X102100Y277899D02*
X109250D01*
X102100Y276999D02*
X109250D01*
X102100Y272499D02*
X109250D01*
X102100Y271599D02*
X109250D01*
X102100Y270699D02*
X109250D01*
X102100Y269799D02*
X109250D01*
X102100Y268899D02*
X109250D01*
X102100Y267999D02*
X109250D01*
X102100Y267099D02*
X109250D01*
X102100Y252699D02*
X109250D01*
X102100Y251799D02*
X109250D01*
X102100Y250899D02*
X109250D01*
X102100Y249999D02*
X109250D01*
X102100Y249099D02*
X109250D01*
X102100Y248199D02*
X109250D01*
X102100Y247299D02*
X109250D01*
X102100Y242799D02*
X109250D01*
X102100Y241899D02*
X109250D01*
X102100Y240999D02*
X109250D01*
X102100Y240099D02*
X109250D01*
X102100Y239199D02*
X109250D01*
X102100Y238299D02*
X109250D01*
X102100Y237399D02*
X109250D01*
X102100Y232899D02*
X109250D01*
X102100Y231999D02*
X109250D01*
X102100Y231099D02*
X109250D01*
X102100Y230199D02*
X109250D01*
X102100Y229299D02*
X109250D01*
X102100Y228399D02*
X109250D01*
X102100Y227499D02*
X109250D01*
X102100Y222999D02*
X109250D01*
X102100Y222099D02*
X109250D01*
X102100Y221199D02*
X109250D01*
X102100Y220299D02*
X109250D01*
X102100Y219399D02*
X109250D01*
X102100Y218499D02*
X109250D01*
X102100Y217599D02*
X109250D01*
X102100Y213099D02*
X109250D01*
X102100Y212199D02*
X109250D01*
X102100Y211299D02*
X109250D01*
X102100Y210399D02*
X109250D01*
X102100Y209499D02*
X109250D01*
X102100Y208599D02*
X109250D01*
X102100Y207699D02*
X109250D01*
X102100Y206799D02*
X109250D01*
X102100Y203199D02*
X109250D01*
X102100Y202299D02*
X109250D01*
X102100Y201399D02*
X109250D01*
X102100Y200499D02*
X109250D01*
X102100Y199599D02*
X109250D01*
X102100Y198699D02*
X109250D01*
X102100Y197799D02*
X109250D01*
X102100Y196899D02*
X109250D01*
X102100Y192399D02*
X109250D01*
X102100Y191499D02*
X109250D01*
X102100Y190599D02*
X109250D01*
X102100Y189699D02*
X109250D01*
X102100Y188799D02*
X109250D01*
X102100Y187899D02*
X109250D01*
X102100Y186999D02*
X109250D01*
X102100Y182499D02*
X109250D01*
X102100Y181599D02*
X109250D01*
X102100Y180699D02*
X109250D01*
X102100Y179799D02*
X109250D01*
X102100Y178899D02*
X109250D01*
X102100Y177999D02*
X109250D01*
X102100Y177099D02*
X109250D01*
X102100Y172599D02*
X109250D01*
X102100Y171699D02*
X109250D01*
X102100Y170799D02*
X109250D01*
X102100Y169899D02*
X109250D01*
X102100Y168999D02*
X109250D01*
X102100Y168099D02*
X109250D01*
X102100Y167199D02*
X109250D01*
X102100Y162699D02*
X109250D01*
X102100Y161799D02*
X109250D01*
X102100Y160899D02*
X109250D01*
X102100Y159999D02*
X109250D01*
X102100Y159099D02*
X109250D01*
X102100Y158199D02*
X109250D01*
X102100Y157299D02*
X109250D01*
X102100Y152799D02*
X109250D01*
X102100Y151899D02*
X109250D01*
X102100Y150999D02*
X109250D01*
X102100Y150099D02*
X109250D01*
X102100Y149199D02*
X109250D01*
X102100Y148299D02*
X109250D01*
X102100Y147399D02*
X109250D01*
X192600Y236300D02*
G03X192600I-1000J0D01*
G54D31*
G01X280971Y127342D03*
Y110342D03*
X306171D03*
Y127342D03*
X323500Y259900D03*
X340500D03*
Y285100D03*
X323500D03*
G54D35*
X319000Y225000D03*
Y215000D03*
X327000D03*
Y225000D03*
X155142Y231000D03*
X174858D03*
X138000Y152400D03*
Y125000D03*
X214800Y175500D03*
X273000D03*
X309700Y182000D03*
X260500Y184000D03*
X185000Y277000D03*
X160000D03*
X309700Y242500D03*
X253000Y206000D03*
Y266000D03*
X260500Y218500D03*
G54D40*
X237500Y185000D03*
G54D43*
X146000Y264500D03*
Y251500D03*
G54D44*
X246800Y235000D03*
X239200D03*
X201300Y223500D03*
X193700D03*
X149200Y203500D03*
X156800D03*
X149200Y195500D03*
X156800D03*
X344300Y226500D03*
X336700D03*
X331900Y180000D03*
X324300D03*
X200300Y215500D03*
X192700D03*
G54D45*
X161000Y223200D03*
Y230800D03*
X169000Y223200D03*
Y230800D03*
X135000Y256200D03*
Y263800D03*
X331500Y171300D03*
Y163700D03*
X280000Y183700D03*
Y191300D03*
X195000Y284200D03*
Y291800D03*
X239000Y284800D03*
Y277200D03*
G54D46*
X331000Y152500D03*
X344000D03*
G54D47*
X315800Y141000D03*
X296200D03*
X326700Y137500D03*
X346300D03*
G54D48*
X177500Y199500D03*
X189500D03*
X166000Y186000D03*
X178000D03*
G54D49*
X342500Y165200D03*
Y184800D03*
G54D50*
X187000Y110063D03*
Y119937D03*
X157500Y110063D03*
Y119937D03*
X125000Y150000D03*
X115000D03*
X212500D03*
Y140000D03*
X202500Y150000D03*
Y140000D03*
X160000Y315000D03*
Y325000D03*
X192500Y150000D03*
Y140000D03*
X290000Y182500D03*
X300000D03*
X182500Y150000D03*
Y140000D03*
X162500Y150000D03*
Y140000D03*
X152500Y150000D03*
Y140000D03*
X260000Y315000D03*
Y325000D03*
X270000Y315000D03*
Y325000D03*
X280000Y315000D03*
Y325000D03*
X182500Y130000D03*
X192500D03*
X152500D03*
X162500D03*
X290000Y192500D03*
X300000D03*
X290000Y315000D03*
Y325000D03*
X150000Y315000D03*
Y325000D03*
X300000Y315000D03*
Y325000D03*
X186500Y188500D03*
X196500D03*
X310000Y315000D03*
Y325000D03*
X125000Y220000D03*
X115000D03*
X125000Y210000D03*
X115000D03*
X125000Y230000D03*
X115000D03*
X125000Y240000D03*
X115000D03*
X172500Y150000D03*
Y140000D03*
X125000Y250000D03*
X115000D03*
X202500Y125000D03*
Y115000D03*
X125000Y270000D03*
X115000D03*
X210000Y315000D03*
Y325000D03*
X125000Y280000D03*
X115000D03*
X220000Y315000D03*
Y325000D03*
X125000Y290000D03*
X115000D03*
X320000Y315000D03*
Y325000D03*
X125000Y300000D03*
X115000D03*
X290000Y282500D03*
X300000D03*
X140000Y315000D03*
Y325000D03*
X290000Y272500D03*
X300000D03*
X170000Y315000D03*
Y325000D03*
X230000Y315000D03*
Y325000D03*
X290000Y262500D03*
X300000D03*
X180000Y315000D03*
Y325000D03*
X262500Y150000D03*
Y140000D03*
X190000Y315000D03*
Y325000D03*
X252500Y150000D03*
Y140000D03*
X200000Y315000D03*
Y325000D03*
X242500Y150000D03*
Y140000D03*
X290000Y252500D03*
X300000D03*
X125000Y160000D03*
X115000D03*
X240000Y315000D03*
Y325000D03*
X290000Y242500D03*
X300000D03*
X290000Y232500D03*
X300000D03*
X290000Y222500D03*
X300000D03*
X290000Y212500D03*
X300000D03*
X290000Y202500D03*
X300000D03*
X355000Y185000D03*
X365000D03*
X282500Y150000D03*
Y140000D03*
X272500Y150000D03*
Y140000D03*
X232500Y150000D03*
Y140000D03*
X125000Y260000D03*
X115000D03*
X250000Y315000D03*
Y325000D03*
X222500Y150000D03*
Y140000D03*
X125000Y170000D03*
X115000D03*
X125000Y180000D03*
X115000D03*
X125000Y190000D03*
X115000D03*
X125000Y200000D03*
X115000D03*
X366000Y252000D03*
X356000D03*
X330000Y296000D03*
X340000D03*
X318000Y190000D03*
Y180000D03*
X335500Y324937D03*
Y315063D03*
X227500Y115000D03*
Y125000D03*
X237500Y115000D03*
Y125000D03*
X247500Y115000D03*
Y125000D03*
X257500Y115000D03*
Y125000D03*
X267500Y115000D03*
Y125000D03*
G54D51*
X366000Y226500D03*
Y214500D03*
G54D52*
X338000Y196000D03*
Y244000D03*
G54D53*
X148000Y275000D03*
X138000D03*
G54D54*
X355000Y200800D03*
Y193200D03*
X282000Y156200D03*
Y163800D03*
X310000Y290200D03*
Y297800D03*
X174500Y128300D03*
Y120700D03*
X145600Y128800D03*
Y121200D03*
X219800Y124200D03*
Y131800D03*
X212100Y132000D03*
Y124400D03*
X332000Y281200D03*
Y288800D03*
Y267200D03*
Y274800D03*
X320500Y196700D03*
Y204300D03*
G54D55*
X188100Y207600D03*
X195700D03*
X251800Y227000D03*
X244200D03*
X305200Y220000D03*
X312800D03*
X305200Y210000D03*
X312800D03*
X231200Y298000D03*
X238800D03*
X335800Y305200D03*
X343400D03*
X251200Y193000D03*
X258800D03*
G54D57*
X192567Y240736D03*
Y242705D03*
Y244673D03*
Y246642D03*
Y248610D03*
Y250579D03*
Y252547D03*
Y254516D03*
Y256484D03*
Y258453D03*
Y260421D03*
Y262390D03*
Y264358D03*
Y266327D03*
Y268295D03*
Y270264D03*
X238433D03*
Y268295D03*
Y266327D03*
Y264358D03*
Y262390D03*
Y260421D03*
Y258453D03*
Y256484D03*
Y254516D03*
Y252547D03*
Y250579D03*
Y248610D03*
Y246642D03*
Y244673D03*
Y242705D03*
Y240736D03*
G54D58*
X200736Y278433D03*
X202705D03*
X204673D03*
X206642D03*
X208610D03*
X210579D03*
X212547D03*
X214516D03*
X216484D03*
X218453D03*
X220421D03*
X222390D03*
X224358D03*
X226327D03*
X228295D03*
X230264D03*
Y232567D03*
X228295D03*
X226327D03*
X224358D03*
X222390D03*
X220421D03*
X218453D03*
X216484D03*
X214516D03*
X212547D03*
X210579D03*
X208610D03*
X206642D03*
X204673D03*
X202705D03*
X200736D03*
G54D59*
X322200Y171600D03*
Y153400D03*
Y162500D03*
G54D60*
X297800D03*
G54D61*
X316500Y277500D03*
Y269500D03*
X308500Y273500D03*
G54D62*
X106500Y185100D02*
Y251500D01*
X115000Y260000*
X120000Y120000D02*
Y134348D01*
X106500Y147848*
Y185100*
X342500Y167300D02*
Y169550D01*
X350550Y177600*
X357600*
X365000Y185000*
X360000Y120000D02*
X346300Y134855D01*
Y137500*
X342500Y165200D02*
Y167300D01*
X115000Y260000D02*
X109900D01*
X109500Y260400*
Y309500*
X120000Y320000*
X130100Y330100*
X144900*
X150000Y325000*
X159000Y334000*
X245000*
X275000*
X335500Y324937D02*
X326437Y334000D01*
X275000*
X360000Y320000D02*
X345938D01*
X341001Y324937*
X335500*
G54D88*
X336200Y213500D03*
X354800D03*
G74*
X0Y0D02*
M02*
/Modules/ARM/STM32F10xRxT/CAM_PROFI/T1.PHO
0,0 → 1,8394
*
*
G04 PADS 9.2 Build Number: 414666 generated Gerber (RS-274-X) file*
G04 PC Version=2.1*
*
%IN "STM32F10XRXT.pcb"*%
*
%MOIN*%
*
%FSLAX35Y35*%
*
*
*
*
G04 PC Standard Apertures*
*
*
G04 Thermal Relief Aperture macro.*
%AMTER*
1,1,$1,0,0*
1,0,$1-$2,0,0*
21,0,$3,$4,0,0,45*
21,0,$3,$4,0,0,135*
%
*
*
G04 Annular Aperture macro.*
%AMANN*
1,1,$1,0,0*
1,0,$2,0,0*
%
*
*
G04 Odd Aperture macro.*
%AMODD*
1,1,$1,0,0*
1,0,$1-0.005,0,0*
%
*
*
G04 PC Custom Aperture Macros*
*
*
*
*
*
*
G04 PC Aperture Table*
*
%ADD017C,0.02*%
%ADD020C,0.012*%
%ADD023C,0.007*%
%ADD024C,0.001*%
%ADD025C,0.01*%
%ADD027C,0.00787*%
%ADD029C,0.005*%
%ADD036C,0.008*%
*
*
*
*
G04 PC Circuitry*
G04 Layer Name STM32F10XRXT.pcb - circuitry*
%LPD*%
*
*
G04 PC Custom Flashes*
G04 Layer Name STM32F10XRXT.pcb - flashes*
%LPD*%
*
*
G04 PC Circuitry*
G04 Layer Name STM32F10XRXT.pcb - circuitry*
%LPD*%
*
G54D17*
G01X213036Y214825D02*
X209400Y201700D01*
X213036Y214825D02*
X216673Y201700D01*
X210764Y206075D02*
X215309D01*
X220764Y214825D02*
Y201700D01*
Y214825D02*
X224855D01*
X226218Y214200*
X226673Y213575*
X227127Y212325*
Y211075*
X226673Y209825*
X226218Y209200*
X224855Y208575*
X220764*
X223945D02*
X227127Y201700D01*
X231218Y214825D02*
Y201700D01*
Y214825D02*
X234855Y201700D01*
X238491Y214825D02*
X234855Y201700D01*
X238491Y214825D02*
Y201700D01*
G54D20*
X280971Y110342D02*
X306171D01*
X138000Y125000D02*
Y152400D01*
X214800Y175500D02*
X273000D01*
X309700Y182000D02*
Y242500D01*
X260500Y184000D02*
Y218500D01*
X280971Y127342D02*
X306171D01*
X160000Y277000D02*
X185000D01*
X253000Y206000D02*
Y266000D01*
G54D23*
X211137Y113200D02*
X214200D01*
X212012D02*
X211356Y113677D01*
X211137Y113995*
X211137D02*
Y114473D01*
X211137D02*
X211356Y114791D01*
X212012Y114950*
X212012D02*
X214200D01*
X211137Y116382D02*
X214200D01*
X212450D02*
X211794Y116541D01*
X211356Y116859*
X211137Y117177*
X211137D02*
Y117655D01*
X211794Y120836D02*
X211356Y120677D01*
X211137Y120200*
X211137D02*
Y119723D01*
X211137D02*
X211356Y119245D01*
X211794Y119086*
X212231Y119245*
X212450Y119564*
X212669Y120359*
X212887Y120677*
X212887D02*
X213325Y120836D01*
X213544*
X213981Y120677*
X214200Y120200*
Y119723*
X213981Y119245*
X213544Y119086*
X209606Y122745D02*
X213325D01*
X213981Y122905*
X214200Y123223*
Y123541*
X211137Y122268D02*
Y123382D01*
X330000Y307094D02*
Y302500D01*
Y307094D02*
X331114D01*
X331591Y306875*
X331909Y306438*
X331909D02*
X332068Y306000D01*
X332227Y305344*
Y304250*
X332068Y303594*
X331909Y303156*
X331591Y302719*
X331114Y302500*
X330000*
X334773Y307094D02*
Y302500D01*
X333659Y307094D02*
X335886D01*
X337318D02*
Y302500D01*
Y307094D02*
X338750D01*
X339227Y306875*
X339386Y306656*
X339545Y306219*
Y305781*
X339386Y305344*
X339227Y305125*
X338750Y304906*
X337318*
X338432D02*
X339545Y302500D01*
X340500Y255594D02*
Y251000D01*
Y255594D02*
X341932D01*
X342409Y255375*
X342568Y255156*
X342727Y254719*
Y254281*
X342568Y253844*
X342409Y253625*
X341932Y253406*
X340500*
X341614D02*
X342727Y251000D01*
X345273Y255594D02*
Y251000D01*
X344159Y255594D02*
X346386D01*
X350045Y254938D02*
X349727Y255375D01*
X349250Y255594*
X348614*
X348136Y255375*
X347818Y254938*
X347818D02*
Y254500D01*
X347977Y254063*
X347977D02*
X348136Y253844D01*
X348455Y253625*
X349409Y253188*
X349409D02*
X349727Y252969D01*
X349886Y252750*
X350045Y252313*
X350045D02*
Y251656D01*
X349727Y251219*
X349250Y251000*
X348614*
X348136Y251219*
X347818Y251656*
G54D24*
G54D25*
X180082Y263025D02*
X179627Y263650D01*
X178945Y263963*
X178945D02*
X178036D01*
X178036D02*
X177355Y263650D01*
X176900Y263025*
Y262400*
X177127Y261775*
X177355Y261463*
X177355D02*
X177809Y261150D01*
X179173Y260525*
X179627Y260213*
X179627D02*
X179855Y259900D01*
X180082Y259275*
Y258338*
X180082D02*
X179627Y257713D01*
X179627D02*
X178945Y257400D01*
X178036*
X177355Y257713*
X177355D02*
X176900Y258338D01*
X183718Y263963D02*
Y257400D01*
X182127Y263963D02*
X185309D01*
X187355D02*
Y257400D01*
Y263963D02*
X189173Y257400D01*
X190991Y263963D02*
X189173Y257400D01*
X190991Y263963D02*
Y257400D01*
X193491Y263963D02*
X195991D01*
X195991D02*
X194627Y261463D01*
X194627D02*
X195309D01*
X195309D02*
X195764Y261150D01*
X195991Y260838*
X195991D02*
X196218Y259900D01*
Y259275*
X195991Y258338*
X195991D02*
X195536Y257713D01*
X195536D02*
X194855Y257400D01*
X194173*
X193491Y257713*
X193491D02*
X193264Y258025D01*
X193036Y258650*
X198491Y262400D02*
Y262713D01*
X198491D02*
X198718Y263338D01*
X198718D02*
X198945Y263650D01*
X199400Y263963*
X199400D02*
X200309D01*
X200309D02*
X200764Y263650D01*
X200991Y263338*
X200991D02*
X201218Y262713D01*
X201218D02*
Y262088D01*
X201218D02*
X200991Y261463D01*
X200991D02*
X200536Y260525D01*
X198264Y257400*
X201445*
X203491Y263963D02*
Y257400D01*
Y263963D02*
X206445D01*
X203491Y260838D02*
X205309D01*
X208491Y262713D02*
X208945Y263025D01*
X209627Y263963*
X209627D02*
Y257400D01*
X213036Y263963D02*
X212355Y263650D01*
X211900Y262713*
X211900D02*
X211673Y261150D01*
Y260213*
X211673D02*
X211900Y258650D01*
X212355Y257713*
X212355D02*
X213036Y257400D01*
X213491*
X214173Y257713*
X214173D02*
X214627Y258650D01*
X214855Y260213*
X214855D02*
Y261150D01*
X214627Y262713*
X214627D02*
X214173Y263650D01*
X213491Y263963*
X213491D02*
X213036D01*
X216900Y261775D02*
X219400Y257400D01*
Y261775D02*
X216900Y257400D01*
X221445Y263963D02*
Y257400D01*
Y263963D02*
X223491D01*
X223491D02*
X224173Y263650D01*
X224400Y263338*
X224400D02*
X224627Y262713D01*
X224627D02*
Y262088D01*
X224627D02*
X224400Y261463D01*
X224400D02*
X224173Y261150D01*
X223491Y260838*
X223491D02*
X221445D01*
X223036D02*
X224627Y257400D01*
X226673Y261775D02*
X229173Y257400D01*
Y261775D02*
X226673Y257400D01*
X232809Y263963D02*
Y257400D01*
X231218Y263963D02*
X234400D01*
X237809D02*
X237127Y263650D01*
X236673Y262713*
X236673D02*
X236445Y261150D01*
Y260213*
X236445D02*
X236673Y258650D01*
X237127Y257713*
X237127D02*
X237809Y257400D01*
X238264*
X238945Y257713*
X238945D02*
X239400Y258650D01*
X239627Y260213*
X239627D02*
Y261150D01*
X239400Y262713*
X239400D02*
X238945Y263650D01*
X238264Y263963*
X238264D02*
X237809D01*
X241673Y262713D02*
X242127Y263025D01*
X242809Y263963*
X242809D02*
Y257400D01*
X246673Y263963D02*
X244855Y257400D01*
X246673Y263963D02*
X248491Y257400D01*
X245536Y259588D02*
X247809D01*
X340875Y154545D02*
X346500D01*
X343687Y152500D02*
Y156591D01*
X339937Y161591D02*
Y159318D01*
X339937D02*
X342750Y159091D01*
X342437Y159318*
X342437D02*
X342125Y160000D01*
Y160682*
X342437Y161364*
X342437D02*
X343062Y161818D01*
X343062D02*
X344000Y162045D01*
X344625Y161818*
X345562Y161591*
X345562D02*
X346187Y161136D01*
X346187D02*
X346500Y160455D01*
Y159773*
X346187Y159091*
X346187D02*
X345875Y158864D01*
X345250Y158636*
X339937Y164091D02*
X346500Y165909D01*
X339937Y167727D02*
X346500Y165909D01*
X320045Y139125D02*
Y133500D01*
X318000Y136313D02*
X322091D01*
X324591Y140063D02*
X327091D01*
X327091D02*
X325727Y137563D01*
X325727D02*
X326409D01*
X326409D02*
X326864Y137250D01*
X327091Y136938*
X327091D02*
X327318Y136000D01*
Y135375*
X327091Y134438*
X327091D02*
X326636Y133813D01*
X326636D02*
X325955Y133500D01*
X325273*
X324591Y133813*
X324591D02*
X324364Y134125D01*
X324136Y134750*
X329818Y133813D02*
X329591Y133500D01*
X329364Y133813*
X329364D02*
X329591Y134125D01*
X329818Y133813*
X329818D02*
Y133187D01*
X329818D02*
X329591Y132562D01*
X329591D02*
X329364Y132250D01*
X332318Y140063D02*
X334818D01*
X334818D02*
X333455Y137563D01*
X333455D02*
X334136D01*
X334136D02*
X334591Y137250D01*
X334818Y136938*
X334818D02*
X335045Y136000D01*
Y135375*
X334818Y134438*
X334818D02*
X334364Y133813D01*
X334364D02*
X333682Y133500D01*
X333000*
X332318Y133813*
X332318D02*
X332091Y134125D01*
X331864Y134750*
X337091Y140063D02*
X338909Y133500D01*
X340727Y140063D02*
X338909Y133500D01*
X218300Y110913D02*
X218755Y111225D01*
X219436Y112163*
X219436D02*
Y105600D01*
X347500Y266813D02*
X347955Y267125D01*
X348636Y268063*
X348636D02*
Y261500D01*
X186045Y181625D02*
Y176000D01*
X184000Y178813D02*
X188091D01*
X194500Y178313D02*
X198591D01*
X189600Y250875D02*
X190509Y246500D01*
X191418Y250875D02*
X190509Y246500D01*
X191418Y250875D02*
X192327Y246500D01*
X193236Y250875D02*
X192327Y246500D01*
X195282Y250875D02*
X196191Y246500D01*
X197100Y250875D02*
X196191Y246500D01*
X197100Y250875D02*
X198009Y246500D01*
X198918Y250875D02*
X198009Y246500D01*
X200964Y250875D02*
X201873Y246500D01*
X202782Y250875D02*
X201873Y246500D01*
X202782Y250875D02*
X203691Y246500D01*
X204600Y250875D02*
X203691Y246500D01*
X206873Y247125D02*
X206645Y246813D01*
X206645D02*
X206873Y246500D01*
X207100Y246813*
X207100D02*
X206873Y247125D01*
X209145Y250875D02*
Y246500D01*
Y249625D02*
X209827Y250563D01*
X209827D02*
X210282Y250875D01*
X210964*
X211418Y250563*
X211418D02*
X211645Y249625D01*
Y246500*
Y249625D02*
X212327Y250563D01*
X212327D02*
X212782Y250875D01*
X213464*
X213918Y250563*
X213918D02*
X214145Y249625D01*
Y246500*
X216191Y253063D02*
Y246500D01*
X220964Y250875D02*
Y246500D01*
Y249938D02*
X220509Y250563D01*
X220509D02*
X220055Y250875D01*
X219373*
X218918Y250563*
X218918D02*
X218464Y249938D01*
X218464D02*
X218236Y249000D01*
Y248375*
X218464Y247438*
X218464D02*
X218918Y246813D01*
X218918D02*
X219373Y246500D01*
X220055*
X220509Y246813*
X220509D02*
X220964Y247438D01*
X223009Y253063D02*
Y246500D01*
Y249938D02*
X223464Y250563D01*
X223464D02*
X223918Y250875D01*
X224600*
X225055Y250563*
X225055D02*
X225509Y249938D01*
X225509D02*
X225736Y249000D01*
Y248375*
X225509Y247438*
X225509D02*
X225055Y246813D01*
X225055D02*
X224600Y246500D01*
X223918*
X223464Y246813*
X223464D02*
X223009Y247438D01*
X228009Y247125D02*
X227782Y246813D01*
X227782D02*
X228009Y246500D01*
X228236Y246813*
X228236D02*
X228009Y247125D01*
X233009Y249938D02*
X232555Y250563D01*
X232555D02*
X232100Y250875D01*
X231418*
X230964Y250563*
X230964D02*
X230509Y249938D01*
X230509D02*
X230282Y249000D01*
Y248375*
X230509Y247438*
X230509D02*
X230964Y246813D01*
X230964D02*
X231418Y246500D01*
X232100*
X232555Y246813*
X232555D02*
X233009Y247438D01*
X237555Y250875D02*
X235055Y246500D01*
Y250875D02*
X237555D01*
X235055Y246500D02*
X237555D01*
G54D27*
X176811Y240843D02*
X153189D01*
X176811Y221157D02*
X153189D01*
Y240843D02*
G75*
G03Y221157I-0J-9843D01*
G01X176811D02*
G03Y240843I0J9843D01*
G54D29*
G01X361936Y305481D02*
Y302981D01*
X361823Y302513*
X361823D02*
X361709Y302356D01*
X361482Y302200*
X361255*
X361027Y302356*
X360914Y302513*
X360914D02*
X360800Y302981D01*
Y303294*
X362959Y305481D02*
Y302200D01*
Y305481D02*
X364436D01*
X362959Y303919D02*
X363868D01*
X365459Y304856D02*
X365686Y305013D01*
X365686D02*
X366027Y305481D01*
Y302200*
X245218Y108361D02*
Y105611D01*
X245082Y105095*
X244945Y104923*
X244673Y104752*
X244400*
X244127Y104923*
X243991Y105095*
X243855Y105611*
Y105955*
X248218Y108361D02*
X246855D01*
X246718Y106814*
X246855Y106986*
X247264Y107158*
X247673*
X248082Y106986*
X248355Y106642*
X248491Y106127*
X248355Y105783*
X248218Y105267*
X247945Y104923*
X247536Y104752*
X247127*
X246718Y104923*
X246582Y105095*
X246445Y105439*
X249718Y107673D02*
X249991Y107845D01*
X250400Y108361*
Y104752*
G54D36*
X183001Y122001D02*
G03Y107999I4124J-7001D01*
G01X190995Y107997D02*
G03X191007Y121996I-3995J7003D01*
G01X153501Y122001D02*
G03Y107999I4124J-7001D01*
G01X161495Y107997D02*
G03X161507Y121996I-3995J7003D01*
G01X345000Y110000D02*
X315000D01*
Y130000*
X345000*
Y110000*
X130000Y155000D02*
Y145000D01*
X110000*
Y155000*
X130000*
X207500D02*
X217500D01*
Y135000*
X207500*
Y155000*
X197500D02*
X207500D01*
Y135000*
X197500*
Y155000*
X165000Y310000D02*
X155000D01*
Y330000*
X165000*
Y310000*
X187500Y155000D02*
X197500D01*
Y135000*
X187500*
Y155000*
X285000Y177500D02*
Y187500D01*
X305000*
Y177500*
X285000*
X177500Y155000D02*
X187500D01*
Y135000*
X177500*
Y155000*
X157500D02*
X167500D01*
Y135000*
X157500*
Y155000*
X370000Y175000D02*
Y145000D01*
X350000*
Y175000*
X370000*
X147500Y155000D02*
X157500D01*
Y135000*
X147500*
Y155000*
X265000Y310000D02*
X255000D01*
Y330000*
X265000*
Y310000*
X275000D02*
X265000D01*
Y330000*
X275000*
Y310000*
X285000D02*
X275000D01*
Y330000*
X285000*
Y310000*
X177500Y125000D02*
Y135000D01*
X197500*
Y125000*
X177500*
X147500D02*
Y135000D01*
X167500*
Y125000*
X147500*
X285000Y187500D02*
Y197500D01*
X305000*
Y187500*
X285000*
X295000Y310000D02*
X285000D01*
Y330000*
X295000*
Y310000*
X155000D02*
X145000D01*
Y330000*
X155000*
Y310000*
X305000D02*
X295000D01*
Y330000*
X305000*
Y310000*
X181500Y193500D02*
X201500D01*
Y183500*
X181500*
Y193500*
X315000Y310000D02*
X305000D01*
Y330000*
X315000*
Y310000*
X130000Y225000D02*
Y215000D01*
X110000*
Y225000*
X130000*
Y215000D02*
Y205000D01*
X110000*
Y215000*
X130000*
Y235000D02*
Y225000D01*
X110000*
Y235000*
X130000*
Y245000D02*
Y235000D01*
X110000*
Y245000*
X130000*
X167500Y155000D02*
X177500D01*
Y135000*
X167500*
Y155000*
X130000Y255000D02*
Y245000D01*
X110000*
Y255000*
X130000*
X207500Y130000D02*
Y110000D01*
X197500*
Y130000*
X207500*
X130000Y275000D02*
Y265000D01*
X110000*
Y275000*
X130000*
X215000Y310000D02*
X205000D01*
Y330000*
X215000*
Y310000*
X130000Y285000D02*
Y275000D01*
X110000*
Y285000*
X130000*
X225000Y310000D02*
X215000D01*
Y330000*
X225000*
Y310000*
X130000Y295000D02*
Y285000D01*
X110000*
Y295000*
X130000*
X325000Y310000D02*
X315000D01*
Y330000*
X325000*
Y310000*
X130000Y305000D02*
Y295000D01*
X110000*
Y305000*
X130000*
X285000Y277500D02*
Y287500D01*
X305000*
Y277500*
X285000*
X145000Y310000D02*
X135000D01*
Y330000*
X145000*
Y310000*
X285000Y267500D02*
Y277500D01*
X305000*
Y267500*
X285000*
X175000Y310000D02*
X165000D01*
Y330000*
X175000*
Y310000*
X235000D02*
X225000D01*
Y330000*
X235000*
Y310000*
X285000Y257500D02*
Y267500D01*
X305000*
Y257500*
X285000*
X185000Y310000D02*
X175000D01*
Y330000*
X185000*
Y310000*
X257500Y155000D02*
X267500D01*
Y135000*
X257500*
Y155000*
X195000Y310000D02*
X185000D01*
Y330000*
X195000*
Y310000*
X247500Y155000D02*
X257500D01*
Y135000*
X247500*
Y155000*
X205000Y310000D02*
X195000D01*
Y330000*
X205000*
Y310000*
X237500Y155000D02*
X247500D01*
Y135000*
X237500*
Y155000*
X285000Y247500D02*
Y257500D01*
X305000*
Y247500*
X285000*
X130000Y165000D02*
Y155000D01*
X110000*
Y165000*
X130000*
X245000Y310000D02*
X235000D01*
Y330000*
X245000*
Y310000*
X285000Y237500D02*
Y247500D01*
X305000*
Y237500*
X285000*
Y227500D02*
Y237500D01*
X305000*
Y227500*
X285000*
Y217500D02*
Y227500D01*
X305000*
Y217500*
X285000*
Y207500D02*
Y217500D01*
X305000*
Y207500*
X285000*
Y197500D02*
Y207500D01*
X305000*
Y197500*
X285000*
X350000Y190000D02*
X370000D01*
Y180000*
X350000*
Y190000*
X277500Y155000D02*
X287500D01*
Y135000*
X277500*
Y155000*
X267500D02*
X277500D01*
Y135000*
X267500*
Y155000*
X227500D02*
X237500D01*
Y135000*
X227500*
Y155000*
X376000Y244000D02*
Y196000D01*
X346000D02*
X379000D01*
Y244000*
X346000*
X330000D02*
X315000D01*
Y196000*
X330000*
X130000Y265000D02*
Y255000D01*
X110000*
Y265000*
X130000*
X255000Y310000D02*
X245000D01*
Y330000*
X255000*
Y310000*
X217500Y155000D02*
X227500D01*
Y135000*
X217500*
Y155000*
X372100Y300600D02*
Y262400D01*
X351900*
Y300600*
X372100*
X299071Y118842D02*
G03X299071I-5500J0D01*
G01X281471Y123342D02*
Y114342D01*
X305671Y123342D02*
Y114342D01*
X304771Y106742D02*
X282371D01*
X304771Y130942D02*
X282371D01*
X170000Y194000D02*
Y206000D01*
X198000*
Y194000*
X170000*
X166500Y196600D02*
X169800D01*
X166500Y203300D02*
X169900D01*
X130000Y175000D02*
Y165000D01*
X110000*
Y175000*
X130000*
Y185000D02*
Y175000D01*
X110000*
Y185000*
X130000*
Y195000D02*
Y185000D01*
X110000*
Y195000*
X130000*
Y205000D02*
Y195000D01*
X110000*
Y205000*
X130000*
X371000Y247000D02*
X351000D01*
Y257000*
X371000*
Y247000*
X325000Y301000D02*
X345000D01*
Y291000*
X325000*
Y301000*
X323000Y195000D02*
Y175000D01*
X313000*
Y195000*
X323000*
X339499Y312999D02*
G03Y327001I-4124J7001D01*
G01X331505Y327003D02*
G03X331493Y313004I3995J-7003D01*
G01X337500Y272500D02*
G03X337500I-5500J0D01*
G01X327500Y260400D02*
X336500D01*
X327500Y284600D02*
X336500D01*
X344100Y283700D02*
Y261300D01*
X319900Y283700D02*
Y261300D01*
X272500Y110000D02*
X222500D01*
Y130000*
X272500*
Y110000*
X185374Y116972D02*
Y113034D01*
Y116972D02*
X186329D01*
X186329D02*
X186738Y116784D01*
X187010Y116409*
X187147Y116034*
X187283Y115472*
X187283D02*
Y114534D01*
X187147Y113972*
X187147D02*
X187010Y113597D01*
X187010D02*
X186738Y113222D01*
X186738D02*
X186329Y113034D01*
X185374*
X190147Y116409D02*
X190010Y116784D01*
X189601Y116972*
X189601D02*
X189329D01*
X189329D02*
X188919Y116784D01*
X188647Y116222*
X188647D02*
X188510Y115284D01*
Y114347*
X188510D02*
X188647Y113597D01*
X188647D02*
X188919Y113222D01*
X188919D02*
X189329Y113034D01*
X189465*
X189874Y113222*
X189874D02*
X190147Y113597D01*
X190147D02*
X190283Y114159D01*
Y114347*
X190283D02*
X190147Y114909D01*
X189874Y115284*
X189465Y115472*
X189465D02*
X189329D01*
X189329D02*
X188919Y115284D01*
X188647Y114909*
X188510Y114347*
X155000Y116338D02*
Y112400D01*
Y116338D02*
X155955D01*
X155955D02*
X156364Y116150D01*
X156636Y115775*
X156773Y115400*
X156909Y114838*
X156909D02*
Y113900D01*
X156773Y113338*
X156773D02*
X156636Y112963D01*
X156636D02*
X156364Y112588D01*
X156364D02*
X155955Y112400D01*
X155000*
X160045Y116338D02*
X158682Y112400D01*
X158136Y116338D02*
X160045D01*
X319385Y116845D02*
Y113845D01*
X319385D02*
X319248Y113282D01*
X319112Y113095*
X319112D02*
X318839Y112907D01*
X318566*
X318294Y113095*
X318294D02*
X318157Y113282D01*
X318021Y113845*
X318021D02*
Y114220D01*
X320612Y116095D02*
X320885Y116282D01*
X321294Y116845*
X321294D02*
Y112907D01*
X119981Y151598D02*
Y148598D01*
X119981D02*
X119844Y148035D01*
X119708Y147848*
X119708D02*
X119435Y147660D01*
X119162*
X118890Y147848*
X118890D02*
X118753Y148035D01*
X118617Y148598*
X118617D02*
Y148973D01*
X121208Y150848D02*
X121481Y151035D01*
X121890Y151598*
X121890D02*
Y147660D01*
X123935Y151598D02*
X123526Y151410D01*
X123253Y150848*
X123253D02*
X123117Y149910D01*
Y149348*
X123117D02*
X123253Y148410D01*
X123526Y147848*
X123526D02*
X123935Y147660D01*
X124208*
X124617Y147848*
X124617D02*
X124890Y148410D01*
X125026Y149348*
X125026D02*
Y149910D01*
X124890Y150848*
X124890D02*
X124617Y151410D01*
X124208Y151598*
X124208D02*
X123935D01*
X210108Y143897D02*
X213108D01*
X213108D02*
X213671Y143760D01*
X213858Y143624*
X213858D02*
X214046Y143351D01*
Y143078*
X213858Y142806*
X213858D02*
X213671Y142669D01*
X213108Y142533*
X213108D02*
X212733D01*
X210858Y145124D02*
X210671Y145397D01*
X210108Y145806*
X210108D02*
X214046D01*
X210858Y147033D02*
X210671Y147306D01*
X210108Y147715*
X210108D02*
X214046D01*
X200138Y143042D02*
X203138D01*
X203138D02*
X203701Y142905D01*
X203888Y142769*
X203888D02*
X204076Y142496D01*
Y142223*
X203888Y141951*
X203888D02*
X203701Y141814D01*
X203138Y141678*
X203138D02*
X202763D01*
X200888Y144269D02*
X200701Y144542D01*
X200138Y144951*
X200138D02*
X204076D01*
X201076Y146314D02*
X200888D01*
X200888D02*
X200513Y146451D01*
X200513D02*
X200326Y146587D01*
X200138Y146860*
X200138D02*
Y147405D01*
X200138D02*
X200326Y147678D01*
X200513Y147814*
X200513D02*
X200888Y147951D01*
X200888D02*
X201263D01*
X201263D02*
X201638Y147814D01*
X201638D02*
X202201Y147542D01*
X204076Y146178*
Y148087*
X158263Y317093D02*
X161263D01*
X161263D02*
X161826Y316956D01*
X162013Y316820*
X162013D02*
X162201Y316547D01*
Y316274*
X162013Y316002*
X162013D02*
X161826Y315865D01*
X161263Y315729*
X161263D02*
X160888D01*
X159013Y318320D02*
X158826Y318593D01*
X158263Y319002*
X158263D02*
X162201D01*
X158263Y320502D02*
Y322002D01*
X158263D02*
X159763Y321184D01*
X159763D02*
Y321593D01*
X159763D02*
X159951Y321865D01*
X160138Y322002*
X160138D02*
X160701Y322138D01*
X161076*
X161638Y322002*
X161638D02*
X162013Y321729D01*
X162013D02*
X162201Y321320D01*
Y320911*
X162013Y320502*
X162013D02*
X161826Y320365D01*
X161451Y320229*
X190168Y142187D02*
X193168D01*
X193168D02*
X193731Y142050D01*
X193918Y141914*
X193918D02*
X194106Y141641D01*
Y141368*
X193918Y141096*
X193918D02*
X193731Y140959D01*
X193168Y140823*
X193168D02*
X192793D01*
X190918Y143414D02*
X190731Y143687D01*
X190168Y144096*
X190168D02*
X194106D01*
X190168Y146687D02*
X192793Y145323D01*
X192793D02*
Y147368D01*
X190168Y146687D02*
X194106D01*
X293178Y184927D02*
Y181927D01*
X293178D02*
X293041Y181364D01*
X292905Y181177*
X292905D02*
X292632Y180989D01*
X292359*
X292087Y181177*
X292087D02*
X291950Y181364D01*
X291814Y181927*
X291814D02*
Y182302D01*
X294405Y184177D02*
X294678Y184364D01*
X295087Y184927*
X295087D02*
Y180989D01*
X298087Y184927D02*
X296723D01*
X296723D02*
X296587Y183239D01*
X296723Y183427*
X296723D02*
X297132Y183614D01*
X297541*
X297950Y183427*
X297950D02*
X298223Y183052D01*
X298223D02*
X298359Y182489D01*
X298223Y182114*
X298087Y181552*
X298087D02*
X297814Y181177D01*
X297814D02*
X297405Y180989D01*
X296996*
X296587Y181177*
X296587D02*
X296450Y181364D01*
X296314Y181739*
X179913Y142187D02*
X182913D01*
X182913D02*
X183476Y142050D01*
X183663Y141914*
X183663D02*
X183851Y141641D01*
Y141368*
X183663Y141096*
X183663D02*
X183476Y140959D01*
X182913Y140823*
X182913D02*
X182538D01*
X180663Y143414D02*
X180476Y143687D01*
X179913Y144096*
X179913D02*
X183851D01*
X180476Y146959D02*
X180101Y146823D01*
X179913Y146414*
X179913D02*
Y146141D01*
X179913D02*
X180101Y145732D01*
X180663Y145459*
X180663D02*
X181601Y145323D01*
X182538*
X182538D02*
X183288Y145459D01*
X183288D02*
X183663Y145732D01*
X183663D02*
X183851Y146141D01*
Y146278*
X183663Y146687*
X183663D02*
X183288Y146959D01*
X183288D02*
X182726Y147096D01*
X182538*
X182538D02*
X181976Y146959D01*
X181601Y146687*
X181413Y146278*
X181413D02*
Y146141D01*
X181413D02*
X181601Y145732D01*
X181976Y145459*
X182538Y145323*
X161681Y142472D02*
X164681D01*
X164681D02*
X165244Y142335D01*
X165431Y142199*
X165431D02*
X165619Y141926D01*
Y141653*
X165431Y141381*
X165431D02*
X165244Y141244D01*
X164681Y141108*
X164681D02*
X164306D01*
X162431Y143699D02*
X162244Y143972D01*
X161681Y144381*
X161681D02*
X165619D01*
X161681Y146290D02*
X161869Y145881D01*
X162244Y145744*
X162619*
X162994Y145881*
X163181Y146153*
X163181D02*
X163369Y146699D01*
X163556Y147108*
X163556D02*
X163931Y147381D01*
X163931D02*
X164306Y147517D01*
X164306D02*
X164869D01*
X165244Y147381*
X165431Y147244*
X165431D02*
X165619Y146835D01*
Y146290*
X165431Y145881*
X165431D02*
X165244Y145744D01*
X164869Y145608*
X164306*
X164306D02*
X163931Y145744D01*
X163931D02*
X163556Y146017D01*
X163556D02*
X163369Y146426D01*
X163181Y146972*
X163181D02*
X162994Y147244D01*
X162619Y147381*
X162244*
X161869Y147244*
X161681Y146835*
X161681D02*
Y146290D01*
X354423Y151598D02*
Y148598D01*
X354423D02*
X354286Y148035D01*
X354150Y147848*
X354150D02*
X353877Y147660D01*
X353604*
X353332Y147848*
X353332D02*
X353195Y148035D01*
X353059Y148598*
X353059D02*
Y148973D01*
X355786Y150660D02*
Y150848D01*
X355786D02*
X355923Y151223D01*
X355923D02*
X356059Y151410D01*
X356332Y151598*
X356332D02*
X356877D01*
X356877D02*
X357150Y151410D01*
X357286Y151223*
X357286D02*
X357423Y150848D01*
X357423D02*
Y150473D01*
X357423D02*
X357286Y150098D01*
X357286D02*
X357014Y149535D01*
X355650Y147660*
X357559*
X149432Y142187D02*
X152432D01*
X152432D02*
X152995Y142050D01*
X153182Y141914*
X153182D02*
X153370Y141641D01*
Y141368*
X153182Y141096*
X153182D02*
X152995Y140959D01*
X152432Y140823*
X152432D02*
X152057D01*
X150370Y143550D02*
X150182D01*
X150182D02*
X149807Y143687D01*
X149807D02*
X149620Y143823D01*
X149432Y144096*
X149432D02*
Y144641D01*
X149432D02*
X149620Y144914D01*
X149807Y145050*
X149807D02*
X150182Y145187D01*
X150182D02*
X150557D01*
X150557D02*
X150932Y145050D01*
X150932D02*
X151495Y144778D01*
X153370Y143414*
Y145323*
X149432Y147368D02*
X149620Y146959D01*
X150182Y146687*
X150182D02*
X151120Y146550D01*
X151682*
X151682D02*
X152620Y146687D01*
X153182Y146959*
X153182D02*
X153370Y147368D01*
Y147641*
X153182Y148050*
X153182D02*
X152620Y148323D01*
X151682Y148459*
X151682D02*
X151120D01*
X150182Y148323*
X150182D02*
X149620Y148050D01*
X149432Y147641*
X149432D02*
Y147368D01*
X259105Y317948D02*
X262105D01*
X262105D02*
X262668Y317811D01*
X262855Y317675*
X262855D02*
X263043Y317402D01*
Y317129*
X262855Y316857*
X262855D02*
X262668Y316720D01*
X262105Y316584*
X262105D02*
X261730D01*
X260043Y319311D02*
X259855D01*
X259855D02*
X259480Y319448D01*
X259480D02*
X259293Y319584D01*
X259105Y319857*
X259105D02*
Y320402D01*
X259105D02*
X259293Y320675D01*
X259480Y320811*
X259480D02*
X259855Y320948D01*
X259855D02*
X260230D01*
X260230D02*
X260605Y320811D01*
X260605D02*
X261168Y320539D01*
X263043Y319175*
Y321084*
X259855Y322311D02*
X259668Y322584D01*
X259105Y322993*
X259105D02*
X263043D01*
X268220Y315954D02*
X271220D01*
X271220D02*
X271783Y315817D01*
X271970Y315681*
X271970D02*
X272158Y315408D01*
Y315135*
X271970Y314863*
X271970D02*
X271783Y314726D01*
X271220Y314590*
X271220D02*
X270845D01*
X269158Y317317D02*
X268970D01*
X268970D02*
X268595Y317454D01*
X268595D02*
X268408Y317590D01*
X268220Y317863*
X268220D02*
Y318408D01*
X268220D02*
X268408Y318681D01*
X268595Y318817*
X268595D02*
X268970Y318954D01*
X268970D02*
X269345D01*
X269345D02*
X269720Y318817D01*
X269720D02*
X270283Y318545D01*
X272158Y317181*
Y319090*
X269158Y320454D02*
X268970D01*
X268970D02*
X268595Y320590D01*
X268595D02*
X268408Y320726D01*
X268220Y320999*
X268220D02*
Y321545D01*
X268220D02*
X268408Y321817D01*
X268595Y321954*
X268595D02*
X268970Y322090D01*
X268970D02*
X269345D01*
X269345D02*
X269720Y321954D01*
X269720D02*
X270283Y321681D01*
X272158Y320317*
Y322226*
X277561Y316523D02*
X280561D01*
X280561D02*
X281124Y316386D01*
X281311Y316250*
X281311D02*
X281499Y315977D01*
Y315704*
X281311Y315432*
X281311D02*
X281124Y315295D01*
X280561Y315159*
X280561D02*
X280186D01*
X278499Y317886D02*
X278311D01*
X278311D02*
X277936Y318023D01*
X277936D02*
X277749Y318159D01*
X277561Y318432*
X277561D02*
Y318977D01*
X277561D02*
X277749Y319250D01*
X277936Y319386*
X277936D02*
X278311Y319523D01*
X278311D02*
X278686D01*
X278686D02*
X279061Y319386D01*
X279061D02*
X279624Y319114D01*
X281499Y317750*
Y319659*
X277561Y321159D02*
Y322659D01*
X277561D02*
X279061Y321841D01*
X279061D02*
Y322250D01*
X279061D02*
X279249Y322523D01*
X279436Y322659*
X279436D02*
X279999Y322795D01*
X280374*
X280936Y322659*
X280936D02*
X281311Y322386D01*
X281311D02*
X281499Y321977D01*
Y321568*
X281311Y321159*
X281311D02*
X281124Y321023D01*
X280749Y320886*
X184364Y131438D02*
Y128438D01*
X184364D02*
X184227Y127875D01*
X184091Y127688*
X184091D02*
X183818Y127500D01*
X183545*
X183273Y127688*
X183273D02*
X183136Y127875D01*
X183000Y128438*
X183000D02*
Y128813D01*
X185727Y130500D02*
Y130688D01*
X185727D02*
X185864Y131063D01*
X185864D02*
X186000Y131250D01*
X186273Y131438*
X186273D02*
X186818D01*
X186818D02*
X187091Y131250D01*
X187227Y131063*
X187227D02*
X187364Y130688D01*
X187364D02*
Y130313D01*
X187364D02*
X187227Y129938D01*
X187227D02*
X186955Y129375D01*
X185591Y127500*
X187500*
X190091Y131438D02*
X188727Y128813D01*
X188727D02*
X190773D01*
X190091Y131438D02*
Y127500D01*
X154864Y131938D02*
Y128938D01*
X154864D02*
X154727Y128375D01*
X154591Y128188*
X154591D02*
X154318Y128000D01*
X154045*
X153773Y128188*
X153773D02*
X153636Y128375D01*
X153500Y128938*
X153500D02*
Y129313D01*
X156227Y131000D02*
Y131188D01*
X156227D02*
X156364Y131563D01*
X156364D02*
X156500Y131750D01*
X156773Y131938*
X156773D02*
X157318D01*
X157318D02*
X157591Y131750D01*
X157727Y131563*
X157727D02*
X157864Y131188D01*
X157864D02*
Y130813D01*
X157864D02*
X157727Y130438D01*
X157727D02*
X157455Y129875D01*
X156091Y128000*
X158000*
X161000Y131938D02*
X159636D01*
X159636D02*
X159500Y130250D01*
X159636Y130438*
X159636D02*
X160045Y130625D01*
X160455*
X160864Y130438*
X160864D02*
X161136Y130063D01*
X161136D02*
X161273Y129500D01*
X161136Y129125*
X161000Y128563*
X161000D02*
X160727Y128188D01*
X160727D02*
X160318Y128000D01*
X159909*
X159500Y128188*
X159500D02*
X159364Y128375D01*
X159227Y128750*
X292038Y193758D02*
Y190758D01*
X292038D02*
X291901Y190195D01*
X291765Y190008*
X291765D02*
X291492Y189820D01*
X291219*
X290947Y190008*
X290947D02*
X290810Y190195D01*
X290674Y190758*
X290674D02*
Y191133D01*
X293401Y192820D02*
Y193008D01*
X293401D02*
X293538Y193383D01*
X293538D02*
X293674Y193570D01*
X293947Y193758*
X293947D02*
X294492D01*
X294492D02*
X294765Y193570D01*
X294901Y193383*
X294901D02*
X295038Y193008D01*
X295038D02*
Y192633D01*
X295038D02*
X294901Y192258D01*
X294901D02*
X294629Y191695D01*
X293265Y189820*
X295174*
X298038Y193195D02*
X297901Y193570D01*
X297492Y193758*
X297492D02*
X297219D01*
X297219D02*
X296810Y193570D01*
X296538Y193008*
X296538D02*
X296401Y192070D01*
Y191133*
X296401D02*
X296538Y190383D01*
X296538D02*
X296810Y190008D01*
X296810D02*
X297219Y189820D01*
X297356*
X297765Y190008*
X297765D02*
X298038Y190383D01*
X298038D02*
X298174Y190945D01*
Y191133*
X298174D02*
X298038Y191695D01*
X297765Y192070*
X297356Y192258*
X297356D02*
X297219D01*
X297219D02*
X296810Y192070D01*
X296538Y191695*
X296401Y191133*
X286392Y315669D02*
X289392D01*
X289392D02*
X289955Y315532D01*
X290142Y315396*
X290142D02*
X290330Y315123D01*
Y314850*
X290142Y314578*
X290142D02*
X289955Y314441D01*
X289392Y314305*
X289392D02*
X289017D01*
X287330Y317032D02*
X287142D01*
X287142D02*
X286767Y317169D01*
X286767D02*
X286580Y317305D01*
X286392Y317578*
X286392D02*
Y318123D01*
X286392D02*
X286580Y318396D01*
X286767Y318532*
X286767D02*
X287142Y318669D01*
X287142D02*
X287517D01*
X287517D02*
X287892Y318532D01*
X287892D02*
X288455Y318260D01*
X290330Y316896*
Y318805*
X286392Y321941D02*
X290330Y320578D01*
X286392Y320032D02*
Y321941D01*
X148008Y316523D02*
X151008D01*
X151008D02*
X151571Y316386D01*
X151758Y316250*
X151758D02*
X151946Y315977D01*
Y315704*
X151758Y315432*
X151758D02*
X151571Y315295D01*
X151008Y315159*
X151008D02*
X150633D01*
X148946Y317886D02*
X148758D01*
X148758D02*
X148383Y318023D01*
X148383D02*
X148196Y318159D01*
X148008Y318432*
X148008D02*
Y318977D01*
X148008D02*
X148196Y319250D01*
X148383Y319386*
X148383D02*
X148758Y319523D01*
X148758D02*
X149133D01*
X149133D02*
X149508Y319386D01*
X149508D02*
X150071Y319114D01*
X151946Y317750*
Y319659*
X148008Y321568D02*
X148196Y321159D01*
X148571Y321023*
X148946*
X149321Y321159*
X149508Y321432*
X149508D02*
X149696Y321977D01*
X149883Y322386*
X149883D02*
X150258Y322659D01*
X150258D02*
X150633Y322795D01*
X150633D02*
X151196D01*
X151571Y322659*
X151758Y322523*
X151758D02*
X151946Y322114D01*
Y321568*
X151758Y321159*
X151758D02*
X151571Y321023D01*
X151196Y320886*
X150633*
X150633D02*
X150258Y321023D01*
X150258D02*
X149883Y321295D01*
X149883D02*
X149696Y321704D01*
X149508Y322250*
X149508D02*
X149321Y322523D01*
X148946Y322659*
X148571*
X148196Y322523*
X148008Y322114*
X148008D02*
Y321568D01*
X298356Y317663D02*
X301356D01*
X301356D02*
X301919Y317526D01*
X302106Y317390*
X302106D02*
X302294Y317117D01*
Y316844*
X302106Y316572*
X302106D02*
X301919Y316435D01*
X301356Y316299*
X301356D02*
X300981D01*
X299294Y319026D02*
X299106D01*
X299106D02*
X298731Y319163D01*
X298731D02*
X298544Y319299D01*
X298356Y319572*
X298356D02*
Y320117D01*
X298356D02*
X298544Y320390D01*
X298731Y320526*
X298731D02*
X299106Y320663D01*
X299106D02*
X299481D01*
X299481D02*
X299856Y320526D01*
X299856D02*
X300419Y320254D01*
X302294Y318890*
Y320799*
X299669Y323799D02*
X300231Y323663D01*
X300231D02*
X300606Y323390D01*
X300606D02*
X300794Y322981D01*
Y322844*
X300606Y322435*
X300606D02*
X300231Y322163D01*
X300231D02*
X299669Y322026D01*
X299481*
X299481D02*
X298919Y322163D01*
X298544Y322435*
X298356Y322844*
X298356D02*
Y322981D01*
X298356D02*
X298544Y323390D01*
X298919Y323663*
X299669Y323799*
X300606*
X300606D02*
X301544Y323663D01*
X302106Y323390*
X302106D02*
X302294Y322981D01*
Y322708*
X302106Y322299*
X302106D02*
X301731Y322163D01*
X190761Y189770D02*
Y186770D01*
X190761D02*
X190624Y186207D01*
X190488Y186020*
X190488D02*
X190215Y185832D01*
X189942*
X189670Y186020*
X189670D02*
X189533Y186207D01*
X189397Y186770*
X189397D02*
Y187145D01*
X192261Y189770D02*
X193761D01*
X193761D02*
X192942Y188270D01*
X192942D02*
X193352D01*
X193352D02*
X193624Y188082D01*
X193761Y187895*
X193761D02*
X193897Y187332D01*
Y186957*
X193761Y186395*
X193761D02*
X193488Y186020D01*
X193488D02*
X193079Y185832D01*
X192670*
X192261Y186020*
X192261D02*
X192124Y186207D01*
X191988Y186582*
X307757Y317378D02*
X310757D01*
X310757D02*
X311320Y317241D01*
X311507Y317105*
X311507D02*
X311695Y316832D01*
Y316559*
X311507Y316287*
X311507D02*
X311320Y316150D01*
X310757Y316014*
X310757D02*
X310382D01*
X307757Y318878D02*
Y320378D01*
X307757D02*
X309257Y319559D01*
X309257D02*
Y319969D01*
X309257D02*
X309445Y320241D01*
X309632Y320378*
X309632D02*
X310195Y320514D01*
X310570*
X311132Y320378*
X311132D02*
X311507Y320105D01*
X311507D02*
X311695Y319696D01*
Y319287*
X311507Y318878*
X311507D02*
X311320Y318741D01*
X310945Y318605*
X308507Y321741D02*
X308320Y322014D01*
X307757Y322423*
X307757D02*
X311695D01*
X118557Y222244D02*
Y219244D01*
X118557D02*
X118420Y218681D01*
X118284Y218494*
X118284D02*
X118011Y218306D01*
X117738*
X117466Y218494*
X117466D02*
X117329Y218681D01*
X117193Y219244*
X117193D02*
Y219619D01*
X120057Y222244D02*
X121557D01*
X121557D02*
X120738Y220744D01*
X120738D02*
X121148D01*
X121148D02*
X121420Y220556D01*
X121557Y220369*
X121557D02*
X121693Y219806D01*
Y219431*
X121557Y218869*
X121557D02*
X121284Y218494D01*
X121284D02*
X120875Y218306D01*
X120466*
X120057Y218494*
X120057D02*
X119920Y218681D01*
X119784Y219056*
X123193Y222244D02*
X124693D01*
X124693D02*
X123875Y220744D01*
X123875D02*
X124284D01*
X124284D02*
X124557Y220556D01*
X124693Y220369*
X124693D02*
X124829Y219806D01*
Y219431*
X124693Y218869*
X124693D02*
X124420Y218494D01*
X124420D02*
X124011Y218306D01*
X123602*
X123193Y218494*
X123193D02*
X123057Y218681D01*
X122920Y219056*
X119981Y211704D02*
Y208704D01*
X119981D02*
X119844Y208141D01*
X119708Y207954*
X119708D02*
X119435Y207766D01*
X119162*
X118890Y207954*
X118890D02*
X118753Y208141D01*
X118617Y208704*
X118617D02*
Y209079D01*
X121481Y211704D02*
X122981D01*
X122981D02*
X122162Y210204D01*
X122162D02*
X122572D01*
X122572D02*
X122844Y210016D01*
X122981Y209829*
X122981D02*
X123117Y209266D01*
Y208891*
X122981Y208329*
X122981D02*
X122708Y207954D01*
X122708D02*
X122299Y207766D01*
X121890*
X121481Y207954*
X121481D02*
X121344Y208141D01*
X121208Y208516*
X125708Y211704D02*
X124344Y209079D01*
X124344D02*
X126390D01*
X125708Y211704D02*
Y207766D01*
X119411Y231645D02*
Y228645D01*
X119411D02*
X119274Y228082D01*
X119138Y227895*
X119138D02*
X118865Y227707D01*
X118592*
X118320Y227895*
X118320D02*
X118183Y228082D01*
X118047Y228645*
X118047D02*
Y229020D01*
X120911Y231645D02*
X122411D01*
X122411D02*
X121592Y230145D01*
X121592D02*
X122002D01*
X122002D02*
X122274Y229957D01*
X122411Y229770*
X122411D02*
X122547Y229207D01*
Y228832*
X122411Y228270*
X122411D02*
X122138Y227895D01*
X122138D02*
X121729Y227707D01*
X121320*
X120911Y227895*
X120911D02*
X120774Y228082D01*
X120638Y228457*
X125547Y231645D02*
X124183D01*
X124183D02*
X124047Y229957D01*
X124183Y230145*
X124183D02*
X124592Y230332D01*
X125002*
X125411Y230145*
X125411D02*
X125683Y229770D01*
X125683D02*
X125820Y229207D01*
X125683Y228832*
X125547Y228270*
X125547D02*
X125274Y227895D01*
X125274D02*
X124865Y227707D01*
X124456*
X124047Y227895*
X124047D02*
X123911Y228082D01*
X123774Y228457*
X117702Y241615D02*
Y238615D01*
X117702D02*
X117565Y238052D01*
X117429Y237865*
X117429D02*
X117156Y237677D01*
X116883*
X116611Y237865*
X116611D02*
X116474Y238052D01*
X116338Y238615*
X116338D02*
Y238990D01*
X119202Y241615D02*
X120702D01*
X120702D02*
X119883Y240115D01*
X119883D02*
X120293D01*
X120293D02*
X120565Y239927D01*
X120702Y239740*
X120702D02*
X120838Y239177D01*
Y238802*
X120702Y238240*
X120702D02*
X120429Y237865D01*
X120429D02*
X120020Y237677D01*
X119611*
X119202Y237865*
X119202D02*
X119065Y238052D01*
X118929Y238427*
X123702Y241052D02*
X123565Y241427D01*
X123156Y241615*
X123156D02*
X122883D01*
X122883D02*
X122474Y241427D01*
X122202Y240865*
X122202D02*
X122065Y239927D01*
Y238990*
X122065D02*
X122202Y238240D01*
X122202D02*
X122474Y237865D01*
X122474D02*
X122883Y237677D01*
X123020*
X123429Y237865*
X123429D02*
X123702Y238240D01*
X123702D02*
X123838Y238802D01*
Y238990*
X123838D02*
X123702Y239552D01*
X123429Y239927*
X123020Y240115*
X123020D02*
X122883D01*
X122883D02*
X122474Y239927D01*
X122202Y239552*
X122065Y238990*
X170227Y141618D02*
X173227D01*
X173227D02*
X173790Y141481D01*
X173977Y141345*
X173977D02*
X174165Y141072D01*
Y140799*
X173977Y140527*
X173977D02*
X173790Y140390D01*
X173227Y140254*
X173227D02*
X172852D01*
X170227Y143118D02*
Y144618D01*
X170227D02*
X171727Y143799D01*
X171727D02*
Y144209D01*
X171727D02*
X171915Y144481D01*
X172102Y144618*
X172102D02*
X172665Y144754D01*
X173040*
X173602Y144618*
X173602D02*
X173977Y144345D01*
X173977D02*
X174165Y143936D01*
Y143527*
X173977Y143118*
X173977D02*
X173790Y142981D01*
X173415Y142845*
X170227Y147890D02*
X174165Y146527D01*
X170227Y145981D02*
Y147890D01*
X118557Y252155D02*
Y249155D01*
X118557D02*
X118420Y248592D01*
X118284Y248405*
X118284D02*
X118011Y248217D01*
X117738*
X117466Y248405*
X117466D02*
X117329Y248592D01*
X117193Y249155*
X117193D02*
Y249530D01*
X120057Y252155D02*
X121557D01*
X121557D02*
X120738Y250655D01*
X120738D02*
X121148D01*
X121148D02*
X121420Y250467D01*
X121557Y250280*
X121557D02*
X121693Y249717D01*
Y249342*
X121557Y248780*
X121557D02*
X121284Y248405D01*
X121284D02*
X120875Y248217D01*
X120466*
X120057Y248405*
X120057D02*
X119920Y248592D01*
X119784Y248967*
X123602Y252155D02*
X123193Y251967D01*
X123057Y251592*
Y251217*
X123193Y250842*
X123466Y250655*
X123466D02*
X124011Y250467D01*
X124420Y250280*
X124420D02*
X124693Y249905D01*
X124693D02*
X124829Y249530D01*
X124829D02*
Y248967D01*
X124693Y248592*
X124557Y248405*
X124557D02*
X124148Y248217D01*
X123602*
X123193Y248405*
X123193D02*
X123057Y248592D01*
X122920Y248967*
Y249530*
X122920D02*
X123057Y249905D01*
X123057D02*
X123329Y250280D01*
X123329D02*
X123738Y250467D01*
X124284Y250655*
X124284D02*
X124557Y250842D01*
X124693Y251217*
Y251592*
X124557Y251967*
X124148Y252155*
X124148D02*
X123602D01*
X200190Y117119D02*
X203190D01*
X203190D02*
X203753Y116982D01*
X203940Y116846*
X203940D02*
X204128Y116573D01*
Y116300*
X203940Y116028*
X203940D02*
X203753Y115891D01*
X203190Y115755*
X203190D02*
X202815D01*
X200190Y118619D02*
Y120119D01*
X200190D02*
X201690Y119300D01*
X201690D02*
Y119710D01*
X201690D02*
X201878Y119982D01*
X202065Y120119*
X202065D02*
X202628Y120255D01*
X203003*
X203565Y120119*
X203565D02*
X203940Y119846D01*
X203940D02*
X204128Y119437D01*
Y119028*
X203940Y118619*
X203940D02*
X203753Y118482D01*
X203378Y118346*
X201503Y123255D02*
X202065Y123119D01*
X202065D02*
X202440Y122846D01*
X202440D02*
X202628Y122437D01*
Y122300*
X202440Y121891*
X202440D02*
X202065Y121619D01*
X202065D02*
X201503Y121482D01*
X201315*
X201315D02*
X200753Y121619D01*
X200378Y121891*
X200190Y122300*
X200190D02*
Y122437D01*
X200190D02*
X200378Y122846D01*
X200753Y123119*
X201503Y123255*
X202440*
X202440D02*
X203378Y123119D01*
X203940Y122846*
X203940D02*
X204128Y122437D01*
Y122164*
X203940Y121755*
X203940D02*
X203565Y121619D01*
X120266Y272380D02*
Y269380D01*
X120266D02*
X120129Y268817D01*
X119993Y268630*
X119993D02*
X119720Y268442D01*
X119447*
X119175Y268630*
X119175D02*
X119038Y268817D01*
X118902Y269380*
X118902D02*
Y269755D01*
X122857Y272380D02*
X121493Y269755D01*
X121493D02*
X123538D01*
X122857Y272380D02*
Y268442D01*
X207544Y316523D02*
X210544D01*
X210544D02*
X211107Y316386D01*
X211294Y316250*
X211294D02*
X211482Y315977D01*
Y315704*
X211294Y315432*
X211294D02*
X211107Y315295D01*
X210544Y315159*
X210544D02*
X210169D01*
X207544Y319114D02*
X210169Y317750D01*
X210169D02*
Y319795D01*
X207544Y319114D02*
X211482D01*
X207544Y321841D02*
X207732Y321432D01*
X208294Y321159*
X208294D02*
X209232Y321023D01*
X209794*
X209794D02*
X210732Y321159D01*
X211294Y321432*
X211294D02*
X211482Y321841D01*
Y322114*
X211294Y322523*
X211294D02*
X210732Y322795D01*
X209794Y322932*
X209794D02*
X209232D01*
X208294Y322795*
X208294D02*
X207732Y322523D01*
X207544Y322114*
X207544D02*
Y321841D01*
X118557Y282065D02*
Y279065D01*
X118557D02*
X118420Y278502D01*
X118284Y278315*
X118284D02*
X118011Y278127D01*
X117738*
X117466Y278315*
X117466D02*
X117329Y278502D01*
X117193Y279065*
X117193D02*
Y279440D01*
X121148Y282065D02*
X119784Y279440D01*
X119784D02*
X121829D01*
X121148Y282065D02*
Y278127D01*
X123057Y281315D02*
X123329Y281502D01*
X123738Y282065*
X123738D02*
Y278127D01*
X218654Y317378D02*
X221654D01*
X221654D02*
X222217Y317241D01*
X222404Y317105*
X222404D02*
X222592Y316832D01*
Y316559*
X222404Y316287*
X222404D02*
X222217Y316150D01*
X221654Y316014*
X221654D02*
X221279D01*
X218654Y319969D02*
X221279Y318605D01*
X221279D02*
Y320650D01*
X218654Y319969D02*
X222592D01*
X219592Y322014D02*
X219404D01*
X219404D02*
X219029Y322150D01*
X219029D02*
X218842Y322287D01*
X218654Y322559*
X218654D02*
Y323105D01*
X218654D02*
X218842Y323378D01*
X219029Y323514*
X219029D02*
X219404Y323650D01*
X219404D02*
X219779D01*
X219779D02*
X220154Y323514D01*
X220154D02*
X220717Y323241D01*
X222592Y321878*
Y323787*
X117987Y292036D02*
Y289036D01*
X117987D02*
X117850Y288473D01*
X117714Y288286*
X117714D02*
X117441Y288098D01*
X117168*
X116896Y288286*
X116896D02*
X116759Y288473D01*
X116623Y289036*
X116623D02*
Y289411D01*
X120578Y292036D02*
X119214Y289411D01*
X119214D02*
X121259D01*
X120578Y292036D02*
Y288098D01*
X122759Y292036D02*
X124259D01*
X124259D02*
X123441Y290536D01*
X123441D02*
X123850D01*
X123850D02*
X124123Y290348D01*
X124259Y290161*
X124259D02*
X124396Y289598D01*
Y289223*
X124259Y288661*
X124259D02*
X123987Y288286D01*
X123987D02*
X123578Y288098D01*
X123168*
X122759Y288286*
X122759D02*
X122623Y288473D01*
X122487Y288848*
X318012Y318233D02*
X321012D01*
X321012D02*
X321575Y318096D01*
X321762Y317960*
X321762D02*
X321950Y317687D01*
Y317414*
X321762Y317142*
X321762D02*
X321575Y317005D01*
X321012Y316869*
X321012D02*
X320637D01*
X318012Y320824D02*
X320637Y319460D01*
X320637D02*
Y321505D01*
X318012Y320824D02*
X321950D01*
X318012Y324096D02*
X320637Y322733D01*
X320637D02*
Y324778D01*
X318012Y324096D02*
X321950D01*
X119696Y302575D02*
Y299575D01*
X119696D02*
X119559Y299012D01*
X119423Y298825*
X119423D02*
X119150Y298637D01*
X118877*
X118605Y298825*
X118605D02*
X118468Y299012D01*
X118332Y299575*
X118332D02*
Y299950D01*
X122287Y302575D02*
X120923Y299950D01*
X120923D02*
X122968D01*
X122287Y302575D02*
Y298637D01*
X125968Y302575D02*
X124605D01*
X124605D02*
X124468Y300887D01*
X124605Y301075*
X124605D02*
X125014Y301262D01*
X125423*
X125832Y301075*
X125832D02*
X126105Y300700D01*
X126105D02*
X126241Y300137D01*
X126105Y299762*
X125968Y299200*
X125968D02*
X125696Y298825D01*
X125696D02*
X125287Y298637D01*
X124877*
X124468Y298825*
X124468D02*
X124332Y299012D01*
X124196Y299387*
X292323Y283205D02*
Y280205D01*
X292323D02*
X292186Y279642D01*
X292050Y279455*
X292050D02*
X291777Y279267D01*
X291504*
X291232Y279455*
X291232D02*
X291095Y279642D01*
X290959Y280205*
X290959D02*
Y280580D01*
X294914Y283205D02*
X293550Y280580D01*
X293550D02*
X295595D01*
X294914Y283205D02*
Y279267D01*
X298459Y282642D02*
X298323Y283017D01*
X297914Y283205*
X297914D02*
X297641D01*
X297641D02*
X297232Y283017D01*
X296959Y282455*
X296959D02*
X296823Y281517D01*
Y280580*
X296823D02*
X296959Y279830D01*
X296959D02*
X297232Y279455D01*
X297232D02*
X297641Y279267D01*
X297777*
X298186Y279455*
X298186D02*
X298459Y279830D01*
X298459D02*
X298595Y280392D01*
Y280580*
X298595D02*
X298459Y281142D01*
X298186Y281517*
X297777Y281705*
X297777D02*
X297641D01*
X297641D02*
X297232Y281517D01*
X296959Y281142*
X296823Y280580*
X138892Y316239D02*
X141892D01*
X141892D02*
X142455Y316102D01*
X142642Y315966*
X142642D02*
X142830Y315693D01*
Y315420*
X142642Y315148*
X142642D02*
X142455Y315011D01*
X141892Y314875*
X141892D02*
X141517D01*
X138892Y318830D02*
X141517Y317466D01*
X141517D02*
Y319511D01*
X138892Y318830D02*
X142830D01*
X138892Y322648D02*
X142830Y321284D01*
X138892Y320739D02*
Y322648D01*
X292608Y274659D02*
Y271659D01*
X292608D02*
X292471Y271096D01*
X292335Y270909*
X292335D02*
X292062Y270721D01*
X291789*
X291517Y270909*
X291517D02*
X291380Y271096D01*
X291244Y271659*
X291244D02*
Y272034D01*
X295199Y274659D02*
X293835Y272034D01*
X293835D02*
X295880D01*
X295199Y274659D02*
Y270721D01*
X297789Y274659D02*
X297380Y274471D01*
X297244Y274096*
Y273721*
X297380Y273346*
X297653Y273159*
X297653D02*
X298199Y272971D01*
X298608Y272784*
X298608D02*
X298880Y272409D01*
X298880D02*
X299017Y272034D01*
X299017D02*
Y271471D01*
X298880Y271096*
X298744Y270909*
X298744D02*
X298335Y270721D01*
X297789*
X297380Y270909*
X297380D02*
X297244Y271096D01*
X297108Y271471*
Y272034*
X297108D02*
X297244Y272409D01*
X297244D02*
X297517Y272784D01*
X297517D02*
X297926Y272971D01*
X298471Y273159*
X298471D02*
X298744Y273346D01*
X298880Y273721*
Y274096*
X298744Y274471*
X298335Y274659*
X298335D02*
X297789D01*
X167948Y317378D02*
X170948D01*
X170948D02*
X171511Y317241D01*
X171698Y317105*
X171698D02*
X171886Y316832D01*
Y316559*
X171698Y316287*
X171698D02*
X171511Y316150D01*
X170948Y316014*
X170948D02*
X170573D01*
X167948Y319969D02*
X170573Y318605D01*
X170573D02*
Y320650D01*
X167948Y319969D02*
X171886D01*
X169261Y323650D02*
X169823Y323514D01*
X169823D02*
X170198Y323241D01*
X170198D02*
X170386Y322832D01*
Y322696*
X170198Y322287*
X170198D02*
X169823Y322014D01*
X169823D02*
X169261Y321878D01*
X169073*
X169073D02*
X168511Y322014D01*
X168136Y322287*
X167948Y322696*
X167948D02*
Y322832D01*
X167948D02*
X168136Y323241D01*
X168511Y323514*
X169261Y323650*
X170198*
X170198D02*
X171136Y323514D01*
X171698Y323241*
X171698D02*
X171886Y322832D01*
Y322559*
X171698Y322150*
X171698D02*
X171323Y322014D01*
X227200Y318802D02*
X230200D01*
X230200D02*
X230763Y318665D01*
X230950Y318529*
X230950D02*
X231138Y318256D01*
Y317983*
X230950Y317711*
X230950D02*
X230763Y317574D01*
X230200Y317438*
X230200D02*
X229825D01*
X227200Y321802D02*
Y320438D01*
X227200D02*
X228888Y320302D01*
X228700Y320438*
X228700D02*
X228513Y320847D01*
Y321256*
X228700Y321665*
X228700D02*
X229075Y321938D01*
X229075D02*
X229638Y322074D01*
X230013Y321938*
X230575Y321802*
X230575D02*
X230950Y321529D01*
X230950D02*
X231138Y321120D01*
Y320711*
X230950Y320302*
X230950D02*
X230763Y320165D01*
X230388Y320029*
X292323Y264689D02*
Y261689D01*
X292323D02*
X292186Y261126D01*
X292050Y260939*
X292050D02*
X291777Y260751D01*
X291504*
X291232Y260939*
X291232D02*
X291095Y261126D01*
X290959Y261689*
X290959D02*
Y262064D01*
X295323Y264689D02*
X293959D01*
X293959D02*
X293823Y263001D01*
X293959Y263189*
X293959D02*
X294368Y263376D01*
X294777*
X295186Y263189*
X295186D02*
X295459Y262814D01*
X295459D02*
X295595Y262251D01*
X295459Y261876*
X295323Y261314*
X295323D02*
X295050Y260939D01*
X295050D02*
X294641Y260751D01*
X294232*
X293823Y260939*
X293823D02*
X293686Y261126D01*
X293550Y261501*
X297641Y264689D02*
X297232Y264501D01*
X296959Y263939*
X296959D02*
X296823Y263001D01*
Y262439*
X296823D02*
X296959Y261501D01*
X297232Y260939*
X297232D02*
X297641Y260751D01*
X297914*
X298323Y260939*
X298323D02*
X298595Y261501D01*
X298732Y262439*
X298732D02*
Y263001D01*
X298595Y263939*
X298595D02*
X298323Y264501D01*
X297914Y264689*
X297914D02*
X297641D01*
X178203Y316523D02*
X181203D01*
X181203D02*
X181766Y316386D01*
X181953Y316250*
X181953D02*
X182141Y315977D01*
Y315704*
X181953Y315432*
X181953D02*
X181766Y315295D01*
X181203Y315159*
X181203D02*
X180828D01*
X178203Y319523D02*
Y318159D01*
X178203D02*
X179891Y318023D01*
X179703Y318159*
X179703D02*
X179516Y318568D01*
Y318977*
X179703Y319386*
X179703D02*
X180078Y319659D01*
X180078D02*
X180641Y319795D01*
X181016Y319659*
X181578Y319523*
X181578D02*
X181953Y319250D01*
X181953D02*
X182141Y318841D01*
Y318432*
X181953Y318023*
X181953D02*
X181766Y317886D01*
X181391Y317750*
X179141Y321159D02*
X178953D01*
X178953D02*
X178578Y321295D01*
X178578D02*
X178391Y321432D01*
X178203Y321704*
X178203D02*
Y322250D01*
X178203D02*
X178391Y322523D01*
X178578Y322659*
X178578D02*
X178953Y322795D01*
X178953D02*
X179328D01*
X179328D02*
X179703Y322659D01*
X179703D02*
X180266Y322386D01*
X182141Y321023*
Y322932*
X260244Y143327D02*
X263244D01*
X263244D02*
X263807Y143190D01*
X263994Y143054*
X263994D02*
X264182Y142781D01*
Y142508*
X263994Y142236*
X263994D02*
X263807Y142099D01*
X263244Y141963*
X263244D02*
X262869D01*
X260244Y146327D02*
Y144963D01*
X260244D02*
X261932Y144827D01*
X261744Y144963*
X261744D02*
X261557Y145372D01*
Y145781*
X261744Y146190*
X261744D02*
X262119Y146463D01*
X262119D02*
X262682Y146599D01*
X263057Y146463*
X263619Y146327*
X263619D02*
X263994Y146054D01*
X263994D02*
X264182Y145645D01*
Y145236*
X263994Y144827*
X263994D02*
X263807Y144690D01*
X263432Y144554*
X260244Y148099D02*
Y149599D01*
X260244D02*
X261744Y148781D01*
X261744D02*
Y149190D01*
X261744D02*
X261932Y149463D01*
X262119Y149599*
X262119D02*
X262682Y149736D01*
X263057*
X263619Y149599*
X263619D02*
X263994Y149327D01*
X263994D02*
X264182Y148918D01*
Y148508*
X263994Y148099*
X263994D02*
X263807Y147963D01*
X263432Y147827*
X188174Y316523D02*
X191174D01*
X191174D02*
X191737Y316386D01*
X191924Y316250*
X191924D02*
X192112Y315977D01*
Y315704*
X191924Y315432*
X191924D02*
X191737Y315295D01*
X191174Y315159*
X191174D02*
X190799D01*
X188174Y319523D02*
Y318159D01*
X188174D02*
X189862Y318023D01*
X189674Y318159*
X189674D02*
X189487Y318568D01*
Y318977*
X189674Y319386*
X189674D02*
X190049Y319659D01*
X190049D02*
X190612Y319795D01*
X190987Y319659*
X191549Y319523*
X191549D02*
X191924Y319250D01*
X191924D02*
X192112Y318841D01*
Y318432*
X191924Y318023*
X191924D02*
X191737Y317886D01*
X191362Y317750*
X188174Y322386D02*
X190799Y321023D01*
X190799D02*
Y323068D01*
X188174Y322386D02*
X192112D01*
X254348Y142708D02*
X251348D01*
X251348D02*
X250785Y142571D01*
X250598Y142435*
X250598D02*
X250410Y142162D01*
Y141889*
X250598Y141617*
X250598D02*
X250785Y141480D01*
X251348Y141344*
X251348D02*
X251723D01*
X254348Y145708D02*
Y144344D01*
X254348D02*
X252660Y144208D01*
X252848Y144344*
X252848D02*
X253035Y144753D01*
Y145162*
X252848Y145571*
X252848D02*
X252473Y145844D01*
X252473D02*
X251910Y145980D01*
X251535Y145844*
X250973Y145708*
X250973D02*
X250598Y145435D01*
X250598D02*
X250410Y145026D01*
Y144617*
X250598Y144208*
X250598D02*
X250785Y144071D01*
X251160Y143935*
X254348Y148980D02*
Y147617D01*
X254348D02*
X252660Y147480D01*
X252848Y147617*
X252848D02*
X253035Y148026D01*
Y148435*
X252848Y148844*
X252848D02*
X252473Y149117D01*
X252473D02*
X251910Y149253D01*
X251535Y149117*
X250973Y148980*
X250973D02*
X250598Y148708D01*
X250598D02*
X250410Y148299D01*
Y147889*
X250598Y147480*
X250598D02*
X250785Y147344D01*
X251160Y147208*
X198237Y316474D02*
X201237D01*
X201237D02*
X201800Y316337D01*
X201987Y316201*
X201987D02*
X202175Y315928D01*
Y315655*
X201987Y315383*
X201987D02*
X201800Y315246D01*
X201237Y315110*
X201237D02*
X200862D01*
X198237Y319474D02*
Y318110D01*
X198237D02*
X199925Y317974D01*
X199737Y318110*
X199737D02*
X199550Y318519D01*
Y318928*
X199737Y319337*
X199737D02*
X200112Y319610D01*
X200112D02*
X200675Y319746D01*
X201050Y319610*
X201612Y319474*
X201612D02*
X201987Y319201D01*
X201987D02*
X202175Y318792D01*
Y318383*
X201987Y317974*
X201987D02*
X201800Y317837D01*
X201425Y317701*
X198800Y322610D02*
X198425Y322474D01*
X198237Y322065*
X198237D02*
Y321792D01*
X198237D02*
X198425Y321383D01*
X198987Y321110*
X198987D02*
X199925Y320974D01*
X200862*
X200862D02*
X201612Y321110D01*
X201612D02*
X201987Y321383D01*
X201987D02*
X202175Y321792D01*
Y321928*
X201987Y322337*
X201987D02*
X201612Y322610D01*
X201612D02*
X201050Y322746D01*
X200862*
X200862D02*
X200300Y322610D01*
X199925Y322337*
X199737Y321928*
X199737D02*
Y321792D01*
X199737D02*
X199925Y321383D01*
X200300Y321110*
X200862Y320974*
X240019Y143327D02*
X243019D01*
X243019D02*
X243582Y143190D01*
X243769Y143054*
X243769D02*
X243957Y142781D01*
Y142508*
X243769Y142236*
X243769D02*
X243582Y142099D01*
X243019Y141963*
X243019D02*
X242644D01*
X240019Y146327D02*
Y144963D01*
X240019D02*
X241707Y144827D01*
X241519Y144963*
X241519D02*
X241332Y145372D01*
Y145781*
X241519Y146190*
X241519D02*
X241894Y146463D01*
X241894D02*
X242457Y146599D01*
X242832Y146463*
X243394Y146327*
X243394D02*
X243769Y146054D01*
X243769D02*
X243957Y145645D01*
Y145236*
X243769Y144827*
X243769D02*
X243582Y144690D01*
X243207Y144554*
X240019Y149736D02*
X243957Y148372D01*
X240019Y147827D02*
Y149736D01*
X293463Y254149D02*
Y251149D01*
X293463D02*
X293326Y250586D01*
X293190Y250399*
X293190D02*
X292917Y250211D01*
X292644*
X292372Y250399*
X292372D02*
X292235Y250586D01*
X292099Y251149*
X292099D02*
Y251524D01*
X296463Y254149D02*
X295099D01*
X295099D02*
X294963Y252461D01*
X295099Y252649*
X295099D02*
X295508Y252836D01*
X295917*
X296326Y252649*
X296326D02*
X296599Y252274D01*
X296599D02*
X296735Y251711D01*
X296599Y251336*
X296463Y250774*
X296463D02*
X296190Y250399D01*
X296190D02*
X295781Y250211D01*
X295372*
X294963Y250399*
X294963D02*
X294826Y250586D01*
X294690Y250961*
X298644Y254149D02*
X298235Y253961D01*
X298099Y253586*
Y253211*
X298235Y252836*
X298508Y252649*
X298508D02*
X299054Y252461D01*
X299463Y252274*
X299463D02*
X299735Y251899D01*
X299735D02*
X299872Y251524D01*
X299872D02*
Y250961D01*
X299735Y250586*
X299599Y250399*
X299599D02*
X299190Y250211D01*
X298644*
X298235Y250399*
X298235D02*
X298099Y250586D01*
X297963Y250961*
Y251524*
X297963D02*
X298099Y251899D01*
X298099D02*
X298372Y252274D01*
X298372D02*
X298781Y252461D01*
X299326Y252649*
X299326D02*
X299599Y252836D01*
X299735Y253211*
Y253586*
X299599Y253961*
X299190Y254149*
X299190D02*
X298644D01*
X117132Y162138D02*
Y159138D01*
X117132D02*
X116995Y158575D01*
X116859Y158388*
X116859D02*
X116586Y158200D01*
X116313*
X116041Y158388*
X116041D02*
X115904Y158575D01*
X115768Y159138*
X115768D02*
Y159513D01*
X120132Y162138D02*
X118768D01*
X118768D02*
X118632Y160450D01*
X118768Y160638*
X118768D02*
X119177Y160825D01*
X119586*
X119995Y160638*
X119995D02*
X120268Y160263D01*
X120268D02*
X120404Y159700D01*
X120268Y159325*
X120132Y158763*
X120132D02*
X119859Y158388D01*
X119859D02*
X119450Y158200D01*
X119041*
X118632Y158388*
X118632D02*
X118495Y158575D01*
X118359Y158950*
X123404Y160825D02*
X123268Y160263D01*
X123268D02*
X122995Y159888D01*
X122995D02*
X122586Y159700D01*
X122450*
X122041Y159888*
X122041D02*
X121768Y160263D01*
X121768D02*
X121632Y160825D01*
Y161013*
X121632D02*
X121768Y161575D01*
X122041Y161950*
X122450Y162138*
X122450D02*
X122586D01*
X122586D02*
X122995Y161950D01*
X123268Y161575*
X123404Y160825*
Y159888*
X123404D02*
X123268Y158950D01*
X122995Y158388*
X122995D02*
X122586Y158200D01*
X122313*
X121904Y158388*
X121904D02*
X121768Y158763D01*
X237740Y318802D02*
X240740D01*
X240740D02*
X241303Y318665D01*
X241490Y318529*
X241490D02*
X241678Y318256D01*
Y317983*
X241490Y317711*
X241490D02*
X241303Y317574D01*
X240740Y317438*
X240740D02*
X240365D01*
X238303Y321665D02*
X237928Y321529D01*
X237740Y321120*
X237740D02*
Y320847D01*
X237740D02*
X237928Y320438D01*
X238490Y320165*
X238490D02*
X239428Y320029D01*
X240365*
X240365D02*
X241115Y320165D01*
X241115D02*
X241490Y320438D01*
X241490D02*
X241678Y320847D01*
Y320983*
X241490Y321393*
X241490D02*
X241115Y321665D01*
X241115D02*
X240553Y321802D01*
X240365*
X240365D02*
X239803Y321665D01*
X239428Y321393*
X239240Y320983*
X239240D02*
Y320847D01*
X239240D02*
X239428Y320438D01*
X239803Y320165*
X240365Y320029*
X290614Y244179D02*
Y241179D01*
X290614D02*
X290477Y240616D01*
X290341Y240429*
X290341D02*
X290068Y240241D01*
X289795*
X289523Y240429*
X289523D02*
X289386Y240616D01*
X289250Y241179*
X289250D02*
Y241554D01*
X293477Y243616D02*
X293341Y243991D01*
X292932Y244179*
X292932D02*
X292659D01*
X292659D02*
X292250Y243991D01*
X291977Y243429*
X291977D02*
X291841Y242491D01*
Y241554*
X291841D02*
X291977Y240804D01*
X291977D02*
X292250Y240429D01*
X292250D02*
X292659Y240241D01*
X292795*
X293205Y240429*
X293205D02*
X293477Y240804D01*
X293477D02*
X293614Y241366D01*
Y241554*
X293614D02*
X293477Y242116D01*
X293205Y242491*
X292795Y242679*
X292795D02*
X292659D01*
X292659D02*
X292250Y242491D01*
X291977Y242116*
X291841Y241554*
X295659Y244179D02*
X295250Y243991D01*
X294977Y243429*
X294977D02*
X294841Y242491D01*
Y241929*
X294841D02*
X294977Y240991D01*
X295250Y240429*
X295250D02*
X295659Y240241D01*
X295932*
X296341Y240429*
X296341D02*
X296614Y240991D01*
X296750Y241929*
X296750D02*
Y242491D01*
X296614Y243429*
X296614D02*
X296341Y243991D01*
X295932Y244179*
X295932D02*
X295659D01*
X293747Y233923D02*
Y230923D01*
X293747D02*
X293610Y230360D01*
X293474Y230173*
X293474D02*
X293201Y229985D01*
X292928*
X292656Y230173*
X292656D02*
X292519Y230360D01*
X292383Y230923*
X292383D02*
Y231298D01*
X296610Y233360D02*
X296474Y233735D01*
X296065Y233923*
X296065D02*
X295792D01*
X295792D02*
X295383Y233735D01*
X295110Y233173*
X295110D02*
X294974Y232235D01*
Y231298*
X294974D02*
X295110Y230548D01*
X295110D02*
X295383Y230173D01*
X295383D02*
X295792Y229985D01*
X295928*
X296338Y230173*
X296338D02*
X296610Y230548D01*
X296610D02*
X296747Y231110D01*
Y231298*
X296747D02*
X296610Y231860D01*
X296338Y232235*
X295928Y232423*
X295928D02*
X295792D01*
X295792D02*
X295383Y232235D01*
X295110Y231860*
X294974Y231298*
X297974Y233173D02*
X298247Y233360D01*
X298656Y233923*
X298656D02*
Y229985D01*
X292608Y224523D02*
Y221523D01*
X292608D02*
X292471Y220960D01*
X292335Y220773*
X292335D02*
X292062Y220585D01*
X291789*
X291517Y220773*
X291517D02*
X291380Y220960D01*
X291244Y221523*
X291244D02*
Y221898D01*
X295471Y223960D02*
X295335Y224335D01*
X294926Y224523*
X294926D02*
X294653D01*
X294653D02*
X294244Y224335D01*
X293971Y223773*
X293971D02*
X293835Y222835D01*
Y221898*
X293835D02*
X293971Y221148D01*
X293971D02*
X294244Y220773D01*
X294244D02*
X294653Y220585D01*
X294789*
X295199Y220773*
X295199D02*
X295471Y221148D01*
X295471D02*
X295608Y221710D01*
Y221898*
X295608D02*
X295471Y222460D01*
X295199Y222835*
X294789Y223023*
X294789D02*
X294653D01*
X294653D02*
X294244Y222835D01*
X293971Y222460*
X293835Y221898*
X296971Y223585D02*
Y223773D01*
X296971D02*
X297108Y224148D01*
X297108D02*
X297244Y224335D01*
X297517Y224523*
X297517D02*
X298062D01*
X298062D02*
X298335Y224335D01*
X298471Y224148*
X298471D02*
X298608Y223773D01*
X298608D02*
Y223398D01*
X298608D02*
X298471Y223023D01*
X298471D02*
X298199Y222460D01*
X296835Y220585*
X298744*
X293463Y213698D02*
Y210698D01*
X293463D02*
X293326Y210135D01*
X293190Y209948*
X293190D02*
X292917Y209760D01*
X292644*
X292372Y209948*
X292372D02*
X292235Y210135D01*
X292099Y210698*
X292099D02*
Y211073D01*
X296326Y213135D02*
X296190Y213510D01*
X295781Y213698*
X295781D02*
X295508D01*
X295508D02*
X295099Y213510D01*
X294826Y212948*
X294826D02*
X294690Y212010D01*
Y211073*
X294690D02*
X294826Y210323D01*
X294826D02*
X295099Y209948D01*
X295099D02*
X295508Y209760D01*
X295644*
X296054Y209948*
X296054D02*
X296326Y210323D01*
X296326D02*
X296463Y210885D01*
Y211073*
X296463D02*
X296326Y211635D01*
X296054Y212010*
X295644Y212198*
X295644D02*
X295508D01*
X295508D02*
X295099Y212010D01*
X294826Y211635*
X294690Y211073*
X297963Y213698D02*
X299463D01*
X299463D02*
X298644Y212198D01*
X298644D02*
X299054D01*
X299054D02*
X299326Y212010D01*
X299463Y211823*
X299463D02*
X299599Y211260D01*
Y210885*
X299463Y210323*
X299463D02*
X299190Y209948D01*
X299190D02*
X298781Y209760D01*
X298372*
X297963Y209948*
X297963D02*
X297826Y210135D01*
X297690Y210510*
X293463Y204298D02*
Y201298D01*
X293463D02*
X293326Y200735D01*
X293190Y200548*
X293190D02*
X292917Y200360D01*
X292644*
X292372Y200548*
X292372D02*
X292235Y200735D01*
X292099Y201298*
X292099D02*
Y201673D01*
X296326Y203735D02*
X296190Y204110D01*
X295781Y204298*
X295781D02*
X295508D01*
X295508D02*
X295099Y204110D01*
X294826Y203548*
X294826D02*
X294690Y202610D01*
Y201673*
X294690D02*
X294826Y200923D01*
X294826D02*
X295099Y200548D01*
X295099D02*
X295508Y200360D01*
X295644*
X296054Y200548*
X296054D02*
X296326Y200923D01*
X296326D02*
X296463Y201485D01*
Y201673*
X296463D02*
X296326Y202235D01*
X296054Y202610*
X295644Y202798*
X295644D02*
X295508D01*
X295508D02*
X295099Y202610D01*
X294826Y202235*
X294690Y201673*
X299054Y204298D02*
X297690Y201673D01*
X297690D02*
X299735D01*
X299054Y204298D02*
Y200360D01*
X358126Y186921D02*
Y183921D01*
X358126D02*
X357989Y183358D01*
X357853Y183171*
X357853D02*
X357580Y182983D01*
X357307*
X357035Y183171*
X357035D02*
X356898Y183358D01*
X356762Y183921*
X356762D02*
Y184296D01*
X360989Y186358D02*
X360853Y186733D01*
X360444Y186921*
X360444D02*
X360171D01*
X360171D02*
X359762Y186733D01*
X359489Y186171*
X359489D02*
X359353Y185233D01*
Y184296*
X359353D02*
X359489Y183546D01*
X359489D02*
X359762Y183171D01*
X359762D02*
X360171Y182983D01*
X360307*
X360717Y183171*
X360717D02*
X360989Y183546D01*
X360989D02*
X361126Y184108D01*
Y184296*
X361126D02*
X360989Y184858D01*
X360717Y185233*
X360307Y185421*
X360307D02*
X360171D01*
X360171D02*
X359762Y185233D01*
X359489Y184858*
X359353Y184296*
X364126Y186921D02*
X362762D01*
X362762D02*
X362626Y185233D01*
X362762Y185421*
X362762D02*
X363171Y185608D01*
X363580*
X363989Y185421*
X363989D02*
X364262Y185046D01*
X364262D02*
X364398Y184483D01*
X364262Y184108*
X364126Y183546*
X364126D02*
X363853Y183171D01*
X363853D02*
X363444Y182983D01*
X363035*
X362626Y183171*
X362626D02*
X362489Y183358D01*
X362353Y183733*
X279045Y145036D02*
X282045D01*
X282045D02*
X282608Y144899D01*
X282795Y144763*
X282795D02*
X282983Y144490D01*
Y144217*
X282795Y143945*
X282795D02*
X282608Y143808D01*
X282045Y143672*
X282045D02*
X281670D01*
X279608Y147899D02*
X279233Y147763D01*
X279045Y147354*
X279045D02*
Y147081D01*
X279045D02*
X279233Y146672D01*
X279795Y146399*
X279795D02*
X280733Y146263D01*
X281670*
X281670D02*
X282420Y146399D01*
X282420D02*
X282795Y146672D01*
X282795D02*
X282983Y147081D01*
Y147217*
X282795Y147627*
X282795D02*
X282420Y147899D01*
X282420D02*
X281858Y148036D01*
X281670*
X281670D02*
X281108Y147899D01*
X280733Y147627*
X280545Y147217*
X280545D02*
Y147081D01*
X280545D02*
X280733Y146672D01*
X281108Y146399*
X281670Y146263*
X279608Y150899D02*
X279233Y150763D01*
X279045Y150354*
X279045D02*
Y150081D01*
X279045D02*
X279233Y149672D01*
X279795Y149399*
X279795D02*
X280733Y149263D01*
X281670*
X281670D02*
X282420Y149399D01*
X282420D02*
X282795Y149672D01*
X282795D02*
X282983Y150081D01*
Y150217*
X282795Y150627*
X282795D02*
X282420Y150899D01*
X282420D02*
X281858Y151036D01*
X281670*
X281670D02*
X281108Y150899D01*
X280733Y150627*
X280545Y150217*
X280545D02*
Y150081D01*
X280545D02*
X280733Y149672D01*
X281108Y149399*
X281670Y149263*
X269929Y144751D02*
X272929D01*
X272929D02*
X273492Y144614D01*
X273679Y144478*
X273679D02*
X273867Y144205D01*
Y143932*
X273679Y143660*
X273679D02*
X273492Y143523D01*
X272929Y143387*
X272929D02*
X272554D01*
X270492Y147614D02*
X270117Y147478D01*
X269929Y147069*
X269929D02*
Y146796D01*
X269929D02*
X270117Y146387D01*
X270679Y146114*
X270679D02*
X271617Y145978D01*
X272554*
X272554D02*
X273304Y146114D01*
X273304D02*
X273679Y146387D01*
X273679D02*
X273867Y146796D01*
Y146932*
X273679Y147342*
X273679D02*
X273304Y147614D01*
X273304D02*
X272742Y147751D01*
X272554*
X272554D02*
X271992Y147614D01*
X271617Y147342*
X271429Y146932*
X271429D02*
Y146796D01*
X271429D02*
X271617Y146387D01*
X271992Y146114*
X272554Y145978*
X269929Y150887D02*
X273867Y149523D01*
X269929Y148978D02*
Y150887D01*
X230333Y142187D02*
X233333D01*
X233333D02*
X233896Y142050D01*
X234083Y141914*
X234083D02*
X234271Y141641D01*
Y141368*
X234083Y141096*
X234083D02*
X233896Y140959D01*
X233333Y140823*
X233333D02*
X232958D01*
X230896Y145050D02*
X230521Y144914D01*
X230333Y144505*
X230333D02*
Y144232D01*
X230333D02*
X230521Y143823D01*
X231083Y143550*
X231083D02*
X232021Y143414D01*
X232958*
X232958D02*
X233708Y143550D01*
X233708D02*
X234083Y143823D01*
X234083D02*
X234271Y144232D01*
Y144368*
X234083Y144778*
X234083D02*
X233708Y145050D01*
X233708D02*
X233146Y145187D01*
X232958*
X232958D02*
X232396Y145050D01*
X232021Y144778*
X231833Y144368*
X231833D02*
Y144232D01*
X231833D02*
X232021Y143823D01*
X232396Y143550*
X232958Y143414*
X230333Y147096D02*
X230521Y146687D01*
X230896Y146550*
X231271*
X231646Y146687*
X231833Y146959*
X231833D02*
X232021Y147505D01*
X232208Y147914*
X232208D02*
X232583Y148187D01*
X232583D02*
X232958Y148323D01*
X232958D02*
X233521D01*
X233896Y148187*
X234083Y148050*
X234083D02*
X234271Y147641D01*
Y147096*
X234083Y146687*
X234083D02*
X233896Y146550D01*
X233521Y146414*
X232958*
X232958D02*
X232583Y146550D01*
X232583D02*
X232208Y146823D01*
X232208D02*
X232021Y147232D01*
X231833Y147778*
X231833D02*
X231646Y148050D01*
X231271Y148187*
X230896*
X230521Y148050*
X230333Y147641*
X230333D02*
Y147096D01*
X349864Y221938D02*
Y218938D01*
X349727Y218375*
X349591Y218188*
X349318Y218000*
X349045*
X348773Y218188*
X348636Y218375*
X348500Y218938*
Y219313*
X352727Y221375D02*
X352591Y221750D01*
X352182Y221938*
X351909*
X351500Y221750*
X351227Y221188*
X351091Y220250*
Y219313*
X351227Y218563*
X351500Y218188*
X351909Y218000*
X352045*
X352455Y218188*
X352727Y218563*
X352864Y219125*
Y219313*
X352727Y219875*
X352455Y220250*
X352045Y220438*
X351909*
X351500Y220250*
X351227Y219875*
X351091Y219313*
X355864Y220625D02*
X355727Y220063D01*
X355455Y219688*
X355045Y219500*
X354909*
X354500Y219688*
X354227Y220063*
X354091Y220625*
Y220813*
X354227Y221375*
X354500Y221750*
X354909Y221938*
X355045*
X355455Y221750*
X355727Y221375*
X355864Y220625*
Y219688*
X355727Y218750*
X355455Y218188*
X355045Y218000*
X354773*
X354364Y218188*
X354227Y218563*
X120836Y262410D02*
Y259410D01*
X120836D02*
X120699Y258847D01*
X120563Y258660*
X120563D02*
X120290Y258472D01*
X120017*
X119745Y258660*
X119745D02*
X119608Y258847D01*
X119472Y259410*
X119472D02*
Y259785D01*
X123972Y262410D02*
X122608Y258472D01*
X122063Y262410D02*
X123972D01*
X247995Y318233D02*
X250995D01*
X250995D02*
X251558Y318096D01*
X251745Y317960*
X251745D02*
X251933Y317687D01*
Y317414*
X251745Y317142*
X251745D02*
X251558Y317005D01*
X250995Y316869*
X250995D02*
X250620D01*
X247995Y320142D02*
X248183Y319733D01*
X248558Y319596*
X248933*
X249308Y319733*
X249495Y320005*
X249495D02*
X249683Y320551D01*
X249870Y320960*
X249870D02*
X250245Y321233D01*
X250245D02*
X250620Y321369D01*
X250620D02*
X251183D01*
X251558Y321233*
X251745Y321096*
X251745D02*
X251933Y320687D01*
Y320142*
X251745Y319733*
X251745D02*
X251558Y319596D01*
X251183Y319460*
X250620*
X250620D02*
X250245Y319596D01*
X250245D02*
X249870Y319869D01*
X249870D02*
X249683Y320278D01*
X249495Y320824*
X249495D02*
X249308Y321096D01*
X248933Y321233*
X248558*
X248183Y321096*
X247995Y320687*
X247995D02*
Y320142D01*
X219224Y144181D02*
X222224D01*
X222224D02*
X222787Y144044D01*
X222974Y143908*
X222974D02*
X223162Y143635D01*
Y143362*
X222974Y143090*
X222974D02*
X222787Y142953D01*
X222224Y142817*
X222224D02*
X221849D01*
X220537Y147181D02*
X221099Y147044D01*
X221099D02*
X221474Y146772D01*
X221474D02*
X221662Y146362D01*
Y146226*
X221474Y145817*
X221474D02*
X221099Y145544D01*
X221099D02*
X220537Y145408D01*
X220349*
X220349D02*
X219787Y145544D01*
X219412Y145817*
X219224Y146226*
X219224D02*
Y146362D01*
X219224D02*
X219412Y146772D01*
X219787Y147044*
X220537Y147181*
X221474*
X221474D02*
X222412Y147044D01*
X222974Y146772*
X222974D02*
X223162Y146362D01*
Y146090*
X222974Y145681*
X222974D02*
X222599Y145544D01*
X291409Y120375D02*
X291136Y120750D01*
X290727Y120938*
X290727D02*
X290182D01*
X290182D02*
X289773Y120750D01*
X289500Y120375*
Y120000*
X289636Y119625*
X289773Y119438*
X289773D02*
X290045Y119250D01*
X290864Y118875*
X291136Y118688*
X291136D02*
X291273Y118500D01*
X291409Y118125*
Y117563*
X291409D02*
X291136Y117188D01*
X291136D02*
X290727Y117000D01*
X290182*
X289773Y117188*
X289773D02*
X289500Y117563D01*
X292636Y120938D02*
X293318Y117000D01*
X294000Y120938D02*
X293318Y117000D01*
X294000Y120938D02*
X294682Y117000D01*
X295364Y120938D02*
X294682Y117000D01*
X296591Y120188D02*
X296864Y120375D01*
X297273Y120938*
X297273D02*
Y117000D01*
X181002Y202019D02*
X182911Y198081D01*
Y202019D02*
X181002Y198081D01*
X184138Y201269D02*
X184411Y201456D01*
X184820Y202019*
Y198081*
X161904Y232214D02*
X163813Y228276D01*
Y232214D02*
X161904Y228276D01*
X165177Y231276D02*
Y231464D01*
X165177D02*
X165313Y231839D01*
X165313D02*
X165449Y232026D01*
X165722Y232214*
X165722D02*
X166268D01*
X166268D02*
X166540Y232026D01*
X166677Y231839*
X166677D02*
X166813Y231464D01*
X166813D02*
Y231089D01*
X166813D02*
X166677Y230714D01*
X166677D02*
X166404Y230151D01*
X165040Y228276*
X166949*
X117987Y171538D02*
Y168538D01*
X117987D02*
X117850Y167975D01*
X117714Y167788*
X117714D02*
X117441Y167600D01*
X117168*
X116896Y167788*
X116896D02*
X116759Y167975D01*
X116623Y168538*
X116623D02*
Y168913D01*
X121123Y171538D02*
X119759Y167600D01*
X119214Y171538D02*
X121123D01*
X123168D02*
X122759Y171350D01*
X122487Y170788*
X122487D02*
X122350Y169850D01*
Y169288*
X122350D02*
X122487Y168350D01*
X122759Y167788*
X122759D02*
X123168Y167600D01*
X123441*
X123850Y167788*
X123850D02*
X124123Y168350D01*
X124259Y169288*
X124259D02*
Y169850D01*
X124123Y170788*
X124123D02*
X123850Y171350D01*
X123441Y171538*
X123441D02*
X123168D01*
X119696Y182363D02*
Y179363D01*
X119696D02*
X119559Y178800D01*
X119423Y178613*
X119423D02*
X119150Y178425D01*
X118877*
X118605Y178613*
X118605D02*
X118468Y178800D01*
X118332Y179363*
X118332D02*
Y179738D01*
X122832Y182363D02*
X121468Y178425D01*
X120923Y182363D02*
X122832D01*
X124059Y181613D02*
X124332Y181800D01*
X124741Y182363*
X124741D02*
Y178425D01*
X119126Y191479D02*
Y188479D01*
X119126D02*
X118989Y187916D01*
X118853Y187729*
X118853D02*
X118580Y187541D01*
X118307*
X118035Y187729*
X118035D02*
X117898Y187916D01*
X117762Y188479*
X117762D02*
Y188854D01*
X122262Y191479D02*
X120898Y187541D01*
X120353Y191479D02*
X122262D01*
X123626Y190541D02*
Y190729D01*
X123626D02*
X123762Y191104D01*
X123762D02*
X123898Y191291D01*
X124171Y191479*
X124171D02*
X124717D01*
X124717D02*
X124989Y191291D01*
X125126Y191104*
X125126D02*
X125262Y190729D01*
X125262D02*
Y190354D01*
X125262D02*
X125126Y189979D01*
X125126D02*
X124853Y189416D01*
X123489Y187541*
X125398*
X119126Y201164D02*
Y198164D01*
X119126D02*
X118989Y197601D01*
X118853Y197414*
X118853D02*
X118580Y197226D01*
X118307*
X118035Y197414*
X118035D02*
X117898Y197601D01*
X117762Y198164*
X117762D02*
Y198539D01*
X122262Y201164D02*
X120898Y197226D01*
X120353Y201164D02*
X122262D01*
X123762D02*
X125262D01*
X125262D02*
X124444Y199664D01*
X124444D02*
X124853D01*
X124853D02*
X125126Y199476D01*
X125262Y199289*
X125262D02*
X125398Y198726D01*
Y198351*
X125262Y197789*
X125262D02*
X124989Y197414D01*
X124989D02*
X124580Y197226D01*
X124171*
X123762Y197414*
X123762D02*
X123626Y197601D01*
X123489Y197976*
X358364Y253938D02*
Y250938D01*
X358364D02*
X358227Y250375D01*
X358091Y250188*
X358091D02*
X357818Y250000D01*
X357545*
X357273Y250188*
X357273D02*
X357136Y250375D01*
X357000Y250938*
X357000D02*
Y251313D01*
X361500Y253938D02*
X360136Y250000D01*
X359591Y253938D02*
X361500D01*
X364091D02*
X362727Y251313D01*
X362727D02*
X364773D01*
X364091Y253938D02*
Y250000D01*
X332364Y297938D02*
Y294938D01*
X332364D02*
X332227Y294375D01*
X332091Y294188*
X332091D02*
X331818Y294000D01*
X331545*
X331273Y294188*
X331273D02*
X331136Y294375D01*
X331000Y294938*
X331000D02*
Y295313D01*
X335500Y297938D02*
X334136Y294000D01*
X333591Y297938D02*
X335500D01*
X338500D02*
X337136D01*
X337136D02*
X337000Y296250D01*
X337136Y296438*
X337136D02*
X337545Y296625D01*
X337955*
X338364Y296438*
X338364D02*
X338636Y296063D01*
X338636D02*
X338773Y295500D01*
X338636Y295125*
X338500Y294563*
X338500D02*
X338227Y294188D01*
X338227D02*
X337818Y294000D01*
X337409*
X337000Y294188*
X337000D02*
X336864Y294375D01*
X336727Y294750*
X316062Y182864D02*
X319062D01*
X319062D02*
X319625Y182727D01*
X319812Y182591*
X319812D02*
X320000Y182318D01*
Y182045*
X319812Y181773*
X319812D02*
X319625Y181636D01*
X319062Y181500*
X319062D02*
X318687D01*
X316062Y186000D02*
X320000Y184636D01*
X316062Y184091D02*
Y186000D01*
X316625Y188864D02*
X316250Y188727D01*
X316062Y188318*
X316062D02*
Y188045D01*
X316062D02*
X316250Y187636D01*
X316812Y187364*
X316812D02*
X317750Y187227D01*
X318687*
X318687D02*
X319437Y187364D01*
X319437D02*
X319812Y187636D01*
X319812D02*
X320000Y188045D01*
Y188182*
X319812Y188591*
X319812D02*
X319437Y188864D01*
X319437D02*
X318875Y189000D01*
X318687*
X318687D02*
X318125Y188864D01*
X317750Y188591*
X317562Y188182*
X317562D02*
Y188045D01*
X317562D02*
X317750Y187636D01*
X318125Y187364*
X318687Y187227*
X341300Y332838D02*
Y328900D01*
Y332838D02*
X342255D01*
X342255D02*
X342664Y332650D01*
X342936Y332275*
X343073Y331900*
X343209Y331338*
X343209D02*
Y330400D01*
X343073Y329838*
X343073D02*
X342936Y329463D01*
X342936D02*
X342664Y329088D01*
X342664D02*
X342255Y328900D01*
X341300*
X345118Y332838D02*
X344709Y332650D01*
X344573Y332275*
Y331900*
X344709Y331525*
X344982Y331338*
X344982D02*
X345527Y331150D01*
X345936Y330963*
X345936D02*
X346209Y330588D01*
X346209D02*
X346345Y330213D01*
X346345D02*
Y329650D01*
X346209Y329275*
X346073Y329088*
X346073D02*
X345664Y328900D01*
X345118*
X344709Y329088*
X344709D02*
X344573Y329275D01*
X344436Y329650*
Y330213*
X344436D02*
X344573Y330588D01*
X344573D02*
X344845Y330963D01*
X344845D02*
X345255Y331150D01*
X345800Y331338*
X345800D02*
X346073Y331525D01*
X346209Y331900*
Y332275*
X346073Y332650*
X345664Y332838*
X345664D02*
X345118D01*
X328909Y264875D02*
X328636Y265250D01*
X328227Y265438*
X328227D02*
X327682D01*
X327682D02*
X327273Y265250D01*
X327000Y264875*
Y264500*
X327136Y264125*
X327273Y263938*
X327273D02*
X327545Y263750D01*
X328364Y263375*
X328636Y263188*
X328636D02*
X328773Y263000D01*
X328909Y262625*
Y262063*
X328909D02*
X328636Y261688D01*
X328636D02*
X328227Y261500D01*
X327682*
X327273Y261688*
X327273D02*
X327000Y262063D01*
X330136Y265438D02*
X330818Y261500D01*
X331500Y265438D02*
X330818Y261500D01*
X331500Y265438D02*
X332182Y261500D01*
X332864Y265438D02*
X332182Y261500D01*
X334227Y264500D02*
Y264688D01*
X334227D02*
X334364Y265063D01*
X334364D02*
X334500Y265250D01*
X334773Y265438*
X334773D02*
X335318D01*
X335318D02*
X335591Y265250D01*
X335727Y265063*
X335727D02*
X335864Y264688D01*
X335864D02*
Y264313D01*
X335864D02*
X335727Y263938D01*
X335727D02*
X335455Y263375D01*
X334091Y261500*
X336000*
X132500Y292750D02*
Y287500D01*
Y292750D02*
X134136D01*
X134682Y292500*
X134864Y292250*
X135045Y291750*
Y291000*
X134864Y290500*
X134682Y290250*
X134136Y290000*
X132500*
X138136Y292750D02*
X136682Y287500D01*
X138136Y292750D02*
X139591Y287500D01*
X137227Y289250D02*
X139045D01*
X141227Y291750D02*
X141591Y292000D01*
X142136Y292750*
Y287500*
X132500Y282750D02*
Y277500D01*
Y282750D02*
X134136D01*
X134682Y282500*
X134864Y282250*
X135045Y281750*
Y281000*
X134864Y280500*
X134682Y280250*
X134136Y280000*
X132500*
X138136Y282750D02*
X136682Y277500D01*
X138136Y282750D02*
X139591Y277500D01*
X137227Y279250D02*
X139045D01*
X142318Y282750D02*
X141773Y282500D01*
X141409Y281750*
X141227Y280500*
Y279750*
X141409Y278500*
X141773Y277750*
X142318Y277500*
X142682*
X143227Y277750*
X143591Y278500*
X143773Y279750*
Y280500*
X143591Y281750*
X143227Y282500*
X142682Y282750*
X142318*
X132500Y302750D02*
Y297500D01*
Y302750D02*
X134136D01*
X134682Y302500*
X134864Y302250*
X135045Y301750*
Y301000*
X134864Y300500*
X134682Y300250*
X134136Y300000*
X132500*
X138136Y302750D02*
X136682Y297500D01*
X138136Y302750D02*
X139591Y297500D01*
X137227Y299250D02*
X139045D01*
X141409Y301500D02*
Y301750D01*
X141591Y302250*
X141773Y302500*
X142136Y302750*
X142864*
X143227Y302500*
X143409Y302250*
X143591Y301750*
Y301250*
X143409Y300750*
X143045Y300000*
X141227Y297500*
X143773*
X132500Y272750D02*
X133955Y267500D01*
X135409Y272750D02*
X133955Y267500D01*
X137045Y272750D02*
Y267500D01*
Y272750D02*
X138318D01*
X138864Y272500*
X139227Y272000*
X139409Y271500*
X139591Y270750*
Y269500*
X139409Y268750*
X139227Y268250*
X138864Y267750*
X138318Y267500*
X137045*
X141227Y272750D02*
Y267500D01*
Y272750D02*
X142500D01*
X143045Y272500*
X143409Y272000*
X143591Y271500*
X143773Y270750*
Y269500*
X143591Y268750*
X143409Y268250*
X143045Y267750*
X142500Y267500*
X141227*
X145409Y266500D02*
X149227D01*
X152500Y271000D02*
Y267500D01*
Y270250D02*
X152136Y270750D01*
X151773Y271000*
X151227*
X150864Y270750*
X150500Y270250*
X150318Y269500*
Y269000*
X150500Y268250*
X150864Y267750*
X151227Y267500*
X151773*
X152136Y267750*
X152500Y268250*
X154136Y271000D02*
Y267500D01*
Y270000D02*
X154682Y270750D01*
X155045Y271000*
X155591*
X155955Y270750*
X156136Y270000*
Y267500*
X159955Y271000D02*
Y267500D01*
Y270250D02*
X159591Y270750D01*
X159227Y271000*
X158682*
X158318Y270750*
X157955Y270250*
X157773Y269500*
Y269000*
X157955Y268250*
X158318Y267750*
X158682Y267500*
X159227*
X159591Y267750*
X159955Y268250*
X161591Y272750D02*
Y267500D01*
X164136Y271000D02*
X163773Y270750D01*
X163409Y270250*
X163227Y269500*
Y269000*
X163409Y268250*
X163773Y267750*
X164136Y267500*
X164682*
X165045Y267750*
X165409Y268250*
X165591Y269000*
Y269500*
X165409Y270250*
X165045Y270750*
X164682Y271000*
X164136*
X169409D02*
Y267000D01*
X169227Y266250*
X169045Y266000*
X168682Y265750*
X168136*
X167773Y266000*
X169409Y270250D02*
X169045Y270750D01*
X168682Y271000*
X168136*
X167773Y270750*
X167409Y270250*
X167227Y269500*
Y269000*
X167409Y268250*
X167773Y267750*
X168136Y267500*
X168682*
X169045Y267750*
X169409Y268250*
X135227Y261500D02*
X135045Y262000D01*
X134682Y262500*
X134318Y262750*
X133591*
X133227Y262500*
X132864Y262000*
X132682Y261500*
X132500Y260750*
Y259500*
X132682Y258750*
X132864Y258250*
X133227Y257750*
X133591Y257500*
X134318*
X134682Y257750*
X135045Y258250*
X135227Y258750*
Y259500*
X134318D02*
X135227D01*
X136864Y262750D02*
Y257500D01*
Y262750D02*
X139409Y257500D01*
Y262750D02*
Y257500D01*
X141045Y262750D02*
Y257500D01*
Y262750D02*
X142318D01*
X142864Y262500*
X143227Y262000*
X143409Y261500*
X143591Y260750*
Y259500*
X143409Y258750*
X143227Y258250*
X142864Y257750*
X142318Y257500*
X141045*
X145227Y256500D02*
X149045D01*
X152318Y261000D02*
Y257500D01*
Y260250D02*
X151955Y260750D01*
X151591Y261000*
X151045*
X150682Y260750*
X150318Y260250*
X150136Y259500*
Y259000*
X150318Y258250*
X150682Y257750*
X151045Y257500*
X151591*
X151955Y257750*
X152318Y258250*
X153955Y261000D02*
Y257500D01*
Y260000D02*
X154500Y260750D01*
X154864Y261000*
X155409*
X155773Y260750*
X155955Y260000*
Y257500*
X159773Y261000D02*
Y257500D01*
Y260250D02*
X159409Y260750D01*
X159045Y261000*
X158500*
X158136Y260750*
X157773Y260250*
X157591Y259500*
Y259000*
X157773Y258250*
X158136Y257750*
X158500Y257500*
X159045*
X159409Y257750*
X159773Y258250*
X161409Y262750D02*
Y257500D01*
X163955Y261000D02*
X163591Y260750D01*
X163227Y260250*
X163045Y259500*
Y259000*
X163227Y258250*
X163591Y257750*
X163955Y257500*
X164500*
X164864Y257750*
X165227Y258250*
X165409Y259000*
Y259500*
X165227Y260250*
X164864Y260750*
X164500Y261000*
X163955*
X169227D02*
Y257000D01*
X169045Y256250*
X168864Y256000*
X168500Y255750*
X167955*
X167591Y256000*
X169227Y260250D02*
X168864Y260750D01*
X168500Y261000*
X167955*
X167591Y260750*
X167227Y260250*
X167045Y259500*
Y259000*
X167227Y258250*
X167591Y257750*
X167955Y257500*
X168500*
X168864Y257750*
X169227Y258250*
X132500Y252750D02*
Y247500D01*
Y252750D02*
X134136D01*
X134682Y252500*
X134864Y252250*
X135045Y251750*
Y251000*
X134864Y250500*
X134682Y250250*
X134136Y250000*
X132500*
X139409Y251500D02*
X139227Y252000D01*
X138864Y252500*
X138500Y252750*
X137773*
X137409Y252500*
X137045Y252000*
X136864Y251500*
X136682Y250750*
Y249500*
X136864Y248750*
X137045Y248250*
X137409Y247750*
X137773Y247500*
X138500*
X138864Y247750*
X139227Y248250*
X139409Y248750*
X141409Y252750D02*
X143409D01*
X142318Y250750*
X142864*
X143227Y250500*
X143409Y250250*
X143591Y249500*
Y249000*
X143409Y248250*
X143045Y247750*
X142500Y247500*
X141955*
X141409Y247750*
X141227Y248000*
X141045Y248500*
X132500Y242750D02*
Y237500D01*
Y242750D02*
X134136D01*
X134682Y242500*
X134864Y242250*
X135045Y241750*
Y241000*
X134864Y240500*
X134682Y240250*
X134136Y240000*
X132500*
X139409Y241500D02*
X139227Y242000D01*
X138864Y242500*
X138500Y242750*
X137773*
X137409Y242500*
X137045Y242000*
X136864Y241500*
X136682Y240750*
Y239500*
X136864Y238750*
X137045Y238250*
X137409Y237750*
X137773Y237500*
X138500*
X138864Y237750*
X139227Y238250*
X139409Y238750*
X141227Y241500D02*
Y241750D01*
X141409Y242250*
X141591Y242500*
X141955Y242750*
X142682*
X143045Y242500*
X143227Y242250*
X143409Y241750*
Y241250*
X143227Y240750*
X142864Y240000*
X141045Y237500*
X143591*
X132500Y232750D02*
Y227500D01*
Y232750D02*
X134136D01*
X134682Y232500*
X134864Y232250*
X135045Y231750*
Y231000*
X134864Y230500*
X134682Y230250*
X134136Y230000*
X132500*
X139409Y231500D02*
X139227Y232000D01*
X138864Y232500*
X138500Y232750*
X137773*
X137409Y232500*
X137045Y232000*
X136864Y231500*
X136682Y230750*
Y229500*
X136864Y228750*
X137045Y228250*
X137409Y227750*
X137773Y227500*
X138500*
X138864Y227750*
X139227Y228250*
X139409Y228750*
X141045Y231750D02*
X141409Y232000D01*
X141955Y232750*
Y227500*
X132500Y222750D02*
Y217500D01*
Y222750D02*
X134136D01*
X134682Y222500*
X134864Y222250*
X135045Y221750*
Y221000*
X134864Y220500*
X134682Y220250*
X134136Y220000*
X132500*
X139409Y221500D02*
X139227Y222000D01*
X138864Y222500*
X138500Y222750*
X137773*
X137409Y222500*
X137045Y222000*
X136864Y221500*
X136682Y220750*
Y219500*
X136864Y218750*
X137045Y218250*
X137409Y217750*
X137773Y217500*
X138500*
X138864Y217750*
X139227Y218250*
X139409Y218750*
X142136Y222750D02*
X141591Y222500D01*
X141227Y221750*
X141045Y220500*
Y219750*
X141227Y218500*
X141591Y217750*
X142136Y217500*
X142500*
X143045Y217750*
X143409Y218500*
X143591Y219750*
Y220500*
X143409Y221750*
X143045Y222500*
X142500Y222750*
X142136*
X132500Y211000D02*
Y207500D01*
Y210000D02*
X133045Y210750D01*
X133409Y211000*
X133955*
X134318Y210750*
X134500Y210000*
Y207500*
X136136Y211000D02*
Y207500D01*
Y209500D02*
X136318Y210250D01*
X136682Y210750*
X137045Y211000*
X137591*
X141227Y210250D02*
X141045Y210750D01*
X140500Y211000*
X139955*
X139409Y210750*
X139227Y210250*
X139409Y209750*
X139773Y209500*
X140682Y209250*
X141045Y209000*
X141227Y208500*
Y208250*
X141045Y207750*
X140500Y207500*
X139955*
X139409Y207750*
X139227Y208250*
X143409Y212750D02*
Y208500D01*
X143591Y207750*
X143955Y207500*
X144318*
X142864Y211000D02*
X144136D01*
X132500Y202750D02*
Y197500D01*
Y202750D02*
X134136D01*
X134682Y202500*
X134864Y202250*
X135045Y201750*
Y201000*
X134864Y200500*
X134682Y200250*
X134136Y200000*
X132500*
X136682Y202750D02*
Y197500D01*
Y202750D02*
X137955D01*
X138500Y202500*
X138864Y202000*
X139045Y201500*
X139227Y200750*
Y199500*
X139045Y198750*
X138864Y198250*
X138500Y197750*
X137955Y197500*
X136682*
X140864Y201750D02*
X141227Y202000D01*
X141773Y202750*
Y197500*
X132500Y192750D02*
Y187500D01*
Y192750D02*
X134136D01*
X134682Y192500*
X134864Y192250*
X135045Y191750*
Y191000*
X134864Y190500*
X134682Y190250*
X134136Y190000*
X132500*
X136682Y192750D02*
Y187500D01*
Y192750D02*
X137955D01*
X138500Y192500*
X138864Y192000*
X139045Y191500*
X139227Y190750*
Y189500*
X139045Y188750*
X138864Y188250*
X138500Y187750*
X137955Y187500*
X136682*
X141955Y192750D02*
X141409Y192500D01*
X141045Y191750*
X140864Y190500*
Y189750*
X141045Y188500*
X141409Y187750*
X141955Y187500*
X142318*
X142864Y187750*
X143227Y188500*
X143409Y189750*
Y190500*
X143227Y191750*
X142864Y192500*
X142318Y192750*
X141955*
X132500Y182750D02*
Y177500D01*
Y182750D02*
X134136D01*
X134682Y182500*
X134864Y182250*
X135045Y181750*
Y181000*
X134864Y180500*
X134682Y180250*
X134136Y180000*
X132500*
X139409Y181500D02*
X139227Y182000D01*
X138864Y182500*
X138500Y182750*
X137773*
X137409Y182500*
X137045Y182000*
X136864Y181500*
X136682Y180750*
Y179500*
X136864Y178750*
X137045Y178250*
X137409Y177750*
X137773Y177500*
X138500*
X138864Y177750*
X139227Y178250*
X139409Y178750*
X141045Y181750D02*
X141409Y182000D01*
X141955Y182750*
Y177500*
X145955Y182750D02*
X144136D01*
X143955Y180500*
X144136Y180750*
X144682Y181000*
X145227*
X145773Y180750*
X146136Y180250*
X146318Y179500*
X146136Y179000*
X145955Y178250*
X145591Y177750*
X145045Y177500*
X144500*
X143955Y177750*
X143773Y178000*
X143591Y178500*
X132500Y172750D02*
Y167500D01*
Y172750D02*
X134136D01*
X134682Y172500*
X134864Y172250*
X135045Y171750*
Y171000*
X134864Y170500*
X134682Y170250*
X134136Y170000*
X132500*
X139409Y171500D02*
X139227Y172000D01*
X138864Y172500*
X138500Y172750*
X137773*
X137409Y172500*
X137045Y172000*
X136864Y171500*
X136682Y170750*
Y169500*
X136864Y168750*
X137045Y168250*
X137409Y167750*
X137773Y167500*
X138500*
X138864Y167750*
X139227Y168250*
X139409Y168750*
X141045Y171750D02*
X141409Y172000D01*
X141955Y172750*
Y167500*
X145409Y172750D02*
X143591Y169250D01*
X146318*
X145409Y172750D02*
Y167500D01*
X132500Y162750D02*
Y157500D01*
Y162750D02*
X134136D01*
X134682Y162500*
X134864Y162250*
X135045Y161750*
Y161000*
X134864Y160500*
X134682Y160250*
X134136Y160000*
X132500*
X139409Y161500D02*
X139227Y162000D01*
X138864Y162500*
X138500Y162750*
X137773*
X137409Y162500*
X137045Y162000*
X136864Y161500*
X136682Y160750*
Y159500*
X136864Y158750*
X137045Y158250*
X137409Y157750*
X137773Y157500*
X138500*
X138864Y157750*
X139227Y158250*
X139409Y158750*
X141045Y161750D02*
X141409Y162000D01*
X141955Y162750*
Y157500*
X143955Y162750D02*
X145955D01*
X144864Y160750*
X145409*
X145773Y160500*
X145955Y160250*
X146136Y159500*
Y159000*
X145955Y158250*
X145591Y157750*
X145045Y157500*
X144500*
X143955Y157750*
X143773Y158000*
X143591Y158500*
X110500Y141750D02*
X111955Y136500D01*
X113409Y141750D02*
X111955Y136500D01*
X115045Y141750D02*
Y136500D01*
Y139250D02*
X115409Y139750D01*
X115773Y140000*
X116318*
X116682Y139750*
X117045Y139250*
X117227Y138500*
Y138000*
X117045Y137250*
X116682Y136750*
X116318Y136500*
X115773*
X115409Y136750*
X115045Y137250*
X121045Y140000D02*
Y136500D01*
Y139250D02*
X120682Y139750D01*
X120318Y140000*
X119773*
X119409Y139750*
X119045Y139250*
X118864Y138500*
Y138000*
X119045Y137250*
X119409Y136750*
X119773Y136500*
X120318*
X120682Y136750*
X121045Y137250*
X123227Y141750D02*
Y137500D01*
X123409Y136750*
X123773Y136500*
X124136*
X122682Y140000D02*
X123955D01*
X126318Y141750D02*
Y137500D01*
X126500Y136750*
X126864Y136500*
X127227*
X125773Y140000D02*
X127045D01*
X149750Y157500D02*
X155000D01*
X149750D02*
Y159136D01*
X150000Y159682*
X150250Y159864*
X150750Y160045*
X151500*
X152000Y159864*
X152250Y159682*
X152500Y159136*
Y157500*
X149750Y161682D02*
X155000D01*
X149750D02*
Y163318D01*
X150000Y163864*
X150250Y164045*
X150750Y164227*
X151250*
X151750Y164045*
X152000Y163864*
X152250Y163318*
Y161682D02*
Y163318D01*
X152500Y163864*
X152750Y164045*
X153250Y164227*
X154000*
X154500Y164045*
X154750Y163864*
X155000Y163318*
Y161682*
X151500Y168227D02*
X152250Y168045D01*
X152750Y167682*
X153000Y167136*
Y166955*
X152750Y166409*
X152250Y166045*
X151500Y165864*
X151250*
X150500Y166045*
X150000Y166409*
X149750Y166955*
Y167136*
X150000Y167682*
X150500Y168045*
X151500Y168227*
X152750*
X154000Y168045*
X154750Y167682*
X155000Y167136*
Y166773*
X154750Y166227*
X154250Y166045*
X159750Y157500D02*
X165000D01*
X159750D02*
Y159136D01*
X160000Y159682*
X160250Y159864*
X160750Y160045*
X161500*
X162000Y159864*
X162250Y159682*
X162500Y159136*
Y157500*
X159750Y161682D02*
X165000D01*
X159750D02*
Y163318D01*
X160000Y163864*
X160250Y164045*
X160750Y164227*
X161250*
X161750Y164045*
X162000Y163864*
X162250Y163318*
Y161682D02*
Y163318D01*
X162500Y163864*
X162750Y164045*
X163250Y164227*
X164000*
X164500Y164045*
X164750Y163864*
X165000Y163318*
Y161682*
X159750Y166773D02*
X160000Y166227D01*
X160500Y166045*
X161000*
X161500Y166227*
X161750Y166591*
X162000Y167318*
X162250Y167864*
X162750Y168227*
X163250Y168409*
X164000*
X164500Y168227*
X164750Y168045*
X165000Y167500*
Y166773*
X164750Y166227*
X164500Y166045*
X164000Y165864*
X163250*
X162750Y166045*
X162250Y166409*
X162000Y166955*
X161750Y167682*
X161500Y168045*
X161000Y168227*
X160500*
X160000Y168045*
X159750Y167500*
Y166773*
X169750Y157500D02*
X175000D01*
X172250D02*
X171750Y157864D01*
X171500Y158227*
Y158773*
X171750Y159136*
X172250Y159500*
X173000Y159682*
X173500*
X174250Y159500*
X174750Y159136*
X175000Y158773*
Y158227*
X174750Y157864*
X174250Y157500*
X171500Y162227D02*
X171750Y161864D01*
X172250Y161500*
X173000Y161318*
X173500*
X174250Y161500*
X174750Y161864*
X175000Y162227*
Y162773*
X174750Y163136*
X174250Y163500*
X173500Y163682*
X173000*
X172250Y163500*
X171750Y163136*
X171500Y162773*
Y162227*
Y166227D02*
X171750Y165864D01*
X172250Y165500*
X173000Y165318*
X173500*
X174250Y165500*
X174750Y165864*
X175000Y166227*
Y166773*
X174750Y167136*
X174250Y167500*
X173500Y167682*
X173000*
X172250Y167500*
X171750Y167136*
X171500Y166773*
Y166227*
X169750Y169864D02*
X174000D01*
X174750Y170045*
X175000Y170409*
Y170773*
X171500Y169318D02*
Y170591D01*
X169750Y173500D02*
X170000Y172955D01*
X170750Y172591*
X172000Y172409*
X172750*
X174000Y172591*
X174750Y172955*
X175000Y173500*
Y173864*
X174750Y174409*
X174000Y174773*
X172750Y174955*
X172000*
X170750Y174773*
X170000Y174409*
X169750Y173864*
Y173500*
X179750Y157500D02*
X185000D01*
X179750D02*
Y159136D01*
X180000Y159682*
X180250Y159864*
X180750Y160045*
X181500*
X182000Y159864*
X182250Y159682*
X182500Y159136*
Y157500*
X179750Y161682D02*
X185000D01*
X179750D02*
Y163318D01*
X180000Y163864*
X180250Y164045*
X180750Y164227*
X181250*
X181750Y164045*
X182000Y163864*
X182250Y163318*
Y161682D02*
Y163318D01*
X182500Y163864*
X182750Y164045*
X183250Y164227*
X184000*
X184500Y164045*
X184750Y163864*
X185000Y163318*
Y161682*
X179750Y168409D02*
X185000Y166591D01*
X179750Y165864D02*
Y168409D01*
X189750Y157500D02*
X195000D01*
X189750D02*
Y159136D01*
X190000Y159682*
X190250Y159864*
X190750Y160045*
X191500*
X192000Y159864*
X192250Y159682*
X192500Y159136*
Y157500*
X189750Y161682D02*
X195000D01*
X189750D02*
Y163318D01*
X190000Y163864*
X190250Y164045*
X190750Y164227*
X191250*
X191750Y164045*
X192000Y163864*
X192250Y163318*
Y161682D02*
Y163318D01*
X192500Y163864*
X192750Y164045*
X193250Y164227*
X194000*
X194500Y164045*
X194750Y163864*
X195000Y163318*
Y161682*
X190500Y168045D02*
X190000Y167864D01*
X189750Y167318*
Y166955*
X190000Y166409*
X190750Y166045*
X192000Y165864*
X193250*
X194250Y166045*
X194750Y166409*
X195000Y166955*
Y167136*
X194750Y167682*
X194250Y168045*
X193500Y168227*
X193250*
X192500Y168045*
X192000Y167682*
X191750Y167136*
Y166955*
X192000Y166409*
X192500Y166045*
X193250Y165864*
X199750Y157500D02*
X205000D01*
X199750D02*
Y159136D01*
X200000Y159682*
X200250Y159864*
X200750Y160045*
X201500*
X202000Y159864*
X202250Y159682*
X202500Y159136*
Y157500*
X199750Y161682D02*
X205000D01*
X199750D02*
Y163318D01*
X200000Y163864*
X200250Y164045*
X200750Y164227*
X201250*
X201750Y164045*
X202000Y163864*
X202250Y163318*
Y161682D02*
Y163318D01*
X202500Y163864*
X202750Y164045*
X203250Y164227*
X204000*
X204500Y164045*
X204750Y163864*
X205000Y163318*
Y161682*
X199750Y168227D02*
Y166409D01*
X202000Y166227*
X201750Y166409*
X201500Y166955*
Y167500*
X201750Y168045*
X202250Y168409*
X203000Y168591*
X203500Y168409*
X204250Y168227*
X204750Y167864*
X205000Y167318*
Y166773*
X204750Y166227*
X204500Y166045*
X204000Y165864*
X209750Y157500D02*
X215000D01*
X209750D02*
Y159136D01*
X210000Y159682*
X210250Y159864*
X210750Y160045*
X211500*
X212000Y159864*
X212250Y159682*
X212500Y159136*
Y157500*
X209750Y161682D02*
X215000D01*
X209750D02*
Y163318D01*
X210000Y163864*
X210250Y164045*
X210750Y164227*
X211250*
X211750Y164045*
X212000Y163864*
X212250Y163318*
Y161682D02*
Y163318D01*
X212500Y163864*
X212750Y164045*
X213250Y164227*
X214000*
X214500Y164045*
X214750Y163864*
X215000Y163318*
Y161682*
X209750Y167682D02*
X213250Y165864D01*
Y168591*
X209750Y167682D02*
X215000D01*
X219750Y157500D02*
X225000D01*
X219750D02*
Y159136D01*
X220000Y159682*
X220250Y159864*
X220750Y160045*
X221500*
X222000Y159864*
X222250Y159682*
X222500Y159136*
Y157500*
X219750Y161682D02*
X225000D01*
X219750D02*
Y163318D01*
X220000Y163864*
X220250Y164045*
X220750Y164227*
X221250*
X221750Y164045*
X222000Y163864*
X222250Y163318*
Y161682D02*
Y163318D01*
X222500Y163864*
X222750Y164045*
X223250Y164227*
X224000*
X224500Y164045*
X224750Y163864*
X225000Y163318*
Y161682*
X219750Y166227D02*
Y168227D01*
X221750Y167136*
Y167682*
X222000Y168045*
X222250Y168227*
X223000Y168409*
X223500*
X224250Y168227*
X224750Y167864*
X225000Y167318*
Y166773*
X224750Y166227*
X224500Y166045*
X224000Y165864*
X229750Y157500D02*
X235000D01*
X229750D02*
Y159136D01*
X230000Y159682*
X230250Y159864*
X230750Y160045*
X231500*
X232000Y159864*
X232250Y159682*
X232500Y159136*
Y157500*
X229750Y161682D02*
X235000D01*
X229750D02*
Y162955D01*
X230000Y163500*
X230500Y163864*
X231000Y164045*
X231750Y164227*
X233000*
X233750Y164045*
X234250Y163864*
X234750Y163500*
X235000Y162955*
Y161682*
X231000Y166045D02*
X230750D01*
X230250Y166227*
X230000Y166409*
X229750Y166773*
Y167500*
X230000Y167864*
X230250Y168045*
X230750Y168227*
X231250*
X231750Y168045*
X232500Y167682*
X235000Y165864*
Y168409*
X239750Y157500D02*
X245000D01*
X239750D02*
Y159136D01*
X240000Y159682*
X240250Y159864*
X240750Y160045*
X241500*
X242000Y159864*
X242250Y159682*
X242500Y159136*
Y157500*
X241000Y164409D02*
X240500Y164227D01*
X240000Y163864*
X239750Y163500*
Y162773*
X240000Y162409*
X240500Y162045*
X241000Y161864*
X241750Y161682*
X243000*
X243750Y161864*
X244250Y162045*
X244750Y162409*
X245000Y162773*
Y163500*
X244750Y163864*
X244250Y164227*
X243750Y164409*
X240750Y166045D02*
X240500Y166409D01*
X239750Y166955*
X245000*
X241000Y168773D02*
X240750D01*
X240250Y168955*
X240000Y169136*
X239750Y169500*
Y170227*
X240000Y170591*
X240250Y170773*
X240750Y170955*
X241250*
X241750Y170773*
X242500Y170409*
X245000Y168591*
Y171136*
X249750Y157500D02*
X255000D01*
X249750D02*
Y159136D01*
X250000Y159682*
X250250Y159864*
X250750Y160045*
X251500*
X252000Y159864*
X252250Y159682*
X252500Y159136*
Y157500*
X251000Y164409D02*
X250500Y164227D01*
X250000Y163864*
X249750Y163500*
Y162773*
X250000Y162409*
X250500Y162045*
X251000Y161864*
X251750Y161682*
X253000*
X253750Y161864*
X254250Y162045*
X254750Y162409*
X255000Y162773*
Y163500*
X254750Y163864*
X254250Y164227*
X253750Y164409*
X250750Y166045D02*
X250500Y166409D01*
X249750Y166955*
X255000*
X250750Y168591D02*
X250500Y168955D01*
X249750Y169500*
X255000*
X259750Y157500D02*
X265000D01*
X259750D02*
Y159136D01*
X260000Y159682*
X260250Y159864*
X260750Y160045*
X261500*
X262000Y159864*
X262250Y159682*
X262500Y159136*
Y157500*
X261000Y164409D02*
X260500Y164227D01*
X260000Y163864*
X259750Y163500*
Y162773*
X260000Y162409*
X260500Y162045*
X261000Y161864*
X261750Y161682*
X263000*
X263750Y161864*
X264250Y162045*
X264750Y162409*
X265000Y162773*
Y163500*
X264750Y163864*
X264250Y164227*
X263750Y164409*
X260750Y166045D02*
X260500Y166409D01*
X259750Y166955*
X265000*
X259750Y169682D02*
X260000Y169136D01*
X260750Y168773*
X262000Y168591*
X262750*
X264000Y168773*
X264750Y169136*
X265000Y169682*
Y170045*
X264750Y170591*
X264000Y170955*
X262750Y171136*
X262000*
X260750Y170955*
X260000Y170591*
X259750Y170045*
Y169682*
X269750Y157500D02*
X275000D01*
X269750D02*
Y159136D01*
X270000Y159682*
X270250Y159864*
X270750Y160045*
X271500*
X272000Y159864*
X272250Y159682*
X272500Y159136*
Y157500*
X269750Y163136D02*
X275000Y161682D01*
X269750Y163136D02*
X275000Y164591D01*
X273250Y162227D02*
Y164045D01*
X270750Y166227D02*
X270500Y166591D01*
X269750Y167136*
X275000*
X269750Y171136D02*
Y169318D01*
X272000Y169136*
X271750Y169318*
X271500Y169864*
Y170409*
X271750Y170955*
X272250Y171318*
X273000Y171500*
X273500Y171318*
X274250Y171136*
X274750Y170773*
X275000Y170227*
Y169682*
X274750Y169136*
X274500Y168955*
X274000Y168773*
X279750Y157500D02*
X285000D01*
X279750D02*
Y159136D01*
X280000Y159682*
X280250Y159864*
X280750Y160045*
X281500*
X282000Y159864*
X282250Y159682*
X282500Y159136*
Y157500*
X279750Y163136D02*
X285000Y161682D01*
X279750Y163136D02*
X285000Y164591D01*
X283250Y162227D02*
Y164045D01*
X280750Y166227D02*
X280500Y166591D01*
X279750Y167136*
X285000*
X279750Y170591D02*
X283250Y168773D01*
Y171500*
X279750Y170591D02*
X285000D01*
X270900Y184350D02*
X272355Y179100D01*
X273809Y184350D02*
X272355Y179100D01*
X275445Y184350D02*
Y179100D01*
Y184350D02*
X276718D01*
X277264Y184100*
X277627Y183600*
X277809Y183100*
X277991Y182350*
Y181100*
X277809Y180350*
X277627Y179850*
X277264Y179350*
X276718Y179100*
X275445*
X279627Y184350D02*
Y179100D01*
Y184350D02*
X280900D01*
X281445Y184100*
X281809Y183600*
X281991Y183100*
X282173Y182350*
Y181100*
X281991Y180350*
X281809Y179850*
X281445Y179350*
X280900Y179100*
X279627*
X273627Y193100D02*
X273445Y193600D01*
X273082Y194100*
X272718Y194350*
X271991*
X271627Y194100*
X271264Y193600*
X271082Y193100*
X270900Y192350*
Y191100*
X271082Y190350*
X271264Y189850*
X271627Y189350*
X271991Y189100*
X272718*
X273082Y189350*
X273445Y189850*
X273627Y190350*
Y191100*
X272718D02*
X273627D01*
X275264Y194350D02*
Y189100D01*
Y194350D02*
X277809Y189100D01*
Y194350D02*
Y189100D01*
X279445Y194350D02*
Y189100D01*
Y194350D02*
X280718D01*
X281264Y194100*
X281627Y193600*
X281809Y193100*
X281991Y192350*
Y191100*
X281809Y190350*
X281627Y189850*
X281264Y189350*
X280718Y189100*
X279445*
X268600Y204250D02*
Y199000D01*
Y204250D02*
X270236D01*
X270782Y204000*
X270964Y203750*
X271145Y203250*
Y202500*
X270964Y202000*
X270782Y201750*
X270236Y201500*
X268600*
X274236Y204250D02*
X272782Y199000D01*
X274236Y204250D02*
X275691Y199000D01*
X273327Y200750D02*
X275145D01*
X277327Y203250D02*
X277691Y203500D01*
X278236Y204250*
Y199000*
X280236Y204250D02*
X282236D01*
X281145Y202250*
X281691*
X282055Y202000*
X282236Y201750*
X282418Y201000*
Y200500*
X282236Y199750*
X281873Y199250*
X281327Y199000*
X280782*
X280236Y199250*
X280055Y199500*
X279873Y200000*
X268600Y214250D02*
Y209000D01*
Y214250D02*
X270236D01*
X270782Y214000*
X270964Y213750*
X271145Y213250*
Y212500*
X270964Y212000*
X270782Y211750*
X270236Y211500*
X268600*
X274236Y214250D02*
X272782Y209000D01*
X274236Y214250D02*
X275691Y209000D01*
X273327Y210750D02*
X275145D01*
X277327Y213250D02*
X277691Y213500D01*
X278236Y214250*
Y209000*
X280055Y213000D02*
Y213250D01*
X280236Y213750*
X280418Y214000*
X280782Y214250*
X281509*
X281873Y214000*
X282055Y213750*
X282236Y213250*
Y212750*
X282055Y212250*
X281691Y211500*
X279873Y209000*
X282418*
X268600Y224250D02*
Y219000D01*
Y224250D02*
X270236D01*
X270782Y224000*
X270964Y223750*
X271145Y223250*
Y222500*
X270964Y222000*
X270782Y221750*
X270236Y221500*
X268600*
X274236Y224250D02*
X272782Y219000D01*
X274236Y224250D02*
X275691Y219000D01*
X273327Y220750D02*
X275145D01*
X277327Y223250D02*
X277691Y223500D01*
X278236Y224250*
Y219000*
X279873Y223250D02*
X280236Y223500D01*
X280782Y224250*
Y219000*
X268600Y234250D02*
Y229000D01*
Y234250D02*
X270236D01*
X270782Y234000*
X270964Y233750*
X271145Y233250*
Y232500*
X270964Y232000*
X270782Y231750*
X270236Y231500*
X268600*
X274236Y234250D02*
X272782Y229000D01*
X274236Y234250D02*
X275691Y229000D01*
X273327Y230750D02*
X275145D01*
X277327Y233250D02*
X277691Y233500D01*
X278236Y234250*
Y229000*
X280964Y234250D02*
X280418Y234000D01*
X280055Y233250*
X279873Y232000*
Y231250*
X280055Y230000*
X280418Y229250*
X280964Y229000*
X281327*
X281873Y229250*
X282236Y230000*
X282418Y231250*
Y232000*
X282236Y233250*
X281873Y234000*
X281327Y234250*
X280964*
X271100Y244250D02*
Y239000D01*
Y244250D02*
X272736D01*
X273282Y244000*
X273464Y243750*
X273645Y243250*
Y242500*
X273464Y242000*
X273282Y241750*
X272736Y241500*
X271100*
X276736Y244250D02*
X275282Y239000D01*
X276736Y244250D02*
X278191Y239000D01*
X275827Y240750D02*
X277645D01*
X282191Y242500D02*
X282009Y241750D01*
X281645Y241250*
X281100Y241000*
X280918*
X280373Y241250*
X280009Y241750*
X279827Y242500*
Y242750*
X280009Y243500*
X280373Y244000*
X280918Y244250*
X281100*
X281645Y244000*
X282009Y243500*
X282191Y242500*
Y241250*
X282009Y240000*
X281645Y239250*
X281100Y239000*
X280736*
X280191Y239250*
X280009Y239750*
X271100Y254250D02*
Y249000D01*
Y254250D02*
X272736D01*
X273282Y254000*
X273464Y253750*
X273645Y253250*
Y252500*
X273464Y252000*
X273282Y251750*
X272736Y251500*
X271100*
X276736Y254250D02*
X275282Y249000D01*
X276736Y254250D02*
X278191Y249000D01*
X275827Y250750D02*
X277645D01*
X280736Y254250D02*
X280191Y254000D01*
X280009Y253500*
Y253000*
X280191Y252500*
X280555Y252250*
X281282Y252000*
X281827Y251750*
X282191Y251250*
X282373Y250750*
Y250000*
X282191Y249500*
X282009Y249250*
X281464Y249000*
X280736*
X280191Y249250*
X280009Y249500*
X279827Y250000*
Y250750*
X280009Y251250*
X280373Y251750*
X280918Y252000*
X281645Y252250*
X282009Y252500*
X282191Y253000*
Y253500*
X282009Y254000*
X281464Y254250*
X280736*
X271100Y264250D02*
Y259000D01*
Y264250D02*
X272736D01*
X273282Y264000*
X273464Y263750*
X273645Y263250*
Y262500*
X273464Y262000*
X273282Y261750*
X272736Y261500*
X271100*
X278009Y263000D02*
X277827Y263500D01*
X277464Y264000*
X277100Y264250*
X276373*
X276009Y264000*
X275645Y263500*
X275464Y263000*
X275282Y262250*
Y261000*
X275464Y260250*
X275645Y259750*
X276009Y259250*
X276373Y259000*
X277100*
X277464Y259250*
X277827Y259750*
X278009Y260250*
X282009Y262500D02*
X281827Y261750D01*
X281464Y261250*
X280918Y261000*
X280736*
X280191Y261250*
X279827Y261750*
X279645Y262500*
Y262750*
X279827Y263500*
X280191Y264000*
X280736Y264250*
X280918*
X281464Y264000*
X281827Y263500*
X282009Y262500*
Y261250*
X281827Y260000*
X281464Y259250*
X280918Y259000*
X280555*
X280009Y259250*
X279827Y259750*
X271100Y274250D02*
Y269000D01*
Y274250D02*
X272736D01*
X273282Y274000*
X273464Y273750*
X273645Y273250*
Y272500*
X273464Y272000*
X273282Y271750*
X272736Y271500*
X271100*
X278009Y273000D02*
X277827Y273500D01*
X277464Y274000*
X277100Y274250*
X276373*
X276009Y274000*
X275645Y273500*
X275464Y273000*
X275282Y272250*
Y271000*
X275464Y270250*
X275645Y269750*
X276009Y269250*
X276373Y269000*
X277100*
X277464Y269250*
X277827Y269750*
X278009Y270250*
X280555Y274250D02*
X280009Y274000D01*
X279827Y273500*
Y273000*
X280009Y272500*
X280373Y272250*
X281100Y272000*
X281645Y271750*
X282009Y271250*
X282191Y270750*
Y270000*
X282009Y269500*
X281827Y269250*
X281282Y269000*
X280555*
X280009Y269250*
X279827Y269500*
X279645Y270000*
Y270750*
X279827Y271250*
X280191Y271750*
X280736Y272000*
X281464Y272250*
X281827Y272500*
X282009Y273000*
Y273500*
X281827Y274000*
X281282Y274250*
X280555*
X271100Y284250D02*
Y279000D01*
Y284250D02*
X272736D01*
X273282Y284000*
X273464Y283750*
X273645Y283250*
Y282500*
X273464Y282000*
X273282Y281750*
X272736Y281500*
X271100*
X278009Y283000D02*
X277827Y283500D01*
X277464Y284000*
X277100Y284250*
X276373*
X276009Y284000*
X275645Y283500*
X275464Y283000*
X275282Y282250*
Y281000*
X275464Y280250*
X275645Y279750*
X276009Y279250*
X276373Y279000*
X277100*
X277464Y279250*
X277827Y279750*
X278009Y280250*
X282191Y284250D02*
X280373Y279000D01*
X279645Y284250D02*
X282191D01*
X148500Y299127D02*
X148000Y298945D01*
X147500Y298582*
X147250Y298218*
Y297491*
X147500Y297127*
X148000Y296764*
X148500Y296582*
X149250Y296400*
X150500*
X151250Y296582*
X151750Y296764*
X152250Y297127*
X152500Y297491*
Y298218*
X152250Y298582*
X151750Y298945*
X151250Y299127*
X150500*
Y298218D02*
Y299127D01*
X147250Y300764D02*
X152500D01*
X147250D02*
X152500Y303309D01*
X147250D02*
X152500D01*
X147250Y304945D02*
X152500D01*
X147250D02*
Y306218D01*
X147500Y306764*
X148000Y307127*
X148500Y307309*
X149250Y307491*
X150500*
X151250Y307309*
X151750Y307127*
X152250Y306764*
X152500Y306218*
Y304945*
X157150Y296400D02*
X162400Y297855D01*
X157150Y299309D02*
X162400Y297855D01*
X157150Y300945D02*
X162400D01*
X157150D02*
Y302218D01*
X157400Y302764*
X157900Y303127*
X158400Y303309*
X159150Y303491*
X160400*
X161150Y303309*
X161650Y303127*
X162150Y302764*
X162400Y302218*
Y300945*
X157150Y305127D02*
X162400D01*
X157150D02*
Y306400D01*
X157400Y306945*
X157900Y307309*
X158400Y307491*
X159150Y307673*
X160400*
X161150Y307491*
X161650Y307309*
X162150Y306945*
X162400Y306400*
Y305127*
X167050Y296100D02*
X172300D01*
X167050D02*
Y297736D01*
X167300Y298282*
X167550Y298464*
X168050Y298645*
X168800*
X169300Y298464*
X169550Y298282*
X169800Y297736*
Y296100*
X167050Y301736D02*
X172300Y300282D01*
X167050Y301736D02*
X172300Y303191D01*
X170550Y300827D02*
Y302645D01*
X167050Y306645D02*
X170550Y304827D01*
Y307555*
X167050Y306645D02*
X172300D01*
X176750Y295700D02*
X182000D01*
X176750D02*
Y297336D01*
X177000Y297882*
X177250Y298064*
X177750Y298245*
X178500*
X179000Y298064*
X179250Y297882*
X179500Y297336*
Y295700*
X176750Y301336D02*
X182000Y299882D01*
X176750Y301336D02*
X182000Y302791D01*
X180250Y300427D02*
Y302245D01*
X176750Y306791D02*
Y304973D01*
X179000Y304791*
X178750Y304973*
X178500Y305518*
Y306064*
X178750Y306609*
X179250Y306973*
X180000Y307155*
X180500Y306973*
X181250Y306791*
X181750Y306427*
X182000Y305882*
Y305336*
X181750Y304791*
X181500Y304609*
X181000Y304427*
X187250Y296100D02*
X192500D01*
X187250D02*
Y297736D01*
X187500Y298282*
X187750Y298464*
X188250Y298645*
X189000*
X189500Y298464*
X189750Y298282*
X190000Y297736*
Y296100*
X187250Y301736D02*
X192500Y300282D01*
X187250Y301736D02*
X192500Y303191D01*
X190750Y300827D02*
Y302645D01*
X188000Y307009D02*
X187500Y306827D01*
X187250Y306282*
Y305918*
X187500Y305373*
X188250Y305009*
X189500Y304827*
X190750*
X191750Y305009*
X192250Y305373*
X192500Y305918*
Y306100*
X192250Y306645*
X191750Y307009*
X191000Y307191*
X190750*
X190000Y307009*
X189500Y306645*
X189250Y306100*
Y305918*
X189500Y305373*
X190000Y305009*
X190750Y304827*
X197450Y296100D02*
X202700D01*
X197450D02*
Y297736D01*
X197700Y298282*
X197950Y298464*
X198450Y298645*
X199200*
X199700Y298464*
X199950Y298282*
X200200Y297736*
Y296100*
X197450Y301736D02*
X202700Y300282D01*
X197450Y301736D02*
X202700Y303191D01*
X200950Y300827D02*
Y302645D01*
X197450Y307373D02*
X202700Y305555D01*
X197450Y304827D02*
Y307373D01*
X207450Y296100D02*
X212700D01*
X207450D02*
Y297736D01*
X207700Y298282*
X207950Y298464*
X208450Y298645*
X209200*
X209700Y298464*
X209950Y298282*
X210200Y297736*
Y296100*
X208700Y303009D02*
X208200Y302827D01*
X207700Y302464*
X207450Y302100*
Y301373*
X207700Y301009*
X208200Y300645*
X208700Y300464*
X209450Y300282*
X210700*
X211450Y300464*
X211950Y300645*
X212450Y301009*
X212700Y301373*
Y302100*
X212450Y302464*
X211950Y302827*
X211450Y303009*
X207450Y306464D02*
X210950Y304645D01*
Y307373*
X207450Y306464D02*
X212700D01*
X216750Y295700D02*
X222000D01*
X216750D02*
Y297336D01*
X217000Y297882*
X217250Y298064*
X217750Y298245*
X218500*
X219000Y298064*
X219250Y297882*
X219500Y297336*
Y295700*
X218000Y302609D02*
X217500Y302427D01*
X217000Y302064*
X216750Y301700*
Y300973*
X217000Y300609*
X217500Y300245*
X218000Y300064*
X218750Y299882*
X220000*
X220750Y300064*
X221250Y300245*
X221750Y300609*
X222000Y300973*
Y301700*
X221750Y302064*
X221250Y302427*
X220750Y302609*
X216750Y306609D02*
Y304791D01*
X219000Y304609*
X218750Y304791*
X218500Y305336*
Y305882*
X218750Y306427*
X219250Y306791*
X220000Y306973*
X220500Y306791*
X221250Y306609*
X221750Y306245*
X222000Y305700*
Y305155*
X221750Y304609*
X221500Y304427*
X221000Y304245*
X226750Y295700D02*
X232000D01*
X226750D02*
Y297336D01*
X227000Y297882*
X227250Y298064*
X227750Y298245*
X228500*
X229000Y298064*
X229250Y297882*
X229500Y297336*
Y295700*
X226750Y299882D02*
X232000D01*
X226750D02*
Y301518D01*
X227000Y302064*
X227250Y302245*
X227750Y302427*
X228250*
X228750Y302245*
X229000Y302064*
X229250Y301518*
Y299882D02*
Y301518D01*
X229500Y302064*
X229750Y302245*
X230250Y302427*
X231000*
X231500Y302245*
X231750Y302064*
X232000Y301518*
Y299882*
X226750Y305155D02*
X227000Y304609D01*
X227750Y304245*
X229000Y304064*
X229750*
X231000Y304245*
X231750Y304609*
X232000Y305155*
Y305518*
X231750Y306064*
X231000Y306427*
X229750Y306609*
X229000*
X227750Y306427*
X227000Y306064*
X226750Y305518*
Y305155*
X237650Y296800D02*
X242900D01*
X237650D02*
Y298436D01*
X237900Y298982*
X238150Y299164*
X238650Y299345*
X239400*
X239900Y299164*
X240150Y298982*
X240400Y298436*
Y296800*
X237650Y300982D02*
X242900D01*
X237650D02*
Y302618D01*
X237900Y303164*
X238150Y303345*
X238650Y303527*
X239150*
X239650Y303345*
X239900Y303164*
X240150Y302618*
Y300982D02*
Y302618D01*
X240400Y303164*
X240650Y303345*
X241150Y303527*
X241900*
X242400Y303345*
X242650Y303164*
X242900Y302618*
Y300982*
X238650Y305164D02*
X238400Y305527D01*
X237650Y306073*
X242900*
X247250Y295700D02*
X252500D01*
X247250D02*
Y297336D01*
X247500Y297882*
X247750Y298064*
X248250Y298245*
X249000*
X249500Y298064*
X249750Y297882*
X250000Y297336*
Y295700*
X247250Y299882D02*
X252500D01*
X247250D02*
Y301518D01*
X247500Y302064*
X247750Y302245*
X248250Y302427*
X248750*
X249250Y302245*
X249500Y302064*
X249750Y301518*
Y299882D02*
Y301518D01*
X250000Y302064*
X250250Y302245*
X250750Y302427*
X251500*
X252000Y302245*
X252250Y302064*
X252500Y301518*
Y299882*
X248500Y304245D02*
X248250D01*
X247750Y304427*
X247500Y304609*
X247250Y304973*
Y305700*
X247500Y306064*
X247750Y306245*
X248250Y306427*
X248750*
X249250Y306245*
X250000Y305882*
X252500Y304064*
Y306609*
X256950Y293700D02*
X262200D01*
X256950D02*
Y295336D01*
X257200Y295882*
X257450Y296064*
X257950Y296245*
X258700*
X259200Y296064*
X259450Y295882*
X259700Y295336*
Y293700*
X256950Y297882D02*
X262200D01*
X256950D02*
Y299518D01*
X257200Y300064*
X257450Y300245*
X257950Y300427*
X258450*
X258950Y300245*
X259200Y300064*
X259450Y299518*
Y297882D02*
Y299518D01*
X259700Y300064*
X259950Y300245*
X260450Y300427*
X261200*
X261700Y300245*
X261950Y300064*
X262200Y299518*
Y297882*
X257950Y302064D02*
X257700Y302427D01*
X256950Y302973*
X262200*
X256950Y305700D02*
X257200Y305155D01*
X257950Y304791*
X259200Y304609*
X259950*
X261200Y304791*
X261950Y305155*
X262200Y305700*
Y306064*
X261950Y306609*
X261200Y306973*
X259950Y307155*
X259200*
X257950Y306973*
X257200Y306609*
X256950Y306064*
Y305700*
X267550Y294400D02*
X272800D01*
X267550D02*
Y296036D01*
X267800Y296582*
X268050Y296764*
X268550Y296945*
X269300*
X269800Y296764*
X270050Y296582*
X270300Y296036*
Y294400*
X267550Y298582D02*
X272800D01*
X267550D02*
Y300218D01*
X267800Y300764*
X268050Y300945*
X268550Y301127*
X269050*
X269550Y300945*
X269800Y300764*
X270050Y300218*
Y298582D02*
Y300218D01*
X270300Y300764*
X270550Y300945*
X271050Y301127*
X271800*
X272300Y300945*
X272550Y300764*
X272800Y300218*
Y298582*
X268550Y302764D02*
X268300Y303127D01*
X267550Y303673*
X272800*
X268550Y305309D02*
X268300Y305673D01*
X267550Y306218*
X272800*
X277150Y294000D02*
X282400D01*
X277150D02*
Y295636D01*
X277400Y296182*
X277650Y296364*
X278150Y296545*
X278900*
X279400Y296364*
X279650Y296182*
X279900Y295636*
Y294000*
X277150Y298182D02*
X282400D01*
X277150D02*
Y299818D01*
X277400Y300364*
X277650Y300545*
X278150Y300727*
X278650*
X279150Y300545*
X279400Y300364*
X279650Y299818*
Y298182D02*
Y299818D01*
X279900Y300364*
X280150Y300545*
X280650Y300727*
X281400*
X281900Y300545*
X282150Y300364*
X282400Y299818*
Y298182*
X278150Y302364D02*
X277900Y302727D01*
X277150Y303273*
X282400*
X278400Y305091D02*
X278150D01*
X277650Y305273*
X277400Y305455*
X277150Y305818*
Y306545*
X277400Y306909*
X277650Y307091*
X278150Y307273*
X278650*
X279150Y307091*
X279900Y306727*
X282400Y304909*
Y307455*
X287450Y293400D02*
X292700D01*
X287450D02*
Y295036D01*
X287700Y295582*
X287950Y295764*
X288450Y295945*
X289200*
X289700Y295764*
X289950Y295582*
X290200Y295036*
Y293400*
X287450Y297582D02*
X292700D01*
X287450D02*
Y299218D01*
X287700Y299764*
X287950Y299945*
X288450Y300127*
X288950*
X289450Y299945*
X289700Y299764*
X289950Y299218*
Y297582D02*
Y299218D01*
X290200Y299764*
X290450Y299945*
X290950Y300127*
X291700*
X292200Y299945*
X292450Y299764*
X292700Y299218*
Y297582*
X288450Y301764D02*
X288200Y302127D01*
X287450Y302673*
X292700*
X287450Y304673D02*
Y306673D01*
X289450Y305582*
Y306127*
X289700Y306491*
X289950Y306673*
X290700Y306855*
X291200*
X291950Y306673*
X292450Y306309*
X292700Y305764*
Y305218*
X292450Y304673*
X292200Y304491*
X291700Y304309*
X296950Y298100D02*
X302200D01*
X296950D02*
Y299736D01*
X297200Y300282*
X297450Y300464*
X297950Y300645*
X298450*
X298950Y300464*
X299200Y300282*
X299450Y299736*
Y298100D02*
Y299736D01*
X299700Y300282*
X299950Y300464*
X300450Y300645*
X301200*
X301700Y300464*
X301950Y300282*
X302200Y299736*
Y298100*
X297950Y302282D02*
X297700Y302645D01*
X296950Y303191*
X302200*
X296950Y306645D02*
X300450Y304827D01*
Y307555*
X296950Y306645D02*
X302200D01*
X307550Y297800D02*
X312800D01*
X307550D02*
Y299436D01*
X307800Y299982*
X308050Y300164*
X308550Y300345*
X309050*
X309550Y300164*
X309800Y299982*
X310050Y299436*
Y297800D02*
Y299436D01*
X310300Y299982*
X310550Y300164*
X311050Y300345*
X311800*
X312300Y300164*
X312550Y299982*
X312800Y299436*
Y297800*
X308550Y301982D02*
X308300Y302345D01*
X307550Y302891*
X312800*
X307550Y306891D02*
Y305073D01*
X309800Y304891*
X309550Y305073*
X309300Y305618*
Y306164*
X309550Y306709*
X310050Y307073*
X310800Y307255*
X311300Y307073*
X312050Y306891*
X312550Y306527*
X312800Y305982*
Y305436*
X312550Y304891*
X312300Y304709*
X311800Y304527*
X317550Y295800D02*
X322800D01*
X317550D02*
Y297436D01*
X317800Y297982*
X318050Y298164*
X318550Y298345*
X319300*
X319800Y298164*
X320050Y297982*
X320300Y297436*
Y295800*
X318800Y302709D02*
X318300Y302527D01*
X317800Y302164*
X317550Y301800*
Y301073*
X317800Y300709*
X318300Y300345*
X318800Y300164*
X319550Y299982*
X320800*
X321550Y300164*
X322050Y300345*
X322550Y300709*
X322800Y301073*
Y301800*
X322550Y302164*
X322050Y302527*
X321550Y302709*
X318300Y306527D02*
X317800Y306345D01*
X317550Y305800*
Y305436*
X317800Y304891*
X318550Y304527*
X319800Y304345*
X321050*
X322050Y304527*
X322550Y304891*
X322800Y305436*
Y305618*
X322550Y306164*
X322050Y306527*
X321300Y306709*
X321050*
X320300Y306527*
X319800Y306164*
X319550Y305618*
Y305436*
X319800Y304891*
X320300Y304527*
X321050Y304345*
X135000Y336750D02*
Y331500D01*
Y336750D02*
X136636D01*
X137182Y336500*
X137364Y336250*
X137545Y335750*
Y335000*
X137364Y334500*
X137182Y334250*
X136636Y334000*
X135000*
X140636Y336750D02*
X139182Y331500D01*
X140636Y336750D02*
X142091Y331500D01*
X139727Y333250D02*
X141545D01*
X144091Y336750D02*
X146091D01*
X145000Y334750*
X145545*
X145909Y334500*
X146091Y334250*
X146273Y333500*
Y333000*
X146091Y332250*
X145727Y331750*
X145182Y331500*
X144636*
X144091Y331750*
X143909Y332000*
X143727Y332500*
X328700Y189100D02*
Y183850D01*
Y188350D02*
X329064Y188850D01*
X329427Y189100*
X329973*
X330336Y188850*
X330700Y188350*
X330882Y187600*
Y187100*
X330700Y186350*
X330336Y185850*
X329973Y185600*
X329427*
X329064Y185850*
X328700Y186350*
X333427Y189100D02*
X333064Y188850D01*
X332700Y188350*
X332518Y187600*
Y187100*
X332700Y186350*
X333064Y185850*
X333427Y185600*
X333973*
X334336Y185850*
X334700Y186350*
X334882Y187100*
Y187600*
X334700Y188350*
X334336Y188850*
X333973Y189100*
X333427*
X336518D02*
X337245Y185600D01*
X337973Y189100D02*
X337245Y185600D01*
X337973Y189100D02*
X338700Y185600D01*
X339427Y189100D02*
X338700Y185600D01*
X341064Y187600D02*
X343245D01*
Y188100*
X343064Y188600*
X342882Y188850*
X342518Y189100*
X341973*
X341609Y188850*
X341245Y188350*
X341064Y187600*
Y187100*
X341245Y186350*
X341609Y185850*
X341973Y185600*
X342518*
X342882Y185850*
X343245Y186350*
X344882Y189100D02*
Y185600D01*
Y187600D02*
X345064Y188350D01*
X345427Y188850*
X345791Y189100*
X346336*
X189200Y237300D02*
Y233800D01*
Y236300D02*
X189745Y237050D01*
X190109Y237300*
X190655*
X191018Y237050*
X191200Y236300*
Y233800*
Y236300D02*
X191745Y237050D01*
X192109Y237300*
X192655*
X193018Y237050*
X193200Y236300*
Y233800*
X194836Y239050D02*
X195018Y238800D01*
X195200Y239050*
X195018Y239300*
X194836Y239050*
X195018Y237300D02*
Y233800D01*
X197564Y239050D02*
X197745Y238800D01*
X197927Y239050*
X197745Y239300*
X197564Y239050*
X197745Y237300D02*
Y233050D01*
X197564Y232300*
X197200Y232050*
X196836*
X201745Y237300D02*
Y233800D01*
Y236550D02*
X201382Y237050D01*
X201018Y237300*
X200473*
X200109Y237050*
X199745Y236550*
X199564Y235800*
Y235300*
X199745Y234550*
X200109Y234050*
X200473Y233800*
X201018*
X201382Y234050*
X201745Y234550*
X203745Y234050D02*
X203564Y233800D01*
X203382Y234050*
X203564Y234300*
X203745Y234050*
Y233550*
X203564Y233050*
X203382Y232800*
X209564Y239050D02*
Y233800D01*
X211382Y237300D02*
X209564Y234800D01*
X210291Y235800D02*
X211564Y233800D01*
X215382Y237300D02*
Y233800D01*
Y236550D02*
X215018Y237050D01*
X214655Y237300*
X214109*
X213745Y237050*
X213382Y236550*
X213200Y235800*
Y235300*
X213382Y234550*
X213745Y234050*
X214109Y233800*
X214655*
X215018Y234050*
X215382Y234550*
X217018Y239050D02*
Y233800D01*
X218836Y237300D02*
X217018Y234800D01*
X217745Y235800D02*
X219018Y233800D01*
X220655Y239050D02*
Y233800D01*
X222291Y239050D02*
X222473Y238800D01*
X222655Y239050*
X222473Y239300*
X222291Y239050*
X222473Y237300D02*
Y233800D01*
X224291Y239050D02*
Y233800D01*
X226109Y237300D02*
X224291Y234800D01*
X225018Y235800D02*
X226291Y233800D01*
X232291Y237800D02*
Y238050D01*
X232473Y238550*
X232655Y238800*
X233018Y239050*
X233745*
X234109Y238800*
X234291Y238550*
X234473Y238050*
Y237550*
X234291Y237050*
X233927Y236300*
X232109Y233800*
X234655*
X237382Y239050D02*
X236836Y238800D01*
X236473Y238050*
X236291Y236800*
Y236050*
X236473Y234800*
X236836Y234050*
X237382Y233800*
X237745*
X238291Y234050*
X238655Y234800*
X238836Y236050*
Y236800*
X238655Y238050*
X238291Y238800*
X237745Y239050*
X237382*
X240473Y238050D02*
X240836Y238300D01*
X241382Y239050*
Y233800*
X243018Y238050D02*
X243382Y238300D01*
X243927Y239050*
Y233800*
X310750Y265000D02*
X316000D01*
X313250D02*
X312750Y265364D01*
X312500Y265727*
Y266273*
X312750Y266636*
X313250Y267000*
X314000Y267182*
X314500*
X315250Y267000*
X315750Y266636*
X316000Y266273*
Y265727*
X315750Y265364*
X315250Y265000*
X312500Y269727D02*
X312750Y269364D01*
X313250Y269000*
X314000Y268818*
X314500*
X315250Y269000*
X315750Y269364*
X316000Y269727*
Y270273*
X315750Y270636*
X315250Y271000*
X314500Y271182*
X314000*
X313250Y271000*
X312750Y270636*
X312500Y270273*
Y269727*
Y273727D02*
X312750Y273364D01*
X313250Y273000*
X314000Y272818*
X314500*
X315250Y273000*
X315750Y273364*
X316000Y273727*
Y274273*
X315750Y274636*
X315250Y275000*
X314500Y275182*
X314000*
X313250Y275000*
X312750Y274636*
X312500Y274273*
Y273727*
X310750Y277364D02*
X315000D01*
X315750Y277545*
X316000Y277909*
Y278273*
X312500Y276818D02*
Y278091D01*
X257718Y108450D02*
Y104450D01*
X257536Y103700*
X257355Y103450*
X256991Y103200*
X256627*
X256264Y103450*
X256082Y103700*
X255900Y104450*
Y104950*
X260627Y108450D02*
Y103200D01*
X259355Y108450D02*
X261900D01*
X264991D02*
X263536Y103200D01*
X264991Y108450D02*
X266445Y103200D01*
X264082Y104950D02*
X265900D01*
X270809Y107200D02*
X270627Y107700D01*
X270264Y108200*
X269900Y108450*
X269173*
X268809Y108200*
X268445Y107700*
X268264Y107200*
X268082Y106450*
Y105200*
X268264Y104450*
X268445Y103950*
X268809Y103450*
X269173Y103200*
X269900*
X270264Y103450*
X270627Y103950*
X270809Y104450*
Y105200*
X269900D02*
X270809D01*
X290000Y140250D02*
Y135000D01*
Y140250D02*
X291636D01*
X292182Y140000*
X292364Y139750*
X292545Y139250*
Y138750*
X292364Y138250*
X292182Y138000*
X291636Y137750*
X290000*
X291273D02*
X292545Y135000D01*
X294182Y140250D02*
Y135000D01*
Y140250D02*
X296545D01*
X294182Y137750D02*
X295636D01*
X294182Y135000D02*
X296545D01*
X300727Y139500D02*
X300364Y140000D01*
X299818Y140250*
X299091*
X298545Y140000*
X298182Y139500*
Y139000*
X298364Y138500*
X298545Y138250*
X298909Y138000*
X300000Y137500*
X300364Y137250*
X300545Y137000*
X300727Y136500*
Y135750*
X300364Y135250*
X299818Y135000*
X299091*
X298545Y135250*
X298182Y135750*
X302364Y140250D02*
Y135000D01*
Y140250D02*
X304727D01*
X302364Y137750D02*
X303818D01*
X302364Y135000D02*
X304727D01*
X307636Y140250D02*
Y135000D01*
X306364Y140250D02*
X308909D01*
X203500Y189750D02*
Y184500D01*
Y187250D02*
X203864Y187750D01*
X204227Y188000*
X204773*
X205136Y187750*
X205500Y187250*
X205682Y186500*
Y186000*
X205500Y185250*
X205136Y184750*
X204773Y184500*
X204227*
X203864Y184750*
X203500Y185250*
X209500Y188000D02*
Y184500D01*
Y187250D02*
X209136Y187750D01*
X208773Y188000*
X208227*
X207864Y187750*
X207500Y187250*
X207318Y186500*
Y186000*
X207500Y185250*
X207864Y184750*
X208227Y184500*
X208773*
X209136Y184750*
X209500Y185250*
X211682Y189750D02*
Y185500D01*
X211864Y184750*
X212227Y184500*
X212591*
X211136Y188000D02*
X212409D01*
X214773Y189750D02*
Y185500D01*
X214955Y184750*
X215318Y184500*
X215682*
X214227Y188000D02*
X215500D01*
X217500Y185000D02*
X217318Y184750D01*
X217500Y184500*
X217682Y184750*
X217500Y185000*
X142150Y109100D02*
X147400D01*
Y111282*
X142150Y112918D02*
X147400D01*
X142150D02*
Y115282D01*
X144650Y112918D02*
Y114373D01*
X147400Y112918D02*
Y115282D01*
X142150Y116918D02*
X147400D01*
X142150D02*
Y118191D01*
X142400Y118736*
X142900Y119100*
X143400Y119282*
X144150Y119464*
X145400*
X146150Y119282*
X146650Y119100*
X147150Y118736*
X147400Y118191*
Y116918*
X143150Y121100D02*
X142900Y121464D01*
X142150Y122009*
X147400*
X170950Y107500D02*
X176200D01*
Y109682*
X170950Y111318D02*
X176200D01*
X170950D02*
Y113682D01*
X173450Y111318D02*
Y112773D01*
X176200Y111318D02*
Y113682D01*
X170950Y115318D02*
X176200D01*
X170950D02*
Y116591D01*
X171200Y117136*
X171700Y117500*
X172200Y117682*
X172950Y117864*
X174200*
X174950Y117682*
X175450Y117500*
X175950Y117136*
X176200Y116591*
Y115318*
X172200Y119682D02*
X171950D01*
X171450Y119864*
X171200Y120045*
X170950Y120409*
Y121136*
X171200Y121500*
X171450Y121682*
X171950Y121864*
X172450*
X172950Y121682*
X173700Y121318*
X176200Y119500*
Y122045*
X372050Y179100D02*
X375800D01*
X376550Y179282*
X377050Y179645*
X377300Y180191*
Y180555*
X377050Y181100*
X376550Y181464*
X375800Y181645*
X372050*
X372800Y185827D02*
X372300Y185464D01*
X372050Y184918*
Y184191*
X372300Y183645*
X372800Y183282*
X373300*
X373800Y183464*
X374050Y183645*
X374300Y184009*
X374800Y185100*
X375050Y185464*
X375300Y185645*
X375800Y185827*
X376550*
X377050Y185464*
X377300Y184918*
Y184191*
X377050Y183645*
X376550Y183282*
X372050Y187464D02*
X377300D01*
X372050D02*
Y189100D01*
X372300Y189645*
X372550Y189827*
X373050Y190009*
X373550*
X374050Y189827*
X374300Y189645*
X374550Y189100*
Y187464D02*
Y189100D01*
X374800Y189645*
X375050Y189827*
X375550Y190009*
X376300*
X376800Y189827*
X377050Y189645*
X377300Y189100*
Y187464*
X308200Y163500D02*
Y158250D01*
Y162750D02*
X308564Y163250D01*
X308927Y163500*
X309473*
X309836Y163250*
X310200Y162750*
X310382Y162000*
Y161500*
X310200Y160750*
X309836Y160250*
X309473Y160000*
X308927*
X308564Y160250*
X308200Y160750*
X312018Y163500D02*
Y161000D01*
X312200Y160250*
X312564Y160000*
X313109*
X313473Y160250*
X314018Y161000*
Y163500D02*
Y160000D01*
X315655Y165250D02*
Y160000D01*
X317291Y165250D02*
Y160000D01*
X318927Y162250D02*
X322200D01*
X323836Y163500D02*
Y161000D01*
X324018Y160250*
X324382Y160000*
X324927*
X325291Y160250*
X325836Y161000*
Y163500D02*
Y160000D01*
X327473Y163500D02*
Y158250D01*
Y162750D02*
X327836Y163250D01*
X328200Y163500*
X328745*
X329109Y163250*
X329473Y162750*
X329655Y162000*
Y161500*
X329473Y160750*
X329109Y160250*
X328745Y160000*
X328200*
X327836Y160250*
X327473Y160750*
X306500Y172750D02*
Y169000D01*
X306682Y168250*
X307045Y167750*
X307591Y167500*
X307955*
X308500Y167750*
X308864Y168250*
X309045Y169000*
Y172750*
X313227Y172000D02*
X312864Y172500D01*
X312318Y172750*
X311591*
X311045Y172500*
X310682Y172000*
Y171500*
X310864Y171000*
X311045Y170750*
X311409Y170500*
X312500Y170000*
X312864Y169750*
X313045Y169500*
X313227Y169000*
Y168250*
X312864Y167750*
X312318Y167500*
X311591*
X311045Y167750*
X310682Y168250*
X314864Y172750D02*
Y167500D01*
Y172750D02*
X316500D01*
X317045Y172500*
X317227Y172250*
X317409Y171750*
Y171250*
X317227Y170750*
X317045Y170500*
X316500Y170250*
X314864D02*
X316500D01*
X317045Y170000*
X317227Y169750*
X317409Y169250*
Y168500*
X317227Y168000*
X317045Y167750*
X316500Y167500*
X314864*
X323227Y172750D02*
Y167500D01*
Y172750D02*
X324500D01*
X325045Y172500*
X325409Y172000*
X325591Y171500*
X325773Y170750*
Y169500*
X325591Y168750*
X325409Y168250*
X325045Y167750*
X324500Y167500*
X323227*
X329045Y172000D02*
Y167500D01*
X327409Y169750D02*
X330682D01*
X328400Y180500D02*
X330582D01*
Y181000*
X330400Y181500*
X330218Y181750*
X329855Y182000*
X329309*
X328945Y181750*
X328582Y181250*
X328400Y180500*
Y180000*
X328582Y179250*
X328945Y178750*
X329309Y178500*
X329855*
X330218Y178750*
X330582Y179250*
X332218Y182000D02*
Y178500D01*
Y181000D02*
X332764Y181750D01*
X333127Y182000*
X333673*
X334036Y181750*
X334218Y181000*
Y178500*
X338036Y182000D02*
Y178500D01*
Y181250D02*
X337673Y181750D01*
X337309Y182000*
X336764*
X336400Y181750*
X336036Y181250*
X335855Y180500*
Y180000*
X336036Y179250*
X336400Y178750*
X336764Y178500*
X337309*
X337673Y178750*
X338036Y179250*
X339673Y183750D02*
Y178500D01*
Y181250D02*
X340036Y181750D01*
X340400Y182000*
X340945*
X341309Y181750*
X341673Y181250*
X341855Y180500*
Y180000*
X341673Y179250*
X341309Y178750*
X340945Y178500*
X340400*
X340036Y178750*
X339673Y179250*
X343491Y183750D02*
Y178500D01*
X345127Y180500D02*
X347309D01*
Y181000*
X347127Y181500*
X346945Y181750*
X346582Y182000*
X346036*
X345673Y181750*
X345309Y181250*
X345127Y180500*
Y180000*
X345309Y179250*
X345673Y178750*
X346036Y178500*
X346582*
X346945Y178750*
X347309Y179250*
G74*
X0Y0D02*
M02*
/Modules/ARM/STM32F10xRxT/CAM_PROFI/BOARD.PHO
0,0 → 1,376
*
*
G04 PADS 9.2 Build Number: 414666 generated Gerber (RS-274-X) file*
G04 PC Version=2.1*
*
%IN "STM32F10XRXT.pcb"*%
*
%MOIN*%
*
%FSLAX35Y35*%
*
*
*
*
G04 PC Standard Apertures*
*
*
G04 Thermal Relief Aperture macro.*
%AMTER*
1,1,$1,0,0*
1,0,$1-$2,0,0*
21,0,$3,$4,0,0,45*
21,0,$3,$4,0,0,135*
%
*
*
G04 Annular Aperture macro.*
%AMANN*
1,1,$1,0,0*
1,0,$2,0,0*
%
*
*
G04 Odd Aperture macro.*
%AMODD*
1,1,$1,0,0*
1,0,$1-0.005,0,0*
%
*
*
G04 PC Custom Aperture Macros*
*
*
*
*
*
*
G04 PC Aperture Table*
*
%ADD024C,0.001*%
%ADD025C,0.01*%
*
*
*
*
G04 PC Circuitry*
G04 Layer Name STM32F10XRXT.pcb - circuitry*
%LPD*%
*
*
G04 PC Custom Flashes*
G04 Layer Name STM32F10XRXT.pcb - flashes*
%LPD*%
*
*
G04 PC Circuitry*
G04 Layer Name STM32F10XRXT.pcb - circuitry*
%LPD*%
*
G54D24*
G01X101000Y339000D02*
X101003D01*
X379000D02*
X379003D01*
X379000Y101000D02*
X379003D01*
X379000Y339000D02*
X379003D01*
G54D25*
X101000D02*
X379000D01*
Y101000*
X101000*
Y339000*
Y359700D02*
X221318D01*
X101000D02*
X111000Y362200D01*
Y357200*
X101000Y359700*
X379000D02*
X258682D01*
X379000D02*
X369000Y357200D01*
Y362200*
X379000Y359700*
X101000Y344000D02*
Y364700D01*
X379000Y344000D02*
Y364700D01*
X224545Y360950D02*
Y361263D01*
X224545D02*
X224773Y361888D01*
X224773D02*
X225000Y362200D01*
X225455Y362513*
X225455D02*
X226364D01*
X226364D02*
X226818Y362200D01*
X227045Y361888*
X227045D02*
X227273Y361263D01*
X227273D02*
Y360638D01*
X227273D02*
X227045Y360013D01*
X227045D02*
X226591Y359075D01*
X224318Y355950*
X227500*
X232727Y362513D02*
X230455Y355950D01*
X229545Y362513D02*
X232727D01*
X235909D02*
X235227Y362200D01*
X235000Y361575*
Y360950*
X235227Y360325*
X235682Y360013*
X235682D02*
X236591Y359700D01*
X237273Y359388*
X237273D02*
X237727Y358763D01*
X237727D02*
X237955Y358138D01*
X237955D02*
Y357200D01*
X237727Y356575*
X237500Y356263*
X237500D02*
X236818Y355950D01*
X235909*
X235227Y356263*
X235227D02*
X235000Y356575D01*
X234773Y357200*
Y358138*
X234773D02*
X235000Y358763D01*
X235000D02*
X235455Y359388D01*
X235455D02*
X236136Y359700D01*
X237045Y360013*
X237045D02*
X237500Y360325D01*
X237727Y360950*
Y361575*
X237500Y362200*
X236818Y362513*
X236818D02*
X235909D01*
X241364D02*
X240682Y362200D01*
X240227Y361263*
X240227D02*
X240000Y359700D01*
Y358763*
X240000D02*
X240227Y357200D01*
X240682Y356263*
X240682D02*
X241364Y355950D01*
X241818*
X242500Y356263*
X242500D02*
X242955Y357200D01*
X243182Y358763*
X243182D02*
Y359700D01*
X242955Y361263*
X242955D02*
X242500Y362200D01*
X241818Y362513*
X241818D02*
X241364D01*
X245227Y360325D02*
Y355950D01*
Y359075D02*
X245909Y360013D01*
X245909D02*
X246364Y360325D01*
X247045*
X247500Y360013*
X247500D02*
X247727Y359075D01*
Y355950*
Y359075D02*
X248409Y360013D01*
X248409D02*
X248864Y360325D01*
X249545*
X250000Y360013*
X250000D02*
X250227Y359075D01*
Y355950*
X252273Y362513D02*
X252500Y362200D01*
X252727Y362513*
X252727D02*
X252500Y362825D01*
X252273Y362513*
X252500Y360325D02*
Y355950D01*
X254773Y362513D02*
Y355950D01*
X403900Y101000D02*
Y213250D01*
Y101000D02*
X401400Y111000D01*
X406400*
X403900Y101000*
Y339000D02*
Y226750D01*
Y339000D02*
X406400Y329000D01*
X401400*
X403900Y339000*
X384000Y101000D02*
X408900D01*
X384000Y339000D02*
X408900D01*
X388445Y221250D02*
Y221563D01*
X388445D02*
X388673Y222188D01*
X388673D02*
X388900Y222500D01*
X389355Y222813*
X389355D02*
X390264D01*
X390264D02*
X390718Y222500D01*
X390945Y222188*
X390945D02*
X391173Y221563D01*
X391173D02*
Y220938D01*
X391173D02*
X390945Y220313D01*
X390945D02*
X390491Y219375D01*
X388218Y216250*
X391400*
X393900Y222813D02*
X396400D01*
X396400D02*
X395036Y220313D01*
X395036D02*
X395718D01*
X395718D02*
X396173Y220000D01*
X396400Y219688*
X396400D02*
X396627Y218750D01*
Y218125*
X396400Y217188*
X396400D02*
X395945Y216563D01*
X395945D02*
X395264Y216250D01*
X394582*
X393900Y216563*
X393900D02*
X393673Y216875D01*
X393445Y217500*
X399809Y222813D02*
X399127Y222500D01*
X398900Y221875*
Y221250*
X399127Y220625*
X399582Y220313*
X399582D02*
X400491Y220000D01*
X401173Y219688*
X401173D02*
X401627Y219063D01*
X401627D02*
X401855Y218438D01*
X401855D02*
Y217500D01*
X401627Y216875*
X401400Y216563*
X401400D02*
X400718Y216250D01*
X399809*
X399127Y216563*
X399127D02*
X398900Y216875D01*
X398673Y217500*
Y218438*
X398673D02*
X398900Y219063D01*
X398900D02*
X399355Y219688D01*
X399355D02*
X400036Y220000D01*
X400945Y220313*
X400945D02*
X401400Y220625D01*
X401627Y221250*
Y221875*
X401400Y222500*
X400718Y222813*
X400718D02*
X399809D01*
X405264D02*
X404582Y222500D01*
X404127Y221563*
X404127D02*
X403900Y220000D01*
Y219063*
X403900D02*
X404127Y217500D01*
X404582Y216563*
X404582D02*
X405264Y216250D01*
X405718*
X406400Y216563*
X406400D02*
X406855Y217500D01*
X407082Y219063*
X407082D02*
Y220000D01*
X406855Y221563*
X406855D02*
X406400Y222500D01*
X405718Y222813*
X405718D02*
X405264D01*
X409127Y220625D02*
Y216250D01*
Y219375D02*
X409809Y220313D01*
X409809D02*
X410264Y220625D01*
X410945*
X411400Y220313*
X411400D02*
X411627Y219375D01*
Y216250*
Y219375D02*
X412309Y220313D01*
X412309D02*
X412764Y220625D01*
X413445*
X413900Y220313*
X413900D02*
X414127Y219375D01*
Y216250*
X416173Y222813D02*
X416400Y222500D01*
X416627Y222813*
X416627D02*
X416400Y223125D01*
X416173Y222813*
X416400Y220625D02*
Y216250D01*
X418673Y222813D02*
Y216250D01*
X0Y0D02*
M02*
/Modules/ARM/STM32F10xRxT/CAM_PROFI/DRILL.DRL
0,0 → 1,214
%
T1C.025F197S55
X01635Y01966
X0201Y02
X01635Y02034
X0327Y0225
X0319Y0225
X0319Y0215
X0327Y0215
T2C.028F197S55
X0138Y0125
X0138Y01524
X015514Y0231
X017486Y0231
X0185Y0277
X016Y0277
X0253Y0266
X02605Y02185
X0253Y0206
X02605Y0184
X02148Y01755
X0273Y01755
X03097Y0182
X03097Y02425
T3C.035F197S55
X0125Y015
X0115Y015
X0125Y016
X0115Y016
X0125Y017
X0115Y017
X0125Y018
X0115Y018
X0125Y019
X0115Y019
X0125Y02
X0115Y02
X0125Y021
X0115Y021
X0125Y022
X0115Y022
X0125Y023
X0115Y023
X0125Y024
X0115Y024
X0125Y025
X0115Y025
X0125Y026
X0115Y026
X0125Y027
X0115Y027
X0125Y028
X0115Y028
X0125Y029
X0115Y029
X0125Y03
X0115Y03
X015Y0325
X016Y0325
X014Y0325
X015Y0315
X016Y0315
X014Y0315
X01525Y015
X01625Y015
X01525Y014
X01625Y014
X01525Y013
X01625Y013
X01575Y011994
X01575Y011006
X0187Y011006
X0187Y011994
X01825Y013
X01725Y014
X01825Y014
X01825Y015
X01725Y015
X01865Y01885
X018Y0315
X017Y0315
X017Y0325
X018Y0325
X021Y0325
X019Y0325
X02Y0325
X021Y0315
X019Y0315
X02Y0315
X01965Y01885
X01925Y015
X02025Y015
X02125Y015
X01925Y014
X02125Y014
X02025Y014
X01925Y013
X02025Y0125
X02025Y0115
X02275Y0115
X02375Y0115
X02275Y0125
X02375Y0125
X02325Y014
X02225Y014
X02225Y015
X02325Y015
X022Y0315
X023Y0315
X022Y0325
X023Y0325
X026Y0325
X024Y0325
X025Y0325
X024Y0315
X026Y0315
X025Y0315
X02425Y015
X02525Y015
X02625Y015
X02425Y014
X02525Y014
X02625Y014
X02475Y0125
X02575Y0125
X02575Y0115
X02475Y0115
X028097Y011034
X02675Y0115
X02675Y0125
X028097Y012734
X02725Y014
X02825Y014
X02725Y015
X02825Y015
X028Y0315
X027Y0315
X028Y0325
X027Y0325
X029Y0325
X03Y0325
X031Y0325
X029Y0315
X031Y0315
X03Y0315
X029Y02825
X03Y02825
X029Y02725
X03Y02725
X029Y02625
X03Y02625
X029Y02525
X03Y02525
X029Y02425
X03Y02425
X029Y02325
X03Y02325
X03Y02225
X029Y02225
X029Y02125
X03Y02125
X029Y02025
X03Y02025
X029Y01925
X03Y01925
X03Y01825
X029Y01825
X030617Y012734
X030617Y011034
X032Y0115
X033Y0115
X032Y0125
X033Y0125
X0318Y018
X0318Y019
X03235Y02599
X03235Y02851
X033Y0296
X032Y0315
X03355Y031506
X03355Y032494
X032Y0325
X034Y0296
X0357Y0294
X03405Y02851
X0357Y0284
X0357Y0274
X03405Y02599
X0356Y0252
X0355Y0185
X0355Y017
X0355Y016
X0355Y015
X034Y0125
X034Y0115
X0365Y015
X0365Y016
X0365Y017
X0365Y0185
X0366Y0252
X0367Y0269
X0367Y0279
X0367Y0289
T4C.04F139S55
X03599Y02635
T5C.09F066S55
X0338Y0196
X0338Y0244
T6C.12598F035S794
X012Y012
X012Y032
X036Y032
X036Y012
M30
/Modules/ARM/STM32F10xRxT/CAM_AMA/DRIL.pdf
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/CAM_AMA/O1.pdf
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/CAM_AMA/O2.pdf
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/CAM_AMA/T1.pdf
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Modules/ARM/STM32F10xRxT/CAM_AMA/V2.pdf
0,0 → 1,666
+%âãÏÓ
+0000000016 00000 n
+0000000904 00000 n
+0000001199 00000 n
+0000001403 00000 n
+0000001537 00000 n
+0000001758 00000 n
+0000002194 00000 n
+0000002233 00000 n
+0000002255 00000 n
+0000007540 00000 n
+0000007562 00000 n
+0000012937 00000 n
+0000012959 00000 n
+0000018484 00000 n
+0000018506 00000 n
+0000023658 00000 n
+0000023680 00000 n
+0000029616 00000 n
+0000029638 00000 n
+0000035226 00000 n
+0000035248 00000 n
+0000040453 00000 n
+0000040475 00000 n
+0000045471 00000 n
+0000063314 00000 n
+0000065991 00000 n
+0000000993 00000 n
+0000001179 00000 n
+stream
+stream
+ói­öÚ÷ØÌÿ {¡õˆ÷ù4þvÿR|m?ÒVrÝcA¾°žöy˜
+/t؎Wóͬ’u–“æ–º§´½*€¾XG™´_33ãKë|zÌ”yÎî(ëù0 xÐMÏ
+òëù5
+©§UÃY„YQ$‹€ÔãE⫲¡£ª«¾ûÝÞpG ž´Á«Fø6ë­²·½Ï®º²ç(ʎ·TáU1=žy‡OvÃW]Ò&O‡FAÊ¢ ~
+#[:”¶ ¯,TÜ-¤-ª1]Næ£ÃrùPMùÀ+(ù &!ùPÅù mùxŒ,ªcÀ‰VDZÕÎC—=gkužª,‡§?<úaÜ$[¹ØÇ­š¸˜]¸xb(·*æ&mÜS{l‘ûƒ”‹Ö4jŠP­Îmå&‡ÌZ©M8Õ#ðÀ1n•ˆ=ßQ¨çï\”ÚQ³Vjøò§ß4D¬BFk*6ÇgÆìU|„îàI¼j„·²ñËÀ¡«&öd•D·«oŠáI<~Ü8xÕȐè…Î|´ªÑÛ-02ÎÙ8]ôùúKþ¢³6tՈžTé3|—8zՕ]õÞçXðr
+½*¦/ru™¾H1gzՈ‘}içUžb4kZ<Óé¢Ç"-…@Ú Pä$`*ôS—Õ”€Š/NÀl]Æ/‚ñQ}•ÒÍôª‘¡ºBÎ+|‘FkñíҔÁ7i( ß\CºyðMÎÂÏãÙEVv´­ïxS]³w¹Ç ߤn÷´jdh¾ŠÓšßdwÙÇp¾õ]ºÃwy¤0¼j„ïr¾ÃsÍÑ«&ü!ø‡ôäWÅüC*6ó<4Ư1Æîo7­j è²ÃluÝє%`ì¾Ë‘4|‘HÈA@úP½j¢ÇÏ.¡?àÁ¯ôª˜ž´Ñû²ù"‘àXŠ:­iì‡l0Z‡k‘*”|~;féY+»i€ŸªÚ¥ŸªûKoáS´"+»
+B'©äS&éMBŠŠÆë)8GgÖìÜTz”FÂèQž%AÖíÖë¦:Œ<áóÔÈUy’æPql³ngŠÙ“Ôl†Oxb ^5R$éØÉ¢0þÈ»‹ÆèÛ¤)ÃÏÒI?ˇ
+½¹ï]ÇÆI;Ƌð=¬ð½@Õ¼yÍqÃäSUYÓº­8ÓX¼†Îi´´¦ÑM½ÐNíh§2ZF+F…q´4­?äKRYEòÕìCyè|)+>µUóÁ¤t¢”Ìa9ÑnZPpÅ°žh±
+Å¥Ž¢¶æ¼T1.µ*Ãe{X[•Íߪ —"
+¾U‰£ªó#ÅhƒìӪƸéÀHôFPܨzUX†Rñ¬ø$1T6‡õI¢
+/Ö'‰Y³sSuz‡*'KÁTÉïÇ ÇO@¡ä÷¡Ú†÷òu‰ÊÉæ°<:9\™4øG§‚J8Á=:ÅQÄù{Ã8Y+¨jþN²:Ë}%¥¯¶Ñ‚¸©bVú¼0V¶+¬j÷y!<]êóòyaÖâ<U?.·ÉÞ1¯j ¼¹ZKvŠK}j:¯cÙZúš4ÜæzâÝפ5®ÒËפÃâN-'IÓÙ?¦UqWoc•
+K¸o¡˜ªóRÅ´u_Î1›V5Æ\ùr#N•"ͰŗicAGU›%7 ›eóV5†ñÀ‰2ÕSÍûa‰(¾_™bÚ²§å(× QóÄL”¥Š3/‡¤Ö´x¦óQŽ’捲}Ì«7 $–`,`¶î}\+£¡Ý·±+lòÝC&fœ$uša]ÝTiƤA:%“ªÆ¨ƒ/¹a÷é&’iv祊Y£kt”Í´\ZÕtp[öe_ÃR®U)mð}'ø®¬ç„cºkS×s¦lÍÙ¯Ã1‚ôw•Í‚¨•I BVD G¬Îí×Ý£ôÙ´"ªÆx»+²Sn/à›G¶á۔)æÒú™s¸¾°h yȕF–.řI»/φƒžªŒ·¹‡é³iåU7«²ówu×tJû$˜ …ä³ü5:ú£ vtMZsÐè8lUT´lU\Š×
+uŠyJJÈczVñ›qÓ)A<Úúٍ4[I妞¸½:§ª$±ÆxؑB¥9á÷
+Dÿ族נpWµ -…~{ÿ¯#U«>P˜Ì6î3
+tù¶Îàà´ÿ î‘þj¦¿¢Œáé¯â „++W·èÂô'LB%Ò_Á‰ÂqƒP†XVïPGPpÖ>" è䙳NÑ7^DŽ~¯b`úÈ~f7PÁYg.™bñ¤°’o|›@¾ùÎm~VÍ/_øUïê†&’¯\Ò®Gó*«_¯>PÕMyS6zf7ÐDîÕgBé­Z°’§rgÔ*ƒŽÝ婚èÀ¾G']1ìdí øÆàwv"Úí<ͦ¡81pÍag®ªMþ^I°¾k›Õÿ±Üñð–n¨/Õ?¸„Sñ€j:v ô7Vûð k¾dÝn ¾TûðqPGúëfo«örϕþq®ôc¥Oò¤Oè'RG³›¡È ÒªÐ/Œ¾à¤Ï0é3Jú€äTÀähÞª¹¡o)ïì-ÇÝM‡g¦¼“ÓK¤ èXÓÓô$qݤ¦|œo)ïjʇ÷ ƒ˜Ø d'&B‘]u›‘òp¨69gíM-}4|B“sjuÉë7 ÛÞڧܨ5¹pšœ{iM.vbÐDêÕï8›\Æӛ\œëãÍÉû8s?Ÿ0ޜ_ÁðA“ø(A^'”µñNØxs7m¼ÁÁOì*Ù»êon5Çœ[‘»­5éeuæ±åÈ-ǀïNÜ·œÄ= _?¶œpȶwÙ¶œà#8¨Š]@×Rø²å@K~n9~p캊ØmÍÑÄ'ìºFÐVËDºx&Ž4°}ՍڮNè®k^ú®ë;=±
+Hc)öÃûР؏ìÌCqÅb1°üoã†î¥ØO¿íîgPë[±·›ýIúŠ“~ba¡Ð ‚L Ô1ï ׯÔ;2ï%ûvéëÁÜl>íª| 1µaMÜPǔWüƒxf ¨ßa_ç+†áâIa¸t҄ǁ•Î¥Sˈ^˜„NŒÂôyPŒœvŠ 4Î`Ú©8“@qð›ÞÓé¡kÎ;õÖ­^:b‘üäIä§Nðó€úWü资``ýnQÿάE@~èkÂÝ1ü†wvCë_\‚¨Qÿ
+Vòæ pï2mÂK‡Ê ËÔ2n}ɁÎ*0ï¾°½É’8àݸu'o–m†Á«ãûÖOÜsډ«n³Ë|%Òµñàkgá [¸áþ©ìÅÿõ ^)vғˆ}ÕqK8߅G—áþ,e‹…»p£úƒ°‘Ö*¼t{–.ªéÕ^âRšLŽwé¼å¾7Rӭ呭én¤•ÖJ›zŠ1ÕøNJ)BLZ©ÒîߤånÜÒ6ÒzM‘žÒuùÝøGþ²
+stream
+H‰ŒW9’$9Ôû%¯Y‡oò󄶩Re¾¿¸f1ÒVé.¤;N‚ â×ß¿Jî×Ì_¥ëÎ_õêóë7ýûÏšÖÕíõÊÏèƒî¨W©_µ—£nWzFs¹Výj÷üˆ¦“ß<ïk<êzÔ՘Ç}Õç˜Ïhn Ñ'¿Š~ö;° ~h®‰ÐuýÖI–Ïh™óC­ =×YüÎrFÙï-©ò«èG¿£aã>ù=£å^W{ö«èG¿}žOýžÑrWÔ}º)‚žo™úm(û}@gƌ
+Tÿ]®¡‚ãîžY<Gÿ‚Á@6KV4]y>¢ ztÓ¼êAuR”G°Þ Ù¿°%;üÁü¦¸øhVyB Y`¯ÐI?±9®Ò@¬JÊ͆éÀ–JhVôV>€öRÈqP
+õº!Ÿ;ÊØŠ¯ÏÍ»Vù©«(lx2Îj¹gn+õɺ&Z.+a‘ÑÎ7ý-ª ZØÿÏ(ìKãdyZµÅÚ¯v¨ÆÄ£ÅÕ£þ4¬à¡ÄP½Zõ=Í¤Âæ…ÿÑïП·Æzó{@¡° oEA§?QvzFqÞѹV¬þ¦ð˜¨èæûéI÷]ôÍ¥@ÒÏ|+øÂyÂ`©ðÅpÈŽ.Ìš{F»°Ãû€wê7]¯ˆÁr]Þ¡Ò GP/ñ¥+9îö¿_ðµ9iNº{¯(C}ƒ¼hÆÀ\€Ÿ_o|ÆÁáHÿ¦«Í"Ü°×Îþ¦šÐ¡pd#œéŽ™ñÎx›!¶Ïøè!·¿áMõì¯l3·°›^‘[¸Ç¿ÞÈ^ƒ#݋j¦;É
+Ö»´]9n>‘͝<ëŽÝÝlG¶ÝqZŒz¸f\z«K§Fv€þüÚéÞ
+æ;²¶š¶£K>?µhK?np¢mÂà”|ªþ?pÒ±ÊpÅ‹,åí¤âÍ@Êe;í4ôúóy\âxH]?\}ƒÓ–X×W¦7|,_otï%Àk´Ntë%G#Û{ ä6½—"Ü{téß6¨Rxƒkîˆtèk"do$/Z$Ûr€xì3/Ý|.ñkgÛS±ÁہðqߑîÇmçéN±W츄m% ìšH¤Ó[1;±vKt“n.ÉT‘ëÄ‹ë/ü\ëÀs-“¦®H€›iè)š®V]“%¶‹\‘^GÕl{\í²„\öª¨D(š1Þ?¿þþϯピ‡tʙdÞUîøT*|h@ Њ°FC°iŠŽk§1-Ìl×bL"‘Eø
+ü2¥…ÿ™E’)îÕPHq‹“S»¤}s_¢˜Y¤Ó9¡×ª]E^36¶Hè5‘iEoj’¥±=¤±HdÕÁŽªf‘%¤²?E%0ьan‰ôÂèú櫜¯l©ôDëž8fÉSQ”"=þ›lZ2^oÓ¢d6›4®zT‚Í*%“ߙ‘ø£Œ=ˆ2Þ“oÔ̋»·/ô‘÷6K€Ë¯(ß
++4XUK¤Æ½`2~}˜=ßftr‡©C‡~X¡Yƒá ¨˜^‘\P&‘S‘> h&áY¤‹gD8]߁
+7­h‰T$•ñ+PÕèÑ6“]Q‚r(¬¢Üò€E½‡<@!Xé«çßŠæ”ËC ŽTµDê²>ª<5 Øîoς%ÏBQd~mJÿ£¼\’#Éq º×)t‚²àŸqŽ9‚¶™Û›Ûáî -•uõFÊg :~@ç2¨1˜œƒXá$ìKEzYí÷æM—Ž¦uŠ¯¼{9yÎÖ¤^Š“Š; ¦FE2?ŸAÆ4ΎâgK‰µ;(¬ƒA}K) 6)Põrò=åŒÍáý´m¨¹÷”ÆScö¢ ¸j@Â%¯µvš^aYm˜µÕ·=<.è iëVO®V=E&ˁÓÜÒîx›Þ²7íñT­
+žŒïoå>RGvfTޑ»¬§ãƒz+ãñž1Z½Á
+6±mÇÅÇÆ9û[©V¸ž„g•=Yk`Û
+ÓۆÙUï%€¤}HlŸ»KÇ»Àõº²öÁÔª@Úç3ÆGë-TrH£áµyÒh×Îa½'Ì^kPÒÉB­ Õzé—^¯ŽÙ,¸÷i«ŠÖ­H:ix«aÏG˜Ì¤7³2'“ŵ‡Lœ/øR󠊵ÃDL:ªçn½p§ ›~z.Î IÝ®Dw2Ò[‹zÆHÉìÝ¥OöîrÎî³å©ÓÙw—ÂR#ön"ß_Îm'£-䒾Á|<µ*–öù ™\f’ÿû¹¬ôM+-±7Øjžñ„ËßlO†E0¯ÉÖ ßX
+×û34‡­V ŒoÁ©“ºÐ †ß½F™Ä‰r™äo«»Cçb`£±g0Pá҈»ö><ìx¾"ëI4¹&8wp³a@¶6¿aʇEÏ÷[#Ë8æµî©¥vÌL ?¹!+¸efxó,‰Þ8K'ÿqíÜ.*àÊñ1“»VnTgßB‰ÂçÏC…§Ûº¢Ân©Â²ÙlE^à1ôàiô2Ü<êçoÉ?…jgygpõA‰ù1è̓ø*¼t’‡_xyô–m‚pÙE-Âõ[%]gSRT.L§È„ßþt'ÀaÒVÉd×±wFª¬²ò Õ§7ÓHÜ¿“2n~$ÝÌ÷è‘rv)ñŒ­E•ƒ²Õ'bQçÕ¸c꼧ü¹³9%Šºš‹uÊMù¶sJ-»HߒRóÉßþt•?•r¡¿S¾l§}NȄi
+Á+äÅÆ©sv±çìáp,ÖZÚf[Ô¾ a‚jÎôP:¡†Ó,›uðmAÝÕÉ.Ñ 7\^‡× Ò2&›‘š+ÎÄ=¼úž.¥h7ìžÐ.ŸÑâÂÆ5@ÓoڑêM´#¥ _ÏVØ· »¾É —xH1S‰çÝó˜lc5¶š™¾Pèhñÿ@KœØû|iIýçÃ=s²òNßZ«¶µù
+ùÓ`ö]ž¼tSˆ‚+K¨yálèØó¾/Ž(‹(¿´µ—LÝϞWdóZ³Ñ‡Ž_ÂÃdì)»Û}ÙÜ2+¯Æôo_ÀYw×j+÷MƆh'ÊU–À¹:%iu؈]i7ÛÅëáâ6gŸÎØÎç3P~@—¸H‡`Uéy…¶GÅ-\Zâ5Stt¥¢Kªë0]RÇIíF…ºcqàþDªkwãw„1Ͼïu˜ýÞà˛)sÇ®·ŸŸ¨¡‘ÕÈó3²ŸHœŸ‘=\ë»(e´Œä3ˆ›âŸ•n¯€~¨ðÝ 2¡â¹¨5? Ë2*Ï°ÏÂâfa}½k…Aë^T¢É<Ê<º\Êë`µCWÆuç™ê tÛzGNYJâeÛÜ´¶WfrÁ½2Uê܄,F ™ªå7Öf‘úN(éô³ÒaJÝSÊeªú:$ý6‚ûh7åa¦/TŽ:=–ºãCe9Á{­ì<
+t–~ÐuâFÿ&”ÝϾ¢.®ÿ4ÏÏxÌAŸné3H^°'KºÔÎ;.#žõ„ˍlD°÷à†™¥C¼Õf¢OF™ äŸöìü>! «Ý¯ÐÀŽÅ¡+åíìý7šNԏ‘žôø4Ûì=†½çsØû1ÐdP¹©\ÿA
+›°ã'6Êh=?÷lÆêd[ì³n÷^Åå
+stream
+H‰”—K²£+„çµ
+Tú_)Uwr€{sQB“ô-º`љǚEoΜPÎ!ûI)á’uì°;¨:pÈ5÷”@ÂÀÿk®ßbFç–XDêV5”ÅË8ô½Á¸Ï`j%†í*]¨¼¨UgԚŒ¢SЌijô¤¾ÈD½
+%~»Žæ÷êWϱ•ãá3n˜”ê$‹ ùB9±†H\š±¨$‰&Ìs²®ÒD6yð4%cžý7«ƒ6ARœ¶VÎHŽ³Ñá`¶•Ú˜O󦣓nôÿ¡cÍãñ41 Î(¡mÝpWråü… ̤³› Î Cµ3ŠŠC;JccòÂÐ
+™Å:§2')Wê,]ÿBÁãª3Ìñgáè‘ô´(£붮#$%…Ž%qîåà‚ýØZX
+Rød¢üÎ´Ë6»3åá÷p3åæÎV“jÚL©³¨T²ÎµD2©Œ'‚4Ó"±ŠI%+j:Wž¤3ë׉UKžº*•Ìå·¹Ÿx…ÎwNù­N+!–’AìÌÈêd±äò¼­íqDšG Û}n†­éºÎWl^{¬ŠK(û@zm
+Ö¬AV).„¬£;[³\Ê4‹mlövPOTä}<,€O¼æLϞéôg•‰û„f{å(èÃ
+‹Ú•ÀâQÍý' ÿù³§ÙòY„ø-–Ô÷ûЛvñƒÅŸ»‡¬X+ fÙæÜ%¢Y¶9µ$+Î^X1œªö8+\—2µ¦Vfl~´±Cß<G·kõFø:ÕfE‘ð#í@ìu-H-3U:þݽÒþµL·¢V¦3ˆ½ëŒÔbÕ.È!§jß8Ĥ4ƒo֐¨ËÑÎý,ŽÄHRÄOKJ-"ún` n÷{–®ÃßX{,^›l%„7F³â¾‘kÚÆè½á|]N(¶{…çRwלD
+?.½îo2°2'ŸAÌܛ¤ü¬”Xq/Ô ¹±½Èx½@x]0Š€|ù{%–ø¨ýñ’dïÐ¥Õh1)=›íô}ëH%räÐ9Í¢ʉ]/ÖLÓ"à¾À˜™o¶Kåº=a¶ Z*¶ÇÊÄiJ[R¹Ø`¥ \â%ÿ“TÓë¢ÜùfÙQKI7îÒô‡UVéê^G­gL­"ÎÍÞ=‚{ ´y¥À&=Qª6½–ÆJ…­«_®PërÕΈ^oð>°Æ|ÔÓ®£³¨s‘|kéM)hEí§ÜÙKT^dµdŸì ¼io€Ñ/´(5M
+ŽpÆz®3¾ÑŠÎHÜo[SÒí8ËMÜïãŒä;h­9Lqcá¢ghʉÎ+nà@Tqgü[ªò^ù6—èŒÍí:cÓ
+ÂÈA×ßiglÌ×›Òu†RtÆ(~ Ѻé,“Ã
+gν>r„ö‘#´O\@¦ˆÐ©’cO._Ɍ‚*—>®9B_µÀ
+5º'—R~wÁÙfœx¶™)RâÛ|ƒægJ3R"^†ß¶6eÝ¢U³þ¦ÄÁI àd„í&™ËÙg¡[]hâÙ>B±»Mõìü úƒÒØYiDJÄÛm&ÊRÅ^¥H ¦)ÑF—+LÖm°u{YÊS›'Q„ˆV“!›VÙÊD®å¬ƒæï…²V;ÄR¤ËôT/ÈÌÚqõâÎ<Œ¥¸3=ޚ'LÛ¦Ø|§¾Ó2©íR:j•Ò1êËJ·©Hé7ý}:uÞpŠ£Nòꐝï£øV^óð—JUó” Ðù¼JõÇvJñc ¬38\õtQIÂõx^ŽÖúE›ü°1ÊVÙ䇍Y6 ³[ÞzWšŸ)9˱—á·ۋrl£U³þeÏoòc{FÐÝS`4bë¾Ô¹($Ý}.ÝT1ö¥%\`žáÂÒK}¦äÜ® ð»f£]ºûŽ K÷^¸°tƒ}'Føýv]`˜¡+û6ú,rŸ‚±ëþŠDÃUÕÛÙ¥úwûLɹ„ åüš|Ø^ÆÌçìDñ`ê52<˜[Vè;1zÀï—ëÁ||÷¹îÒcZõôÏ&¾ÿ:ç…ÙN©&Å+Úq#L:Á ¯‘©Ø f~ևa³ØpÍ*ÇÕrÁè%{:<fe•‘ÅžÏğ¶ÞPßÜ6“ëèõÀÒÕ<ðàeè- Y]mª¡ä±nüõ—g¾ÏÜËÁ´ :Tsa3“1s1aŽbÂÅÄ(
+ËÉ¿)9G9€ß5ë@9¡Šå„W6•“þärҟ\Nøý(' QND)ú씋s*'°œtÂrÒ–“SrŽrÒï^è=•F('½c9é=—“Þr9Fz‡rÂ@¨»¢ÏÆgGÎü m)ªM?×/íÏtœ÷u@~/J:3<
+stream
+H‰Œ—¹•ä¸Eõ²¢,à!vÀŽ6aÔlÿÕ+âEÎFéS·o$ÁØøSçûìúÛæ|Þý[gy&Áxv'¨O«B½þþóSÇzfÿmc?}þþ[xÔߏðr-0…ZGª²]õå­ªouž³…m«ý¬Ë¼šïq´gô þ¬N{µ·øZÙK¸:ˆëSªþ˜n ¨LÙª?…oëå ý~·°îԞâÈkyÃQžªÔ:î´äìb§%?Sþ|y¦Þ‘†@ß²Õy-íû™[¶"\º“#YümErS啓êë)•wb®ÂU¶"VäU´xN¡#ÐëÚ©TÙ©ð™+2T‘ñçäWøÏ0GGŸ,í¹§ÅL|qaF·ÁV™î¶rMÅQÚ³m#߆±óØžLE÷ÿüôVè> ÿ
+[ϑ*™`ș*¿ ÊTù•C¯#Ê¡wŽå«Wá‰5´2êTª”C×ÝÊ¡[®üʨO¶%«ç(Q=r”(‡Þ¹X)‡>9º•Q§ò®|5»©¼+‡.yðQF½²…Ág×TÜQ¦ÁG9ôÈ¡¯z¦Ú/ˆ2Õ~åÐ+OEÊ¡wÎ eÔëKcíß'×~å«Ï›rC0F€’>‚Œ1JöW”`y­+×eS×PÆÌJåU9*ÿÈ·¦ŒãuŸçƒŸ_ëi8÷+c×Hƒ2|Š¤âlE®çÜPŽÕ •"vŒOÁèҍ"òÆIwŒÅ+jMwŒ)QKºc¬}#ĺc¬Ý‘°Ý1^Tû2Œ÷Ôn|u£ˆ€iÑ#ºÞ8çîˆsÚ«ˆQ½À*¸ª@ 8€CÂiøÆ:½OãȲŸE¬•qX¾‘µr¬î‘
+²º§T ´»Ó™\»¤élÍøÒd­ŒiXñ֔ã%ô¨kãr¼Ý£ß¸¯·G*Ë9+’a\ŽDœ·XLjÉr3e8ÆÆo;²q$áˆq™´q$a‹a‚W+Ǖw|"ðje\}“evgÌÃÚïµ1f⽵则x;ërŒwU#Ÿ–#fâ
+)„™Xà A†¡¿#®f„üšÎ´5‡µ2æZA­«OÄ´¬>)¦)A*jåHÿCke ;!¸Î]ÆàцJºvg<eýb!=º3išÒwÇÝ¥ÇîäWÚ~q'ŽíÉ÷´ÿâŽûÛ³Uk|4{Ǹ÷iӎÞÆ¡—ݛ땟|iˆ„…ÛRÝíN]s¿/Ó'ßرh Ñ2_{¡¦•QŸžušʃw&ˆ6qkåÐÍâÔuKqš.+×üÊً7Èè&´aÐû=Ž‚Í
+§l>dÛÿi>¼æïO{Å*†,|jeÎýj}lô¼Ò¸ÞôYB(åµÑːüMßKýhuntãrè­Õ©½2º£®féqC.}æV^ù R=õ}´R8
+ù}+´¬­y™É¯Õ·¾w‘6Ú$|ðh°¦:}ëÁglÝBX¯ËÏtðgº›½4¼W§&uk[«úŠÀ=ÞëÒÓ§7CEܛ[E„9Ôîż£ØßC×P삛+½¹æê^·—“@õpè¯Õ¾éæFTmTuý5­ŸDíÕ±ž“¯¼ÍSñ¼½Sÿ[M¹žO¼4-]“_;ûþ
+‡¹–¤qsý¯V¼Ö„«GCcýÒ»WýtÊ»½fhíüÓ¢°ÇxýÖÃ=ÆëùÁê'ð|uÊ>BèQ¨¯ÖåÝ^Œlª;n®Pg§ßСôÜÌ¡kÕÍå}¬X|^Bëûf= ãFž^0ªÊå%ð|5–ßÑH?u¹yÌ£\\Žþp}u^¼œîÈôºøØK*ÛãJµpçú.nqОÃC¾.÷ËKâ®ïrŸ[èîá/ÑS/žyçžÿ_ìùÿâóƒOƈÿ/Eüè ø¥ž€ßïå6ñï)£¾Ü3jÜÞ#ò‹="_¼;ãvî£GP=–ûƍzã1x$œ¿gÌ/ö¹#°/ö±ãâÕ¯¼ïþ!Ú?¹bÖ|±ÏšÊ̞ó‡Ïép(ŸЂO4孚>›¹0{»6ÐöVx®}>ZÆÛ[•}Y•‡éqªêxzëL–wñތ÷N¸„ß;.Ÿ€kX‡ãé)ðfšoÝÂP6ê?kðþÒÃ3ýŠîž‰t£zmæ+_?êÑœÛ4y®éñ&øŒxóòÅxeº®;^цo¶hâó‡[Føw¯8žp⊃„“8ytJÖ™ÉD »4ñýÃ7q7ýµ6â9Ÿl(r½µ™æ‚ËáCšWîPԇ
+.ÙHu6!×ß?í˜ÓŽ§“ ¹&~~ø!>(̺N|f‚$z&c³¡—/²!×ÚØß+65׸C1¹7ãíw½Óó;hûNTe\žlDfr}q¡öáúâJYÖuÆم\ë“Ǎlȵ<™äºú·ÉÐbÞ4ÇíЂ¥¿ë$—[E7iØjÉÐÂ¥(>8ÔM¬»¼Z°DräC,pÍa.›ÿË[¶½ݾµûWÓHô˜A*”H¥Ò òRóÇ6
+stream
+|í›X–.;ÿËÛólõÏãŸ_Ëz(­ð›I˜‚ÅhU‡¦NC‚~2Gîïì™>ODaJž»*pÚE¶cÙóö¢üH‰oÍm÷1§dâ.£Dºåÿ¡u)¿¸Õ|¾?0ÌwFkµÙ6iìºr—éªö Ïy1VÓÇ{ßX587¯¸³'Ü_UÚû«žSҝLux³¢íÿâ‚j4æŒÌ†¶F1ۈ|³ªbG\ñQFÔÒQ†4z*k¼Æ7êt >1'ËU<œÝ£®ìl£(n\ù·ž%îe£@X¨ÁP0´£Xé\$0RU+ÁP8¯fŠE+é›hbd‹“Äì÷ïûÌü‚ï’!Ø9ÙSãԝƒ¦—§§öiz¼Ñ*x>Š]gëŽ4zÛ]œaü5¬ù
+ý\èzÃ~ÚUýî|©Êêoò½) ³É$¬—¸õfõ¥û-
+÷ŽKí£›ŠÒ{. O²Ü·žÇO;;g³Oâ©y{’Z_ÉûA{z(‚;6—ØúñYÝ$ø'È>ªW^G´æ’îêŒFpk ê°E*iZ¿Tƒ
+=;h(ê÷þ¨î³™¿N†RR¦U1}2þœót÷îq»#.Cw«Íuõ¸jf¸ú¥K 6½Â»»_|õï&Q‹H8êåm q¼¶Ð²\칏«0軍Q¢‚ÑtÅà¿M>Õ}¡#N†Ó©þDyS+wª}Œ]ª}¢±«CÇu»ÑëÙ&‡Ÿê،ÞÔJMõÛÿÛ<<$~½•Uè]©[ ›þøü+Äâu3VÛC³á…ÁaÅx[lÏO’XnØnq¸íä˵6¼Èxpg%~ۚý*I¶آáñäà©·¸ì~õÏspÕ(ޑ“k*æ÷7
+µ”Lþ™vämŽOšupdK’²P'KL)¯)–“ 8ò¾8%÷|NÄÒb¸߃1ØŠúqW½'£“•å%·v£È 7zljǾ°7¢Á ±fz|ßDµµíµ'uúÝÊQXª8Ý;•coá2ߌ܃®{{{ët¶é}‹ÿÀ5€¡—ò°…þ°z°,kEŸ¼C»LÒ ã‡25Xð ·5žuà-¡/ûú ¯ñÊfЪôZøîêW þz‚¼¡{&^ÁVw4Õ㼡"«µ ªÀ¸¸g5EZ
+O†bÝĚÀbRU>̘Ð øv1ψÑd“œÄöéŽeù¤i GúIC»%›‘ö¤d.ICnçl–†ó¬¾ýœ¯³A›é-z
+¢x¬Ë l«Y{ºw¬¢´)Dã5|"ÅT7×(“V
+Žw¦ñÕÚœZcPܐ
+Ž›¦‚ãµ3^xù ё λf‚ñLp>4._¯H'2ÁñÔL0¾0¹;×É;ðùâ3ñLèÔÕ¸©B'.™øIÞÉÇç½ã=*bhd‚Å~YH6ð¾0yK68/ÈçÙà¼j6Ð6tҒlÙ2Ò«|ëP`|kØ?Èeù|)rùbä²rþ'>xÑ*l¼hè]¾væ+z¿d
+ü 4œ#¨¿w¤“¦ƒòªé0Ð<Nû¤×7¤ÑREîLñîÉõ¶®#‰á®exHlgX2(š Cfj’kgŒ\ Áj°ëÓrAùÔ\ Á—S*8OâKë0q^8I¯Œ×=÷v¶å‚â­¹`üX.(?š —ϝùLAñèDb÷úh¾üôÌO
+4´×ÿ²9ã)!à8™³÷_ë_§_ã_§¼ëÑ&ûËÇÂܓí=¬e¿—9:''­l‡ íÃ~Ÿ“/ø÷²¿]çòhºRA{5DÚv(ÄøjsY'»i,“|eiJ%{”2lzLàÒÇs4WJ†Õjs4VH)„=ôZòkÇgIúÍøR– yÈê½Yu¼¶íTÑö~Ý>göË­·IǛ¢A¯ãÆò‚4·tálÎmtH=2­/¥[òÁњ±T1•lø£_–ìyÿ™bߧî­ÉžÃÎÀbhg:tó£¥”ƒh}ÏÍq2G˜s‡›ãSC‘D™Ð"vk¤°Èöézè-P-nNƒ1öªyc!3-ò*•h}Ì¿*™cn98Âãš­HxYÙ:·\û/úzäɞOõAW¨z¥É>œºñdä;äîÑ·49Ø0ڐ¹[2lkúˆ©
+_o}hjó9|êkÚØýýÞó7uIÞ¥?ƒrD6ÓfÊÞ8µ•Ñ†˜ù‚<-õénˆDm?/vw\®ÅYé³Õ!ç%D) ½³2ûòõgö€)æ…Ì\!:«ømžkEPà&„ˆWp,VÈÖ@›ý°¼2¼2ŠýL´ã#
+stream
+H‰„W9r%;ôu
+ÙcTwòÿ1Ö«û»ƒDrJêù–„—Y býŠ#_©~ç¯ôýùŠm\¹çÔ¯;~?_±ß×½eàùjù;‡~¥ \äÚUÎ
+3ÿAïî舗 ➏µ´¹|ñ|ßþGwµ$I®ÛÀ}Ÿb֎ð„DR”taÂoUµy›w}#‘¨Ê›îFg’"A|Ôd³XØÞm,ÿCÃ>êÙU¥„Ù×$Žó _Da´–¼?v“viaMxæ³ÞnEƒJÌΤ!wýöéõv¥žçúþm}æ¿÷‰ûA
+ ÇksÜlÚ×`sp(ü÷ƒÿšÿÃê!²FÞÏlà]ë˘ìW•¿ðÞÝ™ÏzÒYçH8ù —óôË
+Îâ#~.„£¤Ôh &ðPqx¦'¸Ù× Ñuq̺ ßaGîI®u:3¡dº]¦Y[=&S
+«9N:Vwíœ Îô—Ö֝ïT8әxRÑ.l\|ó6ªE¥° ̬,t|{2
+­Œ²|Z–ÙÀµPM_d>ûAoÏüô}ЕÏz>ô’…ޞ˅Ýå²Ð£}g5¯tª§–áL<õ0áÜLO0±Ì]…N¦¼Š§*·°ÌÅ£é]|eNIôŸÚšÞ:|z䜞`C…ï‚WJÔ±33¼y“âӇ•±³žù‚wnÎÌz?ø ?.[_øÀ'üЏaÓTácTl旉m³ã| ÛQóú‚cMl ]¿43Ö¨¢1³â¢ îK½„ú§.dà›z!ð‡W/ÖêÛpÚºvìM%„׷ʏk\è€/FÇQ®ö„EpéQé8=/m»g:"!žé€;äãº{¡ ~é@3b$†!Ïçøºp•#•ÿúò´M–ØÍM» ÊÁîð¢ޏÆËW>¶g@úç+ÿóx•ÏÎ õ*¡ÀL5õI»àÍgϸe¶»Ïmªã¥–Ÿx„V;ÔýãûW5kx$d᫨i7Ì°¬@Ê6z$v ?Nhø¸=å3ÿ¥ó,’aÜ®Šò
+êö± \ÅdÂiGqÙjJ志mÅÑm÷oå¿ß{?ŠÙzŸ¥‘ëûüçG1TŠì‘ù`œÓX
+PØ·¦òùû¾2œé¬Rª¶¨öæø„Þ±LÕÂ>t²\xæù~á'2–1IÀ<U=dpÔʼnŒ$¾uð
+éÊÒÅÍθ~<“ršÚõ5±ù©éHûcq&¿ôK›Íùíˆ{ÄÕÿ¾~ñùñ1W· {è»VG¾t6‹«àÇSÞüß»#!ZV’…ÿz(Ë÷ƒ9¦‰cíú°Ò%fØÀgZ\d+Àã÷©&}qÛ, •¨ºA
+k‚·‰vª/:p}½.uù´/«(”¨lZ…dP.εƒo(’f£
+IÜO¯J¨BHÊT¤Km»´Ž:56Òr&œü…{´W~ÁçL¸Ç$b4®_ø_ÜSøªñ¬UƳ¢°€q õ¿Ü! Ï|†ü5AGÔ\uªo ×µ¦« Sltþ1ÖéÌ6üJSø¯Çc½ü/g>®Üõš~WL('½'úg¾|ñ~ðq»©)Ùoʞ•’Éï=u¸Ý®_:Þ+Ž#ªl+øn×/Ç}?ø¯G†¾îXMn³ØÍ=hÓ¶³É”ÐÍW¤>•$‹ÍSùï**
+tÀ’Ý(úÝzû~øÃðf†Okr•ÿmûÌO´Q{”ŽZà­À•¼É>ï¾?pö‘›}f<ó!¼v•ÓŽ—]IùÐƂ+øàmjÅûÁ×þ ™D͗¹T:u“”Á]Ø鲤pïš~œu
+YAD}A4JtÄ¢6Å"{.ÍM[›T½c¨ÕÐwo1hýùÁãAã;zýîW¬tK·%Wí†D•ébûªõç'¾Ú=yZ,̇ýóó׿dãO…úN pR“š×ìMZú@Ì756öÙkº…#¢íȲlëÌÐMÉT»év¶N
+stream
+Eçç+<ÃÖ[ßsŒêfü?>7©àvÐ@W­¢IímÉÏ矟VÊÝ®6û]ÖÕï§]—ÿÿû
+¾ôÏ|ïñKP3ǺŸß2ë=ÇU÷¸Ë|îý—AË\û™ù{Ð3Y×_fþ|ŠGû?Á>é]üo°î.kþšéÁß3׺û_fZð×Ì÷âÿþóý—˜j…[¼{?Âu×výÉLÉLo‘¢ëjラÃ÷ÃØsŒò=-ˆþÐG‡F»J r¨*ôý`I†œÑ®Sì÷óÏ¿¹ŸNo<ûaÎ~˜ÃOÞð£?£|O Ê~˜ÃSø1‚†œðƒºä§´yä‡¹'?‰ISuÍ Oø)mÜ3bãî-Ò@²nâ¡Ñ Ũj~°$¢}Df›ýà¼Ù#8o‰Ãž)[ÙϛÉò˜(F(û±SƒÄ•üà¼aɕü 3‹Õóö´»ÓùÐȏr&›2SU¦¢OSÇkO½7ˆŽñ8¢=F±'·Æ$mÝoÔdø~° Æ e—ëTz˜ykrB-ñÉÉ[¸#ya¢^°ªR8‰hD©
+'„uÀ mŠ
+1‰öªˆ^¼FØ‹ÉË÷,‡ÑbcwÃƔå{ÿ‚bk"jZv»N¥ÇÞ jio†ô‹?™ß؛!Ï_£RìMDk$:´´7C¿vO«*ъ
+T³뺞¨Ù«z¿ö%Ñ¯±ÙOܧúHܧÎ-íÝ™º2îS•å1QŒ4£~ìßŠžØÓþÄ}êKö´?ÈÌbÍϼ{yˆ[y‚yp!*1ÔP¹GâqD[Œ<A:òŽj¼®<¾ªE¡h¬ëԋdz!ýÞxÄsQKÎëžô7Ä%ԭၴµ#Z#QaÛô
+¢2Á ÓHêb¾a®ãBf÷žÑ@˜oRÔZfè?u¿ì­?]çfÚ$f™o¾ñ^~ÕL
+Ã—ž|xa=¼<Ò@ÛÜw‘8ô‡ŽUµK"*r,3‹µý)|Pŏ6ç⪖6gpçƒ[ø3Õ&ô‚øUÊ‹èKý‰Ú, ‡œ8Oúέ¨Ð÷ƒ%5ïïºN±ÙOۋohøaNv»»a(XØneŞç/moþ<gót…ŠB°’¢"E“Ì|Ðø_F:hfìO憃&býH(à yLŽÒ@34ÖôࠉÞTÕn,‰¨È±Ì,Öü,Ô¤0ÌÔÀMç»%߸~êL%5‚º§´NÅ<ÓÈ>ØÄU£Ÿ:êZ#ÀªˆÎ™Y¯ùi|ÍඑÑwá¶ò­!3róû„©·¸m˜Ë}FJ˜¶“À~!M®µ KZâúu(=¼ø„æOø„–AËKë æ û„æ²"ʊ#SȆ©ÄuÁŽa¨kCVµ(ÖuzÍÒ£ŸÏ#—ÀƒÏÌßÁ’Ÿ«LE ;ÐÂË>W½9ëõ’ú £~ž¥_‡—ôoÇ׳oÇ´à« ¥§™—ûG2óò+ú“¹$3o¬ûf#/”ãù׋…—_7r
+Ÿ ”J64*V»N¹¥Õñw's¾;™ãîdÂÝ©€–æ1iZH廳Ž’îN¦¸;ÐÒRTä”tw¢n´´äGºDòÍ»šk–æ~¤3yLšÒ@û¿tWK–%¹
+$^šÃ3óc¨ÇMùÍ3@·@KóSË÷8Ž³À0êÀzÃ#Ãzè„g’½òz 9ô$ž™猛¤\sØJW·¢zˆûDKƌJ=<VЁ§’½òÓêžz™ÃEóÓ
+ྫྷæ£Ëoò€Ìlžº ™Ã=óchf~e~Ò
+µt'=‰e'cF]÷NÖ5ÕsýÖãùéóÞ _;aÙ zV[×ZëYiétí†e'è¯îŽ23´Ù W2J 6”$– gèÚzö:ºvð¡Û«;A(áa¯îé¹~+ñœŒvÏPÃ× 5,3ÔPÞá™—°í»O7 k†Ú§–ÌÐý­'Qû=Ci®3”q%3¡’CObÙqœ3n’zpÍ°yèèÚqÀŠŽ]wœÐÃ#»î8é¹þ[Ï|îÀ𵖝ÀPî¤؜1Ý];Á,º’ÀQêIë¡St'`\©·Ðƒ†žÄ²8gTõ lÂVººÕC\t'cF-÷N@+èÝ þKÏwÏPÃ× ¯ÎPCÙÕ=¯ÌÐt;è»g¨a™¡†d†:=ŸÎPz*Ù»Þ¾{Ç =įî8Ι•ñ^;l¨¨WwœÐ“Xv0fÔïÞqÒº¦z®ßz<?ï¸wÃ×N`Xv‚·ËNp@æ'l;étí†e'0$;£Ì­AGvƕü„H=‰e'pθIêÁ5Ãæ [ k'+:Ý Bº¤çúo=ë»ûµá«_¯Oûµ¡<ù€Ô›3¦[ «_¯¥ýڐôkG©'­‡ÎÒ~͸Ro¡) =‰ež:gTõ lÂVººÕC¼tž‚1£®{žÒ
+:Kç©êù:/Ùõnª'ñ&f(sðµ]¡ÇàP[K=‰\±³¢£3fTêᑰ‚<•¬æg<ãš?ëüÙ8çÏF1D~Òf7 ?ã™26Êùù +èL™?7ßOêñ’L=‰s?g¯ôÐãπ¶óBÂ-îdEÇ)ûAêá‘Söñ\¿ôx½¥OaêI<£ÞÀÙ+#ôxÙ¤­¥žDKꍬè茕zx$¬ O%ëzf%)ä§þy¯ü>]…³ªù)R‹^ÉO ÅŸ¾’Ÿ¢Ũ‘ŸªjIžJÖõŒÁGàz Փx3”oÄÀ#zlçÍZ40RO¢ÅŸŽÔCGg̨ÔÃ#Ã:RÏEVó#óçH–ù¸G~8c*[}ÍüÐv2n^ÉOL‘¢™QcþTí~¤O%«ùI=.9õ$î‘pö› =~Í´ „[ WòCVttƌJ=<2¬#õ\d‘Ÿî{ëâûéû'ãý>¡ïà9xöE¶M‹¶¶‡[ ÅŸnü=þ
+ÜÑÐy!ÕÑßñÈ´n:ôT²ÈÏë}z 7Փø<„w7pÓWDè18ÔÖRO¢ÅŸ¶ÔG0FÔЃ#iu:ôT²·žÊzÃO*ë-p=õOž|€è¡í(€[ Wõ¼Í«ŽÍ+
+GÂ
+¶Î²æã¾²18­ñ0ÆÞ=s0&F™ç0o^µŒ­ŸæÛ©Úp „×ì㍎>ú•ƒ‘G†õÍÁx‘ÅyH
+%Փø«²œôÊή²¤õSáz€¡§êªÅ¨¡§êZC:á¹~éa½qQf
+¹('žRo ï¼Ê¢Ì²q*
+stream
+H‰\W;’ì0ËçoÐeÉúX癪ÞÞ?]‰Hx¢4
+e®¿õ±~ëWç<°¼¤ßÑo5v†ƒè·ŒíŽ
+o•¦´¢~ˆ]‰®˜Yé‡K"
+9`ªØW§ÑKH?‚[všifgÀÛ1ï(ÒMí7WDSYá'–ŒèÉT±ïúð¶I˼m&R{ p'qÛä63VšÒŠÞ6qg÷IdÛ&–dÔ吩bßçg½'[øI,“Í5³Ó×k²!†²t²…`¨Š‘5ü`Ɍ®¡Ìõöý?QBø<¤ßŽæè ÷mã1th–ö›«"Ñ3+ýpɌΑL‹úìÞû´]¥aÕ©g}ƒÃªøܺ7rp¶sƒBp¶q¿º2V쓖´@;©?
+¼<zˆu ’øýႃ–5>o¥°b/Ûó-ŠQÝO7âÛôŸb›¹íìâAÕÀ 8ë6ÿâel//4 ŒjàåD¯ ³.Žj,‰(䀩bÑjö~ê2çáG°Í(ûqÍ´ôs`ÉØ8ÕZ Œ6àå
+hI¿õ=™jô[ÇLcÖÁц%…0U¬ö[øA ÏàýæšÑôƒ¶aÌ:*h–ôTqøðBÖÁц%#º†2×Ûú-ëã%Ìú$Ño¨wFÔÇÛ&cwÖ'ђ~ã.“è`VևK"
+ªHtÅÌJ?\QÈSžê3¶-­ÏÆ]ë³qÍúŒû¸ÿÍÚØï¾÷$êZ™Ÿ¬Ì'Ud4”•É(„<íó–CíÙ?õç÷±ö8|0ÕœgÛ†¦™ÈgՒhûNaYZ¸{t¹†92¯!Ÿlý¢ˆ}Û)g¦²»%Ý\{rFÚëLÅXôÊÁ»$
+‰“ˆ&/eºi_éccPÍ¡ šöMB­]Uœì&ž½­“@€“„ý4×ʤtÂ%#
+qýóRúöÂãì1bo¦ö6âÂl2ÊBŠÁb“%îOò6b^6W(öçóÖ Kæ%ÏÿÆEÏâsœç<w ;çûßçƒ;/M EÏâÇ£r™‘矋!BŒ©2á¤` ÑÉeœN›°+&Ö´W\6>ÏïÃ^c$$r'‰OWD+2†“Kç\
+Ȇҟ…ýYhÒGô‡UÐãSÉR$§žÀOõ79c“¡kÎZÚÖUñ ?`SCOÜÕ¤7Ƨ’­þôš .™`aÉ 1ºd‚hKT2Áuh&XH2#ñçÐLÀN’­þôš R±dç›ì%d­mëª'𡙌cêQ3ATAçÐL zàÏúS2ÁÂ%,,™`!nÒýA͈¶D%ŒK3ÁB’ ÑVÎ¥™ æŠ?©’S±dçŒM†¬9k}h[W=/Í`S¯š ¢
+»oš |¨8Ó4,$™À‘8Ó4°“d«3­f‚ÔC,™À9c“¡kÎZÚÖU±d0ZÍQM:’ Tü9Κ .™à84,ÄL`@ü9$DÐY3Á’ ’Làˆþ°
+/a›Âõ^`îk× Ô4t&ú±K›TíO4&09„÷'ÛìF9Ԑ¥
+6÷§0­ZÌaÑrî_¡_Åý¡;+yã+Z¨‚1:Gõ¬“ôPœkHeŒîçSùš¤ó]ßÞýtúq3lÐNá܏×ù=9h~օ×÷fíú^Û½q©á±L6ÿÕÁÔá‡-o™ÕÉFa
+stream
+­¬û,á zP”y‹±R~ÄV+¹Ó½1
+æ[؁ò„y!°¡¡Õ¼¡~f~$¶x›qž6tڇ4Ž²„5_Ç4Èi
+™%æ÷œ/p
+²ÐJGD{/ÆeŠ¢™Î^¶›†yŒµzbJрƒ4˜Æ»:ÕÌ2[уcT±×Í؋ý -8ŒÏ)Tí0ß2;D<Íõ4£ŽHߝ¥¾‘Ü1•»ÔÃXR‰?àO8M:•j¨š¬¦©/š£b2g»“-ÿA·Å"†Åò¸’iŽF8÷å·ñ!.’úÓDzFô•b«œƒ Ž8¡eÜïMìý%Ð~*Úåve·òƒåQß3œO$¯áu¥0®T£¹´Œ>¡/Eº˜.^—äFe—rÆê檟CÖb7nSWJ9ô *¥ª£Wh3µÒiº"F‰IâyqS–ÊÙò°2š!O™«,WkÕՖ+>§ï˜ï/¾Ûf²Y‹ž‡¥œý«Øʕ@;Î2œÇ%R)„Â4²Ódz‰a­¥_S#í¢fŽrš.ÑUúÝ¢,"FØEo]Ì/ˆb‹hg8-®‰ÿÈHÙ[&ÈÁ2EæËJΪN®gØ'/*6¥]1¹ÏÉj½ú†Ú¨îVßW;,¡ÖeA:õãö;ñwÎùà[å«÷íõ5›ѝÏÐÆ]è…ÎÞÍPÎç]Ï÷>¢Pâ)•Æsg¦S9ͦ*îä
+£>$ÕnXAÓdƒå¦8‹ùhW‚qNþ†³o{d–Ò¡æR)߀…¨Åls)ªU§r†J éÄ*x»ÕÈdÅÎÿżU¦òNÛÏ·û ïQ2‹9Q<9ãy.&ó†h`ØÄ{Bá *ã;þ,o±64[&‰”¨áÄ[PNúr1Å|›ÍÌ27 ‰÷AYÃñ5^F#­ô½ã›sŽÆ«™¢]Í4“„Wœy¢þáóånÇR¾aØÃDªú{x•O‘‡‘æó¯<Ý}yÃnF~Ž¯¸Êa¬<‚A¾ ¢É̔®÷<r̝f/
+F©9q;¬*Üք´ôɓF¥LýYʈáÆüä äú?‘”˜߯ïãq±}ôÞv­×cöŒ±EGEöèÞ푮]":‡‡…†w
+²ZTE
+4GTi†fKs™ J½W»k
+ N×Ӌƒ“ÑÂhcF¤îi¢ÈT
+éÎ÷Çè’Àq3ŒÈ¿ŠúÉλ¦;ë”ÆH¯#ªLó“^of¼™ã|Pj÷óóÙۊØL—7“C¯á&ŽËÓ8šX™ï4h%‡Ôü•ø«º[_±îðs\åšÑI­—zË]|46¯Üjû^›-í€y6‡æäÔíÆÈ=ߝѳ©¼¹Õ¿NÓ¢–$%6Et¹ÛئðÎ÷Ð°‘âû²P÷cãrïw–üéOó@Z¡Æ™8u®i¨ÿS<Þ¡¬ÆO>±•QÄ'RftJwy#†ûù~{CÐ5ï-ðèׯ=ÌqßãXb#nÁúçäþ¨±ü'ÜHH0âãý#bMç3åSôà¤Ä-B×=ÿ¸}ÈæÞºó‡÷çöÛíþ^ݒ†&Œ%9λ´†‚˜½ø/÷UUuÅÏ{ï¾· BYK…$1|
+–Ê“ìrþ8:3æä᠋DòÒSó"U‘fxSzª/=Ò¥žUÏF¶¯¬r§ÓìÞˆæÕWÀW[•ÅH
+•–·§+uEíA¥®¸2ÔåÃw@]Iè´ª¨¹UË+Ú§¢.ԕJ”Z•µ¬d!•*T°ÈÓªW¶ták$,k…THys§BRçut
+mîT-ÏÑ©Ð K”:þã3&·$”=2%+2ø*×ÓÒÁµ”ë£K§§û¤&ñψ¶Šß6¢êëôU±ƒüÀjÏdúŽ^F!e/Uª­´“¡M¦ 8I÷£m+äÛÁÝÜíK?K€2`’­[lŠYFÛ.î‹1¶ó8’wP¥w
+ݧ—™W0ßA½—Ü"Þ¦Fmƒ| ý^øøã6èsÐh¥F菠~3tGÁ!ÈÍ(¯G¿,»<ÂӀo50`@? ãì·×;C;C ÅóM¬¥cµ˜ãNpPˆ6)àåÀ^¥—ê”^³õ`ªÁü{Y¬°9ãìAý2ô›
+¹åI°ÃҀ™êIÊQÇÓóàL¬¿ÜZ7ÐK[yÍñ5Á~Û¦¡°l,Læü®æ˜}à ¶¹QãÂjm…ÁÕ@(R_¡mâˤÀ_Oê}¤1¼Dì§?·‰-´²;‹õ:Ä2°Fb‡yE¡&m€¡î{ÆA¬c ü—¯ú1eª£ cíB|­Àø»£ó¯2¶P æŸ ^ úd Õõ˜ëŽŸØ7wc_×a®O½íT ¬Â¾„{Ù̟É>ç}WÊsÐö´Yπþ‹X;Ç$÷áþkš‡-W™ZЦ~ý X~¶ÁŒ3¨{ ãL `20èZ€j`1ð0sæÕd¼"f86e| 6ô^ø¶É˜µÖpT3ÍöX<Ošq’ªm¤ñ˜œ/³°¥Ý›sŠcÆaßÕ÷ʼNŽ©8#÷D?­bd"¶漃͜ÕRªB×p̲}³_8Ö¤O6/IXk–Ì°F”nÇzÃŽ/⼕ŽaÌ*cΔ&ÊßÆÛû‡´I¼O+´Y4WςëAÛ¨ÚOë¼x—c/ï€ü¤‹ž˜rÞƒu¶ÁŸ1z
+>ý–ˆ©7‹˜¢ëmæ»:)çô6õYÂn(=V3#±îßÕ¨ô6œ™mæ{zÌ4±žÇ8'<ýJê0ô§0p‹w¶Òè­V:=¥ä3ˆ€ûDëAºUô`ü8ç‘ Ð—êoÒ Zí1ó÷J˜ÂjŒj=~ڈï§1<—zj<>x{B%Ŝ;–vâÕÍ|æÛ15l ÿ^µñŽG?V¬9nåóYÞ8£Z+^ÍKñø<GOƒ÷;ñéŠÓjW|ŽrÇ¥›å݂óÝÉSرÏY?Ÿ|ÆñÉçŸ3N{7'ô¨­ˆc>‡_¡J;¯o¶Qß²sç0ö»Ü4<ó¸ÑažÐƙ'Œù(ÿÐÍãX÷Cñ;5dÚ÷é,ç.µôtƒsê h›}ž“ç͇ô„¼Gˤ}#ŒS´K¿Œ}Ç(ím²sþ„ÝÕ¢
+Üfv3‹ c÷<HãµÐ߄~.Y Ÿž¥©ÃÙ3”ó”%}h!˜¸Fg?À®8•Ù¾þ#û>°¿»€¯HÿþüV Ñ” æEp™r|ÚˆAräǟÎ>Aÿ¸Ô»ö±B™ÿtëݲ{_‡“ÕghC"œ8ˆÇÃc´”!–¡=à–½çh)Ãxu/•ÅñaPI·h‡Ø&ÄàŒ¡²qÍ`¨Saë$âòyœ·•ýGÓ*†Ì]@íÀ÷¯Ï¦•Œ¿.d¿j‡¬zgœ}qïì ŠWi5x:8\ .p8ßöy‘óEV¼Çe>Kú\m®æÄÕÜ8Ïw͵Çürçe xé=—BˆUÀñY†wd ¨†è
+'5\ÔЩ1@çc* ªŸx \ —Pc„Ç©£†‡UÔ¨¤†Fýz’•Ç—Ï”òç
+¼x‰Ï†1–cF˱¬ËñØžR"Ò!Ò*Òâ/º8W$ªéxöB߶à26Œ‡ñ7 “K€Ð0–Ñ0F6ØÐ £@
+ȅºïÖ[€v`0
+®ö'éf}–õ°µÅÚh}Æê³Î²–[Uk™µÔ:EvȊ\(O–óeYΕ-2“‰<%™º¬{ þº)¹
+'þòA‰Eø
+7s^ßiFݝ!s£;¤õÖµ=¢ºW×¹C½¤-ÜÜÒÛ¦w†âuz]ؽ>M44ÕúèkßX_µMh¬‰7VËûjð?¢ÚÏ«x_~ޗŸ÷Õ 7ˆ¾ˆXãM-½2©.mKs‚MÊÇzí(-Ö)ۗˆÅ[W^²»ô$’_’IÞ¨9Ù]o¼ê©àSA^…gŠW¢Ø–©*Ù]W^Šl=S¥ Øî®'Þ®±¤$üÕPúÃE];ø„§­7ö¸ꦾ>ë"$bV¯Š˜­-½V+J;øO2fË&M
+'SCéÂÙ(\È %iLÈËñ²¼¼ŒðáÿG†—ò§À` ª»h‰E%ÓifØ
+š[ñ[ÛZ[N"]âÇC,Š£^˶!†MÒ>á¿7‹®/3]N߅[bÙéûðYâûö«\8\¬„”ÛËíU0ØÓÈmMº­çÏˆfâ›Ú·î®`9o…,Öó§Û°ã9¬²¢$éÜé)”ÁºÝÚS¸ŽHŠ¤I’ôkûÏ^.ñ*7ÖÞ¹qE¹q…==‡®¥f¯õ?㟛kÅ5U¡ôÒÏ<×zjï7¦/v{©÷îŠSô&-üøâÏÎE_<<ðÛ»ê]íþ;õÉ3Ø …åå+”8òøò{$
+>d}]a2uõ„¢°Õpnž°Ù„󶫸‰ã
+ïîýéçNºÓ¿dù|¶b9®;øW‰Ÿ˜4‡4Å1¨Nƒˆ•Àü†Ø@ÓÄm)¤˜ÂÅØ lHJ¡xFC3̔6-éÊ0‘ÃdÜ´3 ¹oÏ6Ì´µ|«Õíé½·ïû¾·Oý’dL¾Ôí i´Û
+lÄvÄ1#MÉÅé !¥²$ ¯
+×ã–IvŽDŠ/Y³é̂†Ë¹ïáëø‹3§wl_ðÙÝ쵑Ü×9DYS¤…üò9E÷/'ËҀÁ!DÜrxÀÏ.ÿ‰/òŒ<œo¢²†Ì#娜UºëI)NõõÑ\÷ÃЉÒ`¥X÷‘²XZ†6 cˆÝ ë{ÙîFÜ ˆLTTU¸ûÓé4 ŠÇþÁ*Ü9ÈS>n<Nȓsç떀Êr.U’¼æÔØ-#'t¢ûiRÌ
+éäEEz•ABÒ0¤Á>õwœÿ_K£`‰§–nBvÉˆî·ZyjR¦w,Št¤÷î›|`³—×üràê!šõã±ëÈ—.;´/²|'ÙjÝj¿dã̂ÕGf:g»gùŸÌ›ë\è^è./)$­‹œ/»“þòV“WùUÖ5öN~§°C¾ä»F®òW­¶î‡ÛfÖ C•åfŒÌ²™˜»
+”6bÕmpWC:$®K½øãq2­‘ÌD˜8ъ¨–þa¸âq§ì¨®˜îñ8€|¨¨$ì”=Ó«9*øÆäÐÞU=+¿Ý2Ô}eõOOjo?th}û¬Â,~üHӉÜص\.÷Û£;Oá=¹÷¾ºƒ—â–‘—:(îïvtL×]R*“ìò6Ùeb°ØŒxŽ0f‹ZŒè-tOS}@sb°&·uÅ4hj3…,ë~
+×$&>‘Ó%{%7™‰rkœÎÎoíÇ1ü§jkò2Q9àC¬!CuuÞ(V¢4?() )</TUƒ®ÉÝÞú¡¹ïý½l%»ö‰ö‚žl¢{‹!Ä
+^Öë¡k^uçM‘‡NDƏzÀ3s_9º1ô{4ÔR[KA š‰czAzÀ󕈃–¹PRä*ìz 'ž¹{Â7åéä¼úÆIý™%½ÙWÿ°å‹Üðžm·Ž~ž­™óÖ3+öï[»æ0û}[KyCù#YôBî_ŸmϬÇßÅíøÐ'?½÷yâp<õÁÎcÇÕÓPÐ;Ø°Ñ£×êË!^0>Æ21̳Ж¡:DhÐm2úÂÑD+l¦ê›AIø¤Ü -"×ih™x:}ïCh Z»ÙGYÞ°ý”^Âñ˜̨˜ÁÅ ŠY–/.'ø—ä2!ä,‡fì7=¿Àh
+ÆÛWðƒB3|E£
+LAÙA÷LÑè(°±Æªµ”W)Ë­'È^ëwÂoijÖUK•…Ԏ۬Uê€uM»¦_3^ãuÞ ªKxê³,J’¶,j´<ð7ŽÉ´QDÒ<°„ ¡×Šé5á5|K ‚‰8„×:
+'kWŒ0F*‡êØZ„[!‘müþ]žìå?„£¶ig¥w5²WCýl™Ò o“¶KXzƼôfnwüpÂÛQ ø­±1Î7­%06mB ïaR*5¤g’Íl!²=ÖȈ12Ò#äfôÜzÏ0ôžƒ¼Idi¤7~ƒâ¶­_—É)¶j@1%EQ’¬%‚þˆ—¼}âÎá£o¡ÿœU^Ú ßœ…^ÍÎÀKQïéïîy’굕ã
+›¡ß
+qo¼Ü…
+a”ÓC"Ւ9P+ÂÕë]ÜZnch;÷xh/wH8AžÓO“Aý·úEn4t-ä6ì;"ÄJ÷„ÒHÙ}z»gqq»•ðpè{ö“ö!rÐ8Tڇ~ŠûÜ1Š8°<V€¼óReš±}ueÚ29Ä‹Â †yÅJšs¸d!(+IFd$kôid¸«“bHpþX+ãüBV»ûAºS- ½•ˆ|¬<Ž'7Úñ†z¾DJÒÄÅÅ›¦1?xîkÙ__˾yø4ýÜßÐÄæ_6œ{æø?:×|°óØû×}|ëWè‘?]†ë½×ªüôO²ï;“½²ûUځ= _
+|riy]î(QL¥&Àñ}”ipGëK¼%Ðy°c‰h}^BŌ>‹>?±ô±ŽZ·ìûÎì‹(½ï¹º™ó÷¯níϾ. ‡æ}+{aäùlöø7ëû›êf^ùÙŸMƒ×P0øG…Ûã¤D!,ËOIH’8ÂÓXr²t4”Šq@å•ÿ'GÍu·yg áºZ—«9BÀ Éa…R
+×|ôJ½ry^mlF­€=‚€eBµ‚ ¦¬-0 H@–—
+Ö*aªÓ/.z5/Vÿ|*š6&F™`=5%mÔOaæËÕp5/JSÀ-Ü:è;: ·¤i
+ŠºcnCî(Ž–Õzý O‘p&ÛþBv‰0|ë“}_o;Lnߜſvk2ÿÞ­ÔÉ£P'û!S|\9ºíDmÕ@vSéÒ²•òš2(ò Ul”Ø.`Õç:3´‚¡ {hüý“v æ«'Ë+Ýôs¨¢ÑÊÏf~†õ¿ž %sëp¿•Ÿéº3Œ„1§tNd¡ÚYº¦t½ò¨Ñmîp=aî׏›CæGƇ¦™q›·Ût›šbq4àu‰¶ÛÒ5Á§(ޒ€?\BÙËOQ]RÂEËYÕòùLӐÃIãˆHù”&¯X¨S"ÀåÔQ¤‹™H|m|{œÄË}ÿoóî«|kîûJ³2Œü£>J
+$îì1&¥P"u™Ô—š{¬ƒqɎ™6­©n{*ÅZÇÐdŒ¿ãüiw¹?mÃi8¥i«ÜgœÅy0¥(†
+-'°HQŒLÂ@17\f,‹Å»G^ßòû7æW.š7~ýÜ¢GWGçþÝÑÛºÿX¶V¾ÿ|÷‘K¡D¼uSvª{ü‡÷¨ÒM¤aJ÷}«vR5Ó Ñ¿@ÍÔâb§¢‹tñÈFžOTL&éÒéd¶4/4³lF|VÅBÒ!u†Wî*2bT–ÒxÇ F¢`$ FEÁˆ±­Èݜ3#Y0àæOYԪԓq'‰&³16#1³fi¤=¶(±Z}HØXéYáëV·è[Ì­Ö¦ø†ÄN²[Ý¥ï6÷X;â?H<­÷š½Åá|¯Ž&í`2 $«P’ãª6__—äV@réÕÝÁ]ALxõêpE%¯@¥ENO‡«•pØK˜6J¼ÌÀ™Ÿ2ˆ–Øš±Ü š¼DÜÐU!
+
+S£©0´Dséû~— “ìÞw›/û}ßó¾ïó<ï7¶>´ãóŸÿ®põ9ú¾uÿSwmã¬Ù÷NvºRM/­Z÷›•ÝÜf>±gÛò…éôÚäm'7=pqã÷®`¦Öƒë9Ç;¤Ýž!± 8XŸ$ªgØÆãÅ>ã´¯‚²:
+0>I95 )×8=(cÜðÙ¸7üÇ8I|1N
+…¢¸â•SÏ}Õ&œàrúó!OC=oçÀﰒB¹øx¡L2¾Š»UÃçÀnýôö¢ÛñB%
+õe^¢N¢µ$)Túëôz½Sß­ìV{õ>}H×*ô‰LSX1ËO«T¯Ìåx/ÿíWÕ
+E
++ŠÝX“ÂŒI*,u¥ÂŠ¼J¡«˜‚¹¨%³
+ݪô*ðú1ƒyÉì
+FŸfû ¥Å'Á
+QüC^§¹¹yLx“0m^2Ú×¼t)2*hi~éDhÒ¸Ž¦)kùý;ô‘[ã“n¡O¾9òÈçû[×oÞ,Ö ÏAÌÉè¿X¸L _÷”¡¸~
+f5æ2×͗£‡’§¢¯%ÏG/&߉\N*³l:¹"ˆ‰
+q2ã”ÖˆÚ¹Gq'^ššR›ÉŠÙ)óÅyS–(KSßQºS›ôúôƍT°)cRѪKdœ©Ã¥+jÖÕ°·Î̙O›ûÌQSÚg1?5SÇJ2‘¤°°LޚY–o±©cù˜¾@î¦+8gØ¡S¥Ï†]W&8)ÆËlvµª+h5]Vññ
+Ÿ&D,SøÞ‡çƒk\Š†_(1^¿‰3l¹gV{¤Êªª¨ª¯:R%eÑ![‚ؼwŠð™gL˜œ©ÏöeÙþ,Í:¸·V|£SY:©.ñkßE‹ûr>æ3¹ѹ )åDÇÍø¸'÷™ÜX¸¸¯¡yœ,RùȤ”Ł¼;8î,R-#©?D
+×RƒøÙ!‚Ù:+ß¿\‰—R£O‚™ÊîMÕÅ -¿*ÿôÕ
+¡éÑ·5Ôkuï ݽËí
+Ýër7û6G®³ë¥±iÀpœ»Ó^o ¶èµö[̲Ä2×/“sìžž<·F¢fÒϖ@$Z™K\œað ߊlƒ¨8_­®Í5¨‹Ã·ã•UüôZ±¨ã4n§­„ì%j3˜…² WðDãõ+»<‹Áry˜lÞKE'dš¾ÒäSm#ýí¸¡ëܵ¡wϔêçÊ·Œô´pÑEÙ¦y^°´gÃx¸,’žJ‚ay¢‘¢«xÉ
+ß<7哳W
+'8 žQ¥Ø(ÌÎ"4݉f%¨Ã8€+ÉaͯWª^zZfT¥}*µ=„Åö0
+;¨¤Qé÷÷j4®å´…š áɛÍ°hb£q%Ò& 6šŽ!ÑÄEã"¬EK‡'"4©ök_‚ÐÒf´´[³WÍú¨‡äÚs¹AHâP–§2¿Ò靖ÒRDG±UŠå/£ª)—‘":4_ҘŽÐ&ÌëFÀ(,CÂï8QX=iZ¼iډtëOæ‹WÞ~ûÆÃϙóŸïù|ÿù¶•èÎvAîþpÑX—Wæã{”}K|ËT!`\•®û„ÿÓ]-°Q\WtÞüv>û™ýÏx½Þñ~×üì5Æd5Æn ¡ØÞM‚¤6¸eÍ/¬BqÒT„U©!AÐ&•ÆEŪ)(´IӟÀ‰ ´)¥²*ä&Ml÷Ý;68ikÙóî<ϛÏ=ïžs®ì„ ‚ÌÃç)“<p`4Xø(·Ma}¢é¯ÌQ7;|ʗÉÑ«†èèp¢'¬=tFäyäf
+†åZ&“˜¼‡ceÝåÍѺ(1 °ÊRäšh£,E£ó(`×ú£tø ßÄáde#¾B[‘)I‰Éf銳Œ8>Ø_ÙHAìÁp­_kíϜ8œTíÅÙ6ºÙ`¡å»Ê)¢O æၮé×añßOF'ZÕ6Û3Aӊµ ®=AÞgÈ«ŸŒu‘·®ù¾ðÆo’c[Gײ±ïuÀ¾|Š°^¯Ÿæ@‚Д†¹9sõö8k¶=ÆS8Z)J½!&†¾•†.&lv ãO™Ma9›ìàNHzÁºúÜa† RëÁNe¾Oï1_t
+óÙXk ª{J{:>>Ù°~a)µð_fA
+oØèÉMêB¤×ò œèg¦Ñ®sñs#~‘‡š§ºrÛ5ò¢vEÿH×yS
+¸!Õ"†\ŠËít'uÔõDE%QQIÔ»J¢âG©q¼ì6*‰ŠJBÏ?³•DE%QAip{«(V*¡¿j‹I,Uчuv£þ’~BÔycë‚!ÌõȀ×kgò‹‰ò1ñN~"³ƒ–ï«âÔÖFŠ¥{RB³zæK³ôç6­.ÐÊ©w&$zeER
+ ¾ —61;ŒM¨ !þd*7ËA‡æ0©›=!˜,ÝIÆéö"=b?Á”#¾hítD Ê"B„-zË“§ ›]V‚z9jôŠ#Åâ,ђÓÒ)Q’W+ä5™®KüZ ÐòùѓףSXtôÙ "¡·ž»}¶¿ïéþS{ûúY?ÉìÛ:öñè»·~@*ˆëò¥Ë¿¾péúB}c|%EÐÇT5Ö>§6]›¯-Óø¼yÂdcæ4g"Z¬.Œn4÷›RS¸)²4¼4Ò&u8 áB¤KZïìÔºÃë#ƒæû«úÕ²÷+nnT|dŽ›¡ŸÕ²Áz¾Iû¿Tk×þ¬ÞŠŽiª×MMy¹5\îV·‘¼¢M±”ÕÊ.…7Bá¤:|ÓRHEŸ8ÿ÷¤@ÿ±D¥Øk H¶²™øëØ:_Ša©ª‘—È 2LøɓVjn·ëªAu#¸Cˆ{-(fl·àR4}ĉ—/#ÖÜ “{nÝ&<07wnh£÷¦(Šyô8hә"!SòC¹ÙÞ.ÀRìÒ/7½¾£M¾ý̕®-C;ڟŸá=¶õÉ׎oÞtr¬S8÷ÇþÑø‹¯Œ}þÜכF?玾{þÒo/½ó;àÒ½´/R ½ÌÛÖ}3ýDãI‚Ïñð+øÇùͼ({%Y’]~¯ìb8‰¨˜|F‘«öKDŠ›~âgãÞÿïïªÄ§–w
+¥‰¸åi’&$â΄E§Øƒ_óùÿ²È´Ë¼Ósƒæ²C-±míí>wïyÈU)ÖM$Š¶4/JI{_¾¿3ßñØý Þ÷X ‚O)-i:žiίîý²ÿ+w’fa¶vðñ@¼I^*/J®Œ¯‹ï”÷É{’Çü¯ÕüŠsÉá2=<kY͇a!Â>ʲZ-Qô‚T JA-8 ®.©KîRºÔ.g—k =ñdÒÉLrڜd»Ò¦®M¯­ÚœØœÜ•|Aù©ó@ÕÁšŸÌ:ªüÜùJæhÕ©ô…t¨
+¶$|{|2HLÉÉ Êö•×@˜ ’“A”:ËWÑØ.eRN…/3ÓA^-;þjōH~ÌÈ­Æ·Œ×÷ ÑcČïC3ž7XãÅ&H÷v»V.׈EX\¡‘h„%à¡AØÝÞ!3
+þvU—á£*3Õ¹Õµƒµl¾vW-[«B’Œn;UÜr¦eJ"À @`ðf҃¥îÁ×ó˜p™ô؄gzÜð@6žøФ!6fgӂ/–š(úÛôO£CO Š1L•²àtïrx%q:æo—|3mODéºÙ½Øö„m¶2Ó+B &íÕ|š_ãĸˌ0r•#B„éôP §•îD„‰'\NimŠª2²"fùÓ¢ èYp×ö¼k¶:»{÷nf
+vN›æÂãð,x–,mƒöŽåðÔÊU«ž¹ÿ«ÿ›&À%`#/GËÄã,¨…zh€&xZœÑ/°ž…5°ÖÃxº¡^†­££À|PâýcwÌsîè˜pÇfؽìŽÑ«“ùc6¹Æß÷
+ºŠOæÅ•=¡áϵE´"l¦ÿ‰`”]›dŠ6ÿ/*ÚÚ늶ˆö«­--‹[Z-½›Öv߈VôW ,FZ!Ç^؄ëFïm€èán<ë½çU“ý¿L|°iù
+Hø%&Ôa”@Ð1Ž<žãG}P²€;롋  “ÆÛDw6cƒ,΄­2{Ì9Y㽊±<ÛÞ»ÆÈü!Geçê#W+«YæbþÏ¿?Ùh‚ÌbÀüì<ùŸ¼jñ÷
+stream
+[€°5la‘QIBHØADED„ª•2ÖmtFOE.®c­Ö}êÒõ0êè8´׎8GNg¦Óïï÷9÷wïïÝß½÷ó '¥ªµÕ0 Ö ÏJŒÅb¤ 
+@8(”µrœ;q®ª7èLöœy¥•&†Qëñq¶4±jž½ç|æ9ÚÄ
+Ó¥$ÕºF½ZUnÀÜå˜(4TŒ%)뫔ƒ0C&¯”阤Z£“i˜¿óœ8¦Úbx‘ƒE¡ÁÁBÑ;…ú¯›¿P¦ÞÎӓ̹žAü om?çW=
+߁Þô-•’2ð5ßáÞüÜÏ ú÷Sá>Ó£V­š‹“då`r£¾n~ÏôY &à+`œ;ÂA4ˆÉ 䀰ÈA9Ð=¨- t°lÃ`;»Á~pŒƒÁ ðGp| ®[`Lƒ‡`<¯ "A ˆ YA+äùCb(Š‡R¡,¨*T2B-Ð
+»—½‡}Ž}ŸCâ¸qâ9
+N'çÎ)Î].ÂuæJ¸rî
+î÷ wšGä xR^¯‡÷[ÞoƜchžgÞ`>bþ‰ù$á»ñ¥ü*~ÿ ÿ:ÿ¥…EŒ…ÒbÅ~‹ËÏ,m,£-•–Ý–,¯Y¾´Â¬â­*­6X[ݱF­=­3­ë­·YŸ±~dó ·‘ÛtÛ´¹i ÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî”Ý#{¾}´}…ý€ý§ö¸‘j‡‡ÏþŠ™c1X6„Æfm“Ž;'_9 œr:œ8Ýq¦:‹ËœœO:ϸ8¸¤¹´¸ìu¹éJq»–»nv=ëúÌMà–ï¶ÊmÜí¾ÀR 4 ö
+nßLÝlÜ<9”úO¤[þ˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾
+æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ ÷„óû
+stream
+<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d' bytes='993'?><rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'><rdf:Description about='' xmlns='http://ns.adobe.com/pdf/1.3/' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:CreationDate='2010-12-06T13:41:28Z' pdf:ModDate='2010-12-06T13:41:28Z' pdf:Producer='Acrobat Distiller 5.0.5 (Windows)' pdf:Author='mija' pdf:Creator='PScript5.dll Version 5.2' pdf:Title='V2.bin'/>
+<rdf:Description about='' xmlns='http://ns.adobe.com/xap/1.0/' xmlns:xap='http://ns.adobe.com/xap/1.0/' xap:CreateDate='2010-12-06T13:41:28Z' xap:ModifyDate='2010-12-06T13:41:28Z' xap:Author='mija' xap:MetadataDate='2010-12-06T13:41:28Z'><xap:Title><rdf:Alt><rdf:li xml:lang='x-default'>V2.bin</rdf:li></rdf:Alt></xap:Title></rdf:Description>
+<rdf:Description about='' xmlns='http://purl.org/dc/elements/1.1/' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:creator='mija' dc:title='V2.bin'/>
+</rdf:RDF><?xpacket end='r'?>
+0000000000 65535 f
+0000066069 00000 n
+0000066099 00000 n
+0000066141 00000 n
+0000066205 00000 n
+0000066418 00000 n