Full Code of WEIYANLIN1996/pyqt5-QQ for AI

master 978fd6da87a2 cached
31 files
15.0 MB
178.6k tokens
56 symbols
1 requests
Download .txt
Showing preview only (399K chars total). Download the full file or copy to clipboard to get everything.
Repository: WEIYANLIN1996/pyqt5-QQ
Branch: master
Commit: 978fd6da87a2
Files: 31
Total size: 15.0 MB

Directory structure:
gitextract_3v4uj3y2/

├── .gitignore
├── Dialog_add.py
├── Dialog_add.ui
├── QQ.py
├── QQ.ui
├── QQ_view.py
├── QQchating.py
├── QQchating.ui
├── QQlogin.py
├── QQlogin.ui
├── README.md
├── Tcp_server.py
├── frist.qrc
├── groupchat.py
├── groupchat.ui
├── image/
│   ├── DressUp-master.zip.crdownload
│   ├── example.com.zone
│   ├── main.cf
│   └── named.conf
├── introduction-img/
│   └── null
├── login.py
├── login.qrc
├── login.ui
├── login_rc.py
├── loginqq.py
├── loginqq.ui
├── personal.py
├── personal.ui
├── pyqt.py
├── run.py
└── 文件说明.txt

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/


================================================
FILE: Dialog_add.py
================================================
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'Dialog_add.ui'
#
# Created by: PyQt5 UI code generator 5.11.2
#
# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore, QtGui, QtWidgets

class Ui_Dialog(object):
    def setupUi(self, Dialog):
        Dialog.setObjectName("Dialog")
        Dialog.resize(275, 175)
        Dialog.setMinimumSize(QtCore.QSize(275, 175))
        Dialog.setMaximumSize(QtCore.QSize(275, 175))
        icon = QtGui.QIcon()
        icon.addPixmap(QtGui.QPixmap("image/QQicon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        Dialog.setWindowIcon(icon)
        Dialog.setStyleSheet("background-color: rgb(255, 255, 255);")
        self.label = QtWidgets.QLabel(Dialog)
        self.label.setGeometry(QtCore.QRect(10, 40, 54, 21))
        self.label.setObjectName("label")
        self.lineEdit = QtWidgets.QLineEdit(Dialog)
        self.lineEdit.setGeometry(QtCore.QRect(70, 40, 181, 21))
        self.lineEdit.setObjectName("lineEdit")
        self.label_2 = QtWidgets.QLabel(Dialog)
        self.label_2.setGeometry(QtCore.QRect(30, 110, 31, 20))
        self.label_2.setObjectName("label_2")
        self.radioButton = QtWidgets.QRadioButton(Dialog)
        self.radioButton.setGeometry(QtCore.QRect(90, 110, 89, 16))
        self.radioButton.setObjectName("radioButton")
        self.pushButton = QtWidgets.QPushButton(Dialog)
        self.pushButton.setGeometry(QtCore.QRect(140, 140, 81, 23))
        self.pushButton.setStyleSheet("background-color: rgb(0, 85, 255);")
        self.pushButton.setObjectName("pushButton")

        self.retranslateUi(Dialog)
        QtCore.QMetaObject.connectSlotsByName(Dialog)

    def retranslateUi(self, Dialog):
        _translate = QtCore.QCoreApplication.translate
        Dialog.setWindowTitle(_translate("Dialog", "添加好友"))
        self.label.setText(_translate("Dialog", "好友名字:"))
        self.label_2.setText(_translate("Dialog", "头像:"))
        self.radioButton.setText(_translate("Dialog", "默认"))
        self.pushButton.setText(_translate("Dialog", "确定"))



================================================
FILE: Dialog_add.ui
================================================
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>Dialog</class>
 <widget class="QDialog" name="Dialog">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>275</width>
    <height>175</height>
   </rect>
  </property>
  <property name="minimumSize">
   <size>
    <width>275</width>
    <height>175</height>
   </size>
  </property>
  <property name="maximumSize">
   <size>
    <width>275</width>
    <height>175</height>
   </size>
  </property>
  <property name="windowTitle">
   <string>添加好友</string>
  </property>
  <property name="windowIcon">
   <iconset>
    <normaloff>image/QQicon.ico</normaloff>image/QQicon.ico</iconset>
  </property>
  <property name="styleSheet">
   <string notr="true">background-color: rgb(255, 255, 255);</string>
  </property>
  <widget class="QLabel" name="label">
   <property name="geometry">
    <rect>
     <x>10</x>
     <y>40</y>
     <width>54</width>
     <height>21</height>
    </rect>
   </property>
   <property name="text">
    <string>好友名字:</string>
   </property>
  </widget>
  <widget class="QLineEdit" name="lineEdit">
   <property name="geometry">
    <rect>
     <x>70</x>
     <y>40</y>
     <width>181</width>
     <height>21</height>
    </rect>
   </property>
  </widget>
  <widget class="QLabel" name="label_2">
   <property name="geometry">
    <rect>
     <x>30</x>
     <y>110</y>
     <width>31</width>
     <height>20</height>
    </rect>
   </property>
   <property name="text">
    <string>头像:</string>
   </property>
  </widget>
  <widget class="QRadioButton" name="radioButton">
   <property name="geometry">
    <rect>
     <x>90</x>
     <y>110</y>
     <width>89</width>
     <height>16</height>
    </rect>
   </property>
   <property name="text">
    <string>默认</string>
   </property>
  </widget>
  <widget class="QPushButton" name="pushButton">
   <property name="geometry">
    <rect>
     <x>140</x>
     <y>140</y>
     <width>81</width>
     <height>23</height>
    </rect>
   </property>
   <property name="styleSheet">
    <string notr="true">background-color: rgb(0, 85, 255);</string>
   </property>
   <property name="text">
    <string>确定</string>
   </property>
  </widget>
 </widget>
 <resources/>
 <connections/>
</ui>


================================================
FILE: QQ.py
================================================
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'QQ.ui'
#
# Created by: PyQt5 UI code generator 5.11.2
#
# WARNING! All changes made in this file will be lost!


#from PyQt5.QtWidgets import QMessageBox,QDialog,QMenu,QTreeWidgetItem,QAction
from PyQt5 import QtCore, QtGui,QtWidgets
import groupchat
from socket import *
import QQchating
import personal
from Dialog_add import Ui_Dialog
import threading




widget2 = QtWidgets.QWidget()
ui2 = QQchating.Ui_MainWindow()
ui2.setupUi(widget2)
child = QtWidgets.QDialog()
child_ui = personal.Ui_Dialog()
child_ui.setupUi(child)

Diaaddw = QtWidgets.QWidget()
Diaadd = Ui_Dialog()
Diaadd.setupUi(Diaaddw)

class Ui_MainWindowt(object):

    def __init__(self,s):
        self.s =s
        self.buffsize = 1024

    def setupUit(self, MainWindow):
        self.MainWindow=MainWindow
        self.MainWindow.setObjectName("MainWindow")
        self.MainWindow.resize(326, 627)
        self.MainWindow.setMinimumSize(QtCore.QSize(326, 627))
        self.MainWindow.setMaximumSize(QtCore.QSize(326, 627))
        #MainWindow.setWindowFlags(QtCore.Qt.FramelessWindowHint)
        icon = QtGui.QIcon()
        icon.addPixmap(QtGui.QPixmap("image/QQ1.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        self.MainWindow.setWindowIcon(icon)
        self.centralwidget = QtWidgets.QWidget(MainWindow)
        self.centralwidget.setObjectName("centralwidget")
        self.frame = QtWidgets.QFrame(self.centralwidget)
        self.frame.setGeometry(QtCore.QRect(0, 0, 331, 141))
        self.frame.setStyleSheet("background-color: rgb(0, 85, 255);\n"
"")
        self.frame.setFrameShape(QtWidgets.QFrame.StyledPanel)
        self.frame.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame.setObjectName("frame")
        self.frame_2 = QtWidgets.QFrame(self.frame)
        self.frame_2.setGeometry(QtCore.QRect(120, 30, 70, 65))
        sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred)
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.frame_2.sizePolicy().hasHeightForWidth())
        self.frame_2.setSizePolicy(sizePolicy)
        self.frame_2.setStyleSheet("background-image:url(image/qq.jpeg)")
        self.frame_2.setFrameShape(QtWidgets.QFrame.StyledPanel)
        self.frame_2.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame_2.setObjectName("frame_2")
        self.label = QtWidgets.QLabel(self.frame)
        self.label.setGeometry(QtCore.QRect(125, 100, 91, 21))
        self.label.setStyleSheet("background-color: rgb(85, 255, 0);\n"
"color: rgb(255, 255, 255);\n"
"background-color: rgb(0, 85, 255);\n"
"")
        self.label.setObjectName("label")
        self.pushButton_3 = QtWidgets.QPushButton(self.frame)
        self.pushButton_3.setGeometry(QtCore.QRect(294, 0, 31, 23))
        self.pushButton_3.setStyleSheet("color: rgb(255, 255, 255);\n"
"border-color: rgb(0, 85, 255);")
        self.pushButton_3.setObjectName("pushButton_3")
        self.pushButton_4 = QtWidgets.QPushButton(self.frame)
        self.pushButton_4.setGeometry(QtCore.QRect(260, 0, 31, 23))
        self.pushButton_4.setStyleSheet("color: rgb(255, 255, 255);\n"
"border-color: rgb(0, 85, 255);")
        self.pushButton_4.setObjectName("pushButton_4")
        self.frame_3 = QtWidgets.QFrame(self.centralwidget)
        self.frame_3.setGeometry(QtCore.QRect(0, 140, 326, 35))
        self.frame_3.setFrameShape(QtWidgets.QFrame.StyledPanel)
        self.frame_3.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame_3.setObjectName("frame_3")
        self.pushButton = QtWidgets.QPushButton(self.frame_3)
        self.pushButton.setGeometry(QtCore.QRect(0, 2, 163, 35))
        self.pushButton.setStyleSheet("background-color: rgb(255, 239, 239);")
        self.pushButton.setIcon(icon)
        self.pushButton.setObjectName("pushButton")
        self.pushButton_2 = QtWidgets.QPushButton(self.frame_3)
        self.pushButton_2.setGeometry(QtCore.QRect(160, 2, 171, 35))
        self.pushButton_2.setStyleSheet("background-color: rgb(255, 248, 248);")
        icon1 = QtGui.QIcon()
        icon1.addPixmap(QtGui.QPixmap("image/wechat.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        self.pushButton_2.setIcon(icon1)
        self.pushButton_2.setObjectName("pushButton_2")
        self.listWidget = QtWidgets.QListWidget(self.centralwidget)
        self.listWidget.setGeometry(QtCore.QRect(0, 171, 331, 451))
        self.listWidget.setIconSize(QtCore.QSize(45, 45))
        self.listWidget.setObjectName("listWidget")
        item = QtWidgets.QListWidgetItem()
        icon2 = QtGui.QIcon()
        icon2.addPixmap(QtGui.QPixmap("image/tcp.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon2)
        self.listWidget.addItem(item)
        item = QtWidgets.QListWidgetItem()
        icon3 = QtGui.QIcon()
        icon3.addPixmap(QtGui.QPixmap("image/classmate.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon3)
        self.listWidget.addItem(item)
        item = QtWidgets.QListWidgetItem()
        icon4 = QtGui.QIcon()
        icon4.addPixmap(QtGui.QPixmap("image/learn.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon4)
        self.listWidget.addItem(item)
        item = QtWidgets.QListWidgetItem()
        icon5 = QtGui.QIcon()
        icon5.addPixmap(QtGui.QPixmap("image/partjob.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon5)
        self.listWidget.addItem(item)
        self.treeWidget = QtWidgets.QTreeWidget(self.centralwidget)
        self.treeWidget.setGeometry(QtCore.QRect(-3, 171, 331, 441))
        self.treeWidget.setAutoScrollMargin(10)
        self.treeWidget.setIconSize(QtCore.QSize(40, 40))
        self.treeWidget.setAutoExpandDelay(-1)
        self.treeWidget.setIndentation(6)
        self.treeWidget.setColumnCount(1)
        self.treeWidget.setObjectName("treeWidget")
        font = QtGui.QFont()
        font.setPointSize(10)
        self.treeWidget.headerItem().setFont(0, font)
        item_0 = QtWidgets.QTreeWidgetItem(self.treeWidget)
        item_0.setToolTip(0, "")
        font = QtGui.QFont()
        font.setPointSize(11)
        item_0.setFont(0, font)
        item_1 = QtWidgets.QTreeWidgetItem(item_0)
        font = QtGui.QFont()
        font.setPointSize(10)
        item_1.setFont(0, font)
        icon6 = QtGui.QIcon()
        icon6.addPixmap(QtGui.QPixmap("image/chatbk.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item_1.setIcon(0, icon6)
        item_1 = QtWidgets.QTreeWidgetItem(item_0)
        icon7 = QtGui.QIcon()
        icon7.addPixmap(QtGui.QPixmap("image/qq.jpeg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item_1.setIcon(0, icon7)
        item_1 = QtWidgets.QTreeWidgetItem(item_0)
        icon8 = QtGui.QIcon()
        icon8.addPixmap(QtGui.QPixmap("image/loginbk.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item_1.setIcon(0, icon8)
        item_0 = QtWidgets.QTreeWidgetItem(self.treeWidget)
        font = QtGui.QFont()
        font.setPointSize(11)
        item_0.setFont(0, font)
        item_1 = QtWidgets.QTreeWidgetItem(item_0)
        font = QtGui.QFont()
        font.setPointSize(10)
        item_1.setFont(0, font)
        icon9 = QtGui.QIcon()
        icon9.addPixmap(QtGui.QPixmap("image/qqchat.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item_1.setIcon(0, icon9)
        item_0 = QtWidgets.QTreeWidgetItem(self.treeWidget)
        font = QtGui.QFont()
        font.setPointSize(11)
        item_0.setFont(0, font)
        item_1 = QtWidgets.QTreeWidgetItem(item_0)
        icon10 = QtGui.QIcon()
        icon10.addPixmap(QtGui.QPixmap("image/qqchatbk.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item_1.setIcon(0, icon10)
        item_0 = QtWidgets.QTreeWidgetItem(self.treeWidget)
        font = QtGui.QFont()
        font.setPointSize(11)
        item_0.setFont(0, font)
        item_1 = QtWidgets.QTreeWidgetItem(item_0)
        icon11 = QtGui.QIcon()
        icon11.addPixmap(QtGui.QPixmap("image/qqlogin.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item_1.setIcon(0, icon11)

        #self.setCentralWidget(self.treeWidget)
        self.treeWidget.setContextMenuPolicy(QtCore.Qt.CustomContextMenu)
        self.treeWidget.customContextMenuRequested.connect(self.menuevent)
        #MainWindow.setCentralWidget(self.centralwidget)
        self.statusbar = QtWidgets.QStatusBar(MainWindow)
        self.statusbar.setObjectName("statusbar")
        #MainWindow.setStatusBar(self.statusbar)

        self.retranslateUi(MainWindow)
        self.pushButton_3.clicked.connect(MainWindow.close)
        self.pushButton.clicked.connect(self.listWidget.hide)
        self.pushButton_2.clicked.connect(self.listWidget.show)
        self.pushButton.clicked.connect(self.treeWidget.show)
        self.pushButton_2.clicked.connect(self.treeWidget.hide)
        self.pushButton_4.clicked.connect(MainWindow.showMinimized)

        self.listWidget.itemClicked.connect(self.group_req)
        self.treeWidget.itemClicked.connect(self.personal)
        QtCore.QMetaObject.connectSlotsByName(MainWindow)

    def retranslateUi(self, MainWindow):
        _translate = QtCore.QCoreApplication.translate
        self.MainWindow.setWindowTitle(_translate("MainWindow", "QQ"))
        self.label.setText(_translate("MainWindow", "2097557613"))
        self.pushButton_3.setText(_translate("MainWindow", "关闭"))
        self.pushButton_4.setText(_translate("MainWindow", "隐藏"))
        self.pushButton.setText(_translate("MainWindow", "好友"))
        self.pushButton_2.setText(_translate("MainWindow", "群聊"))
        __sortingEnabled = self.listWidget.isSortingEnabled()
        self.listWidget.setSortingEnabled(False)
        item = self.listWidget.item(0)
        item.setText(_translate("MainWindow", "tcp群"))
        item = self.listWidget.item(1)
        item.setText(_translate("MainWindow", "同学群"))
        item = self.listWidget.item(2)
        item.setText(_translate("MainWindow", "学习资料群"))
        item = self.listWidget.item(3)
        item.setText(_translate("MainWindow", "兼职群"))
        self.listWidget.setSortingEnabled(__sortingEnabled)
        self.treeWidget.headerItem().setText(0, _translate("MainWindow", "好友"))
        __sortingEnabled = self.treeWidget.isSortingEnabled()
        self.treeWidget.setSortingEnabled(False)
        self.treeWidget.topLevelItem(0).setText(0, _translate("MainWindow", "朋友"))
        self.treeWidget.topLevelItem(0).child(0).setText(0, _translate("MainWindow", "2097557613"))
        self.treeWidget.topLevelItem(0).child(1).setText(0, _translate("MainWindow", "2097557614"))
        self.treeWidget.topLevelItem(0).child(2).setText(0, _translate("MainWindow", "2097557617"))
        self.treeWidget.topLevelItem(1).setText(0, _translate("MainWindow", "家人"))
        self.treeWidget.topLevelItem(1).child(0).setText(0, _translate("MainWindow", "2097557615"))
        self.treeWidget.topLevelItem(2).setText(0, _translate("MainWindow", "同学"))
        self.treeWidget.topLevelItem(2).child(0).setText(0, _translate("MainWindow", "2097557618"))
        self.treeWidget.topLevelItem(3).setText(0, _translate("MainWindow", "好友"))
        self.treeWidget.topLevelItem(3).child(0).setText(0, _translate("MainWindow", "2097557616"))
        self.treeWidget.setSortingEnabled(__sortingEnabled)

    def group_req(self,item):
        self.grouptitle=item.text()
        self.user = self.label.text()
        group_chat=['wechat_req']
        group_chat.append(self.grouptitle)
        group_chat.append(self.user)
        group_chat=' '.join(group_chat)
        self.s.send(group_chat.encode())
        self.group_recv(item)


    def group_recv(self,item):
        self.grouptitle = item.text()
        self.user = self.label.text()
        #recv_bk=self.s.recv(self.buffsize).decode('utf-8')
        #print(recv_bk)
        #recv_bk='true'
        #if str(recv_bk) == 'true':
        #recvdata = self.s.recv(self.buffsize).decode('utf-8')
        item = QtWidgets.QListWidgetItem()
        icon1 = QtGui.QIcon()
        icon1.addPixmap(QtGui.QPixmap("image/chatbk.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon1)
        item.setText(str(self.user))
        ui2.listWidget.addItem(item)
        widget2.show()
        ui2.textBrowser.clear()
        ui2.label_2.setText(self.grouptitle)
        #ui2.textBrowser.append("欢迎" + self.user + "\n")
        ui2.recv_thead(self.s)
        ui2.dj_send(self.s, self.grouptitle, self.user)
        ui2.dj_quit(widget2)


    def personal(self,item):
        self.user = self.label.text()
        self.personaltitle = item.text(0)
        if self.personaltitle!='朋友' and self.personaltitle!='同学' and self.personaltitle!='家人' and self.personaltitle!='好友':
            child.show()
            child_ui.label.setText(self.personaltitle)
            child_ui.pel_recv(self.s)
            child_ui.pel_send(self.s,self.user,self.personaltitle)
            child_ui.quit(child)
            child_ui.textBrowser.clear()

    def menuevent(self):
        self.treetext = self.treeWidget.currentItem().text(0)

        if self.treetext == '同学' or self.treetext == '朋友' or self.treetext == '家人' or self.treetext == '好友' or str(self.treetext).isdigit()==False:

            pmenu1 = QtWidgets.QMenu(self.MainWindow)
            AddGroupAct = QtWidgets.QAction("添加分组", pmenu1)
            pmenu1.addAction(AddGroupAct)
            AddGroupAct.triggered.connect(self.addgroup)

            insertm = QtWidgets.QAction("添加好友", pmenu1)
            pmenu1.addAction(insertm)
            insertm.triggered.connect(self.addfriend)
            pmenu1.exec_(QtGui.QCursor.pos())
        else:
            pmenu2 = QtWidgets.QMenu(self.MainWindow)
            deletem = QtWidgets.QAction("删除", pmenu2)
            pmenu2.addAction(deletem)
            deletem.triggered.connect(self.deletefriend)

            pSubMenu = QtWidgets.QMenu("转移联系人至", pmenu2)
            pm1 = QtWidgets.QAction("朋友", pSubMenu)
            pSubMenu.addAction(pm1)
            pm1.triggered.connect(self.movefriend)
            pm2 = QtWidgets.QAction("家人", pSubMenu)
            pSubMenu.addAction(pm2)
            pm2.triggered.connect(self.movefriend)
            pm3 = QtWidgets.QAction("同学", pSubMenu)
            pSubMenu.addAction(pm3)
            pm3.triggered.connect(self.movefriend)
            pm4 = QtWidgets.QAction("好友", pSubMenu)
            pSubMenu.addAction(pm4)
            pm4.triggered.connect(self.movefriend)
            pmenu2.addMenu(pSubMenu)
            pmenu2.exec_(QtGui.QCursor.pos())

    def addgroup(self):
        Diaaddw.show()
        Diaaddw.setWindowTitle("添加分组")
        Diaadd.label.setText("新组名:")

        def gettext():
            groupname = Diaadd.lineEdit.text()
            if groupname != '':
                root5 = QtWidgets.QTreeWidgetItem(self.treeWidget)
                root5.setText(0, groupname)
                self.treeWidget.addTopLevelItem(root5)
                Diaaddw.close()
            else:
                QtWidgets.QMessageBox.information(self.MainWindow, '提示', '组名不能为空!', QtWidgets.QMessageBox.Ok | QtWidgets.QMessageBox.Close,
                                                  QtWidgets.QMessageBox.Close)

        Diaadd.pushButton.clicked.connect(gettext)

    def addfriend(self):
        selectroot = self.treeWidget.currentItem()
        Diaaddw.show()
        Diaaddw.setWindowTitle("添加好友")
        Diaadd.label.setText("好友名:")

        def gettext():
            groupname = Diaadd.lineEdit.text()
            if groupname != '':
                root5 = QtWidgets.QTreeWidgetItem(selectroot)
                root5.setText(0, groupname)
                font = QtGui.QFont()
                font.setPointSize(10)
                root5.setFont(0, font)
                icon6 = QtGui.QIcon()
                icon6.addPixmap(QtGui.QPixmap("image/chatbk.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
                root5.setIcon(0, icon6)
                Diaaddw.close()
            else:
                QtWidgets.QMessageBox.information(self.MainWindow, '提示', '好友名不能为空!', QtWidgets.QMessageBox.Ok | QtWidgets.QMessageBox.Close,
                                                  QtWidgets.QMessageBox.Close)

        Diaadd.pushButton.clicked.connect(gettext)

    def deletefriend(self):
        self.treeWidget.currentItem().setText(0, ' ')

        icon = QtGui.QIcon()
        icon.addPixmap(QtGui.QPixmap(""), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        self.treeWidget.currentItem().setIcon(0, icon)

    def movefriend(self):
        pass









================================================
FILE: QQ.ui
================================================
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>MainWindow</class>
 <widget class="QMainWindow" name="MainWindow">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>326</width>
    <height>627</height>
   </rect>
  </property>
  <property name="minimumSize">
   <size>
    <width>326</width>
    <height>627</height>
   </size>
  </property>
  <property name="maximumSize">
   <size>
    <width>326</width>
    <height>627</height>
   </size>
  </property>
  <property name="windowTitle">
   <string>QQ</string>
  </property>
  <property name="windowIcon">
   <iconset>
    <normaloff>image/QQ1.jpg</normaloff>image/QQ1.jpg</iconset>
  </property>
  <widget class="QWidget" name="centralwidget">
   <widget class="QFrame" name="frame">
    <property name="geometry">
     <rect>
      <x>0</x>
      <y>0</y>
      <width>331</width>
      <height>141</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-color: rgb(0, 85, 255);
</string>
    </property>
    <property name="frameShape">
     <enum>QFrame::StyledPanel</enum>
    </property>
    <property name="frameShadow">
     <enum>QFrame::Raised</enum>
    </property>
    <widget class="QFrame" name="frame_2">
     <property name="geometry">
      <rect>
       <x>120</x>
       <y>30</y>
       <width>70</width>
       <height>65</height>
      </rect>
     </property>
     <property name="sizePolicy">
      <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
       <horstretch>0</horstretch>
       <verstretch>0</verstretch>
      </sizepolicy>
     </property>
     <property name="styleSheet">
      <string notr="true">background-image:url(:/chatbk/image/qq.jpeg)</string>
     </property>
     <property name="frameShape">
      <enum>QFrame::StyledPanel</enum>
     </property>
     <property name="frameShadow">
      <enum>QFrame::Raised</enum>
     </property>
    </widget>
    <widget class="QLabel" name="label">
     <property name="geometry">
      <rect>
       <x>110</x>
       <y>100</y>
       <width>91</width>
       <height>21</height>
      </rect>
     </property>
     <property name="styleSheet">
      <string notr="true">background-color: rgb(85, 255, 0);
color: rgb(255, 255, 255);
background-color: rgb(0, 85, 255);
</string>
     </property>
     <property name="text">
      <string>欢迎:2097557613</string>
     </property>
    </widget>
    <widget class="QPushButton" name="pushButton_3">
     <property name="geometry">
      <rect>
       <x>294</x>
       <y>0</y>
       <width>31</width>
       <height>23</height>
      </rect>
     </property>
     <property name="styleSheet">
      <string notr="true">color: rgb(255, 255, 255);
border-color: rgb(0, 85, 255);</string>
     </property>
     <property name="text">
      <string>关闭</string>
     </property>
    </widget>
    <widget class="QPushButton" name="pushButton_4">
     <property name="geometry">
      <rect>
       <x>260</x>
       <y>0</y>
       <width>31</width>
       <height>23</height>
      </rect>
     </property>
     <property name="styleSheet">
      <string notr="true">color: rgb(255, 255, 255);
border-color: rgb(0, 85, 255);</string>
     </property>
     <property name="text">
      <string>隐藏</string>
     </property>
    </widget>
   </widget>
   <widget class="QFrame" name="frame_3">
    <property name="geometry">
     <rect>
      <x>0</x>
      <y>140</y>
      <width>326</width>
      <height>35</height>
     </rect>
    </property>
    <property name="frameShape">
     <enum>QFrame::StyledPanel</enum>
    </property>
    <property name="frameShadow">
     <enum>QFrame::Raised</enum>
    </property>
    <widget class="QPushButton" name="pushButton">
     <property name="geometry">
      <rect>
       <x>0</x>
       <y>2</y>
       <width>163</width>
       <height>35</height>
      </rect>
     </property>
     <property name="styleSheet">
      <string notr="true">background-color: rgb(255, 239, 239);</string>
     </property>
     <property name="text">
      <string>好友</string>
     </property>
     <property name="icon">
      <iconset>
       <normaloff>image/QQ1.jpg</normaloff>image/QQ1.jpg</iconset>
     </property>
    </widget>
    <widget class="QPushButton" name="pushButton_2">
     <property name="geometry">
      <rect>
       <x>160</x>
       <y>2</y>
       <width>171</width>
       <height>35</height>
      </rect>
     </property>
     <property name="styleSheet">
      <string notr="true">background-color: rgb(255, 248, 248);</string>
     </property>
     <property name="text">
      <string>群聊</string>
     </property>
     <property name="icon">
      <iconset>
       <normaloff>image/wechat.png</normaloff>image/wechat.png</iconset>
     </property>
    </widget>
   </widget>
   <widget class="QListWidget" name="listWidget">
    <property name="geometry">
     <rect>
      <x>0</x>
      <y>171</y>
      <width>331</width>
      <height>451</height>
     </rect>
    </property>
    <property name="iconSize">
     <size>
      <width>45</width>
      <height>45</height>
     </size>
    </property>
    <item>
     <property name="text">
      <string>tcp群</string>
     </property>
     <property name="icon">
      <iconset>
       <normaloff>image/tcp.png</normaloff>image/tcp.png</iconset>
     </property>
    </item>
    <item>
     <property name="text">
      <string>同学群</string>
     </property>
     <property name="icon">
      <iconset>
       <normaloff>image/classmate.jpg</normaloff>image/classmate.jpg</iconset>
     </property>
    </item>
    <item>
     <property name="text">
      <string>学习资料群</string>
     </property>
     <property name="icon">
      <iconset>
       <normaloff>image/learn.jpg</normaloff>image/learn.jpg</iconset>
     </property>
    </item>
    <item>
     <property name="text">
      <string>兼职群</string>
     </property>
     <property name="icon">
      <iconset>
       <normaloff>image/partjob.png</normaloff>image/partjob.png</iconset>
     </property>
    </item>
   </widget>
   <widget class="QTreeWidget" name="treeWidget">
    <property name="geometry">
     <rect>
      <x>-3</x>
      <y>171</y>
      <width>331</width>
      <height>441</height>
     </rect>
    </property>
    <property name="autoScrollMargin">
     <number>10</number>
    </property>
    <property name="iconSize">
     <size>
      <width>40</width>
      <height>40</height>
     </size>
    </property>
    <property name="autoExpandDelay">
     <number>-1</number>
    </property>
    <property name="indentation">
     <number>6</number>
    </property>
    <property name="columnCount">
     <number>1</number>
    </property>
    <column>
     <property name="text">
      <string>好友</string>
     </property>
     <property name="font">
      <font>
       <pointsize>10</pointsize>
      </font>
     </property>
    </column>
    <item>
     <property name="text">
      <string>朋友</string>
     </property>
     <property name="toolTip">
      <string/>
     </property>
     <property name="font">
      <font>
       <pointsize>11</pointsize>
      </font>
     </property>
     <item>
      <property name="text">
       <string>perl</string>
      </property>
      <property name="font">
       <font>
        <pointsize>10</pointsize>
       </font>
      </property>
      <property name="icon">
       <iconset>
        <normaloff>image/chatbk.jpg</normaloff>image/chatbk.jpg</iconset>
      </property>
     </item>
     <item>
      <property name="text">
       <string>黄浩</string>
      </property>
      <property name="icon">
       <iconset>
        <normaloff>image/qq.jpeg</normaloff>image/qq.jpeg</iconset>
      </property>
     </item>
     <item>
      <property name="text">
       <string>小马</string>
      </property>
      <property name="icon">
       <iconset>
        <normaloff>image/loginbk.jpg</normaloff>image/loginbk.jpg</iconset>
      </property>
     </item>
    </item>
    <item>
     <property name="text">
      <string>家人</string>
     </property>
     <property name="font">
      <font>
       <pointsize>11</pointsize>
      </font>
     </property>
     <item>
      <property name="text">
       <string>hacker</string>
      </property>
      <property name="font">
       <font>
        <pointsize>10</pointsize>
       </font>
      </property>
      <property name="icon">
       <iconset>
        <normaloff>image/qqchat.jpg</normaloff>image/qqchat.jpg</iconset>
      </property>
     </item>
    </item>
    <item>
     <property name="text">
      <string>同学</string>
     </property>
     <property name="font">
      <font>
       <pointsize>11</pointsize>
      </font>
     </property>
     <item>
      <property name="text">
       <string>2097557613</string>
      </property>
      <property name="icon">
       <iconset>
        <normaloff>image/qqchatbk.jpg</normaloff>image/qqchatbk.jpg</iconset>
      </property>
     </item>
    </item>
    <item>
     <property name="text">
      <string>好友</string>
     </property>
     <property name="font">
      <font>
       <pointsize>11</pointsize>
      </font>
     </property>
     <item>
      <property name="text">
       <string>小伟</string>
      </property>
      <property name="icon">
       <iconset>
        <normaloff>image/qqlogin.jpg</normaloff>image/qqlogin.jpg</iconset>
      </property>
     </item>
    </item>
   </widget>
  </widget>
  <widget class="QStatusBar" name="statusbar"/>
 </widget>
 <resources>
  <include location="frist.qrc"/>
 </resources>
 <connections>
  <connection>
   <sender>pushButton_3</sender>
   <signal>clicked()</signal>
   <receiver>MainWindow</receiver>
   <slot>close()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>310</x>
     <y>10</y>
    </hint>
    <hint type="destinationlabel">
     <x>342</x>
     <y>57</y>
    </hint>
   </hints>
  </connection>
  <connection>
   <sender>pushButton</sender>
   <signal>clicked()</signal>
   <receiver>listWidget</receiver>
   <slot>hide()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>105</x>
     <y>156</y>
    </hint>
    <hint type="destinationlabel">
     <x>104</x>
     <y>255</y>
    </hint>
   </hints>
  </connection>
  <connection>
   <sender>pushButton_2</sender>
   <signal>clicked()</signal>
   <receiver>listWidget</receiver>
   <slot>show()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>245</x>
     <y>157</y>
    </hint>
    <hint type="destinationlabel">
     <x>213</x>
     <y>284</y>
    </hint>
   </hints>
  </connection>
  <connection>
   <sender>pushButton</sender>
   <signal>clicked()</signal>
   <receiver>treeWidget</receiver>
   <slot>show()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>69</x>
     <y>155</y>
    </hint>
    <hint type="destinationlabel">
     <x>58</x>
     <y>299</y>
    </hint>
   </hints>
  </connection>
  <connection>
   <sender>pushButton_2</sender>
   <signal>clicked()</signal>
   <receiver>treeWidget</receiver>
   <slot>hide()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>212</x>
     <y>165</y>
    </hint>
    <hint type="destinationlabel">
     <x>176</x>
     <y>360</y>
    </hint>
   </hints>
  </connection>
  <connection>
   <sender>pushButton_4</sender>
   <signal>clicked()</signal>
   <receiver>MainWindow</receiver>
   <slot>showMinimized()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>267</x>
     <y>17</y>
    </hint>
    <hint type="destinationlabel">
     <x>347</x>
     <y>96</y>
    </hint>
   </hints>
  </connection>
 </connections>
</ui>


================================================
FILE: QQ_view.py
================================================
#coding=utf-8

import sys
from PyQt5.QtWidgets import (QApplication,QWidget,QListWidget,QListWidgetItem,QFormLayout, QTextBrowser)
from PyQt5.QtGui import QIcon
from PyQt5.QtCore import QSize


class qqview(QListWidget):

    def __init__(self):
        super().__init__()
        self.init()


    def init(self):
        self.setGeometry(100, 50, 800, 550)
        self.setWindowTitle('QQ聊天室')
        self.setWindowIcon(QIcon('image/QQicon.ico'))

        item = QListWidgetItem()
        item.setIcon(QIcon('D:\py\PyQt5学习\image\icon.jpg'))
        item.setText("frist")
        self.setIconSize(QSize(25,25))


        self.addItem(item)
        self.addItem("Item 2")
        self.addItem("Item 3")
        self.addItem("Item 4")

        self.setStyleSheet("QListWidget{border:1px solid black; color:black; }"
                           "QListWidget::Item{padding-top:20px; padding-bottom:4px; }"
                           "QListWidget::Item:hover{background:skyblue; }"
                           "QListWidget::item:selected:!active{border-width:0px; background:lightgreen; }"
                           )




        self.show()





if __name__ == "__main__":
    app = QApplication(sys.argv)
    qq = qqview()
    sys.exit(app.exec_())

================================================
FILE: QQchating.py
================================================
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'QQchating.ui'
#
# Created by: PyQt5 UI code generator 5.11.2
#
# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore, QtGui, QtWidgets
from socket import *
import threading


class Ui_MainWindow(object):

    def recv_thead(self,s):
        buffsize = 1024
        def recv():
            while True:
                recvdata =s.recv(buffsize).decode('utf-8')
                self.textBrowser.append(recvdata + "\n" + "\n")
        re = threading.Thread(target=recv)  # 创建线程
        re.start()


    def setupUi(self, MainWindow):
        self.MainWindow = MainWindow
        self.MainWindow.setObjectName("MainWindow")
        self.MainWindow.resize(771, 588)
        self.MainWindow.setMinimumSize(QtCore.QSize(771, 585))
        self.MainWindow.setMaximumSize(QtCore.QSize(771, 588))
        icon = QtGui.QIcon()
        icon.addPixmap(QtGui.QPixmap("image/QQicon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        self.MainWindow.setWindowIcon(icon)
        self.MainWindow.setStyleSheet("")
        self.centralwidget = QtWidgets.QWidget(MainWindow)
        self.centralwidget.setObjectName("centralwidget")
        self.frame = QtWidgets.QFrame(self.centralwidget)
        self.frame.setGeometry(QtCore.QRect(0, 0, 241, 571))
        self.frame.setStyleSheet("background-image: url(image/qqchatbk.jpg);")
        self.frame.setFrameShape(QtWidgets.QFrame.StyledPanel)
        self.frame.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame.setObjectName("frame")
        self.listWidget = QtWidgets.QListWidget(self.frame)
        self.listWidget.setGeometry(QtCore.QRect(0, 50, 241, 521))
        self.listWidget.setIconSize(QtCore.QSize(40, 40))
        self.listWidget.setGridSize(QtCore.QSize(40, 40))
        self.listWidget.setObjectName("listWidget")
        item = QtWidgets.QListWidgetItem()
        icon1 = QtGui.QIcon()
        icon1.addPixmap(QtGui.QPixmap("image/chatbk.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon1)
        self.listWidget.addItem(item)
        item = QtWidgets.QListWidgetItem()
        icon2 = QtGui.QIcon()
        icon2.addPixmap(QtGui.QPixmap("image/qqchat.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon2)
        self.listWidget.addItem(item)
        item = QtWidgets.QListWidgetItem()
        item.setIcon(icon)
        self.listWidget.addItem(item)
        item = QtWidgets.QListWidgetItem()
        item.setIcon(icon)
        self.listWidget.addItem(item)
        item = QtWidgets.QListWidgetItem()
        icon3 = QtGui.QIcon()
        icon3.addPixmap(QtGui.QPixmap("image/qqlogin.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon3)
        self.listWidget.addItem(item)
        self.label = QtWidgets.QLabel(self.frame)
        self.label.setGeometry(QtCore.QRect(0, 10, 241, 31))
        self.label.setObjectName("label")
        self.frame_2 = QtWidgets.QFrame(self.centralwidget)
        self.frame_2.setGeometry(QtCore.QRect(240, 49, 531, 531))
        self.frame_2.setStyleSheet("background-color: rgb(255, 255, 255);")
        self.frame_2.setFrameShape(QtWidgets.QFrame.StyledPanel)
        self.frame_2.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame_2.setObjectName("frame_2")
        self.textBrowser = QtWidgets.QTextBrowser(self.frame_2)
        self.textBrowser.setGeometry(QtCore.QRect(10, 11, 511, 311))
        self.textBrowser.setObjectName("textBrowser")
        self.textEdit = QtWidgets.QTextEdit(self.frame_2)
        self.textEdit.setGeometry(QtCore.QRect(10, 340, 511, 131))
        self.textEdit.setObjectName("textEdit")
        self.pushButton = QtWidgets.QPushButton(self.frame_2)
        self.pushButton.setGeometry(QtCore.QRect(354, 482, 91, 31))
        self.pushButton.setStyleSheet("background-color: rgb(255, 170, 127);")
        self.pushButton.setObjectName("pushButton")
        #self.pushButton.clicked.connect(self.send)

        self.pushButton_2 = QtWidgets.QPushButton(self.frame_2)
        self.pushButton_2.setGeometry(QtCore.QRect(60, 480, 81, 31))
        self.pushButton_2.setStyleSheet("background-color: rgb(255, 170, 127);")
        self.pushButton_2.setObjectName("pushButton_2")

        self.frame_3 = QtWidgets.QFrame(self.centralwidget)
        self.frame_3.setGeometry(QtCore.QRect(240, 0, 531, 51))
        self.frame_3.setStyleSheet("background-color: rgb(255, 170, 127);")
        self.frame_3.setFrameShape(QtWidgets.QFrame.StyledPanel)
        self.frame_3.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame_3.setObjectName("frame_3")
        self.label_2 = QtWidgets.QLabel(self.frame_3)
        self.label_2.setGeometry(QtCore.QRect(220, 15, 101, 21))
        self.label_2.setStyleSheet("color: rgb(255, 255, 255);")
        self.label_2.setObjectName("label_2")
        #MainWindow.setCentralWidget(self.centralwidget)
        self.statusbar = QtWidgets.QStatusBar(MainWindow)
        self.statusbar.setObjectName("statusbar")
        #MainWindow.setStatusBar(self.statusbar)

        self.retranslateUi(MainWindow)
        QtCore.QMetaObject.connectSlotsByName(MainWindow)


    def retranslateUi(self, MainWindow):
        _translate = QtCore.QCoreApplication.translate
        self.MainWindow.setWindowTitle(_translate("MainWindow", "QQ群聊"))
        __sortingEnabled = self.listWidget.isSortingEnabled()
        self.listWidget.setSortingEnabled(False)
        item = self.listWidget.item(0)
        item.setText(_translate("MainWindow", "小伟"))
        item = self.listWidget.item(1)
        item.setText(_translate("MainWindow", "one"))
        item = self.listWidget.item(2)
        item.setText(_translate("MainWindow", "hacker"))
        item = self.listWidget.item(3)
        item.setText(_translate("MainWindow", "perl"))
        item = self.listWidget.item(4)
        item.setText(_translate("MainWindow", "葱"))
        self.listWidget.setSortingEnabled(__sortingEnabled)
        self.label.setText(_translate("MainWindow", "群聊人员:"))
        self.pushButton.setText(_translate("MainWindow", "发送"))
        self.pushButton_2.setText(_translate("MainWindow", "关闭"))
        self.label_2.setText(_translate("MainWindow", "<html><head/><body><p><span style=\" font-size:16pt;\">TCP群聊</span></p></body></html>"))

    def dj_send(self,s,wename,user):
        def send():
            we_text=['wechat']
            we_text.append(wename)
            we_text.append(user)
            text=self.textEdit.toPlainText()
            if text!='':
                we_text.append(text)
                we_text=' '.join(we_text)
                s.send(we_text.encode())
            else:
                QtWidgets.QMessageBox.information(self.MainWindow, '警告', '输入消息为空!', QtWidgets.QMessageBox.Ok | QtWidgets.QMessageBox.Close, QtWidgets.QMessageBox.Close)
            self.textEdit.clear()

        self.pushButton.clicked.connect(send)

    def dj_quit(self,ui2):
        def quit():
            ui2.close()
        self.pushButton_2.clicked.connect(quit)


#import frist_rc

'''if __name__ == "__main__":
    import sys
    app = QtWidgets.QApplication(sys.argv)
    widget = QtWidgets.QWidget()
    ui = Ui_MainWindow()
    ui.setupUi(widget)
    widget.show()
    #ui.tcp_start()

    sys.exit(app.exec_())'''


================================================
FILE: QQchating.ui
================================================
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>MainWindow</class>
 <widget class="QMainWindow" name="MainWindow">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>771</width>
    <height>588</height>
   </rect>
  </property>
  <property name="minimumSize">
   <size>
    <width>771</width>
    <height>585</height>
   </size>
  </property>
  <property name="maximumSize">
   <size>
    <width>771</width>
    <height>588</height>
   </size>
  </property>
  <property name="windowTitle">
   <string>QQ群聊</string>
  </property>
  <property name="windowIcon">
   <iconset>
    <normaloff>image/QQicon.ico</normaloff>image/QQicon.ico</iconset>
  </property>
  <property name="styleSheet">
   <string notr="true"/>
  </property>
  <widget class="QWidget" name="centralwidget">
   <widget class="QFrame" name="frame">
    <property name="geometry">
     <rect>
      <x>0</x>
      <y>0</y>
      <width>241</width>
      <height>571</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-image: url(:/chatbk/image/qqchatbk.jpg);</string>
    </property>
    <property name="frameShape">
     <enum>QFrame::StyledPanel</enum>
    </property>
    <property name="frameShadow">
     <enum>QFrame::Raised</enum>
    </property>
    <widget class="QListWidget" name="listWidget">
     <property name="geometry">
      <rect>
       <x>0</x>
       <y>50</y>
       <width>241</width>
       <height>521</height>
      </rect>
     </property>
     <property name="iconSize">
      <size>
       <width>40</width>
       <height>40</height>
      </size>
     </property>
     <property name="gridSize">
      <size>
       <width>40</width>
       <height>40</height>
      </size>
     </property>
     <item>
      <property name="text">
       <string>小伟</string>
      </property>
      <property name="icon">
       <iconset resource="frist.qrc">
        <normaloff>:/chatbk/image/chatbk.jpg</normaloff>:/chatbk/image/chatbk.jpg</iconset>
      </property>
     </item>
     <item>
      <property name="text">
       <string>one</string>
      </property>
      <property name="icon">
       <iconset>
        <normaloff>image/qqchat.jpg</normaloff>image/qqchat.jpg</iconset>
      </property>
     </item>
     <item>
      <property name="text">
       <string>hacker</string>
      </property>
      <property name="icon">
       <iconset>
        <normaloff>image/QQicon.ico</normaloff>image/QQicon.ico</iconset>
      </property>
     </item>
     <item>
      <property name="text">
       <string>perl</string>
      </property>
      <property name="icon">
       <iconset>
        <normaloff>image/QQicon.ico</normaloff>image/QQicon.ico</iconset>
      </property>
     </item>
     <item>
      <property name="text">
       <string>葱</string>
      </property>
      <property name="icon">
       <iconset>
        <normaloff>image/qqlogin.jpg</normaloff>image/qqlogin.jpg</iconset>
      </property>
     </item>
    </widget>
    <widget class="QLabel" name="label">
     <property name="geometry">
      <rect>
       <x>0</x>
       <y>10</y>
       <width>241</width>
       <height>31</height>
      </rect>
     </property>
     <property name="text">
      <string>群聊人员:</string>
     </property>
    </widget>
   </widget>
   <widget class="QFrame" name="frame_2">
    <property name="geometry">
     <rect>
      <x>240</x>
      <y>49</y>
      <width>531</width>
      <height>531</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-color: rgb(255, 255, 255);</string>
    </property>
    <property name="frameShape">
     <enum>QFrame::StyledPanel</enum>
    </property>
    <property name="frameShadow">
     <enum>QFrame::Raised</enum>
    </property>
    <widget class="QTextBrowser" name="textBrowser">
     <property name="geometry">
      <rect>
       <x>10</x>
       <y>11</y>
       <width>511</width>
       <height>311</height>
      </rect>
     </property>
    </widget>
    <widget class="QTextEdit" name="textEdit">
     <property name="geometry">
      <rect>
       <x>10</x>
       <y>340</y>
       <width>511</width>
       <height>131</height>
      </rect>
     </property>
    </widget>
    <widget class="QPushButton" name="pushButton">
     <property name="geometry">
      <rect>
       <x>354</x>
       <y>482</y>
       <width>91</width>
       <height>31</height>
      </rect>
     </property>
     <property name="styleSheet">
      <string notr="true">background-color: rgb(255, 170, 127);</string>
     </property>
     <property name="text">
      <string>发送</string>
     </property>
    </widget>
    <widget class="QPushButton" name="pushButton_2">
     <property name="geometry">
      <rect>
       <x>60</x>
       <y>480</y>
       <width>81</width>
       <height>31</height>
      </rect>
     </property>
     <property name="styleSheet">
      <string notr="true">background-color: rgb(255, 170, 127);</string>
     </property>
     <property name="text">
      <string>关闭</string>
     </property>
    </widget>
   </widget>
   <widget class="QFrame" name="frame_3">
    <property name="geometry">
     <rect>
      <x>240</x>
      <y>0</y>
      <width>531</width>
      <height>51</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-color: rgb(255, 170, 127);</string>
    </property>
    <property name="frameShape">
     <enum>QFrame::StyledPanel</enum>
    </property>
    <property name="frameShadow">
     <enum>QFrame::Raised</enum>
    </property>
    <widget class="QLabel" name="label_2">
     <property name="geometry">
      <rect>
       <x>220</x>
       <y>15</y>
       <width>101</width>
       <height>21</height>
      </rect>
     </property>
     <property name="styleSheet">
      <string notr="true">color: rgb(255, 255, 255);</string>
     </property>
     <property name="text">
      <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:16pt;&quot;&gt;TCP群聊&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
     </property>
    </widget>
   </widget>
  </widget>
  <widget class="QStatusBar" name="statusbar"/>
 </widget>
 <resources>
  <include location="frist.qrc"/>
 </resources>
 <connections/>
</ui>


================================================
FILE: QQlogin.py
================================================
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'QQlogin.ui'
#
# Created by: PyQt5 UI code generator 5.11.2
#
# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore, QtGui, QtWidgets

class Ui_Form(object):
    def setupUi(self, Form):
        Form.setObjectName("Form")
        Form.resize(364, 341)
        Form.setMinimumSize(QtCore.QSize(364, 340))
        Form.setMaximumSize(QtCore.QSize(364, 341))
        font = QtGui.QFont()
        font.setPointSize(10)
        Form.setFont(font)
        icon = QtGui.QIcon()
        icon.addPixmap(QtGui.QPixmap("image/QQicon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        Form.setWindowIcon(icon)
        Form.setStyleSheet("background-color: rgb(255, 255, 255);\n"
"")
        self.label = QtWidgets.QLabel(Form)
        self.label.setGeometry(QtCore.QRect(50, 170, 31, 21))
        self.label.setMinimumSize(QtCore.QSize(0, 0))
        self.label.setMaximumSize(QtCore.QSize(54, 21))
        font = QtGui.QFont()
        font.setPointSize(10)
        self.label.setFont(font)
        self.label.setObjectName("label")
        self.lineEdit = QtWidgets.QLineEdit(Form)
        self.lineEdit.setGeometry(QtCore.QRect(90, 160, 201, 31))
        self.lineEdit.setObjectName("lineEdit")
        self.label_2 = QtWidgets.QLabel(Form)
        self.label_2.setGeometry(QtCore.QRect(50, 210, 31, 20))
        self.label_2.setObjectName("label_2")
        self.lineEdit_2 = QtWidgets.QLineEdit(Form)
        self.lineEdit_2.setGeometry(QtCore.QRect(90, 200, 201, 31))
        self.lineEdit_2.setObjectName("lineEdit_2")
        self.pushButton = QtWidgets.QPushButton(Form)
        self.pushButton.setGeometry(QtCore.QRect(50, 260, 241, 31))
        font = QtGui.QFont()
        font.setPointSize(11)
        self.pushButton.setFont(font)
        self.pushButton.setStyleSheet("color: rgb(255, 255, 255);\n"
"background-color: rgb(0, 85, 255);")
        self.pushButton.setObjectName("pushButton")
        self.frame = QtWidgets.QFrame(Form)
        self.frame.setGeometry(QtCore.QRect(0, 0, 364, 151))
        self.frame.setStyleSheet("background-image: url(image/loginicon.jpg);")
        self.frame.setFrameShape(QtWidgets.QFrame.StyledPanel)
        self.frame.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame.setObjectName("frame")
        self.pushButton_2 = QtWidgets.QPushButton(self.frame)
        self.pushButton_2.setGeometry(QtCore.QRect(334, 0, 28, 0))
        self.pushButton_2.setText("")
        self.pushButton_2.setObjectName("pushButton_2")
        self.pushButton_3 = QtWidgets.QPushButton(self.frame)
        self.pushButton_3.setGeometry(QtCore.QRect(334, 0, 29, 20))
        self.pushButton_3.setStyleSheet("background-image: url(image/logincolse.jpg);")
        self.pushButton_3.setText("")
        self.pushButton_3.setObjectName("pushButton_3")
        self.pushButton_4 = QtWidgets.QPushButton(self.frame)
        self.pushButton_4.setGeometry(QtCore.QRect(300, 0, 28, 20))
        self.pushButton_4.setStyleSheet("background-image: url(image/loginhide.jpg);\n"
"border-color: rgb(0, 85, 255);")
        self.pushButton_4.setText("")
        self.pushButton_4.setObjectName("pushButton_4")

        self.retranslateUi(Form)
        self.pushButton_4.clicked.connect(Form.showMinimized)
        self.pushButton_3.clicked.connect(Form.close)
        QtCore.QMetaObject.connectSlotsByName(Form)

    def retranslateUi(self, Form):
        _translate = QtCore.QCoreApplication.translate
        Form.setWindowTitle(_translate("Form", "QQ登录"))
        self.label.setText(_translate("Form", "账号:"))
        self.label_2.setText(_translate("Form", "密码:"))
        self.pushButton.setText(_translate("Form", "登录"))

#import frist_rc


================================================
FILE: QQlogin.ui
================================================
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>Form</class>
 <widget class="QWidget" name="Form">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>364</width>
    <height>341</height>
   </rect>
  </property>
  <property name="minimumSize">
   <size>
    <width>364</width>
    <height>340</height>
   </size>
  </property>
  <property name="maximumSize">
   <size>
    <width>364</width>
    <height>341</height>
   </size>
  </property>
  <property name="font">
   <font>
    <pointsize>10</pointsize>
   </font>
  </property>
  <property name="windowTitle">
   <string>QQ登录</string>
  </property>
  <property name="windowIcon">
   <iconset>
    <normaloff>image/QQicon.ico</normaloff>image/QQicon.ico</iconset>
  </property>
  <property name="styleSheet">
   <string notr="true">background-color: rgb(255, 255, 255);
</string>
  </property>
  <widget class="QLabel" name="label">
   <property name="geometry">
    <rect>
     <x>50</x>
     <y>170</y>
     <width>31</width>
     <height>21</height>
    </rect>
   </property>
   <property name="minimumSize">
    <size>
     <width>0</width>
     <height>0</height>
    </size>
   </property>
   <property name="maximumSize">
    <size>
     <width>54</width>
     <height>21</height>
    </size>
   </property>
   <property name="font">
    <font>
     <pointsize>10</pointsize>
    </font>
   </property>
   <property name="text">
    <string>账号:</string>
   </property>
  </widget>
  <widget class="QLineEdit" name="lineEdit">
   <property name="geometry">
    <rect>
     <x>90</x>
     <y>160</y>
     <width>201</width>
     <height>31</height>
    </rect>
   </property>
  </widget>
  <widget class="QLabel" name="label_2">
   <property name="geometry">
    <rect>
     <x>50</x>
     <y>210</y>
     <width>31</width>
     <height>20</height>
    </rect>
   </property>
   <property name="text">
    <string>密码:</string>
   </property>
  </widget>
  <widget class="QLineEdit" name="lineEdit_2">
   <property name="geometry">
    <rect>
     <x>90</x>
     <y>200</y>
     <width>201</width>
     <height>31</height>
    </rect>
   </property>
  </widget>
  <widget class="QPushButton" name="pushButton">
   <property name="geometry">
    <rect>
     <x>50</x>
     <y>260</y>
     <width>241</width>
     <height>31</height>
    </rect>
   </property>
   <property name="font">
    <font>
     <pointsize>11</pointsize>
    </font>
   </property>
   <property name="styleSheet">
    <string notr="true">color: rgb(255, 255, 255);
background-color: rgb(0, 85, 255);</string>
   </property>
   <property name="text">
    <string>登录</string>
   </property>
  </widget>
  <widget class="QFrame" name="frame">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
     <width>364</width>
     <height>151</height>
    </rect>
   </property>
   <property name="styleSheet">
    <string notr="true">background-image: url(:/icon/loginicon.jpg);</string>
   </property>
   <property name="frameShape">
    <enum>QFrame::StyledPanel</enum>
   </property>
   <property name="frameShadow">
    <enum>QFrame::Raised</enum>
   </property>
   <widget class="QPushButton" name="pushButton_2">
    <property name="geometry">
     <rect>
      <x>334</x>
      <y>0</y>
      <width>28</width>
      <height>0</height>
     </rect>
    </property>
    <property name="text">
     <string/>
    </property>
   </widget>
   <widget class="QPushButton" name="pushButton_3">
    <property name="geometry">
     <rect>
      <x>334</x>
      <y>0</y>
      <width>29</width>
      <height>20</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-image: url(:/icon/logincolse.jpg);</string>
    </property>
    <property name="text">
     <string/>
    </property>
   </widget>
   <widget class="QPushButton" name="pushButton_4">
    <property name="geometry">
     <rect>
      <x>300</x>
      <y>0</y>
      <width>28</width>
      <height>20</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-image: url(:/icon/loginhide.jpg);
border-color: rgb(0, 85, 255);</string>
    </property>
    <property name="text">
     <string/>
    </property>
   </widget>
  </widget>
 </widget>
 <resources>
  <include location="../../py~exe/img/frist.qrc"/>
 </resources>
 <connections>
  <connection>
   <sender>pushButton_4</sender>
   <signal>clicked()</signal>
   <receiver>Form</receiver>
   <slot>showMinimized()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>314</x>
     <y>9</y>
    </hint>
    <hint type="destinationlabel">
     <x>318</x>
     <y>199</y>
    </hint>
   </hints>
  </connection>
  <connection>
   <sender>pushButton_3</sender>
   <signal>clicked()</signal>
   <receiver>Form</receiver>
   <slot>close()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>345</x>
     <y>15</y>
    </hint>
    <hint type="destinationlabel">
     <x>321</x>
     <y>250</y>
    </hint>
   </hints>
  </connection>
 </connections>
</ui>


================================================
FILE: README.md
================================================
# pyqt5-QQ
利用python PyQt5图形库开发的一个基于tcp协议仿QQ聊天pc软件工具<br>
----
*软件介绍:<br>
---
>>运行启动<br>
>>功能展示<br>
>>源码详解介绍<br>

*运行启动<br>
---
>>由于本软件基于tcp协议开发,首先要运行服务端Tcp_server.py,再运行login.py文件即可看到软件界面(开发工具pycharm)<br>

*功能展示<br>
----
>>Tcp_server.py服务端控制台打印信息<br>
![image](https://github.com/WEIYANLIN1996/pyqt5-QQ/blob/master/introduction-img/图片8.png)
>>登录界面<br>
![image](https://github.com/WEIYANLIN1996/pyqt5-QQ/blob/master/introduction-img/图片18.jpg)
>>主界面<br>
![image](https://github.com/WEIYANLIN1996/pyqt5-QQ/blob/master/introduction-img/图片30.jpg)
>>聊天界面(可个人聊天、群聊)<br>
![image](https://github.com/WEIYANLIN1996/pyqt5-QQ/blob/master/introduction-img/图片22.jpg)
*源码详解介绍<br>
>>最近没什么时间,有空更新,有问题可+微信:yanlinAI01
>>![17c07d85eaaab45a715d0c4d83332d4](https://github.com/WEIYANLIN1996/pyqt5-QQ/assets/44152810/54196f32-a433-4722-8acf-9ca5bb08a6cd)



================================================
FILE: Tcp_server.py
================================================
#-*-coding:utf-8-*-

from socket import *
import threading



address='127.0.0.1'
port=6337
buffsize=1024
s = socket(AF_INET, SOCK_STREAM)
s.bind((address,port))
s.listen(10)     #最大连接数

client_list=[]

user_list=[[2097557613,123456],[2097557614,123456],[2097557615,123456],[2097557616,123456],[2097557617,123456],[2097557618,123456]]
user_l=len(user_list)
user_client=[]
group_list=[['tcp群'],['兼职群'],['同学群'],['学习资料群']]

def login(logindata,clientsock):

    for x in range(0,user_l):
        print("登录请求"+str(logindata[1]))
        if len(user_client)>=1:
            ul=len(user_client)

            if str(user_list[x][0])==str(logindata[1]) and str(user_list[x][1])!=str(logindata[2]):
                login_bkinfo = 'flase-pw'
                clientsock.send(login_bkinfo.encode())
                break
            elif str(user_list[x][0])==str(logindata[1]) and str(user_list[x][1])==str(logindata[2]):
                for user_cl in range(0, ul):
                    if str(user_client[user_cl][0]) == str(logindata[1]):
                        login_bkinfo = 'flase-login'
                        clientsock.send(login_bkinfo.encode())
                        break
                    elif user_cl == ul - 1:
                        usercl=[]
                        usercl.append(logindata[1])
                        usercl.append(clientsock)
                        login_bkinfo = 'true'
                        user_client.append(usercl)
                        print(user_client)
                        clientsock.send(login_bkinfo.encode())
                break
            elif x==user_l-1:
                login_bkinfo = 'flase-user'
                clientsock.send(login_bkinfo.encode())

        else:

            if str(user_list[x][0])==str(logindata[1]) and str(user_list[x][1])!=str(logindata[2]):
                login_bkinfo = 'flase-pw'
                clientsock.send(login_bkinfo.encode())
                break
            elif str(user_list[x][0])==str(logindata[1]) and str(user_list[x][1])==str(logindata[2]):
                usercl=[]
                usercl.append(logindata[1])
                usercl.append(clientsock)
                login_bkinfo = 'true'
                user_client.append(usercl)
                print(user_client)
                clientsock.send(login_bkinfo.encode())
                break
            elif x==user_l-1:
                login_bkinfo = 'flase-user'
                clientsock.send(login_bkinfo.encode())






def tcplink(clientsock,clientaddress):
    group_l = len(group_list)
    while True:
        recvdata=clientsock.recv(buffsize).decode('utf-8')
        logindata=recvdata.split(' ')
        print(logindata)
        if str(logindata[0])=='login':
            login(logindata,clientsock)

        elif str(logindata[0])=='wechat_req':
            #reqci=1
            for y in range(0,group_l):
                if str(group_list[y][0])==str(logindata[1]):
                    requser=str(logindata[2])+' '+'加入'
                    group_list[y].append(clientsock)
                    groupl=len(group_list[y])
                    if groupl>2:
                        for h in range(1,groupl):
                            group_list[y][h].send(requser.encode())
                    else:
                        clientsock.send(requser.encode())
                    break

        elif str(logindata[0])=='wechat':
            for wl in range(0,group_l):
                if str(group_list[wl][0])==str(logindata[1]):
                    senddata=str(logindata[2])+":"+str(logindata[3])
                    l = len(group_list[wl])
                    try:
                        if l >=2:
                            for x in range(1, l):
                                group_list[wl][x].send(senddata.encode())
                        else:
                            clientsock.send(senddata.encode())
                            break
                        print("群聊信息" + str(senddata)+str(clientaddress))
                    except ValueError:
                        break

        elif str(logindata[0])=='personal':
            #print(logindata)
            user_cl = len(user_client)
            #print(user_client)
            send_info = str(logindata[1])+":"+str(logindata[3])
            z=1
            for pl in range(0,user_cl):
                if user_client[pl][0]==logindata[2]:
                    user_client[pl][1].send(send_info.encode())
                    #clientsock.send(send_info.encode())
                    break
                elif z==user_cl:
                    back=str(logindata[2])+'不在线'
                    clientsock.send(back.encode())
                z+=1

        elif str(logindata[0])=='':
            print('无法识别:')
            print(logindata[0])
            break

    clientsock.close()
    del client_list[-1]




while True:
    clientsock,clientaddress=s.accept()
    client_list.append(clientsock)
    print('connect from:',clientaddress)
    '''joinfo=str(clientaddress)
    try:
        ld=len(client_list)
        for x in range(0, ld):
            client_list[x].send(joinfo.encode())
    except ValueError:
        continue
    '''
    t=threading.Thread(target=tcplink,args=(clientsock,clientaddress))  #新创建的线程
    t.start()
s.close()





================================================
FILE: frist.qrc
================================================
<RCC>
  <qresource prefix="chatbk">
    <file>image/loginicon.jpg</file>
    <file>image/loginhide.jpg</file>
    <file>image/logincolse.jpg</file>
    <file>image/qqman2.jpg</file>
    <file>image/qq.jpeg</file>
    <file>image/qqchat.jpg</file>
    <file>image/chatbk.jpg</file>
    <file>image/QQicon.ico</file>
    <file>image/qqchatbk.jpg</file>
  </qresource>
</RCC>


================================================
FILE: groupchat.py
================================================
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'groupchat.ui'
#
# Created by: PyQt5 UI code generator 5.11.2
#
# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore, QtGui, QtWidgets

class Ui_Dialog(object):
    def setupUi(self, Dialog):
        Dialog.setObjectName("Dialog")
        Dialog.resize(662, 577)
        icon = QtGui.QIcon()
        icon.addPixmap(QtGui.QPixmap("image/qq.jpeg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        Dialog.setWindowIcon(icon)
        Dialog.setStyleSheet("")
        self.listWidget = QtWidgets.QListWidget(Dialog)
        self.listWidget.setGeometry(QtCore.QRect(0, 81, 201, 491))
        self.listWidget.setStyleSheet("background-image: url(image/qqchatbk.jpg);")
        self.listWidget.setIconSize(QtCore.QSize(45, 45))
        self.listWidget.setObjectName("listWidget")
        item = QtWidgets.QListWidgetItem()
        icon1 = QtGui.QIcon()
        icon1.addPixmap(QtGui.QPixmap("image/qqlogin.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon1)
        self.listWidget.addItem(item)
        item = QtWidgets.QListWidgetItem()
        icon2 = QtGui.QIcon()
        icon2.addPixmap(QtGui.QPixmap("image/partjob.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon2)
        self.listWidget.addItem(item)
        item = QtWidgets.QListWidgetItem()
        icon3 = QtGui.QIcon()
        icon3.addPixmap(QtGui.QPixmap("image/loginbk.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon3)
        self.listWidget.addItem(item)
        item = QtWidgets.QListWidgetItem()
        icon4 = QtGui.QIcon()
        icon4.addPixmap(QtGui.QPixmap("image/chatbk.jpg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        item.setIcon(icon4)
        self.listWidget.addItem(item)
        self.frame = QtWidgets.QFrame(Dialog)
        self.frame.setGeometry(QtCore.QRect(0, 0, 201, 81))
        self.frame.setStyleSheet("background-image: url(:/img/image/qqchatbk.jpg);")
        self.frame.setFrameShape(QtWidgets.QFrame.StyledPanel)
        self.frame.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame.setObjectName("frame")
        self.label_2 = QtWidgets.QLabel(self.frame)
        self.label_2.setGeometry(QtCore.QRect(0, 0, 201, 41))
        self.label_2.setObjectName("label_2")
        self.label = QtWidgets.QLabel(self.frame)
        self.label.setGeometry(QtCore.QRect(0, 40, 201, 41))
        self.label.setObjectName("label")
        self.frame_2 = QtWidgets.QFrame(Dialog)
        self.frame_2.setGeometry(QtCore.QRect(190, -10, 471, 581))
        self.frame_2.setMinimumSize(QtCore.QSize(471, 581))
        self.frame_2.setMaximumSize(QtCore.QSize(471, 581))
        self.frame_2.setStyleSheet(";\n"
"background-color: rgb(255, 255, 255);")
        self.frame_2.setFrameShape(QtWidgets.QFrame.StyledPanel)
        self.frame_2.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame_2.setObjectName("frame_2")
        self.textEdit = QtWidgets.QTextEdit(self.frame_2)
        self.textEdit.setGeometry(QtCore.QRect(10, 410, 431, 101))
        self.textEdit.setStyleSheet("background-color: rgb(255, 255, 255);")
        self.textEdit.setObjectName("textEdit")
        self.textBrowser = QtWidgets.QTextBrowser(self.frame_2)
        self.textBrowser.setGeometry(QtCore.QRect(10, 81, 431, 311))
        self.textBrowser.setStyleSheet("background-color: rgb(255, 255, 255);")
        self.textBrowser.setObjectName("textBrowser")
        self.pushButton = QtWidgets.QPushButton(self.frame_2)
        self.pushButton.setGeometry(QtCore.QRect(30, 530, 91, 31))
        self.pushButton.setStyleSheet("background-color: rgb(255, 170, 127);")
        self.pushButton.setObjectName("pushButton")
        self.pushButton_2 = QtWidgets.QPushButton(self.frame_2)
        self.pushButton_2.setGeometry(QtCore.QRect(280, 530, 101, 31))
        self.pushButton_2.setStyleSheet("background-color: rgb(255, 170, 127);")
        self.pushButton_2.setObjectName("pushButton_2")
        self.frame_3 = QtWidgets.QFrame(self.frame_2)
        self.frame_3.setGeometry(QtCore.QRect(0, 0, 471, 61))
        self.frame_3.setStyleSheet("background-color: rgb(255, 170, 127);")
        self.frame_3.setFrameShape(QtWidgets.QFrame.StyledPanel)
        self.frame_3.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame_3.setObjectName("frame_3")
        self.label_3 = QtWidgets.QLabel(self.frame_3)
        self.label_3.setGeometry(QtCore.QRect(200, 20, 61, 31))
        self.label_3.setStyleSheet("color: rgb(255, 255, 255);\n"
"font: 14pt \"Agency FB\";")
        self.label_3.setObjectName("label_3")

        self.retranslateUi(Dialog)
        QtCore.QMetaObject.connectSlotsByName(Dialog)

    def retranslateUi(self, Dialog):
        _translate = QtCore.QCoreApplication.translate
        Dialog.setWindowTitle(_translate("Dialog", "群聊"))
        __sortingEnabled = self.listWidget.isSortingEnabled()
        self.listWidget.setSortingEnabled(False)
        item = self.listWidget.item(0)
        item.setText(_translate("Dialog", "perl"))
        item = self.listWidget.item(1)
        item.setText(_translate("Dialog", "hacker"))
        item = self.listWidget.item(2)
        item.setText(_translate("Dialog", "2097557613"))
        item = self.listWidget.item(3)
        item.setText(_translate("Dialog", "小明"))
        self.listWidget.setSortingEnabled(__sortingEnabled)
        self.label_2.setText(_translate("Dialog", "2097557613"))
        self.label.setText(_translate("Dialog", "群聊人员:"))
        self.pushButton.setText(_translate("Dialog", "关闭"))
        self.pushButton_2.setText(_translate("Dialog", "发送"))
        self.label_3.setText(_translate("Dialog", "TCP群"))




================================================
FILE: groupchat.ui
================================================
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>Dialog</class>
 <widget class="QDialog" name="Dialog">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>662</width>
    <height>577</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>群聊</string>
  </property>
  <property name="windowIcon">
   <iconset>
    <normaloff>image/qq.jpeg</normaloff>image/qq.jpeg</iconset>
  </property>
  <property name="styleSheet">
   <string notr="true"/>
  </property>
  <widget class="QListWidget" name="listWidget">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>81</y>
     <width>201</width>
     <height>491</height>
    </rect>
   </property>
   <property name="styleSheet">
    <string notr="true">background-image: url(:/img/image/qqchatbk.jpg);</string>
   </property>
   <property name="iconSize">
    <size>
     <width>45</width>
     <height>45</height>
    </size>
   </property>
   <item>
    <property name="text">
     <string>perl</string>
    </property>
    <property name="icon">
     <iconset>
      <normaloff>image/qqlogin.jpg</normaloff>image/qqlogin.jpg</iconset>
    </property>
   </item>
   <item>
    <property name="text">
     <string>hacker</string>
    </property>
    <property name="icon">
     <iconset>
      <normaloff>image/partjob.png</normaloff>image/partjob.png</iconset>
    </property>
   </item>
   <item>
    <property name="text">
     <string>2097557613</string>
    </property>
    <property name="icon">
     <iconset>
      <normaloff>image/loginbk.jpg</normaloff>image/loginbk.jpg</iconset>
    </property>
   </item>
   <item>
    <property name="text">
     <string>小明</string>
    </property>
    <property name="icon">
     <iconset>
      <normaloff>image/chatbk.jpg</normaloff>image/chatbk.jpg</iconset>
    </property>
   </item>
  </widget>
  <widget class="QFrame" name="frame">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
     <width>201</width>
     <height>81</height>
    </rect>
   </property>
   <property name="styleSheet">
    <string notr="true">background-image: url(:/img/image/qqchatbk.jpg);</string>
   </property>
   <property name="frameShape">
    <enum>QFrame::StyledPanel</enum>
   </property>
   <property name="frameShadow">
    <enum>QFrame::Raised</enum>
   </property>
   <widget class="QLabel" name="label_2">
    <property name="geometry">
     <rect>
      <x>0</x>
      <y>0</y>
      <width>201</width>
      <height>41</height>
     </rect>
    </property>
    <property name="text">
     <string>2097557613</string>
    </property>
   </widget>
   <widget class="QLabel" name="label">
    <property name="geometry">
     <rect>
      <x>0</x>
      <y>40</y>
      <width>201</width>
      <height>41</height>
     </rect>
    </property>
    <property name="text">
     <string>群聊人员:</string>
    </property>
   </widget>
  </widget>
  <widget class="QFrame" name="frame_2">
   <property name="geometry">
    <rect>
     <x>190</x>
     <y>-10</y>
     <width>471</width>
     <height>581</height>
    </rect>
   </property>
   <property name="minimumSize">
    <size>
     <width>471</width>
     <height>581</height>
    </size>
   </property>
   <property name="maximumSize">
    <size>
     <width>471</width>
     <height>581</height>
    </size>
   </property>
   <property name="styleSheet">
    <string notr="true">;
background-color: rgb(255, 255, 255);</string>
   </property>
   <property name="frameShape">
    <enum>QFrame::StyledPanel</enum>
   </property>
   <property name="frameShadow">
    <enum>QFrame::Raised</enum>
   </property>
   <widget class="QTextEdit" name="textEdit">
    <property name="geometry">
     <rect>
      <x>10</x>
      <y>410</y>
      <width>431</width>
      <height>101</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-color: rgb(255, 255, 255);</string>
    </property>
   </widget>
   <widget class="QTextBrowser" name="textBrowser">
    <property name="geometry">
     <rect>
      <x>10</x>
      <y>81</y>
      <width>431</width>
      <height>311</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-color: rgb(255, 255, 255);</string>
    </property>
   </widget>
   <widget class="QPushButton" name="pushButton">
    <property name="geometry">
     <rect>
      <x>30</x>
      <y>530</y>
      <width>91</width>
      <height>31</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-color: rgb(255, 170, 127);</string>
    </property>
    <property name="text">
     <string>关闭</string>
    </property>
   </widget>
   <widget class="QPushButton" name="pushButton_2">
    <property name="geometry">
     <rect>
      <x>280</x>
      <y>530</y>
      <width>101</width>
      <height>31</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-color: rgb(255, 170, 127);</string>
    </property>
    <property name="text">
     <string>发送</string>
    </property>
   </widget>
   <widget class="QFrame" name="frame_3">
    <property name="geometry">
     <rect>
      <x>0</x>
      <y>0</y>
      <width>471</width>
      <height>61</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-color: rgb(255, 170, 127);</string>
    </property>
    <property name="frameShape">
     <enum>QFrame::StyledPanel</enum>
    </property>
    <property name="frameShadow">
     <enum>QFrame::Raised</enum>
    </property>
    <widget class="QLabel" name="label_3">
     <property name="geometry">
      <rect>
       <x>200</x>
       <y>20</y>
       <width>61</width>
       <height>31</height>
      </rect>
     </property>
     <property name="styleSheet">
      <string notr="true">color: rgb(255, 255, 255);
font: 14pt &quot;Agency FB&quot;;</string>
     </property>
     <property name="text">
      <string>TCP群</string>
     </property>
    </widget>
   </widget>
  </widget>
 </widget>
 <resources>
  <include location="login.qrc"/>
 </resources>
 <connections/>
</ui>


================================================
FILE: image/DressUp-master.zip.crdownload
================================================
[File too large to display: 14.6 MB]

================================================
FILE: image/example.com.zone
================================================
$ttl 36000
example.com.	IN	SOA	dns.example.com. admin.example.com. (
			200509050  ; serial
			10800      ; refresh (3 hours)
			3600       ; retry (1 hour)
			604800     ; expire (1 week)
			36000      ; minimum (10 hours)
                        ) 
			
example.com.	     IN	NS	dns.example.com.

dns  		     IN	A	192.168.98.1
www.example.com.     IN	A	192.168.98.1
mail1.example.com.   IN	A	192.168.98.1
mail2.example.com.   IN	A	192.168.98.1
mail3.example.com.   IN	A	192.168.98.1

rhel4	             IN	CNAME	dns
bbs	             IN	CNAME	www
samba		     IN	CNAME	www

example.com.	     IN	MX	10 mail1.example.com.
example.com.	     IN	MX	11 mail2.example.com.
example.com.	     IN	MX	12 mail3.example.com.

ftp  		     IN	A	192.168.98.1
mail                 IN A       192.168.98.1
mail2                IN A       192.168.98.1
mail3                IN A       192.168.98.1


example.com.         IN A       192.168.98.1

*.example.com.       IN A       192.168.98.1
www                  IN A       192.168.98.1


================================================
FILE: image/main.cf
================================================
# Global Postfix configuration file. This file lists only a subset
# of all parameters. For the syntax, and for a complete parameter
# list, see the postconf(5) manual page (command: "man 5 postconf").
#
# For common configuration examples, see BASIC_CONFIGURATION_README
# and STANDARD_CONFIGURATION_README. To find these documents, use
# the command "postconf html_directory readme_directory", or go to
# http://www.postfix.org/.
#
# For best results, change no more than 2-3 parameters at a time,
# and test if Postfix still works after every change.

# SOFT BOUNCE
#
# The soft_bounce parameter provides a limited safety net for
# testing.  When soft_bounce is enabled, mail will remain queued that
# would otherwise bounce. This parameter disables locally-generated
# bounces, and prevents the SMTP server from rejecting mail permanently
# (by changing 5xx replies into 4xx replies). However, soft_bounce
# is no cure for address rewriting mistakes or mail routing mistakes.
#
#soft_bounce = no

# LOCAL PATHNAME INFORMATION
#
# The queue_directory specifies the location of the Postfix queue.
# This is also the root directory of Postfix daemons that run chrooted.
# See the files in examples/chroot-setup for setting up Postfix chroot
# environments on different UNIX systems.
#
queue_directory = /var/spool/postfix

# The command_directory parameter specifies the location of all
# postXXX commands.
#
command_directory = /usr/sbin

# The daemon_directory parameter specifies the location of all Postfix
# daemon programs (i.e. programs listed in the master.cf file). This
# directory must be owned by root.
#
daemon_directory = /usr/libexec/postfix

# QUEUE AND PROCESS OWNERSHIP
#
# The mail_owner parameter specifies the owner of the Postfix queue
# and of most Postfix daemon processes.  Specify the name of a user
# account THAT DOES NOT SHARE ITS USER OR GROUP ID WITH OTHER ACCOUNTS
# AND THAT OWNS NO OTHER FILES OR PROCESSES ON THE SYSTEM.  In
# particular, don't specify nobody or daemon. PLEASE USE A DEDICATED
# USER.
#
mail_owner = postfix

# The default_privs parameter specifies the default rights used by
# the local delivery agent for delivery to external file or command.
# These rights are used in the absence of a recipient user context.
# DO NOT SPECIFY A PRIVILEGED USER OR THE POSTFIX OWNER.
#
#default_privs = nobody

# INTERNET HOST AND DOMAIN NAMES
# 
# The myhostname parameter specifies the internet hostname of this
# mail system. The default is to use the fully-qualified domain name
# from gethostname(). $myhostname is used as a default value for many
# other configuration parameters.
#
myhostname = dns.example.com
#myhostname = virtual.domain.tld

# The mydomain parameter specifies the local internet domain name.
# The default is to use $myhostname minus the first component.
# $mydomain is used as a default value for many other configuration
# parameters.
#
mydomain = example.com

# SENDING MAIL
# 
# The myorigin parameter specifies the domain that locally-posted
# mail appears to come from. The default is to append $myhostname,
# which is fine for small sites.  If you run a domain with multiple
# machines, you should (1) change this to $mydomain and (2) set up
# a domain-wide alias database that aliases each user to
# user@that.users.mailhost.
#
# For the sake of consistency between sender and recipient addresses,
# myorigin also specifies the default domain name that is appended
# to recipient addresses that have no @domain part.
#
#myorigin = $myhostname
myorigin = $mydomain

# RECEIVING MAIL

# The inet_interfaces parameter specifies the network interface
# addresses that this mail system receives mail on.  By default,
# the software claims all active interfaces on the machine. The
# parameter also controls delivery of mail to user@[ip.address].
#
# See also the proxy_interfaces parameter, for network addresses that
# are forwarded to us via a proxy or network address translator.
#
# Note: you need to stop/start Postfix when this parameter changes.
#
inet_interfaces = all
#inet_interfaces = $myhostname
#inet_interfaces = $myhostname, localhost
#inet_interfaces = localhost

# The proxy_interfaces parameter specifies the network interface
# addresses that this mail system receives mail on by way of a
# proxy or network address translation unit. This setting extends
# the address list specified with the inet_interfaces parameter.
#
# You must specify your proxy/NAT addresses when your system is a
# backup MX host for other domains, otherwise mail delivery loops
# will happen when the primary MX host is down.
#
#proxy_interfaces =
#proxy_interfaces = 1.2.3.4

# The mydestination parameter specifies the list of domains that this
# machine considers itself the final destination for.
#
# These domains are routed to the delivery agent specified with the
# local_transport parameter setting. By default, that is the UNIX
# compatible delivery agent that lookups all recipients in /etc/passwd
# and /etc/aliases or their equivalent.
#
# The default is $myhostname + localhost.$mydomain.  On a mail domain
# gateway, you should also include $mydomain.
#
# Do not specify the names of virtual domains - those domains are
# specified elsewhere (see VIRTUAL_README).
#
# Do not specify the names of domains that this machine is backup MX
# host for. Specify those names via the relay_domains settings for
# the SMTP server, or use permit_mx_backup if you are lazy (see
# STANDARD_CONFIGURATION_README).
#
# The local machine is always the final destination for mail addressed
# to user@[the.net.work.address] of an interface that the mail system
# receives mail on (see the inet_interfaces parameter).
#
# Specify a list of host or domain names, /file/name or type:table
# patterns, separated by commas and/or whitespace. A /file/name
# pattern is replaced by its contents; a type:table is matched when
# a name matches a lookup key (the right-hand side is ignored).
# Continue long lines by starting the next line with whitespace.
#
# See also below, section "REJECTING MAIL FOR UNKNOWN LOCAL USERS".
#
mydestination = $mydomain, $myhostname
#mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
#mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain,
#	mail.$mydomain, www.$mydomain, ftp.$mydomain

# REJECTING MAIL FOR UNKNOWN LOCAL USERS
#
# The local_recipient_maps parameter specifies optional lookup tables
# with all names or addresses of users that are local with respect
# to $mydestination, $inet_interfaces or $proxy_interfaces.
#
# If this parameter is defined, then the SMTP server will reject
# mail for unknown local users. This parameter is defined by default.
#
# To turn off local recipient checking in the SMTP server, specify
# local_recipient_maps = (i.e. empty).
#
# The default setting assumes that you use the default Postfix local
# delivery agent for local delivery. You need to update the
# local_recipient_maps setting if:
#
# - You define $mydestination domain recipients in files other than
#   /etc/passwd, /etc/aliases, or the $virtual_alias_maps files.
#   For example, you define $mydestination domain recipients in    
#   the $virtual_mailbox_maps files.
#
# - You redefine the local delivery agent in master.cf.
#
# - You redefine the "local_transport" setting in main.cf.
#
# - You use the "luser_relay", "mailbox_transport", or "fallback_transport"
#   feature of the Postfix local delivery agent (see local(8)).
#
# Details are described in the LOCAL_RECIPIENT_README file.
#
# Beware: if the Postfix SMTP server runs chrooted, you probably have
# to access the passwd file via the proxymap service, in order to
# overcome chroot restrictions. The alternative, having a copy of
# the system passwd file in the chroot jail is just not practical.
#
# The right-hand side of the lookup tables is conveniently ignored.
# In the left-hand side, specify a bare username, an @domain.tld
# wild-card, or specify a user@domain.tld address.
# 
#local_recipient_maps = unix:passwd.byname $alias_maps
#local_recipient_maps = proxy:unix:passwd.byname $alias_maps
#local_recipient_maps =

# The unknown_local_recipient_reject_code specifies the SMTP server
# response code when a recipient domain matches $mydestination or
# ${proxy,inet}_interfaces, while $local_recipient_maps is non-empty
# and the recipient address or address local-part is not found.
#
# The default setting is 550 (reject mail) but it is safer to start
# with 450 (try again later) until you are certain that your
# local_recipient_maps settings are OK.
#
unknown_local_recipient_reject_code = 550

# TRUST AND RELAY CONTROL

# The mynetworks parameter specifies the list of "trusted" SMTP
# clients that have more privileges than "strangers".
#
# In particular, "trusted" SMTP clients are allowed to relay mail
# through Postfix.  See the smtpd_recipient_restrictions parameter
# in postconf(5).
#
# You can specify the list of "trusted" network addresses by hand
# or you can let Postfix do it for you (which is the default).
#
# By default (mynetworks_style = subnet), Postfix "trusts" SMTP
# clients in the same IP subnetworks as the local machine.
# On Linux, this does works correctly only with interfaces specified
# with the "ifconfig" command.
# 
# Specify "mynetworks_style = class" when Postfix should "trust" SMTP
# clients in the same IP class A/B/C networks as the local machine.
# Don't do this with a dialup site - it would cause Postfix to "trust"
# your entire provider's network.  Instead, specify an explicit
# mynetworks list by hand, as described below.
#  
# Specify "mynetworks_style = host" when Postfix should "trust"
# only the local machine.
# 
#mynetworks_style = class
#mynetworks_style = subnet
#mynetworks_style = host

# Alternatively, you can specify the mynetworks list by hand, in
# which case Postfix ignores the mynetworks_style setting.
#
# Specify an explicit list of network/netmask patterns, where the
# mask specifies the number of bits in the network part of a host
# address.
#
# You can also specify the absolute pathname of a pattern file instead
# of listing the patterns here. Specify type:table for table-based lookups
# (the value on the table right-hand side is not used).
#
mynetworks = 192.168.98.0/24
#mynetworks = $config_directory/mynetworks
#mynetworks = hash:/etc/postfix/network_table

# The relay_domains parameter restricts what destinations this system will
# relay mail to.  See the smtpd_recipient_restrictions description in
# postconf(5) for detailed information.
#
# By default, Postfix relays mail
# - from "trusted" clients (IP address matches $mynetworks) to any destination,
# - from "untrusted" clients to destinations that match $relay_domains or
#   subdomains thereof, except addresses with sender-specified routing.
# The default relay_domains value is $mydestination.
# 
# In addition to the above, the Postfix SMTP server by default accepts mail
# that Postfix is final destination for:
# - destinations that match $inet_interfaces or $proxy_interfaces,
# - destinations that match $mydestination
# - destinations that match $virtual_alias_domains,
# - destinations that match $virtual_mailbox_domains.
# These destinations do not need to be listed in $relay_domains.
# 
# Specify a list of hosts or domains, /file/name patterns or type:name
# lookup tables, separated by commas and/or whitespace.  Continue
# long lines by starting the next line with whitespace. A file name
# is replaced by its contents; a type:name table is matched when a
# (parent) domain appears as lookup key.
#
# NOTE: Postfix will not automatically forward mail for domains that
# list this system as their primary or backup MX host. See the
# permit_mx_backup restriction description in postconf(5).
#
relay_domains = example.com

# INTERNET OR INTRANET

# The relayhost parameter specifies the default host to send mail to
# when no entry is matched in the optional transport(5) table. When
# no relayhost is given, mail is routed directly to the destination.
#
# On an intranet, specify the organizational domain name. If your
# internal DNS uses no MX records, specify the name of the intranet
# gateway host instead.
#
# In the case of SMTP, specify a domain, host, host:port, [host]:port,
# [address] or [address]:port; the form [host] turns off MX lookups.
#
# If you're connected via UUCP, see also the default_transport parameter.
#
#relayhost = $mydomain
#relayhost = [gateway.my.domain]
#relayhost = [mailserver.isp.tld]
#relayhost = uucphost
#relayhost = [an.ip.add.ress]

# REJECTING UNKNOWN RELAY USERS
#
# The relay_recipient_maps parameter specifies optional lookup tables
# with all addresses in the domains that match $relay_domains.
#
# If this parameter is defined, then the SMTP server will reject
# mail for unknown relay users. This feature is off by default.
#
# The right-hand side of the lookup tables is conveniently ignored.
# In the left-hand side, specify an @domain.tld wild-card, or specify
# a user@domain.tld address.
# 
#relay_recipient_maps = hash:/etc/postfix/relay_recipients

# INPUT RATE CONTROL
#
# The in_flow_delay configuration parameter implements mail input
# flow control. This feature is turned on by default, although it
# still needs further development (it's disabled on SCO UNIX due
# to an SCO bug).
# 
# A Postfix process will pause for $in_flow_delay seconds before
# accepting a new message, when the message arrival rate exceeds the
# message delivery rate. With the default 100 SMTP server process
# limit, this limits the mail inflow to 100 messages a second more
# than the number of messages delivered per second.
# 
# Specify 0 to disable the feature. Valid delays are 0..10.
# 
#in_flow_delay = 1s

# ADDRESS REWRITING
#
# The ADDRESS_REWRITING_README document gives information about
# address masquerading or other forms of address rewriting including
# username->Firstname.Lastname mapping.

# ADDRESS REDIRECTION (VIRTUAL DOMAIN)
#
# The VIRTUAL_README document gives information about the many forms
# of domain hosting that Postfix supports.

# "USER HAS MOVED" BOUNCE MESSAGES
#
# See the discussion in the ADDRESS_REWRITING_README document.

# TRANSPORT MAP
#
# See the discussion in the ADDRESS_REWRITING_README document.

# ALIAS DATABASE
#
# The alias_maps parameter specifies the list of alias databases used
# by the local delivery agent. The default list is system dependent.
#
# On systems with NIS, the default is to search the local alias
# database, then the NIS alias database. See aliases(5) for syntax
# details.
# 
# If you change the alias database, run "postalias /etc/aliases" (or
# wherever your system stores the mail alias file), or simply run
# "newaliases" to build the necessary DBM or DB file.
#
# It will take a minute or so before changes become visible.  Use
# "postfix reload" to eliminate the delay.
#
#alias_maps = dbm:/etc/aliases
alias_maps = hash:/etc/aliases
#alias_maps = hash:/etc/aliases, nis:mail.aliases
#alias_maps = netinfo:/aliases

# The alias_database parameter specifies the alias database(s) that
# are built with "newaliases" or "sendmail -bi".  This is a separate
# configuration parameter, because alias_maps (see above) may specify
# tables that are not necessarily all under control by Postfix.
#
#alias_database = dbm:/etc/aliases
#alias_database = dbm:/etc/mail/aliases
alias_database = hash:/etc/aliases
#alias_database = hash:/etc/aliases, hash:/opt/majordomo/aliases

# ADDRESS EXTENSIONS (e.g., user+foo)
#
# The recipient_delimiter parameter specifies the separator between
# user names and address extensions (user+foo). See canonical(5),
# local(8), relocated(5) and virtual(5) for the effects this has on
# aliases, canonical, virtual, relocated and .forward file lookups.
# Basically, the software tries user+foo and .forward+foo before
# trying user and .forward.
#
#recipient_delimiter = +

# DELIVERY TO MAILBOX
#
# The home_mailbox parameter specifies the optional pathname of a
# mailbox file relative to a user's home directory. The default
# mailbox file is /var/spool/mail/user or /var/mail/user.  Specify
# "Maildir/" for qmail-style delivery (the / is required).
#
#home_mailbox = Mailbox
#home_mailbox = Maildir/
 
# The mail_spool_directory parameter specifies the directory where
# UNIX-style mailboxes are kept. The default setting depends on the
# system type.
#
#mail_spool_directory = /var/mail
#mail_spool_directory = /var/spool/mail

# The mailbox_command parameter specifies the optional external
# command to use instead of mailbox delivery. The command is run as
# the recipient with proper HOME, SHELL and LOGNAME environment settings.
# Exception:  delivery for root is done as $default_user.
#
# Other environment variables of interest: USER (recipient username),
# EXTENSION (address extension), DOMAIN (domain part of address),
# and LOCAL (the address localpart).
#
# Unlike other Postfix configuration parameters, the mailbox_command
# parameter is not subjected to $parameter substitutions. This is to
# make it easier to specify shell syntax (see example below).
#
# Avoid shell meta characters because they will force Postfix to run
# an expensive shell process. Procmail alone is expensive enough.
#
# IF YOU USE THIS TO DELIVER MAIL SYSTEM-WIDE, YOU MUST SET UP AN
# ALIAS THAT FORWARDS MAIL FOR ROOT TO A REAL USER.
#
#mailbox_command = /some/where/procmail
#mailbox_command = /some/where/procmail -a "$EXTENSION"

# The mailbox_transport specifies the optional transport in master.cf
# to use after processing aliases and .forward files. This parameter
# has precedence over the mailbox_command, fallback_transport and
# luser_relay parameters.
#
# Specify a string of the form transport:nexthop, where transport is
# the name of a mail delivery transport defined in master.cf.  The
# :nexthop part is optional. For more details see the sample transport
# configuration file.
#
# NOTE: if you use this feature for accounts not in the UNIX password
# file, then you must update the "local_recipient_maps" setting in
# the main.cf file, otherwise the SMTP server will reject mail for    
# non-UNIX accounts with "User unknown in local recipient table".
#
#mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp

# If using the cyrus-imapd IMAP server deliver local mail to the IMAP
# server using LMTP (Local Mail Transport Protocol), this is prefered
# over the older cyrus deliver program by setting the
# mailbox_transport as below:
#
# mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp
#
# The efficiency of LMTP delivery for cyrus-imapd can be enhanced via
# these settings.
#
# local_destination_recipient_limit = 300
# local_destination_concurrency_limit = 5
#
# Of course you should adjust these settings as appropriate for the
# capacity of the hardware you are using. The recipient limit setting
# can be used to take advantage of the single instance message store
# capability of Cyrus. The concurrency limit can be used to control
# how many simultaneous LMTP sessions will be permitted to the Cyrus
# message store. 
#
# To use the old cyrus deliver program you have to set:
#mailbox_transport = cyrus

# The fallback_transport specifies the optional transport in master.cf
# to use for recipients that are not found in the UNIX passwd database.
# This parameter has precedence over the luser_relay parameter.
#
# Specify a string of the form transport:nexthop, where transport is
# the name of a mail delivery transport defined in master.cf.  The
# :nexthop part is optional. For more details see the sample transport
# configuration file.
#
# NOTE: if you use this feature for accounts not in the UNIX password
# file, then you must update the "local_recipient_maps" setting in
# the main.cf file, otherwise the SMTP server will reject mail for    
# non-UNIX accounts with "User unknown in local recipient table".
#
#fallback_transport = lmtp:unix:/var/lib/imap/socket/lmtp
#fallback_transport =

# The luser_relay parameter specifies an optional destination address
# for unknown recipients.  By default, mail for unknown@$mydestination,
# unknown@[$inet_interfaces] or unknown@[$proxy_interfaces] is returned
# as undeliverable.
#
# The following expansions are done on luser_relay: $user (recipient
# username), $shell (recipient shell), $home (recipient home directory),
# $recipient (full recipient address), $extension (recipient address
# extension), $domain (recipient domain), $local (entire recipient
# localpart), $recipient_delimiter. Specify ${name?value} or
# ${name:value} to expand value only when $name does (does not) exist.
#
# luser_relay works only for the default Postfix local delivery agent.
#
# NOTE: if you use this feature for accounts not in the UNIX password
# file, then you must specify "local_recipient_maps =" (i.e. empty) in
# the main.cf file, otherwise the SMTP server will reject mail for    
# non-UNIX accounts with "User unknown in local recipient table".
#
#luser_relay = $user@other.host
#luser_relay = $local@other.host
#luser_relay = admin+$local
  
# JUNK MAIL CONTROLS
# 
# The controls listed here are only a very small subset. The file
# SMTPD_ACCESS_README provides an overview.

# The header_checks parameter specifies an optional table with patterns
# that each logical message header is matched against, including
# headers that span multiple physical lines.
#
# By default, these patterns also apply to MIME headers and to the
# headers of attached messages. With older Postfix versions, MIME and
# attached message headers were treated as body text.
#
# For details, see "man header_checks".
#
#header_checks = regexp:/etc/postfix/header_checks

# FAST ETRN SERVICE
#
# Postfix maintains per-destination logfiles with information about
# deferred mail, so that mail can be flushed quickly with the SMTP
# "ETRN domain.tld" command, or by executing "sendmail -qRdomain.tld".
# See the ETRN_README document for a detailed description.
# 
# The fast_flush_domains parameter controls what destinations are
# eligible for this service. By default, they are all domains that
# this server is willing to relay mail to.
# 
#fast_flush_domains = $relay_domains

# SHOW SOFTWARE VERSION OR NOT
#
# The smtpd_banner parameter specifies the text that follows the 220
# code in the SMTP server's greeting banner. Some people like to see
# the mail version advertised. By default, Postfix shows no version.
#
# You MUST specify $myhostname at the start of the text. That is an
# RFC requirement. Postfix itself does not care.
#
#smtpd_banner = $myhostname ESMTP $mail_name
#smtpd_banner = $myhostname ESMTP $mail_name ($mail_version)

# PARALLEL DELIVERY TO THE SAME DESTINATION
#
# How many parallel deliveries to the same user or domain? With local
# delivery, it does not make sense to do massively parallel delivery
# to the same user, because mailbox updates must happen sequentially,
# and expensive pipelines in .forward files can cause disasters when
# too many are run at the same time. With SMTP deliveries, 10
# simultaneous connections to the same domain could be sufficient to
# raise eyebrows.
# 
# Each message delivery transport has its XXX_destination_concurrency_limit
# parameter.  The default is $default_destination_concurrency_limit for
# most delivery transports. For the local delivery agent the default is 2.

#local_destination_concurrency_limit = 2
#default_destination_concurrency_limit = 20

# DEBUGGING CONTROL
#
# The debug_peer_level parameter specifies the increment in verbose
# logging level when an SMTP client or server host name or address
# matches a pattern in the debug_peer_list parameter.
#
debug_peer_level = 2

# The debug_peer_list parameter specifies an optional list of domain
# or network patterns, /file/name patterns or type:name tables. When
# an SMTP client or server host name or address matches a pattern,
# increase the verbose logging level by the amount specified in the
# debug_peer_level parameter.
#
#debug_peer_list = 127.0.0.1
#debug_peer_list = some.domain

# The debugger_command specifies the external command that is executed
# when a Postfix daemon program is run with the -D option.
#
# Use "command .. & sleep 5" so that the debugger can attach before
# the process marches on. If you use an X-based debugger, be sure to
# set up your XAUTHORITY environment variable before starting Postfix.
#
debugger_command =
	 PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
	 xxgdb $daemon_directory/$process_name $process_id & sleep 5

# If you can't use X, use this to capture the call stack when a
# daemon crashes. The result is in a file in the configuration
# directory, and is named after the process name and the process ID.
#
# debugger_command =
#	PATH=/bin:/usr/bin:/usr/local/bin; export PATH; (echo cont;
#	echo where) | gdb $daemon_directory/$process_name $process_id 2>&1
#	>$config_directory/$process_name.$process_id.log & sleep 5
#
# Another possibility is to run gdb under a detached screen session.
# To attach to the screen sesssion, su root and run "screen -r
# <id_string>" where <id_string> uniquely matches one of the detached
# sessions (from "screen -list").
#
# debugger_command =
#	PATH=/bin:/usr/bin:/sbin:/usr/sbin; export PATH; screen
#	-dmS $process_name gdb $daemon_directory/$process_name
#	$process_id & sleep 1

# INSTALL-TIME CONFIGURATION INFORMATION
#
# The following parameters are used when installing a new Postfix version.
# 
# sendmail_path: The full pathname of the Postfix sendmail command.
# This is the Sendmail-compatible mail posting interface.
# 
sendmail_path = /usr/sbin/sendmail.postfix

# newaliases_path: The full pathname of the Postfix newaliases command.
# This is the Sendmail-compatible command to build alias databases.
#
newaliases_path = /usr/bin/newaliases.postfix

# mailq_path: The full pathname of the Postfix mailq command.  This
# is the Sendmail-compatible mail queue listing command.
# 
mailq_path = /usr/bin/mailq.postfix

# setgid_group: The group for mail submission and queue management
# commands.  This must be a group name with a numerical group ID that
# is not shared with other accounts, not even with the Postfix account.
#
setgid_group = postdrop

# html_directory: The location of the Postfix HTML documentation.
#
html_directory = no

# manpage_directory: The location of the Postfix on-line manual pages.
#
manpage_directory = /usr/share/man

# sample_directory: The location of the Postfix sample configuration files.
# This parameter is obsolete as of Postfix 2.1.
#
sample_directory = /usr/share/doc/postfix-2.3.3/samples

# readme_directory: The location of the Postfix README files.
#
readme_directory = /usr/share/doc/postfix-2.3.3/README_FILES
virtual_alias_domains = linux.com,example.com
virtual_alias_maps = hash:/etc/postfix/virtual



================================================
FILE: image/named.conf
================================================
// Default named.conf generated by install of bind-9.2.4-2
options {
	directory "/var/named";
	dump-file "/var/named/data/cache_dump.db";
	statistics-file "/var/named/data/named_stats.txt";
	version "4.9.11";
};
include "/etc/rndc.key";

zone "." { 
	type hint;	
	file "data/named.ca"; 
};

zone "example.com" { 
	type master;
	file "data/example.com.zone"; 
	allow-transfer {
        192.168.1.177;
        192.168.7.17;
        };

};

zone "98.168.192.in-addr.arpa" {
	type master; 
	file "data/192.168.98.arpa"; 
	allow-transfer {
        192.168.1.177;
        192.168.7.17;
        };

};
logging {
        channel"default_syslog"{
                syslog daemon;
                severity info;
        };
        
        channel general_log{
                 file"data/general_log" versions 3 size 20m;
                 severity info;
                 print-time yes;
                 print-severity yes;
                 print-category yes;
        };
        channel query_log{
                 file"data/query_log" versions 3 size 20m;
                 severity info;
                 print-time yes;
                 print-severity yes;
                 print-category yes;
        };
        category general{general_log;};
        category queries{query_log;};

};



================================================
FILE: introduction-img/null
================================================



================================================
FILE: login.py
================================================
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'login.ui'
#
# Created by: PyQt5 UI code generator 5.11.2

# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5.QtWidgets import QApplication,QMessageBox
#import login_rc
import sys
from socket import *
import threading




class Ui_MainWindow(object):

    def tcp_start(self):
        address = '127.0.0.1'
        port = 6337
        self.buffsize = 1024
        self.s = socket(AF_INET, SOCK_STREAM)
        self.s.connect((address, port))

    def setupUi(self, MainWindow):
        self.MainWindow=MainWindow
        self.MainWindow.setObjectName("MainWindow")
        self.MainWindow.resize(360, 340)
        self.MainWindow.setMinimumSize(QtCore.QSize(360, 340))
        self.MainWindow.setMaximumSize(QtCore.QSize(360, 340))
        icon = QtGui.QIcon()
        icon.addPixmap(QtGui.QPixmap("image/QQicon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        self.MainWindow.setWindowIcon(icon)
        #MainWindow.setWindowFlags(QtCore.Qt.FramelessWindowHint)
        self.MainWindow.setStyleSheet("background-color: rgb(255, 255, 255);")
        self.centralwidget = QtWidgets.QWidget(MainWindow)
        self.centralwidget.setObjectName("centralwidget")
        self.lineEdit = QtWidgets.QLineEdit(self.centralwidget)
        self.lineEdit.setGeometry(QtCore.QRect(100, 160, 191, 30))
        self.lineEdit.setCursor(QtGui.QCursor(QtCore.Qt.CrossCursor))
        self.lineEdit.setStyleSheet("background-color: rgb(255, 255, 255);")
        self.lineEdit.setText("")
        self.lineEdit.setMaxLength(32767)
        self.lineEdit.setObjectName("lineEdit")
        self.lineEdit_2 = QtWidgets.QLineEdit(self.centralwidget)
        self.lineEdit_2.setGeometry(QtCore.QRect(100, 210, 191, 31))
        self.lineEdit_2.setInputMask("")
        self.lineEdit_2.setText("")
        self.lineEdit_2.setMaxLength(32767)
        self.lineEdit_2.setEchoMode(QtWidgets.QLineEdit.Password)
        self.lineEdit_2.setCursorPosition(0)
        self.lineEdit_2.setObjectName("lineEdit_2")
        self.pushButton = QtWidgets.QPushButton(self.centralwidget)
        self.pushButton.setGeometry(QtCore.QRect(70, 260, 221, 41))
        self.pushButton.setStyleSheet("background-color: rgb(7, 85, 240);\n"
"color: rgb(255, 255, 255);")
        self.pushButton.setObjectName("pushButton")
        self.pushButton.clicked.connect(self.login)



        self.formFrame = QtWidgets.QFrame(self.centralwidget)
        self.formFrame.setGeometry(QtCore.QRect(0, -1, 361, 151))
        self.formFrame.setStyleSheet("border-color: rgb(0, 85, 255);\n"
"background-image: url(image/loginicon.jpg);")
        self.formFrame.setObjectName("formFrame")
        self.formLayout = QtWidgets.QFormLayout(self.formFrame)
        self.formLayout.setObjectName("formLayout")
        self.label = QtWidgets.QLabel(self.centralwidget)
        self.label.setGeometry(QtCore.QRect(60, 170, 31, 16))
        self.label.setObjectName("label")
        self.label_2 = QtWidgets.QLabel(self.centralwidget)
        self.label_2.setGeometry(QtCore.QRect(60, 220, 31, 16))
        self.label_2.setObjectName("label_2")


        #MainWindow.setCentralWidget(self.centralwidget)
        self.statusbar = QtWidgets.QStatusBar(MainWindow)
        self.statusbar.setObjectName("statusbar")
        #MainWindow.setStatusBar(self.statusbar)

        self.retranslateUi(self.MainWindow)
        QtCore.QMetaObject.connectSlotsByName(MainWindow)

    def retranslateUi(self, MainWindow):
        _translate = QtCore.QCoreApplication.translate
        self.MainWindow.setWindowTitle(_translate("MainWindow", "QQ登录"))
        self.pushButton.setText(_translate("MainWindow", "登录"))
        self.label.setText(_translate("MainWindow", "账号:"))
        self.label_2.setText(_translate("MainWindow", "密码:"))

    def login(self):
        login_info=['login']
        self.user=self.lineEdit.text()
        password=self.lineEdit_2.text()
        user_l=len(str(self.user))
        if self.user=='':
            QMessageBox.information(self.MainWindow,'提示','QQ账号不能为空!', QMessageBox.Ok | QMessageBox.Close, QMessageBox.Close)
        elif user_l<5 or user_l>10:
            QMessageBox.information(self.MainWindow, '提示', 'QQ账号长度不对!', QMessageBox.Ok | QMessageBox.Close, QMessageBox.Close)
        else:
            if password=='':
                QMessageBox.information(self.MainWindow, '提示', '密码不能为空!', QMessageBox.Ok | QMessageBox.Close, QMessageBox.Close)
            else:
                login_info.append(self.user)
                login_info.append(password)
                login_info=' '.join(login_info)
                print(login_info)
                self.s.send(str(login_info).encode())
                self.login_recv()



    def login_recv(self):
        recv_info=self.s.recv(self.buffsize).decode('utf-8')
        print(recv_info)
        if str(recv_info)=='true':
            QMessageBox.information(self.MainWindow, '登录成功', '登录成功!', QMessageBox.Ok | QMessageBox.Close, QMessageBox.Close)
            #QtCore.QCoreApplication.instance().quit()
            widget.hide()
            widget1.show()
            ui1.label.setText(self.user)
        elif str(recv_info)=='flase-user':
            QMessageBox.information(self.MainWindow, '失败', '登录失败,无此账号!!', QMessageBox.Ok | QMessageBox.Close,QMessageBox.Close)
        elif str(recv_info)=='flase-pw':
            QMessageBox.information(self.MainWindow, '失败', '登录失败,密码错误!!', QMessageBox.Ok | QMessageBox.Close,QMessageBox.Close)
        elif str(recv_info)=='flase-login':
            QMessageBox.information(self.MainWindow, '失败', '此账号已登录!', QMessageBox.Ok | QMessageBox.Close,QMessageBox.Close)



if __name__ == "__main__":

    import sys
    app = QtWidgets.QApplication(sys.argv)
    widget = QtWidgets.QWidget()
    ui = Ui_MainWindow()
    ui.setupUi(widget)
    ui.tcp_start()
    widget.show()
    import QQ
    widget1 = QtWidgets.QWidget()
    ui1 = QQ.Ui_MainWindowt(ui.s)
    ui1.setupUit(widget1)

    '''app = QtWidgets.QApplication(sys.argv)
    widget2 = QtWidgets.QWidget()
    ui2 = QQchating.Ui_MainWindow()
    ui2.setupUi(widget2)
    child = QDialog()
    child_ui = personal.Ui_Dialog()
    child_ui.setupUi(child)'''


    sys.exit(app.exec_())




================================================
FILE: login.qrc
================================================
<RCC>
  <qresource prefix="img">
    <file>image/qqchatbk.jpg</file>
    <file>image/qqlogin.jpg</file>
    <file>image/loginicon.jpg</file>
    <file>image/loginbk.jpg</file>
  </qresource>
</RCC>


================================================
FILE: login.ui
================================================
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>MainWindow</class>
 <widget class="QMainWindow" name="MainWindow">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>360</width>
    <height>340</height>
   </rect>
  </property>
  <property name="minimumSize">
   <size>
    <width>360</width>
    <height>340</height>
   </size>
  </property>
  <property name="maximumSize">
   <size>
    <width>360</width>
    <height>340</height>
   </size>
  </property>
  <property name="windowTitle">
   <string>QQ登录</string>
  </property>
  <property name="windowIcon">
   <iconset>
    <normaloff>image/QQicon.ico</normaloff>image/QQicon.ico</iconset>
  </property>
  <property name="styleSheet">
   <string notr="true">background-color: rgb(255, 255, 255);</string>
  </property>
  <widget class="QWidget" name="centralwidget">
   <widget class="QLineEdit" name="lineEdit">
    <property name="geometry">
     <rect>
      <x>100</x>
      <y>160</y>
      <width>191</width>
      <height>30</height>
     </rect>
    </property>
    <property name="cursor">
     <cursorShape>CrossCursor</cursorShape>
    </property>
    <property name="styleSheet">
     <string notr="true">background-color: rgb(255, 255, 255);</string>
    </property>
    <property name="text">
     <string/>
    </property>
    <property name="maxLength">
     <number>32767</number>
    </property>
   </widget>
   <widget class="QLineEdit" name="lineEdit_2">
    <property name="geometry">
     <rect>
      <x>100</x>
      <y>210</y>
      <width>191</width>
      <height>31</height>
     </rect>
    </property>
    <property name="inputMask">
     <string extracomment="qq账号"/>
    </property>
    <property name="text">
     <string extracomment="密码"/>
    </property>
    <property name="maxLength">
     <number>32767</number>
    </property>
    <property name="echoMode">
     <enum>QLineEdit::Password</enum>
    </property>
    <property name="cursorPosition">
     <number>0</number>
    </property>
   </widget>
   <widget class="QPushButton" name="pushButton">
    <property name="geometry">
     <rect>
      <x>70</x>
      <y>260</y>
      <width>221</width>
      <height>41</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">background-color: rgb(7, 85, 240);
color: rgb(255, 255, 255);</string>
    </property>
    <property name="text">
     <string>登录</string>
    </property>
   </widget>
   <widget class="QFrame" name="formFrame">
    <property name="geometry">
     <rect>
      <x>0</x>
      <y>-1</y>
      <width>361</width>
      <height>151</height>
     </rect>
    </property>
    <property name="styleSheet">
     <string notr="true">border-color: rgb(0, 85, 255);
background-image: url(:/img/image/loginicon.jpg);</string>
    </property>
    <layout class="QFormLayout" name="formLayout"/>
   </widget>
   <widget class="QLabel" name="label">
    <property name="geometry">
     <rect>
      <x>60</x>
      <y>170</y>
      <width>31</width>
      <height>16</height>
     </rect>
    </property>
    <property name="text">
     <string>账号:</string>
    </property>
   </widget>
   <widget class="QLabel" name="label_2">
    <property name="geometry">
     <rect>
      <x>60</x>
      <y>220</y>
      <width>31</width>
      <height>16</height>
     </rect>
    </property>
    <property name="text">
     <string>密码:</string>
    </property>
   </widget>
  </widget>
  <widget class="QStatusBar" name="statusbar"/>
 </widget>
 <resources>
  <include location="login.qrc"/>
 </resources>
 <connections/>
</ui>


================================================
FILE: login_rc.py
================================================
# -*- coding: utf-8 -*-

# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.11.1)
#
# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore

qt_resource_data = b"\
\x00\x00\x24\x27\
\xff\
\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x01\x00\x60\x00\
\x60\x00\x00\xff\xdb\x00\x43\x00\x03\x02\x02\x03\x02\x02\x03\x03\
\x03\x03\x04\x03\x03\x04\x05\x08\x05\x05\x04\x04\x05\x0a\x07\x07\
\x06\x08\x0c\x0a\x0c\x0c\x0b\x0a\x0b\x0b\x0d\x0e\x12\x10\x0d\x0e\
\x11\x0e\x0b\x0b\x10\x16\x10\x11\x13\x14\x15\x15\x15\x0c\x0f\x17\
\x18\x16\x14\x18\x12\x14\x15\x14\xff\xdb\x00\x43\x01\x03\x04\x04\
\x05\x04\x05\x09\x05\x05\x09\x14\x0d\x0b\x0d\x14\x14\x14\x14\x14\
\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\
\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\
\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\xff\xc0\x00\
\x11\x08\x01\x55\x01\x72\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\
\xff\xc4\x00\x1f\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\
\x00\x00\x00\x00\x00\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\
\x0b\xff\xc4\x00\xb5\x10\x00\x02\x01\x03\x03\x02\x04\x03\x05\x05\
\x04\x04\x00\x00\x01\x7d\x01\x02\x03\x00\x04\x11\x05\x12\x21\x31\
\x41\x06\x13\x51\x61\x07\x22\x71\x14\x32\x81\x91\xa1\x08\x23\x42\
\xb1\xc1\x15\x52\xd1\xf0\x24\x33\x62\x72\x82\x09\x0a\x16\x17\x18\
\x19\x1a\x25\x26\x27\x28\x29\x2a\x34\x35\x36\x37\x38\x39\x3a\x43\
\x44\x45\x46\x47\x48\x49\x4a\x53\x54\x55\x56\x57\x58\x59\x5a\x63\
\x64\x65\x66\x67\x68\x69\x6a\x73\x74\x75\x76\x77\x78\x79\x7a\x83\
\x84\x85\x86\x87\x88\x89\x8a\x92\x93\x94\x95\x96\x97\x98\x99\x9a\
\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xb2\xb3\xb4\xb5\xb6\xb7\xb8\
\xb9\xba\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xd2\xd3\xd4\xd5\xd6\
\xd7\xd8\xd9\xda\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf1\xf2\
\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xff\xc4\x00\x1f\x01\x00\x03\x01\
\x01\x01\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x01\x02\
\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\xff\xc4\x00\xb5\x11\x00\x02\
\x01\x02\x04\x04\x03\x04\x07\x05\x04\x04\x00\x01\x02\x77\x00\x01\
\x02\x03\x11\x04\x05\x21\x31\x06\x12\x41\x51\x07\x61\x71\x13\x22\
\x32\x81\x08\x14\x42\x91\xa1\xb1\xc1\x09\x23\x33\x52\xf0\x15\x62\
\x72\xd1\x0a\x16\x24\x34\xe1\x25\xf1\x17\x18\x19\x1a\x26\x27\x28\
\x29\x2a\x35\x36\x37\x38\x39\x3a\x43\x44\x45\x46\x47\x48\x49\x4a\
\x53\x54\x55\x56\x57\x58\x59\x5a\x63\x64\x65\x66\x67\x68\x69\x6a\
\x73\x74\x75\x76\x77\x78\x79\x7a\x82\x83\x84\x85\x86\x87\x88\x89\
\x8a\x92\x93\x94\x95\x96\x97\x98\x99\x9a\xa2\xa3\xa4\xa5\xa6\xa7\
\xa8\xa9\xaa\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xc2\xc3\xc4\xc5\
\xc6\xc7\xc8\xc9\xca\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xe2\xe3\
\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\
\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xf6\x8a\
\x28\xa2\xbf\x6b\x3f\x95\x02\x8a\x28\xa0\x02\x8a\x28\xa0\x02\x8a\
\x28\xa0\x02\x8a\x28\xa0\x02\x8a\x28\xa0\x02\x8a\x28\xa0\x02\x8a\
\x28\xa0\x02\x8a\x2b\xb2\xf8\x7b\xf0\xc3\x53\xf1\xfd\xd6\xe8\x87\
\xd9\x34\xd8\xdb\x12\xde\x48\xb9\x03\xfd\x95\x1f\xc4\xdf\xcb\xbd\
\x63\x5a\xb5\x3a\x10\x75\x2a\x3b\x24\x74\xe1\xf0\xd5\xb1\x75\x55\
\x1a\x11\xe6\x93\xe8\x72\x56\xb6\xb3\xdf\x5c\x24\x16\xd0\xc9\x71\
\x3c\x87\x09\x1c\x4a\x59\x98\xfa\x00\x3a\xd7\xa8\xf8\x5f\xf6\x79\
\xd7\x35\x75\x49\xb5\x49\xa3\xd1\xe0\x6e\x7c\xb6\x1e\x64\xd8\xff\
\x00\x74\x1c\x0f\xc4\xe7\xda\xbd\xcf\xc1\xfe\x02\xd1\xbc\x11\x66\
\x21\xd3\x6d\x40\x95\x86\x24\xba\x93\xe6\x96\x4f\xab\x7a\x7b\x0c\
\x0a\xe8\xab\xe2\x71\x7c\x41\x52\x4f\x97\x0c\xac\xbb\xbd\xff\x00\
\xcb\xf3\x3f\x57\xcb\x78\x32\x8d\x34\xa7\x8f\x97\x33\xfe\x55\xa2\
\xfb\xf7\x7f\x81\xe6\x9a\x3f\xec\xfb\xe1\x4d\x3d\x54\xdc\xc7\x73\
\xa9\xc9\xdc\xcf\x31\x55\xcf\xb0\x4c\x7e\xb9\xae\x96\xdf\xe1\x9f\
\x85\x2d\x54\x04\xf0\xfe\x9e\xc3\xfe\x9a\x40\x1f\xff\x00\x42\xcd\
\x74\xd4\x57\xce\xd4\xc6\xe2\x6a\xbb\xce\xa3\x7f\x33\xed\xa8\xe5\
\x58\x0c\x3a\xb5\x3a\x11\x5f\x25\xf9\xee\x73\x73\xfc\x37\xf0\xad\
\xc2\x90\xde\x1e\xd3\x40\xff\x00\xa6\x76\xca\x9f\xc8\x0a\xe7\xb5\
\x6f\x80\xbe\x11\xd4\x94\xf9\x56\x93\x69\xee\x7f\x8e\xd6\x76\xfe\
\x4d\xb8\x7e\x95\xe8\xb4\x52\x86\x33\x13\x4d\xde\x15\x1a\xf9\xb2\
\xaa\xe5\x98\x1a\xea\xd5\x28\xc5\xff\x00\xdb\xa8\xf9\xdb\xc4\xdf\
\xb3\x7e\xa9\x62\xaf\x2e\x8b\x7d\x1e\xa4\x83\x91\x04\xc3\xca\x93\
\xe8\x0e\x76\x9f\xc4\x8a\xf2\x8d\x53\x48\xbd\xd0\xef\x1e\xd7\x50\
\xb5\x9a\xce\xe1\x7a\xc7\x32\x15\x3f\x5f\x71\xef\x5f\x70\x56\x4f\
\x89\x3c\x2b\xa5\xf8\xb2\xc4\xda\x6a\x96\x71\xdd\x47\xfc\x2c\x46\
\x1d\x0f\xaa\xb7\x50\x7e\x95\xf4\x18\x5c\xfe\xb5\x36\xa3\x88\x5c\
\xcb\xbf\x5f\xf2\x3e\x37\x31\xe0\xdc\x35\x64\xe7\x82\x97\x24\xbb\
\x3d\x63\xfe\x6b\xf1\xf4\x3e\x2a\xa2\xbd\x17\xe2\x57\xc1\xdb\xff\
\x00\x03\x97\xbd\xb4\x2d\x7f\xa3\x67\xfd\x76\x3e\x78\x7d\x03\x81\
\xdb\xfd\xa1\xc7\xd2\xbc\xea\xbe\xde\x86\x22\x9e\x26\x0a\xa5\x27\
\x74\x7e\x4d\x8b\xc1\xd7\xc0\xd5\x74\x71\x11\xe5\x92\xfe\xae\xbb\
\xa0\xa2\x8a\x2b\xa0\xe2\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\
\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\
\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\
\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\
\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xad\x3f\x0d\xf8\x7e\xeb\xc5\x1a\
\xe5\x9e\x97\x66\xb9\x9e\xe1\xf6\x82\x7a\x28\xea\x58\xfb\x01\x93\
\xf8\x54\xca\x4a\x11\x72\x93\xb2\x46\x94\xe1\x2a\xb3\x50\x82\xbb\
\x7a\x23\xa7\xf8\x57\xf0\xce\x7f\x1f\xea\xa5\xe6\xdd\x0e\x91\x6e\
\xc3\xed\x13\x0e\x0b\x1e\xbe\x5a\xfb\x9f\xd0\x7e\x19\xfa\xa3\x4e\
\xd3\xad\xb4\x9b\x18\x6c\xec\xe0\x4b\x6b\x58\x57\x64\x71\x46\x30\
\x14\x55\x4f\x0c\xf8\x76\xcf\xc2\x9a\x25\xae\x99\x62\x9b\x60\x81\
\x71\xbb\xbb\xb7\x76\x3e\xe4\xf3\x5a\x95\xf9\x6e\x65\x98\x4f\x1d\
\x56\xff\x00\x61\x6c\xbf\x5f\x53\xfa\x0b\x23\xc9\xa9\xe5\x34\x12\
\x6a\xf5\x25\xf1\x3f\xd1\x79\x2f\xc7\x70\xa2\x8a\x2b\xc8\x3e\x94\
\x28\xa2\x8a\x00\x28\xa2\x8a\x00\x28\xa2\x8a\x00\x64\xb1\x24\xf1\
\xbc\x72\x22\xc9\x1b\x82\xac\x8c\x32\x18\x1e\xa0\x8f\x4a\xf9\xa7\
\xe3\x27\xc2\x7f\xf8\x44\x6e\x0e\xad\xa5\xc6\xc7\x46\x99\xb0\xf1\
\x8e\x7e\xcc\xc7\xb7\xfb\xa7\xb1\xed\xd3\xd3\x3f\x4c\xd5\x7d\x43\
\x4f\xb7\xd5\x2c\x67\xb3\xbb\x89\x67\xb6\x9d\x0c\x72\x46\xdd\x19\
\x4f\x51\x5e\x9e\x03\x1d\x3c\x0d\x5e\x78\xec\xf7\x5d\xff\x00\xe0\
\x9e\x0e\x71\x94\xd1\xcd\xb0\xee\x9c\xf4\x92\xf8\x5f\x67\xfe\x4f\
\xa9\xf0\xe5\x15\xd2\xfc\x42\xf0\x6c\xde\x05\xf1\x35\xc6\x9c\xfb\
\x9e\xdc\xfe\xf2\xde\x56\xfe\x38\xcf\x43\xf5\x1c\x83\xee\x2b\x9a\
\xaf\xd5\x29\xd4\x8d\x58\x2a\x90\x77\x4c\xfe\x79\xaf\x46\xa6\x1e\
\xac\xa8\xd5\x56\x94\x5d\x98\x51\x45\x15\xa1\x80\x51\x45\x14\x00\
\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\
\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\
\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\
\x51\x45\x14\x00\x51\x45\x14\x00\x57\xd0\x5f\xb3\x8f\x84\x45\xb6\
\x9b\x75\xe2\x19\xd3\xf7\xb7\x24\xc1\x6c\x48\xe9\x18\x3f\x33\x0f\
\xab\x0c\x7f\xc0\x7d\xeb\xc0\x21\x85\xee\x26\x8e\x28\xd4\xbc\x92\
\x30\x55\x51\xdc\x93\x80\x2b\xed\x6f\x0d\xe8\xd1\xf8\x77\x41\xd3\
\xf4\xd8\xb1\xb2\xd6\x15\x8b\x23\xf8\x88\x1c\x9f\xc4\xe4\xfe\x35\
\xf2\xf9\xfe\x25\xd2\xc3\xaa\x31\xde\x5f\x92\xfe\x91\xfa\x07\x06\
\xe0\x56\x23\x19\x2c\x4c\xd6\x94\xd6\x9e\xaf\x6f\xc2\xff\x00\x81\
\xa5\x45\x14\x57\xe7\x87\xed\x61\x45\x14\x50\x01\x45\x14\x50\x01\
\x45\x14\x50\x01\x45\x14\x50\x01\x45\x14\x50\x07\x9a\x7c\x78\xf0\
\x88\xf1\x0f\x83\xde\xfe\x24\xcd\xe6\x99\x99\x94\x81\xc9\x8f\xf8\
\xc7\xe5\x86\xff\x00\x80\xd7\xcb\xf5\xf7\x44\xd0\xa5\xc4\x32\x45\
\x2a\x87\x8e\x45\x2a\xca\xdd\x08\x23\x04\x57\xc5\x5e\x27\xd1\x9b\
\xc3\xbe\x22\xd4\x74\xd6\xc9\xfb\x2c\xef\x10\x27\xba\x83\xf2\x9f\
\xc4\x60\xfe\x35\xf7\x9c\x3d\x89\x72\xa7\x2c\x3c\xbe\xce\xab\xd1\
\xff\x00\xc1\xfc\xcf\xc7\xf8\xd7\x02\xa9\xd6\xa7\x8c\x82\xf8\xb4\
\x7e\xab\x6f\xbd\x7e\x46\x65\x14\x51\x5f\x5e\x7e\x68\x14\x51\x45\
\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\
\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\
\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\
\x00\x14\x51\x45\x00\x14\x51\x45\x00\x75\x7f\x0a\xb4\xd1\xab\x7c\
\x44\xd0\xa0\x61\xb9\x45\xc0\x98\x8f\xf7\x01\x7f\xfd\x96\xbe\xc0\
\xaf\x96\xff\x00\x67\xf8\x44\xbf\x12\x2d\x98\xff\x00\xcb\x38\x25\
\x61\xff\x00\x7c\xe3\xfa\xd7\xd4\x95\xf9\xe7\x10\xcd\xbc\x4c\x63\
\xd9\x7e\xac\xfd\xab\x82\xa9\xa8\xe0\x27\x3e\xae\x4f\xf0\x4b\xfe\
\x08\x51\x45\x15\xf2\xe7\xe8\x21\x45\x14\x50\x01\x45\x14\x50\x01\
\x45\x14\x50\x01\x45\x14\x50\x01\x45\x14\x50\x01\x5f\x2f\x7e\xd0\
\x5a\x68\xb1\xf8\x89\x2c\xc0\x60\x5e\x5b\x45\x39\xfa\x80\x53\xff\
\x00\x64\xaf\xa8\x6b\xe7\x9f\xda\x66\x10\xbe\x20\xd1\xa5\xc7\x2d\
\x6a\xcb\xf9\x3e\x7f\xad\x7d\x16\x43\x37\x1c\x6a\x5d\xd3\xff\x00\
\x3f\xd0\xf8\xae\x2f\xa6\xa7\x95\xb9\x3f\xb3\x24\xff\x00\x4f\xd4\
\xf1\xaa\x28\xa2\xbf\x49\x3f\x09\x0a\x28\xa2\x80\x0a\x28\xa2\x80\
\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\
\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\
\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\
\x0a\x28\xa2\x80\x3d\x63\xf6\x6f\xb2\x69\xbc\x6d\x79\x71\x8f\x92\
\x0b\x26\xe7\xfd\xa6\x75\x00\x7e\x59\xfc\xab\xe9\x3a\xf2\x0f\xd9\
\xbf\x40\x6b\x1f\x0c\xdf\x6a\xb2\x2e\x1a\xfa\x60\x91\x9f\x54\x8f\
\x23\x3f\xf7\xd1\x61\xf8\x57\xaf\xd7\xe6\x19\xd5\x55\x57\x1b\x3b\
\x74\xd3\xee\xff\x00\x82\x7e\xff\x00\xc2\xf8\x77\x87\xca\xe9\xf3\
\x6f\x2b\xcb\xef\xdb\xf0\xb0\x51\x45\x15\xe1\x9f\x58\x14\x51\x45\
\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\
\x00\x15\xe1\x5f\xb4\xe5\x93\x63\x40\xbb\x03\xe5\xfd\xf4\x4c\x7d\
\xfe\x42\x3f\xf6\x6a\xf7\x5a\xf3\xef\x8e\x9a\x03\x6b\x9f\x0f\xee\
\xe4\x8d\x77\x4d\x62\xeb\x76\xb8\xf4\x5c\x86\xff\x00\xc7\x58\x9f\
\xc2\xbd\x5c\xae\xaa\xa3\x8c\xa7\x27\xb5\xed\xf7\xe8\x7c\xf7\x10\
\x61\xde\x2b\x2b\xad\x4e\x3b\xda\xff\x00\x73\xbf\xe8\x7c\xab\x45\
\x14\x57\xea\xc7\xf3\xa8\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\
\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\
\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\
\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x55\xbd\
\x23\x4b\xb8\xd6\xf5\x4b\x5b\x0b\x54\xdf\x71\x73\x22\xc4\x8b\xee\
\x4e\x39\xf6\xaa\x95\xee\x1f\xb3\x9f\x82\xbc\xc9\xae\x3c\x4b\x74\
\x9f\x2c\x79\x82\xd3\x70\xea\xc4\x7c\xee\x3e\x83\xe5\xfc\x5b\xd2\
\xb8\x71\xb8\xa5\x83\xa1\x2a\xaf\xa6\xde\xbd\x0f\x5f\x2a\xc0\x4b\
\x32\xc6\x43\x0d\x1d\x9e\xfe\x49\x6f\xfd\x77\x3d\xaf\x40\xd1\xa0\
\xf0\xee\x8b\x65\xa6\xdb\x0f\xdc\xda\xc4\xb1\xa9\xc7\x5c\x0e\x49\
\xf7\x27\x27\xf1\xad\x0a\x28\xaf\xc9\x25\x27\x26\xe5\x2d\xd9\xfd\
\x23\x08\x46\x9c\x54\x20\xac\x96\x88\x28\xa2\x8a\x92\xc2\x8a\x28\
\xa0\x02\x8a\x28\xa0\x02\x8a\x28\xa0\x02\x8a\x28\xa0\x02\x8a\x28\
\xa0\x02\xa3\x9e\x18\xee\xa1\x92\x19\x50\x49\x14\x8a\x51\xd5\xba\
\x10\x46\x08\xa9\x28\xa0\x5b\xe8\xcf\x8c\x7c\x71\xe1\x89\x7c\x1f\
\xe2\x8b\xfd\x2d\xc1\xd9\x14\x99\x89\x8f\xf1\xc6\x79\x53\xf9\x7e\
\xb9\xac\x2a\xfa\x3b\xf6\x84\xf0\x4f\xf6\xc6\x87\x1e\xbb\x6d\x1e\
\x6e\xb4\xf1\xb6\x6d\xa3\x96\x84\x9e\xbf\xf0\x12\x73\xf4\x2d\x5f\
\x38\xd7\xea\xf9\x6e\x2d\x63\x30\xf1\xa9\xd5\x68\xfd\x7f\xad\x4f\
\xe7\x5c\xf3\x2d\x79\x66\x36\x74\x52\xf7\x5e\xb1\xf4\x7f\xe5\xb0\
\x51\x45\x15\xea\x1f\x3e\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\
\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\
\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\
\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x68\x78\x7f\x45\xb8\xf1\
\x1e\xb5\x65\xa6\x5a\x8c\xcf\x75\x28\x8d\x4f\x65\xcf\x56\x3e\xc0\
\x64\xfe\x15\xf6\x6e\x87\xa3\xdb\x78\x7f\x47\xb4\xd3\x6d\x17\x65\
\xbd\xb4\x62\x34\xf5\x38\xea\x4f\xb9\x39\x27\xdc\xd7\x84\x7e\xcd\
\xbe\x1d\x17\x5a\xd6\xa3\xac\xca\x99\x5b\x48\xc4\x30\x93\xfd\xf7\
\xea\x47\xb8\x51\x8f\xf8\x15\x7d\x0b\x5f\x9f\x67\xf8\xa7\x52\xba\
\xa0\xb6\x8f\xe6\xff\x00\xe0\x1f\xb4\x70\x6e\x5e\xa8\xe1\x1e\x32\
\x4b\xde\x9e\xdf\xe1\x5f\xe6\xef\xf8\x05\x14\x51\x5f\x2a\x7e\x86\
\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\
\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x47\x3c\x11\xdd\
\x41\x24\x32\xa2\xc9\x14\x8a\x51\xd1\x86\x43\x29\x18\x20\xd7\xc7\
\x7f\x10\xbc\x26\xfe\x0b\xf1\x65\xee\x9a\x41\x30\x2b\x79\x96\xec\
\x7f\x8a\x26\xe5\x4f\xe1\xd0\xfb\x83\x5f\x64\x57\x8c\x7e\xd2\x7e\
\x1d\x17\x1a\x3e\x9d\xad\x46\x9f\xbc\xb6\x93\xec\xf2\x91\xd4\xa3\
\x72\xa4\xfd\x18\x7f\xe3\xd5\xf4\x79\x1e\x29\xd1\xc4\xfb\x27\xb4\
\xf4\xf9\xf4\xff\x00\x23\xe1\xf8\xb7\x2f\x58\xac\x03\xaf\x15\xef\
\x53\xd7\xe5\xd7\xfc\xfe\x47\xcf\x74\x51\x45\x7e\x90\x7e\x18\x14\
\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\
\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\
\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\
\x51\x45\x00\x7d\x4b\xf0\x0f\x4b\x1a\x7f\xc3\x9b\x59\xb1\x87\xbc\
\x9a\x49\xdb\xfe\xfa\xd8\x3f\x44\x15\xe8\xd5\xcd\x7c\x35\xb7\x16\
\xbf\x0f\xfc\x3e\x80\x60\x1b\x28\x9f\xfe\xfa\x50\xdf\xd6\xba\x5a\
\xfc\x83\x19\x37\x53\x13\x52\x6f\xab\x7f\x99\xfd\x31\x95\xd2\x54\
\x70\x34\x29\xae\x91\x8f\xe4\x14\x51\x45\x71\x9e\x98\x51\x45\x14\
\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\
\x00\x51\x45\x14\x00\x51\x45\x14\x00\x57\x2f\xf1\x3b\x4b\x1a\xc7\
\x80\x35\xdb\x72\xbb\x88\xb6\x69\x54\x7f\xb4\x9f\x38\xfd\x56\xba\
\x8a\x82\xfa\xdc\x5d\xd8\xdc\x40\x46\x44\x91\xb2\x1f\xc4\x11\x5a\
\xd1\x9b\xa7\x52\x33\x5d\x1a\x67\x3e\x26\x92\xaf\x42\x74\x9e\xd2\
\x4d\x7d\xe8\xf8\x6e\x8a\x28\xaf\xd9\x8f\xe5\xc0\xa2\x8a\x28\x00\
\xa2\x8a\x28\x00\xa2\x8a\x28\x00\xa2\x8a\x28\x00\xa2\x8a\x28\x00\
\xa2\x8a\x28\x00\xa2\x8a\x28\x00\xa2\x8a\x28\x00\xa2\x8a\x28\x00\
\xa2\x8a\x28\x00\xa2\x8a\x28\x00\xa2\x8a\x28\x00\xa2\x8a\x28\x03\
\xec\x9f\x87\x33\x09\xbc\x03\xe1\xe6\x1c\x81\x61\x0a\xfe\x48\x07\
\xf4\xae\x8a\xbc\xe3\xe0\x26\xb8\x9a\xb7\xc3\xfb\x7b\x6d\xd9\x9e\
\xc2\x47\x81\xd7\x3c\xe0\x92\xca\x7e\x98\x6c\x7f\xc0\x4d\x75\xfe\
\x28\xf1\x6e\x97\xe0\xfd\x35\xaf\x75\x4b\x95\x82\x3f\xe0\x8c\x72\
\xf2\x1f\x45\x5e\xe7\xfc\x9a\xfc\x8f\x15\x46\x6b\x15\x3a\x49\x5d\
\xdd\x9f\xd2\x98\x0c\x55\x29\x65\xd4\xb1\x12\x92\x51\xe5\x57\x7d\
\x16\x9a\xfe\x26\x8d\xcd\xe4\x16\x66\x11\x3c\xc9\x11\x9a\x41\x14\
\x7b\xdb\x1b\xdc\xf4\x51\xea\x78\x3f\x95\x4f\x5f\x24\x78\xdb\xe2\
\x96\xa7\xe2\xef\x12\x5b\x6a\x4a\xc6\xd2\x0b\x19\x44\x96\x76\xea\
\x72\x23\x20\x82\x18\xfa\xb1\xc0\xc9\xfc\x2b\xea\x2f\x0b\xf8\x82\
\x0f\x14\xf8\x7e\xc7\x54\xb6\x3f\xbb\xb9\x8c\x31\x5c\xe7\x6b\x74\
\x65\x3e\xe0\x82\x3f\x0a\xe9\xc6\xe5\xb5\x30\x54\xa1\x52\x7f\x6b\
\x7f\x27\xd8\xe0\xca\xf3\xda\x19\xad\x7a\xb4\x69\x6d\x1d\xbc\xd7\
\x57\xf7\xfe\x68\xd5\xa2\x8a\x2b\xc7\x3e\x98\x28\xa2\x8a\x00\x28\
\xa2\x8a\x00\x28\xa2\x8a\x00\x28\xa2\x8a\x00\x28\xa2\x8a\x00\x2a\
\x18\xef\x20\x9a\xe6\x6b\x74\x99\x1e\x78\x42\x99\x23\x0d\xf3\x26\
\xee\x99\x1d\xb3\x83\xf9\x52\x5e\xde\x43\xa7\x59\xcf\x75\x71\x20\
\x8a\xde\x04\x69\x24\x76\xe8\xaa\x06\x49\xfc\xab\xe4\xf4\xf8\xa5\
\xaa\x59\xf8\xfa\xf3\xc4\xd6\xae\x43\x5c\x4a\x77\x5b\xb9\xf9\x5e\
\x1e\x02\xc6\xdf\x45\x03\x9f\x51\x9a\xf5\xb0\x39\x75\x4c\x72\x9b\
\x83\xb7\x2a\xfc\x7b\x1f\x39\x9b\xe7\x74\x72\x87\x49\x54\x57\xe7\
\x7a\xf9\x2e\xaf\xef\xb7\xe2\x7d\x6f\x51\xdc\x4c\x2d\xed\xe5\x95\
\xb8\x54\x52\xc7\xf0\x19\xae\x77\xc1\x3f\x10\x74\x9f\x1d\xd8\x09\
\xac\x66\x09\x72\xa3\x33\x59\xc8\x47\x99\x19\xfa\x77\x1e\xe3\x8f\
\xe5\x4c\xf8\x9d\xae\x27\x87\xbc\x09\xac\x5d\x33\x6d\x76\x81\xa0\
\x8b\xd4\xbb\x8d\xa3\x1f\x4c\xe7\xf0\xae\x25\x87\xa9\xed\x95\x09\
\x2b\x4a\xf6\xb1\xea\x4b\x1b\x45\xe1\x65\x8b\xa7\x24\xe0\x93\x77\
\xf4\x47\xc7\xb4\x51\x45\x7e\xc4\x7f\x31\x85\x14\x51\x40\x05\x14\
\x51\x40\x05\x14\x51\x40\x05\x14\x51\x40\x05\x14\x51\x40\x05\x14\
\x51\x40\x05\x14\x51\x40\x05\x14\x51\x40\x05\x14\x51\x40\x05\x14\
\x51\x40\x05\x14\x51\x40\x05\x14\x51\x40\x05\x14\x51\x40\x1a\xba\
\x07\x8a\x75\x6f\x0b\xcd\x2c\xba\x55\xf4\xb6\x4f\x2a\xed\x7f\x2c\
\x8c\x30\xed\x90\x78\xaa\xba\x9e\xad\x7b\xad\x5d\x35\xcd\xfd\xdc\
\xd7\x97\x0d\xc1\x92\x77\x2e\xdf\x4e\x7b\x55\x4a\x2b\x3f\x67\x05\
\x2e\x74\x95\xfb\xf5\x36\x75\xaa\xba\x6a\x93\x93\xe5\x5d\x2f\xa7\
\xdc\x15\xeb\x3f\x01\xfe\x22\xaf\x87\x75\x26\xd0\xf5\x09\x76\x69\
\xf7\xaf\x98\x64\x63\xc4\x53\x1e\x3f\x00\xdc\x0f\xa8\x1e\xf5\xe4\
\xd5\x73\x4b\xd2\x2f\x75\xcb\xc4\xb5\xd3\xed\x66\xbc\xb8\x6e\x91\
\xc2\x85\x8f\xd7\x8e\x83\xde\xb9\xf1\x74\x29\xe2\x68\xca\x9d\x5d\
\x9f\x5e\xde\x67\x6e\x5b\x8c\xaf\x81\xc5\x42\xbe\x1f\x59\x2e\x9d\
\xfc\xbe\x67\xdb\xf4\x57\x21\xf0\xc6\xdf\xc4\xd6\x5e\x1d\x8e\xdb\
\xc4\xcb\x0f\x9f\x08\x0b\x0b\xac\xbb\xe5\x29\x8e\x92\x63\x8c\x8f\
\x50\x4e\x7b\xfa\x9e\xbe\xbf\x25\xab\x4f\xd9\x4d\xc1\x34\xed\xd5\
\x6c\x7f\x47\xe1\xeb\x3c\x45\x18\xd5\x71\x71\xba\xd9\xe8\xd7\xa8\
\x51\x45\x15\x91\xd2\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\
\x00\x14\x51\x58\x9e\x31\xfe\xdc\x6d\x02\xe1\x7c\x3c\xb0\x1d\x49\
\x86\xd4\x6b\x87\xda\x10\x77\x2b\xc6\x0b\x7a\x67\x03\xf9\x1b\x84\
\x79\xe4\xa3\x7b\x5f\xb9\x95\x5a\x9e\xca\x12\x9d\x9b\xb7\x45\xab\
\x7e\x87\x93\xfe\xd0\x3f\x11\x17\xcb\x3e\x18\xd3\xe5\xdc\xc4\x86\
\xbe\x75\x3d\x3b\xac\x7f\xc8\x9f\xc0\x7a\xd7\x83\xd6\xb7\x89\x3c\
\x3f\xac\x68\x1a\x83\xc7\xac\xda\x5c\x5b\x5d\x48\xc5\x8b\x4e\x33\
\xe6\x1c\xf2\x43\x74\x6e\x7b\x82\x6b\x26\xbf\x58\xc0\x61\xe9\xe1\
\x68\x46\x14\x9d\xd7\x7e\xef\xb9\xfc\xe7\x9c\x63\xab\xe6\x18\xc9\
\xd5\xc4\x27\x17\xb2\x4f\xa2\xed\xfd\x75\x26\xb4\xbc\x9f\x4f\xb8\
\x4b\x8b\x59\xe4\xb7\x9e\x33\x94\x96\x27\x2a\xca\x7d\x88\xe9\x5a\
\x9a\xe7\x8c\xf5\xbf\x13\x5b\xc1\x06\xa9\xa9\x4f\x7b\x0c\x27\x28\
\x92\x1e\x01\xc6\x32\x7d\x4f\xb9\xac\x5a\x2b\xb1\xd3\x84\xa4\xa4\
\xd2\xba\x3c\xb8\xd6\xab\x08\x3a\x71\x93\x51\x7b\xab\xe8\xfd\x50\
\x51\x45\x15\xa1\x88\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\
\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\
\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\
\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x01\xb7\xe0\xbf\
\x0a\xdc\x78\xcf\xc4\x96\x9a\x55\xbb\x79\x66\x63\x97\x94\x8c\x88\
\xd0\x0c\xb3\x7e\x5f\xae\x2b\xeb\x7f\x0a\xf8\x47\x4b\xf0\x6e\x9a\
\xb6\x5a\x65\xb2\xc2\x98\x1b\xe4\x3c\xc9\x29\xfe\xf3\x37\x73\xfa\
\x0e\xd5\xf3\x0f\xc2\x1f\x15\x5b\x78\x47\xc6\xf6\xb7\x77\xad\xb2\
\xd2\x64\x6b\x79\x64\x3f\xf2\xcc\x36\x30\xdf\x40\x40\xcf\xb6\x6b\
\xeb\x58\xe4\x59\xa3\x57\x46\x0e\x8c\x37\x2b\x29\xc8\x20\xf4\x20\
\xd7\xc1\xf1\x0d\x5a\xde\xd2\x34\xfe\xc5\xbe\xf6\x7e\xbf\xc1\x58\
\x7c\x33\xa1\x3a\xea\xce\xad\xed\xe6\x95\xb4\xb7\xae\xbe\xbf\x21\
\xd4\x51\x45\x7c\x81\xfa\x60\x51\x45\x14\x00\x51\x45\x71\xbf\x11\
\x3e\x27\x69\xbe\x00\xb2\xfd\xe1\x5b\xbd\x4a\x4f\xf5\x56\x4a\xf8\
\x62\x3f\xbc\xc7\x9d\xab\xfc\xfb\x56\xd4\xa8\xd4\xaf\x35\x4e\x9a\
\xbb\x67\x36\x23\x13\x47\x09\x49\xd6\xaf\x2e\x58\xae\xa7\x65\x45\
\x79\xe7\xc3\x9f\x8c\x5a\x77\x8e\xa4\x7b\x49\xe3\x5d\x33\x53\x07\
\xe4\xb7\x69\x37\x09\x57\xd5\x5b\x03\x27\xdb\xfc\x8f\x43\xaa\xaf\
\x42\xa6\x1a\x6e\x9d\x55\x66\x46\x13\x19\x43\x1d\x49\x56\xc3\xcb\
\x9a\x2f\xfa\xf9\x05\x14\x51\x5c\xe7\x60\x51\x45\x14\x01\x43\x5a\
\xd0\xec\x3c\x45\xa7\xc9\x65\xa8\xda\xc7\x77\x6d\x27\x54\x90\x74\
\xf7\x07\xa8\x3e\xe3\x9a\xf9\x4b\xe2\x7f\x80\xdf\xc0\x3e\x24\x6b\
\x44\x76\x9a\xca\x65\xf3\x6d\xa4\x6e\xbb\x73\x8d\xa7\xdc\x1f\xe8\
\x7b\xd7\xd7\x95\xf3\x2f\xc7\xef\x17\x5a\x78\x8b\xc4\xd6\xd6\x76\
\x52\x2c\xf1\x69\xd1\xb4\x6f\x32\x9c\x83\x23\x11\xb8\x03\xdc\x0c\
\x01\xf5\xcd\x7d\x46\x41\x56\xb2\xc4\x7b\x38\xfc\x16\xd7\xcb\xcc\
\xfc\xfb\x8c\xb0\xf8\x67\x82\x55\xa7\x65\x51\x34\xa3\xdd\xf7\x5e\
\x96\xd7\xc8\xf2\xea\x28\xa2\xbf\x43\x3f\x15\x0a\x28\xa2\x80\x0a\
\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\
\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\
\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\
\x28\xa2\x80\x0a\x28\xa2\x80\x0a\xec\xfc\x19\xf1\x6b\x5f\xf0\x4a\
\xac\x16\xd3\xad\xdd\x80\xff\x00\x97\x4b\xa0\x59\x07\xfb\xa7\x39\
\x5f\xc0\xe3\xda\xb8\xca\x2b\x1a\xb4\x69\xd7\x8f\x25\x58\xdd\x1d\
\x58\x7c\x4d\x6c\x25\x45\x56\x84\xdc\x65\xdd\x1f\x44\xe8\xff\x00\
\xb4\xa6\x91\x70\xaa\x35\x2d\x32\xee\xce\x4e\xed\x01\x59\x53\xf5\
\xda\x7f\x43\x5d\x25\xbf\xc7\x4f\x05\xcc\xb9\x6d\x55\xa1\x3f\xdd\
\x92\xda\x5c\xfe\x8a\x6b\xe5\x2a\x2b\xc2\xa9\x90\xe0\xe6\xee\xae\
\xbd\x1f\xf9\xdc\xfa\xfa\x3c\x63\x99\xd3\x56\x97\x2c\xbd\x57\xf9\
\x34\x7d\x5f\x2f\xc7\x1f\x05\x46\xb9\x1a\xc1\x90\xfa\x2d\xb4\xdf\
\xfc\x45\x61\xea\x5f\xb4\x7f\x87\x6d\x55\x85\xa5\xa5\xf5\xeb\xf6\
\xf9\x16\x34\x3f\x89\x39\xfd\x2b\xe6\xca\x2a\x61\xc3\xf8\x38\xbb\
\xb6\xdf\xcf\xfc\x92\x2a\xa7\x19\x66\x53\x56\x8a\x8c\x7d\x13\xfd\
\x5b\x3d\x4f\xc4\xbf\xb4\x37\x88\x35\x85\x78\xb4\xe8\xa1\xd1\xe1\
\x6e\x37\x47\xfb\xc9\x71\xfe\xf1\x18\x1f\x80\x06\xbc\xc6\xe6\xea\
\x6b\xcb\x89\x27\xb8\x95\xe7\x9a\x43\xb9\xe4\x91\x8b\x33\x1f\x52\
\x4f\x5a\x8a\x8a\xf6\xe8\x61\x68\xe1\x95\xa8\xc5\x2f\xeb\xb9\xf2\
\x98\xcc\xc3\x15\x8f\x97\x36\x26\xa3\x97\xe5\xf2\x5b\x21\x55\x99\
\x18\x32\x92\xac\xa7\x20\x8e\x08\xaf\x46\xf0\xbf\xc7\x8f\x12\xf8\
\x7e\x34\x86\xe2\x48\xf5\x7b\x65\xe3\x6d\xde\x7c\xc0\x3d\x9c\x73\
\xf9\xe6\xbc\xe2\x8a\xaa\xd8\x7a\x58\x88\xf2\xd5\x8a\x68\x8c\x2e\
\x37\x13\x81\x9f\x3e\x1a\x6e\x2f\xcb\xf5\xef\xf3\x3e\x8d\xd2\xff\
\x00\x69\x3d\x0e\xe1\x40\xbf\xd3\xaf\x6c\xa4\xef\xe5\xed\x95\x07\
\xe3\x90\x7f\x4a\xe8\x20\xf8\xe9\xe0\xb9\x97\x2d\xab\x34\x47\xfb\
\xb2\x5b\x4b\x9f\xd1\x4d\x7c\xa5\x45\x78\x73\xc8\x30\x72\x7a\x5d\
\x7a\x3f\xf3\x4c\xfa\xca\x5c\x65\x99\xd3\x56\x97\x2c\xbd\x57\xf9\
\x34\x7d\x5f\x37\xc7\x2f\x05\xc4\xb9\x1a\xb9\x90\xff\x00\x75\x2d\
\xa6\xfe\xab\x58\x1a\xb7\xed\x23\xa0\x5a\xab\x0b\x1b\x1b\xdb\xe9\
\x3b\x6e\x0b\x12\x1f\xc4\x92\x7f\x4a\xf9\xbe\x8a\x21\x90\x60\xe2\
\xee\xee\xfd\x5f\xf9\x24\x3a\xbc\x65\x99\xd4\x56\x8a\x8c\x7d\x17\
\xf9\xb6\x7a\x0f\x8c\x3e\x37\x78\x87\xc5\x70\xc9\x6d\x1b\xae\x97\
\x62\xfc\x34\x36\xa4\xee\x61\xe8\xcf\xd4\xfe\x18\x07\xd2\xbc\xfa\
\x8a\x2b\xdc\xa3\x42\x96\x1e\x3c\x94\xa3\x64\x7c\x8e\x2b\x19\x88\
\xc6\xcf\xda\x62\x26\xe4\xfc\xff\x00\x4e\xc1\x45\x14\x57\x41\xc6\
\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\
\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\
\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\
\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\
\x14\x55\xfd\x23\xc3\xfa\x96\xbf\x31\x8b\x4d\xb0\xb8\xbe\x90\x75\
\x10\x46\x5b\x6f\xd4\x8e\x9f\x8d\x76\x36\x9f\x02\x7c\x65\x74\x81\
\x9b\x4e\x8e\xdc\x1e\x9e\x75\xc4\x60\xfe\x40\x9a\xe6\xa9\x89\xa1\
\x45\xda\xa4\xd2\xf5\x67\x7d\x0c\x06\x2f\x14\xaf\x42\x94\xa4\xbc\
\x93\x67\x9f\xd1\x5d\xf5\xef\xc0\xdf\x19\x59\xa1\x71\xa6\x2d\xc2\
\x8e\xbe\x4c\xf1\x93\xf9\x12\x09\xae\x37\x54\xd1\xef\xf4\x4b\x8f\
\x23\x50\xb3\x9e\xca\x6f\xee\x5c\x46\x50\x9f\x71\x9e\xb4\x52\xc4\
\x51\xad\xfc\x39\xa7\xe8\xc5\x88\xc0\xe2\xb0\xba\xd7\xa5\x28\xfa\
\xa6\x8a\x74\x51\x45\x74\x9c\x21\x45\x14\x50\x01\x45\x4f\x63\x61\
\x73\xa9\x5c\x2d\xbd\xa5\xbc\xb7\x53\xb7\xdd\x8a\x14\x2e\xc7\xf0\
\x15\xd9\x69\xff\x00\x04\xfc\x63\xa8\x20\x71\xa4\x9b\x74\x3d\xee\
\x26\x44\x3f\xf7\xc9\x39\xfd\x2b\x9e\xa6\x22\x95\x1f\xe2\xcd\x2f\
\x57\x63\xb2\x86\x0f\x13\x8a\xfe\x05\x39\x4b\xd1\x36\x70\xd4\x57\
\xa1\xdc\x7c\x05\xf1\x8c\x28\x59\x6c\x21\x9c\xff\x00\x76\x3b\x94\
\xcf\xea\x45\x72\x5a\xe7\x84\xf5\x9f\x0d\xb6\x35\x3d\x36\xe6\xc8\
\x13\x80\xf2\xc6\x42\x1f\xa3\x74\x3f\x81\xa9\xa7\x8a\xa1\x59\xda\
\x9c\xd3\x7e\x4d\x1a\x57\xcb\xf1\x98\x65\xcd\x5a\x8c\xa2\xbb\xb4\
\xed\xf7\x99\x34\x51\x45\x75\x1e\x78\x51\x45\x14\x00\x51\x45\x14\
\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\
\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\xdc\x9a\x32\
\x69\x70\x28\xda\x28\x35\xb0\x99\x34\xea\x4d\xa2\x96\x80\xb0\x53\
\x72\x69\xd4\x98\x14\x09\x21\x69\xb9\x34\xea\x4c\x0a\x01\x21\x68\
\xa2\x8a\x05\xca\x14\x51\x45\x02\xe5\x0a\x28\xa2\x80\xe5\x0a\xf4\
\xaf\x02\xfc\x39\xb0\x5d\x14\xf8\xa3\xc5\xb3\x1b\x3d\x09\x39\x86\
\xdf\x24\x3d\xd1\xed\x8c\x73\x83\xdb\x1c\x9f\x61\xcd\x61\x7c\x2f\
\xf0\x78\xf1\xaf\x8b\xad\x6c\xa5\x07\xec\x51\x03\x3d\xc9\xe9\xfb\
\xb5\xc7\x1f\x89\x20\x7e\x35\x6b\xe2\xb7\x8e\x5b\xc6\x1e\x20\x68\
\x6d\x48\x4d\x1a\xc4\x98\x6c\xe1\x4e\x13\x03\x82\xf8\xf7\xc7\x1e\
\x83\x02\xbc\xbc\x44\xe7\x5a\xaa\xc3\x52\x76\xd2\xf2\x7d\x97\x65\
\xe6\xff\x00\x04\x7b\xf8\x2a\x34\xb0\xd4\x1e\x3f\x13\x1e\x6d\x6d\
\x08\xbd\x9b\xea\xdf\xf7\x63\xdb\xab\xd0\xd6\xd7\xbe\x38\x6a\x1e\
\x4f\xd8\x3c\x31\x6b\x0f\x87\xb4\xa8\xf8\x45\x86\x35\xf3\x48\xf5\
\x27\x18\x1f\x87\x3e\xe6\xb8\x6b\xcf\x15\x6b\x5a\x83\x97\xb9\xd5\
\xaf\xae\x18\xf7\x92\xe1\xdb\xfa\xd6\x5d\x15\xd1\x47\x0b\x42\x8a\
\xb4\x22\xbf\x5f\xbf\x73\x8b\x11\x98\x62\xf1\x6e\xf5\x6a\x37\xe5\
\xb2\x5e\x89\x68\x8d\x6b\x1f\x17\x6b\x9a\x6b\x87\xb5\xd6\x2f\xa0\
\x23\xfb\x97\x0e\x07\xe2\x33\xcd\x77\x9a\x1f\xc6\xc9\x6f\xa0\x1a\
\x6f\x8c\x6c\x61\xd7\xb4\xb7\xe1\xa4\x31\xa8\x99\x3d\xc6\x30\x0e\
\x3f\x03\xef\x5e\x5b\x45\x15\xb0\x74\x2b\x2f\x7e\x3a\xf7\xd9\xaf\
\x46\x3c\x36\x63\x8b\xc2\xbf\xdd\xd4\x76\xea\x9e\xa9\xfa\xa7\xa3\
\x3d\x0b\xe2\x0f\xc3\x58\x34\x9d\x3e\x2f\x10\xf8\x76\xe3\xfb\x4b\
\xc3\x77\x1c\x87\x07\x2d\x01\x27\x18\x6f\x6c\xf1\x93\xc8\x3c\x1e\
\x7a\xf9\xed\x7a\x27\xc1\xdf\x19\x26\x91\xac\x36\x87\xa9\x62\x6d\
\x0f\x56\xfd\xc4\xd0\xc9\xf7\x55\xd8\x60\x37\xb6\x7a\x1f\x62\x0f\
\x6a\xe6\xbc\x77\xe1\x69\x3c\x1b\xe2\xab\xed\x2d\x89\x68\xe2\x7d\
\xd0\xbb\x7f\x14\x67\x95\x3f\x5c\x70\x7d\xc1\xac\x30\xf5\x27\x4e\
\xa3\xc3\x56\x77\x6b\x54\xfb\xaf\x3f\x35\xd7\xef\x3a\xf1\xd8\x7a\
\x55\xa8\xc7\x1f\x86\x8f\x2a\x6e\xd2\x8f\xf2\xcb\x7d\x3f\xba\xd6\
\xab\xb6\xa8\xc0\xae\xd3\xe1\xcf\xc3\x99\x7c\x69\x34\xd7\x77\x53\
\x7f\x67\xe8\x76\x7f\x35\xd5\xeb\xe0\x0e\x06\x4a\xa9\x3c\x67\x1d\
\x4f\x40\x3f\x00\x79\x8d\x17\x49\x9f\x5e\xd5\xac\xf4\xeb\x61\x99\
\xee\xa5\x58\x93\xd0\x12\x71\x93\xec\x3a\xfe\x15\xe9\x5f\x18\x35\
\xf8\x34\x1b\x3b\x4f\x03\x68\xcd\xe5\xe9\xf6\x28\xa6\xed\x97\x83\
\x34\xa7\x9c\x37\xaf\x5d\xc7\xdc\xfb\x53\xc5\x56\x9b\x94\x70\xf4\
\x5d\xa5\x2e\xbd\x97\x57\xfa\x22\x72\xfc\x2d\x25\x09\xe3\x31\x4a\
\xf4\xe1\x64\x97\xf3\x49\xec\xbd\x3a\xbf\x2f\x51\xda\xb7\xc5\xeb\
\x1f\x0a\xc0\xfa\x57\x81\x74\xf8\x6c\x6d\x97\xe5\x6d\x46\x58\xf7\
\x4b\x31\x1f\xc4\x01\xfe\x6d\x9f\xa0\xae\x07\x52\xf1\xbf\x88\x35\
\x69\x0b\xdd\xeb\x57\xd3\x67\x9d\xa6\x76\x0a\x3e\x8a\x0e\x07\xe0\
\x2b\x12\x8a\xd6\x8e\x0e\x85\x1d\x54\x6e\xfb\xbd\x5b\xf9\x98\xe2\
\x73\x2c\x5e\x2b\x49\x4e\xd1\x5b\x45\x69\x15\xe8\x96\x86\x8d\xbf\
\x89\x35\x6b\x37\x0f\x06\xa9\x7b\x03\xff\x00\x7a\x3b\x87\x53\xfa\
\x1a\xed\x3c\x3b\xf1\xc3\x5e\xd3\x57\xec\xda\xa9\x8f\x5f\xd3\x9c\
\x6d\x92\xde\xf1\x41\x62\xbd\xfe\x6c\x73\xff\x00\x02\xcd\x79\xd5\
\x15\x75\x70\xb4\x2b\x2b\x54\x82\x66\x38\x7c\x76\x2f\x0b\x2e\x6a\
\x35\x1a\xf9\xe9\xf3\x5b\x3f\x99\xea\xfe\x24\xf0\x0e\x8f\xe3\x1d\
\x0e\x5f\x12\x78\x27\x20\x44\x37\x5e\x69\x07\xef\xc5\xdc\x95\x1f\
\x9f\x1d\x0f\x6e\x98\xaf\x28\xae\x87\xc0\x9e\x32\xba\xf0\x3f\x88\
\xad\xf5\x1b\x72\xcd\x16\x76\x5c\x42\x0f\x12\xc6\x4f\x2b\xf5\xee\
\x3d\xc0\xae\x87\xe3\x37\x85\x6d\x74\x6d\x72\xdb\x56\xd3\x36\x9d\
\x23\x58\x8f\xed\x50\xec\x1f\x2a\xb1\xc1\x60\x3d\xb9\x0d\xff\x00\
\x02\xc7\x6a\xe4\xa3\x29\xe1\xab\x2c\x35\x47\x78\xbf\x85\xbd\xf4\
\xdd\x3f\xcd\x33\xd2\xc5\x53\xa5\x8e\xc3\x3c\x6d\x18\xa8\xce\x2d\
\x29\xc5\x6d\xae\xd2\x4b\xa2\x6f\x46\xba\x3b\x77\x3c\xf6\x8a\x28\
\xaf\x54\xf9\xde\x50\xa2\x8a\x28\x0e\x50\xa2\x8a\x28\x0e\x50\xa2\
\x8a\x28\x0e\x50\xa2\x8a\x28\x0e\x50\xa2\x8a\x28\x24\x28\xa2\x8a\
\x0a\xe5\x0a\x28\xa2\x80\xe5\x0a\x28\xa2\x80\xe5\x0a\x28\xa2\x83\
\x40\xa2\x8a\x28\x00\xa2\x8a\x28\x00\xa2\x8a\x28\x00\xa2\x8a\x28\
\x00\xa2\x8a\x28\x00\xa2\x8a\x28\x03\xd6\x3e\x1e\xb7\xfc\x23\x7f\
\x09\x7c\x5f\xaf\x2f\xcb\x73\x70\xcb\x63\x13\x77\x19\x00\x64\x7f\
\xdf\xcc\xff\x00\xc0\x6b\xc9\xeb\xd5\x6e\x3f\x73\xfb\x3b\xda\xec\
\xe3\xce\xd5\x0e\xff\x00\xcd\xbf\xf8\x91\x5e\x55\x5e\x5e\x0b\xde\
\x9d\x6a\x8f\x77\x26\xbe\xe4\x92\x3d\xec\xd3\xdc\xa7\x86\xa2\xb6\
\x54\xd3\xf9\xc9\xb6\xc2\x8a\x28\xaf\x4c\xf0\x42\x8a\x28\xa6\x02\
\x86\x2a\x41\x07\x04\x74\x35\xea\xdf\x18\xdb\xfb\x7f\xc3\x1e\x0f\
\xf1\x36\x33\x3d\xd5\xaf\xd9\xee\x1f\xd5\xd7\x07\xff\x00\x42\xf3\
\x2b\xca\x2b\xd5\x3c\x41\xfb\xdf\xd9\xeb\xc3\x6c\xdf\x7a\x3d\x49\
\xd5\x4f\xb1\x33\xff\x00\x9f\xc2\xbc\xbc\x5f\xbb\x56\x85\x45\xfc\
\xd6\xf9\x34\xff\x00\xc9\x1e\xf6\x5d\xfb\xcc\x36\x2e\x8b\xdb\x93\
\x9b\xe7\x19\x2f\xf3\x64\x3f\x00\x6c\x62\x6f\x16\x5e\x6a\xb7\x03\
\xf7\x3a\x5d\x9c\x93\xee\xf4\x63\xc7\xfe\x83\xbe\xbc\xef\x54\xd4\
\x65\xd5\xf5\x3b\xbb\xe9\xce\x66\xb9\x95\xa6\x73\xee\xc4\x93\xfc\
\xeb\xd2\xfe\x0f\xfe\xef\xc1\x5f\x11\x26\x5f\xf5\x8b\xa7\x05\x07\
\xb8\xca\x4d\xfe\x02\xbc\xaa\x8a\x1e\xf6\x2e\xb4\x9f\x4e\x55\xf8\
\x5f\xf5\x0c\x5f\xb9\x97\x61\x60\xb6\x97\x3c\x9f\xad\xf9\x7f\x28\
\x85\x14\x51\x5e\xa1\xe0\x85\x14\x51\x40\x05\x7a\xc2\xb7\xfc\x24\
\xff\x00\xb3\xfb\x99\x3e\x7b\x8d\x0a\xf4\x05\x3f\xc5\xb0\x91\xfa\
\x62\x4f\xfc\x76\xbc\x9e\xbd\x53\xe1\xaf\xef\xbe\x16\xf8\xfa\x26\
\xfb\x8b\x0a\x38\xfa\xed\x63\xff\x00\xb2\x8a\xf2\xf3\x0d\x21\x0a\
\x9f\xcb\x28\xfe\x76\xfc\x99\xef\x64\xfe\xf5\x5a\x94\x5e\xd3\x84\
\xd7\xdd\x17\x25\xf8\xa4\x79\x5d\x14\x51\x5e\x99\xe0\x85\x14\x51\
\x4b\x50\x0a\x28\xa2\xa8\x02\x8a\x28\xa9\xd4\x02\x8a\x28\xa6\x01\
\x45\x14\x50\x20\xa2\x8a\x28\x18\x51\x45\x14\xc0\x28\xa2\x8a\x57\
\x01\xb9\x34\x64\xd2\x51\x54\x31\x72\x69\xd4\xca\x5c\x9a\x2c\x16\
\x1d\x4d\xc9\xa3\x26\x92\x8b\x05\x85\xc9\xa5\xdd\x4d\xa2\x90\x87\
\xd1\x4d\xc9\xa3\x26\x9d\x87\x61\xd4\x53\x72\x68\xc9\xa2\xc1\x61\
\xd4\x53\x72\x68\xc9\xa4\x23\xd6\x34\x91\xfd\xb1\xfb\x3e\xea\xd0\
\xaf\x32\xe9\xb7\xe2\x5d\xbd\xf6\x92\x9c\xff\x00\xe3\xed\xf9\x57\
\x94\xd7\xa6\x7c\x0b\xd5\xad\xe4\xd5\x35\x4f\x0d\xdf\x36\x2c\xf5\
\xbb\x66\x84\x67\xfe\x7a\x00\x71\x8f\x4c\xa9\x6f\xc4\x0a\xe0\x35\
\xed\x1a\xe7\xc3\xba\xcd\xe6\x9b\x76\xbb\x6e\x2d\xa4\x31\xb7\x1c\
\x1f\x42\x3d\x88\xc1\x1e\xc6\xbc\xac\x2b\xf6\x75\xeb\x51\x7d\x5f\
\x32\xf4\x7b\xfe\x28\xf7\xf1\xeb\xdb\xe1\x30\xd8\xa8\xf4\x5c\x8f\
\xc9\xc5\xb6\xbe\xf8\xb5\xf7\x14\x32\x69\xd4\xca\x5c\x9a\xf5\x4f\
\x00\x75\x14\xdc\x9a\xed\x75\xbf\x85\xf7\xda\x5f\x83\xec\x3c\x47\
\x69\x75\x0e\xab\x61\x3c\x61\xe7\x36\xc0\x9f\xb3\x93\xd8\xfa\x81\
\xd0\x9e\x30\x78\xf7\xac\x6a\x56\xa7\x49\xc5\x4d\xdb\x9b\x45\xea\
\x74\xd1\xc3\x56\xaf\x19\xca\x94\x6e\xa2\xae\xfc\x97\x73\x8c\xaf\
\x56\xf1\xda\xff\x00\x64\x7c\x17\xf0\x56\x9a\xfc\x49\x71\x23\xde\
\x63\xd8\xee\x6c\xfe\x52\x8a\xe0\x7c\x1b\xe1\xb9\xfc\x5d\xe2\x4b\
\x1d\x2a\x00\x7f\x7f\x20\xf3\x1c\x0f\xb9\x18\xe5\x9b\xf0\x19\xfd\
\x2b\xaa\xf8\xe3\xe2\x08\x75\x5f\x18\x0b\x0b\x32\x05\x8e\x93\x10\
\xb3\x8d\x57\xee\xee\x1f\x7b\x1f\x43\x85\xff\x00\x80\xd7\x06\x21\
\xfb\x5c\x55\x2a\x4b\xec\xde\x4f\xee\xb2\xfc\x5f\xe0\x7a\xd8\x35\
\xec\x30\x18\x8c\x43\xfb\x76\x82\xf3\xbb\x52\x97\xdc\x97\xe2\x6a\
\x7c\x09\xff\x00\x89\x8c\x3e\x2e\xd1\x47\xfa\xcb\xfd\x35\x82\x8f\
\x5c\x06\x5f\xfd\xa8\x2b\xca\x4e\x47\x07\x83\x5d\x47\xc3\x1f\x14\
\x2f\x84\xfc\x6d\xa6\xdf\xca\xdb\x6d\xb7\xf9\x33\x9e\xc2\x36\x18\
\x24\xfd\x32\x0f\xe1\x56\xbe\x2e\x78\x55\xfc\x27\xe3\x5b\xc4\x45\
\xc5\x95\xdb\x1b\xab\x66\x1d\x36\xb1\xc9\x51\xf4\x39\x1f\x4c\x7a\
\xd1\x4d\xfb\x2c\x6c\xe2\xfe\xda\x4d\x7a\xad\x1f\xe8\x15\x57\xd6\
\x32\xba\x53\x8f\xfc\xba\x93\x8b\xf4\x97\xbc\x9f\xdf\x74\x71\xb4\
\x53\x72\x69\xd5\xea\x9e\x00\x51\x4d\xc9\xae\xd3\xc3\xff\x00\x0c\
\x6f\xbc\x51\xe0\xfb\xbd\x6b\x4c\xbb\x86\xee\xe6\xda\x4d\xaf\xa6\
\xc6\x33\x2e\xd0\x3a\xfd\x7d\x06\x39\x19\xe7\x3c\x56\x35\x6b\x42\
\x8a\x52\xa8\xec\xb6\x3a\x70\xf8\x6a\xb8\xa9\x38\x51\x8f\x33\x49\
\xbb\x79\x2f\xcc\xe3\x6b\xd5\x7c\x20\x3f\xb2\x7e\x07\xf8\xb2\xf9\
\xfe\x53\x79\x3a\x5b\x47\xfe\xd6\x36\x8f\xfd\x9d\xbf\x23\x5e\x5d\
\x6f\x6f\x2d\xcd\xc4\x76\xf1\x46\xd2\x4f\x23\x04\x58\xd4\x7c\xc5\
\x89\xc0\x00\x7a\xe6\xbd\x53\xe2\xc3\xc7\xe1\x2f\x07\xf8\x73\xc1\
\x90\xb8\x69\xe1\x4f\xb5\xde\xed\x3f\xf2\xd0\xe7\x03\xf3\x67\xfc\
\x02\xd7\x0e\x35\xfb\x49\x52\xa0\xb7\x72\x4f\xe5\x1d\x5f\xe8\x8f\
\x5b\x2b\x5e\xc6\x15\xf1\x72\xda\x31\x69\x7f\x8a\x7e\xea\xfc\x2e\
\xfe\x47\x93\xd1\x45\x15\xea\x1e\x00\x51\x45\x14\x00\x51\x45\x14\
\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\
\x00\x51\x45\x14\x00\x51\x45\x14\x80\x65\x14\x51\x56\x5d\x82\x8a\
\x28\xa0\x61\x45\x14\x50\x2b\x05\x14\x51\x40\x58\x28\xa2\x8a\x02\
\xc1\x45\x14\x50\x01\x45\x14\x50\x22\x5b\x5b\xa9\x6c\xae\x62\xb8\
\x82\x46\x8a\x78\x9c\x3a\x48\xa7\x05\x58\x1c\x82\x3f\x1a\xf6\x6d\
\x42\xc6\xcf\xe3\xb6\x83\x1d\xfd\x8b\x45\x69\xe3\x1b\x18\x82\xdc\
\x5a\xb1\x0a\x2e\x54\x77\x1f\xd0\xf6\xce\x0f\x18\x35\xe2\x95\x67\
\x4f\xd4\x2e\xb4\x9b\xc8\xae\xec\xe7\x92\xda\xe6\x23\xb9\x25\x89\
\x8a\xb2\x9f\xad\x70\x62\x30\xce\xad\xaa\x53\x7c\xb3\x8e\xcf\xf4\
\x7e\x4c\xf5\x70\x58\xc5\x87\x52\xa5\x5a\x3c\xd4\xa7\xba\xfc\x9a\
\x7d\x1a\xff\x00\x80\xc3\x50\xd3\xae\xb4\x9b\xc9\x6d\x2f\x2d\xe4\
\xb5\xb9\x8c\xe1\xe2\x95\x4a\xb0\xfc\x2a\xb5\x7a\xad\xaf\xc6\x6b\
\x1f\x10\x5a\xc7\x69\xe3\x4f\x0f\xc1\xac\xaa\x0c\x0b\xc8\x00\x49\
\x80\xfd\x39\xff\x00\x74\xad\x0d\x65\xf0\x93\x52\xfd\xe0\xbf\xd6\
\x74\xac\xf3\xe5\x6d\x2d\x8f\x6f\xb8\xff\x00\xce\xb0\x8e\x2e\xad\
\x3d\x2b\xd2\x95\xff\x00\xbb\xef\x2f\xf3\xfb\xd1\xd2\xf2\xda\x15\
\x5f\x36\x17\x11\x16\xbb\x4b\xdd\x6b\xd6\xfa\x7d\xcc\xf2\xaa\xf4\
\x2f\x83\xbe\x2f\xd5\xf4\x5d\x71\x74\xdb\x4b\x39\x75\x7d\x3e\xf4\
\xed\xb8\xd3\xd5\x77\x70\x78\x2e\x33\xc0\xc0\xeb\x9e\x08\xeb\xd8\
\x8d\x35\x87\xe1\x26\x95\xfb\xcf\xb4\x6b\x3a\xce\x3f\xe5\x99\x05\
\x73\xff\x00\x8e\xa7\xf3\xa6\x6a\x1f\x1a\xd3\x4b\xb1\x92\xc3\xc1\
\xfa\x2d\xbf\x87\xed\xdb\x86\xb8\xc0\x79\x9b\xdf\xd3\x3e\xe7\x75\
\x65\x5e\xa4\xf1\x90\x74\xa1\x45\xbb\xff\x00\x37\xba\xbf\xcf\xee\
\x47\x4e\x17\x0f\x4f\x2e\xab\x1c\x45\x4c\x54\x53\x8f\x48\x7b\xcd\
\xf9\x7f\x2e\xbe\x6f\xe4\x7a\x1f\x8a\x34\x0b\x4f\x83\xfe\x1d\xd6\
\xf5\x8f\x0d\xe9\xf2\xc9\x7b\x78\xde\x59\x9b\x21\x85\x92\x1e\xe3\
\xb8\x50\x79\xfa\x95\xcf\x02\xbe\x6c\x67\x69\x19\x99\x89\x66\x63\
\x92\xc4\xe4\x93\xeb\x5d\xbf\xc3\xff\x00\x8a\x57\xfe\x12\xd5\xa7\
\x6b\xd6\x93\x53\xd3\x2f\x98\x9b\xdb\x79\x9b\x79\x7c\xf0\x5c\x67\
\xf8\xb1\xd7\x3d\x47\x07\xb1\x18\xde\x3a\x3a\x0b\x78\x92\xe5\xfc\
\x36\xd2\x9d\x2d\xf0\xca\x24\x52\xa1\x58\xf5\x0b\x9e\x76\x8e\xd9\
\xe7\xf9\xd2\xc0\x51\xab\x85\xa9\x2a\x75\x97\x33\x7a\xf3\x77\xb6\
\x96\x7d\xad\xd3\xb8\xf3\x6c\x46\x1f\x1d\x4a\x15\xb0\xed\x42\x31\
\xba\xf6\x7d\xaf\xaf\x32\xee\x9f\x5e\xcf\x4d\xac\x73\xf5\xec\x3e\
\x13\xd5\xb4\xef\x8a\x9e\x15\x87\xc2\x5a\xd5\xc2\xda\xeb\x76\x63\
\xfe\x25\x97\xcf\xfc\x63\x18\x08\x7d\x4e\x00\x18\xee\x00\x3d\x45\
\x78\xf5\x2a\xb1\x46\x0c\xa4\xab\x03\x90\x47\x51\x5d\xf8\x9c\x3f\
\xb7\x8a\xb3\xb4\x96\xa9\xf6\x7f\xd6\xe8\xf1\xf0\x38\xc9\x60\xe6\
\xdb\x8f\x34\x24\xad\x28\xbd\x9a\xfd\x1f\x54\xfa\x33\x5f\xc4\xde\
\x13\xd5\x3c\x1f\xa9\x35\x96\xa9\x6a\xd0\x48\x3e\xeb\xf5\x49\x07\
\xf7\x95\xbb\x8f\xf2\x6b\x23\x26\xbd\x2b\x41\xf8\xd9\x79\x1e\x9e\
\xba\x67\x89\x34\xf8\x3c\x4b\xa7\x0c\x0f\xf4\xa0\x3c\xd5\xf7\xdc\
\x41\xc9\x1e\xa4\x67\xde\xad\xb3\xfc\x25\xd6\xcf\x98\xcb\xab\xe8\
\x4c\x7a\xc7\x1e\x58\x03\xed\xf7\xeb\x95\x62\x6b\xd1\xf7\x6b\xd2\
\x6f\xce\x3a\xa7\xf2\xdd\x1d\xd2\xc0\x61\x71\x1e\xfe\x12\xba\x4b\
\xf9\x67\xee\xb5\xf3\xf8\x5f\xad\xd7\xa1\xe5\x35\xbd\xe0\x9f\x14\
\x6a\xbe\x13\xd7\xad\xee\xf4\x9d\xcf\x70\xc4\x21\xb7\x50\x58\x4e\
\x09\xfb\x85\x47\x5c\xfe\x7e\x95\xdb\x8d\x33\xe1\x25\x9f\xce\x75\
\x6d\x66\xff\x00\x1f\xf2\xcf\x61\x19\xff\x00\xc8\x6b\xfc\xea\x4f\
\xf8\x5b\x7e\x1f\xf0\x9c\x4f\x1f\x83\x7c\x33\x1d\xa4\xe4\x6d\xfb\
\x75\xff\x00\xcf\x20\xfc\x32\x4f\xfe\x3d\x8f\x6a\x9a\x98\x99\x57\
\x8b\xa7\x0a\x12\x77\xfe\x65\x65\xf3\xbf\xf9\x17\x47\x03\x1c\x2d\
\x45\x5a\xa6\x2a\x31\xb6\xbe\xeb\xe6\x97\xca\xda\x7d\xed\x1e\xa2\
\xde\x11\xd3\x6d\x6e\x1f\xc7\x31\xe8\x37\x0b\xad\x8b\x43\x3f\xf6\
\x48\x2b\x9f\x38\x8f\xbd\x81\xfc\x7d\x7f\x9e\x37\x57\xcc\xda\xf6\
\xb7\x79\xe2\x2d\x62\xef\x51\xbe\x7d\xf7\x57\x0e\x5d\xfd\x07\x60\
\xa3\xd0\x01\x80\x3e\x95\xb5\xa6\xfc\x4e\xf1\x0e\x9f\xe2\x91\xaf\
\x35\xfc\x97\x37\x87\xe5\x91\x65\x3f\x24\x89\x9f\xb8\x54\x70\x17\
\xd8\x74\xea\x2a\xf7\xc5\x0d\x73\xc3\x5e\x26\xba\xb3\xd5\x74\x48\
\x66\xb5\xd4\x2e\x90\xbd\xfd\xb9\x4c\x46\xaf\xea\x0f\x76\x3c\xe4\
\x8e\x0f\x07\x83\x9a\xe7\xc1\x61\xab\x60\xeb\x5a\xaa\xe6\xe6\x56\
\x4d\x5f\xdd\xb7\xd9\xd7\xa7\x67\xf7\x9d\xf9\xa6\x33\x0f\x99\x61\
\x9c\xb0\xef\x93\x95\xdd\xc5\xd9\x73\xb7\xa7\x3e\x9f\x6b\xba\xe8\
\xb6\xea\x70\xf9\x34\x64\xd2\x51\x5e\xf1\xf1\xa2\xe4\xd1\x93\x49\
\x45\x55\x87\x61\xdb\xa9\x33\x49\x45\x48\x85\xc9\xa3\x26\x92\x8a\
\x2e\x03\xe8\xa6\xe4\xd1\x93\x40\x0e\xa2\x9b\x93\x46\x4d\x31\xd8\
\x75\x14\xdc\x9a\x32\x69\xd8\x2c\x3a\x8a\x6e\x4d\x19\x34\x84\x3a\
\x8a\x6e\x4d\x14\x00\x94\x53\x72\x68\xc9\xa4\xd9\x63\xa8\xa6\xe4\
\xd1\x93\x4f\x98\x77\x1d\x45\x37\x26\x8c\x9a\x39\x82\xe3\xa8\xa2\
\x8a\x39\x82\xe1\x45\x14\x51\xcc\x17\x0a\x28\xa2\xa4\x41\x45\x14\
\x55\x73\x00\x51\x45\x14\x73\x00\x51\x45\x14\x73\x00\x51\x45\x14\
\x73\x00\x51\x45\x14\x73\x08\x28\xa2\x8a\x39\x90\x05\x14\x51\x4e\
\xf7\x18\x51\x45\x14\x6c\x01\x45\x14\x50\x98\x05\x14\x51\x49\xf9\
\x12\x14\x51\x45\x3b\x8c\x28\xa2\x8a\x5b\x80\x51\x45\x14\x58\x05\
\xe2\x92\x97\x8a\x4a\x95\xa8\x05\x14\x51\x55\xb0\xc2\x8a\x28\xa2\
\xe2\x0a\x28\xa2\x95\xc0\x28\xa2\x8a\x00\x6d\x14\xdc\x9a\x32\x6a\
\x40\x75\x14\x94\xb4\x00\x51\x45\x14\x00\x64\xd3\xa9\xb4\x64\xd0\
\x02\xe4\xd2\x64\xd1\x45\x00\x19\x34\x64\xd1\x45\x00\x3a\x8a\x6e\
\x4d\x19\x34\x00\xea\x29\xb9\x34\xea\x00\x28\xa4\xc9\xa4\xc9\xa0\
\x07\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\x14\
\x00\x51\x45\x14\x0c\x28\xa2\x8a\x04\x14\x51\x45\x00\x14\x51\x45\
\x00\x14\x51\x45\x00\x14\x51\x45\x3b\x80\x51\x45\x14\x00\x51\x45\
\x14\x00\x51\x45\x14\x80\x28\xa2\x8a\x00\x28\xa2\x8a\x00\x8a\x8a\
\x28\xa0\xd4\x5c\x9a\x32\x69\x29\xd8\x14\x05\x84\xc9\xa5\xa3\x68\
\xa5\xa0\x2c\x37\x26\x8c\x9a\x4a\x76\x05\x01\x60\xa5\xa2\x8a\x02\
\xc1\x45\x14\x50\x66\x14\x51\x45\x05\x24\x14\x64\xd1\xb7\xde\x8a\
\x04\xd5\x82\x8a\x28\xa0\xb0\xc9\xa3\x26\x8a\x28\x22\xd7\x0c\x9a\
\x32\x68\xa2\x82\x43\x26\x8c\x9a\x28\xa0\xae\x51\xd4\x53\x72\x68\
\xc9\xa0\x91\xd4\x53\x72\x68\xc9\xa0\x07\x51\x45\x14\x15\xca\x14\
\x51\x49\x93\x40\x72\x8b\x45\x37\x26\x8c\x9a\x03\x94\x75\x14\x51\
\x41\x21\x45\x14\x50\x01\x45\x14\x50\x57\x28\x51\x45\x14\x12\x14\
\x51\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x45\x45\x14\x50\x6c\
\x14\xb9\x34\x94\x50\x02\xe4\xd1\x93\x49\x4b\xc5\x00\x1c\x51\x9a\
\x4a\x28\x01\xd4\xb4\xdd\xd4\x66\x80\x1d\x45\x37\x26\x96\x81\x0b\
\x45\x14\xdc\x9a\x06\x14\xb4\x62\x96\x81\x05\x14\x51\x40\xc2\x8a\
\x28\xa0\x41\x45\x14\x50\x01\x45\x14\x50\x30\xa2\x8a\x28\x10\x51\
\x45\x2e\x05\x01\x61\x32\x68\xc9\xa2\x8a\x06\x19\x34\x52\xe0\x52\
\xed\x14\x00\x98\x14\xbb\x45\x14\x50\x01\x45\x14\x50\x20\xa2\x8a\
\x28\x12\x41\x45\x14\x50\x50\x51\x45\x14\x12\xd0\x51\x45\x14\x02\
\x41\x45\x14\x50\x3b\x05\x14\x51\x48\x2c\x41\x93\x46\x4d\x14\x51\
\x12\x90\x64\xd1\x93\x45\x14\x31\x0e\xa6\xd1\x45\x20\x0c\x9a\x75\
\x14\x53\x00\xa2\x8a\x28\x00\xa5\xc9\xa2\x8a\x40\x19\x34\x94\x51\
\x40\x0b\x93\x46\x4d\x14\x55\x8c\x32\x68\xc9\xa2\x8a\x94\x21\x69\
\x68\xa2\x98\x0d\xc9\xa5\xa2\x8a\x00\x5a\x28\xa2\x80\x0a\x28\xa2\
\x80\x0a\x32\x68\xa2\x80\x0a\x28\xa2\x80\x0c\x9a\x75\x14\x52\x60\
\x26\x4d\x2d\x14\x52\x00\xa2\x8a\x28\x00\xa3\x02\x8a\x29\x00\x51\
\x45\x14\xc0\x28\xa2\x8a\x00\x28\xa2\x8a\x68\x02\x8a\x28\xa1\x80\
\x51\x45\x14\xc0\xff\xd9\
\x00\x00\x1a\x19\
\xff\
\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x01\x00\x60\x00\
\x60\x00\x00\xff\xdb\x00\x43\x00\x03\x02\x02\x03\x02\x02\x03\x03\
\x03\x03\x04\x03\x03\x04\x05\x08\x05\x05\x04\x04\x05\x0a\x07\x07\
\x06\x08\x0c\x0a\x0c\x0c\x0b\x0a\x0b\x0b\x0d\x0e\x12\x10\x0d\x0e\
\x11\x0e\x0b\x0b\x10\x16\x10\x11\x13\x14\x15\x15\x15\x0c\x0f\x17\
\x18\x16\x14\x18\x12\x14\x15\x14\xff\xdb\x00\x43\x01\x03\x04\x04\
\x05\x04\x05\x09\x05\x05\x09\x14\x0d\x0b\x0d\x14\x14\x14\x14\x14\
\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\
\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\
\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\x14\xff\xc0\x00\
\x11\x08\x00\x98\x01\x6c\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\
\xff\xc4\x00\x1f\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\
\x00\x00\x00\x00\x00\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\
\x0b\xff\xc4\x00\xb5\x10\x00\x02\x01\x03\x03\x02\x04\x03\x05\x05\
\x04\x04\x00\x00\x01\x7d\x01\x02\x03\x00\x04\x11\x05\x12\x21\x31\
\x41\x06\x13\x51\x61\x07\x22\x71\x14\x32\x81\x91\xa1\x08\x23\x42\
\xb1\xc1\x15\x52\xd1\xf0\x24\x33\x62\x72\x82\x09\x0a\x16\x17\x18\
\x19\x1a\x25\x26\x27\x28\x29\x2a\x34\x35\x36\x37\x38\x39\x3a\x43\
\x44\x45\x46\x47\x48\x49\x4a\x53\x54\x55\x56\x57\x58\x59\x5a\x63\
\x64\x65\x66\x67\x68\x69\x6a\x73\x74\x75\x76\x77\x78\x79\x7a\x83\
\x84\x85\x86\x87\x88\x89\x8a\x92\x93\x94\x95\x96\x97\x98\x99\x9a\
\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xb2\xb3\xb4\xb5\xb6\xb7\xb8\
\xb9\xba\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xd2\xd3\xd4\xd5\xd6\
\xd7\xd8\xd9\xda\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf1\xf2\
\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xff\xc4\x00\x1f\x01\x00\x03\x01\
\x01\x01\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x01\x02\
\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\xff\xc4\x00\xb5\x11\x00\x02\
\x01\x02\x04\x04\x03\x04\x07\x05\x04\x04\x00\x01\x02\x77\x00\x01\
\x02\x03\x11\x04\x05\x21\x31\x06\x12\x41\x51\x07\x61\x71\x13\x22\
\x32\x81\x08\x14\x42\x91\xa1\xb1\xc1\x09\x23\x33\x52\xf0\x15\x62\
\x72\xd1\x0a\x16\x24\x34\xe1\x25\xf1\x17\x18\x19\x1a\x26\x27\x28\
\x29\x2a\x35\x36\x37\x38\x39\x3a\x43\x44\x45\x46\x47\x48\x49\x4a\
\x53\x54\x55\x56\x57\x58\x59\x5a\x63\x64\x65\x66\x67\x68\x69\x6a\
\x73\x74\x75\x76\x77\x78\x79\x7a\x82\x83\x84\x85\x86\x87\x88\x89\
\x8a\x92\x93\x94\x95\x96\x97\x98\x99\x9a\xa2\xa3\xa4\xa5\xa6\xa7\
\xa8\xa9\xaa\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xc2\xc3\xc4\xc5\
\xc6\xc7\xc8\xc9\xca\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xe2\xe3\
\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\
\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xf9\xca\
\x8a\x66\x68\xcd\x7e\xf0\x7f\x39\x0f\xa2\x99\x9a\x33\x40\x87\xd1\
\x4c\xcd\x19\xa0\x56\x1f\x45\x33\x34\xe5\xa6\x16\x16\x8a\x28\xaa\
\x0b\x05\x14\x94\x64\x50\x16\x16\x8a\x4c\x8a\x32\x28\x0b\x0b\x46\
\x69\x32\x29\x77\x0a\x02\xc3\x96\x46\x8c\xe5\x78\x35\xa3\x6f\x76\
\x26\x50\x1b\x86\xac\xcd\xc2\x95\x5b\xb8\x38\x22\x82\x25\x0e\x64\
\x6d\x63\x1c\x54\xd1\x42\x48\xaa\x76\x77\x1e\x62\x8f\x30\x74\xe9\
\xef\x57\x0d\xd2\x27\x4c\xd6\xa9\xe8\x79\xf3\x8b\x5a\x22\x5d\xb4\
\x74\xeb\x50\x35\xe0\xec\x0d\x34\xdd\x7a\x0a\x7c\xc6\x7c\xb2\x2c\
\xe4\x7a\x51\x91\xe9\x55\x0d\xcb\x1e\x9c\x52\x79\xee\x7b\xd1\xcc\
\x3f\x66\xcb\x99\x1e\x94\x8d\x8f\x5c\x55\x36\x99\xfd\x69\xad\x23\
\x37\x52\x68\xe6\x1a\xa6\xcb\xbb\x80\xfe\x21\x48\x64\x55\xea\x45\
\x51\x67\x2b\xde\x9a\x64\xe0\xd2\x72\xd0\xaf\x67\xdc\xd0\xf3\xd3\
\xd4\x7e\x55\x72\xcd\x83\x2b\x11\x9a\xa1\x63\x62\x6e\x19\x59\xfe\
\x58\xc7\x5a\xd8\xe8\xa0\x01\x85\x1d\x05\x5c\x0e\x5a\xdc\xa9\x59\
\x05\x14\x51\x5a\x9c\x61\x45\x14\x50\x01\x45\x14\x50\x01\x45\x14\
\x50\x01\x52\x5b\x49\xe5\xce\x8d\xef\x8a\x8e\x9c\x88\x5b\x90\x3a\
\x50\x1d\x35\x37\xbb\x9a\x29\xb1\xe7\xcb\x4c\xf5\xda\x29\xd5\xb7\
\x43\xcc\x7b\x85\x14\x51\x48\x41\x45\x14\x7f\x9e\x94\x12\x79\x25\
\x14\x51\x5e\x51\xfa\x08\x51\x45\x14\x00\x51\x45\x14\x00\x51\x45\
\x14\x00\x66\x8c\xd1\x45\x00\x14\x51\x45\x00\x14\x51\x45\x00\x83\
\x6e\x7b\x51\x4e\xf6\x04\x03\xdb\x35\xd9\x78\x27\xe0\xdf\x8c\xbe\
\x21\x36\x74\x4d\x0a\xee\xe2\x1e\x33\x3b\xc4\x56\x35\xce\x7a\xb1\
\xc7\xa1\xfc\xab\x39\x54\xa7\x4b\xe3\x76\x36\xa7\x4e\x75\x3e\x15\
\x73\x8d\x55\x2d\xc0\x19\x35\x6e\xde\xc4\x8f\x99\xcf\xe1\x5e\xe5\
\x6f\xfb\x20\x78\xf2\x38\x72\x13\x4d\xf3\x3f\xe7\x89\xbe\x8f\x7e\
\x7e\x99\xcd\x71\x1e\x32\xf8\x4b\xe2\xef\x01\xfc\xda\xde\x87\x73\
\x6f\x17\x38\x9c\x46\xc6\x36\xc6\x3a\x30\x24\x1c\x64\x7e\x75\x11\
\xc4\xd0\x93\xb2\x9d\xc9\xa9\x43\x11\x15\xf0\xd9\x1c\x7e\x31\xd0\
\x60\x0f\x4a\x29\x41\xc8\x23\x20\x9f\x61\x49\x5d\x9a\x2b\x58\xf3\
\x35\xbe\xa1\x45\x14\x50\x30\xa2\x91\x9b\x6d\x35\x9b\xd2\x80\x1c\
\x4e\x29\xac\xde\x9c\x52\x6e\x34\x67\x3d\x68\x60\x1c\xb7\x5a\xb7\
\x63\x60\x6e\x1b\x2c\x31\x18\xef\x4b\x63\x62\x6e\x1f\xe6\xc8\x8c\
\x75\x35\xb4\x88\x11\x76\xa8\xc2\x8e\xd5\x71\x89\xcd\x52\xaf\x2e\
\x88\x45\x40\x91\x85\x03\x03\xd2\x9c\x68\xfe\x74\x56\xa7\x9e\xdf\
\x33\xb8\x51\x45\x14\x6a\x01\x45\x14\x51\xa8\x05\x14\x53\x91\x4b\
\x1c\x01\x9a\x35\x61\xb6\xa3\x69\xcb\x19\x7e\x82\xac\x47\x69\xdd\
\x8e\x2a\x74\x8c\x2f\x41\x8a\xb5\x1b\x18\x4a\xa2\x20\x8e\xd0\x2f\
\x2c\x6a\xf5\x9d\xaa\xcd\x3a\x46\x17\x8e\xa7\x15\x18\x51\xdf\xf0\
\xad\x3d\x1a\x22\x77\xcb\xd3\xa2\x8f\xeb\x5a\x45\x5d\x9c\x95\x6a\
\x35\x17\x22\xec\x76\x91\x8e\x31\x91\xda\x97\xec\xb1\x0f\xe0\xa9\
\xd8\x77\xc6\x3d\xa9\xb5\xb2\x89\xe4\x73\x36\xef\x72\x35\xb5\x8b\
\xfb\x80\x7d\x45\x2f\xd9\xe3\x5e\x88\xbf\x90\xa7\xd1\x56\x0e\x4f\
\xb8\xd1\x1a\x0e\x88\xa3\xf0\xa5\xf2\xd7\xfb\xa3\xf2\xa5\xa2\x82\
\x6e\xcf\x0a\xa2\x8a\x2b\xc2\x3f\x52\x0a\x28\xa2\x80\x0a\x28\xa2\
\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa4\x3e\xb4\x00\xb4\
\xbb\x4b\x02\x07\x03\xfb\xd8\xe8\x7f\xce\x6a\x48\x61\x69\x3b\x57\
\x5b\xf0\xeb\xc2\x2d\xe3\x0f\x1a\x68\xda\x1a\x67\x7d\xf5\xca\x42\
\x4a\xf0\x42\x93\xc9\xcf\x6e\x2a\x27\x35\x4e\x2e\x4f\xa0\x47\xde\
\x92\x82\xdd\x9e\x95\xf0\x9f\xe1\x86\x85\xe1\x3f\x0a\xff\x00\xc2\
\xc4\xf1\xfc\x65\xf4\xcd\xc4\x69\x9a\x41\xe1\xaf\x5f\xb1\x3e\x8b\
\x9c\x7e\x75\x81\xe3\xcf\xda\x1f\xc5\x3e\x2f\x76\xb5\xb2\x95\xb4\
\x3d\x22\x3c\xa4\x5a\x6e\x9f\xf2\x47\x10\xe3\x8f\x97\x19\xed\xcd\
\x5f\xfd\xa6\xbc\x67\xfd\xbd\xe3\xe6\xf0\xfd\x81\x58\xf4\x6d\x01\
\x3f\xb3\xac\xe2\x8f\x81\x85\x03\x71\xc0\xf5\x38\xfc\xab\xca\x21\
\x8c\x46\x80\x60\x6e\x1d\x4d\x70\x61\xe8\xfb\x6f\xdf\xd5\xeb\xb1\
\xdd\x8a\xc4\x3a\x3f\xb9\xa7\xd3\x7f\x5e\xe1\xfd\xa1\xa8\xb4\x9e\
\x77\xda\xa4\x0f\xfd\xed\xe7\x71\xf7\xaf\x45\xf0\x1f\xed\x01\xe3\
\x2f\x03\xec\xb5\x9e\xe5\xb5\xfd\x1a\x4c\x2c\xba\x66\xa3\xfb\xc8\
\xa4\x5f\x4e\x73\x8e\xa7\x9a\xf3\xd1\xc7\x4e\x28\x5c\x2f\x6e\x6b\
\xba\x58\x7a\x72\x5c\xad\x1e\x7c\x31\x95\x63\x2b\xde\xe7\xb4\x7c\
\x44\xf0\x06\x89\xe2\xcf\x0c\xbf\xc4\x0f\x01\xc6\xc3\x4b\xdc\x06\
\xa3\xa4\xf5\x92\xc5\xfb\x90\x3a\x95\xce\x79\xf6\xaf\x18\x61\xb7\
\x03\x18\x38\xe7\xeb\xfe\x71\x5e\x9d\xfb\x3d\xf8\xe8\x78\x43\xe2\
\x05\xbd\x9d\xdf\xcf\xa2\xeb\x6a\x74\xdd\x42\x13\xd0\xc6\xe0\x80\
\x7e\xa0\xe3\xf3\x35\xca\x7c\x50\xf0\xc9\xf0\x3f\xc4\x3f\x10\x68\
\x24\x60\x59\xdd\x10\x9e\xea\x40\x2a\x47\xb6\x08\xae\x6c\x3c\xa5\
\x4a\xa4\xb0\xf3\xe9\xb1\xd5\x89\x84\x6b\x52\x58\xa8\xfc\x4f\x75\
\xfa\x9c\xd1\x38\xa6\xb3\x1e\xd4\x9b\x8d\x1b\xab\xd2\x3c\x91\x39\
\xa5\xe3\xbd\x1b\xaa\x48\x22\x6b\x89\x02\x24\x6f\x2c\x8d\xf7\x52\
\x35\x2c\xc7\xf0\x14\x69\xd4\xa4\x9b\x76\x48\x60\xdb\x56\xb4\xfb\
\x13\x70\xdf\x36\x44\x5d\xcd\x6e\x58\xfc\x37\xf1\x2d\xfa\x89\x13\
\xc3\x7a\xb0\x87\xa9\x93\xec\x72\xe3\xf9\x1a\x92\x6d\x36\x4d\x29\
\xbc\x89\x60\x9a\xd5\xd3\x83\x1c\xb1\xb2\x91\xf5\xc8\x15\x34\xea\
\x46\x6e\xca\x46\x75\xf9\xa9\x2d\x62\xfe\xe2\x25\x51\x1a\x85\x51\
\x80\x3b\x52\xfb\xf7\xa5\x6f\xbd\xef\xfd\xef\x5a\x40\x3f\x1f\x6f\
\xfe\xbd\x75\xa5\x7d\x0f\x21\xbe\x67\x70\xa3\x35\x6f\x4f\xd2\xaf\
\x35\x47\xdb\x63\x67\x35\xdb\xf5\xdb\x02\x33\xfe\x7c\x1a\xd0\xb8\
\xf0\x67\x88\x6d\x61\x32\xcd\xa0\x6a\x51\x44\x39\x2e\xf6\x72\x05\
\xfc\xf0\x3f\x4a\xca\x55\x69\xc5\xf2\xb9\x1d\x11\xa1\x52\x6a\xea\
\x1f\x33\x12\x8a\x7e\x36\x92\xae\xbb\x58\x75\x19\xe4\x7e\x1d\x47\
\xe3\x4c\xdb\xb8\xfc\xa0\x93\x55\x1f\x23\x9f\x6d\x1a\x0a\x55\x52\
\xdc\x01\x9a\xb1\x1d\xa3\x37\x2d\xc7\xb5\x59\x58\x96\x2e\x95\xa2\
\x8d\x8c\x65\x51\x47\x62\xb4\x36\x65\xb9\x63\xf4\xab\x2b\x18\x8c\
\x70\x31\x4e\xc8\xf4\xa4\x2d\x9a\xb3\x9e\x52\x72\x12\x97\x34\x94\
\x50\x40\xa0\x6e\x35\xd0\x58\xc5\xe4\xda\xc6\x3a\x71\x9a\xc5\xb3\
\x8f\xce\x9d\x57\xf1\xae\x87\x6e\xdc\x0e\xdd\xab\x68\x6e\x71\xe2\
\x25\xf6\x45\xc9\xa4\xa2\x8a\xd4\xe0\x0a\x28\xa2\x80\x0a\x28\xa2\
\x80\x3c\x2a\x8a\x28\xaf\x08\xfd\x4c\x28\xa2\x8a\x00\x28\xa2\x8a\
\x00\x28\xa2\x8a\x00\x28\xa4\x3d\xaa\x58\xa1\x69\x38\x03\x24\xf7\
\xa6\x1a\x2d\x58\xc0\xa4\xf4\xe4\xd5\xab\x7b\x32\xdc\xbf\x1e\xd5\
\x3c\x36\xcb\x0f\x5f\x99\xbb\xd4\xd5\x56\xb1\x84\xaa\x74\x40\xab\
\xb5\x40\x51\x8c\x7a\x57\xae\xfe\xca\xb6\xeb\x37\xc6\xed\x05\xe4\
\x4d\xe9\x0b\x3c\xc7\x8c\x81\x85\x38\x27\xdb\x9a\xf2\x50\x71\x81\
\xd7\xd3\xeb\x5e\xef\xf0\x4a\xcd\x7e\x1d\xfc\x38\xf1\x67\xc4\x1b\
\xef\xf4\x79\x1e\xd9\xb4\xed\x2b\x77\x0e\xf2\xb6\x41\x61\xed\x8f\
\xe5\x5c\x78\xd9\x46\x34\x9c\x7a\xb3\xa7\x03\x07\x3a\xca\xa3\xda\
\x3a\xfd\xda\x9e\x27\xe2\x99\x9a\xeb\xc6\x5a\xbc\xac\xc1\xdb\xed\
\x52\x7c\xe3\xbf\xcc\x79\xaa\x2c\x70\x6a\xb4\x12\xbc\xd7\x12\xca\
\xed\xb9\xd9\xb2\xcc\x38\xc9\xff\x00\x3f\xce\xa5\xdc\x6b\xa2\x8c\
\x14\x29\xc6\x0f\x74\x61\x88\x7c\xd5\x5c\x97\x51\x59\xa9\x37\x1a\
\x37\x51\xda\xb6\xf5\x39\xd1\x7f\x43\x90\xc7\xab\x59\x48\xa4\x09\
\x56\x74\x2a\x4f\xae\x7a\xe7\xf3\xaf\x4e\xfd\xac\xe0\x16\xff\x00\
\x19\x1a\x55\x5f\x96\xe6\xc6\xde\x40\xdd\x9c\x79\x63\xe6\x07\xbf\
\x7a\xf2\x48\xf3\xe6\x28\x51\x93\x90\x7f\x2a\xf7\x0f\x8a\xd6\xa7\
\xe2\x37\xc1\x1f\x05\x78\xca\xdb\xfd\x32\xef\x45\x4f\xec\x7d\x4c\
\xa0\xfd\xe2\x80\xc4\xc6\xc7\xbe\x00\xc8\xfa\x63\xd2\xbc\xbc\x4b\
\x71\xad\x4e\x6f\x63\xd9\xc1\xa5\x56\x85\x4a\x2b\x7d\xff\x00\x43\
\xc3\x58\x62\x80\xdf\x29\x18\xe6\x93\x7e\xf5\x06\x94\x29\x20\x9a\
\xf4\xba\xbb\x1e\x47\x94\x8d\x6f\x09\xf8\x5f\x50\xf1\x97\x88\x2c\
\xf4\x6d\x32\x2f\x36\xee\xe9\xc4\x6a\x3b\x28\xee\xc4\xf6\x00\x0a\
\xf5\xfd\x4b\xc6\x7a\x0f\xc1\xd6\x93\x46\xf0\x55\xa5\xae\xa3\xab\
\xc2\x76\xdf\x78\x86\xf2\x2f\x30\x2c\x83\xef\x24\x20\xfc\xa3\x69\
\xcf\x27\xd7\x8a\xa3\xf0\x32\x17\xd0\xfc\x25\xe3\xcf\x19\x45\x81\
\x75\x63\x66\xb6\x56\xd9\xec\xf3\x12\x32\x3d\x08\x08\xd5\xe6\xb1\
\xc7\xe7\x39\x7c\xe7\x24\xe5\x8f\x7e\x4f\x3f\xe7\xd6\xb8\x1a\xfa\
\xc5\x56\x9e\xc8\xee\x95\x6f\xa9\xd1\x55\x23\xf1\xc8\xef\x64\xf8\
\xf7\xe3\xe9\xa6\xf3\x57\xc4\x57\x99\xed\xc8\xc6\x3b\x71\xf7\x4d\
\x74\x3a\x47\xc6\xc8\x3c\x61\xb3\x49\xf8\x85\xa6\xdb\xea\x16\xd3\
\x62\x35\xd5\x60\x55\x4b\xa8\x1c\xf4\x73\x81\xca\xfa\x8f\x6a\xf2\
\xbd\x81\x46\x07\x4a\x5f\xbd\xf2\x9f\xb9\xfc\x5f\x4e\xf5\xd5\x2c\
\x1d\x29\x24\x92\xb1\xe4\xd3\xc7\x56\x8c\x9b\x6f\x99\x3d\xce\xa7\
\xe2\x37\x81\x66\xf0\x1f\x88\xa4\xb2\xf3\x45\xd5\x9c\xc1\x66\xb3\
\xbb\x51\xf2\xcf\x13\x7d\xd2\x3b\x7a\xd6\x87\xc2\xff\x00\x87\xf0\
\x78\xb6\x6b\xbd\x4b\x58\xb8\x36\x3e\x19\xd3\x97\x7d\xe5\xd6\xd3\
\x96\x3c\xe2\x35\xc7\x76\xc1\xfc\xab\x67\x5c\xba\x6f\x11\x7c\x00\
\xd3\x2e\xa4\x5f\x32\xef\xc3\x9a\x8f\xd9\x77\x03\xcf\x93\x22\xb1\
\x50\x7e\x9b\x7a\x7b\xd3\xfc\x79\x75\xff\x00\x08\x8f\xc1\x0f\x07\
\xe9\x16\xe7\xca\x97\x5a\x0f\xa9\x5d\x7a\xb7\xce\x55\x01\xfa\x61\
\xbf\x3a\xe7\x75\xa7\x2a\x4a\x93\xf8\xef\xcb\xf7\x6a\x75\x7d\x56\
\x9c\x2a\x7b\x5b\x5e\x16\xe6\x5f\x3e\x84\x7a\xd7\xc7\xcb\x9d\x1d\
\x0d\x87\x82\xac\x2d\xfc\x37\xa6\x47\xc4\x4f\x1c\x4a\x6e\x24\x5f\
\x57\x73\xce\x7f\xc6\xb0\x2d\x7f\x68\x1f\x1f\xdb\xce\x26\x5d\x7a\
\xe2\x71\xbb\xee\x4f\xb5\xd4\x8f\x70\x7b\x57\x15\x63\xa7\xbe\xdf\
\x31\x86\x37\xfc\xd5\xab\x1c\x71\xc4\x03\x2f\xde\xc5\x75\xc3\x09\
\x4a\x2b\x5d\x6e\x79\xf5\xb3\x09\x29\x6f\x7b\x6d\x63\xd5\xb4\xcb\
\xed\x17\xe3\xc4\x72\x58\xea\x16\x36\xfe\x1e\xf1\xaa\xc6\x5e\xde\
\xea\xdd\x76\x43\x7c\x40\xe5\x0a\xf4\x0c\x78\xc1\xf7\x35\xe5\x97\
\x5a\x7c\x9a\x5d\xd4\xd6\xb3\xc4\x62\xb8\x85\xcc\x72\xab\x0e\x55\
\x87\x51\xfe\x7d\x6a\x6d\x36\xf6\x7d\x2f\x52\xb5\xbf\xb6\x63\x1d\
\xcd\xbc\xab\x24\x6c\x0e\x3e\x60\x78\xae\xf7\xe3\xe5\xac\x2b\xe3\
\x2b\x2d\x56\x05\x09\x1e\xb5\x61\x0d\xf1\x50\x30\x37\x91\xb5\xb1\
\xf8\x8a\x8a\x71\xfa\xb5\x65\x49\x3b\xc5\xec\x2a\xd5\x3e\xbb\x41\
\xd6\xfb\x6b\x7f\x33\xce\x68\xa1\x97\x6d\x25\x7a\xa7\x86\xc2\x8a\
\x28\xa0\x90\xa3\xdb\xd6\x8a\x3f\xc2\x93\x1a\x35\x34\x58\x72\x5e\
\x56\xe3\x6e\x00\xf7\xf5\xad\x53\xc7\xd6\xa0\xb1\x87\xcb\xb5\x8d\
\x71\xdb\x35\x3d\x74\xc3\xe1\x3c\x9a\xb2\xe6\x93\x12\x8a\x28\xaa\
\x31\x0a\x28\xa2\x80\x0a\x29\x7d\xe9\xeb\x19\x61\x90\x8d\x40\x1e\
\x0d\x45\x14\x57\x84\x7e\xa6\x14\x51\x45\x00\x14\x51\x45\x00\x14\
\xa0\x1e\xc3\x34\xf8\xa3\x32\x1c\x01\xcd\x5e\x86\xdd\x62\xea\x01\
\x6f\xe5\x41\x12\x9a\x89\x0d\xbd\x9e\xef\x99\xb8\x1d\x81\xab\x8a\
\xa1\x17\x00\x01\xf4\xa2\x91\x9b\x15\x68\xe6\x94\x9c\x98\xb4\x13\
\x8a\x63\x37\xa5\x1b\xb3\xc5\x68\xb7\x24\xb9\xa6\x5b\x49\xa9\x5f\
\x5b\x5a\x42\x33\x2c\xd2\xaa\x2f\xd4\x9f\xf3\xf9\xd7\xad\xfe\xd4\
\x9a\xca\x68\x77\x5a\x1f\xc3\xfd\x35\xb6\xd8\x78\x7e\xd2\x38\xa4\
\x0b\xc0\x6b\x82\xa0\xc8\xe4\x7a\xe7\x23\x35\xe6\xff\x00\x0f\xae\
\x62\xb1\xf1\xa6\x89\x73\x3a\x83\x04\x77\x91\x97\xdd\xd3\x19\xaf\
\x54\xf8\xb5\xf0\xb7\x5c\xf8\x99\xfb\x4e\x6b\xfa\x4e\x93\x6f\xe6\
\xbd\xc4\x86\xe9\x25\x60\x44\x6b\x1b\x02\xe0\x96\xe9\x8c\x57\x89\
\x88\x9c\x61\x88\xa7\x29\xed\xca\xff\x00\x33\xdd\xc2\xc6\x4f\x0f\
\x51\x52\x57\xd7\xf4\x3c\x1e\x18\xfc\xa5\xf7\xa9\x09\xdd\xda\xac\
\xdf\xd9\x4b\xa5\xdf\x5c\x59\xdc\xc6\x63\x9a\x09\x1a\x36\x43\xd5\
\x48\x24\x60\xfe\x55\x5b\x81\xd2\xbd\x78\xb4\xd5\xd1\xe3\xce\xfc\
\xcd\x49\x59\x89\x45\x2e\xea\x4f\xbd\x55\xaf\x43\x31\x46\x7a\xe7\
\x15\xec\xdf\xb3\x2e\xb9\x1d\xc7\x8a\xae\xfc\x15\xa9\x96\x97\x45\
\xf1\x34\x06\xd6\x58\x89\xff\x00\x96\xc3\x98\xdf\xd8\x8f\x98\x67\
\xde\xbc\x7a\xd6\xde\x5b\xdb\x88\xed\xe0\x43\x24\xd2\x30\x48\xd4\
\x2e\xe2\xcc\x4e\x00\xc7\xf9\xe9\x5e\xd1\xe0\xcf\x84\x7e\x20\xf8\
\x7f\xf1\xd3\xc1\x9a\x6e\xa5\x6e\xca\xf7\x12\xc7\x3c\x72\x2e\x4a\
\xed\xc6\x49\x24\x7a\x77\xfa\xd7\x9f\x8e\x95\x2f\x65\x28\x4d\xeb\
\x66\x7a\xb8\x0a\x75\xbd\xac\x6a\x41\x69\x74\x79\x07\x88\x74\x96\
\xf0\xef\x88\x35\x5d\x22\x6f\xf5\xd6\x17\x72\xdb\x37\x18\xfb\x8c\
\x54\x7f\x2a\x82\xd6\xd5\xee\x25\x0a\xbc\x0e\xa4\xfe\x15\xd7\x7c\
\x64\x78\xb5\x8f\x8d\x5e\x2c\x7b\x50\xbe\x53\x6a\x13\x02\xc3\xee\
\xf0\xec\x09\x15\x9f\x6f\x0a\xc3\x18\x55\x51\x81\xd4\xe3\x93\x5d\
\xb8\x6b\xd4\xa7\x1e\x7e\xcb\xf2\x3c\xdc\x74\xe3\x46\xa4\x92\xde\
\xec\xf5\x4f\x00\xc2\x87\xe0\x3f\xc4\x7b\x1b\x75\xdd\x3c\x72\xda\
\x5d\x6c\x1f\x7b\x6a\xef\x0c\x7f\x0d\xe3\xf3\xaf\x29\xb6\x5c\x42\
\x08\x00\x02\x78\xc7\xe5\xfd\x2b\xbf\xf8\x43\xe3\x0b\x4f\x0b\x78\
\x92\xe1\x35\x64\x67\xd1\x35\x3b\x76\xb1\xbd\x0a\x33\xb5\x1f\x18\
\x6c\x77\xc1\x02\xb2\xfc\x79\xf0\xf3\x50\xf8\x77\xaa\xc9\x69\x70\
\xa2\x7b\x06\x26\x4b\x5b\xd8\xbe\x68\xe5\x8c\xf2\x08\x23\x8c\xe0\
\x8c\x8a\xe5\xa5\xfb\x9c\x44\xe3\x3e\xa4\x56\x4e\xbe\x12\x12\x8e\
\xf0\xd2\x5f\x99\xcc\x50\x33\xbb\xf0\x3f\xca\xa4\x8e\x16\x99\x72\
\x41\x54\xc6\x4b\x7b\x57\xaf\x7c\x22\xf8\x7f\xa2\x7c\x4e\xd3\xae\
\x3c\x32\xb1\x35\x9f\x8a\xb7\x19\xac\xf5\x02\x0b\x43\x20\x18\xca\
\x3f\xa7\x1e\x9e\xb5\xdf\x5a\xb7\xd5\xa2\xaa\x4b\x65\x63\xcc\xc3\
\xd2\x96\x22\x7e\xca\x1f\x13\x28\x69\x36\x6f\x67\xfb\x3b\xf8\x92\
\x59\x94\xaa\xea\x1a\xac\x11\xc6\x0f\xf1\x15\x46\x2c\x47\xe9\xf9\
\xd4\xbf\x16\xa1\xfb\x67\xc3\xbf\x86\x1a\x9c\x6a\x0d\xbb\x69\x8d\
\x6e\xdd\xf6\xc8\x26\x7c\x8f\xd4\x55\xcf\x8f\x37\x11\xf8\x46\xdf\
\x4a\xf8\x7d\x6a\xad\xe5\x68\xbf\xbc\xb9\x97\x1b\x44\xd7\x0c\x01\
\x2c\x3b\x9e\x38\x04\xf6\xa4\xf0\x04\x70\x7c\x47\xf8\x77\x37\x81\
\xe6\x95\x60\xd6\xad\x64\x6b\xbd\x21\xe4\x23\x0c\xd9\xcb\xc5\x93\
\xd3\x3f\x2e\x3f\x1a\xf1\xd7\x4c\x4f\x4e\x66\xfe\x4d\x58\xf7\x67\
\x2b\xca\x58\x49\x6f\xca\x97\xcd\x6a\xcf\x30\x55\x3b\x17\xd0\x0c\
\x52\x71\xe9\x56\xb5\x0d\x36\xf3\x43\xbb\x9a\xca\xfa\xda\x4b\x6b\
\x98\x58\xa4\x91\xc8\x0e\x54\x8f\xe6\x3d\xc5\x55\xe8\xa5\x89\x03\
\xd0\xb7\x4e\xbd\x0d\x7d\x04\x65\x19\x47\x99\x1f\x21\x2a\x72\x84\
\xdc\x64\x39\x57\xcc\x61\xd7\x19\x1d\x2b\xd2\x3f\x68\x0c\xdb\x4d\
\xe0\x8b\x36\x20\x5c\x5a\xe8\xb0\xc7\x2a\xf7\x56\x24\xb6\x3f\x22\
\x2b\xba\xf0\x7f\xc2\x1d\x07\xe2\x46\x9f\x65\xe2\xbd\x24\x49\xa6\
\x69\xba\x70\x1f\xda\xd6\x13\x2f\x2f\xb0\x67\x31\x67\xef\x6e\xc3\
\x67\xf0\xaf\x14\xf8\x95\xe2\xe7\xf1\xe7\x8e\x2f\xb5\x4d\xad\x14\
\x72\x49\xb6\x18\x98\x60\xc7\x1a\xe1\x54\x11\xd8\xe0\x57\x93\x1a\
\xd0\xc4\x57\x8c\x69\xfd\x8d\xcf\x7a\x58\x59\xe0\xf0\xce\x53\xfb\
\x7b\x7a\x6f\x7f\xbc\xc8\xea\x4e\x69\x94\xe5\x39\xe6\x9b\x5e\xca\
\xd8\xf9\xc7\xb8\x51\x45\x14\xc4\x15\x35\xac\x5e\x75\xc2\x2f\xbe\
\x4d\x43\x8c\xd6\x9e\x8b\x08\x66\x79\x4f\xf0\xfc\xa2\x9c\x77\x22\
\x72\xe5\x8b\x66\xb7\xdd\x5c\x74\xf4\xa4\xa0\x67\x1c\xf5\xa2\xb7\
\x47\x90\x14\x51\x4a\x06\x72\x3b\xd5\x6e\x21\x29\xc8\x86\x43\x85\
\x19\x35\x66\xdf\x4f\x79\x30\x4f\x0b\xef\x5a\x50\xdb\xa4\x23\xe5\
\x5e\x7d\x71\x55\x18\xea\x63\x3a\xb1\x8e\xc5\x4b\x7d\x37\x6e\x1a\
\x4e\x7d\xaa\xf0\x55\x5e\x15\x48\x14\xec\x8a\x37\x7a\x56\x9c\xa7\
\x14\xaa\x4a\x47\xcd\x92\x2e\xda\x8e\xa7\x6f\x9b\x8e\xb5\x01\x2b\
\x9f\x94\xe4\x7a\xd7\xcf\x1f\xb2\xad\x82\x8a\x29\xf1\xc6\xd2\x1c\
\x28\xfc\x69\x0f\x45\xb8\xd0\x33\x56\x61\xb4\x2f\x8d\xc3\x02\xa6\
\x86\xd1\x63\xe5\x8e\x58\x75\xa9\xbc\xce\x31\xda\xab\x94\xc2\x55\
\x3a\x44\x11\x16\x11\x80\x05\x29\x61\xd8\x53\x59\xbd\x29\x37\x55\
\x18\x7a\x8a\xcc\x7b\x53\x79\xa5\xdd\x46\xea\x00\x4a\x07\x5a\x5d\
\xd4\x94\x0c\x7e\x48\xc6\xd2\xca\xc0\x82\x36\x0c\x90\x7d\x6b\xe8\
\x2f\x00\xfc\x76\xf8\x99\xf1\x03\x52\xd2\xfc\x2f\xa2\x0d\x3e\xdb\
\x50\x50\xa2\x7d\x58\x44\x04\xfe\x44\x78\xff\x00\x5d\x27\x5d\xb8\
\xe3\xad\x7c\xf7\xba\xbd\x3b\xe0\x07\xc4\x0d\x33\xc0\x7e\x2a\xba\
\x5d\x6b\x72\x69\x3a\xa5\xb3\x58\x4f\x70\x9f\x7a\x05\x71\xf7\xc7\
\xb0\xae\x0c\x6d\x18\xd4\xa6\xe4\x95\xda\x3d\x5c\xbe\xbb\xa3\x51\
\x45\xcb\x95\x33\x63\xf6\xa2\xbe\xf0\x6e\xa1\xe3\x28\x2e\xbc\x3f\
\x78\xb3\x6a\xf2\x26\xdd\x57\xec\xcb\xfe\x8c\x6e\x06\x01\x28\x7b\
\xe7\x9c\xfe\x15\xe3\x4c\x47\x23\x1d\xfa\xd7\xb5\xdf\x7e\xca\x5a\
\xce\xb9\x75\x25\xf7\x83\xf5\xed\x2f\xc4\xfa\x64\x8c\x59\x24\x8e\
\xe1\x63\x90\x73\xc0\x65\x27\x83\x4e\xb3\xfd\x91\xbc\x6b\x11\xdd\
\xaa\xcb\xa6\x68\xb6\xab\xcb\xcf\x77\x74\xb8\x03\xd7\x83\x5c\xd8\
\x6c\x45\x1a\x34\x54\x79\xed\xf9\x9d\x58\xac\x26\x22\xb5\x76\xd4\
\x3e\xed\xbe\xf3\xc4\x70\x31\xd6\x95\x71\xba\xbe\x80\x6f\x87\x3f\
\x06\xec\x61\xff\x00\x84\x6e\xe3\xc6\x92\xcb\xe2\x07\xe4\xeb\x51\
\xaf\xfa\x1c\x6d\xfd\xcf\xa5\x66\xdd\x7e\xc9\x9e\x2e\xb8\xcc\xda\
\x15\xe6\x93\xe2\x0b\x23\xfe\xae\x7b\x3b\xa5\x1b\x87\xae\x09\xe2\
\xba\x23\x8e\xa5\x27\xef\x37\x1f\x55\xb9\xcd\x2c\xbe\xba\x57\x4b\
\x9b\xd1\xde\xc6\x7f\xec\xd3\x73\xe0\xed\x27\xe2\x04\x57\xfe\x2b\
\xbb\xfb\x2b\xc2\x31\xa7\xb4\x8b\x98\x3e\xd0\xc0\x85\xf3\x3d\xb3\
\x8a\xec\xbe\x20\xfc\x6a\xf8\x9b\xf0\xb7\xc4\x97\xda\x36\xa0\xba\
\x7e\xa0\xd7\x4a\xd7\x16\x3a\xa4\xb1\x07\x78\xa1\x7e\x3f\x70\xfe\
\x9c\x76\x3c\x56\x06\x9f\xfb\x25\xf8\x8a\xd9\x84\xfe\x28\xd5\x74\
\xbf\x0d\x69\x91\xfc\xd2\xcf\x3d\xc8\x67\x00\x72\x40\x03\x92\x48\
\x15\x5b\xe3\xa7\x8d\x74\xbd\x5a\xf3\x41\xd0\x74\x09\xa4\xbb\xd2\
\x74\x0b\x35\xb1\x8e\xea\x6f\xbf\x37\x3b\x8b\x7d\x39\xe2\xb8\x25\
\x4e\x9e\x23\x13\xee\x6b\x1e\xbd\x97\xa1\xd6\xeb\x54\xc1\x61\x39\
\x27\xee\xcb\xa7\x77\xeb\xd8\xf3\x1b\x54\x6b\x8b\xa9\x6e\xa4\x25\
\xe4\x99\x8c\x92\x3b\xfd\xe6\x62\x49\x24\xfe\x27\xf5\xab\xab\xdf\
\xbd\x2c\x30\xb4\x99\xc2\x91\xcd\x5b\x8a\xcf\x6f\x26\xbe\x96\x10\
\x5c\xa9\x2e\x87\xc3\x57\xac\xe5\x27\x29\x3d\x4a\xf1\xc3\x24\x84\
\x05\x18\xc1\xcf\x5c\x57\x7b\xe1\x1f\x8a\x9a\xaf\x84\x74\xbf\xec\
\xab\xcb\x5b\x7f\x11\x68\x7f\xf4\x0f\xd4\x63\xdc\x23\xcf\x50\x8d\
\xfc\x3f\xfd\x61\x5c\x89\xfb\xbb\x48\xe2\x93\xaf\x41\x4a\xa5\x18\
\xd4\x56\x92\x32\xa5\x8b\xa9\x46\x5c\xd1\x3d\x31\x7e\x24\x7c\x37\
\x93\x12\xbf\xc3\xd9\xa2\x98\x75\x58\xf5\x0c\x26\x7d\xbe\x52\x7f\
\x51\x55\xf5\xaf\x8e\xf7\x1f\xd9\xb2\xe9\xbe\x14\xd2\xed\xbc\x2f\
\x67\x28\x2a\xcd\x62\xbf\xe9\x2e\x0f\x62\xf9\xcf\xe3\xc7\x53\x5e\
\x70\xf0\xab\xfd\xe5\x07\xbf\x4a\x51\x1a\x0f\xe1\xcf\xd4\x57\x3a\
\xc1\x52\xbe\xb7\xf9\xb3\xb3\xfb\x4e\xaf\x4b\x27\xe4\x8e\x9f\xc5\
\x9f\x12\xe6\xf1\xb7\x87\xb4\xcb\x6d\x63\x4f\x49\xf5\x6b\x19\x04\
\x63\x56\x3c\x48\xd1\x81\xc2\x38\xee\x46\x3a\xfb\xd7\x3f\x05\xd4\
\x96\xed\x1c\xd0\x39\x86\x55\x61\x24\x6c\xae\x43\x29\xec\x73\x50\
\x9c\x1c\x7b\x74\xa5\x19\xed\xc0\x1e\x95\xd3\x4e\x84\x69\xae\x5b\
\x5d\x1c\x35\x71\x13\xad\x3e\x76\xec\xcf\x49\xb4\xf8\xe0\x2e\xad\
\xa2\xb5\xf1\x8f\x86\xec\xfc\x51\x1c\x2b\xb1\x6e\xcf\xee\x6e\x71\
\xe8\x4a\xa9\xf6\xa7\xc7\xf1\x33\xe1\xdd\x8e\x65\xb3\xf8\x7e\x5e\
\xe4\x72\x8b\x75\xa8\x17\x40\x7b\x70\x00\x26\xbc\xcf\xb6\x30\x29\
\xbe\x42\x9c\x65\x47\xb7\x15\xcb\x2c\x0c\x1e\xba\xaf\x99\xdd\x1c\
\xca\xad\x92\x9a\x5a\x79\x1d\xee\xa9\xf1\xfb\xc4\xf7\x5a\xb5\x9d\
\xc5\x84\x91\xe9\x76\xd6\x67\x74\x5a\x6d\x8a\x6c\x83\x1c\x6e\xdc\
\xbf\xc4\x0e\x06\x77\x66\xb9\x9f\x19\x78\x9a\xd7\xc5\xbe\x24\x9f\
\x53\xb6\xd2\x62\xd2\x1a\xe1\x55\xa5\x8a\x16\xca\x34\x9f\xc4\xc3\
\xd3\x3e\x95\x92\xa8\x23\xe1\x78\x14\x11\xb9\xb2\x46\x4f\xad\x6d\
\x4f\x0d\x4e\x9c\x94\xa0\xac\xcc\x2a\xe3\x6a\xd6\x8f\x24\xdd\xd0\
\xbd\x38\xa4\xa2\x8a\xec\x3c\xe0\xa5\x5e\xb4\x94\xa2\x90\x90\xe9\
\x30\xbc\xe3\xa7\x35\xa7\xa0\x36\xeb\x1c\xfa\xb9\x35\x8b\x79\x26\
\xd8\xc0\x1c\x16\x38\xad\x8f\x0e\xff\x00\xc8\x3c\xff\x00\xbc\x6a\
\xa1\xba\x22\xb4\x7f\x73\x73\x52\x83\xeb\x9a\x72\xae\xe6\xc0\x19\
\x35\x7a\x1d\x34\xbe\x19\xf8\xf6\xae\xa5\xab\xb1\xe2\x4a\x6a\x3b\
\x94\xe2\xb7\x92\x62\x02\x8e\xbd\xeb\x4e\xdb\x4f\x48\xb0\x58\xe5\
\xbb\xd4\xf1\xa0\x8d\x76\x80\x07\xd0\x53\xab\x45\x1b\x1c\x55\x2b\
\x39\x68\x85\x3e\x9d\xbb\x51\x93\x49\x45\x59\xcc\x14\x51\x45\x1a\
\x81\xf3\x5d\xe5\xd7\xd9\x61\x2c\x3e\xf1\xe0\x55\x5d\x34\xef\xb7\
\x3c\xe4\xee\x35\x4a\xfa\xe8\xdd\x4e\x70\x7e\x55\xe9\x5a\x5a\x5c\
\x6b\x0d\x9a\x48\xcb\x90\xec\xd8\xfc\x31\xfe\x35\xf2\xff\x00\x68\
\xfd\xd2\x51\xf6\x74\xfc\xcb\x70\xda\xb3\xf2\xdc\x2d\x5c\x55\x58\
\xc6\x14\x63\xd4\xfa\xd4\x3f\x6a\xe8\x02\xe0\x7b\xd2\xfd\xa7\xd4\
\x56\xc7\x9f\x2e\x66\x4d\xf7\xa8\xdb\x50\xfd\xa8\x7a\x62\x8f\xb5\
\x2d\x56\xa6\x7c\xb2\x26\xdb\x46\xda\x88\x5d\x2d\x1f\x6a\x5f\x4a\
\x05\xcb\x22\x5d\xb4\x6d\xa8\xbe\xd4\xbe\x94\x7d\xa9\x7d\x28\x0e\
\x59\x12\xed\xa3\x6d\x46\x2e\x14\xfb\x52\xf9\xeb\xeb\x40\x72\xc8\
\x7e\xda\x4d\xbc\xfd\x46\x29\xbe\x7a\xfa\xd2\x79\xcb\xeb\x42\xf3\
\x1d\xa4\x4f\x63\xa8\x5f\xe8\xf3\x79\xba\x75\xec\xf6\x72\x67\x39\
\x85\xca\xf3\xf8\x54\xba\xa7\x8a\xbc\x43\xac\x61\x6f\xf5\x3b\x9b\
\xa0\x3f\xe7\xac\xac\xc3\xf5\x35\x51\x66\x4e\x79\xa5\xf3\x13\xb1\
\xc7\xd2\xb9\xe5\x87\xa6\xdd\xec\x74\x46\xbd\x58\xc7\x96\xee\xc5\
\x75\xb7\x92\x41\x87\x93\x22\xb5\x74\x5d\x4b\x5b\xd2\x24\x55\xd2\
\xb5\x1b\xab\x4f\x68\x65\x65\x1f\xa1\xaa\xb6\xeb\xe7\x4c\xa8\xa4\
\x73\xd7\x35\xd2\x58\xdb\xdb\x5a\x46\x01\x95\x0b\x7f\x7a\xb6\xf6\
\x11\x9e\x92\xd4\xe6\xa9\x8a\xa9\x87\xd6\x1b\x89\x26\xa1\xad\xea\
\x0d\xfe\x97\x7d\x35\xd3\xff\x00\x14\x92\xb1\x62\x7f\x13\x53\x5a\
\xe9\x41\x08\x79\x08\x73\xd8\x62\xa7\x17\xd6\xd1\x2e\x03\x80\x3f\
\xd9\x14\x7f\x69\x41\xd9\xc9\xfc\x2b\xa6\x9d\x28\x53\x56\x48\xf1\
\xab\x62\x2b\xd6\x7c\xd2\x2c\xed\xc7\x4e\x29\x5b\x3e\xb5\x51\xb5\
\x48\x47\x56\x63\x4c\x6d\x5a\x1e\xd9\x35\xad\xe2\xb6\x38\xbd\x9c\
\xe5\xba\x2e\xe6\x8a\xa0\x75\x68\xfb\x21\x3f\x8d\x27\xf6\xb2\xf6\
\x8c\xfe\x75\x3c\xc3\xf6\x33\x34\x32\x69\x7a\xf5\xac\xd3\xab\x7a\
\x47\xfa\xd3\x1b\x56\x6f\xf9\xe6\xbf\x9d\x1c\xc8\x7e\xc2\x66\xaf\
\x14\x74\xe9\x59\x3f\xdb\x12\x76\x44\x1f\x8e\x69\xad\xab\x4a\xdd\
\x02\x0f\xa5\x1c\xc3\xfa\xbc\xcd\x6a\x76\xea\xc5\x6d\x52\x6f\x55\
\x1f\x85\x27\xf6\x94\xcd\xfc\x63\xf2\xa7\xce\x3f\xab\xc8\xdb\xdd\
\xed\x49\x9a\xc3\x6d\x42\x63\xd6\x4c\x7d\x29\x3e\xdd\x31\xe9\x21\
\x3f\x8d\x2e\x62\xbe\xae\xcd\xe1\xf8\x0a\x42\x47\xa8\xac\x06\xbb\
\x99\xb1\x97\x6f\xce\x98\xd7\x0e\x7a\xb3\x1f\xa9\xa3\x98\xaf\xab\
\x1d\x09\x61\x40\x90\x0e\xa4\x01\xee\x6b\x9c\x33\x1f\x5c\xd4\x4f\
\x2b\x31\x03\x3c\x51\xcc\x5a\xc3\x2e\xa6\xdd\xf4\xc8\x65\xc7\x98\
\x02\xa8\xe3\x07\xe9\x5d\x37\x85\x2d\xde\xe6\xd2\x4d\xa3\x09\xbf\
\xad\x72\x3a\x6e\x86\x6e\x58\x4b\x38\xc2\x63\x3b\x6b\xd3\x74\x4b\
\x51\x69\xa6\xc4\x8a\x36\x83\xce\x2b\x4c\x3f\x34\xa5\x76\x79\x79\
\x8d\x48\x52\xa4\xa1\x17\xa9\x66\xde\xda\x38\x41\x00\x6e\x3d\xc9\
\xab\x1f\x4a\x65\x19\xaf\x44\xf9\x39\x3e\x67\x71\xd4\x53\x73\x46\
\x69\x88\x75\x14\xdc\xd1\x9a\x00\x75\x14\xdc\xd1\x9a\x00\xf9\x35\
\x78\x23\xfc\xf6\xad\xbb\x5f\xf9\x05\x41\x9e\xd3\x49\x8f\xc9\x2b\
\x0b\x27\xd7\xfc\xe0\xd6\xe5\xa7\xfc\x82\x61\xff\x00\xae\xd2\x7f\
\xe8\x29\x5f\x2b\x4c\xfd\xe6\xaa\xba\x25\x49\x3d\x4e\x6a\x5c\xd5\
\x51\xc5\x4b\x1b\x76\xad\x91\xe7\xca\x24\xd4\x94\x51\x54\x66\x2d\
\x19\xa4\xa2\x80\x17\x34\x66\x92\x8a\x00\x28\xa2\x8a\x00\x28\xa2\
\x8a\x00\x29\x45\x25\x5a\xd3\x6c\x9f\x50\xbc\x8e\xdd\x3a\xc8\x76\
\x9f\x61\xeb\xfa\x50\x26\xec\xae\x68\xe9\xf6\xa6\xde\xd0\x48\xe3\
\xe7\x90\xf1\xf4\xed\x56\x17\x20\x7b\x55\x9b\xcd\xa6\x76\x09\xcc\
\x69\xf2\xaf\xa6\x07\x15\x5a\xb7\x8c\x6c\x79\x32\x97\x3b\xb8\x75\
\xeb\x47\x4a\x28\xab\x24\x5c\x9f\x5a\x32\x7d\x69\x28\xa4\x01\x45\
\x14\x53\x00\xa2\x8a\x28\x00\xa2\x8a\x28\x00\xa2\x8a\x46\x6d\xb5\
\x2f\x60\x1d\x49\xb8\x0a\x63\x49\x4d\xdd\xba\xa0\xa5\x12\x46\x61\
\x4d\x66\xcd\x20\x3d\x73\x4b\x0c\x32\x5c\x48\x12\x35\xdc\x4d\x05\
\x5a\xda\xb1\xbb\x59\xf0\x14\x16\xf6\x1d\x6b\x7f\x49\xd1\x04\x78\
\x96\xe4\x06\x3d\x55\x71\x9a\xb3\xa6\x68\xeb\x62\xa1\x9c\x86\x97\
\xa9\x3e\x95\xa3\xb8\xe7\xd2\xb7\x84\x4f\x2f\x11\x8a\xbf\xbb\x12\
\x4b\x58\xcc\xd2\xa2\x81\x8c\xb0\x00\x57\x64\xa3\x6a\xaa\xff\x00\
\x74\x6d\xfc\xab\x99\xd0\xe1\xf3\x2f\x50\xe3\x21\x46\xea\xe9\xfd\
\xfd\x79\xae\xfa\x3b\x33\xe5\x71\x92\xbb\x48\x28\xa2\x8a\xdc\xf3\
\x42\x8a\x28\xa0\x02\x8a\x33\x45\x00\x14\x51\x45\x00\x7c\x96\xbf\
\xe7\xf2\x35\xb3\x65\xff\x00\x20\xb8\xff\x00\xeb\xb4\x9f\xfa\x0a\
\x56\x2a\xfa\x56\xbd\x8c\x85\xac\x82\x63\x01\x65\x6f\xe4\xbf\xe1\
\x5f\x2b\x1d\xcf\xde\xeb\x7c\x24\xd4\xa1\xa9\x28\xad\x4e\x1d\xc9\
\x51\xf1\xd7\x9a\x96\xaa\x83\x52\xc6\xdd\xa9\x99\x4a\x24\xb4\x51\
\x45\x51\x01\x45\x14\x50\x01\x45\x14\x50\x01\x45\x14\x53\x40\x1c\
\x92\x2b\xaa\xf0\xa5\x99\xb5\xd3\x6e\xf5\x19\x06\xd6\xff\x00\x53\
\x07\xae\xe3\x9c\x91\xee\x3f\xad\x73\x76\xb0\xb5\xc5\xc2\x44\x8a\
\x59\xdc\xed\x50\x3d\x6b\xb9\xd7\xe2\x4d\x2e\xda\xc7\x4e\x88\xf1\
\x0a\x6f\x7c\x7f\x7c\xe3\x3f\x96\x2a\xa1\x1e\xa7\x16\x2e\xa6\xd4\
\xbb\x98\x85\x8e\x7e\xbc\xe2\x83\xd0\x51\xd6\x82\x6b\x73\x8c\x4a\
\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xa2\x80\x0a\x28\xce\x29\x19\
\x85\x27\xb0\x0e\xcf\xb5\x35\x9b\x14\xd6\x6f\x4a\x6e\x6b\x32\xb9\
\x47\x33\x7a\x53\x73\x45\x14\x14\x14\x76\x22\x81\xc7\x27\xa5\x5d\
\xd3\x74\xc7\xbe\x6d\xc4\x15\x8c\x1e\xbe\xb4\xc9\x94\x94\x55\xd9\
\x0d\x9d\x94\xba\x84\xbb\x62\x5c\x0f\x56\xe9\x5d\x45\x8d\x84\x5a\
\x7a\x85\x8c\x7c\xe3\xab\xe3\x9f\xce\xa4\xb7\xb5\x8e\xd6\x3d\x88\
\x30\xa3\xbe\x39\x35\x2d\x6f\x18\xf5\x3c\x7a\xd8\x87\x51\xda\x3b\
\x07\xb5\x1c\x9c\x7d\x68\xa0\x77\xfa\x56\xa7\x19\xd0\x78\x76\x1d\
\xb1\xcb\x26\x3e\xf6\x00\x3f\xce\xb6\x3d\x2a\xa6\x97\x0f\x95\x63\
\x10\xc7\x51\x9a\xb7\x5d\x90\xd8\xf9\xdc\x44\xb9\xa6\xc2\x8a\x28\
\xad\x0e\x70\xa2\x8a\x28\x00\xa2\x8a\x28\x00\xa2\x8a\x28\x03\xe4\
\xae\x3b\xf0\x33\x5a\xba\x5c\x85\xad\x1d\x0f\xf0\xbe\x73\xf5\xff\
\x00\xf5\x51\x45\x7c\x9c\x77\x3f\x7b\xab\xf0\x16\x28\xa2\x8a\xdc\
\xe1\x5b\x05\x2a\xd1\x45\x02\x64\x88\xf8\xeb\x52\xd1\x45\x32\x1e\
\xc1\x45\x14\x55\x19\x85\x14\x51\x40\x05\x2f\xa6\x3a\xe7\x02\x8a\
\x28\x19\xd7\xfc\x3c\xd2\xd2\x6d\x42\x4b\xd9\x86\x22\xb5\x5d\xdb\
\x9b\xa6\x7b\x7f\x2a\x66\xa5\x78\xf7\xd7\x92\xcc\xe4\x92\xcc\x4f\
\x34\x51\x5d\x11\xd1\x1e\x1c\xdb\x9d\x79\xb7\xd0\xab\x45\x14\x55\
\x14\x14\x51\x45\x4b\xd8\x02\x8a\x28\xa8\x10\x16\xc7\x6a\x6e\xf1\
\x45\x14\x14\x90\x8c\xd9\xe9\x4d\xa2\x8a\x0b\x0a\x28\xa2\x80\x0a\
\x5d\xa5\xbf\xfa\xd4\x51\x40\xfe\x15\x74\x6a\xe9\x7a\x2b\x5c\x62\
\x5b\x81\xb2\x2f\xee\xf7\x35\xd0\x24\x62\x35\x0a\x15\x54\x0e\x81\
\x46\x05\x14\x57\x54\x52\xb1\xe0\xe2\x2a\x4a\x53\xb3\x1d\x45\x14\
\x55\x9c\xa1\x4f\x82\x33\x34\xd1\xa0\xee\xc2\x8a\x29\xad\xc4\xdb\
\x49\x9d\xaa\xa0\x8e\x35\x50\x31\x81\x8a\x28\xa2\xbb\x7b\x1f\x2e\
\x14\x51\x45\x50\x05\x14\x51\x40\x05\x2a\xae\xea\x28\xa0\x07\x2c\
\x74\xbe\x5d\x14\x50\x07\xff\xd9\
\x00\x00\xb0\xff\
\xff\
\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x01\x00\x60\x00\
\x60\x00\x00\xff\xe1\x09\xe4\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\
\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\
\x2e\x30\x2f\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\
\x67\x69\x6e\x3d\x27\xef\xbb\xbf\x27\x20\x69\x64\x3d\x27\x57\x35\
\x4d\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\
\x63\x7a\x6b\x63\x39\x64\x27\x3f\x3e\x0d\x0a\x3c\x78\x3a\x78\x6d\
\x70\x6d\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\
\x64\x6f\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x3e\x3c\
\x72\x64\x66\x3a\x52\x44\x46\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\
\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\
\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\
\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x3e\
\x3c\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\
\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x75\x75\x69\x64\
\x3a\x66\x61\x66\x35\x62\x64\x64\x35\x2d\x62\x61\x33\x64\x2d\x31\
\x31\x64\x61\x2d\x61\x64\x33\x31\x2d\x64\x33\x33\x64\x37\x35\x31\
\x38\x32\x66\x31\x62\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x3e\
\x3c\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\x65\x44\x61\x74\x65\x3e\
\x32\x30\x31\x38\x2d\x31\x32\x2d\x31\x37\x54\x32\x32\x3a\x35\x32\
\x3a\x31\x32\x3c\x2f\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\x65\x44\
\x61\x74\x65\x3e\x3c\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\x6f\x72\
\x54\x6f\x6f\x6c\x3e\x57\x69\x6e\x64\x6f\x77\x73\x20\x50\x68\x6f\
\x74\x6f\x20\x45\x64\x69\x74\x6f\x72\x20\x31\x30\x2e\x30\x2e\x31\
\x30\x30\x31\x31\x2e\x31\x36\x33\x38\x34\x3c\x2f\x78\x6d\x70\x3a\
\x43\x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3e\x3c\x2f\x72\x64\
\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x3c\x2f\
\x72\x64\x66\x3a\x52\x44\x46\x3e\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\
\x65\x6e\x64\x3d\x27\x77\x27\x3f\x3e\xff\xe1\x19\xa4\x45\x78\x69\
\x66\x00\x00\x4d\x4d\x00\x2a\x00\x00\x00\x08\x00\x06\x01\x12\x00\
\x03\x00\x00\x00\x01\x00\x01\x00\x00\x01\x31\x00\x02\x00\x00\x00\
\x26\x00\x00\x08\x62\x01\x32\x00\x02\x00\x00\x00\x14\x00\x00\x08\
\x88\x87\x69\x00\x04\x00\x00\x00\x01\x00\x00\x08\x9c\x88\x25\x00\
\x04\x00\x00\x00\x01\x00\x00\x11\x20\xea\x1c\x00\x07\x00\x00\x08\
\x0c\x00\x00\x00\x56\x00\x00\x11\x58\x1c\xea\x00\x00\x00\x08\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x
Download .txt
gitextract_3v4uj3y2/

├── .gitignore
├── Dialog_add.py
├── Dialog_add.ui
├── QQ.py
├── QQ.ui
├── QQ_view.py
├── QQchating.py
├── QQchating.ui
├── QQlogin.py
├── QQlogin.ui
├── README.md
├── Tcp_server.py
├── frist.qrc
├── groupchat.py
├── groupchat.ui
├── image/
│   ├── DressUp-master.zip.crdownload
│   ├── example.com.zone
│   ├── main.cf
│   └── named.conf
├── introduction-img/
│   └── null
├── login.py
├── login.qrc
├── login.ui
├── login_rc.py
├── loginqq.py
├── loginqq.ui
├── personal.py
├── personal.ui
├── pyqt.py
├── run.py
└── 文件说明.txt
Download .txt
SYMBOL INDEX (56 symbols across 12 files)

FILE: Dialog_add.py
  class Ui_Dialog (line 11) | class Ui_Dialog(object):
    method setupUi (line 12) | def setupUi(self, Dialog):
    method retranslateUi (line 41) | def retranslateUi(self, Dialog):

FILE: QQ.py
  class Ui_MainWindowt (line 33) | class Ui_MainWindowt(object):
    method __init__ (line 35) | def __init__(self,s):
    method setupUit (line 39) | def setupUit(self, MainWindow):
    method retranslateUi (line 206) | def retranslateUi(self, MainWindow):
    method group_req (line 240) | def group_req(self,item):
    method group_recv (line 251) | def group_recv(self,item):
    method personal (line 274) | def personal(self,item):
    method menuevent (line 285) | def menuevent(self):
    method addgroup (line 321) | def addgroup(self):
    method addfriend (line 339) | def addfriend(self):
    method deletefriend (line 363) | def deletefriend(self):
    method movefriend (line 370) | def movefriend(self):

FILE: QQ_view.py
  class qqview (line 9) | class qqview(QListWidget):
    method __init__ (line 11) | def __init__(self):
    method init (line 16) | def init(self):

FILE: QQchating.py
  class Ui_MainWindow (line 14) | class Ui_MainWindow(object):
    method recv_thead (line 16) | def recv_thead(self,s):
    method setupUi (line 26) | def setupUi(self, MainWindow):
    method retranslateUi (line 115) | def retranslateUi(self, MainWindow):
    method dj_send (line 136) | def dj_send(self,s,wename,user):
    method dj_quit (line 152) | def dj_quit(self,ui2):

FILE: QQlogin.py
  class Ui_Form (line 11) | class Ui_Form(object):
    method setupUi (line 12) | def setupUi(self, Form):
    method retranslateUi (line 77) | def retranslateUi(self, Form):

FILE: Tcp_server.py
  function login (line 22) | def login(logindata,clientsock):
  function tcplink (line 76) | def tcplink(clientsock,clientaddress):

FILE: groupchat.py
  class Ui_Dialog (line 11) | class Ui_Dialog(object):
    method setupUi (line 12) | def setupUi(self, Dialog):
    method retranslateUi (line 96) | def retranslateUi(self, Dialog):

FILE: login.py
  class Ui_MainWindow (line 19) | class Ui_MainWindow(object):
    method tcp_start (line 21) | def tcp_start(self):
    method setupUi (line 28) | def setupUi(self, MainWindow):
    method retranslateUi (line 88) | def retranslateUi(self, MainWindow):
    method login (line 95) | def login(self):
    method login_recv (line 117) | def login_recv(self):

FILE: login_rc.py
  function qInitResources (line 3904) | def qInitResources():
  function qCleanupResources (line 3907) | def qCleanupResources():

FILE: loginqq.py
  class Ui_MainWindow (line 16) | class Ui_MainWindow(object):
    method tcp_start (line 18) | def tcp_start(self):
    method setupUi (line 25) | def setupUi(self, MainWindow):
    method retranslateUi (line 89) | def retranslateUi(self, MainWindow):
    method login (line 96) | def login(self):
    method login_recv (line 118) | def login_recv(self):

FILE: personal.py
  class Ui_Dialog (line 13) | class Ui_Dialog(object):
    method setupUi (line 14) | def setupUi(self, Dialog):
    method retranslateUi (line 82) | def retranslateUi(self, Dialog):
    method pel_send (line 91) | def pel_send(self,s,sendname,recvname):
    method pel_recv (line 104) | def pel_recv(self,s):
    method quit (line 114) | def quit(self,Dlog):

FILE: pyqt.py
  class QQ (line 9) | class QQ(QWidget):
    method __init__ (line 10) | def __init__(self):
    method init (line 14) | def init(self):
    method message (line 34) | def message(self):
Condensed preview — 31 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (472K chars).
[
  {
    "path": ".gitignore",
    "chars": 1203,
    "preview": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packagi"
  },
  {
    "path": "Dialog_add.py",
    "chars": 2092,
    "preview": "# -*- coding: utf-8 -*-\n\n# Form implementation generated from reading ui file 'Dialog_add.ui'\n#\n# Created by: PyQt5 UI c"
  },
  {
    "path": "Dialog_add.ui",
    "chars": 2249,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>Dialog</class>\n <widget class=\"QDialog\" name=\"Dialog\">"
  },
  {
    "path": "QQ.py",
    "chars": 16684,
    "preview": "# -*- coding: utf-8 -*-\n\n# Form implementation generated from reading ui file 'QQ.ui'\n#\n# Created by: PyQt5 UI code gene"
  },
  {
    "path": "QQ.ui",
    "chars": 11593,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>MainWindow</class>\n <widget class=\"QMainWindow\" name=\""
  },
  {
    "path": "QQ_view.py",
    "chars": 1246,
    "preview": "#coding=utf-8\n\nimport sys\nfrom PyQt5.QtWidgets import (QApplication,QWidget,QListWidget,QListWidgetItem,QFormLayout, QTe"
  },
  {
    "path": "QQchating.py",
    "chars": 7321,
    "preview": "# -*- coding: utf-8 -*-\n\n# Form implementation generated from reading ui file 'QQchating.ui'\n#\n# Created by: PyQt5 UI co"
  },
  {
    "path": "QQchating.ui",
    "chars": 6351,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>MainWindow</class>\n <widget class=\"QMainWindow\" name=\""
  },
  {
    "path": "QQlogin.py",
    "chars": 3762,
    "preview": "# -*- coding: utf-8 -*-\n\n# Form implementation generated from reading ui file 'QQlogin.ui'\n#\n# Created by: PyQt5 UI code"
  },
  {
    "path": "QQlogin.ui",
    "chars": 5055,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>Form</class>\n <widget class=\"QWidget\" name=\"Form\">\n  <"
  },
  {
    "path": "README.md",
    "chars": 831,
    "preview": "# pyqt5-QQ\n利用python PyQt5图形库开发的一个基于tcp协议仿QQ聊天pc软件工具<br>\n----\n*软件介绍:<br>\n---\n>>运行启动<br>\n>>功能展示<br>\n>>源码详解介绍<br>\n\n*运行启动<br"
  },
  {
    "path": "Tcp_server.py",
    "chars": 5285,
    "preview": "#-*-coding:utf-8-*-\n\nfrom socket import *\nimport threading\n\n\n\naddress='127.0.0.1'\nport=6337\nbuffsize=1024\ns = socket(AF_"
  },
  {
    "path": "frist.qrc",
    "chars": 373,
    "preview": "<RCC>\n  <qresource prefix=\"chatbk\">\n    <file>image/loginicon.jpg</file>\n    <file>image/loginhide.jpg</file>\n    <file>"
  },
  {
    "path": "groupchat.py",
    "chars": 5731,
    "preview": "# -*- coding: utf-8 -*-\n\n# Form implementation generated from reading ui file 'groupchat.ui'\n#\n# Created by: PyQt5 UI co"
  },
  {
    "path": "groupchat.ui",
    "chars": 6179,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>Dialog</class>\n <widget class=\"QDialog\" name=\"Dialog\">"
  },
  {
    "path": "image/example.com.zone",
    "chars": 1014,
    "preview": "$ttl 36000\nexample.com.\tIN\tSOA\tdns.example.com. admin.example.com. (\n\t\t\t200509050  ; serial\n\t\t\t10800      ; refresh (3 h"
  },
  {
    "path": "image/main.cf",
    "chars": 26789,
    "preview": "# Global Postfix configuration file. This file lists only a subset\n# of all parameters. For the syntax, and for a comple"
  },
  {
    "path": "image/named.conf",
    "chars": 1279,
    "preview": "// Default named.conf generated by install of bind-9.2.4-2\noptions {\n\tdirectory \"/var/named\";\n\tdump-file \"/var/named/dat"
  },
  {
    "path": "introduction-img/null",
    "chars": 1,
    "preview": "\n"
  },
  {
    "path": "login.py",
    "chars": 6326,
    "preview": "# -*- coding: utf-8 -*-\n\n# Form implementation generated from reading ui file 'login.ui'\n#\n# Created by: PyQt5 UI code g"
  },
  {
    "path": "login.qrc",
    "chars": 198,
    "preview": "<RCC>\n  <qresource prefix=\"img\">\n    <file>image/qqchatbk.jpg</file>\n    <file>image/qqlogin.jpg</file>\n    <file>image/"
  },
  {
    "path": "login.ui",
    "chars": 3608,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>MainWindow</class>\n <widget class=\"QMainWindow\" name=\""
  },
  {
    "path": "login_rc.py",
    "chars": 254917,
    "preview": "# -*- coding: utf-8 -*-\n\n# Resource object code\n#\n# Created by: The Resource Compiler for PyQt5 (Qt v5.11.1)\n#\n# WARNING"
  },
  {
    "path": "loginqq.py",
    "chars": 6498,
    "preview": "# -*- coding: utf-8 -*-\n\n# Form implementation generated from reading ui file 'loginqq.ui'\n#\n# Created by: PyQt5 UI code"
  },
  {
    "path": "loginqq.ui",
    "chars": 4407,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>MainWindow</class>\n <widget class=\"QMainWindow\" name=\""
  },
  {
    "path": "personal.py",
    "chars": 5425,
    "preview": "# -*- coding: utf-8 -*-\n\n# Form implementation generated from reading ui file 'personal.ui'\n#\n# Created by: PyQt5 UI cod"
  },
  {
    "path": "personal.ui",
    "chars": 5696,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>Dialog</class>\n <widget class=\"QDialog\" name=\"Dialog\">"
  },
  {
    "path": "pyqt.py",
    "chars": 960,
    "preview": "#-*-coding:utf-8-*-\n\nimport sys\nfrom PyQt5.QtWidgets import (QApplication,QWidget,QPushButton,QMessageBox, QPlainTextEdi"
  },
  {
    "path": "run.py",
    "chars": 354,
    "preview": "# -*- coding: utf-8 -*-\n\nimport sys\nfrom QQlogin import Ui_Form\nfrom PyQt5.QtWidgets import (QApplication,QWidget,QListW"
  },
  {
    "path": "文件说明.txt",
    "chars": 10,
    "preview": "ڣlogin.py\n"
  }
]

// ... and 1 more files (download for full content)

About this extraction

This page contains the full source code of the WEIYANLIN1996/pyqt5-QQ GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 31 files (15.0 MB), approximately 178.6k tokens, and a symbol index with 56 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!