diff --git a/Robot/pyRobotName_Settings.py b/Robot/pyRobotName_Settings.py index f87fb397..2515e4ee 100644 --- a/Robot/pyRobotName_Settings.py +++ b/Robot/pyRobotName_Settings.py @@ -116,7 +116,7 @@ if __name__ == "__main__": ## # # # # # # # # # # # # # # # # ## # START ROBOT lL.info("# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #") - lL.info("ROBOT NAME ITERATION START") + lL.info("ИМЯ РОБОТА, НАЧАЛО ВЫПОЛНЕНИЯ") lL.info("# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #") - lL.info(f"VM host name: {gVMHostNameStr}, Program version {gVersionStr}, Working directory: {gCWDAbsPathStr}") # Init info + lL.info(f"ХОСТ: {gVMHostNameStr}, ВЕРСИЯ РОБОТА: {gVersionStr}, РАБОЧАЯ ДИРЕКТОРИЯ: {gCWDAbsPathStr}") # Init info pyModule.pyModule(inGSettings = gSettings) # Execute main def in Source/pyPackage.pyModule.pyModule \ No newline at end of file diff --git a/Sources/pyOpenRPA/Agent/O2A.py b/Sources/pyOpenRPA/Agent/O2A.py index 853df131..3780cb81 100644 --- a/Sources/pyOpenRPA/Agent/O2A.py +++ b/Sources/pyOpenRPA/Agent/O2A.py @@ -53,27 +53,27 @@ def O2A_Loop(inGSettings): # Log full version if bytes size is less than limit . else short lAgentLimitLogSizeBytesInt = 500 if lBodyLenInt <= lAgentLimitLogSizeBytesInt: - if lL: lL.info(f"ActivityItem from orchestrator: {lQueueItem}"); + if lL: lL.info(f"Словарь ActivityItem, полученный от оркестратора: {lQueueItem}") else: - if lL: lL.info(f"ActivityItem from orchestrator: Supressed - big size. Size is {lBodyLenInt} bytes"); + if lL: lL.info(f"Словарь ActivityItem, полученный от оркестратора: содержимое свернуто из-за большого размера ({lBodyLenInt} байт") else: - if lL: lL.debug(f"Empty response from the orchestrator - loop when refresh the connection between Orc and Agent"); + if lL: lL.debug(f"Поступил пустой ответ от оркестратора - цикл попытается обновить соединение между оркестратором и агентом"); except requests.exceptions.ConnectionError as e: if time.time() - lCEPhaseFastTimeLastGoodFloat <= lCEPhaseFastDurationSecFloat: - if lL: lL.error(f"O2A Connection error - orchestrator is not available. Sleep for {lCEPhaseFastRetrySecFloat} s.") + if lL: lL.error(f"О2А Ошибка соединения - оркестратор недоступен. Повторить попытку через {lCEPhaseFastRetrySecFloat} с.") time.sleep(lCEPhaseFastRetrySecFloat) else: - if lL: lL.error(f"O2A Connection error - orchestrator is not available. Sleep for {lCEPhaseLongRetrySecFloat} s.") + if lL: lL.error(f"О2А Ошибка соединения - оркестратор недоступен. Повторить попытку через {lCEPhaseLongRetrySecFloat} с.") time.sleep(lCEPhaseLongRetrySecFloat) except ConnectionResetError as e: - if lL: lL.error(f"O2A Connection reset error - orchestrator is not available. Sleep for {inGSettings['O2ADict']['RetryTimeoutSecFloat']} s.") + if lL: lL.error(f"О2А Ошибка сброса соединения - оркестратор недоступен. Повторить попытку через {inGSettings['O2ADict']['RetryTimeoutSecFloat']} с.") time.sleep(inGSettings["O2ADict"]["RetryTimeoutSecFloat"]) except json.decoder.JSONDecodeError as e: - if lL: lL.error(f"O2A JSON decode error - See body of the recieved content from the Orchestrator: {lRequestBody}") + if lL: lL.error(f"О2А Ошибка декодирования JSON - далее представлено содержимое, которое поступило на обработку: {lRequestBody}") time.sleep(inGSettings["O2ADict"]["RetryTimeoutSecFloat"]) except requests.exceptions.Timeout as e: - if lL: lL.exception(f"O2A requests timeout error (no response for long time). Sleep for {inGSettings['O2ADict']['RetryTimeoutSecFloat']} s.") + if lL: lL.exception(f"О2А Ошибка соединения (превышено время ожидания). Повторить попытку через {inGSettings['O2ADict']['RetryTimeoutSecFloat']} с.") time.sleep(inGSettings["O2ADict"]["RetryTimeoutSecFloat"]) except Exception as e: - if lL: lL.exception(f"O2A Error handler. Sleep for {inGSettings['O2ADict']['RetryTimeoutSecFloat']} s.") + if lL: lL.exception(f"О2А Общая ошибка. Повторить попытку через {inGSettings['O2ADict']['RetryTimeoutSecFloat']} с.") time.sleep(inGSettings["O2ADict"]["RetryTimeoutSecFloat"]) \ No newline at end of file diff --git a/Sources/pyOpenRPA/Agent/__Agent__.py b/Sources/pyOpenRPA/Agent/__Agent__.py index 972f0f87..2971a07e 100644 --- a/Sources/pyOpenRPA/Agent/__Agent__.py +++ b/Sources/pyOpenRPA/Agent/__Agent__.py @@ -21,7 +21,7 @@ def OSFileBinaryDataBase64StrCreate(inFilePathStr, inFileDataBase64Str,inGSettin lFile.write(base64.b64decode(inFileDataBase64Str)) lFile.close() lL = inGSettings.get("Logger", None) if type(inGSettings) is dict else None - lMessageStr = f"AGENT Binary file {inFilePathStr} has been created." + lMessageStr = f"АГЕНТ: бинарный файл {inFilePathStr} создан успешно" if lL: lL.info(lMessageStr) A2O.LogListSend(inGSettings=inGSettings, inLogList=[lMessageStr]) @@ -35,7 +35,7 @@ def OSFileBinaryDataBase64StrAppend(inFilePathStr, inFileDataBase64Str,inGSettin lFile.write(base64.b64decode(inFileDataBase64Str)) lFile.close() lL = inGSettings.get("Logger", None) if type(inGSettings) is dict else None - lMessageStr = f"AGENT Binary file {inFilePathStr} has been appended." + lMessageStr = f"АГЕНТ: Данные успешно добавлены в бинарный файл {inFilePathStr}" if lL: lL.info(lMessageStr) A2O.LogListSend(inGSettings=inGSettings, inLogList=[lMessageStr]) @@ -54,7 +54,7 @@ def OSFileTextDataStrCreate(inFilePathStr, inFileDataStr, inEncodingStr = "utf-8 lFile.write(inFileDataStr) lFile.close() lL = inGSettings.get("Logger", None) if type(inGSettings) is dict else None - lMessageStr = f"AGENT Text file {inFilePathStr} has been created." + lMessageStr = f"АГЕНТ: Текстовый файл {inFilePathStr} успешно создан" if lL: lL.info(lMessageStr) A2O.LogListSend(inGSettings=inGSettings, inLogList=[lMessageStr]) @@ -112,11 +112,11 @@ def OSFileTextDataStrReceive(inFilePathStr, inEncodingStr="utf-8", inGSettings=N lFile = open(inFilePathStr, "r", encoding=inEncodingStr) lFileDataStr = lFile.read() lFile.close() - lMessageStr = f"OSFileTextDataStrReceive: file {inFilePathStr} has been read" + lMessageStr = f"АГЕНТ: Текстовый файл {inFilePathStr} прочитан успешно" if lL: lL.info(lMessageStr) #A2O.LogListSend(inGSettings=inGSettings, inLogList=[lMessageStr]) else: - if lL: lL.info(f"OSFileTextDataStrReceive: file {inFilePathStr} is not exists - return None") + if lL: lL.info(f"АГЕНТ: Текстовый файл {inFilePathStr} не существует - вернуть None") return lFileDataStr # Send CMD to OS. Result return to log + Orchestrator by the A2O connection @@ -151,7 +151,7 @@ def OSCMD(inCMDStr, inRunAsyncBool=True, inGSettings = None, inSendOutputToOrche if CrossOS.IS_LINUX_BOOL: lCMDProcess = subprocess.Popen(f'cmd /c {inCMDStr}', stdout=None, stderr=None) lListenBool = True - lMessageStr = f"{lOSCMDKeyStr}: # # # # AGENT CMD Process has been STARTED # # # # " + lMessageStr = f"{lOSCMDKeyStr}: # # # # АГЕНТ: Терминальная сессия запущена # # # # " if lL: lL.info(lMessageStr) if inSendOutputToOrchestratorLogsBool == True: # Capturing can be turned on! A2O.LogListSend(inGSettings=inGSettings,inLogList=[lMessageStr]) @@ -178,7 +178,7 @@ def OSCMD(inCMDStr, inRunAsyncBool=True, inGSettings = None, inSendOutputToOrche time.sleep(2) else: lListenBool = False - lMessageStr = f"{lOSCMDKeyStr}: # # # # AGENT CMD Process has been FINISHED # # # # " + lMessageStr = f"{lOSCMDKeyStr}: # # # # АГЕНТ: Терминальная сессия завершена # # # # " if lL: lL.info(lMessageStr) if inSendOutputToOrchestratorLogsBool == True: # Capturing can be turned on! A2O.LogListSend(inGSettings=inGSettings, inLogList=[lMessageStr]) @@ -187,7 +187,7 @@ def OSCMD(inCMDStr, inRunAsyncBool=True, inGSettings = None, inSendOutputToOrche if inRunAsyncBool: lThread = threading.Thread(target=_CMDRunAndListenLogs, kwargs={"inCMDStr":inCMDStr, "inGSettings":inGSettings, "inSendOutputToOrchestratorLogsBool":inSendOutputToOrchestratorLogsBool, "inCMDEncodingStr":inCMDEncodingStr, "inCaptureBool": inCaptureBool }) lThread.start() - lResultStr="ActivityList has been started in async mode - no output is available here." + lResultStr="Список ActivityList отправлен на исполнение в асинхронном режиме - захват текста недоступен" else: lResultStr = _CMDRunAndListenLogs(inCMDStr=inCMDStr, inGSettings=inGSettings, inSendOutputToOrchestratorLogsBool = inSendOutputToOrchestratorLogsBool, inCMDEncodingStr = inCMDEncodingStr, inCaptureBool=inCaptureBool) #lCMDCode = "cmd /c " + inCMDStr @@ -244,7 +244,7 @@ def Agent(inGSettings): lProcessorThread = threading.Thread(target= Processor.ProcessorRunSync, kwargs={"inGSettings":inGSettings}) lProcessorThread.daemon = True # Run the thread in daemon mode. lProcessorThread.start() # Start the thread execution. - if lL: lL.info("Processor has been started (ProcessorDict)") #Logging + if lL: lL.info("Модуль процессора pyOpenRPA был успешно запущен") #Logging # Start thread to wait data from Orchestrator (O2A) lO2AThread = threading.Thread(target=O2A.O2A_Loop, kwargs={"inGSettings":inGSettings}) diff --git a/Sources/pyOpenRPA/Orchestrator/BackwardCompatibility.py b/Sources/pyOpenRPA/Orchestrator/BackwardCompatibility.py index b2a46b5e..81bb1972 100644 --- a/Sources/pyOpenRPA/Orchestrator/BackwardCompatibility.py +++ b/Sources/pyOpenRPA/Orchestrator/BackwardCompatibility.py @@ -77,7 +77,7 @@ def v1_2_0_Monitor_ControlPanelDictGet_SessionCheckInit(inRequest,inGlobalDict): } inGlobalDict["Client"]["Session"]["TechnicalSessionGUIDCache"][lCookieSessionGUIDStr] = lSessionNew # Set new session in dict inRequest.OpenRPAResponseDict["SetCookies"]["SessionGUIDStr"] = lCookieSessionGUIDStr # Set SessionGUIDStr in cookies - if lL: lL.info(f"New session GUID is created. GUID {lCookieSessionGUIDStr}") + if lL: lL.info(f"РДП сессия инициализирована. Идентификатор сессии:{lCookieSessionGUIDStr}") return lCookieSessionGUIDStr # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # lCreateNewSessionBool = False # Flag to create new session structure diff --git a/Sources/pyOpenRPA/Orchestrator/Managers/Git.py b/Sources/pyOpenRPA/Orchestrator/Managers/Git.py index 7676f6bd..8a86f414 100644 --- a/Sources/pyOpenRPA/Orchestrator/Managers/Git.py +++ b/Sources/pyOpenRPA/Orchestrator/Managers/Git.py @@ -151,11 +151,11 @@ class Git(): :param inBranchRemoteStr: [description] :type inBranchRemoteStr: str """ - Orchestrator.OrchestratorLoggerGet().debug(f"Managers.Git ({self.mAbsPathStr}): self.BranchRevLastGet has been init") + Orchestrator.OrchestratorLoggerGet().debug(f"Модуль Managers.Git ({self.mAbsPathStr}): функция self.BranchRevLastGet успешно инициализирована") # check if the correct revision lCMDResultStr = None if self.BranchRevIsLast(inBranchLocalStr=inBranchLocalStr, inBranchRemoteStr=inBranchRemoteStr) == False: - Orchestrator.OrchestratorLoggerGet().info(f"Managers.Git ({self.mAbsPathStr}): self.BranchRevLastGet, new rev (branch: {inBranchLocalStr}) has been detected - merge (branch: {inBranchRemoteStr})") + Orchestrator.OrchestratorLoggerGet().info(f"Модуль Managers.Git ({self.mAbsPathStr}): функуция self.BranchRevLastGet, новая ревизия (ветка: {inBranchLocalStr}) была удалена - выполнить слияние (ветка на сервере: {inBranchRemoteStr})") # Do the stop safe for the connected process self.ProcessListSaveStopSafe() lBranchNameCurrentStr = self.BranchNameGet() @@ -170,7 +170,7 @@ class Git(): # checkout to the source branch which was self.BranchCheckout(inBranchNameStr=lBranchNameCurrentStr) # do the orc restart - Orchestrator.OrchestratorLoggerGet().info(f"Managers.Git ({self.mAbsPathStr}): self.BranchRevLastGet, merge done, restart orc") + Orchestrator.OrchestratorLoggerGet().info(f"Модуль Managers.Git ({self.mAbsPathStr}): self.BranchRevLastGet, merge done, restart orc") Orchestrator.OrchestratorRestart() return lCMDResultStr diff --git a/Sources/pyOpenRPA/Orchestrator/Managers/Process.py b/Sources/pyOpenRPA/Orchestrator/Managers/Process.py index ff47c075..20615252 100644 --- a/Sources/pyOpenRPA/Orchestrator/Managers/Process.py +++ b/Sources/pyOpenRPA/Orchestrator/Managers/Process.py @@ -145,7 +145,7 @@ class Process(): self.mStatusStr = "1_STOPPED_MANUAL" # Log info about process lL = __Orchestrator__.OrchestratorLoggerGet() - lL.info(f"Managers.Process ({self.mAgentHostNameStr}, {self.mAgentUserNameStr}, {self.mProcessNameWOExeStr}): ManualStopTrigger is activated. {self.mMSTdNInt} start tries in {self.mMSTdTSecFloat} sec.") + lL.info(f"Модуль Managers.Process ({self.mAgentHostNameStr}, {self.mAgentUserNameStr}, {self.mProcessNameWOExeStr}): Триггер ручной остановки активирован. {self.mMSTdNInt} повторить попытку через {self.mMSTdTSecFloat} сек.") return self.mStatusStr def ManualStopListClear(self) -> None: @@ -180,7 +180,7 @@ class Process(): """ if inIsManualBool == False: self.ManualStopTriggerNewStart() # Set the time if self.mStatusStr is not None and (self.mStatusStr == "1_STOPPED_MANUAL" or "STOP_SAFE" in self.mStatusStr) and inIsManualBool == False: - lStr = f"Managers.Process ({self.mAgentHostNameStr}, {self.mAgentUserNameStr}, {self.mProcessNameWOExeStr}): Process will not start because of stopped manual or stop safe is now." + lStr = f"Модуль Managers.Process ({self.mAgentHostNameStr}, {self.mAgentUserNameStr}, {self.mProcessNameWOExeStr}): Процесс не будет запущен, так как инициализирован триггер ручной остановки или активен режим безопасного отключения" __Orchestrator__.OrchestratorLoggerGet().warning(lStr) return self.mStatusStr # Send activity item to agent - wait result @@ -259,7 +259,7 @@ class Process(): if "SAFE" in self.mStatusStr: # Log info about process lL = __Orchestrator__.OrchestratorLoggerGet() - lL.info(f"Managers.Process ({self.mAgentHostNameStr}, {self.mAgentUserNameStr}, {self.mProcessNameWOExeStr}): Safe stop has been wait for {inStopSafeTimeoutSecFloat} sec. Now do the force stop.") + lL.info(f"Модуль Managers.Process ({self.mAgentHostNameStr}, {self.mAgentUserNameStr}, {self.mProcessNameWOExeStr}): Алгоритм безопасной остановки ожидал завершение процесса в течение {inStopSafeTimeoutSecFloat} сек. Выполнить принудительную остановку") self.StopForce(inIsManualBool=inIsManualBool,inMuteIgnoreBool=True) # Log info about process # self.StatusChangeLog() status check has already log status (see above) @@ -390,7 +390,7 @@ class Process(): """ # Log info about process lL = __Orchestrator__.OrchestratorLoggerGet() - lL.info(f"Managers.Process ({self.mAgentHostNameStr}, {self.mAgentUserNameStr}, {self.mProcessNameWOExeStr}): Status has been changed to {self.mStatusStr})") + lL.info(f"Модуль Managers.Process ({self.mAgentHostNameStr}, {self.mAgentUserNameStr}, {self.mProcessNameWOExeStr}): Состояние процесса изменилось на {self.mStatusStr})") def StatusCheck(self): diff --git a/Sources/pyOpenRPA/Orchestrator/Processor.py b/Sources/pyOpenRPA/Orchestrator/Processor.py index 62e07788..7b5ef91c 100644 --- a/Sources/pyOpenRPA/Orchestrator/Processor.py +++ b/Sources/pyOpenRPA/Orchestrator/Processor.py @@ -70,7 +70,7 @@ def ActivityListExecute(inGSettings, inActivityList): lResultList = [] # init the result list try: for lActivityItem in inActivityList: # Iterate throught the activity list - if lL: lL.info(f'pyOpenRPA Processor.ActivityListExecute:: Def:{str(lActivityItem["Def"])}. Parameters are not available to see.') + if lL: lL.info(f'Процессор:: Исполнение функции def:{str(lActivityItem["Def"])}. В целях информационной безопасности параметры недоступны для просмотра') lDef = None # Def variable if callable(lActivityItem["Def"]): # CHeck if def is callable lDef = lActivityItem["Def"] # Get the def diff --git a/Sources/pyOpenRPA/Orchestrator/RobotRDPActive/RobotRDPActive.py b/Sources/pyOpenRPA/Orchestrator/RobotRDPActive/RobotRDPActive.py index 60b6631e..85805510 100644 --- a/Sources/pyOpenRPA/Orchestrator/RobotRDPActive/RobotRDPActive.py +++ b/Sources/pyOpenRPA/Orchestrator/RobotRDPActive/RobotRDPActive.py @@ -62,22 +62,22 @@ def RobotRDPActive(inGSettings, inThreadControlDict): try: Connector.Session(lRDPConfigurationDict, inScreenSize550x350Bool = True) lRDPConfigurationDict["SessionIsWindowExistBool"] = True # Flag that session is started - if lL: lL.info(f"Host: {lRDPConfigurationDict['Host']}, Login: {lRDPConfigurationDict['Login']}, SessionHex: {str(lRDPConfigurationDict['SessionHex'])}:: Session has been initialized!") #Logging + if lL: lL.info(f"Хост: {lRDPConfigurationDict['Host']}, Логин: {lRDPConfigurationDict['Login']}, Идентификатор сессии: {str(lRDPConfigurationDict['SessionHex'])}:: Сессия была инициализирована!") #Logging # catch ConnectorExceptions.SessionWindowNotExistError except ConnectorExceptions.SessionWindowNotExistError as e: lRDPConfigurationDict["SessionIsWindowExistBool"] = False # Set flag that session is disconnected - if lL: lL.warning(f"Host: {lRDPConfigurationDict['Host']}, Login: {lRDPConfigurationDict['Login']}, SessionHex: {str(lRDPConfigurationDict['SessionHex'])}:: Session is not exist! Mark the retry") #Logging + if lL: lL.warning(f"Хост: {lRDPConfigurationDict['Host']}, Логин: {lRDPConfigurationDict['Login']}, Идентификатор сессии: {str(lRDPConfigurationDict['SessionHex'])}:: Сессия не обнаружена - попытаться подключиться!") #Logging # Recovery operations Recovery.RetryMark(inRDPSessionKeyStr=lRDPSessionKeyStr,inGSettings=inGSettings) if Recovery.RetryIsTriggered(inRDPSessionKeyStr=lRDPSessionKeyStr,inGSettings=inGSettings) == True: - if lL: lL.warning(f"!ATTENTION! Host: {lRDPConfigurationDict['Host']}, Login: {lRDPConfigurationDict['Login']}; RDP is not responsible for many times - run recovery mode") + if lL: lL.warning(f"!ВНИМАНИЕ! Хост: {lRDPConfigurationDict['Host']}, Логин: {lRDPConfigurationDict['Login']}; сессия РДП недоступна при попытках подключения - инициализация режима восстановления") Recovery.RetryHostClear(inHostStr=lRDPConfigurationDict['Host'],inGSettings=inGSettings) # Clear the stat about current host if inGSettings["RobotRDPActive"]["RecoveryDict"]["DoDict"]["OSRemotePCRestart"] == True: - if lL: lL.warning(f"!ATTENTION! Host: {lRDPConfigurationDict['Host']}, Send signal to restart remote PC.") + if lL: lL.warning(f"!ВНИМАНИЕ! Хост: {lRDPConfigurationDict['Host']}, отправить сигнал на перезагрузку удаленной машины") __Orchestrator__.OSRemotePCRestart(inLogger=lL,inHostStr=lRDPConfigurationDict['Host'],inForceBool=True) # general exceptions except Exception as e: - if lL: lL.exception(f"!!! ATTENTION !!! Unrecognized error") #Logging + if lL: lL.exception(f"!!! ВНИМАНИЕ !!! Неопознанная ошибка. Обратитесь в тех. поддержку pyOpenRPA") #Logging pass # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Connector.SystemRDPWarningClickOk() # Click all warning messages @@ -125,7 +125,7 @@ def RobotRDPActive(inGSettings, inThreadControlDict): lActivityItemResult = getattr(Processor, lSubmoduleFunctionName)( *lActivityItem["ArgList"], **lActivityItem["ArgDict"]) except Exception as e: - if lL: lL.exception(f"RDP::main: Exception when run def in processor.py - activity will be ignored. Activity item: {lActivityItem}") #Logging + if lL: lL.exception(f"РДП: Ошибка при обработке активности в процессоре РДП сессии - активность будет проигнорирована. Активность: {lActivityItem}") #Logging lActivityItemResult = True # True - clear from repeat list lActivityItemResultType = type(lActivityItemResult) # Check if Result is bool @@ -137,7 +137,7 @@ def RobotRDPActive(inGSettings, inThreadControlDict): # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # except RuntimeError as e: # case noGUI error passed - do nothing - if lL: lL.warning(f"Host session has lost the GUI") #Logging + if lL: lL.warning(f"Оркестратор потерял графическую сессию - повторить попытку через несколько секунд") #Logging finally: # Wait for the next iteration time.sleep(0.7) @@ -145,4 +145,4 @@ def RobotRDPActive(inGSettings, inThreadControlDict): # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #Monitor.Monitor(mGSettingsRDPActiveDict, 1) except Exception as e: - if lL: lL.exception(f"!!! ATTENTION !!! Global error handler - look at code") #Logging \ No newline at end of file + if lL: lL.exception(f"!!! ВНИМАНИ !!! В модуле РДП произошла критическая ошибка. Обратитесь в службу тех. поддержки pyOpenRPA") #Logging \ No newline at end of file diff --git a/Sources/pyOpenRPA/Orchestrator/Server.py b/Sources/pyOpenRPA/Orchestrator/Server.py index 5d0b84c3..2b9e7167 100644 --- a/Sources/pyOpenRPA/Orchestrator/Server.py +++ b/Sources/pyOpenRPA/Orchestrator/Server.py @@ -595,7 +595,7 @@ class testHTTPServer_RequestHandler(BaseHTTPRequestHandler): lActivityTypeListStr += f"{lInputObject['Type']}" except Exception as e: lActivityTypeListStr = "Has some error with Activity Type read" - if lL: lL.info(f"Server:: !ATTENTION! /Utils/Processor will be deprecated in future. Use /pyOpenRPA/Processor or /pyOpenRPA/ActivityListExecute. User activity from web. Domain: {self.OpenRPA['Domain']}, Username: {self.OpenRPA['User']}, ActivityType: {lActivityTypeListStr}") + if lL: lL.info(f"Сервер:: !ВНИМАНИЕ! /Utils/Processor через некоторое время перестанет поддерживаться. Используйте /pyOpenRPA/Processor или /pyOpenRPA/ActivityListExecute. Активность поступила от пользователя. Домен: {self.OpenRPA['Domain']}, Логин: {self.OpenRPA['User']}, Тип активности: {lActivityTypeListStr}") # Send message back to client message = json.dumps(ProcessorOld.ActivityListOrDict(lInputObject)) # Write content as utf-8 data @@ -652,10 +652,10 @@ class RobotDaemonServer(Thread): httpd.socket = ssl.wrap_socket(httpd.socket, server_side=True, certfile=lCertFilePathStr, keyfile=lKeyFilePathStr) else: httpd.socket = ssl.wrap_socket(httpd.socket, server_side=True, certfile=lCertFilePathStr) - if lL: lL.info(f"Web Server init (with SSL). Name: {self.name}, Listen URL: {lAddressStr}, Listen port: {lPortInt}, Cert path: {lCertFilePathStr}") + if lL: lL.info(f"Сервер инициализирован успешно (с поддержкой SSL):: Наименование: {self.name}, Слушает URL: {lAddressStr}, Слушает порт: {lPortInt}, Путь к файлу сертификата (.pem): {lCertFilePathStr}") else: - if lL: lL.info(f"Web Server init. Name: {self.name}, Listen URL: {lAddressStr}, Listen port: {lPortInt}") + if lL: lL.info(f"Сервер инициализирован успешно (без поддержки SSL):: Наименование: {self.name}, Слушает URL: {lAddressStr}, Слушает порт: {lPortInt}") #print('Starting server, use to stop') httpd.serve_forever() except Exception as e: - if lL: lL.exception(f"Web Server execution exception") + if lL: lL.exception(f"Сервер:: Ошибка при инициализации - обратитесь в тех. поддержку pyOpenRPA") diff --git a/Sources/pyOpenRPA/Orchestrator/ServerSettings.py b/Sources/pyOpenRPA/Orchestrator/ServerSettings.py index 4ed1b467..cf22e826 100644 --- a/Sources/pyOpenRPA/Orchestrator/ServerSettings.py +++ b/Sources/pyOpenRPA/Orchestrator/ServerSettings.py @@ -239,7 +239,7 @@ def pyOpenRPA_Processor(inRequest, inGSettings): for lActivityItem in lInput: lActivityTypeListStr += f"{lActivityItem['Def']}; " except Exception as e: - lActivityTypeListStr = "Has some error with Activity Type read" + lActivityTypeListStr = "Ошибка чтения типа активности" lWebAuditMessageStr = __Orchestrator__.WebAuditMessageCreate(inRequest=inRequest,inOperationCodeStr=lActivityTypeListStr, inMessageStr="pyOpenRPA_Processor") if lL: lL.info(lWebAuditMessageStr) # Separate into 2 lists - sync and async @@ -265,7 +265,7 @@ def pyOpenRPA_Processor(inRequest, inGSettings): try: lActivityTypeListStr = lInput['Def'] except Exception as e: - lActivityTypeListStr = "Has some error with Activity Type read" + lActivityTypeListStr = "Ошибка чтения типа активности" lWebAuditMessageStr = __Orchestrator__.WebAuditMessageCreate(inRequest=inRequest,inOperationCodeStr=lActivityTypeListStr, inMessageStr="pyOpenRPA_Processor") if lL: lL.info(lWebAuditMessageStr) if lInput.get("ThreadBool",False) == False: @@ -294,7 +294,7 @@ def pyOpenRPA_ActivityListExecute(inRequest, inGSettings): for lActivityItem in lInput: lActivityTypeListStr += f"{lActivityItem['Def']}; " except Exception as e: - lActivityTypeListStr = "Has some error with Activity Type read" + lActivityTypeListStr = "Ошибка чтения типа активности" lWebAuditMessageStr = __Orchestrator__.WebAuditMessageCreate(inRequest=inRequest,inOperationCodeStr=lActivityTypeListStr, inMessageStr="pyOpenRPA_ActivityListExecute") if lL: lL.info(lWebAuditMessageStr) # Execution @@ -307,7 +307,7 @@ def pyOpenRPA_ActivityListExecute(inRequest, inGSettings): try: lActivityTypeListStr = lInput['Def'] except Exception as e: - lActivityTypeListStr = "Has some error with Activity Type read" + lActivityTypeListStr = "Ошибка чтения типа активности" lWebAuditMessageStr = __Orchestrator__.WebAuditMessageCreate(inRequest=inRequest, inOperationCodeStr=lActivityTypeListStr, inMessageStr="pyOpenRPA_ActivityListExecute") @@ -438,13 +438,13 @@ def pyOpenRPA_Agent_A2O(inRequest, inGSettings): lActivityReturnItemValue = lInput["ActivityReturnDict"][lActivityReturnItemKeyStr] # Create item in gSettings inGSettings["AgentActivityReturnDict"][lActivityReturnItemKeyStr]=SettingsTemplate.__AgentActivityReturnDictItemCreate__(inReturn=lActivityReturnItemValue) - lLogStr = "x bytes" + lLogStr = "x байт" try: if lActivityReturnItemValue is not None: - lLogStr = f"{len(lActivityReturnItemValue)} bytes" + lLogStr = f"{len(lActivityReturnItemValue)} байт" except Exception as e: pass - if lL: lL.debug(f"SERVER: pyOpenRPA_Agent_A2O:: Has recieved result of the activity items from agent! ActivityItem GUID Str: {lActivityReturnItemKeyStr}; Return value len: {lLogStr}") + if lL: lL.debug(f"СЕРВЕР: Функция pyOpenRPA_Agent_A2O:: Получена активность от агента! Идентификатор активности: {lActivityReturnItemKeyStr}; Длина переданной активности: {lLogStr}") # Delete the source activity item from AgentDict if lAgentDictItemKeyTurple in inGSettings["AgentDict"]: lAgentDictActivityListNew = [] @@ -454,7 +454,7 @@ def pyOpenRPA_Agent_A2O(inRequest, inGSettings): lAgentDictActivityListNew.append(lActivityItem) else: del lActivityItem - if lL: lL.debug(f"SERVER: pyOpenRPA_Agent_A2O:: Source activity item request was deleted from the orchestrator. ActivityItem GUID Str: {lActivityReturnItemKeyStr}") + if lL: lL.debug(f"СЕРВЕР: Функция pyOpenRPA_Agent_A2O:: Активность была удалена из процессорной очереди. Идентификатор активности: {lActivityReturnItemKeyStr}") inGSettings["AgentDict"][lAgentDictItemKeyTurple]["ActivityList"] = lAgentDictActivityListNew from pyOpenRPA.Utils.Render import Render diff --git a/Sources/pyOpenRPA/Orchestrator/__Orchestrator__.py b/Sources/pyOpenRPA/Orchestrator/__Orchestrator__.py index 3fce1ed1..944448c1 100644 --- a/Sources/pyOpenRPA/Orchestrator/__Orchestrator__.py +++ b/Sources/pyOpenRPA/Orchestrator/__Orchestrator__.py @@ -220,7 +220,7 @@ def AgentOSFileSend(inHostNameStr, inUserStr, inOrchestratorFilePathStr, inAgent #import pdb #pdb.set_trace() lChunkCountInt = math.ceil(lFileSizeBytesInt/lChunkByteSizeInt) - if lL: lL.info(f"O2A: Start to send binary file via chunks. Chunk count: {lChunkCountInt}, From (Orch side): {inOrchestratorFilePathStr}, To (Agent side): {inAgentFilePathStr}") + if lL: lL.info(f"О2А: Старт передачи крупного бинарного файла по частям. Общее количество частей: {lChunkCountInt}, от (сторона оркестратора): {inOrchestratorFilePathStr}, на (сторона агента): {inAgentFilePathStr}") for lChunkNumberInt in range(lChunkCountInt): # Read chunk lFileChunkBytes = lFile.read(lChunkByteSizeInt) @@ -239,9 +239,9 @@ def AgentOSFileSend(inHostNameStr, inUserStr, inOrchestratorFilePathStr, inAgent while AgentActivityItemExists(inGSettings=inGSettings,inHostNameStr=inHostNameStr,inUserStr=inUserStr,inGUIDStr=lActivityItemGUIDStr): time.sleep(lActivityItemCheckIntervalSecFloat) if lL: lL.debug( - f"O2A: BINARY SEND: Current chunk index: {lChunkNumberInt}") + f"О2А: БИНАРНАЯ ОТПРАВКА: Номер текущей части: {lChunkNumberInt}") if lL: lL.info( - f"O2A: BINARY SEND: Transmition has been complete") + f"О2А: БИНАРНАЯ ОТПРАВКА: Отправка завершена успешно") # Close the file lFile.close() @@ -536,7 +536,7 @@ def OSCMD(inCMDStr, inRunAsyncBool=True, inLogger = None): if CrossOS.IS_LINUX_BOOL: lCMDProcess = subprocess.Popen(f'cmd /c {inCMDStr}', stdout=subprocess.PIPE, stderr=subprocess.STDOUT) if inLogger: lListenBool = True - inLogger.info(f"{lOSCMDKeyStr}: # # # # CMD Process has been STARTED # # # # ") + inLogger.info(f"{lOSCMDKeyStr}: # # # # Терминальная сессия запущена успешно # # # # ") inLogger.info(f"{lOSCMDKeyStr}: {inCMDStr}") while lListenBool: lOutputLineBytes = lCMDProcess.stdout.readline() @@ -546,13 +546,13 @@ def OSCMD(inCMDStr, inRunAsyncBool=True, inLogger = None): if lStr.endswith("\n"): lStr = lStr[:-1] inLogger.info(f"{lOSCMDKeyStr}: {lStr}") lResultStr+=lStr - inLogger.info(f"{lOSCMDKeyStr}: # # # # CMD Process has been FINISHED # # # # ") + inLogger.info(f"{lOSCMDKeyStr}: # # # # Терминальная сессия завершена успешно # # # # ") return lResultStr # New call if inRunAsyncBool: lThread = threading.Thread(target=_CMDRunAndListenLogs, kwargs={"inCMDStr":inCMDStr, "inLogger":inLogger}) lThread.start() - lResultStr="ActivityList has been started in async mode - no output is available here." + lResultStr="Список ActivityList был запущен в асинхронном режиме - захватить содержимое невозможно" else: lResultStr = _CMDRunAndListenLogs(inCMDStr=inCMDStr, inLogger=inLogger) #lCMDCode = "cmd /c " + inCMDStr @@ -570,7 +570,7 @@ def OrchestratorRestart(inGSettings=None): OrchestratorSessionSave(inGSettings=inGSettings) # Dump RDP List in file json if inGSettings is not None: lL = inGSettings["Logger"] - if lL: lL.info(f"Do restart") + if lL: lL.info(f"Выполнить перезапуск оркестратора") # Restart session if CrossOS.IS_WINDOWS_BOOL: os.execl(sys.executable, os.path.abspath(__file__), *sys.argv) if CrossOS.IS_LINUX_BOOL: os.execl(sys.executable, sys.executable, *sys.argv) @@ -707,7 +707,7 @@ def OrchestratorPySearchInit(inGlobPatternStr, inDefStr = None, inDefArgNameGSet sys.modules[lModuleNameStr] = lTechModuleFromSpec # Add initialized module in sys - python will not init this module enought lTechSpecificationModuleLoader = lTechSpecification.loader.exec_module(lTechModuleFromSpec) lItemDict = {"ModuleNameStr": lModuleNameStr, "PyPathStr": lPyPathItemStr, "Module": lTechModuleFromSpec} - if lL: lL.info(f"Py module {lModuleNameStr} has been successfully initialized.") + if lL: lL.info(f"Модуль .py {lModuleNameStr} был успешно инициализирован") inResultDict[lModuleNameStr]=lItemDict # Backward compatibility to call def with gsettings when init if inDefStr is not None and inDefStr != "": @@ -775,10 +775,10 @@ def OrchestratorSessionSave(inGSettings=None): with open('_SessionLast_GSettings.pickle', 'wb') as lFile: pickle.dump(lDumpDict, lFile) if lL: lL.info( - f"Orchestrator has dump the GSettings (new dump mode from v1.2.7) before the restart.") + f"Оркестратор сохранил в рабочую директорию список РДП соединений и словарь DataStorage. При следующем запуске оркестратора информация востановится с диска") except Exception as e: - if lL: lL.exception(f"Exception when dump data before restart the Orchestrator") + if lL: lL.exception(f"Произошла ошибка при сохранении данных в файл") return True def OrchestratorSessionRestore(inGSettings=None): @@ -1080,7 +1080,7 @@ def WebAuditMessageCreate(inRequest=None, inOperationCodeStr="-", inMessageStr=" lUserDict = WebUserInfoGet(inRequest=inRequest) lDomainUpperStr = lUserDict["DomainUpperStr"] lUserLoginStr = lUserDict["UserNameUpperStr"] - lResultStr = f"WebAudit :: {lDomainUpperStr}\\\\{lUserLoginStr}@{lClientIPStr} :: {inOperationCodeStr} :: {inMessageStr}" + lResultStr = f"ВебАудит :: {lDomainUpperStr}\\\\{lUserLoginStr}@{lClientIPStr} :: {inOperationCodeStr} :: {inMessageStr}" except Exception as e: print(str(e)) # Has no logger - must be dead alg branch lResultStr = inMessageStr @@ -1621,7 +1621,7 @@ def ActivityItemDefAliasModulesLoad(): Загрузить все функции из импортированных модулей sys.modules в ActivityItem синонимы - полезно для отладки со стороны панели управления. """ lL = OrchestratorLoggerGet() - lL.info(f"ActivityItem aliases: start to load sys.modules") + lL.info(f"Синонимы функций: старт инициализации sys.modules") lSysModulesSnapshot = copy.copy(sys.modules) # Actual when start from jupyter for lModuleItemStr in lSysModulesSnapshot: lModuleItem = lSysModulesSnapshot[lModuleItemStr] @@ -1632,7 +1632,7 @@ def ActivityItemDefAliasModulesLoad(): ActivityItemDefAliasCreate(inDef=lDefItem, inAliasStr=f"{lModuleItemStr}.{lDefItemStr}") except ModuleNotFoundError: pass - lL.info(f"ActivityItem aliases: finish to load sys.modules") + lL.info(f"Синонимы функций: окончание инициализации sys.modules") def ActivityItemDefAliasUpdate(inDef, inAliasStr, inGSettings = None): """ @@ -2017,7 +2017,7 @@ def ProcessDefIntervalCall(inDef, inIntervalSecFloat, inIntervalAsyncBool=False, else: # Internal def to execute periodically def __Execute__(inGSettings, inDef, inIntervalSecFloat, inIntervalAsyncBool, inDefArgList, inDefArgDict, inLogger, inDefArgGSettingsNameStr, inDefArgLoggerNameStr): - if inLogger: inLogger.info(f"__Orchestrator__.ProcessDefIntervalCall: Interval execution has been started. Def: {str(inDef)}") + if inLogger: inLogger.info(f"__Orchestrator__.ProcessDefIntervalCall: вызов функции по циклу инициализирован. Функция: {str(inDef)}") # Prepare gSettings and logger args if inDefArgGSettingsNameStr is not None: inDefArgDict[inDefArgGSettingsNameStr] = inGSettings @@ -2790,7 +2790,6 @@ def Orchestrator(inGSettings=None, inDumpRestoreBool = True, inRunAsAdministrato #Logger alias lL = gSettingsDict["Logger"] - if lL: lL.info("Link the gSettings in submodules") #Logging Processor.gSettingsDict = gSettingsDict Timer.gSettingsDict = gSettingsDict Timer.Processor.gSettingsDict = gSettingsDict @@ -2849,26 +2848,26 @@ def Orchestrator(inGSettings=None, inDumpRestoreBool = True, inRunAsAdministrato lRobotScreenActiveThread = threading.Thread(target= Monitor.CheckScreen) lRobotScreenActiveThread.daemon = True # Run the thread in daemon mode. lRobotScreenActiveThread.start() # Start the thread execution. - if lL: lL.info("Robot Screen active has been started") #Logging + if lL: lL.info("Модуль активного рабочего стола инициализирован") #Logging # Init the RobotRDPActive in another thread lRobotRDPThreadControlDict = {"ThreadExecuteBool":True} # inThreadControlDict = {"ThreadExecuteBool":True} lRobotRDPActiveThread = threading.Thread(target= RobotRDPActive.RobotRDPActive, kwargs={"inGSettings":gSettingsDict, "inThreadControlDict":lRobotRDPThreadControlDict}) lRobotRDPActiveThread.daemon = True # Run the thread in daemon mode. lRobotRDPActiveThread.start() # Start the thread execution. - if lL: lL.info("Robot RDP active has been started") #Logging + if lL: lL.info("Модуль подключения по РДП инициализированн") #Logging # Init autocleaner in another thread lAutocleanerThread = threading.Thread(target= GSettingsAutocleaner, kwargs={"inGSettings":gSettingsDict}) lAutocleanerThread.daemon = True # Run the thread in daemon mode. lAutocleanerThread.start() # Start the thread execution. - if lL: lL.info("Autocleaner thread has been started") #Logging + if lL: lL.info("Модуль автоочистки инициализирован") #Logging # Set flag that orchestrator has been initialized inGSettings["HiddenIsOrchestratorInitializedBool"] = True # Orchestrator start activity - if lL: lL.info("Orchestrator start activity run") #Logging + if lL: lL.info("Исполнение списка Активностей") #Logging for lActivityItem in gSettingsDict["OrchestratorStart"]["ActivityList"]: # Processor.ActivityListOrDict(lActivityItem) Processor.ActivityListExecute(inGSettings=gSettingsDict,inActivityList=[BackwardCompatibility.v1_2_0_ProcessorOld2NewActivityDict(lActivityItem)]) @@ -2876,25 +2875,25 @@ def Orchestrator(inGSettings=None, inDumpRestoreBool = True, inRunAsAdministrato lProcessorThread = threading.Thread(target= Processor.ProcessorRunSync, kwargs={"inGSettings":gSettingsDict, "inRobotRDPThreadControlDict":lRobotRDPThreadControlDict}) lProcessorThread.daemon = True # Run the thread in daemon mode. lProcessorThread.start() # Start the thread execution. - if lL: lL.info("Processor has been started (ProcessorDict)") #Logging + if lL: lL.info("Модуль процессора инициализирован") #Logging # Processor monitor thread lProcessorMonitorThread = threading.Thread(target= Processor.ProcessorMonitorRunSync, kwargs={"inGSettings":gSettingsDict}) lProcessorMonitorThread.daemon = True # Run the thread in daemon mode. lProcessorMonitorThread.start() # Start the thread execution. - if lL: lL.info("Processor monitor has been started") #Logging + if lL: lL.info("Модуль контроля процессора инициализирован") #Logging # Scheduler loop lSchedulerThread = threading.Thread(target= __deprecated_orchestrator_loop__) lSchedulerThread.daemon = True # Run the thread in daemon mode. lSchedulerThread.start() # Start the thread execution. - if lL: lL.info("Scheduler (old) loop start") #Logging + if lL: lL.info("Модуль расписания (старая версия) инициализирован") #Logging # Schedule (new) loop lScheduleThread = threading.Thread(target= __schedule_loop__) lScheduleThread.daemon = True # Run the thread in daemon mode. lScheduleThread.start() # Start the thread execution. - if lL: lL.info("Schedule module (new) loop start") #Logging + if lL: lL.info("Модуль расписания (новая версия) инициализирован") #Logging # Restore state for process for lProcessKeyTuple in inGSettings["ManagersProcessDict"]: @@ -2968,7 +2967,7 @@ def __deprecated_orchestrator_loop__(): lCurrentDateTime >= lActivityDateTime): # Log info about activity if lL: lL.info( - f"Scheduler:: Activity list is started in new thread. Parameters are not available to see.") # Logging + f"Модуль расписания (старая версия):: Активность была инициализирована в отдельном потоке. В целях информационной безопасности параметры недоступны для просмотра") # Logging # Do the activity lThread = threading.Thread(target=Processor.ActivityListExecute, kwargs={"inGSettings": inGSettings, @@ -2977,12 +2976,12 @@ def __deprecated_orchestrator_loop__(): lIterationLastDateTime = datetime.datetime.now() # Set the new datetime for the new processor activity except Exception as e: if lL: lL.exception( - f"Scheduler: Exception has been catched in Scheduler module when activity time item was initialising. ActivityTimeItem is {lItem}") + f"Модуль расписания (старая версия): Ошибка. Элемент ActivityTimeItem: {lItem}") lDaemonLastDateTime = lIterationLastDateTime # Set the new datetime for the new processor activity # Уснуть до следующего прогона time.sleep(lDaemonLoopSeconds) except Exception as e: - if lL: lL.exception(f"Scheduler: Exception has been catched in Scheduler module. Global error") + if lL: lL.exception(f"Модуль расписания (старая версия): Глобальная ошибка инициализации - обратитесь в тех. поддержку pyOpenRPA") # Backward compatibility below to 1.2.0 def __deprecated_orchestrator_start__(): diff --git a/Sources/pyOpenRPA/Studio/Studio.py b/Sources/pyOpenRPA/Studio/Studio.py index 3e379412..f15961f8 100644 --- a/Sources/pyOpenRPA/Studio/Studio.py +++ b/Sources/pyOpenRPA/Studio/Studio.py @@ -154,7 +154,7 @@ def run(): server_address = (inServerAddress, inPort) httpd = HTTPServer(server_address, testHTTPServer_RequestHandler) # Logging - gSettingsDict["Logger"].info(f"Server init. Listen URL: {inServerAddress}, Listen port: {inPort}") + gSettingsDict["Logger"].info(f"Сервер:: Прослушиваемый URL: {inServerAddress}, Прослушиваемый порт: {inPort}") # Запуск адреса в браузере os.system(f"explorer http://127.0.0.1:{str(inPort)}") Usage.Process(inComponentStr="Studio") diff --git a/Sources/pyOpenRPA/Tools/RobotDB/Server.py b/Sources/pyOpenRPA/Tools/RobotDB/Server.py index 75740665..adabd39b 100644 --- a/Sources/pyOpenRPA/Tools/RobotDB/Server.py +++ b/Sources/pyOpenRPA/Tools/RobotDB/Server.py @@ -285,7 +285,7 @@ class testHTTPServer_RequestHandler(BaseHTTPRequestHandler): if not lAuthenticateDict["User"]: lFlagAccessUserBlock=True # Logging - gSettingsDict["Logger"].info(f"HTTP request /. Domain: {lAuthenticateDict['Domain']}, User: {lAuthenticateDict['User']}") + gSettingsDict["Logger"].info(f"HTTP запросот пользователя: Домен: {lAuthenticateDict['Domain']}, Логин: {lAuthenticateDict['User']}") if lFlagAccessUserBlock: AuthenticateBlock(self) ##################################### @@ -389,7 +389,7 @@ class RobotDaemonServer(Thread): server_address = (inServerAddress, inPort) #httpd = HTTPServer(server_address, testHTTPServer_RequestHandler) # Logging - gSettingsDict["Logger"].info(f"Server init. Listen URL: {inServerAddress}, Listen port: {inPort}") + gSettingsDict["Logger"].info(f"Сервер:: Слушает сетевую карту: {inServerAddress}, Слушает порт: {inPort}") #httpd.serve_forever() httpd = ThreadedHTTPServer(server_address, testHTTPServer_RequestHandler) #print('Starting server, use to stop') diff --git a/Sources/pyOpenRPA/Tools/StopSafe.py b/Sources/pyOpenRPA/Tools/StopSafe.py index 8b350cf4..d7ba3d2c 100644 --- a/Sources/pyOpenRPA/Tools/StopSafe.py +++ b/Sources/pyOpenRPA/Tools/StopSafe.py @@ -26,7 +26,7 @@ def Init(inLogger=None): gIsSignalCloseBool = False # Init default gLogger = inLogger import threading - if gLogger: gLogger.info(f"StopSafe: Init termination catch thread") + if gLogger: gLogger.info(f"Безопасная остановка: получен сигнал безопасной остановки") shutdown_thread = threading.Thread(target=_shutdown_monitor) shutdown_thread.start() #shutdown_thread.join() @@ -62,5 +62,5 @@ def _shutdown_monitor(): win32gui.PumpMessages() gIsSignalCloseBool = True # WM_CLOSE message has come if gLogger: - gLogger.info(f"StopSafe: Program has catch VM_CLOSE signal - do safe exit") + gLogger.info(f"Безопасная остановка: Получен сигнал безопасной остановки (VM_CLOSE) - выполнить остановку") diff --git a/Wiki/RUS_Guide/doctrees/Orchestrator/02_Defs.doctree b/Wiki/RUS_Guide/doctrees/Orchestrator/02_Defs.doctree index 7b6ee3a3..37ac9bb5 100644 Binary files a/Wiki/RUS_Guide/doctrees/Orchestrator/02_Defs.doctree and b/Wiki/RUS_Guide/doctrees/Orchestrator/02_Defs.doctree differ diff --git a/Wiki/RUS_Guide/doctrees/Orchestrator/03_gSettingsTemplate.doctree b/Wiki/RUS_Guide/doctrees/Orchestrator/03_gSettingsTemplate.doctree index 338b3280..13aa7c77 100644 Binary files a/Wiki/RUS_Guide/doctrees/Orchestrator/03_gSettingsTemplate.doctree and b/Wiki/RUS_Guide/doctrees/Orchestrator/03_gSettingsTemplate.doctree differ diff --git a/Wiki/RUS_Guide/doctrees/Orchestrator/04_HowToUse.doctree b/Wiki/RUS_Guide/doctrees/Orchestrator/04_HowToUse.doctree index 37a4eb40..411b2c4f 100644 Binary files a/Wiki/RUS_Guide/doctrees/Orchestrator/04_HowToUse.doctree and b/Wiki/RUS_Guide/doctrees/Orchestrator/04_HowToUse.doctree differ diff --git a/Wiki/RUS_Guide/doctrees/environment.pickle b/Wiki/RUS_Guide/doctrees/environment.pickle index b9e4956d..fecdd802 100644 Binary files a/Wiki/RUS_Guide/doctrees/environment.pickle and b/Wiki/RUS_Guide/doctrees/environment.pickle differ diff --git a/Wiki/RUS_Guide/html/.buildinfo b/Wiki/RUS_Guide/html/.buildinfo index 0b191ece..0f8e7c5c 100644 --- a/Wiki/RUS_Guide/html/.buildinfo +++ b/Wiki/RUS_Guide/html/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 25c44f317407aca24634d158c647e585 +config: 909fd36f832414fdc07bc80b4bfebf8b tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/Wiki/RUS_Guide/html/01_HowToInstall.html b/Wiki/RUS_Guide/html/01_HowToInstall.html index 3e564656..302f4063 100644 --- a/Wiki/RUS_Guide/html/01_HowToInstall.html +++ b/Wiki/RUS_Guide/html/01_HowToInstall.html @@ -5,6 +5,25 @@ + + + + + + + + 1. Первый запуск (Windows & Linux) — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/03_Copyrights_Contacts.html b/Wiki/RUS_Guide/html/03_Copyrights_Contacts.html index 18cdee0f..64c8b177 100644 --- a/Wiki/RUS_Guide/html/03_Copyrights_Contacts.html +++ b/Wiki/RUS_Guide/html/03_Copyrights_Contacts.html @@ -5,6 +5,25 @@ + + + + + + + + 2. Лицензия & Контакты — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Agent/02_Defs.html b/Wiki/RUS_Guide/html/Agent/02_Defs.html index 310aebb5..8a5e011a 100644 --- a/Wiki/RUS_Guide/html/Agent/02_Defs.html +++ b/Wiki/RUS_Guide/html/Agent/02_Defs.html @@ -5,6 +5,25 @@ + + + + + + + + 2. Функции — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Orchestrator/01_Orchestrator.html b/Wiki/RUS_Guide/html/Orchestrator/01_Orchestrator.html index d57c4055..d0539f9c 100644 --- a/Wiki/RUS_Guide/html/Orchestrator/01_Orchestrator.html +++ b/Wiki/RUS_Guide/html/Orchestrator/01_Orchestrator.html @@ -5,6 +5,25 @@ + + + + + + + + 1. Описание — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Orchestrator/02_Defs.html b/Wiki/RUS_Guide/html/Orchestrator/02_Defs.html index 7937d9d7..7133c34c 100644 --- a/Wiki/RUS_Guide/html/Orchestrator/02_Defs.html +++ b/Wiki/RUS_Guide/html/Orchestrator/02_Defs.html @@ -5,6 +5,25 @@ + + + + + + + + 2. Функции — документация pyOpenRPA v1.2.14 v1.2.14 @@ -340,175 +359,178 @@

OSRemotePCRestart(inHostStr[, inForceBool, …])

Отправить сигнал на удаленную перезагрузку операционной системы.

-

Orchestrator([inGSettings, …])

+

OSRestart([inForceBool, inLogger])

+

L+,W+: Отправить сигнал на перезагрузку операционной системы.

+ +

Orchestrator([inGSettings, …])

Инициализация ядра Оркестратора (всех потоков)

-

OrchestratorInitWait()

+

OrchestratorInitWait()

Ожидать инициализацию ядра Оркестратора

-

OrchestratorIsAdmin()

+

OrchestratorIsAdmin()

Проверить, запущен ли Оркестратор с правами администратора.

-

OrchestratorIsInited()

+

OrchestratorIsInited()

Проверить, было ли проинициализировано ядро Оркестратора

-

OrchestratorLoggerGet()

+

OrchestratorLoggerGet()

Получить логгер Оркестратора

-

OrchestratorPySearchInit(inGlobPatternStr[, …])

+

OrchestratorPySearchInit(inGlobPatternStr[, …])

Выполнить поиск и инициализацию пользовательских .py файлов в Оркестраторе (например панелей управления роботов)

-

OrchestratorRerunAsAdmin()

+

OrchestratorRerunAsAdmin()

Перезапустить Оркестратор с правами локального администратора.

-

OrchestratorRestart([inGSettings])

+

OrchestratorRestart([inGSettings])

Перезапуск Оркестратора с сохранением информации о запущенных RDP сессиях.

-

OrchestratorScheduleGet()

+

OrchestratorScheduleGet()

Базовый объект расписания, который можно использовать для запуска / остановки роботов.

-

OrchestratorSessionRestore([inGSettings])

+

OrchestratorSessionRestore([inGSettings])

Восстановить состояние Оркестратора, если ранее состояние Оркестратора было сохранено с помощью функции OrchestratorSessionSave:

-

OrchestratorSessionSave([inGSettings])

+

OrchestratorSessionSave([inGSettings])

Сохранить состояние Оркестратора (для дальнейшего восстановления в случае перезапуска):

-

OrchestratorThreadStart(inDef, *inArgList, …)

+

OrchestratorThreadStart(inDef, *inArgList, …)

Запустить функцию в отдельном потоке.

-

ProcessDefIntervalCall(inDef, inIntervalSecFloat)

+

ProcessDefIntervalCall(inDef, inIntervalSecFloat)

Периодический вызов функции Python.

-

ProcessIsStarted(inProcessNameWOExeStr)

+

ProcessIsStarted(inProcessNameWOExeStr)

Проверить, запущен ли процесс, который в наименовании содержит inProcessNameWOExeStr.

-

ProcessListGet([inProcessNameWOExeList])

+

ProcessListGet([inProcessNameWOExeList])

Вернуть список процессов, запущенных на ОС, где работает Оркестратор.

-

ProcessStart(inPathStr, inArgList[, …])

+

ProcessStart(inPathStr, inArgList[, …])

Запуск процесса на сессии Оркестратора, если на ОС не запущен процесс inStopProcessNameWOExeStr.

-

ProcessStop(inProcessNameWOExeStr, …[, …])

+

ProcessStop(inProcessNameWOExeStr, …[, …])

Остановить процесс на ОС, где работает Оркестратор, под учетной записью inUserNameStr.

-

ProcessorActivityItemAppend([inGSettings, …])

+

ProcessorActivityItemAppend([inGSettings, …])

Добавить активность (ActivityItem) в процессорную очередь.

-

ProcessorActivityItemCreate(inDef[, …])

+

ProcessorActivityItemCreate(inDef[, …])

Создать Активность (ActivityItem).

-

ProcessorAliasDefCreate(inDef[, inAliasStr, …])

+

ProcessorAliasDefCreate(inDef[, inAliasStr, …])

Создать синоним (текстовый ключ) для инициации выполнения функции в том случае, если запрос на выполнения пришел из вне (передача функций невозможна).

-

ProcessorAliasDefUpdate(inDef, inAliasStr[, …])

+

ProcessorAliasDefUpdate(inDef, inAliasStr[, …])

Обновить синоним (текстовый ключ) для инициации выполнения функции в том случае, если запрос на выполнения пришел из вне (передача функций невозможна).

-

PythonStart(inModulePathStr, inDefNameStr[, …])

+

PythonStart(inModulePathStr, inDefNameStr[, …])

Импорт модуля и выполнение функции в процессе Оркестратора.

-

RDPSessionCMDRun(inRDPSessionKeyStr, inCMDStr)

+

RDPSessionCMDRun(inRDPSessionKeyStr, inCMDStr)

Отправить CMD команду на удаленную сесиию через RDP окно (без Агента).

-

RDPSessionConnect(inRDPSessionKeyStr[, …])

+

RDPSessionConnect(inRDPSessionKeyStr[, …])

Выполнить подключение к RDP и следить за стабильностью соединения со стороны Оркестратора.

-

RDPSessionDisconnect(inRDPSessionKeyStr[, …])

+

RDPSessionDisconnect(inRDPSessionKeyStr[, …])

Выполнить отключение RDP сессии и прекратить мониторить его активность.

-

RDPSessionFileStoredRecieve(…[, inGSettings])

+

RDPSessionFileStoredRecieve(…[, inGSettings])

Получение файла со стороны RDP сессии на сторону Оркестратора через UI инструменты RDP окна (без Агента).

-

RDPSessionFileStoredSend(inRDPSessionKeyStr, …)

+

RDPSessionFileStoredSend(inRDPSessionKeyStr, …)

Отправка файла со стороны Оркестратора на сторону RDP сессии через UI инструменты RDP окна (без Агента).

-

RDPSessionLogoff(inRDPSessionKeyStr[, …])

+

RDPSessionLogoff(inRDPSessionKeyStr[, …])

Выполнить отключение (logoff) на RDP сессии и прекратить мониторить активность со стороны Оркестратора.

-

RDPSessionMonitorStop(inRDPSessionKeyStr[, …])

+

RDPSessionMonitorStop(inRDPSessionKeyStr[, …])

Прекратить мониторить активность RDP соединения со стороны Оркестратора.

-

RDPSessionProcessStartIfNotRunning(…[, …])

+

RDPSessionProcessStartIfNotRunning(…[, …])

Выполнить запуск процесса на RDP сессии через графические UI инструменты (без Агента).

-

RDPSessionProcessStop(inRDPSessionKeyStr, …)

+

RDPSessionProcessStop(inRDPSessionKeyStr, …)

Отправка CMD команды в RDP окне на остановку процесса (без Агента).

-

RDPSessionReconnect(inRDPSessionKeyStr[, …])

+

RDPSessionReconnect(inRDPSessionKeyStr[, …])

Выполнить переподключение RDP сессии и продолжить мониторить его активность.

-

RDPTemplateCreate(inLoginStr, inPasswordStr)

+

RDPTemplateCreate(inLoginStr, inPasswordStr)

Создать шаблон подключения RDP (dict).

-

SchedulerActivityTimeAddWeekly([…])

+

SchedulerActivityTimeAddWeekly([…])

Добавить активность по расписанию.

-

StorageRobotExists(inRobotNameStr)

+

StorageRobotExists(inRobotNameStr)

Проверить, существует ли ключ inRobotNameStr в хранилище пользовательской информации StorageDict (GSettings > StarageDict)

-

StorageRobotGet(inRobotNameStr)

+

StorageRobotGet(inRobotNameStr)

Получить содержимое по ключу робота inRobotNameStr в хранилище пользовательской информации StorageDict (GSettings > StarageDict)

-

UACKeyListCheck(inRequest, inRoleKeyList)

+

UACKeyListCheck(inRequest, inRoleKeyList)

Проверить права доступа для пользователя запроса по списку ключей до права.

-

UACSuperTokenUpdate(inSuperTokenStr[, …])

+

UACSuperTokenUpdate(inSuperTokenStr[, …])

Добавить супертокен (полный доступ).

-

UACUpdate(inADLoginStr[, inADStr, …])

+

UACUpdate(inADLoginStr[, inADStr, …])

Дообогащение словаря доступа UAC пользователя inADStrinADLoginStr.

-

UACUserDictGet(inRequest)

+

UACUserDictGet(inRequest)

Вернуть UAC (User Access Control) словарб доступов для пользователя, который отправил запрос.

-

WebAuditMessageCreate([inRequest, …])

+

WebAuditMessageCreate([inRequest, …])

Создание сообщения ИТ аудита с такими сведениями как (Домен, IP, логин и тд.).

-

WebCPUpdate(inCPKeyStr[, inHTMLRenderDef, …])

+

WebCPUpdate(inCPKeyStr[, inHTMLRenderDef, …])

Добавить панель управления робота в Оркестратор.

-

WebListenCreate([inServerKeyStr, …])

+

WebListenCreate([inServerKeyStr, …])

Настроить веб-сервер Оркестратора.

-

WebRequestGet()

+

WebRequestGet()

Вернуть экземпляр HTTP запроса, если функция вызвана в потоке, который был порожден для отработки HTTP запроса пользователя.

-

WebRequestParseBodyBytes([inRequest])

+

WebRequestParseBodyBytes([inRequest])

Извлечь данные в байт виде из тела (body) HTTP запроса.

-

WebRequestParseBodyJSON([inRequest])

+

WebRequestParseBodyJSON([inRequest])

Извлечь из тела (body) запроса HTTP JSON данные и преобразовать в Dict / List структуры языка Python.

-

WebRequestParseBodyStr([inRequest])

+

WebRequestParseBodyStr([inRequest])

Извлечь данные в виде строки из тела (body) HTTP запроса.

-

WebRequestParseFile([inRequest])

+

WebRequestParseFile([inRequest])

Извлечь файл (наименование + содержимое в виде строки байт b““) из HTTP запроса пользователя.

-

WebRequestParsePath([inRequest])

+

WebRequestParsePath([inRequest])

Извлечь декодированный URL путь из HTTP запроса пользователя в формате строки.

-

WebRequestResponseSend(inResponeStr[, …])

+

WebRequestResponseSend(inResponeStr[, …])

Установить ответ на HTTP запрос пользователя.

-

WebURLConnectDef(inMethodStr, inURLStr, …)

+

WebURLConnectDef(inMethodStr, inURLStr, …)

Подключить функцию Python к URL.

-

WebURLConnectFile(inMethodStr, inURLStr, …)

+

WebURLConnectFile(inMethodStr, inURLStr, …)

Подключить файл к URL.

-

WebURLConnectFolder(inMethodStr, inURLStr, …)

+

WebURLConnectFolder(inMethodStr, inURLStr, …)

Подключить папку к URL.

-

WebURLIndexChange([inURLIndexStr])

+

WebURLIndexChange([inURLIndexStr])

Изменить адрес главной страницы Оркестратора.

-

WebUserInfoGet([inRequest])

+

WebUserInfoGet([inRequest])

Информация о пользователе, который отправил HTTP запрос.

-

WebUserIsSuperToken([inRequest, inGSettings])

+

WebUserIsSuperToken([inRequest, inGSettings])

Проверить, авторизован ли HTTP запрос с помощью супер токена (токен, который не истекает).

-

WebUserUACHierarchyGet([inRequest])

+

WebUserUACHierarchyGet([inRequest])

Вернуть словарь доступа UAC в отношении пользователя, который выполнил HTTP запрос inRequest

@@ -1169,6 +1191,24 @@ +
+
+pyOpenRPA.Orchestrator.__Orchestrator__.OSRestart(inForceBool=True, inLogger=None)[исходный код]
+

L+,W+: Отправить сигнал на перезагрузку операционной системы.

+

!ВНИМАНИЕ! Перезапуск будет принят, если учетная запись имеет полномочия на перезапуск на соответсвующей машине.

+
+
Параметры
+
    +
  • inForceBool – True - принудительная перезагрузка; False - мягкая перезагрузка (дождаться окончания выполнения всех операций). По умолчанию True

  • +
  • inLogger – Логгер, в который отправлять информацию о результате выполнения команды

  • +
+
+
Результат
+

+
+
+
+
pyOpenRPA.Orchestrator.__Orchestrator__.Orchestrator(inGSettings=None, inDumpRestoreBool=True, inRunAsAdministratorBool=True)[исходный код]
diff --git a/Wiki/RUS_Guide/html/Orchestrator/03_gSettingsTemplate.html b/Wiki/RUS_Guide/html/Orchestrator/03_gSettingsTemplate.html index d7f39d5d..7ffb26d4 100644 --- a/Wiki/RUS_Guide/html/Orchestrator/03_gSettingsTemplate.html +++ b/Wiki/RUS_Guide/html/Orchestrator/03_gSettingsTemplate.html @@ -5,6 +5,25 @@ + + + + + + + + 3. Настройки GSettings (шаблон) — документация pyOpenRPA v1.2.14 v1.2.14 @@ -546,7 +565,7 @@ lL.setLevel(logging.INFO) # create the logging file handler mRobotLoggerFH = logging.FileHandler( - "Reports\\" + datetime.datetime.now().strftime("%Y_%m_%d") + ".log") + os.path.normpath("Reports\\" + datetime.datetime.now().strftime("%Y_%m_%d") + ".log")) mRobotLoggerFormatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s') mRobotLoggerFH.setFormatter(mRobotLoggerFormatter) # add handler to logger object diff --git a/Wiki/RUS_Guide/html/Orchestrator/04_HowToUse.html b/Wiki/RUS_Guide/html/Orchestrator/04_HowToUse.html index 5f291593..2c8aadf9 100644 --- a/Wiki/RUS_Guide/html/Orchestrator/04_HowToUse.html +++ b/Wiki/RUS_Guide/html/Orchestrator/04_HowToUse.html @@ -5,6 +5,25 @@ + + + + + + + + 4. Как использовать? — документация pyOpenRPA v1.2.14 v1.2.14 @@ -217,51 +236,6 @@

Параметры настройки

Также вы можете выполнить более тонкую настройку параметров Оркестратора. Ниже пример такой настройки:

-
import psutil, datetime, logging, os, sys
-
-
-# Config settings
-lPyOpenRPASourceFolderPathStr = (r"../Sources") # Path for test pyOpenRPA package
-
-# Operations
-if lPyOpenRPASourceFolderPathStr != "": sys.path.insert(0,os.path.abspath(os.path.join(lPyOpenRPASourceFolderPathStr))) # Path for test pyOpenRPA package
-
-
-# Start import after config the pyOpenRPA folder
-from pyOpenRPA.Orchestrator import SettingsTemplate # Import functionallity
-from pyOpenRPA.Tools import CrossOS
-from pyOpenRPA import Orchestrator  # Import orchestrator main
-#Run as administrator
-if not Orchestrator.OrchestratorIsAdmin():
-    Orchestrator.OrchestratorRerunAsAdmin()
-    print(f"Orchestrator will be run as administrator!")
-else:
-    gSettings = Orchestrator.GSettingsGet()
-    #gSettings = SettingsTemplate.Create(inModeStr="BASIC") # Create GSettings with basic configuration - no more config is available from the box - you can create own
-    Orchestrator.OrchestratorLoggerGet().setLevel(logging.INFO)
-    # TEST Add User ND - Add Login ND to superuser of the Orchestrator
-    lUACClientDict = SettingsTemplate.__UACClientAdminCreate__()
-    Orchestrator.UACUpdate(inGSettings=gSettings, inADLoginStr="ND", inADStr="", inADIsDefaultBool=True, inURLList=[], inRoleHierarchyAllowedDict=lUACClientDict)
-    # TEST Add User IMaslov - Add Login IMaslov to superuser of the Orchestrator
-    Orchestrator.UACUpdate(inGSettings=gSettings, inADLoginStr="IMaslov", inADStr="", inADIsDefaultBool=True, inURLList=[])
-    # TEST Add Supertoken for the all access between robots
-    Orchestrator.UACSuperTokenUpdate(inGSettings=gSettings, inSuperTokenStr="1992-04-03-0643-ru-b4ff-openrpa52zzz")
-    # Add first interface!
-    if CrossOS.IS_WINDOWS_BOOL:
-        Orchestrator.WebListenCreate(inGSettings=gSettings)
-    if CrossOS.IS_LINUX_BOOL:
-        Orchestrator.WebListenCreate(inGSettings=gSettings, inPortInt=1024)
-    # Restore DUMP
-    Orchestrator.OrchestratorSessionRestore(inGSettings=gSettings)
-    # Autoinit control panels starts with CP_
-    lPyModules = Orchestrator.OrchestratorPySearchInit(inGlobPatternStr="ControlPanel\\CP_*.py", inDefStr="SettingsUpdate", inDefArgNameGSettingsStr="inGSettings", inAsyncInitBool=True)
-    # Call the orchestrator def
-    Orchestrator.Orchestrator(inGSettings=gSettings, inDumpRestoreBool=False)
-
-
-
-
-

Быстрая навигация

diff --git a/Wiki/RUS_Guide/html/Orchestrator/05_UAC.html b/Wiki/RUS_Guide/html/Orchestrator/05_UAC.html index a9c6f790..35ced374 100644 --- a/Wiki/RUS_Guide/html/Orchestrator/05_UAC.html +++ b/Wiki/RUS_Guide/html/Orchestrator/05_UAC.html @@ -5,6 +5,25 @@ + + + + + + + + 5. Права доступа пользователей UAC — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Robot/01_Robot.html b/Wiki/RUS_Guide/html/Robot/01_Robot.html index 6edc5b1c..104a50b3 100644 --- a/Wiki/RUS_Guide/html/Robot/01_Robot.html +++ b/Wiki/RUS_Guide/html/Robot/01_Robot.html @@ -5,6 +5,25 @@ + + + + + + + + 1. Описание — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Robot/02_uidesktop.html b/Wiki/RUS_Guide/html/Robot/02_uidesktop.html index 7c4cd7cc..2e84de71 100644 --- a/Wiki/RUS_Guide/html/Robot/02_uidesktop.html +++ b/Wiki/RUS_Guide/html/Robot/02_uidesktop.html @@ -5,6 +5,25 @@ + + + + + + + + 2. Функции UIDesktop — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Robot/03_uiweb.html b/Wiki/RUS_Guide/html/Robot/03_uiweb.html index 20757abb..fb73f941 100644 --- a/Wiki/RUS_Guide/html/Robot/03_uiweb.html +++ b/Wiki/RUS_Guide/html/Robot/03_uiweb.html @@ -5,6 +5,25 @@ + + + + + + + + 3. Функции UIWeb — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Robot/04_keyboard.html b/Wiki/RUS_Guide/html/Robot/04_keyboard.html index 4a3c1ed4..0eb54721 100644 --- a/Wiki/RUS_Guide/html/Robot/04_keyboard.html +++ b/Wiki/RUS_Guide/html/Robot/04_keyboard.html @@ -5,6 +5,25 @@ + + + + + + + + 4. Функции Keyboard — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Robot/05_clipboard.html b/Wiki/RUS_Guide/html/Robot/05_clipboard.html index 313ad9e2..bc7e2580 100644 --- a/Wiki/RUS_Guide/html/Robot/05_clipboard.html +++ b/Wiki/RUS_Guide/html/Robot/05_clipboard.html @@ -5,6 +5,25 @@ + + + + + + + + 5. Функции Clipboard — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Robot/06_mouse.html b/Wiki/RUS_Guide/html/Robot/06_mouse.html index 48b9d7eb..dde80e27 100644 --- a/Wiki/RUS_Guide/html/Robot/06_mouse.html +++ b/Wiki/RUS_Guide/html/Robot/06_mouse.html @@ -5,6 +5,25 @@ + + + + + + + + 6. Функции Mouse — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Robot/07_screen.html b/Wiki/RUS_Guide/html/Robot/07_screen.html index 5ce76ad6..32d27306 100644 --- a/Wiki/RUS_Guide/html/Robot/07_screen.html +++ b/Wiki/RUS_Guide/html/Robot/07_screen.html @@ -5,6 +5,25 @@ + + + + + + + + 7. Функции Screen — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Robot/08_HowToUse.html b/Wiki/RUS_Guide/html/Robot/08_HowToUse.html index acd91174..40c7c0fa 100644 --- a/Wiki/RUS_Guide/html/Robot/08_HowToUse.html +++ b/Wiki/RUS_Guide/html/Robot/08_HowToUse.html @@ -5,6 +5,25 @@ + + + + + + + + 8. Как использовать? — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Studio/01_Studio.html b/Wiki/RUS_Guide/html/Studio/01_Studio.html index 74769f36..0eff1f1d 100644 --- a/Wiki/RUS_Guide/html/Studio/01_Studio.html +++ b/Wiki/RUS_Guide/html/Studio/01_Studio.html @@ -5,6 +5,25 @@ + + + + + + + + 1. Описание — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Studio/02_HowToUse.html b/Wiki/RUS_Guide/html/Studio/02_HowToUse.html index 2762c562..106157bd 100644 --- a/Wiki/RUS_Guide/html/Studio/02_HowToUse.html +++ b/Wiki/RUS_Guide/html/Studio/02_HowToUse.html @@ -5,6 +5,25 @@ + + + + + + + + 2. Как использовать? — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/Tools/02_Defs.html b/Wiki/RUS_Guide/html/Tools/02_Defs.html index c9915b9d..e2d9bb14 100644 --- a/Wiki/RUS_Guide/html/Tools/02_Defs.html +++ b/Wiki/RUS_Guide/html/Tools/02_Defs.html @@ -5,6 +5,25 @@ + + + + + + + + 2. Функции StopSafe — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/_modules/index.html b/Wiki/RUS_Guide/html/_modules/index.html index 5990612e..415bed35 100644 --- a/Wiki/RUS_Guide/html/_modules/index.html +++ b/Wiki/RUS_Guide/html/_modules/index.html @@ -5,6 +5,25 @@ + + + + + + + + Обзор: исходный код модуля — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Agent/__Agent__.html b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Agent/__Agent__.html index 699aa760..903c55c3 100644 --- a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Agent/__Agent__.html +++ b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Agent/__Agent__.html @@ -5,6 +5,25 @@ + + + + + + + + pyOpenRPA.Agent.__Agent__ — документация pyOpenRPA v1.2.14 v1.2.14 @@ -193,7 +212,10 @@ from . import Processor # Processor Queue from ..Tools import Usage from ..Tools import License -from subprocess import CREATE_NEW_CONSOLE # Flag to create new process in another CMD +from pyOpenRPA.Tools import CrossOS +if CrossOS.IS_WINDOWS_BOOL: from subprocess import CREATE_NEW_CONSOLE # Flag to create new process in another CMD +if CrossOS.IS_LINUX_BOOL: pass + import os gSettings = None @@ -332,8 +354,11 @@ if inCaptureBool == True: lCMDProcess = subprocess.Popen(f'cmd /c {inCMDStr}', stdout=subprocess.PIPE, stderr=subprocess.STDOUT) else: - lCMDProcess = subprocess.Popen(f'cmd /c {inCMDStr}', stdout=None, stderr=None, - creationflags=CREATE_NEW_CONSOLE) + if CrossOS.IS_WINDOWS_BOOL: + lCMDProcess = subprocess.Popen(f'cmd /c {inCMDStr}', stdout=None, stderr=None, + creationflags=CREATE_NEW_CONSOLE) + if CrossOS.IS_LINUX_BOOL: + lCMDProcess = subprocess.Popen(f'cmd /c {inCMDStr}', stdout=None, stderr=None) lListenBool = True lMessageStr = f"{lOSCMDKeyStr}: # # # # AGENT CMD Process has been STARTED # # # # " if lL: lL.info(lMessageStr) diff --git a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Orchestrator/__Orchestrator__.html b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Orchestrator/__Orchestrator__.html index 6abcb24f..500bda1d 100644 --- a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Orchestrator/__Orchestrator__.html +++ b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Orchestrator/__Orchestrator__.html @@ -5,6 +5,25 @@ + + + + + + + + pyOpenRPA.Orchestrator.__Orchestrator__ — документация pyOpenRPA v1.2.14 v1.2.14 @@ -683,6 +702,24 @@ if inForceBool == True: lCMDStr = lCMDStr + " -Force" OSCMD(inCMDStr=lCMDStr,inLogger=inLogger)
+
[документация]def OSRestart(inForceBool=True, inLogger = None): + """L+,W+: Отправить сигнал на перезагрузку операционной системы. + + !ВНИМАНИЕ! Перезапуск будет принят, если учетная запись имеет полномочия на перезапуск на соответсвующей машине. + + :param inForceBool: True - принудительная перезагрузка; False - мягкая перезагрузка (дождаться окончания выполнения всех операций). По умолчанию True + :param inLogger: Логгер, в который отправлять информацию о результате выполнения команды + :return: + """ + if inLogger is None: inLogger = OrchestratorLoggerGet() + if CrossOS.IS_WINDOWS_BOOL: + lCMDStr = f"shutdown -r" + if inForceBool == True: lCMDStr = lCMDStr + " -f" + elif CrossOS.IS_LINUX_BOOL: + lCMDStr = f"reboot" + if inForceBool == True: lCMDStr = lCMDStr + " -f" + OSCMD(inCMDStr=lCMDStr,inLogger=inLogger)
+
[документация]def OSCMD(inCMDStr, inRunAsyncBool=True, inLogger = None): """ Отправить команду на выполнение на сессию, где выполняется Оркестратор. diff --git a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Clipboard.html b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Clipboard.html index 93eec66f..435bd5eb 100644 --- a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Clipboard.html +++ b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Clipboard.html @@ -5,6 +5,25 @@ + + + + + + + + pyOpenRPA.Robot.Clipboard — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Keyboard.html b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Keyboard.html index 8302e9f5..40a72aed 100644 --- a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Keyboard.html +++ b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Keyboard.html @@ -5,6 +5,25 @@ + + + + + + + + pyOpenRPA.Robot.Keyboard — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Mouse.html b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Mouse.html index 3b4ec7e1..9c8fb998 100644 --- a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Mouse.html +++ b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Mouse.html @@ -5,6 +5,25 @@ + + + + + + + + pyOpenRPA.Robot.Mouse — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Screen.html b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Screen.html index 1904d859..68ba7e33 100644 --- a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Screen.html +++ b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/Screen.html @@ -5,6 +5,25 @@ + + + + + + + + pyOpenRPA.Robot.Screen — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/UIDesktop.html b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/UIDesktop.html index ea767a7d..954d185b 100644 --- a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/UIDesktop.html +++ b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/UIDesktop.html @@ -5,6 +5,25 @@ + + + + + + + + pyOpenRPA.Robot.UIDesktop — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/UIWeb.html b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/UIWeb.html index 1926497c..d81e07b7 100644 --- a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/UIWeb.html +++ b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Robot/UIWeb.html @@ -5,6 +5,25 @@ + + + + + + + + pyOpenRPA.Robot.UIWeb — документация pyOpenRPA v1.2.14 v1.2.14 @@ -213,7 +232,7 @@ from pyOpenRPA.Robot import UIWeb UIWeb.BrowserChromeStart() UIWeb.BrowserClose() - + :param inDriverExePathStr: Путь до компонента webdriver.exe, по умолчанию None (путь до webdriver.exe, который расположен в репозитории pyOpenRPA) :type inDriverExePathStr: str, опционально :param inChromeExePathStr:Путь до компонента chrome.exe, по умолчанию None (путь до chrome.exe, который расположен в репозитории pyOpenRPA) diff --git a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Tools/Debugger.html b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Tools/Debugger.html index d9d0bfec..3b157a44 100644 --- a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Tools/Debugger.html +++ b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Tools/Debugger.html @@ -5,6 +5,25 @@ + + + + + + + + pyOpenRPA.Tools.Debugger — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Tools/StopSafe.html b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Tools/StopSafe.html index f633ebdf..7dba7290 100644 --- a/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Tools/StopSafe.html +++ b/Wiki/RUS_Guide/html/_modules/pyOpenRPA/Tools/StopSafe.html @@ -5,6 +5,25 @@ + + + + + + + + pyOpenRPA.Tools.StopSafe — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/genindex.html b/Wiki/RUS_Guide/html/genindex.html index 6298cecd..1c5c5d93 100644 --- a/Wiki/RUS_Guide/html/genindex.html +++ b/Wiki/RUS_Guide/html/genindex.html @@ -5,6 +5,25 @@ + + + + + + + + Алфавитный указатель — документация pyOpenRPA v1.2.14 v1.2.14 @@ -429,10 +448,10 @@
  • OrchestratorSessionSave() (в модуле pyOpenRPA.Orchestrator.__Orchestrator__)
  • - - +
    • OSCMD() (в модуле pyOpenRPA.Agent.__Agent__) diff --git a/Wiki/RUS_Guide/html/index.html b/Wiki/RUS_Guide/html/index.html index 25b9ce2d..5cca09c3 100644 --- a/Wiki/RUS_Guide/html/index.html +++ b/Wiki/RUS_Guide/html/index.html @@ -5,6 +5,25 @@ + + + + + + + + Портал документации pyOpenRPA — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/objects.inv b/Wiki/RUS_Guide/html/objects.inv index e935c1c7..2f57f569 100644 Binary files a/Wiki/RUS_Guide/html/objects.inv and b/Wiki/RUS_Guide/html/objects.inv differ diff --git a/Wiki/RUS_Guide/html/py-modindex.html b/Wiki/RUS_Guide/html/py-modindex.html index 9d553ae1..f5686d32 100644 --- a/Wiki/RUS_Guide/html/py-modindex.html +++ b/Wiki/RUS_Guide/html/py-modindex.html @@ -5,6 +5,25 @@ + + + + + + + + Содержание модулей Python — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/search.html b/Wiki/RUS_Guide/html/search.html index 15578134..0ec0d454 100644 --- a/Wiki/RUS_Guide/html/search.html +++ b/Wiki/RUS_Guide/html/search.html @@ -5,6 +5,25 @@ + + + + + + + + Поиск — документация pyOpenRPA v1.2.14 v1.2.14 diff --git a/Wiki/RUS_Guide/html/searchindex.js b/Wiki/RUS_Guide/html/searchindex.js index b09a366b..74d21ea1 100644 --- a/Wiki/RUS_Guide/html/searchindex.js +++ b/Wiki/RUS_Guide/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["01_HowToInstall","03_Copyrights_Contacts","Agent/02_Defs","Orchestrator/01_Orchestrator","Orchestrator/02_Defs","Orchestrator/03_gSettingsTemplate","Orchestrator/04_HowToUse","Orchestrator/05_UAC","Robot/01_Robot","Robot/02_uidesktop","Robot/03_uiweb","Robot/04_keyboard","Robot/05_clipboard","Robot/06_mouse","Robot/07_screen","Robot/08_HowToUse","Studio/01_Studio","Studio/02_HowToUse","Tools/02_Defs","index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["01_HowToInstall.rst","03_Copyrights_Contacts.rst","Agent\\02_Defs.rst","Orchestrator\\01_Orchestrator.rst","Orchestrator\\02_Defs.rst","Orchestrator\\03_gSettingsTemplate.rst","Orchestrator\\04_HowToUse.rst","Orchestrator\\05_UAC.rst","Robot\\01_Robot.rst","Robot\\02_uidesktop.rst","Robot\\03_uiweb.rst","Robot\\04_keyboard.rst","Robot\\05_clipboard.rst","Robot\\06_mouse.rst","Robot\\07_screen.rst","Robot\\08_HowToUse.rst","Studio\\01_Studio.rst","Studio\\02_HowToUse.rst","Tools\\02_Defs.rst","index.rst"],objects:{"pyOpenRPA.Agent":{__Agent__:[2,0,0,"-"]},"pyOpenRPA.Agent.__Agent__":{OSCMD:[2,1,1,""],OSFileBinaryDataBase64StrAppend:[2,1,1,""],OSFileBinaryDataBase64StrCreate:[2,1,1,""],OSFileBinaryDataBase64StrReceive:[2,1,1,""],OSFileMTimeGet:[2,1,1,""],OSFileTextDataStrCreate:[2,1,1,""],OSFileTextDataStrReceive:[2,1,1,""],ProcessWOExeUpperUserListGet:[2,1,1,""]},"pyOpenRPA.Orchestrator":{__Orchestrator__:[4,0,0,"-"]},"pyOpenRPA.Orchestrator.__Orchestrator__":{ActivityItemCreate:[4,1,1,""],ActivityItemDefAliasCreate:[4,1,1,""],ActivityItemDefAliasModulesLoad:[4,1,1,""],ActivityItemDefAliasUpdate:[4,1,1,""],ActivityItemHelperDefAutofill:[4,1,1,""],ActivityItemHelperDefList:[4,1,1,""],AgentActivityItemAdd:[4,1,1,""],AgentActivityItemExists:[4,1,1,""],AgentActivityItemReturnExists:[4,1,1,""],AgentActivityItemReturnGet:[4,1,1,""],AgentOSCMD:[4,1,1,""],AgentOSFileBinaryDataBase64StrAppend:[4,1,1,""],AgentOSFileBinaryDataBase64StrCreate:[4,1,1,""],AgentOSFileBinaryDataBase64StrReceive:[4,1,1,""],AgentOSFileBinaryDataBytesCreate:[4,1,1,""],AgentOSFileBinaryDataReceive:[4,1,1,""],AgentOSFileSend:[4,1,1,""],AgentOSFileTextDataStrCreate:[4,1,1,""],AgentOSFileTextDataStrReceive:[4,1,1,""],AgentOSLogoff:[4,1,1,""],AgentProcessWOExeUpperUserListGet:[4,1,1,""],GSettingsGet:[4,1,1,""],GSettingsKeyListValueAppend:[4,1,1,""],GSettingsKeyListValueGet:[4,1,1,""],GSettingsKeyListValueOperatorPlus:[4,1,1,""],GSettingsKeyListValueSet:[4,1,1,""],OSCMD:[4,1,1,""],OSCredentialsVerify:[4,1,1,""],OSLogoff:[4,1,1,""],OSRemotePCRestart:[4,1,1,""],Orchestrator:[4,1,1,""],OrchestratorInitWait:[4,1,1,""],OrchestratorIsAdmin:[4,1,1,""],OrchestratorIsInited:[4,1,1,""],OrchestratorLoggerGet:[4,1,1,""],OrchestratorPySearchInit:[4,1,1,""],OrchestratorRerunAsAdmin:[4,1,1,""],OrchestratorRestart:[4,1,1,""],OrchestratorScheduleGet:[4,1,1,""],OrchestratorSessionRestore:[4,1,1,""],OrchestratorSessionSave:[4,1,1,""],OrchestratorThreadStart:[4,1,1,""],ProcessDefIntervalCall:[4,1,1,""],ProcessIsStarted:[4,1,1,""],ProcessListGet:[4,1,1,""],ProcessStart:[4,1,1,""],ProcessStop:[4,1,1,""],ProcessorActivityItemAppend:[4,1,1,""],ProcessorActivityItemCreate:[4,1,1,""],ProcessorAliasDefCreate:[4,1,1,""],ProcessorAliasDefUpdate:[4,1,1,""],PythonStart:[4,1,1,""],RDPSessionCMDRun:[4,1,1,""],RDPSessionConnect:[4,1,1,""],RDPSessionDisconnect:[4,1,1,""],RDPSessionFileStoredRecieve:[4,1,1,""],RDPSessionFileStoredSend:[4,1,1,""],RDPSessionLogoff:[4,1,1,""],RDPSessionMonitorStop:[4,1,1,""],RDPSessionProcessStartIfNotRunning:[4,1,1,""],RDPSessionProcessStop:[4,1,1,""],RDPSessionReconnect:[4,1,1,""],RDPTemplateCreate:[4,1,1,""],SchedulerActivityTimeAddWeekly:[4,1,1,""],StorageRobotExists:[4,1,1,""],StorageRobotGet:[4,1,1,""],UACKeyListCheck:[4,1,1,""],UACSuperTokenUpdate:[4,1,1,""],UACUpdate:[4,1,1,""],UACUserDictGet:[4,1,1,""],WebAuditMessageCreate:[4,1,1,""],WebCPUpdate:[4,1,1,""],WebListenCreate:[4,1,1,""],WebRequestGet:[4,1,1,""],WebRequestParseBodyBytes:[4,1,1,""],WebRequestParseBodyJSON:[4,1,1,""],WebRequestParseBodyStr:[4,1,1,""],WebRequestParseFile:[4,1,1,""],WebRequestParsePath:[4,1,1,""],WebRequestResponseSend:[4,1,1,""],WebURLConnectDef:[4,1,1,""],WebURLConnectFile:[4,1,1,""],WebURLConnectFolder:[4,1,1,""],WebURLIndexChange:[4,1,1,""],WebUserInfoGet:[4,1,1,""],WebUserIsSuperToken:[4,1,1,""],WebUserUACHierarchyGet:[4,1,1,""]},"pyOpenRPA.Robot":{Clipboard:[12,0,0,"-"],Keyboard:[11,0,0,"-"],Mouse:[13,0,0,"-"],Screen:[14,0,0,"-"],UIDesktop:[9,0,0,"-"],UIWeb:[10,0,0,"-"]},"pyOpenRPA.Robot.Clipboard":{Get:[12,1,1,""],Set:[12,1,1,""]},"pyOpenRPA.Robot.Keyboard":{"KEY_RUS_\u0416":[11,2,1,"pyOpenRPA.Robot.Keyboard.KEY_RUS_"],Down:[11,1,1,""],HotkeyCombination:[11,1,1,""],HotkeyCtrlA_CtrlC:[11,1,1,""],HotkeyCtrlV:[11,1,1,""],IsDown:[11,1,1,""],KEY_ENG_COLON:[11,2,1,""],KEY_HOT_COLON:[11,2,1,""],Send:[11,1,1,""],Up:[11,1,1,""],Wait:[11,1,1,""],Write:[11,1,1,""]},"pyOpenRPA.Robot.Mouse":{Click:[13,1,1,""],ClickDouble:[13,1,1,""],Down:[13,1,1,""],MoveTo:[13,1,1,""],ScrollHorizontal:[13,1,1,""],ScrollVertical:[13,1,1,""],Up:[13,1,1,""]},"pyOpenRPA.Robot.Screen":{BoxAnchorRuleCheck:[14,1,1,""],BoxCreate:[14,1,1,""],BoxDraw:[14,1,1,""],BoxGetPoint:[14,1,1,""],BoxModify:[14,1,1,""],BoxMoveTo:[14,1,1,""],BoxOverlay:[14,1,1,""],ImageClick:[14,1,1,""],ImageExists:[14,1,1,""],ImageLocateAll:[14,1,1,""],ImageWaitAppear:[14,1,1,""],ImageWaitDisappear:[14,1,1,""],PointClick:[14,1,1,""],PointClickDouble:[14,1,1,""],PointCreate:[14,1,1,""],PointDown:[14,1,1,""],PointModify:[14,1,1,""],PointMoveTo:[14,1,1,""],PointUp:[14,1,1,""]},"pyOpenRPA.Robot.UIDesktop":{BackendStr_GetTopLevelList_UIOInfo:[9,1,1,""],Get_OSBitnessInt:[9,1,1,""],PWASpecification_Get_PWAApplication:[9,1,1,""],PWASpecification_Get_UIO:[9,1,1,""],UIOEI_Convert_UIOInfo:[9,1,1,""],UIOSelectorSecs_WaitAppear_Bool:[9,1,1,""],UIOSelectorSecs_WaitDisappear_Bool:[9,1,1,""],UIOSelectorUIOActivity_Run_Dict:[9,1,1,""],UIOSelector_Exist_Bool:[9,1,1,""],UIOSelector_FocusHighlight:[9,1,1,""],UIOSelector_GetChildList_UIOList:[9,1,1,""],UIOSelector_Get_BitnessInt:[9,1,1,""],UIOSelector_Get_BitnessStr:[9,1,1,""],UIOSelector_Get_UIO:[9,1,1,""],UIOSelector_Get_UIOActivityList:[9,1,1,""],UIOSelector_Get_UIOInfo:[9,1,1,""],UIOSelector_Get_UIOInfoList:[9,1,1,""],UIOSelector_Get_UIOList:[9,1,1,""],UIOSelector_Highlight:[9,1,1,""],UIOSelector_SafeOtherGet_Process:[9,1,1,""],UIOSelector_SearchChildByMouse_UIO:[9,1,1,""],UIOSelector_SearchChildByMouse_UIOTree:[9,1,1,""],UIOSelector_SearchProcessNormalize_UIOSelector:[9,1,1,""],UIOSelector_SearchUIONormalize_UIOSelector:[9,1,1,""],UIOSelector_TryRestore_Dict:[9,1,1,""],UIOSelectorsSecs_WaitAppear_List:[9,1,1,""],UIOSelectorsSecs_WaitDisappear_List:[9,1,1,""],UIOXY_SearchChild_ListDict:[9,1,1,""],UIO_FocusHighlight:[9,1,1,""],UIO_GetCtrlIndex_Int:[9,1,1,""],UIO_Highlight:[9,1,1,""]},"pyOpenRPA.Robot.UIWeb":{BrowserChange:[10,1,1,""],BrowserChromeStart:[10,1,1,""],BrowserClose:[10,1,1,""],PageJSExecute:[10,1,1,""],PageOpen:[10,1,1,""],PageScrollTo:[10,1,1,""],UIOAttributeGet:[10,1,1,""],UIOAttributeRemove:[10,1,1,""],UIOAttributeSet:[10,1,1,""],UIOAttributeStyleGet:[10,1,1,""],UIOAttributeStyleRemove:[10,1,1,""],UIOAttributeStyleSet:[10,1,1,""],UIOClick:[10,1,1,""],UIOMouseSearchInit:[10,1,1,""],UIOMouseSearchReturn:[10,1,1,""],UIOSelectorClick:[10,1,1,""],UIOSelectorDetect:[10,1,1,""],UIOSelectorFirst:[10,1,1,""],UIOSelectorHighlight:[10,1,1,""],UIOSelectorList:[10,1,1,""],UIOSelectorWaitAppear:[10,1,1,""],UIOSelectorWaitDisappear:[10,1,1,""],UIOTextGet:[10,1,1,""]},"pyOpenRPA.Tools":{Debugger:[18,0,0,"-"],StopSafe:[18,0,0,"-"]},"pyOpenRPA.Tools.Debugger":{LiveDebugCheckThread:[18,1,1,""]},"pyOpenRPA.Tools.StopSafe":{Init:[18,1,1,""],IsStopSafe:[18,1,1,""]}},objnames:{"0":["py","module","Python \u043c\u043e\u0434\u0443\u043b\u044c"],"1":["py","function","Python \u0444\u0443\u043d\u043a\u0446\u0438\u044f"],"2":["py","data","Python \u0434\u0430\u043d\u043d\u044b\u0435"]},objtypes:{"0":"py:module","1":"py:function","2":"py:data"},terms:{"000":19,"000036":8,"0643":6,"0x0c":11,"0x0d":11,"0x0e":11,"0x0f":11,"0x1":11,"0x10":11,"0x11":11,"0x11c":11,"0x11d":11,"0x12":11,"0x13":11,"0x137":11,"0x138":11,"0x14":11,"0x15":11,"0x15d":11,"0x16":11,"0x17":11,"0x18":11,"0x19":11,"0x1a":11,"0x1b":11,"0x1c":11,"0x1d":11,"0x1e":11,"0x1f":11,"0x2":11,"0x20":11,"0x21":11,"0x22":11,"0x23":11,"0x24":11,"0x25":11,"0x26":11,"0x27":11,"0x28":11,"0x29":11,"0x2a":11,"0x2b":11,"0x2c":11,"0x2d":11,"0x2e":11,"0x2f":11,"0x3":11,"0x30":11,"0x31":11,"0x32":11,"0x33":11,"0x34":11,"0x35":11,"0x36":11,"0x37":11,"0x38":11,"0x39":11,"0x3a":11,"0x3b":11,"0x3c":11,"0x3d":11,"0x3e":11,"0x3f":11,"0x4":11,"0x40":11,"0x41":11,"0x42":11,"0x43":11,"0x44":11,"0x45":11,"0x46":11,"0x47":11,"0x48":11,"0x49":11,"0x4a":11,"0x4b":11,"0x4c":11,"0x4d":11,"0x4e":11,"0x4f":11,"0x5":11,"0x50":11,"0x51":11,"0x52":11,"0x53":11,"0x57":11,"0x58":11,"0x5b":11,"0x5c":11,"0x6":11,"0x7":11,"0x7c":11,"0x7d":11,"0x7e":11,"0x7f":11,"0x8":11,"0x80":11,"0x81":11,"0x82":11,"0x83":11,"0x84":11,"0x85":11,"0x86":11,"0x87":11,"0x9":11,"0xa":11,"0xb":11,"100":[5,8,9,10,11,13,14],"1000":14,"100px":13,"101":4,"1024":6,"105":8,"1050":[4,5],"120":5,"1200":5,"121":4,"1227700251350":1,"123":4,"125310":1,"127":4,"130":8,"140124673757368":9,"141":1,"150":[8,13,14],"150px":13,"160":14,"1680":[4,5],"1680x1050":5,"197022":1,"1992":6,"1\u0433\u043e":14,"1yvqfic":10,"200":[9,13,14],"2008":19,"2012":19,"2016":19,"2019":19,"2019\u0433":1,"2021\u0433":1,"2022":19,"2022\u0433":1,"222":5,"230":8,"233":1,"265":14,"299":19,"2999226":19,"2python":15,"2y66pa":10,"300":5,"3105":0,"32768":9,"3389":[4,5],"3600":5,"3720":[0,4,9,15],"3720python":15,"412":4,"443":4,"460":14,"50000000":5,"512":19,"600":5,"640x480":5,"722":1,"771801001":1,"77767775":4,"77777sdfsdf77777dsfdfsf77777777":4,"8081":5,"86400":9,"900":19,"906":1,"9718191421":1,"995":1,"\u0430":[1,4,11,15,19],"\u0430\u0431\u0441\u043e\u043b\u044e\u0442\u043d":[4,9,14],"\u0430\u0432\u0442\u043e\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446":4,"\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446":19,"\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430":19,"\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a":[4,9,17],"\u0430\u0432\u0442\u043e\u0440":19,"\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430":4,"\u0430\u0432\u0442\u043e\u0442\u0435\u0441\u0442":19,"\u0430\u0433\u0435\u043d\u0442":4,"\u0430\u0434\u0430\u043f\u0442\u0438\u0432\u043d":3,"\u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440":4,"\u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0440\u0430\u0442\u043e\u0440":4,"\u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d":[3,19],"\u0430\u0434\u0440\u0435\u0441":[1,4,6,9,10,19],"\u0430\u0434\u0440\u0435\u0441\u0430\u0446":9,"\u0430\u0434\u0440\u0435\u0441\u0441\u0430\u0446":9,"\u0430\u043a\u0442\u0438\u0432\u0430\u0446":19,"\u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430":17,"\u0430\u043a\u0442\u0438\u0432\u043d":[3,9,10,11,17,19],"\u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d":4,"\u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c":19,"\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d":4,"\u0430\u043d\u0430\u043b\u0438\u0437":4,"\u0430\u043d\u0430\u043b\u043e\u0433":19,"\u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d":[13,14],"\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a":11,"\u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442":[4,9,10,13],"\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440":[4,19],"\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d":3,"\u0430\u0441\u0438\u043d\u0445\u0440\u043e\u043d":[3,4],"\u0430\u0441\u0444\u0440":8,"\u0430\u0442\u0440\u0438\u0431\u0443\u0442":[9,10,19],"\u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0438\u0432\u043d":9,"\u0430\u0443\u0434":4,"\u0430\u0443\u0434\u0438\u0442":[4,19],"\u0431\u0430\u0437":9,"\u0431\u0430\u0437\u043e\u0432":[4,9,11,13,14],"\u0431\u0430\u0439\u0442":4,"\u0431\u0435\u0437":[0,4,15,19],"\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d":[3,4,7,19],"\u0431\u0435\u0441\u043f\u0435\u0440\u0435\u0431\u043e\u0439\u043d":3,"\u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d":[1,19],"\u0431\u0435\u0441\u0441\u0440\u043e\u0447\u043d":19,"\u0431\u0435\u0441\u0448\u043e\u0432\u043d":3,"\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a":[8,9,11,15,19],"\u0431\u0438\u0437\u043d\u0435\u0441":[3,4,8,14,16,19],"\u0431\u0438\u043d\u0430\u0440\u043d":4,"\u0431\u0438\u0442":9,"\u0431\u043b\u043e\u043a":4,"\u0431\u043b\u043e\u043a\u0438\u0440":[10,11,19],"\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a":1,"\u0431\u043b\u043e\u043a\u043d\u043e\u0442":4,"\u0431\u043e\u043b":[4,6,9,19],"\u0431\u043e\u043b\u044c\u0448":[9,19],"\u0431\u043e\u0442":19,"\u0431\u0440\u0430\u0443\u0437\u0435\u0440":[8,10,16,17,19],"\u0431\u0443\u0434\u0435\u0442":[0,3,4,8,9,10,11,14,16,19],"\u0431\u0443\u0434\u0443\u0442":[4,7,15],"\u0431\u0443\u043a\u0432":[8,11],"\u0431\u0443\u043b\u0435\u0432":[9,14],"\u0431\u0443\u0444\u0435\u0440":[0,4,8,11,12,15,19],"\u0431\u044b":[9,14],"\u0431\u044b\u043b":[0,3,4,9,11],"\u0431\u044b\u0442":[3,4,7,9,10,19],"\u0432":[0,1,3,4,6,7,8,9,10,12,13,14,15,16,19],"\u0432\u0430\u043c":[1,3,4],"\u0432\u0430\u0440\u0438\u0430\u043d\u0442":[0,4,9,10,13,14,19],"\u0432\u0430\u0441":[1,3,7,8,11,14,16,17,19],"\u0432\u0430\u0448":[3,8,14,16],"\u0432\u0432\u0435\u0434":9,"\u0432\u0432\u0435\u0440\u0445":[13,14],"\u0432\u0432\u0435\u0441\u0442":11,"\u0432\u0432\u043e\u0434":[9,11],"\u0432\u0435":4,"\u0432\u0435\u0431":[3,4,8,9,10,15,16,19],"\u0432\u0435\u0434\u0435\u0442":9,"\u0432\u0435\u043b\u0438\u0447\u0438\u043d":10,"\u0432\u0435\u043d\u0434\u043e\u0440":19,"\u0432\u0435\u0440":13,"\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446":4,"\u0432\u0435\u0440\u043d":4,"\u0432\u0435\u0440\u043d\u0435\u0442":[4,11],"\u0432\u0435\u0440\u043d\u0443\u0442":[4,9,14],"\u0432\u0435\u0440\u0441":[3,4,17,19],"\u0432\u0435\u0440\u0442\u0438\u043a\u0430":[10,14],"\u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b":14,"\u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d":[10,13,14],"\u0432\u0435\u0440\u0445\u043d":[4,9,13,14],"\u0432\u0435\u0447\u043d":4,"\u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432":[0,4,8,9,10,11,12,13,14,15,16],"\u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430":9,"\u0432\u0437\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432":9,"\u0432\u0437\u044f\u0442":4,"\u0432\u0438\u0434":[4,9],"\u0432\u0438\u0434\u0438\u043c":9,"\u0432\u0438\u0434\u043d":9,"\u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d":[9,19],"\u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d":[3,8,13,14,16],"\u0432\u043a\u043b\u0430\u0434\u043a":9,"\u0432\u043a\u043b\u044e\u0447":9,"\u0432\u043a\u043b\u044e\u0447\u0435\u043d":9,"\u0432\u043a\u043e\u043d\u0442\u0430\u043a\u0442":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],"\u0432\u043b\u0435\u0432":[9,13,14],"\u0432\u043b\u043e\u0436\u0435\u043d":9,"\u0432\u043c\u0435\u0441\u0442":10,"\u0432\u043d\u0435":4,"\u0432\u043d\u0435\u0434\u0440\u0435\u043d":3,"\u0432\u043d\u0435\u0441\u0442":7,"\u0432\u043d\u0438\u0437":[13,14],"\u0432\u043d\u0438\u043c\u0430\u043d":[1,4,9,10,11,12,13,14,17,19],"\u0432\u043d\u043e\u0441":3,"\u0432\u043d\u0443\u0442\u0440":[4,9,15],"\u0432\u043e":[4,9],"\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430":[4,9,10],"\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d":19,"\u0432\u043e\u0437\u043c\u043e\u0436\u043d":[3,8,9,13,14,16,19],"\u0432\u043e\u0437\u043d\u0438\u043a\u0430":19,"\u0432\u043e\u0437\u043d\u0438\u043a\u043b":0,"\u0432\u043e\u0437\u043d\u0438\u043a\u043d\u0435\u0442":[4,9],"\u0432\u043e\u0437\u043d\u0438\u043a\u043d\u0443\u0442":19,"\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430":11,"\u0432\u043e\u043a\u0440\u0443\u0433":9,"\u0432\u043e\u043f\u0440\u043e\u0441":[1,3,7,8,14,16,19],"\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d":4,"\u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430":3,"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430":4,"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432":[4,9,11],"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b":11,"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d":[4,9],"\u0432\u043f\u043b\u043e\u0442":19,"\u0432\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432":11,"\u0432\u043f\u0440\u0430\u0432":[9,13,14],"\u0432\u0440\u0435\u043c":[3,4,8,9,10,11,13,14],"\u0432\u0440\u0435\u043c\u0435\u043d":[4,11],"\u0432\u0441\u0435":[0,3,4,7,9,11,15,17,19],"\u0432\u0441\u0435\u0433":[3,8,14,16,19],"\u0432\u0441\u0435\u0433\u0434":[3,4,7,8,9,14,16,19],"\u0432\u0441\u0435\u043c":[1,4,9,14,19],"\u0432\u0441\u0435\u0445":[4,9,10,14,19],"\u0432\u0441\u043f\u043e\u043c\u043e\u0433\u0430\u0442\u0435\u043b\u044c\u043d":[4,11,19],"\u0432\u0441\u0442\u0430\u0432\u043a":11,"\u0432\u0441\u0442\u0440\u043e\u0435\u043d":10,"\u0432\u0441\u044e":[0,4,8,16,19],"\u0432\u0441\u044f":11,"\u0432\u0445\u043e\u0434":4,"\u0432\u0445\u043e\u0434\u044f":[4,9],"\u0432\u0445\u043e\u0436\u0434\u0435\u043d":14,"\u0432\u044b":[1,3,4,6,7,8,9,10,11,14,15,16,17,19],"\u0432\u044b\u0431\u043e\u0440":9,"\u0432\u044b\u0431\u0440\u0430":[3,4,6,9,11,14,15,17,19],"\u0432\u044b\u0432\u0435\u0434":11,"\u0432\u044b\u0432\u043e\u0434":4,"\u0432\u044b\u0433\u043b\u044f\u0434\u0435\u0442":9,"\u0432\u044b\u0433\u043e\u0434\u043d":[3,8,14,16,19],"\u0432\u044b\u0434\u0435\u043b":[4,11,17],"\u0432\u044b\u0434\u0435\u043b\u0435\u043d":[9,11,17],"\u0432\u044b\u0434\u0435\u043b\u044f":9,"\u0432\u044b\u0437":[4,9],"\u0432\u044b\u0437\u0432\u0430":[4,9,10],"\u0432\u044b\u0437\u043e\u0432":[4,9,11,13,14],"\u0432\u044b\u0437\u044b\u0432\u0430":[4,9],"\u0432\u044b\u043a\u043b\u044e\u0447":4,"\u0432\u044b\u043f\u0430\u0434\u0430":9,"\u0432\u044b\u043f\u043e\u043b\u043d":[0,4,6,9,10,11,13,14,15,17],"\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d":[4,9,10,11,13,14,19],"\u0432\u044b\u043f\u043e\u043b\u043d\u044f":[4,9,10,11,15,19],"\u0432\u044b\u043f\u0443\u0441\u043a":[13,14,19],"\u0432\u044b\u043f\u0443\u0441\u043a\u0430":19,"\u0432\u044b\u043f\u0443\u0449":[11,19],"\u0432\u044b\u0440\u0430\u0436":19,"\u0432\u044b\u0440\u0430\u0436\u0435\u043d":9,"\u0432\u044b\u0441\u043e\u0442":[4,14],"\u0432\u044b\u0445\u043e\u0434\u043d":4,"\u0432\u044b\u0448":[4,14],"\u0432\u044b\u0448\u0435\u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d":19,"\u0433":1,"\u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u043e\u0432\u0430":11,"\u0433\u0431":[4,19],"\u0433\u0433\u0446":19,"\u0433\u0434\u0435":[3,4,10,14,15],"\u0433\u0435\u043d\u0435\u0440\u0430\u043b\u044c\u043d":19,"\u0433\u0435\u043d\u0435\u0440\u0430\u0442\u043e\u0440":4,"\u0433\u0435\u043d\u0435\u0440\u0430\u0446":[4,19],"\u0433\u0438\u0431\u043a":[3,7],"\u0433\u0438\u0443\u0434":4,"\u0433\u043b\u0430\u0432\u043d":[0,4,9,11],"\u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d":[4,5,19],"\u0433\u043b\u0443\u0431\u0438\u043d":[4,9],"\u0433\u043e":[9,14,19],"\u0433\u043e\u0432\u043e\u0440":9,"\u0433\u043e\u0434":19,"\u0433\u043e\u043b\u043e\u0441\u043e\u0432":19,"\u0433\u043e\u0440":13,"\u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430":[10,14],"\u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b":14,"\u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d":[10,13,14],"\u0433\u043e\u0440\u044f\u0447":11,"\u0433\u043e\u0442\u043e\u0432":[0,9],"\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a":[3,4,8,14,15,19],"\u0433\u0440\u0443\u043f\u043f":[4,7,9],"\u0433\u0443\u0438\u0434":4,"\u0434":10,"\u0434\u0430":19,"\u0434\u0430\u0435\u0442":[3,8,14,16],"\u0434\u0430\u0436":[11,19],"\u0434\u0430\u043b":4,"\u0434\u0430\u043b\u044c\u043d":[4,9],"\u0434\u0430\u043d":[3,4,8,9,10,11,13,14,15,19],"\u0434\u0430\u0442":7,"\u0434\u0432\u0430\u0436\u0434":9,"\u0434\u0432\u043e\u0439\u043d":[9,13,14],"\u0434\u0435\u0439\u0441\u0442\u0432":[0,1,9,11,13,14,19],"\u0434\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430":4,"\u0434\u0435\u043b\u0430":[3,8,9,14,16,19],"\u0434\u0435\u043d":4,"\u0434\u0435\u0440\u0435\u0432":[9,19],"\u0434\u0435\u0444\u0435\u043a\u0442":19,"\u0434\u0438\u0430\u043b\u0435\u043a\u0442":9,"\u0434\u0438\u0430\u043b\u043e\u0433":9,"\u0434\u0438\u0430\u043b\u043e\u0433\u043e\u0432":9,"\u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440":[4,15,19],"\u0434\u0438\u0441\u043a":4,"\u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440":[4,9,15],"\u0434\u043b\u0438\u043d":14,"\u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d":10,"\u0434\u043b\u044f":[0,1,3,4,6,8,9,10,11,12,14,15,19],"\u0434\u043c\u0438\u0442\u0440\u0438\u0435\u0432\u0438\u0447":1,"\u0434\u043d\u0435":4,"\u0434\u043e":[4,9,10,13,14,19],"\u0434\u043e\u0431\u0430\u0432":[4,6],"\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d":4,"\u0434\u043e\u0431\u0430\u0432\u043b\u044f":4,"\u0434\u043e\u0431\u0440":19,"\u0434\u043e\u0432\u043e\u043b\u044c\u043d":9,"\u0434\u043e\u0436\u0434":17,"\u0434\u043e\u0436\u0434\u0430":[4,9,10],"\u0434\u043e\u0436\u0438\u0434":4,"\u0434\u043e\u0436\u0438\u0434\u0430":4,"\u0434\u043e\u043b\u0436":[4,9,14],"\u0434\u043e\u043b\u0436\u043d":[7,9,10],"\u0434\u043e\u043c":4,"\u0434\u043e\u043c\u0435\u043d":4,"\u0434\u043e\u043e\u0431\u043e\u0433\u0430\u0442":9,"\u0434\u043e\u043e\u0431\u043e\u0433\u0430\u0449\u0435\u043d":[4,9],"\u0434\u043e\u043f":[4,19],"\u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d":9,"\u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d":[4,9,19],"\u0434\u043e\u043f\u0443\u0441\u043a\u0430":[4,13,14],"\u0434\u043e\u043f\u0443\u0441\u0442":4,"\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c":[4,9,14],"\u0434\u043e\u0440\u043e\u0433":[3,8,14,16],"\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d":[6,15],"\u0434\u043e\u0441\u0442\u0443\u043f":[0,3,4,8,9,19],"\u0434\u043e\u0441\u0442\u0443\u043f\u043d":[3,4,9,11,19],"\u0434\u043e\u0447\u0435\u0440\u043d":9,"\u0434\u0440\u043e\u0431\u043d":14,"\u0434\u0440\u0443\u0433":[4,7,8,9,10,11,14,15,17,19],"\u0435":[10,11,13,14],"\u0435\u0433":[4,8,9,10,11,19],"\u0435\u0434\u0438\u043d":[5,14,19],"\u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d":[4,14],"\u0435\u0436\u0435\u043c\u0435\u0441\u044f\u0447\u043d":19,"\u0435\u0441\u043b":[0,3,4,7,8,9,10,11,13,14,16,19],"\u0435\u0441\u0442":9,"\u0435\u0449":4,"\u0436\u0434\u0430\u0442":[4,11],"\u0436\u0435":[3,4],"\u0436\u0438\u0437\u043d":3,"\u0437\u0430":[4,11,13,14,15],"\u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430":19,"\u0437\u0430\u0432\u0435\u0440\u0448":[0,4],"\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d":[9,15],"\u0437\u0430\u0432\u0438\u0441":11,"\u0437\u0430\u0432\u0438\u0441\u0438\u043c":[15,19],"\u0437\u0430\u0433\u0440\u0443\u0437":4,"\u0437\u0430\u0433\u0440\u0443\u0437\u043a":10,"\u0437\u0430\u0434\u0430":[9,10,14],"\u0437\u0430\u0434\u0430\u0447":[4,9,15,19],"\u0437\u0430\u0436\u0438\u043c":9,"\u0437\u0430\u043a\u0430\u0437":8,"\u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430":10,"\u0437\u0430\u043a\u043b\u044e\u0447\u0430":7,"\u0437\u0430\u043a\u043e\u043d":1,"\u0437\u0430\u043a\u043e\u043d\u043e\u0434\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432":[1,19],"\u0437\u0430\u043a\u043e\u043d\u0447":4,"\u0437\u0430\u043a\u0440":10,"\u0437\u0430\u043a\u0440\u044b\u0432\u0430":15,"\u0437\u0430\u043a\u0440\u044b\u0442":[4,19],"\u0437\u0430\u043b\u0438\u0432\u043a":9,"\u0437\u0430\u043c\u043e\u0440\u0430\u0436\u0438\u0432\u0430":4,"\u0437\u0430\u043d":4,"\u0437\u0430\u043f":[4,19],"\u0437\u0430\u043f\u0430\u0434\u043d":19,"\u0437\u0430\u043f\u0438\u0441":[3,4],"\u0437\u0430\u043f\u043e\u043b\u043d":9,"\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d":4,"\u0437\u0430\u043f\u043e\u043b\u043d\u044f":4,"\u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430":9,"\u0437\u0430\u043f\u0440\u043e\u0441":[4,19],"\u0437\u0430\u043f\u0443\u0441\u043a":[3,4,6,8,9,10,15,19],"\u0437\u0430\u043f\u0443\u0441\u043a\u0430":[4,9,19],"\u0437\u0430\u043f\u0443\u0441\u0442":[0,4,19],"\u0437\u0430\u043f\u0443\u0449":[0,4,9],"\u0437\u0430\u043f\u0443\u0449\u0435\u043d":[4,16],"\u0437\u0430\u0442":[9,13,14],"\u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430":4,"\u0437\u0430\u0445\u0432\u0430\u0442\u044b\u0432\u0430":4,"\u0437\u0430\u0449\u0438\u0449\u0435\u043d":4,"\u0437\u0432\u0435\u043d":[3,15],"\u0437\u0434\u0435":[0,3,9,10,11],"\u0437\u0435\u043b\u0435\u043d":[9,10],"\u0437\u043d\u0430":[3,8,14,16],"\u0437\u043d\u0430\u043a":11,"\u0437\u043d\u0430\u0447\u0435\u043d":[4,9,10,11,12,13,14],"\u0437\u0440\u0435\u043d":19,"\u0438":[1,3,4,7,8,9,10,11,12,13,14,15,16],"\u0438\u0432\u0430":19,"\u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440":[4,9],"\u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446":[4,14],"\u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430":10,"\u0438\u0434\u0435\u043d\u0442\u0438\u0447\u043d":[9,14],"\u0438\u0434\u0435\u0442":[4,19],"\u0438\u0435\u0440\u0430\u0440\u0445":[9,17],"\u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0447\u043d":3,"\u0438\u0437":[3,4,8,9,10,11,12,14,17],"\u0438\u0437\u0432\u043b\u0435\u043a":8,"\u0438\u0437\u0432\u043b\u0435\u0447":[4,19],"\u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d":[0,9],"\u0438\u0437\u043c\u0435\u043d":[4,14,15],"\u0438\u0437\u043c\u0435\u043d\u0435\u043d":[3,9,14,19],"\u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d":[14,19],"\u0438\u043b":[4,9,10,13,14,15],"\u0438\u043c":[3,4,8,9,14,16,19],"\u0438\u043c\u0435\u0435\u0442":[4,9,14,15],"\u0438\u043c\u0435\u043d":[4,9],"\u0438\u043c\u0435\u043d\u043e\u0432\u0430":[4,9],"\u0438\u043c\u0435\u0442":12,"\u0438\u043c\u0435\u044e\u0442":9,"\u0438\u043c\u0435\u044e\u0449":9,"\u0438\u043c\u0438\u0442\u0430\u0446":11,"\u0438\u043c\u043f\u043e\u0440\u0442":[4,15],"\u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430":4,"\u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u0435\u043c":4,"\u0438\u043d":1,"\u0438\u043d\u0430\u0447":4,"\u0438\u043d\u0434\u0435\u043a\u0441":[9,14],"\u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d":[4,19],"\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446":[4,9,15],"\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440":10,"\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430":[4,9],"\u0438\u043d\u0438\u0446\u0438\u0430\u0442":19,"\u0438\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440":4,"\u0438\u043d\u0438\u0446\u0438\u0430\u0446":4,"\u0438\u043d\u0438\u0446\u0438\u0438\u0440":[13,14],"\u0438\u043d\u0438\u0446\u0438\u0438\u0440\u043e\u0432\u0430":[4,9],"\u0438\u043d\u043a\u0430\u043f\u0441\u0443\u043b\u0438\u0440\u043e\u0432\u0430":15,"\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446":19,"\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442":[1,4,8,11,19],"\u0438\u043d\u0442\u0435\u0433\u0440\u0438\u0440":7,"\u0438\u043d\u0442\u0435\u0433\u0440\u0438\u0440\u043e\u0432\u0430":[8,15,19],"\u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442":19,"\u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d":[3,19],"\u0438\u043d\u0442\u0435\u0440\u0432\u0430":[4,10,11,13,14],"\u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b":10,"\u0438\u043d\u0442\u0435\u0440\u0435\u0441":4,"\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d":0,"\u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0442\u043e\u0440":[0,9],"\u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0446":14,"\u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0438\u0440\u043e\u0432\u0430":4,"\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441":[9,10,15,16,17],"\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446":[3,4,9,11,19],"\u0438\u043f":[1,19],"\u0438\u0441\u043a\u0430":[4,14],"\u0438\u0441\u043a\u0430\u0436\u0435\u043d":14,"\u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d":[9,10,13,14],"\u0438\u0441\u043a\u043e\u043c":[9,14],"\u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0435\u043d":[11,19],"\u0438\u0441\u043f\u043e\u043b\u0435\u043d":4,"\u0438\u0441\u043f\u043e\u043b\u043d":8,"\u0438\u0441\u043f\u043e\u043b\u043d\u0435\u043d":[3,4],"\u0438\u0441\u043f\u043e\u043b\u043d\u044f":[4,9],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437":[1,4,7,9,11,19],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430":[4,9,10,11,16,19],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d":[1,4,7,8,9,12,14,19],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443":[1,3,19],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c":[4,19],"\u0438\u0441\u043f\u043e\u0440\u0447":4,"\u0438\u0441\u043f\u044b\u0442\u0430":0,"\u0438\u0441\u0442\u0435\u043a\u0430":4,"\u0438\u0441\u0442\u043e\u0440":[4,10],"\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a":19,"\u0438\u0441\u0445\u043e\u0434\u043d":[2,4,9,10,11,12,13,14,18,19],"\u0438\u0441\u0445\u043e\u0434\u044f":9,"\u0438\u0441\u0447\u0435\u0437\u043d\u043e\u0432\u0435\u043d":[9,10,14],"\u0438\u0441\u0447\u0435\u0437\u043d\u0443\u0442":9,"\u0438\u0442":[4,19],"\u0438\u0442\u0435\u0440\u0430\u0446":4,"\u0438\u0445":[4,11],"\u0438\u044e\u043b":19,"\u0439":9,"\u043a":[1,3,4,8,9,10,14,15,19],"\u043a\u0430\u0436\u0434":[4,9,10,11,12,13,14,15,19],"\u043a\u0430\u043a":[1,3,4,9,11,13,16,19],"\u043a\u0430\u043d\u0430":1,"\u043a\u0430\u043d\u0430\u043b":[8,19],"\u043a\u0430\u0440\u0442":4,"\u043a\u0430\u0441\u0442\u043e\u043c\u0438\u0437\u0430\u0446":3,"\u043a\u0430\u0447\u0435\u0441\u0442\u0432":[3,8,9,14,15,16,19],"\u043a\u0438\u0448\u043a":9,"\u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440":[0,4,8,9,11,15,19],"\u043a\u043b\u0430\u0432\u0438\u0448":[9,13,14,19],"\u043a\u043b\u0430\u0432\u0438\u0448\u043d":11,"\u043a\u043b\u0430\u0441\u0441":[9,19],"\u043a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a":19,"\u043a\u043b\u0438\u0435\u043d\u0442":[0,3,4,7,8,14,16,19],"\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a":4,"\u043a\u043b\u0438\u043a":[9,13,14],"\u043a\u043b\u044e\u0447":[4,7,9,11,19],"\u043a\u043b\u044e\u0447\u0435\u0432":[10,15],"\u043a\u043d\u043e\u043f\u043a":[0,9,13,14],"\u043a\u043e":4,"\u043a\u043e\u0433\u0434":[9,17,19],"\u043a\u043e\u0434":[2,4,6,9,10,12,13,14,15,18,19],"\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a":4,"\u043a\u043e\u0434\u043e\u0432":4,"\u043a\u043e\u043b\u0435\u0441":[9,13],"\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432":[4,9,11,13,14],"\u043a\u043e\u043b\u043b\u0435\u0433":[3,8,14,16],"\u043a\u043e\u043c\u0430\u043d\u0434":[0,4,11,13,14,15,19],"\u043a\u043e\u043c\u0430\u043d\u0434\u043d":[4,15],"\u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446":[4,11,14],"\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a":19,"\u043a\u043e\u043c\u043f\u0430\u043d":[4,7,19],"\u043a\u043e\u043c\u043f\u0438\u0440\u043e\u0432\u0430\u043d":15,"\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442":[0,10,11,14,17,19],"\u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440":[4,9],"\u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043d":19,"\u043a\u043e\u043d\u0435\u0446":4,"\u043a\u043e\u043d\u0435\u0447\u043d":9,"\u043a\u043e\u043d\u0441\u043e\u043b":[8,15,17],"\u043a\u043e\u043d\u0441\u043e\u043b\u0438\u0434\u0438\u0440\u043e\u0432\u0430":[3,19],"\u043a\u043e\u043d\u0441\u043e\u043b\u044c\u043d":15,"\u043a\u043e\u043d\u0441\u0442\u0430\u043d\u0442":9,"\u043a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446":4,"\u043a\u043e\u043d\u0442\u0430\u043a\u0442":[0,3,4,7,8,14,16,19],"\u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440":4,"\u043a\u043e\u043d\u0442\u0440\u043e\u043b":[3,4,7,19],"\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440":4,"\u043a\u043e\u043d\u0442\u0443\u0440":9,"\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043e\u043d":[3,4],"\u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d":4,"\u043a\u043e\u043d\u0446\u0435\u043f\u0446":[7,19],"\u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442":[9,13,14],"\u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0446":[3,19],"\u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0438\u0440":3,"\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430":15,"\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d":4,"\u043a\u043e\u0440\u043d\u0435\u0432":9,"\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u043a":[3,7,14],"\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d":[11,19],"\u043a\u043e\u0440\u0442\u0435\u0436":4,"\u043a\u043e\u0442\u043e\u0440":[3,4,7,8,9,10,11,13,14,15,16,19],"\u043a\u043f\u043f":1,"\u043a\u0440\u0430":[13,14],"\u043a\u0440\u0430\u0441\u043d":9,"\u043a\u0440\u0438\u0442\u0435\u0440":9,"\u043a\u0440\u043e\u043c":17,"\u043a\u0440\u0443\u043f\u043d":[4,19],"\u043a\u0440\u0443\u0442":13,"\u043a\u0443\u0434":[0,4],"\u043a\u0443\u043a":10,"\u043a\u044d\u0448\u0438\u0440\u043e\u0432\u0430":4,"\u043a\u044d\u0448\u0438\u0440\u043e\u0432\u0430\u043d":4,"\u043b\u0430\u043d\u0434\u0448\u0430\u0444\u0442":19,"\u043b\u0435\u0432":[9,13,14],"\u043b\u0435\u0433\u043a":9,"\u043b\u0435\u0433\u043a\u043e\u0441\u0442":[8,15,19],"\u043b\u0438":[4,9,11,14],"\u043b\u0438\u0431":[1,4,9],"\u043b\u0438\u0446":[1,19],"\u043b\u0438\u0446\u0435\u043d\u0437":[0,3,4,7,8,14,16],"\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u043e\u043d":19,"\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d":19,"\u043b\u0438\u0448":7,"\u043b\u043e\u0433":[3,4,19],"\u043b\u043e\u0433\u0433\u0435\u0440":[4,5],"\u043b\u043e\u0433\u0433\u0438\u0440\u043e\u0432\u0430\u043d":4,"\u043b\u043e\u0433\u0438\u043d":4,"\u043b\u043e\u0433\u0438\u0440\u043e\u0432\u0430\u043d":[4,5],"\u043b\u043e\u043a\u0430\u043b\u044c\u043d":[4,8,9,19],"\u043b\u043e\u043a\u0430\u0446":4,"\u043b\u044c\u0432\u0430":1,"\u043b\u044e\u0431":[8,9,11,19],"\u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d":[7,9,10,15,19],"\u043c\u0430\u043b":19,"\u043c\u0430\u0441\u043b":19,"\u043c\u0430\u0441\u0441":3,"\u043c\u0430\u0441\u0441\u0438\u0432":3,"\u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a":14,"\u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b":19,"\u043c\u0430\u0448\u0438\u043d":[4,19],"\u043c\u0431":4,"\u043c\u0435\u0436\u0434":[4,11,13,14,15],"\u043c\u0435\u043d":9,"\u043c\u0435\u043d\u044f":19,"\u043c\u0435\u0440":4,"\u043c\u0435\u0441\u0442":13,"\u043c\u0435\u0442\u043e\u0434":[4,9],"\u043c\u0435\u0445\u0430\u043d\u0438\u0437\u043c":[4,7],"\u043c\u0438\u043a\u0440\u043e\u043f\u0440\u0435\u0434\u043f\u0440\u0438\u044f\u0442":19,"\u043c\u0438\u043b":11,"\u043c\u0438\u043c":4,"\u043c\u0438\u0440":11,"\u043c\u043d\u043e\u0433":[9,11],"\u043c\u043d\u043e\u0433\u043e\u043f\u043e\u0442\u043e\u0447\u043d":4,"\u043c\u043d\u043e\u0433\u043e\u0443\u0440\u043e\u0432\u043d\u0435\u0432":3,"\u043c\u043e":11,"\u043c\u043e\u0433\u0443\u0442":[4,9],"\u043c\u043e\u0434\u0435\u043b":[3,4,19],"\u043c\u043e\u0434\u0435\u043b\u0438\u0440\u0443":11,"\u043c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440":11,"\u043c\u043e\u0434\u0443\u043b":[3,4,8,9,11,12,13,14,15,16],"\u043c\u043e\u0436\u0435\u0442":[1,3,4,6,7,8,9,11,13,14,15,16,19],"\u043c\u043e\u0436\u043d":[3,4,9,10,11,15,19],"\u043c\u043e\u043c\u0435\u043d\u0442":9,"\u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d":[13,14],"\u043c\u043e\u043d\u0438\u0442\u043e\u0440":4,"\u043c\u043e\u0441\u043a\u0432":1,"\u043c\u043e\u0449":0,"\u043c\u0443\u0440\u0430\u0432\u0441\u043a":1,"\u043c\u0443\u0441\u043e\u0440\u043d":3,"\u043c\u044b":[1,3,4,8,9,14,16,19],"\u043c\u044b\u0448":[8,9,10,13,14,15,19],"\u043c\u044f":15,"\u043c\u044f\u0433\u043a":4,"\u043d\u0430":[3,4,8,9,10,11,12,13,14,15,19],"\u043d\u0430\u0431\u043e\u0440":[4,19],"\u043d\u0430\u0432\u0435\u0434":17,"\u043d\u0430\u0432\u0435\u0434\u0435\u043d":[9,19],"\u043d\u0430\u0433\u0440\u0443\u0437\u043a":19,"\u043d\u0430\u0434":[9,10,17,19],"\u043d\u0430\u0434\u0435\u0436\u043d":[3,11],"\u043d\u0430\u0436\u0430":[11,13,14],"\u043d\u0430\u0436\u0430\u0442":[9,10,11,13,14,15],"\u043d\u0430\u0436\u0438\u043c\u0430":[9,11],"\u043d\u0430\u0436\u043c":9,"\u043d\u0430\u0437\u043d\u0430\u0447":4,"\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d":9,"\u043d\u0430\u0437\u044b\u0432\u0430":3,"\u043d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d":[4,9,10,15],"\u043d\u0430\u0439\u0434\u0435\u0442":[16,19],"\u043d\u0430\u043b\u0438\u0447":[4,14],"\u043d\u0430\u043b\u043e\u0436":14,"\u043d\u0430\u043b\u043e\u0436\u0435\u043d":14,"\u043d\u0430\u043c":19,"\u043d\u0430\u043f\u0435\u0447\u0430\u0442\u0430":11,"\u043d\u0430\u043f\u0438\u0441\u0430":1,"\u043d\u0430\u043f\u0440\u0430\u0432\u043b":3,"\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440":[4,7,9],"\u043d\u0430\u043f\u0440\u044f\u043c":3,"\u043d\u0430\u0440\u0438\u0441":9,"\u043d\u0430\u0440\u0438\u0441\u043e\u0432\u0430":8,"\u043d\u0430\u0440\u0443\u0448\u0435\u043d":[1,19],"\u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043a":19,"\u043d\u0430\u0441\u0442\u043e\u044f":11,"\u043d\u0430\u0441\u0442\u0440\u043e":4,"\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a":[4,5,19],"\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a":[3,7,9,13,14,19],"\u043d\u0430\u0445\u043e\u0434":[9,10,13,14,15],"\u043d\u0430\u0445\u043e\u0436\u0434\u0435\u043d":13,"\u043d\u0430\u0446\u0435\u043b\u0435\u043d":19,"\u043d\u0430\u0447\u0430":[0,4,11,15],"\u043d\u0430\u0447\u0430\u043b\u044c\u043d":9,"\u043d\u0430\u0447\u0438\u043d":[3,4,8,14,16],"\u043d\u0430\u0447\u0438\u043d\u0430":[0,9,10,11,12,13,14],"\u043d\u0430\u0448":[8,9,19],"\u043d\u0434\u0441":19,"\u043d\u0435":[1,3,4,7,9,10,11,13,14,15,19],"\u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d":[4,19],"\u043d\u0435\u0434\u0435\u043b":4,"\u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c":9,"\u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d":9,"\u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c":[9,11],"\u043d\u0435\u0437\u043d\u0430\u043d":1,"\u043d\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430":[4,9],"\u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a":[1,19],"\u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d":4,"\u043d\u0435\u043a\u043e\u0442\u043e\u0440":9,"\u043d\u0435\u043c":[9,15,17],"\u043d\u0435\u043c\u0435\u0434\u043b\u0435\u043d":[9,13,14],"\u043d\u0435\u043e\u0431\u0445\u043e\u0434":[4,11,14,19],"\u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c":[0,4,8,10,11,12,15,16,17,19],"\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d":[4,9,11,14],"\u043d\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d":9,"\u043d\u0435\u043f\u0440\u0430\u0432\u043e\u043c\u0435\u0440\u043d":[1,19],"\u043d\u0435\u043f\u0440\u043e\u0432\u0435\u0440":9,"\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a":[4,9,11,14,19],"\u043d\u0435\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432":14,"\u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d":4,"\u043d\u0435\u0441\u0442\u0438\u043b\u0435\u0432":10,"\u043d\u0435\u0442":[4,9],"\u043d\u0438":[4,9],"\u043d\u0438\u0433\u0434":4,"\u043d\u0438\u0436":[4,5,6,8,9,11,13,14,17,19],"\u043d\u0438\u0436\u043d":14,"\u043d\u0438\u043a\u043e\u0433\u0434":9,"\u043d\u0438\u0445":4,"\u043d\u0438\u0447":[7,11],"\u043d\u043e":[7,9],"\u043d\u043e\u0432":[3,4,19],"\u043d\u043e\u043c\u0435\u0440":[4,8,9,10,13,14],"\u043d\u043e\u0440\u043c\u0430\u043b\u0438\u0437\u043e\u0432\u0430":9,"\u043d\u043e\u0442\u0430\u0446":4,"\u043d\u0443\u0436":4,"\u043d\u0443\u0436\u0434":3,"\u043d\u0443\u0436\u043d":[4,7,9],"\u043e":[4,13,14],"\u043e\u0431":4,"\u043e\u0431\u0435\u0440\u043d\u0443\u0442":9,"\u043e\u0431\u0435\u0441\u043f\u0435\u0447":[4,9],"\u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430":[3,4,8,16,19],"\u043e\u0431\u043b\u0430\u0434\u0430":[4,7,9,11],"\u043e\u0431\u043b\u0430\u0441\u0442":[9,10,13,19],"\u043e\u0431\u043c":[0,4,8,11,12,15,19],"\u043e\u0431\u043c\u0435\u043d\u0438\u0432\u0430":4,"\u043e\u0431\u043d\u0430\u0440\u0443\u0436":[4,9,14],"\u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d":9,"\u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u043d":9,"\u043e\u0431\u043d\u043e\u0432":4,"\u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0430":14,"\u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d":[9,10,11,12,13,14],"\u043e\u0431\u043e\u0437\u0440\u0435\u0432\u0430\u0442\u0435\u043b":17,"\u043e\u0431\u043e\u043b\u043e\u0447\u043a":9,"\u043e\u0431\u043e\u0441\u043e\u0431\u043b\u0435\u043d":19,"\u043e\u0431\u0440\u0430\u0437":9,"\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d":14,"\u043e\u0431\u0440\u0430\u0442":[0,1,3,4,7,8,9,10,14,16,19],"\u043e\u0431\u0440\u0430\u0442\u043a":14,"\u043e\u0431\u0440\u0430\u0442\u043d":[4,9],"\u043e\u0431\u0440\u0430\u0449\u0430":11,"\u043e\u0431\u0443\u0447\u0435\u043d":19,"\u043e\u0431\u044a\u0435\u043a\u0442":[4,9,10,14,15,16,19],"\u043e\u0431\u044b\u0447\u043d":[9,10],"\u043e\u0431\u044c\u0435\u043a\u0442":4,"\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b":4,"\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d":[4,9,13,14],"\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d":[9,19],"\u043e\u0433\u0440\u043d":1,"\u043e\u0434\u0438\u043d":[4,9,14],"\u043e\u0434\u0438\u043d\u043e\u0447\u043d":9,"\u043e\u0434\u043d":[3,6,9,11,14,15,19],"\u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d":[9,11],"\u043e\u0434\u043d\u043e\u043f\u043e\u0442\u043e\u0447\u043d":4,"\u043e\u0436\u0438\u0434\u0430":[4,9,10,11,13,14,17],"\u043e\u0436\u0438\u0434\u0430\u043d":[9,10,11,13,14],"\u043e\u0437\u043d\u0430\u043a\u043e\u043c":[1,3,9,11,19],"\u043e\u0437\u043d\u0430\u0447\u0430":[4,9,10,11,12,13,14],"\u043e\u043a\u043d":[4,9,15,17],"\u043e\u043a\u043e\u043d\u0447\u0430\u043d":4,"\u043e\u043a\u0440\u0443\u0433\u043b\u0435\u043d":14,"\u043e\u043a\u0443\u043f\u0430":19,"\u043e\u043d":[4,7,9,10,15],"\u043e\u043e":19,"\u043e\u043f":19,"\u043e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d":4,"\u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440":[4,10],"\u043e\u043f\u0435\u0440\u0430\u0446":[4,11,13,14,15,19],"\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d":[4,11],"\u043e\u043f\u0438\u0441\u0430\u043d":[4,15,19],"\u043e\u043f\u0440\u0435\u0434\u0435\u043b":9,"\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d":[4,9,11],"\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f":[4,9,14],"\u043e\u043f\u0442\u0438\u043c\u0438\u0437\u0430\u0446":19,"\u043e\u043f\u0443\u0441\u0442":[11,13],"\u043e\u043f\u0443\u0449":11,"\u043e\u043f\u0446":14,"\u043e\u043f\u0446\u0438\u043e\u043d\u0430\u043b":4,"\u043e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d":[4,9,10,11,13,14],"\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446":[1,19],"\u043e\u0440\u043a\u0435\u0441\u0442\u0440\u0430\u0442\u043e\u0440":[3,4,6,7,9],"\u043e\u0441":[4,8,9,10,11,12,13,14,15,19],"\u043e\u0441\u0432\u043e\u0431\u043e\u0436\u0434\u0430":1,"\u043e\u0441\u043d\u043e\u0432":9,"\u043e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b":19,"\u043e\u0441\u043d\u043e\u0432\u043d":[3,4,19],"\u043e\u0441\u043e\u0431":9,"\u043e\u0441\u043e\u0431\u0435\u043d":[4,11],"\u043e\u0441\u043e\u0437\u043d\u0430":[1,19],"\u043e\u0441\u0442\u0430":1,"\u043e\u0441\u0442\u0430\u0432":9,"\u043e\u0441\u0442\u0430\u0432\u043b\u044f":3,"\u043e\u0441\u0442\u0430\u043b\u044c\u043d":[1,9,13,14,19],"\u043e\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430":4,"\u043e\u0441\u0442\u0430\u043d\u043e\u0432":[4,9],"\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a":[3,4,19],"\u043e\u0441\u0442\u0430\u043d\u0443\u0442":[3,7,8,14,16,19],"\u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d":11,"\u043e\u0442":[1,3,4,8,9,10,11,14,16,19],"\u043e\u0442\u0431\u043e\u0440":9,"\u043e\u0442\u0432\u0435\u0441\u0442":9,"\u043e\u0442\u0432\u0435\u0442":4,"\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d":[1,19],"\u043e\u0442\u0432\u0435\u0447\u0430":15,"\u043e\u0442\u0434\u0435\u043b\u044c\u043d":4,"\u043e\u0442\u043a\u0430\u0437":19,"\u043e\u0442\u043a\u0430\u0437\u0430":4,"\u043e\u0442\u043a\u043b\u044e\u0447":19,"\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d":[4,9],"\u043e\u0442\u043a\u0440":[4,8,10,15,19],"\u043e\u0442\u043a\u0440\u043e\u0435\u0442":17,"\u043e\u0442\u043a\u0440\u044b\u0442":[3,19],"\u043e\u0442\u043a\u0443\u0434":4,"\u043e\u0442\u043b\u0430\u0434\u043a":[3,4,19],"\u043e\u0442\u043b\u0438\u0447":11,"\u043e\u0442\u043b\u0438\u0447\u0430":9,"\u043e\u0442\u043b\u0438\u0447\u043d":7,"\u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d":[4,14],"\u043e\u0442\u043d\u043e\u0448\u0435\u043d":4,"\u043e\u0442\u043e\u0431\u0440\u0430\u0436":9,"\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430":[9,15],"\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d":11,"\u043e\u0442\u043f\u0440\u0430\u0432":[4,10,11],"\u043e\u0442\u043f\u0440\u0430\u0432\u043a":[4,19],"\u043e\u0442\u043f\u0440\u0430\u0432\u043b":4,"\u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f":[4,9,10,11],"\u043e\u0442\u043f\u0443\u0441\u043a\u0430":[13,14],"\u043e\u0442\u043f\u0443\u0441\u043a\u0430\u043d":11,"\u043e\u0442\u043f\u0443\u0441\u0442":[11,13,14],"\u043e\u0442\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430":19,"\u043e\u0442\u0440\u0430\u0431\u043e\u0442\u043a":[4,10],"\u043e\u0442\u0440\u0438\u0441\u043e\u0432\u043a":14,"\u043e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u044c\u043d":13,"\u043e\u0442\u0440\u044b\u0432\u0430":16,"\u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430":9,"\u043e\u0442\u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430":4,"\u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432":4,"\u043e\u0442\u0441\u0447\u0435\u0442":[13,14],"\u043e\u0442\u0442\u0435\u043d\u043a":14,"\u043e\u0447\u0435\u043d":[0,19],"\u043e\u0447\u0435\u0440\u0435\u0434":[3,4,19],"\u043e\u0447\u0438\u0441\u0442":9,"\u043e\u0448\u0438\u0431\u043a":[4,9],"\u043e\u0448\u0438\u0431\u043e\u043a":9,"\u043f\u0430\u043a\u0435\u0442":[0,12,14,19],"\u043f\u0430\u043a\u0435\u0442\u043d":14,"\u043f\u0430\u043c\u044f\u0442":4,"\u043f\u0430\u043d\u0435\u043b":[3,4,17,19],"\u043f\u0430\u043f\u043a":[0,4,6,19],"\u043f\u0430\u0440":4,"\u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d":4,"\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440":[2,4,9,10,11,12,13,14,18,19],"\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438\u0437\u0430\u0446":[13,14],"\u043f\u0430\u0440\u043e\u043b":4,"\u043f\u0430\u0443\u0437":[3,19],"\u043f\u0435\u0440\u0432":[9,10,19],"\u043f\u0435\u0440\u0435\u0434":[4,9,19],"\u043f\u0435\u0440\u0435\u0434\u0430":[4,10,11,13],"\u043f\u0435\u0440\u0435\u0434\u0430\u0432\u0430":[4,9],"\u043f\u0435\u0440\u0435\u0434\u0430\u0447":[4,8,9,10,11,14,19],"\u043f\u0435\u0440\u0435\u0434\u043e\u0432":19,"\u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437":4,"\u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a":4,"\u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a":4,"\u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442":4,"\u043f\u0435\u0440\u0435\u0439\u0442":8,"\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447":11,"\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0430\u0442\u0435\u043b":9,"\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d":11,"\u043f\u0435\u0440\u0435\u043c\u0435\u043d":[4,10,11],"\u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442":[9,13,14],"\u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0430":9,"\u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d":[9,13,14],"\u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b":9,"\u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f":9,"\u043f\u0435\u0440\u0435\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d":4,"\u043f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d":9,"\u043f\u0435\u0440\u0435\u0442\u0430\u0449":9,"\u043f\u0435\u0440\u0435\u0445\u043e\u0434":3,"\u043f\u0435\u0440\u0435\u0447\u0435\u043d":[4,9,11],"\u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d":10,"\u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a":4,"\u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d":14,"\u043f\u0435\u0440\u0441\u043f\u0435\u043a\u0442\u0438\u0432\u043d":[0,8,19],"\u043f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433":1,"\u043f\u0435\u0447\u0430":11,"\u043f\u0435\u0447\u0430\u0442":11,"\u043f\u0435\u0447\u0430\u0442\u0430":11,"\u043f\u0438\u043a\u0441\u0435\u043b":[4,10,14],"\u043f\u043b\u0430\u043d\u0438\u0440":[4,9],"\u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u043c":9,"\u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442":9,"\u043f\u043b\u0430\u0442\u0435\u0436":19,"\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c":[0,3,8,9,11,14,15,16,19],"\u043f\u043e":[0,1,3,4,6,7,9,10,11,13,14,16,19],"\u043f\u043e\u0432\u0442\u043e\u0440\u043d":[4,14],"\u043f\u043e\u0434":[3,4,9,19],"\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a":5,"\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430":[4,9,10,11,12,13,14,17],"\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a":[0,3,4,7,8,14,16,19],"\u043f\u043e\u0434\u043a\u043b\u044e\u0447":[4,9],"\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0430":15,"\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d":[4,9,19],"\u043f\u043e\u0434\u043d\u044f":[11,13,14],"\u043f\u043e\u0434\u043d\u044f\u0442":11,"\u043f\u043e\u0434\u043e\u0436\u0434":17,"\u043f\u043e\u0434\u043f\u0438\u0441\u043a":19,"\u043f\u043e\u0434\u0440\u043e\u0431\u043d":[4,9,14,19],"\u043f\u043e\u0434\u0441\u0432\u0435\u0442":[9,10],"\u043f\u043e\u0434\u0441\u0432\u0435\u0442\u043a":[9,14],"\u043f\u043e\u0434\u0441\u0432\u0435\u0447":9,"\u043f\u043e\u0434\u0441\u0432\u0435\u0447\u0430\u043d":10,"\u043f\u043e\u0434\u0441\u0432\u0435\u0447\u0438\u0432\u0430\u043d":10,"\u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a":10,"\u043f\u043e\u0434\u0445\u043e\u0434\u044f":[10,14],"\u043f\u043e\u0434\u0445\u044a\u043e\u0434":3,"\u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430":19,"\u043f\u043e\u0437\u0432\u043e\u043b":4,"\u043f\u043e\u0437\u0432\u043e\u043b\u044f":[3,4,8,9,11,15,19],"\u043f\u043e\u0437\u0438\u0446":[13,14],"\u043f\u043e\u0438\u0441\u043a":[4,9,10,14,19],"\u043f\u043e\u043a":[4,9,11],"\u043f\u043e\u043a\u0430\u0437\u0430":17,"\u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b":14,"\u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430":4,"\u043f\u043e\u043a\u043e\u043b\u0435\u043d":19,"\u043f\u043e\u043a\u0443\u043f\u0430\u0442\u0435\u043b":8,"\u043f\u043e\u043a\u0443\u043f\u043a":19,"\u043f\u043e\u043b":9,"\u043f\u043e\u043b\u0435\u0437\u043d":4,"\u043f\u043e\u043b\u043d":[4,9,14],"\u043f\u043e\u043b\u043d\u043e\u043c\u043e\u0447":4,"\u043f\u043e\u043b\u043d\u043e\u0441\u0442":4,"\u043f\u043e\u043b\u043e\u0436\u0435\u043d":[9,14,19],"\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d":13,"\u043f\u043e\u043b\u0443\u0447":[1,4,9,10,12,14],"\u043f\u043e\u043b\u0443\u0447\u0430":[4,11],"\u043f\u043e\u043b\u0443\u0447\u0435\u043d":[1,4,9,19],"\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b":[3,4,9,19],"\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a":[4,9,16,17],"\u043f\u043e\u043c\u0438\u043c":19,"\u043f\u043e\u043c\u043e\u0433\u0443\u0442":[1,3,7,8,14,16,19],"\u043f\u043e\u043c\u043e\u0436":1,"\u043f\u043e\u043c\u043e\u0449":[0,4,9,10,11,15],"\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a":4,"\u043f\u043e\u043f\u0430\u0441\u0442":9,"\u043f\u043e\u043f\u0440\u043e\u0431":11,"\u043f\u043e\u043f\u044b\u0442\u043a":[9,11],"\u043f\u043e\u0440\u043e\u0436\u0434":4,"\u043f\u043e\u0440\u0442":4,"\u043f\u043e\u0440\u0442\u0430":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"\u043f\u043e\u0440\u044f\u0434\u043a\u043e\u0432":10,"\u043f\u043e\u0441\u0435\u0440\u0435\u0434\u0438\u043d":9,"\u043f\u043e\u0441\u043a\u043e\u043b\u044c\u043a":9,"\u043f\u043e\u0441\u043b":[4,9,11,13,14,15,17],"\u043f\u043e\u0441\u043b\u0435\u0434":9,"\u043f\u043e\u0441\u043b\u0435\u0434\u043d":9,"\u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d":4,"\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d":4,"\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f":[8,19],"\u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a":19,"\u043f\u043e\u0441\u0442\u0444\u0438\u043a\u0441":4,"\u043f\u043e\u0441\u044b\u043b\u0430":11,"\u043f\u043e\u0442\u043e\u043a":[3,4,10],"\u043f\u043e\u0442\u043e\u043a\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d":4,"\u043f\u043e\u0442\u043e\u043c\u043a":9,"\u043f\u043e\u0442\u0440\u0435\u0431":[3,4,7],"\u043f\u043e\u0445\u043e\u0436":14,"\u043f\u043e\u0447\u0442":1,"\u043f\u043e\u044d\u0442":9,"\u043f\u043e\u044f\u0432":[9,10],"\u043f\u043e\u044f\u0432\u043b\u0435\u043d":[4,9,10,14],"\u043f\u0440\u0430\u0432":[4,9,13,14,19],"\u043f\u0440\u0430\u0432\u0438\u043b":14,"\u043f\u0440\u0430\u0432\u043e\u043e\u0431\u043b\u0430\u0434\u0430\u0442\u0435\u043b":19,"\u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a":[16,19],"\u043f\u0440\u0435\u0432\u044b\u0448":10,"\u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d":10,"\u043f\u0440\u0435\u0434\u0435\u043b\u044c\u043d":19,"\u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430":[3,19],"\u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d":4,"\u043f\u0440\u0435\u0434\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d":[4,19],"\u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432":4,"\u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f":4,"\u043f\u0440\u0435\u0434\u043f\u0440\u0438\u044f\u0442":[8,9],"\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b":[4,5,7,9,10,11,15,17,19],"\u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449":4,"\u043f\u0440\u0435\u0436\u0434":11,"\u043f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],"\u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d":4,"\u043f\u0440\u0435\u043a\u0440\u0430\u0442":4,"\u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d":10,"\u043f\u0440\u0435\u043c\u0438\u0430\u043b\u044c\u043d":19,"\u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437":4,"\u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430":4,"\u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d":4,"\u043f\u0440\u0435\u0440\u044b\u0432\u0430\u043d":4,"\u043f\u0440\u0435\u0441\u0442\u0430\u0432\u043b":8,"\u043f\u0440\u0435\u0444\u0438\u043a\u0441":4,"\u043f\u0440\u0438":[4,7,9,10,11,12,14],"\u043f\u0440\u0438\u0431\u043b\u0438\u0436":9,"\u043f\u0440\u0438\u0432\u0435\u0434":9,"\u043f\u0440\u0438\u0432\u0435\u0434\u0435\u0442":[4,14],"\u043f\u0440\u0438\u0432\u0435\u0441\u0442":4,"\u043f\u0440\u0438\u0432\u0435\u0442":11,"\u043f\u0440\u0438\u0437\u043d\u0430\u043a":9,"\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d":[4,8,9,10,15,16,19],"\u043f\u0440\u0438\u043c\u0435\u043d":4,"\u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c":9,"\u043f\u0440\u0438\u043c\u0435\u043d\u044f":[9,19],"\u043f\u0440\u0438\u043c\u0435\u0440":[4,6,9,14,19],"\u043f\u0440\u0438\u043d":4,"\u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436":9,"\u043f\u0440\u0438\u043d\u0438\u043c\u0430":[4,13,14],"\u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u044c\u043d":[3,4,19],"\u043f\u0440\u0438\u043d\u0446\u0438\u043f":9,"\u043f\u0440\u0438\u043d\u044f":4,"\u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d":1,"\u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432":[4,9],"\u043f\u0440\u0438\u0445\u043e\u0434":19,"\u043f\u0440\u0438\u0447\u0438\u043d":19,"\u043f\u0440\u0438\u0448\u0435\u043b":4,"\u043f\u0440\u043e":[4,19],"\u043f\u0440\u043e\u0431\u043b":[0,19],"\u043f\u0440\u043e\u0431\u043b\u0435\u043c":19,"\u043f\u0440\u043e\u0431\u043d":14,"\u043f\u0440\u043e\u0432\u0435\u0440":[1,4,9,11,14,19],"\u043f\u0440\u043e\u0432\u0435\u0440\u043a":[4,9,10,14,19],"\u043f\u0440\u043e\u0432\u0435\u0440\u044f":[4,9,14],"\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c":[4,11],"\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d":[3,8,11,14,15,16,19],"\u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0438\u0432\u043d":19,"\u043f\u0440\u043e\u0434\u043e\u043b\u0436":4,"\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0432\u043d":15,"\u043f\u0440\u043e\u0435\u043a\u0442":[0,8,15,19],"\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u0443\u0435\u043c":19,"\u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d":19,"\u043f\u0440\u043e\u0438\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430":[4,9],"\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434":9,"\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442":3,"\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434":[4,9,10,13],"\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d":[14,19],"\u043f\u0440\u043e\u0438\u0437\u043e\u0439\u0434\u0435\u0442":11,"\u043f\u0440\u043e\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430":4,"\u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434":[4,13],"\u043f\u0440\u043e\u043a\u0440\u0443\u0442":[9,13],"\u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a":[10,13],"\u043f\u0440\u043e\u043f\u0438\u0441\u0430":15,"\u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430":4,"\u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u043d":4,"\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440":[3,4,19],"\u043f\u0440\u043e\u0441\u0442":[9,15],"\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432":4,"\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b":8,"\u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0438\u0440\u043e\u0432\u0430\u043d":19,"\u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d":[9,10,14],"\u043f\u0440\u043e\u0444\u0438\u043b":10,"\u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440":4,"\u043f\u0440\u043e\u0446\u0435\u0441\u0441":[4,9,10,15,19],"\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u043d":[3,4],"\u043f\u0440\u043e\u0447\u0438\u0442\u0430":4,"\u043f\u0440\u043e\u0448\u043b":[4,14],"\u043f\u0440\u044f\u043c":9,"\u043f\u0440\u044f\u043c\u043e\u0443\u0433\u043e\u043b\u044c\u043d":[9,14],"\u043f\u0440\u044f\u043c\u043e\u0443\u0433\u043e\u043b\u044c\u043d\u0438\u043a":9,"\u043f\u0441\u0435\u0432\u0434\u043e\u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d":4,"\u043f\u0443\u0441\u0442":[4,9],"\u043f\u0443\u0442":[4,9,10,14],"\u0440\u0430\u0431\u043e\u0442":[0,3,4,7,8,11,14,15,16,19],"\u0440\u0430\u0431\u043e\u0442\u0430":[3,4,9,11,19],"\u0440\u0430\u0431\u043e\u0447":[4,8,9,13,14,15],"\u0440\u0430\u0432":9,"\u0440\u0430\u0432\u043d":9,"\u0440\u0430\u0437":[4,19],"\u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430":9,"\u0440\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442":[9,19],"\u0440\u0430\u0437\u0432\u0435\u0440\u0442\u043d\u0443\u0442":4,"\u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d":[0,19],"\u0440\u0430\u0437\u0432\u0438\u0442":19,"\u0440\u0430\u0437\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d":[3,19],"\u0440\u0430\u0437\u0434\u0435\u043b":[4,7,9,11,15,16],"\u0440\u0430\u0437\u043b\u0438\u0447\u043d":[4,10,11,16],"\u0440\u0430\u0437\u043d":[4,11],"\u0440\u0430\u0437\u043d\u043e\u044f\u0437\u044b\u0447\u043d":11,"\u0440\u0430\u0437\u043e\u0432":19,"\u0440\u0430\u0437\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430":9,"\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430":19,"\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a":[3,8,14,16],"\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a":[3,19],"\u0440\u0430\u0437\u0440\u0435\u0448\u0430":[1,19],"\u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d":4,"\u0440\u0430\u0437\u0440\u044f\u0434\u043d":9,"\u0440\u0430\u043c\u043a":[9,19],"\u0440\u0430\u043d":[4,9,19],"\u0440\u0430\u0441\u043a\u043b\u0430\u0434\u043a":11,"\u0440\u0430\u0441\u043a\u043b\u0430\u0434\u043e\u043a":11,"\u0440\u0430\u0441\u043a\u0440":4,"\u0440\u0430\u0441\u043f\u0430\u043a\u043e\u0432\u0430":0,"\u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d":[3,4,19],"\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d":19,"\u0440\u0430\u0441\u043f\u043e\u043b\u0430\u0433\u0430":10,"\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436":[4,9,10],"\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d":[4,6,9,10,14],"\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d":7,"\u0440\u0430\u0441\u0441\u0442\u043e\u044f\u043d":[9,14],"\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d":[4,10],"\u0440\u0435\u0430\u043a\u0446":11,"\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446":19,"\u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430":[4,19],"\u0440\u0435\u0430\u043b\u0438\u0441\u0442\u0438\u0447\u043d":9,"\u0440\u0435\u0430\u043b\u044c\u043d":11,"\u0440\u0435\u0433":9,"\u0440\u0435\u0433\u0438\u0441\u0442\u0440":[4,11],"\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u043d":4,"\u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d":9,"\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430":7,"\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d":[9,19],"\u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440":17,"\u0440\u0435\u0434\u0430\u043a\u0446":8,"\u0440\u0435\u0436":[9,17],"\u0440\u0435\u0436\u0438\u043c":[4,9,11,14],"\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442":[2,4,9,10,12,14,18,19],"\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443":[0,3,4,9],"\u0440\u0435\u043b\u0438\u0437":19,"\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"\u0440\u0435\u0441\u0443\u0440\u0441":19,"\u0440\u0435\u0447":19,"\u0440\u0435\u0448\u0430":19,"\u0440\u0435\u0448\u0435\u043d":[3,19],"\u0440\u0438\u0441\u043e\u0432\u0430\u043d":9,"\u0440\u043e\u0431\u043e\u0442":[1,3,4,7,8,9,11,14,16],"\u0440\u043e\u0431\u043e\u0442\u0438\u0437\u0430":15,"\u0440\u043e\u0431\u043e\u0442\u0438\u0437\u0430\u0446":[3,8,14,15,16,19],"\u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a":[9,17],"\u0440\u043e\u043b\u0435\u0432":[3,4,19],"\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a":19,"\u0440\u043f\u0430":19,"\u0440\u0443\u0431":[3,8,14,16,19],"\u0440\u0443\u0431\u043b":19,"\u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432":[16,19],"\u0440\u0443\u0441\u0441\u043a":[4,11],"\u0440\u044b\u043d\u043a":[3,19],"\u0440\u044b\u043d\u043e\u043a":19,"\u0440\u044f\u0434":[9,19],"\u0441":[0,1,3,4,7,8,9,10,11,12,13,14,15,16,19],"\u0441\u0430\u043c":[9,19],"\u0441\u0430\u043c\u043e\u0437\u0430\u043d\u044f\u0442":[1,19],"\u0441\u0430\u043d\u043a\u0442":1,"\u0441\u0430\u043d\u043a\u0446":19,"\u0441\u0431\u043e\u0440":3,"\u0441\u0432\u0435\u0434\u0435\u043d":4,"\u0441\u0432\u0435\u0440\u043d\u0443\u0442":9,"\u0441\u0432\u0435\u0440\u0445":[9,14],"\u0441\u0432\u0435\u0441\u0442":15,"\u0441\u0432\u043e":[1,3,4,6,9,14,19],"\u0441\u0432\u043e\u0439\u0441\u0442\u0432":[9,19],"\u0441\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u043d":9,"\u0441\u0432\u044f\u0437":[4,11,19],"\u0441\u0432\u044f\u0437\u0430":9,"\u0441\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430":4,"\u0441\u0435\u0433\u043c\u0435\u043d\u0442":19,"\u0441\u0435\u0433\u043e\u0434\u043d":19,"\u0441\u0435\u043a":[4,10,14],"\u0441\u0435\u043a\u0443\u043d\u0434":[4,9,11,13,14],"\u0441\u0435\u043b\u0435\u043a\u0442\u043e\u0440":[10,17,19],"\u0441\u0435\u043c\u0435\u0439\u0441\u0442\u0432":19,"\u0441\u0435\u0440":14,"\u0441\u0435\u0440\u0432\u0435\u0440":[3,4],"\u0441\u0435\u0440\u0435\u0434\u0438\u043d":4,"\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442":[1,4,19],"\u0441\u0435\u0441":9,"\u0441\u0435\u0441\u0438":4,"\u0441\u0435\u0441\u0441":[3,4,9,15,16,19],"\u0441\u0435\u0442\u0435\u0432":4,"\u0441\u0438\u0433\u043d\u0430":4,"\u0441\u0438\u043c\u0432\u043e\u043b":[4,9,11],"\u0441\u0438\u043c\u0432\u043e\u043b\u044c\u043d":19,"\u0441\u0438\u043c\u0443\u043b\u044f\u0446":9,"\u0441\u0438\u043d":9,"\u0441\u0438\u043d\u0433\u043b\u0442\u043e\u043d":4,"\u0441\u0438\u043d\u043e\u043d":4,"\u0441\u0438\u043d\u043e\u043d\u0438\u043c":4,"\u0441\u0438\u043d\u0445\u0440\u043e\u043d":4,"\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446":4,"\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430":4,"\u0441\u0438\u0441\u0442":11,"\u0441\u0438\u0441\u0442\u0435\u043c":[4,7,11],"\u0441\u0438\u0442\u0443\u0430\u0446":[4,9],"\u0441\u043a\u0430\u043d":11,"\u0441\u043a\u0430\u0447\u0430":[0,10],"\u0441\u043a\u043e\u043b\u044c\u043a":9,"\u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430":[4,11],"\u0441\u043a\u043e\u0440\u043e\u0441\u0442":19,"\u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430":14,"\u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442":[0,19],"\u0441\u043a\u0440\u0438\u043f\u0442":[6,19],"\u0441\u043a\u0440\u043e\u043b\u043b\u0438\u043d\u0433":13,"\u0441\u043a\u0440\u044b\u0442":9,"\u0441\u043b\u0435\u0432":[9,14],"\u0441\u043b\u0435\u0434":[0,3,4,6,9,11,13,14,15,17],"\u0441\u043b\u0435\u0434\u044e\u0449":4,"\u0441\u043b\u043e\u0432":10,"\u0441\u043b\u043e\u0432\u0430\u0440":[4,5,9,19],"\u0441\u043b\u043e\u0432\u0430\u0440\u0431":4,"\u0441\u043b\u043e\u0436\u0435\u043d":4,"\u0441\u043b\u043e\u0436\u043d":3,"\u0441\u043b\u0443\u0447\u0430":[1,4,9,13,14,19],"\u0441\u043b\u0443\u0448\u0430":4,"\u0441\u043c":[0,1,3,4,6,9,11,13,14,19],"\u0441\u043c\u0435\u043d":10,"\u0441\u043c\u0435\u0449\u0435\u043d":14,"\u0441\u043c\u043e\u0436\u0435\u0442":[3,8,14,16],"\u0441\u043c\u043e\u0442\u0440\u0435\u0442":19,"\u0441\u043d\u0430\u0447\u0430":4,"\u0441\u043d\u0438\u0437":[9,14],"\u0441\u043d\u044f\u0442":9,"\u0441\u043e":[3,4,7,9,11],"\u0441\u043e\u0431\u044b\u0442":11,"\u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d":[1,19],"\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c":[4,9],"\u0441\u043e\u0432\u043f\u0430\u0434\u0430":9,"\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d":1,"\u0441\u043e\u0434\u0435\u0440\u0436":[4,8,11,19],"\u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442":9,"\u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c":[4,9,12],"\u0441\u043e\u0435\u0434\u0438\u043d":4,"\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d":4,"\u0441\u043e\u0437\u0434\u0430":[4,5,14,15,19],"\u0441\u043e\u0437\u0434\u0430\u0432\u0430":4,"\u0441\u043e\u0437\u0434\u0430\u043d":[4,8,19],"\u0441\u043e\u043e\u0431\u0449\u0430":4,"\u0441\u043e\u043e\u0431\u0449\u0435\u043d":[4,11],"\u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],"\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0432":[4,9,11,13,14,15],"\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432":[3,4,9,10,14],"\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d":11,"\u0441\u043e\u0441\u0442\u043e":[3,17],"\u0441\u043e\u0441\u0442\u043e\u044f":3,"\u0441\u043e\u0441\u0442\u043e\u044f\u043d":[3,4,9,19],"\u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a":[3,8,14,16,19],"\u0441\u043e\u0444\u0442":19,"\u0441\u043e\u0445\u0440\u0430\u043d":[4,14],"\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d":[4,10],"\u0441\u043e\u0445\u0440\u0430\u043d\u044f":[4,10],"\u0441\u043e\u0447\u0435\u0442\u0430":19,"\u0441\u043e\u0447\u0435\u0442\u0430\u043d":11,"\u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d":[3,4],"\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446":9,"\u0441\u043f\u0438\u0441\u043a":[4,9,14],"\u0441\u043f\u0438\u0441\u043e\u043a":[4,9,10,11,14,17],"\u0441\u043f\u043e\u0441\u043e\u0431":[4,9,10,15],"\u0441\u043f\u0440\u0430\u0432":[9,14],"\u0441\u043f\u0440\u0430\u0432\u043a":4,"\u0441\u0440\u0430\u0437":4,"\u0441\u0440\u0435\u0434":[3,4,9,19],"\u0441\u0440\u0435\u0434\u043d":19,"\u0441\u0440\u0435\u0434\u0441\u0442\u0432":15,"\u0441\u0440\u0438\u043f\u0442":15,"\u0441\u0441\u044b\u043b\u043a":[3,19],"\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d":[4,11],"\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442":19,"\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d":4,"\u0441\u0442\u0430\u043d\u0435\u0442":9,"\u0441\u0442\u0430\u043d\u043e\u0432":19,"\u0441\u0442\u0430\u0440":4,"\u0441\u0442\u0438\u043b":10,"\u0441\u0442\u0438\u043b\u0435\u0432":10,"\u0441\u0442\u043e\u043b":[8,9],"\u0441\u0442\u043e\u0440\u043e\u043d":[4,7,10,11,19],"\u0441\u0442\u0440\u0430\u043d\u0438\u0446":[0,4,10,11],"\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a":19,"\u0441\u0442\u0440\u043e\u043a":[4,9,11,14,15],"\u0441\u0442\u0440\u043e\u043a\u043e\u0432":[4,14],"\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440":[3,4,9],"\u0441\u0442\u0443\u0434":[9,15,16],"\u0441\u0443\u043f\u0435\u0440":4,"\u0441\u0443\u043f\u0435\u0440\u0434\u043e\u0441\u0442\u0443\u043f":4,"\u0441\u0443\u043f\u0435\u0440\u0442\u043e\u043a":4,"\u0441\u0443\u043f\u0435\u0440\u0442\u043e\u043a\u0435\u043d":4,"\u0441\u0443\u0449\u0435\u0441\u0442\u0432":[0,4,9],"\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d":[3,8,11,14,16],"\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043e\u0432\u0430\u043d":9,"\u0441\u0445\u043e\u0436":9,"\u0441\u0447\u0435\u0442":11,"\u0441u":14,"\u0442":[10,11],"\u0442\u0430\u043a":[3,6,9,11,13,19],"\u0442\u0430\u043a\u0436":[0,1,4,6,7,9,11,15],"\u0442\u0430\u043a\u043e\u0432":[9,19],"\u0442\u0430\u043c":15,"\u0442\u0434":4,"\u0442\u0435":7,"\u0442\u0435\u043a\u0441\u0442":[1,9,10,11,17,19],"\u0442\u0435\u043a\u0441\u0442\u043e\u0432":[4,8,11,12,15,19],"\u0442\u0435\u043a\u0443\u0449":[4,9,11,13,19],"\u0442\u0435\u043b":4,"\u0442\u0435\u043b\u0435\u0433\u0440":1,"\u0442\u0435\u043b\u0435\u0444\u043e\u043d":1,"\u0442\u0435\u043c":[4,9,11,19],"\u0442\u0435\u043f\u0435\u0440":9,"\u0442\u0435\u0440\u043c\u0438\u043d":9,"\u0442\u0435\u0440\u043c\u0438\u043d\u0430\u043b":11,"\u0442\u0435\u0445":13,"\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a":9,"\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433":[0,8,9,19],"\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a":19,"\u0442\u0438\u043f":[4,9,10,12,14],"\u0442\u043e":[3,4,7,8,9,10,11,14,16,19],"\u0442\u043e\u0433":[3,4,9,11,19],"\u0442\u043e\u043a":4,"\u0442\u043e\u043b\u0441\u0442":1,"\u0442\u043e\u043b\u0449\u0438\u043d":[9,14],"\u0442\u043e\u043b\u044c\u043a":[1,3,4,8,9,10,11,14,16,19],"\u0442\u043e\u043c":[4,7],"\u0442\u043e\u043d\u043a":6,"\u0442\u043e\u0447\u043a":19,"\u0442\u043e\u0447\u043d":19,"\u0442\u043e\u0447\u043d\u043e\u0441\u0442":[11,14],"\u0442\u0440\u0435\u0431":[1,4,7,9,10,11,13,14,19],"\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d":9,"\u0442\u0440\u0443\u0434\u043d\u043e\u0441\u0442":0,"\u0442\u044b\u0441":[3,8,14,16,19],"\u0442\u044b\u0441\u044f\u0447":3,"\u0443":[1,3,7,8,9,10,11,14,16,19],"\u0443\u0431\u0435\u0434":4,"\u0443\u0432\u0435\u043b\u0438\u0447\u0438\u0432\u0430":3,"\u0443\u0433\u043b":9,"\u0443\u0433\u043e\u0434\u043d":0,"\u0443\u0434\u0430\u043b":10,"\u0443\u0434\u0430\u043b\u0435\u043d":[3,4,19],"\u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430":[9,17],"\u0443\u0434\u043e\u0431\u043d":7,"\u0443\u0434\u043e\u0431\u0441\u0442\u0432":9,"\u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u044f":[9,10,14],"\u0443\u0436":[0,4,7,9,11],"\u0443\u0437":4,"\u0443\u0437\u043b":19,"\u0443\u043a\u0430\u0436":9,"\u0443\u043a\u0430\u0437\u0430":[4,7,9,10,11,13],"\u0443\u043a\u0430\u0437\u0430\u043d":[4,19],"\u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b":[9,10,13,14],"\u0443\u043a\u0430\u0437\u043d":9,"\u0443\u043a\u0430\u0437\u044b\u0432\u0430":[4,9],"\u0443\u043b\u0438\u0446":1,"\u0443\u043b\u0443\u0447\u0448":[3,8,14,16],"\u0443\u043c\u043e\u043b\u0447\u0430\u043d":[4,7,9,10,11,13,14,17],"\u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d":[4,7,19],"\u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0430":4,"\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d":[3,4,8,9,10,11,19],"\u0443\u043f\u0440\u0430\u0432\u043b\u044f":[3,8,14,16,19],"\u0443\u043f\u0440\u043e\u0441\u0442":15,"\u0443\u043f\u0440\u043e\u0449\u0435\u043d":3,"\u0443\u0440\u043e\u0432\u0435\u043d":[8,9,19],"\u0443\u0440\u043e\u0432\u043d":[9,17],"\u0443\u0441\u043a\u043e\u0440\u044f":14,"\u0443\u0441\u043b\u043e\u0432":[9,14],"\u0443\u0441\u043b\u0443\u0433":19,"\u0443\u0441\u043f\u0435\u0448\u043d":[0,4],"\u0443\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430":[4,9,10],"\u0443\u0441\u0442\u0430\u043d\u043e\u0432":[4,9,10,12,15],"\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a":[4,9,10,12],"\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b":[4,9,11,13,14],"\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d":[9,17],"\u0443\u0441\u0442\u0443\u043f\u0430":19,"\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a":19,"\u0443\u0447\u0435\u0442":[4,14,19],"\u0443\u0447\u0435\u0442\u043d":[3,4],"\u0443\u0447\u0438\u0442\u044b\u0432\u0430":11,"\u0443\u044f\u0437\u0432":9,"\u0444":11,"\u0444\u0430\u0439\u043b":[4,5,6,17,19],"\u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a":[1,11,19],"\u0444\u0438\u043a\u0441\u0430\u0446":4,"\u0444\u0438\u043a\u0441\u0438\u0440":4,"\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432":19,"\u0444\u0438\u0440\u043c":8,"\u0444\u043b\u0430\u0436\u043a":9,"\u0444\u043b\u0430\u0436\u043e\u043a":9,"\u0444\u043e\u043a\u0443\u0441":9,"\u0444\u043e\u0440\u043c\u0430\u0442":[4,9,14,19],"\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d":9,"\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430":9,"\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d":14,"\u0444\u0443\u043d\u043a\u0446":[3,7,8,19],"\u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d":[1,3,7,8,9,16,19],"\u0445":[4,9,14],"\u0445\u0430\u0440\u0430\u043a\u0435\u0442\u0440\u0438\u0437":9,"\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0437":14,"\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a":9,"\u0445\u043e\u0441\u0442":4,"\u0445\u043e\u0442":[3,6,9,14,17],"\u0445\u0440\u0430\u043d\u0435\u043d":[3,4],"\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449":[3,4,19],"\u0446\u0432\u0435\u0442":[4,9,10,14,17],"\u0446\u0435\u043b":[4,9],"\u0446\u0435\u043b\u0435\u0432":[9,13],"\u0446\u0435\u043b\u043e\u0441\u0442\u043d":11,"\u0446\u0435\u043d\u0442\u0440":[0,3,4,7,8,9,14,16,19],"\u0446\u0435\u043f\u043e\u0447\u043a":9,"\u0446\u0438\u043a\u043b":4,"\u0446\u0438\u0444\u0440\u043e\u0432":[1,19],"\u0447\u0430\u0441":9,"\u0447\u0430\u0441\u0442":[4,9],"\u0447\u0430\u0441\u0442\u043e\u0442":4,"\u0447\u0430\u0442":19,"\u0447\u0435\u0433":[11,13,14],"\u0447\u0435\u0440\u0435\u0437":[3,4,8,9,11,19],"\u0447\u0438\u0441\u043b":[9,11,14],"\u0447\u0438\u0441\u0442\u043e\u0442":19,"\u0447\u0442\u0435\u043d":[4,9,19],"\u0447\u0442\u043e":[3,7,8,9,10,11,12,13,14,15,16,19],"\u0447\u0442\u043e\u0431":[3,4,9,11,15,17],"\u0447\u0443\u0432\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d":4,"\u0448\u0430\u0431\u043b\u043e\u043d":[3,4,19],"\u0448\u0430\u043d\u0441":3,"\u0448\u0435\u0441\u0442\u043d\u0430\u0434\u0446\u0430\u0442\u0438\u0440\u0438\u0447\u043d":11,"\u0448\u0438\u0440\u0438\u043d":[4,14],"\u0448\u0438\u0440\u043e\u043a":3,"\u0449\u0435\u043b\u043a\u043d":9,"\u0449\u0435\u043b\u043a\u043d\u0443\u0442":[9,17],"\u0449\u0435\u043b\u0447\u043a":[9,13],"\u0449\u0435\u043b\u0447\u043e\u043a":[9,13],"\u044d\u0432\u043c":15,"\u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440":[4,9,14],"\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a":19,"\u044d\u043a\u0440\u0430":[4,8,9,13,14,19],"\u044d\u043a\u0440\u0430\u043d":[4,9,13,14],"\u044d\u043b\u0435\u043c\u0435\u043d\u0442":[4,8,9,10,14,19],"\u044d\u0440\u0430\u043d":8,"\u044d\u0442":[3,4,6,7,8,9,10,11,14,15,16,19],"\u044d\u0442\u043e\u0442":[3,9,15],"\u044d\u0444\u0444\u0435\u043a\u0442":[3,8,14,16,19],"\u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d":[10,19],"\u044f":8,"\u044f\u0432\u043b\u044f":[4,9,14,19],"\u044f\u0432\u043d":[11,19],"\u044f\u0434\u0440":4,"\u044f\u0437\u044b\u043a":[4,9,11],"case":[2,5],"catch":[2,5],"class":9,"continue":4,"debugger":18,"default":[2,4,5],"double":9,"else":[2,5,6],"false":[2,4,5,6,9,10,11,14],"float":[2,5,9,10,11,13,14],"for":[2,4,5,6,11,19],"function":5,"import":[4,5,6,8,9,10,11,12,13,14,15,18],"int":[9,10,11,13,14],"interface":6,"key_rus_\u0430":11,"key_rus_\u0431":11,"key_rus_\u0432":11,"key_rus_\u0433":11,"key_rus_\u0434":11,"key_rus_\u0435":11,"key_rus_\u0436":11,"key_rus_\u0437":11,"key_rus_\u0438":11,"key_rus_\u0439":11,"key_rus_\u043a":11,"key_rus_\u043b":11,"key_rus_\u043c":11,"key_rus_\u043d":11,"key_rus_\u043e":11,"key_rus_\u043f":11,"key_rus_\u0440":11,"key_rus_\u0441":11,"key_rus_\u0442":11,"key_rus_\u0443":11,"key_rus_\u0444":11,"key_rus_\u0445":11,"key_rus_\u0446":11,"key_rus_\u0447":11,"key_rus_\u0448":11,"key_rus_\u0449":11,"key_rus_\u044a":11,"key_rus_\u044b":11,"key_rus_\u044c":11,"key_rus_\u044d":11,"key_rus_\u044e":11,"key_rus_\u044f":11,"new":[5,6],"package":6,"return":[2,4,5,8,10],"static":9,"switch":11,"this":[2,5],"true":[2,4,5,6,7,9,10,11,14,18],"try":[4,9],"var":4,"with":[4,5,6,8],__agent__:19,__agentactivityreturndictitemcreate__:5,__agentdictitemcreate__:5,__create__:5,__init__:4,__main__:6,__name__:6,__orchestrator__:4,__statisticsdict__:5,__uacclientadmincreate__:[5,6],_cp:4,_sessionlast_gsettings:4,_sessionlast_rdplist:4,_sessionlast_storagedict:4,about:[5,18],abs:[2,5],absolute:[5,9],absolutely:2,abspath:[4,6],access:[4,5,6,7],accessusers:5,activate:5,active:[4,5,7],active_only:9,activities:5,activity:[4,5,7],activitydict:[5,7],activityitem:[2,3,19],activityitemcreate:4,activityitemdefaliascreate:4,activityitemdefaliasmodulesload:4,activityitemdefaliasupdate:4,activityitemhelperdefautofill:4,activityitemhelperdeflist:4,activityitemnowdict:5,activitylist:5,activitylistappendprocessorqueuebool:[5,7],activitylistexecute:4,activitylistexecutebool:[5,7],activitytimelist:5,add:[5,6],addhandler:5,address:5,addressstr:5,admindict:[5,7],administrator:[4,6],after:[5,6,18],agent:[4,5,19],agentactivityitemadd:4,agentactivityitemexists:4,agentactivityitemreturnexists:4,agentactivityitemreturnget:4,agentactivitylifetimesecfloat:5,agentactivityreturndict:5,agentactivityreturnlifetimesecfloat:5,agentconnectionlifetimesecfloat:5,agentdict:5,agentfilechunkbytessizeint:5,agentfilechunkcheckintervalsecfloat:5,agentkeydict:[5,7],agentkeystr:[5,7],agentlimitlogsizebytesint:5,agentloopsleepsecfloat:5,agentoscmd:4,agentosfilebinarydatabase64strappend:4,agentosfilebinarydatabase64strcreate:4,agentosfilebinarydatabase64strreceive:4,agentosfilebinarydatabytescreate:4,agentosfilebinarydatareceive:4,agentosfilesend:4,agentosfiletextdatastrcreate:4,agentosfiletextdatastrreceive:4,agentoslogoff:4,agentprocesswoexeupperuserlistget:4,alert:10,algorythms:5,alias:[4,5],aliasdefdict:[4,5],all:[4,5,6,7],allow:6,allowed:5,already:4,alt:11,alt_shift_toggle:11,amd64:[0,4,9,15],amd64python:15,and:[2,4,5,7],another:4,apache:1,api:4,app:2,appear:18,append:[4,5,7,9,15],applicable:5,application:[4,9],apply:5,apt:[0,11,12,14],archive:5,argdict:[4,5],arggsettings:[4,5],arggsettingsstr:4,arglist:[4,5],arglogger:[4,5],argloggerstr:4,args:[4,5],arguments:10,argvaluestr:4,asctime:5,ask:5,astra:19,asweigart:1,attention:[2,4,5],attribute:[4,5],authentication:5,authtoken:5,authtokensdict:5,auto_id:9,autocleaner:5,autoinit:6,automatically:5,automation:[8,19],automation_id:9,available:[5,6],b4ff:6,b64decode:2,back:19,backend:[8,9],backendstr_gettoplevellist_uioinfo:9,base64:[2,4],basehttprequesthandler:4,basewrapper:9,basic:[5,6],beautiful:2,been:[4,5],before:5,beginwith:[4,5],below:4,best_match:9,between:[5,6],bigdata:19,bin:0,binary:[2,4],bit:1,blob:1,blocked:5,blue:[9,10,14],body:[4,5],bool:[4,5,9,10,11,14],boppreh:1,borismoore:1,bottom:9,box:[6,19],boxanchorrulecheck:14,boxcreate:14,boxdraw:14,boxgetpoint:14,boxmodify:14,boxmoveto:14,boxoverlay:14,browser:5,browserchange:10,browserchromestart:10,browserclose:10,bs_null:9,bsd:1,bst_checked:9,bst_indeterminate:9,bst_unchecked:9,button:[5,7,9,14],button_down:9,button_up:9,cache:5,calcframe:9,call:[4,5,6],can:[2,4,5,6,18],cancel:9,car:4,catchperiodsecfloat:5,cclulds:14,certfilepempathstr:5,changed:5,chat:19,check:[4,5,9,18],checkbox:9,checkintervalsecfloat:5,child:10,chrome:[4,10],chunk:5,class_name:[8,9],class_name_re:9,clause:1,clear:5,click:[9,13],click_input:[8,9],clickdouble:13,client:5,clientrequesthandler:5,clipboard:[0,8,15,19],clipboardget:8,clipboardset:8,close:[4,5,18],cmd:[2,4,5,6,7,8,11,17],cmdinputbool:[5,7],code:[4,5,9],codepoint:11,codes:11,col:10,collecting:5,color:10,colour:9,com:[0,1,11,19],combobox:9,come:[2,18],command:[0,2,11,15],commands:5,completed:5,completion:5,complex:4,config:6,configuration:[4,5,6],configure:[5,9],connect:5,connection:5,connectioncountint:5,connectionfirstqueueitemcountint:5,console:5,contains:[4,5],content:[2,5],control:[4,5,6,7],control_id:9,control_type:[8,9],control_type_re:9,controlpanel:[4,5,6],controlpaneldict:5,controlpanelkeyallowedlist:5,controlpanelrefreshintervalsecfloat:5,controls:[5,7],cookie:5,coords:9,copy:15,cp1251:[2,4],cp866:2,cp_:[4,6],cp_versioncheck:4,cpkey:5,cpkeydict:[5,7],cpkeystr:[5,7],cpu:19,create:[2,4,5,6,18],created:5,creating:5,crosscheck:4,crossos:6,css:10,ctrl:[8,9,11],ctrl_index:9,ctypes:8,current:[2,4,5,7],cus:14,daemonic:2,data:[2,5,11],datasetlast:5,datastorage:4,datetime:[5,6],dbader:1,dear:11,debugging:[4,5],decode:2,def:[4,5,6,8,18],defaliastest:5,defhelper:4,defnamestr:5,defsettingsupdatepathlist:5,demo:[8,9],depth_end:[8,9],depth_start:[8,9],depth_stop:9,depthbit:[4,5],desktop:[5,19],desktopuser:4,detect:5,devhints:10,dict:[2,4,5,9,19],dictionary:[4,5],directory:[4,7,18],disconnect:[4,5],display_dashboard:4,div:10,dodict:5,domain:5,domainadstr:5,domainupperstr:4,domainuser:4,don:[2,5],dont:[5,7],dos:[2,4],double_click_input:[8,9],down:[11,13],dp0:15,drag_mouse_input:9,draw_outline:[8,9],drives:5,dropped_rect:9,dsd:5,dst:9,dump:[5,6],dumploglist:5,dumploglistcountint:5,dumploglisthashstr:5,dumploglistrefreshintervalsecfloat:5,duration:5,each:5,early:2,echo:[8,11],edit:[8,9],element_info:9,elementinfo:9,empty:[5,7],enabled:9,enabled_only:9,encapsulated:2,encode:2,encoding:[2,4],end:9,eng:19,enter:8,env:5,equal:[4,5],equalcase:[4,5],equalnoparam:4,etc:4,every:[4,5],example:[2,4],examples:5,except:[4,9],exception:[4,9,10],exceptions:4,exe:[0,2,4,9,10,15,18],executable:4,execute:[2,5,7],executebool:5,executed:4,executing:5,execution:[2,5],exist:[2,5],exists:[4,5],explorer:[4,17],feature:5,field:5,file:[2,4,5,18],filebodybytes:4,filehandler:5,filemanager:5,filemode:5,filenamestr:4,files:5,fileurl:5,fileurlfilepathdict:5,fileurlfilepathdict_help:5,fill:[5,9],filled:5,fills:5,findwindows:9,first:6,flag:[2,5],flagaccess:5,flagaccessdefrequestglobalauthenticate:5,flagcredentialsask:5,flagdonotexpire:5,flagsessionisactive:5,flaguseallmonitors:[4,5],flase:[2,4],folder:6,forget:5,format:2,formatter:5,found:[0,11],found_index:9,foundation:1,framework:9,framework_id:9,friday:4,friendly_class_name:9,friendly_class_name_re:9,friendlyclassname:9,from:[2,4,5,6,8,9,10,11,12,13,14,15,18],from_point:9,front:19,full:5,full_control_type:9,fullscreen:5,fullscreenbool:[5,7],fullscreenrdpsessionkeystr:5,functionallity:6,functions:[2,4,9,10,11,12,13,14,18],general:5,get:[0,4,5,11,12,14],get_check_state:9,get_item_focus:9,get_line:9,get_osbitnessint:9,get_properties:9,getlogger:5,getscreenshot:4,giampaolo:1,git:[0,4,5,7],github:1,gitlab:19,give:[5,7],global:2,google:10,green:[4,9,10,14],grey:10,grid:10,grid__ccol:10,grid__main:10,grid_newscol:10,grid_newscol__more:10,groupbox:9,groupboxes:9,grp:11,gsettings:[4,6,19],gsettingsdict:4,gsettingsget:[4,6],gsettingskeylistvalueappend:4,gsettingskeylistvalueget:4,gsettingskeylistvalueoperatorplus:4,gsettingskeylistvalueset:4,gui:2,guid:[4,5],guidstr:[4,5],gurbage:5,habr:19,handbk:11,handle:[5,9],handlebars:1,handler:5,handlers:5,hard:5,has:[5,18],have:4,hdd:19,headers:4,height:[4,5,9,14],hello:[4,10,11,12],help:[4,19],hex:[5,9],hiddenisorchestratorinitialized:5,hierarchy:17,host:[4,5],hostnameupperstr:5,hotkeycombination:11,hotkeyctrla_ctrlc:11,hotkeyctrlv:11,how:18,hpnd:1,href:10,html:[4,5,9,19],http:[1,4,5],https:[0,1,4,5,9,10,11,19],ignore:5,ignorebool:[5,7],image:[4,15],image_wait_interval_sec_float:14,image_wait_sec_float:14,imageclick:14,imageexists:14,imagelocateall:14,imagewaitappear:14,imagewaitdisappear:14,imaslov:6,imported:4,inactionname:9,inactivityitemdict:4,inactivitylist:4,inaddressstr:4,inadisdefaultbool:[4,6],inadloginstr:[4,6],inadstr:[4,6],inadstrinadloginstr:4,inagentfilepathstr:4,inaliasstr:4,inanchorbox:14,inanchorrule:14,inanchorrulestr:19,inarg1str:4,inargdict:4,inarggsettings:4,inarggsettingsstr:4,inarglist:[4,10],inargloggerstr:4,inargumentlist:9,inasyncinitbool:[4,6],inattributestr:10,inbackend:9,inbox1:14,inbox2:14,inbox:14,inboxindexint:14,inbreaktriggerprocesswoexelist:4,inbrowser:10,inbuttonstr:[13,14],incapturebool:[2,4],incertfilepempathstr:4,incheckintervalsecfloat:4,inchromeexepathstr:10,inclickcountint:[13,14],incloseforcebool:4,included:8,incmdencodingstr:[2,4],incmdstr:[2,4],incolorstr:[10,14],inconfidencefloat:14,incontenttypestr:4,incontrolspecificationarray:9,incpkeystr:4,indef:4,indefargdict:4,indefarggsettingsnamestr:4,indefarglist:4,indefargloggernamestr:4,indefargnamegsettingsstr:[4,6],indefnamestr:4,indefquerystr:4,indefstr:[4,6],indelayfloat:11,indelaysecfloat:11,indepthbitint:4,index:[1,4,5,9],indheightint:14,indict:5,indomainstr:4,indopressbool:11,indoreleasebool:11,indriverexepathstr:10,indumprestorebool:[4,6],indurationsecfloat:10,indwidthint:14,indxint:14,indyint:14,inelement:9,inelementinfo:9,inelementspecification:9,inencodingstr:[2,4],inexactbool:11,inexecuteinnewthreadbool:4,inextensionpathlist:10,infiledatabase64str:[2,4],infiledatabytes:4,infiledatastr:[2,4],infilepathstr:[2,4],inflagforceclosebool:4,inflaggetabspathbool:4,inflagraiseexception:9,inflagsetfocus:9,inflagwaitallinmoment:9,info:[4,5,6],infolderpathstr:4,inforcebool:4,inglobpatternstr:[4,6],ingsettings:[2,4,6],ingsettingsclientdict:5,inguidstr:4,inhashkeystr:5,inheadersdict:4,inheightint:14,inheightpxint:4,inhierarchylist:9,inhorizontalpxint:10,inhostfilepathstr:4,inhostnamestr:4,inhoststr:[4,5],inhtmlrenderdef:4,inimgpathstr:14,inintervalasyncbool:4,inintervalsecfloat:[4,13,14],inisfirst:10,inisgraymodebool:14,init:[4,5,6,18],init_debug:18,initdatetime:5,inited:5,initialized:5,injsinitgeneratordef:4,injsongeneratordef:4,injsstr:10,inkeyfilepathstr:4,inkeyint:11,inkeylist:[4,11],inkeystr:5,inkwargs:18,inkwargumentobject:9,inleftint:14,inlogger:[4,5,18],inloggerlevel:5,inloginstr:[4,5],inmatchtypestr:4,inmessagestr:4,inmethodstr:4,inmodestr:[4,5,6],inmodulepathstr:4,inmovedurationsecfloat:[13,14],inoperationcodestr:4,inorchestratorfilepathstr:4,inpasswordstr:[4,5],inpathstr:4,inpoint:14,inpointrulestr:19,inportint:[4,6],inportstr:[4,5],inprocessnamewexestr:4,inprocessnamewoexelist:[2,4],inprocessnamewoexestr:4,inprofilepathstr:10,inrdpfilepathstr:4,inrdpsessionkeystr:[4,5],inrdptemplatedict:4,inredirectclipboardbool:4,inrequest:4,inresponestr:4,inrestorestateafterbool:11,inreturn:5,inrobotnamestr:4,inrolehierarchyalloweddict:[4,6],inrolekeylist:4,inrootelement:9,inrowcountint:5,inrunasadministratorbool:4,inrunasyncbool:[2,4],inscrollclickcountint:13,insendoutputtoorchestratorlogsbool:[2,4],insert:[4,6],inserverkeystr:4,inshareddrivelist:4,inspecificationlist:9,inspecificationlistlist:9,install:[0,8,11,12,14],instance:5,instopprocessnamewoexestr:4,insupertokenstr:[4,6],internet:17,interval:5,intervalsecfloat:5,intextstr:[11,12],inthicknessint:14,inthreadbool:4,intimehhmmstr:4,intopint:14,inuacbool:4,inuio:10,inuioselector:9,inuioselectorstr:10,inurlindexstr:4,inurllist:[4,6],inurlstr:[4,10],inusebothmonitorbool:4,inusecachebool:4,inusernamestr:4,inuserstr:4,invalue:[4,10],inverticalpxint:10,inwaitaftersecfloat:[11,13,14],inwaitintervalsecfloat:[10,14],inwaitsecfloat:[10,14],inwaitsecs:9,inweekdaylist:4,inwidthint:14,inwidthpxint:4,inx:9,inxint:[13,14],iny:9,inyint:[13,14],is_checked:9,is_child:9,is_dialog:9,is_enabled:9,is_linux_bool:6,is_single_selection:9,is_visible:9,is_windows_bool:6,isdown:11,islistenbool:5,isresponsiblebool:4,issafestop:18,isstopsafe:18,item:[5,9],item_count:9,item_data:9,item_texts:9,iterations:5,ivan:[1,4],ivanmaslov:1,javascript:10,jinja2:[1,4],jinja:1,join:[4,6],json:[2,4,5,9],jsrender:1,jupiternotebook:1,jupyter:1,kb2999226:19,key:[4,5],key_down:9,key_eng_a:11,key_eng_b:11,key_eng_c:11,key_eng_colon:11,key_eng_d:11,key_eng_e:11,key_eng_f:11,key_eng_g:11,key_eng_h:11,key_eng_i:11,key_eng_j:11,key_eng_k:11,key_eng_l:11,key_eng_layout:11,key_eng_m:11,key_eng_n:11,key_eng_o:11,key_eng_p:11,key_eng_q:11,key_eng_r:11,key_eng_s:11,key_eng_t:11,key_eng_u:11,key_eng_v:11,key_eng_w:11,key_eng_x:11,key_eng_y:11,key_eng_z:11,key_hot_0:11,key_hot_1:11,key_hot_2:11,key_hot_3:11,key_hot_4:11,key_hot_5:11,key_hot_6:11,key_hot_7:11,key_hot_8:11,key_hot_9:11,key_hot_alt_left:11,key_hot_alt_right:11,key_hot_apostrophe:11,key_hot_backspace:11,key_hot_caps_lock:11,key_hot_clear:11,key_hot_colon:11,key_hot_context_menu:11,key_hot_ctrl_left:11,key_hot_ctrl_right:11,key_hot_delete:11,key_hot_down:11,key_hot_end:11,key_hot_enter:11,key_hot_esc:11,key_hot_f10:11,key_hot_f11:11,key_hot_f12:11,key_hot_f13:11,key_hot_f14:11,key_hot_f15:11,key_hot_f16:11,key_hot_f17:11,key_hot_f18:11,key_hot_f19:11,key_hot_f1:11,key_hot_f20:11,key_hot_f21:11,key_hot_f22:11,key_hot_f23:11,key_hot_f24:11,key_hot_f2:11,key_hot_f3:11,key_hot_f4:11,key_hot_f5:11,key_hot_f6:11,key_hot_f7:11,key_hot_f8:11,key_hot_f9:11,key_hot_greater_than:11,key_hot_home:11,key_hot_insert:11,key_hot_left:11,key_hot_less_than:11,key_hot_minus:11,key_hot_num_lock:11,key_hot_numpad_0:11,key_hot_numpad_1:11,key_hot_numpad_2:11,key_hot_numpad_3:11,key_hot_numpad_4:11,key_hot_numpad_5:11,key_hot_numpad_6:11,key_hot_numpad_7:11,key_hot_numpad_8:11,key_hot_numpad_9:11,key_hot_numpad_asterisk:11,key_hot_numpad_delete:11,key_hot_numpad_enter:11,key_hot_numpad_minus:11,key_hot_numpad_plus:11,key_hot_numpad_solidus:11,key_hot_page_down:11,key_hot_page_up:11,key_hot_plus:11,key_hot_print_screen:11,key_hot_right:11,key_hot_scroll_lock:11,key_hot_shift_left:11,key_hot_shift_right:11,key_hot_solidus:11,key_hot_space:11,key_hot_square_bracket_left:11,key_hot_square_bracket_right:11,key_hot_tab:11,key_hot_tilde:11,key_hot_up:11,key_hot_vertical_line:11,key_hot_win_left:11,key_hot_win_right:11,key_rus_layout:11,key_up:9,keyboard:[1,8,9,15,19],keyfilepathstr:5,keys:[4,9],lactivityitem:4,lactivityitemdict:4,lactivitylist:9,lactivityresult:9,laliasstr:4,lang:1,lappearuiolist:10,lapplist:9,last:5,latest:9,layout:11,lbackendstr:9,lbox1:14,lbox2:14,lbox3:14,lbox:14,lboxlist:14,lbrowser1:10,lbrowser2:10,lclipstr:12,lcommentselector:8,ldemobase:8,ldemobasebitint:9,ldemobasebitstr:9,ldemobaseselector:8,ldemobaseuioexistbool:9,ldemobaseuioexistlist:9,ldemobaseuiolist:9,ldemobaseuioselector:9,ldemobaseuioselectorclean:9,ldemobaseuioselectorditry:9,left:[9,13,14],legacy:19,len:5,levelname:5,lib:4,library:8,license:1,licenses:1,life:5,lifetime:5,lifetimerequestsecfloat:5,lifetimesecfloat:5,line_count:9,line_index:9,line_length:9,link:[4,5],linux:[4,9,10,12,13,14,19],list:[2,4,5,9,10,14],listbox:9,listen:4,listendict:5,listread:5,livedebugcheckthread:18,lkeyaispressedbool:11,llc:19,llogger:4,lnotepadcancelselector:9,lnotepadokselector:9,loaded:5,localhost:5,log:[5,7,18],logger:[4,5,18],loggerdumploghandleradd:5,loggerhandlerdumploglist:5,logging:[4,5,6],login:[4,5,6],logoff:[4,5],logs:[2,5,7],logviewerbool:[5,7],look:[4,5,7],lookmachinescreenshots:5,loops:5,lordernumberselector:8,lotherbitnessprocess:9,lowercase:5,lpoint:14,lprocess:4,lprocessisstartedbool:4,lprocesslist:4,lpy64:0,lpymodules:6,lpyopenrpa_settingsdict:9,lpyopenrpasourcefolderpathstr:6,lrdpitemdict:4,lrequest:4,lresult:[5,14],lresultdict:[4,5],lresultstr:10,lrobotbitint:9,lrunbase:8,lrunbaseselector:8,ltextraw:8,ltextstr:10,ltimestr:8,luacclientdict:6,luio:[9,10],luioelementinfodict:9,luiohierarchylist:9,luioindexint:9,luioinfolist:9,luiolist:[9,10],luioobject:9,luioprocessinfodict:9,luioselectorstr:10,lwebauditmessagestr:4,lwrapperobject:9,mabspathupperstr:5,machina:5,machine:[4,5],magenthostnamestr:5,magentusernamestr:5,magicmock:9,mail:10,main:[1,3,5,6],makedirs:5,managers:[4,5],managersgitdict:5,managersprocessdict:5,markdown:19,maslov:[1,4],master:1,matchtype:[4,5],max:5,mdefaultpywinautobackend:9,message:[4,5],messageboxw:8,messages:18,method:[4,5],methodmatchurl:5,methodmatchurlbeforelist:5,mhammond:1,mhandlerdumploglist:5,microsoft:19,middle:[10,13,14],mime:4,minutes:5,mit:1,mmstr:5,mock:9,modification:2,module:[4,5,6,18],modulenamestr:4,modules:4,moduletocall:4,monitoring:4,more:[5,6],mouse:[8,14,15,19],mousedown:8,mouseup:8,moveto:[8,13],mprocessnamewoexestr:5,mrobotlogger:5,mrobotloggerfh:5,mrobotloggerformatter:5,msg_box:8,must:5,name:[4,5,9],namewoexestr:4,namewoexeupperstr:4,need:[2,11],needed:5,ner:19,newkeydict:4,newkeylist:4,newvalue:4,nlp:19,none:[2,4,5,9,10,11,13,14,18],not:[0,2,4,5,6,11],notebook:1,notepad:[2,4,9],nothingbool:[5,7],now:[4,5],nth:10,nul:15,numpy:1,object:[5,9],ocr:19,octet:4,off:[5,7],old:5,one:5,only:[2,5],op_code_1:4,open:[5,19],opencv:[1,14,19],openrpa52zzz:6,openrpa:[5,19],openrpaorchestrator:15,opensource:1,operation:4,operations:6,option:[5,7,11],optional:[4,10,11,13,14],orc:[5,7],orch:5,orchestrator:[2,4,5,6,19],orchestrator_x64:6,orchestratorinitwait:4,orchestratorisadmin:[4,6],orchestratorisinited:4,orchestratorloggerget:[4,6],orchestratormain:15,orchestratorpyopenrpa:6,orchestratorpysearchinit:[4,6],orchestratorrerunasadmin:[4,6],orchestratorrestart:4,orchestratorscheduleget:4,orchestratorsessionrestore:[4,6],orchestratorsessionsave:4,orchestratorstart:5,orchestratorthreadstart:4,org:1,oscmd:[2,4],oscredentialsverify:4,osfilebinarydatabase64strappend:2,osfilebinarydatabase64strcreate:2,osfilebinarydatabase64strreceive:2,osfilemtimeget:2,osfiletextdatastrcreate:2,osfiletextdatastrreceive:2,oslogoff:4,osremotepcrestart:[4,5],output:[2,5],outstr:4,overwrite:5,own:6,packages:4,page:[5,7],pagejsexecute:10,pageopen:10,pagescrollto:10,pallets:1,pane:8,panel:5,panels:[5,6],param:10,parent:9,pass:[4,5],password:[4,5],path:[2,4,5,6,15],pause:[9,15],pay:5,pdb:5,pdf:[1,19],pem:4,period:5,periodically:5,php:1,pickle:4,pid:4,pil:1,pillow:1,pip:[0,14],pixels:5,png:[4,14],point:19,pointclick:14,pointclickdouble:14,pointcreate:14,pointdown:14,pointmodify:14,pointmoveto:14,pointup:14,popupmenu:9,port:[4,5],portint:5,pos_end:9,pos_start:9,post:[4,5],powershell:5,predicate_func:9,press_mouse_input:9,pressed:9,print:[6,14],process:[2,4,5,9],process_id:9,processbitness:9,processdefintervalcall:4,processdetaillist:4,processisstarted:4,processlistget:4,processor:[2,3,4,5,7],processoractivityitemappend:4,processoractivityitemcreate:4,processoraliasdefcreate:4,processoraliasdefupdate:4,processordict:5,processstart:4,processstop:4,processwoexelist:4,processwoexeupperlist:4,processwoexeupperuserlistget:2,program:[4,5],programs:5,prototype:5,psf:1,psutil:[1,6],pull:[5,7],pulse:10,push:5,pwa:9,pwaspecification_get_pwaapplication:9,pwaspecification_get_uio:9,pyautogui:1,pyopenpra:[9,19],pyopenrpa:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],pyopenrpa_product_service:1,pyopenrpa_repo:4,pyopenrpa_support:1,pyopenrpa_uidesktopx32:9,pyopenrpa_uidesktopx64:9,pyopenrpadict:[5,7],pypathstr:4,pyscreeze:[1,14],python32fullpath:9,python32processname:9,python3:0,python64fullpath:9,python64processname:9,python:[0,1,4,8,9,14,17,19],pythonstart:4,pywin32:1,pywinauto:[1,9],queue:[4,5,7],queuelist:5,r01:5,r01_integrationorderout:5,r01_orchestratortorobot:5,radiobutton:9,radiobuttons:9,raised:4,ram:19,rdp:[3,4,5,7],rdpactive:5,rdpkey:4,rdpkeydict:[5,7],rdpkeystr:[5,7],rdplist:5,rdpsession:4,rdpsessioncmdrun:4,rdpsessionconnect:[4,5],rdpsessiondisconnect:[4,5],rdpsessionfilestoredrecieve:4,rdpsessionfilestoredsend:4,rdpsessionkey:5,rdpsessionkeystr:5,rdpsessionlogoff:4,rdpsessionmonitorstop:4,rdpsessionprocessstartifnotrunning:4,rdpsessionprocessstop:4,rdpsessionreconnect:[4,5],rdptemplatecreate:4,read:[2,5],readthedocs:[4,5,9],ready:9,recieve:5,recieved:5,reconnect:[4,5],reconnectbool:[5,7],recoverydict:5,rect:9,rectangle:9,red:[9,10,14],redirectclipboardbool:4,reestr_otgruzok:5,refresh:5,relative:[4,5],remember:[5,7],remote:5,replace:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19],report:5,reports:5,request:[4,5],requesting:5,requests:[1,5],requesttimeoutsecfloat:5,resolution:5,resources:[0,4,9,15,19],resourceswpy32:15,resourceswpy64:15,responsecontenttype:[4,5],responsedefrequestglobal:[4,5],responsefilepath:[4,5],responsefolderpath:[4,5],responsibility:5,responsibilitycheckintervalsec:5,responsible:5,restart:[5,7],restartorchestrator:5,restartorchestratorbool:[5,7],restartorchestratorgitpullbool:[5,7],restartpcbool:[5,7],restore:6,result:[4,5,7],returnbool:5,returnedbydatetime:5,rich_text:9,rich_text_re:9,right:[9,13,14],right_click_input:9,rights:19,robot1:4,robot:[0,5,8,9,10,11,12,13,14,15,18,19],robot_r01:5,robot_r01_help:5,robotrdpactive:5,robots:6,rolehierarchyalloweddict:5,root:[5,9],row:5,rpa:[3,4,5,8,11,14,15,16,19],rpatestdirtest:4,rst:1,rtype:10,ruledomainuserdict:5,rulemethodmatchurlbeforelist:5,run:[4,5,6],running:[2,4,17],runs:5,runtime_id:9,rus:19,safe:2,scan:11,schedule:[1,4,5],scheduler:4,scheduleractivitytimeaddweekly:4,schedulerdict:5,scopesrcul:5,screen:[0,4,5,8,19],screened:5,screenshots:[5,7],screenshotviewerbool:[5,7],scrollhorizontal:13,scrollvertical:13,scrot:[0,14],sec:5,seconds:[4,5],section:4,see:[4,5],select:9,selected_index:9,selected_indices:9,selected_text:9,selection_indices:9,selenium:[1,10],seleniumhq:1,self:9,semantic:1,send:[2,4,5,7,8,11],send_keys:9,sendinput:9,sent:5,server:[2,4,5,7,17,19],serverdict:5,serverinstance:5,serversettings:5,serverthread:5,sesion:5,session:[2,4,5],sessionguidstr:5,sessionhex:[4,5],sessionisignoredbool:[4,5],sessioniswindowexistbool:[4,5],sessioniswindowresponsiblebool:[4,5],set:[2,5,12],set_check_indeterminate:9,set_edit_text:[8,9],set_focus:9,set_foreground:9,set_item_focus:9,set_text:9,set_trace:5,set_window_text:9,setformatter:5,setlevel:[5,6],settings:[2,5,6],settingsinit:9,settingstemplate:[5,6],settingsupdate:[4,6],setup:5,setxkbmap:[0,11],shareddrivelist:[4,5],shell:15,shift:11,should:5,show:[5,7],side:[5,7,18],signal:18,simple:4,since:5,singleton:2,site:4,size:5,sleep:[5,8,10],snipp:11,software:1,some:[5,7],someprocess:18,sources:[6,19],special:5,split:8,src:9,ssl:4,stable:5,standart:5,staragedict:4,start:[2,4,6,9],started:4,starts:[5,6],statictext:9,status:4,statuscheckstart:4,stdout:5,stop:[4,18],stopsafe:19,storage:[4,5],storagedict:[4,5],storagerobotexists:4,storagerobotget:4,stored:5,str:[2,4,5,9,10,11,12,13,14],stream:4,streamhandler:5,strftime:5,strict:14,string:2,struct:5,structure:5,studio:19,studio_x64:17,studiopyopenrpa:17,style:8,success:4,successfully:5,sudo:[0,12,14],supertoken:6,superuser:6,support:[1,19],svelte:10,sys:[4,5,6,15],tabcontrol:9,taskkill:18,technical:5,technicalsessionguidcache:5,telegram:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],tenchat:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],test2:5,test:[2,4,5,6],testdef:4,testdefalias:4,testdir:4,testdirtest:4,testrdp:5,text:[2,4,8,9],text_block:9,texts:9,than:5,that:18,the:[2,4,5,6,7,18],there:5,thickness:9,thread:[4,5,7,18],threadbool:4,threaded:5,threadidint:5,threading:4,thunderrt6textbox:9,thundertextbox:9,thursday:4,time:[2,5,8,10,11],timehh:5,times:5,timestamp:2,title:[8,9],title_re:9,tmemo:9,tokendatetime:5,too:5,tool:5,tools:[6,18],top:[9,14],top_level_only:9,top_level_parent:9,tpanel:9,transmit:2,transmition:[2,5],trigger:5,triggercountint:5,trunk:1,ttt:5,turn:[5,7],turn_off_numlock:9,txt:[1,4],type:[5,10],type_keys:9,uac:[4,19],uacbool:[4,5],uackeylistcheck:4,uacsupertokenupdate:[4,6],uacupdate:[4,6],uacuserdictget:4,ubuntu:19,uia:[8,9],uidesktop:[8,15,19],uio:[10,17,19],uio_focushighlight:9,uio_getctrlindex_int:9,uio_highlight:9,uio_wait_interval_sec_float:10,uio_wait_sec_float:10,uioattributeget:10,uioattributeremove:10,uioattributeset:10,uioattributestyleget:10,uioattributestyleremove:10,uioattributestyleset:10,uioclick:10,uioei_convert_uioinfo:9,uioinfo:9,uiomousesearchinit:10,uiomousesearchreturn:10,uioselector:9,uioselector_exist_bool:9,uioselector_focushighlight:9,uioselector_get_bitnessint:9,uioselector_get_bitnessstr:9,uioselector_get_uio:[8,9],uioselector_get_uioactivitylist:9,uioselector_get_uioinfo:9,uioselector_get_uioinfolist:9,uioselector_get_uiolist:9,uioselector_getchildlist_uiolist:9,uioselector_highlight:9,uioselector_safeotherget_process:9,uioselector_searchchildbymouse_uio:9,uioselector_searchchildbymouse_uiotree:9,uioselector_searchprocessnormalize_uioselector:9,uioselector_searchuionormalize_uioselector:9,uioselector_tryrestore_dict:9,uioselector_uio_get:9,uioselectorclick:10,uioselectordetect:10,uioselectorfirst:10,uioselectorhighlight:10,uioselectorlist:10,uioselectorsecs_waitappear_bool:9,uioselectorsecs_waitdisappear_bool:9,uioselectorssecs_waitappear_list:9,uioselectorssecs_waitdisappear_list:9,uioselectoruioactivity_run_dict:9,uioselectorwaitappear:10,uioselectorwaitdisappear:10,uiotextget:10,uioxy_searchchild_listdict:9,uiweb:[8,15,19],uncheck:9,unicode:11,unicodelabs:19,updated:5,updates:5,upper:[2,5],url:[4,5,10],urlindexstr:5,urllist:5,urls:5,usage:4,use:[2,5,7,18],use_log:9,usecachebool:4,user32:8,user:[2,4,5,6,7],user_99:4,user_pass_here:4,useradstr:5,username:4,usernameupperstr:4,userupperstr:5,utf:[2,4],utils:[0,5,9,11,19],v228:1,v8toplevelframesdi:8,v8toplevelframetaxistarter:[8,9],value:5,valueerror:[13,14],variable:4,verification:1,verify:9,verify_actible:9,verify_enabled:9,verify_visible:9,version:4,versionstr:5,viewer:[5,7],virtual:5,visible:9,visible_only:9,vista:19,vk_packet:9,vms:4,voice:19,wait:[2,9,11,18],wait_not:9,want:[5,7],warning:5,warningexecutionmorethansecfloat:5,was:[2,5],was_maximized:9,way:6,web:[4,5,9,10,19],webaudit:4,webauditmessagecreate:4,webcpupdate:4,webdriver:10,webelement:10,weblistencreate:[4,6],webrequestget:4,webrequestparsebodybytes:4,webrequestparsebodyjson:4,webrequestparsebodystr:4,webrequestparsefile:4,webrequestparsepath:4,webrequestresponsesend:4,weburlconnectdef:4,weburlconnectfile:4,weburlconnectfolder:4,weburlindexchange:4,webuserinfoget:4,webuserissupertoken:4,webuseruachierarchyget:4,wednesday:4,weekday:5,weekdaylist:5,wexe:4,whatsapp:1,wheel_dist:9,wheel_mouse_input:9,when:[4,5],where:2,which:5,who:5,width:[4,5,9,14],wiki:8,will:[2,4,5,6],win32:[8,9,19],win32api:1,win32defines:9,win32structures:9,win:8,windll:8,window:[2,5],window_text:9,windowclasses:9,windows:[2,4,9,10,11,12,13,14,19],windowsforms:9,winpython:1,with_newlines:9,with_spaces:9,with_tabs:9,without:[2,4,5],wm_close:18,wmi:1,working:[4,18],workingdirectorypathstr:5,works:5,world:[10,11,12],wpy32:[0,9,15],wpy64:[0,4,9],write:[2,8,11],www:1,x11:[0,11],x32:[0,9],x64:[0,9],xclip:[0,12],xkb:[0,11],xlsx:5,xpath:10,yellow:10,you:[2,4,5,6,7,18],your:[5,15]},titles:["1. \u041f\u0435\u0440\u0432\u044b\u0439 \u0437\u0430\u043f\u0443\u0441\u043a (Windows & Linux)","2. \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044f & \u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b","2. \u0424\u0443\u043d\u043a\u0446\u0438\u0438","1. \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435","2. \u0424\u0443\u043d\u043a\u0446\u0438\u0438","3. \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 GSettings (\u0448\u0430\u0431\u043b\u043e\u043d)","4. \u041a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c?","5. \u041f\u0440\u0430\u0432\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 UAC","1. \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435","2. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 UIDesktop","3. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 UIWeb","4. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 Keyboard","5. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 Clipboard","6. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 Mouse","7. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 Screen","8. \u041a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c?","1. \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435","2. \u041a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c?","2. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 StopSafe","\u041f\u043e\u0440\u0442\u0430\u043b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 pyOpenRPA"],titleterms:{"\u0430\u0432\u0442\u043e\u0440":1,"\u0430\u0433\u0435\u043d\u0442":19,"\u0430\u043a\u0442\u0438\u0432\u043d":4,"\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440":3,"\u0431\u0443\u0434\u0435\u0442":17,"\u0431\u0443\u0434\u0443\u0442":17,"\u0431\u044b\u0441\u0442\u0440":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],"\u0432":[11,17],"\u0433\u0435\u043d\u0435\u0440\u0430\u043b\u044c\u043d":1,"\u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d":3,"\u0434\u0435\u0439\u0441\u0442\u0432":17,"\u0434\u0435\u0440\u0435\u0432":17,"\u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440":1,"\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446":19,"\u0434\u043e\u043f":11,"\u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d":11,"\u0434\u043e\u0440\u043e\u0433":19,"\u0434\u043e\u0441\u0442\u0443\u043f":7,"\u0435\u0434\u0438\u043d":3,"\u0437\u0430\u0436\u0430":17,"\u0437\u0430\u043f\u0443\u0441\u043a":0,"\u0437\u0430\u043f\u0443\u0441\u0442":[6,15,17],"\u0438":[17,19],"\u0438\u0432\u0430":1,"\u0438\u0437":[15,19],"\u0438\u0437\u0432\u043b\u0435\u0447":17,"\u0438\u043d\u0442\u0435\u0440\u0435\u0441":17,"\u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0442\u043e\u0440":15,"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430":[6,15,17],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d":11,"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c":1,"\u0438\u0442\u043e\u0433":17,"\u043a\u0430\u043a":[6,15,17],"\u043a\u043b\u0430\u0432\u0438\u0448":[11,17],"\u043a\u043b\u0430\u0441\u0441":14,"\u043a\u043b\u0438\u0435\u043d\u0442":1,"\u043a\u043d\u043e\u043f\u043a":17,"\u043a\u043e\u0434":11,"\u043a\u043e\u043b\u043b\u0435\u0433":19,"\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442":1,"\u043a\u043e\u043d\u0442\u0430\u043a\u0442":1,"\u043a\u043e\u043d\u0446\u0435\u043f\u0446":3,"\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d":0,"\u043a\u043e\u0442\u043e\u0440":17,"\u043a\u0443\u0440\u0441\u043e\u0440":17,"\u043b\u0438\u0446\u0435\u043d\u0437":[1,19],"\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u043e\u043d":1,"\u043c\u0430\u0441\u043b":1,"\u043c\u043e\u0434\u0443\u043b":19,"\u043c\u044b\u0448":17,"\u043d\u0430":17,"\u043d\u0430\u0432\u0435\u0434\u0435\u043d":17,"\u043d\u0430\u0432\u0435\u0441\u0442":17,"\u043d\u0430\u0432\u0438\u0433\u0430\u0446":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],"\u043d\u0430\u0436\u0430":17,"\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a":3,"\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a":[5,6,11],"\u043e":19,"\u043e\u0431\u043b\u0430\u0441\u0442":14,"\u043e\u0431\u0449":[3,4,5,8,9,10,11,13,14,16,17,19],"\u043e\u0431\u044a\u0435\u043a\u0442":17,"\u043e\u0433\u043b\u0430\u0432\u043b\u0435\u043d":19,"\u043e\u043e":1,"\u043e\u043f":1,"\u043e\u043f\u0438\u0441\u0430\u043d":[3,7,8,9,10,11,12,13,14,16,17],"\u043e\u0440\u043a\u0435\u0441\u0442\u0440\u0430\u0442\u043e\u0440":19,"\u043e\u0442\u043e\u0431\u0440\u0430\u0436":17,"\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440":6,"\u043f\u0435\u0440\u0432":0,"\u043f\u043e":17,"\u043f\u043e\u0434":15,"\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a":1,"\u043f\u043e\u0438\u0441\u043a":17,"\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b":7,"\u043f\u043e\u0440\u0442\u0430":19,"\u043f\u043e\u0440\u0442\u0430\u043b":19,"\u043f\u0440\u0430\u0432":7,"\u043f\u0440\u0430\u0432\u043e\u043e\u0431\u043b\u0430\u0434\u0430\u0442\u0435\u043b":1,"\u043f\u0440\u0438\u043c\u0435\u0440":[8,11],"\u043f\u0440\u043e\u0432\u0435\u0440":0,"\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c":19,"\u0440\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442":0,"\u0440\u0430\u0437\u0434\u0435\u043b":19,"\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440":19,"\u0440\u043e\u0431\u043e\u0442":[15,19],"\u0440\u043f\u0430":1,"\u0441\u0432\u043e\u0439\u0441\u0442\u0432":17,"\u0441\u0435\u043a\u0443\u043d\u0434":17,"\u0441\u0435\u043b\u0435\u043a\u0442\u043e\u0440":9,"\u0441\u0438\u043c\u0432\u043e\u043b\u044c\u043d":14,"\u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442":17,"\u0441\u043a\u0440\u0438\u043f\u0442":15,"\u0441\u043b\u0435\u0434":19,"\u0441\u043b\u043e\u0432\u0430\u0440":3,"\u0441\u043e\u0441\u0442\u043e":19,"\u0441\u0442\u043e\u0440\u043e\u043d":1,"\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440":[5,19],"\u0441\u0442\u0443\u0434":[17,19],"\u0442\u0430\u043a":4,"\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a":19,"\u0442\u043e\u0447\u043a":14,"\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d":19,"\u0443\u043a\u0430\u0437\u0430\u043d":14,"\u0444\u0430\u0439\u043b":15,"\u0444\u0443\u043d\u043a\u0446":[2,4,9,10,11,12,13,14,18],"\u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d":11,"\u0446\u0435\u043d\u0442\u0440":1,"\u0447\u0438\u0441\u0442\u043e\u0442":1,"\u0447\u0442\u043e":[0,4],"\u0448\u0430\u0431\u043b\u043e\u043d":5,"for":7,__agent__:2,activityitem:4,agent:2,and:17,are:17,box:14,choose:17,click:17,clipboard:12,cmd:15,ctrl:17,dict:7,execute:15,expand:17,gsettings:[3,5],inanchorrulestr:14,inpointrulestr:14,interested:17,keyboard:11,linux:[0,11],list:17,mouse:[13,17],object:17,orchestrator:7,point:14,property:17,pyopenrpa:[0,2,19],python:15,rights:7,screen:14,script:15,search:17,selected:17,stopsafe:18,the:17,tree:17,uac:7,uidesktop:9,uio:9,uiweb:10,viewer:17,web:7,wiki:19,windows:0,x32:15,x64:15,you:17}}) \ No newline at end of file +Search.setIndex({docnames:["01_HowToInstall","03_Copyrights_Contacts","Agent/02_Defs","Orchestrator/01_Orchestrator","Orchestrator/02_Defs","Orchestrator/03_gSettingsTemplate","Orchestrator/04_HowToUse","Orchestrator/05_UAC","Robot/01_Robot","Robot/02_uidesktop","Robot/03_uiweb","Robot/04_keyboard","Robot/05_clipboard","Robot/06_mouse","Robot/07_screen","Robot/08_HowToUse","Studio/01_Studio","Studio/02_HowToUse","Tools/02_Defs","index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["01_HowToInstall.rst","03_Copyrights_Contacts.rst","Agent\\02_Defs.rst","Orchestrator\\01_Orchestrator.rst","Orchestrator\\02_Defs.rst","Orchestrator\\03_gSettingsTemplate.rst","Orchestrator\\04_HowToUse.rst","Orchestrator\\05_UAC.rst","Robot\\01_Robot.rst","Robot\\02_uidesktop.rst","Robot\\03_uiweb.rst","Robot\\04_keyboard.rst","Robot\\05_clipboard.rst","Robot\\06_mouse.rst","Robot\\07_screen.rst","Robot\\08_HowToUse.rst","Studio\\01_Studio.rst","Studio\\02_HowToUse.rst","Tools\\02_Defs.rst","index.rst"],objects:{"pyOpenRPA.Agent":{__Agent__:[2,0,0,"-"]},"pyOpenRPA.Agent.__Agent__":{OSCMD:[2,1,1,""],OSFileBinaryDataBase64StrAppend:[2,1,1,""],OSFileBinaryDataBase64StrCreate:[2,1,1,""],OSFileBinaryDataBase64StrReceive:[2,1,1,""],OSFileMTimeGet:[2,1,1,""],OSFileTextDataStrCreate:[2,1,1,""],OSFileTextDataStrReceive:[2,1,1,""],ProcessWOExeUpperUserListGet:[2,1,1,""]},"pyOpenRPA.Orchestrator":{__Orchestrator__:[4,0,0,"-"]},"pyOpenRPA.Orchestrator.__Orchestrator__":{ActivityItemCreate:[4,1,1,""],ActivityItemDefAliasCreate:[4,1,1,""],ActivityItemDefAliasModulesLoad:[4,1,1,""],ActivityItemDefAliasUpdate:[4,1,1,""],ActivityItemHelperDefAutofill:[4,1,1,""],ActivityItemHelperDefList:[4,1,1,""],AgentActivityItemAdd:[4,1,1,""],AgentActivityItemExists:[4,1,1,""],AgentActivityItemReturnExists:[4,1,1,""],AgentActivityItemReturnGet:[4,1,1,""],AgentOSCMD:[4,1,1,""],AgentOSFileBinaryDataBase64StrAppend:[4,1,1,""],AgentOSFileBinaryDataBase64StrCreate:[4,1,1,""],AgentOSFileBinaryDataBase64StrReceive:[4,1,1,""],AgentOSFileBinaryDataBytesCreate:[4,1,1,""],AgentOSFileBinaryDataReceive:[4,1,1,""],AgentOSFileSend:[4,1,1,""],AgentOSFileTextDataStrCreate:[4,1,1,""],AgentOSFileTextDataStrReceive:[4,1,1,""],AgentOSLogoff:[4,1,1,""],AgentProcessWOExeUpperUserListGet:[4,1,1,""],GSettingsGet:[4,1,1,""],GSettingsKeyListValueAppend:[4,1,1,""],GSettingsKeyListValueGet:[4,1,1,""],GSettingsKeyListValueOperatorPlus:[4,1,1,""],GSettingsKeyListValueSet:[4,1,1,""],OSCMD:[4,1,1,""],OSCredentialsVerify:[4,1,1,""],OSLogoff:[4,1,1,""],OSRemotePCRestart:[4,1,1,""],OSRestart:[4,1,1,""],Orchestrator:[4,1,1,""],OrchestratorInitWait:[4,1,1,""],OrchestratorIsAdmin:[4,1,1,""],OrchestratorIsInited:[4,1,1,""],OrchestratorLoggerGet:[4,1,1,""],OrchestratorPySearchInit:[4,1,1,""],OrchestratorRerunAsAdmin:[4,1,1,""],OrchestratorRestart:[4,1,1,""],OrchestratorScheduleGet:[4,1,1,""],OrchestratorSessionRestore:[4,1,1,""],OrchestratorSessionSave:[4,1,1,""],OrchestratorThreadStart:[4,1,1,""],ProcessDefIntervalCall:[4,1,1,""],ProcessIsStarted:[4,1,1,""],ProcessListGet:[4,1,1,""],ProcessStart:[4,1,1,""],ProcessStop:[4,1,1,""],ProcessorActivityItemAppend:[4,1,1,""],ProcessorActivityItemCreate:[4,1,1,""],ProcessorAliasDefCreate:[4,1,1,""],ProcessorAliasDefUpdate:[4,1,1,""],PythonStart:[4,1,1,""],RDPSessionCMDRun:[4,1,1,""],RDPSessionConnect:[4,1,1,""],RDPSessionDisconnect:[4,1,1,""],RDPSessionFileStoredRecieve:[4,1,1,""],RDPSessionFileStoredSend:[4,1,1,""],RDPSessionLogoff:[4,1,1,""],RDPSessionMonitorStop:[4,1,1,""],RDPSessionProcessStartIfNotRunning:[4,1,1,""],RDPSessionProcessStop:[4,1,1,""],RDPSessionReconnect:[4,1,1,""],RDPTemplateCreate:[4,1,1,""],SchedulerActivityTimeAddWeekly:[4,1,1,""],StorageRobotExists:[4,1,1,""],StorageRobotGet:[4,1,1,""],UACKeyListCheck:[4,1,1,""],UACSuperTokenUpdate:[4,1,1,""],UACUpdate:[4,1,1,""],UACUserDictGet:[4,1,1,""],WebAuditMessageCreate:[4,1,1,""],WebCPUpdate:[4,1,1,""],WebListenCreate:[4,1,1,""],WebRequestGet:[4,1,1,""],WebRequestParseBodyBytes:[4,1,1,""],WebRequestParseBodyJSON:[4,1,1,""],WebRequestParseBodyStr:[4,1,1,""],WebRequestParseFile:[4,1,1,""],WebRequestParsePath:[4,1,1,""],WebRequestResponseSend:[4,1,1,""],WebURLConnectDef:[4,1,1,""],WebURLConnectFile:[4,1,1,""],WebURLConnectFolder:[4,1,1,""],WebURLIndexChange:[4,1,1,""],WebUserInfoGet:[4,1,1,""],WebUserIsSuperToken:[4,1,1,""],WebUserUACHierarchyGet:[4,1,1,""]},"pyOpenRPA.Robot":{Clipboard:[12,0,0,"-"],Keyboard:[11,0,0,"-"],Mouse:[13,0,0,"-"],Screen:[14,0,0,"-"],UIDesktop:[9,0,0,"-"],UIWeb:[10,0,0,"-"]},"pyOpenRPA.Robot.Clipboard":{Get:[12,1,1,""],Set:[12,1,1,""]},"pyOpenRPA.Robot.Keyboard":{"KEY_RUS_\u0416":[11,2,1,"pyOpenRPA.Robot.Keyboard.KEY_RUS_"],Down:[11,1,1,""],HotkeyCombination:[11,1,1,""],HotkeyCtrlA_CtrlC:[11,1,1,""],HotkeyCtrlV:[11,1,1,""],IsDown:[11,1,1,""],KEY_ENG_COLON:[11,2,1,""],KEY_HOT_COLON:[11,2,1,""],Send:[11,1,1,""],Up:[11,1,1,""],Wait:[11,1,1,""],Write:[11,1,1,""]},"pyOpenRPA.Robot.Mouse":{Click:[13,1,1,""],ClickDouble:[13,1,1,""],Down:[13,1,1,""],MoveTo:[13,1,1,""],ScrollHorizontal:[13,1,1,""],ScrollVertical:[13,1,1,""],Up:[13,1,1,""]},"pyOpenRPA.Robot.Screen":{BoxAnchorRuleCheck:[14,1,1,""],BoxCreate:[14,1,1,""],BoxDraw:[14,1,1,""],BoxGetPoint:[14,1,1,""],BoxModify:[14,1,1,""],BoxMoveTo:[14,1,1,""],BoxOverlay:[14,1,1,""],ImageClick:[14,1,1,""],ImageExists:[14,1,1,""],ImageLocateAll:[14,1,1,""],ImageWaitAppear:[14,1,1,""],ImageWaitDisappear:[14,1,1,""],PointClick:[14,1,1,""],PointClickDouble:[14,1,1,""],PointCreate:[14,1,1,""],PointDown:[14,1,1,""],PointModify:[14,1,1,""],PointMoveTo:[14,1,1,""],PointUp:[14,1,1,""]},"pyOpenRPA.Robot.UIDesktop":{BackendStr_GetTopLevelList_UIOInfo:[9,1,1,""],Get_OSBitnessInt:[9,1,1,""],PWASpecification_Get_PWAApplication:[9,1,1,""],PWASpecification_Get_UIO:[9,1,1,""],UIOEI_Convert_UIOInfo:[9,1,1,""],UIOSelectorSecs_WaitAppear_Bool:[9,1,1,""],UIOSelectorSecs_WaitDisappear_Bool:[9,1,1,""],UIOSelectorUIOActivity_Run_Dict:[9,1,1,""],UIOSelector_Exist_Bool:[9,1,1,""],UIOSelector_FocusHighlight:[9,1,1,""],UIOSelector_GetChildList_UIOList:[9,1,1,""],UIOSelector_Get_BitnessInt:[9,1,1,""],UIOSelector_Get_BitnessStr:[9,1,1,""],UIOSelector_Get_UIO:[9,1,1,""],UIOSelector_Get_UIOActivityList:[9,1,1,""],UIOSelector_Get_UIOInfo:[9,1,1,""],UIOSelector_Get_UIOInfoList:[9,1,1,""],UIOSelector_Get_UIOList:[9,1,1,""],UIOSelector_Highlight:[9,1,1,""],UIOSelector_SafeOtherGet_Process:[9,1,1,""],UIOSelector_SearchChildByMouse_UIO:[9,1,1,""],UIOSelector_SearchChildByMouse_UIOTree:[9,1,1,""],UIOSelector_SearchProcessNormalize_UIOSelector:[9,1,1,""],UIOSelector_SearchUIONormalize_UIOSelector:[9,1,1,""],UIOSelector_TryRestore_Dict:[9,1,1,""],UIOSelectorsSecs_WaitAppear_List:[9,1,1,""],UIOSelectorsSecs_WaitDisappear_List:[9,1,1,""],UIOXY_SearchChild_ListDict:[9,1,1,""],UIO_FocusHighlight:[9,1,1,""],UIO_GetCtrlIndex_Int:[9,1,1,""],UIO_Highlight:[9,1,1,""]},"pyOpenRPA.Robot.UIWeb":{BrowserChange:[10,1,1,""],BrowserChromeStart:[10,1,1,""],BrowserClose:[10,1,1,""],PageJSExecute:[10,1,1,""],PageOpen:[10,1,1,""],PageScrollTo:[10,1,1,""],UIOAttributeGet:[10,1,1,""],UIOAttributeRemove:[10,1,1,""],UIOAttributeSet:[10,1,1,""],UIOAttributeStyleGet:[10,1,1,""],UIOAttributeStyleRemove:[10,1,1,""],UIOAttributeStyleSet:[10,1,1,""],UIOClick:[10,1,1,""],UIOMouseSearchInit:[10,1,1,""],UIOMouseSearchReturn:[10,1,1,""],UIOSelectorClick:[10,1,1,""],UIOSelectorDetect:[10,1,1,""],UIOSelectorFirst:[10,1,1,""],UIOSelectorHighlight:[10,1,1,""],UIOSelectorList:[10,1,1,""],UIOSelectorWaitAppear:[10,1,1,""],UIOSelectorWaitDisappear:[10,1,1,""],UIOTextGet:[10,1,1,""]},"pyOpenRPA.Tools":{Debugger:[18,0,0,"-"],StopSafe:[18,0,0,"-"]},"pyOpenRPA.Tools.Debugger":{LiveDebugCheckThread:[18,1,1,""]},"pyOpenRPA.Tools.StopSafe":{Init:[18,1,1,""],IsStopSafe:[18,1,1,""]}},objnames:{"0":["py","module","Python \u043c\u043e\u0434\u0443\u043b\u044c"],"1":["py","function","Python \u0444\u0443\u043d\u043a\u0446\u0438\u044f"],"2":["py","data","Python \u0434\u0430\u043d\u043d\u044b\u0435"]},objtypes:{"0":"py:module","1":"py:function","2":"py:data"},terms:{"000":19,"000036":8,"0x0c":11,"0x0d":11,"0x0e":11,"0x0f":11,"0x1":11,"0x10":11,"0x11":11,"0x11c":11,"0x11d":11,"0x12":11,"0x13":11,"0x137":11,"0x138":11,"0x14":11,"0x15":11,"0x15d":11,"0x16":11,"0x17":11,"0x18":11,"0x19":11,"0x1a":11,"0x1b":11,"0x1c":11,"0x1d":11,"0x1e":11,"0x1f":11,"0x2":11,"0x20":11,"0x21":11,"0x22":11,"0x23":11,"0x24":11,"0x25":11,"0x26":11,"0x27":11,"0x28":11,"0x29":11,"0x2a":11,"0x2b":11,"0x2c":11,"0x2d":11,"0x2e":11,"0x2f":11,"0x3":11,"0x30":11,"0x31":11,"0x32":11,"0x33":11,"0x34":11,"0x35":11,"0x36":11,"0x37":11,"0x38":11,"0x39":11,"0x3a":11,"0x3b":11,"0x3c":11,"0x3d":11,"0x3e":11,"0x3f":11,"0x4":11,"0x40":11,"0x41":11,"0x42":11,"0x43":11,"0x44":11,"0x45":11,"0x46":11,"0x47":11,"0x48":11,"0x49":11,"0x4a":11,"0x4b":11,"0x4c":11,"0x4d":11,"0x4e":11,"0x4f":11,"0x5":11,"0x50":11,"0x51":11,"0x52":11,"0x53":11,"0x57":11,"0x58":11,"0x5b":11,"0x5c":11,"0x6":11,"0x7":11,"0x7c":11,"0x7d":11,"0x7e":11,"0x7f":11,"0x8":11,"0x80":11,"0x81":11,"0x82":11,"0x83":11,"0x84":11,"0x85":11,"0x86":11,"0x87":11,"0x9":11,"0xa":11,"0xb":11,"100":[5,8,9,10,11,13,14],"1000":14,"100px":13,"101":4,"105":8,"1050":[4,5],"120":5,"1200":5,"121":4,"1227700251350":1,"123":4,"125310":1,"127":4,"130":8,"140124673757368":9,"141":1,"150":[8,13,14],"150px":13,"160":14,"1680":[4,5],"1680x1050":5,"197022":1,"1\u0433\u043e":14,"1yvqfic":10,"200":[9,13,14],"2008":19,"2012":19,"2016":19,"2019":19,"2019\u0433":1,"2021\u0433":1,"2022":19,"2022\u0433":1,"222":5,"230":8,"233":1,"265":14,"299":19,"2999226":19,"2python":15,"2y66pa":10,"300":5,"3105":0,"32768":9,"3389":[4,5],"3600":5,"3720":[0,4,9,15],"3720python":15,"412":4,"443":4,"460":14,"50000000":5,"512":19,"600":5,"640x480":5,"722":1,"771801001":1,"77767775":4,"77777sdfsdf77777dsfdfsf77777777":4,"8081":5,"86400":9,"900":19,"906":1,"9718191421":1,"995":1,"\u0430":[1,4,11,15,19],"\u0430\u0431\u0441\u043e\u043b\u044e\u0442\u043d":[4,9,14],"\u0430\u0432\u0442\u043e\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446":4,"\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446":19,"\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430":19,"\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a":[4,9,17],"\u0430\u0432\u0442\u043e\u0440":19,"\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430":4,"\u0430\u0432\u0442\u043e\u0442\u0435\u0441\u0442":19,"\u0430\u0433\u0435\u043d\u0442":4,"\u0430\u0434\u0430\u043f\u0442\u0438\u0432\u043d":3,"\u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440":4,"\u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0440\u0430\u0442\u043e\u0440":4,"\u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d":[3,19],"\u0430\u0434\u0440\u0435\u0441":[1,4,6,9,10,19],"\u0430\u0434\u0440\u0435\u0441\u0430\u0446":9,"\u0430\u0434\u0440\u0435\u0441\u0441\u0430\u0446":9,"\u0430\u043a\u0442\u0438\u0432\u0430\u0446":19,"\u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430":17,"\u0430\u043a\u0442\u0438\u0432\u043d":[3,9,10,11,17,19],"\u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d":4,"\u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c":19,"\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d":4,"\u0430\u043d\u0430\u043b\u0438\u0437":4,"\u0430\u043d\u0430\u043b\u043e\u0433":19,"\u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d":[13,14],"\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a":11,"\u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442":[4,9,10,13],"\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440":[4,19],"\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d":3,"\u0430\u0441\u0438\u043d\u0445\u0440\u043e\u043d":[3,4],"\u0430\u0441\u0444\u0440":8,"\u0430\u0442\u0440\u0438\u0431\u0443\u0442":[9,10,19],"\u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0438\u0432\u043d":9,"\u0430\u0443\u0434":4,"\u0430\u0443\u0434\u0438\u0442":[4,19],"\u0431\u0430\u0437":9,"\u0431\u0430\u0437\u043e\u0432":[4,9,11,13,14],"\u0431\u0430\u0439\u0442":4,"\u0431\u0435\u0437":[0,4,15,19],"\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d":[3,4,7,19],"\u0431\u0435\u0441\u043f\u0435\u0440\u0435\u0431\u043e\u0439\u043d":3,"\u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d":[1,19],"\u0431\u0435\u0441\u0441\u0440\u043e\u0447\u043d":19,"\u0431\u0435\u0441\u0448\u043e\u0432\u043d":3,"\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a":[8,9,11,15,19],"\u0431\u0438\u0437\u043d\u0435\u0441":[3,4,8,14,16,19],"\u0431\u0438\u043d\u0430\u0440\u043d":4,"\u0431\u0438\u0442":9,"\u0431\u043b\u043e\u043a":4,"\u0431\u043b\u043e\u043a\u0438\u0440":[10,11,19],"\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a":1,"\u0431\u043b\u043e\u043a\u043d\u043e\u0442":4,"\u0431\u043e\u043b":[4,6,9,19],"\u0431\u043e\u043b\u044c\u0448":[9,19],"\u0431\u043e\u0442":19,"\u0431\u0440\u0430\u0443\u0437\u0435\u0440":[8,10,16,17,19],"\u0431\u0443\u0434\u0435\u0442":[0,3,4,8,9,10,11,14,16,19],"\u0431\u0443\u0434\u0443\u0442":[4,7,15],"\u0431\u0443\u043a\u0432":[8,11],"\u0431\u0443\u043b\u0435\u0432":[9,14],"\u0431\u0443\u0444\u0435\u0440":[0,4,8,11,12,15,19],"\u0431\u044b":[9,14],"\u0431\u044b\u043b":[0,3,4,9,11],"\u0431\u044b\u0442":[3,4,7,9,10,19],"\u0432":[0,1,3,4,6,7,8,9,10,12,13,14,15,16,19],"\u0432\u0430\u043c":[1,3,4],"\u0432\u0430\u0440\u0438\u0430\u043d\u0442":[0,4,9,10,13,14,19],"\u0432\u0430\u0441":[1,3,7,8,11,14,16,17,19],"\u0432\u0430\u0448":[3,8,14,16],"\u0432\u0432\u0435\u0434":9,"\u0432\u0432\u0435\u0440\u0445":[13,14],"\u0432\u0432\u0435\u0441\u0442":11,"\u0432\u0432\u043e\u0434":[9,11],"\u0432\u0435":4,"\u0432\u0435\u0431":[3,4,8,9,10,15,16,19],"\u0432\u0435\u0434\u0435\u0442":9,"\u0432\u0435\u043b\u0438\u0447\u0438\u043d":10,"\u0432\u0435\u043d\u0434\u043e\u0440":19,"\u0432\u0435\u0440":13,"\u0432\u0435\u0440\u0438\u0444\u0438\u043a\u0430\u0446":4,"\u0432\u0435\u0440\u043d":4,"\u0432\u0435\u0440\u043d\u0435\u0442":[4,11],"\u0432\u0435\u0440\u043d\u0443\u0442":[4,9,14],"\u0432\u0435\u0440\u0441":[3,4,17,19],"\u0432\u0435\u0440\u0442\u0438\u043a\u0430":[10,14],"\u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b":14,"\u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d":[10,13,14],"\u0432\u0435\u0440\u0445\u043d":[4,9,13,14],"\u0432\u0435\u0447\u043d":4,"\u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432":[0,4,8,9,10,11,12,13,14,15,16],"\u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430":9,"\u0432\u0437\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432":9,"\u0432\u0437\u044f\u0442":4,"\u0432\u0438\u0434":[4,9],"\u0432\u0438\u0434\u0438\u043c":9,"\u0432\u0438\u0434\u043d":9,"\u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d":[9,19],"\u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d":[3,8,13,14,16],"\u0432\u043a\u043b\u0430\u0434\u043a":9,"\u0432\u043a\u043b\u044e\u0447":9,"\u0432\u043a\u043b\u044e\u0447\u0435\u043d":9,"\u0432\u043a\u043e\u043d\u0442\u0430\u043a\u0442":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],"\u0432\u043b\u0435\u0432":[9,13,14],"\u0432\u043b\u043e\u0436\u0435\u043d":9,"\u0432\u043c\u0435\u0441\u0442":10,"\u0432\u043d\u0435":4,"\u0432\u043d\u0435\u0434\u0440\u0435\u043d":3,"\u0432\u043d\u0435\u0441\u0442":7,"\u0432\u043d\u0438\u0437":[13,14],"\u0432\u043d\u0438\u043c\u0430\u043d":[1,4,9,10,11,12,13,14,17,19],"\u0432\u043d\u043e\u0441":3,"\u0432\u043d\u0443\u0442\u0440":[4,9,15],"\u0432\u043e":[4,9],"\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430":[4,9,10],"\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d":19,"\u0432\u043e\u0437\u043c\u043e\u0436\u043d":[3,8,9,13,14,16,19],"\u0432\u043e\u0437\u043d\u0438\u043a\u0430":19,"\u0432\u043e\u0437\u043d\u0438\u043a\u043b":0,"\u0432\u043e\u0437\u043d\u0438\u043a\u043d\u0435\u0442":[4,9],"\u0432\u043e\u0437\u043d\u0438\u043a\u043d\u0443\u0442":19,"\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430":11,"\u0432\u043e\u043a\u0440\u0443\u0433":9,"\u0432\u043e\u043f\u0440\u043e\u0441":[1,3,7,8,14,16,19],"\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d":4,"\u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430":3,"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430":4,"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432":[4,9,11],"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b":11,"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d":[4,9],"\u0432\u043f\u043b\u043e\u0442":19,"\u0432\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432":11,"\u0432\u043f\u0440\u0430\u0432":[9,13,14],"\u0432\u0440\u0435\u043c":[3,4,8,9,10,11,13,14],"\u0432\u0440\u0435\u043c\u0435\u043d":[4,11],"\u0432\u0441\u0435":[0,3,4,7,9,11,15,17,19],"\u0432\u0441\u0435\u0433":[3,8,14,16,19],"\u0432\u0441\u0435\u0433\u0434":[3,4,7,8,9,14,16,19],"\u0432\u0441\u0435\u043c":[1,4,9,14,19],"\u0432\u0441\u0435\u0445":[4,9,10,14,19],"\u0432\u0441\u043f\u043e\u043c\u043e\u0433\u0430\u0442\u0435\u043b\u044c\u043d":[4,11,19],"\u0432\u0441\u0442\u0430\u0432\u043a":11,"\u0432\u0441\u0442\u0440\u043e\u0435\u043d":10,"\u0432\u0441\u044e":[0,4,8,16,19],"\u0432\u0441\u044f":11,"\u0432\u0445\u043e\u0434":4,"\u0432\u0445\u043e\u0434\u044f":[4,9],"\u0432\u0445\u043e\u0436\u0434\u0435\u043d":14,"\u0432\u044b":[1,3,4,6,7,8,9,10,11,14,15,16,17,19],"\u0432\u044b\u0431\u043e\u0440":9,"\u0432\u044b\u0431\u0440\u0430":[3,4,6,9,11,14,15,17,19],"\u0432\u044b\u0432\u0435\u0434":11,"\u0432\u044b\u0432\u043e\u0434":4,"\u0432\u044b\u0433\u043b\u044f\u0434\u0435\u0442":9,"\u0432\u044b\u0433\u043e\u0434\u043d":[3,8,14,16,19],"\u0432\u044b\u0434\u0435\u043b":[4,11,17],"\u0432\u044b\u0434\u0435\u043b\u0435\u043d":[9,11,17],"\u0432\u044b\u0434\u0435\u043b\u044f":9,"\u0432\u044b\u0437":[4,9],"\u0432\u044b\u0437\u0432\u0430":[4,9,10],"\u0432\u044b\u0437\u043e\u0432":[4,9,11,13,14],"\u0432\u044b\u0437\u044b\u0432\u0430":[4,9],"\u0432\u044b\u043a\u043b\u044e\u0447":4,"\u0432\u044b\u043f\u0430\u0434\u0430":9,"\u0432\u044b\u043f\u043e\u043b\u043d":[0,4,6,9,10,11,13,14,15,17],"\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d":[4,9,10,11,13,14,19],"\u0432\u044b\u043f\u043e\u043b\u043d\u044f":[4,9,10,11,15,19],"\u0432\u044b\u043f\u0443\u0441\u043a":[13,14,19],"\u0432\u044b\u043f\u0443\u0441\u043a\u0430":19,"\u0432\u044b\u043f\u0443\u0449":[11,19],"\u0432\u044b\u0440\u0430\u0436":19,"\u0432\u044b\u0440\u0430\u0436\u0435\u043d":9,"\u0432\u044b\u0441\u043e\u0442":[4,14],"\u0432\u044b\u0445\u043e\u0434\u043d":4,"\u0432\u044b\u0448":[4,14],"\u0432\u044b\u0448\u0435\u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d":19,"\u0433":1,"\u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u043e\u0432\u0430":11,"\u0433\u0431":[4,19],"\u0433\u0433\u0446":19,"\u0433\u0434\u0435":[3,4,10,14,15],"\u0433\u0435\u043d\u0435\u0440\u0430\u043b\u044c\u043d":19,"\u0433\u0435\u043d\u0435\u0440\u0430\u0442\u043e\u0440":4,"\u0433\u0435\u043d\u0435\u0440\u0430\u0446":[4,19],"\u0433\u0438\u0431\u043a":[3,7],"\u0433\u0438\u0443\u0434":4,"\u0433\u043b\u0430\u0432\u043d":[0,4,9,11],"\u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d":[4,5,19],"\u0433\u043b\u0443\u0431\u0438\u043d":[4,9],"\u0433\u043e":[9,14,19],"\u0433\u043e\u0432\u043e\u0440":9,"\u0433\u043e\u0434":19,"\u0433\u043e\u043b\u043e\u0441\u043e\u0432":19,"\u0433\u043e\u0440":13,"\u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430":[10,14],"\u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b":14,"\u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d":[10,13,14],"\u0433\u043e\u0440\u044f\u0447":11,"\u0433\u043e\u0442\u043e\u0432":[0,9],"\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a":[3,4,8,14,15,19],"\u0433\u0440\u0443\u043f\u043f":[4,7,9],"\u0433\u0443\u0438\u0434":4,"\u0434":10,"\u0434\u0430":19,"\u0434\u0430\u0435\u0442":[3,8,14,16],"\u0434\u0430\u0436":[11,19],"\u0434\u0430\u043b":4,"\u0434\u0430\u043b\u044c\u043d":[4,9],"\u0434\u0430\u043d":[3,4,8,9,10,11,13,14,15,19],"\u0434\u0430\u0442":7,"\u0434\u0432\u0430\u0436\u0434":9,"\u0434\u0432\u043e\u0439\u043d":[9,13,14],"\u0434\u0435\u0439\u0441\u0442\u0432":[0,1,9,11,13,14,19],"\u0434\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430":4,"\u0434\u0435\u043b\u0430":[3,8,9,14,16,19],"\u0434\u0435\u043d":4,"\u0434\u0435\u0440\u0435\u0432":[9,19],"\u0434\u0435\u0444\u0435\u043a\u0442":19,"\u0434\u0438\u0430\u043b\u0435\u043a\u0442":9,"\u0434\u0438\u0430\u043b\u043e\u0433":9,"\u0434\u0438\u0430\u043b\u043e\u0433\u043e\u0432":9,"\u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440":[4,15,19],"\u0434\u0438\u0441\u043a":4,"\u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440":[4,9,15],"\u0434\u043b\u0438\u043d":14,"\u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d":10,"\u0434\u043b\u044f":[0,1,3,4,6,8,9,10,11,12,14,15,19],"\u0434\u043c\u0438\u0442\u0440\u0438\u0435\u0432\u0438\u0447":1,"\u0434\u043d\u0435":4,"\u0434\u043e":[4,9,10,13,14,19],"\u0434\u043e\u0431\u0430\u0432":[4,6],"\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d":4,"\u0434\u043e\u0431\u0430\u0432\u043b\u044f":4,"\u0434\u043e\u0431\u0440":19,"\u0434\u043e\u0432\u043e\u043b\u044c\u043d":9,"\u0434\u043e\u0436\u0434":17,"\u0434\u043e\u0436\u0434\u0430":[4,9,10],"\u0434\u043e\u0436\u0438\u0434":4,"\u0434\u043e\u0436\u0438\u0434\u0430":4,"\u0434\u043e\u043b\u0436":[4,9,14],"\u0434\u043e\u043b\u0436\u043d":[7,9,10],"\u0434\u043e\u043c":4,"\u0434\u043e\u043c\u0435\u043d":4,"\u0434\u043e\u043e\u0431\u043e\u0433\u0430\u0442":9,"\u0434\u043e\u043e\u0431\u043e\u0433\u0430\u0449\u0435\u043d":[4,9],"\u0434\u043e\u043f":[4,19],"\u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d":9,"\u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d":[4,9,19],"\u0434\u043e\u043f\u0443\u0441\u043a\u0430":[4,13,14],"\u0434\u043e\u043f\u0443\u0441\u0442":4,"\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c":[4,9,14],"\u0434\u043e\u0440\u043e\u0433":[3,8,14,16],"\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d":[6,15],"\u0434\u043e\u0441\u0442\u0443\u043f":[0,3,4,8,9,19],"\u0434\u043e\u0441\u0442\u0443\u043f\u043d":[3,4,9,11,19],"\u0434\u043e\u0447\u0435\u0440\u043d":9,"\u0434\u0440\u043e\u0431\u043d":14,"\u0434\u0440\u0443\u0433":[4,7,8,9,10,11,14,15,17,19],"\u0435":[10,11,13,14],"\u0435\u0433":[4,8,9,10,11,19],"\u0435\u0434\u0438\u043d":[5,14,19],"\u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d":[4,14],"\u0435\u0436\u0435\u043c\u0435\u0441\u044f\u0447\u043d":19,"\u0435\u0441\u043b":[0,3,4,7,8,9,10,11,13,14,16,19],"\u0435\u0441\u0442":9,"\u0435\u0449":4,"\u0436\u0434\u0430\u0442":[4,11],"\u0436\u0435":[3,4],"\u0436\u0438\u0437\u043d":3,"\u0437\u0430":[4,11,13,14,15],"\u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430":19,"\u0437\u0430\u0432\u0435\u0440\u0448":[0,4],"\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d":[9,15],"\u0437\u0430\u0432\u0438\u0441":11,"\u0437\u0430\u0432\u0438\u0441\u0438\u043c":[15,19],"\u0437\u0430\u0433\u0440\u0443\u0437":4,"\u0437\u0430\u0433\u0440\u0443\u0437\u043a":10,"\u0437\u0430\u0434\u0430":[9,10,14],"\u0437\u0430\u0434\u0430\u0447":[4,9,15,19],"\u0437\u0430\u0436\u0438\u043c":9,"\u0437\u0430\u043a\u0430\u0437":8,"\u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430":10,"\u0437\u0430\u043a\u043b\u044e\u0447\u0430":7,"\u0437\u0430\u043a\u043e\u043d":1,"\u0437\u0430\u043a\u043e\u043d\u043e\u0434\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432":[1,19],"\u0437\u0430\u043a\u043e\u043d\u0447":4,"\u0437\u0430\u043a\u0440":10,"\u0437\u0430\u043a\u0440\u044b\u0432\u0430":15,"\u0437\u0430\u043a\u0440\u044b\u0442":[4,19],"\u0437\u0430\u043b\u0438\u0432\u043a":9,"\u0437\u0430\u043c\u043e\u0440\u0430\u0436\u0438\u0432\u0430":4,"\u0437\u0430\u043d":4,"\u0437\u0430\u043f":[4,19],"\u0437\u0430\u043f\u0430\u0434\u043d":19,"\u0437\u0430\u043f\u0438\u0441":[3,4],"\u0437\u0430\u043f\u043e\u043b\u043d":9,"\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d":4,"\u0437\u0430\u043f\u043e\u043b\u043d\u044f":4,"\u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430":9,"\u0437\u0430\u043f\u0440\u043e\u0441":[4,19],"\u0437\u0430\u043f\u0443\u0441\u043a":[3,4,6,8,9,10,15,19],"\u0437\u0430\u043f\u0443\u0441\u043a\u0430":[4,9,19],"\u0437\u0430\u043f\u0443\u0441\u0442":[0,4,19],"\u0437\u0430\u043f\u0443\u0449":[0,4,9],"\u0437\u0430\u043f\u0443\u0449\u0435\u043d":[4,16],"\u0437\u0430\u0442":[9,13,14],"\u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430":4,"\u0437\u0430\u0445\u0432\u0430\u0442\u044b\u0432\u0430":4,"\u0437\u0430\u0449\u0438\u0449\u0435\u043d":4,"\u0437\u0432\u0435\u043d":[3,15],"\u0437\u0434\u0435":[0,3,9,10,11],"\u0437\u0435\u043b\u0435\u043d":[9,10],"\u0437\u043d\u0430":[3,8,14,16],"\u0437\u043d\u0430\u043a":11,"\u0437\u043d\u0430\u0447\u0435\u043d":[4,9,10,11,12,13,14],"\u0437\u0440\u0435\u043d":19,"\u0438":[1,3,4,7,8,9,10,11,12,13,14,15,16],"\u0438\u0432\u0430":19,"\u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440":[4,9],"\u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446":[4,14],"\u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430":10,"\u0438\u0434\u0435\u043d\u0442\u0438\u0447\u043d":[9,14],"\u0438\u0434\u0435\u0442":[4,19],"\u0438\u0435\u0440\u0430\u0440\u0445":[9,17],"\u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0447\u043d":3,"\u0438\u0437":[3,4,8,9,10,11,12,14,17],"\u0438\u0437\u0432\u043b\u0435\u043a":8,"\u0438\u0437\u0432\u043b\u0435\u0447":[4,19],"\u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d":[0,9],"\u0438\u0437\u043c\u0435\u043d":[4,14,15],"\u0438\u0437\u043c\u0435\u043d\u0435\u043d":[3,9,14,19],"\u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d":[14,19],"\u0438\u043b":[4,9,10,13,14,15],"\u0438\u043c":[3,4,8,9,14,16,19],"\u0438\u043c\u0435\u0435\u0442":[4,9,14,15],"\u0438\u043c\u0435\u043d":[4,9],"\u0438\u043c\u0435\u043d\u043e\u0432\u0430":[4,9],"\u0438\u043c\u0435\u0442":12,"\u0438\u043c\u0435\u044e\u0442":9,"\u0438\u043c\u0435\u044e\u0449":9,"\u0438\u043c\u0438\u0442\u0430\u0446":11,"\u0438\u043c\u043f\u043e\u0440\u0442":[4,15],"\u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430":4,"\u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u0435\u043c":4,"\u0438\u043d":1,"\u0438\u043d\u0430\u0447":4,"\u0438\u043d\u0434\u0435\u043a\u0441":[9,14],"\u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d":[4,19],"\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446":[4,9,15],"\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440":10,"\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430":[4,9],"\u0438\u043d\u0438\u0446\u0438\u0430\u0442":19,"\u0438\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440":4,"\u0438\u043d\u0438\u0446\u0438\u0430\u0446":4,"\u0438\u043d\u0438\u0446\u0438\u0438\u0440":[13,14],"\u0438\u043d\u0438\u0446\u0438\u0438\u0440\u043e\u0432\u0430":[4,9],"\u0438\u043d\u043a\u0430\u043f\u0441\u0443\u043b\u0438\u0440\u043e\u0432\u0430":15,"\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446":19,"\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442":[1,4,8,11,19],"\u0438\u043d\u0442\u0435\u0433\u0440\u0438\u0440":7,"\u0438\u043d\u0442\u0435\u0433\u0440\u0438\u0440\u043e\u0432\u0430":[8,15,19],"\u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442":19,"\u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d":[3,19],"\u0438\u043d\u0442\u0435\u0440\u0432\u0430":[4,10,11,13,14],"\u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b":10,"\u0438\u043d\u0442\u0435\u0440\u0435\u0441":4,"\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d":0,"\u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0442\u043e\u0440":[0,9],"\u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0446":14,"\u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0438\u0440\u043e\u0432\u0430":4,"\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441":[9,10,15,16,17],"\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446":[3,4,9,11,19],"\u0438\u043f":[1,19],"\u0438\u0441\u043a\u0430":[4,14],"\u0438\u0441\u043a\u0430\u0436\u0435\u043d":14,"\u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d":[9,10,13,14],"\u0438\u0441\u043a\u043e\u043c":[9,14],"\u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0435\u043d":[11,19],"\u0438\u0441\u043f\u043e\u043b\u0435\u043d":4,"\u0438\u0441\u043f\u043e\u043b\u043d":8,"\u0438\u0441\u043f\u043e\u043b\u043d\u0435\u043d":[3,4],"\u0438\u0441\u043f\u043e\u043b\u043d\u044f":[4,9],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437":[1,4,7,9,11,19],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430":[4,9,10,11,16,19],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d":[1,4,7,8,9,12,14,19],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443":[1,3,19],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c":[4,19],"\u0438\u0441\u043f\u043e\u0440\u0447":4,"\u0438\u0441\u043f\u044b\u0442\u0430":0,"\u0438\u0441\u0442\u0435\u043a\u0430":4,"\u0438\u0441\u0442\u043e\u0440":[4,10],"\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a":19,"\u0438\u0441\u0445\u043e\u0434\u043d":[2,4,9,10,11,12,13,14,18,19],"\u0438\u0441\u0445\u043e\u0434\u044f":9,"\u0438\u0441\u0447\u0435\u0437\u043d\u043e\u0432\u0435\u043d":[9,10,14],"\u0438\u0441\u0447\u0435\u0437\u043d\u0443\u0442":9,"\u0438\u0442":[4,19],"\u0438\u0442\u0435\u0440\u0430\u0446":4,"\u0438\u0445":[4,11],"\u0438\u044e\u043b":19,"\u0439":9,"\u043a":[1,3,4,8,9,10,14,15,19],"\u043a\u0430\u0436\u0434":[4,9,10,11,12,13,14,15,19],"\u043a\u0430\u043a":[1,3,4,9,11,13,16,19],"\u043a\u0430\u043d\u0430":1,"\u043a\u0430\u043d\u0430\u043b":[8,19],"\u043a\u0430\u0440\u0442":4,"\u043a\u0430\u0441\u0442\u043e\u043c\u0438\u0437\u0430\u0446":3,"\u043a\u0430\u0447\u0435\u0441\u0442\u0432":[3,8,9,14,15,16,19],"\u043a\u0438\u0448\u043a":9,"\u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440":[0,4,8,9,11,15,19],"\u043a\u043b\u0430\u0432\u0438\u0448":[9,13,14,19],"\u043a\u043b\u0430\u0432\u0438\u0448\u043d":11,"\u043a\u043b\u0430\u0441\u0441":[9,19],"\u043a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a":19,"\u043a\u043b\u0438\u0435\u043d\u0442":[0,3,4,7,8,14,16,19],"\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a":4,"\u043a\u043b\u0438\u043a":[9,13,14],"\u043a\u043b\u044e\u0447":[4,7,9,11,19],"\u043a\u043b\u044e\u0447\u0435\u0432":[10,15],"\u043a\u043d\u043e\u043f\u043a":[0,9,13,14],"\u043a\u043e":4,"\u043a\u043e\u0433\u0434":[9,17,19],"\u043a\u043e\u0434":[2,4,6,9,10,12,13,14,15,18,19],"\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a":4,"\u043a\u043e\u0434\u043e\u0432":4,"\u043a\u043e\u043b\u0435\u0441":[9,13],"\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432":[4,9,11,13,14],"\u043a\u043e\u043b\u043b\u0435\u0433":[3,8,14,16],"\u043a\u043e\u043c\u0430\u043d\u0434":[0,4,11,13,14,15,19],"\u043a\u043e\u043c\u0430\u043d\u0434\u043d":[4,15],"\u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446":[4,11,14],"\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a":19,"\u043a\u043e\u043c\u043f\u0430\u043d":[4,7,19],"\u043a\u043e\u043c\u043f\u0438\u0440\u043e\u0432\u0430\u043d":15,"\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442":[0,10,11,14,17,19],"\u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440":[4,9],"\u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043d":19,"\u043a\u043e\u043d\u0435\u0446":4,"\u043a\u043e\u043d\u0435\u0447\u043d":9,"\u043a\u043e\u043d\u0441\u043e\u043b":[8,15,17],"\u043a\u043e\u043d\u0441\u043e\u043b\u0438\u0434\u0438\u0440\u043e\u0432\u0430":[3,19],"\u043a\u043e\u043d\u0441\u043e\u043b\u044c\u043d":15,"\u043a\u043e\u043d\u0441\u0442\u0430\u043d\u0442":9,"\u043a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446":4,"\u043a\u043e\u043d\u0442\u0430\u043a\u0442":[0,3,4,7,8,14,16,19],"\u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440":4,"\u043a\u043e\u043d\u0442\u0440\u043e\u043b":[3,4,7,19],"\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440":4,"\u043a\u043e\u043d\u0442\u0443\u0440":9,"\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043e\u043d":[3,4],"\u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d":4,"\u043a\u043e\u043d\u0446\u0435\u043f\u0446":[7,19],"\u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442":[9,13,14],"\u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0446":[3,19],"\u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0438\u0440":3,"\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430":15,"\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d":4,"\u043a\u043e\u0440\u043d\u0435\u0432":9,"\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u043a":[3,7,14],"\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d":[11,19],"\u043a\u043e\u0440\u0442\u0435\u0436":4,"\u043a\u043e\u0442\u043e\u0440":[3,4,7,8,9,10,11,13,14,15,16,19],"\u043a\u043f\u043f":1,"\u043a\u0440\u0430":[13,14],"\u043a\u0440\u0430\u0441\u043d":9,"\u043a\u0440\u0438\u0442\u0435\u0440":9,"\u043a\u0440\u043e\u043c":17,"\u043a\u0440\u0443\u043f\u043d":[4,19],"\u043a\u0440\u0443\u0442":13,"\u043a\u0443\u0434":[0,4],"\u043a\u0443\u043a":10,"\u043a\u044d\u0448\u0438\u0440\u043e\u0432\u0430":4,"\u043a\u044d\u0448\u0438\u0440\u043e\u0432\u0430\u043d":4,"\u043b\u0430\u043d\u0434\u0448\u0430\u0444\u0442":19,"\u043b\u0435\u0432":[9,13,14],"\u043b\u0435\u0433\u043a":9,"\u043b\u0435\u0433\u043a\u043e\u0441\u0442":[8,15,19],"\u043b\u0438":[4,9,11,14],"\u043b\u0438\u0431":[1,4,9],"\u043b\u0438\u0446":[1,19],"\u043b\u0438\u0446\u0435\u043d\u0437":[0,3,4,7,8,14,16],"\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u043e\u043d":19,"\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d":19,"\u043b\u0438\u0448":7,"\u043b\u043e\u0433":[3,4,19],"\u043b\u043e\u0433\u0433\u0435\u0440":[4,5],"\u043b\u043e\u0433\u0433\u0438\u0440\u043e\u0432\u0430\u043d":4,"\u043b\u043e\u0433\u0438\u043d":4,"\u043b\u043e\u0433\u0438\u0440\u043e\u0432\u0430\u043d":[4,5],"\u043b\u043e\u043a\u0430\u043b\u044c\u043d":[4,8,9,19],"\u043b\u043e\u043a\u0430\u0446":4,"\u043b\u044c\u0432\u0430":1,"\u043b\u044e\u0431":[8,9,11,19],"\u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d":[7,9,10,15,19],"\u043c\u0430\u043b":19,"\u043c\u0430\u0441\u043b":19,"\u043c\u0430\u0441\u0441":3,"\u043c\u0430\u0441\u0441\u0438\u0432":3,"\u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a":14,"\u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b":19,"\u043c\u0430\u0448\u0438\u043d":[4,19],"\u043c\u0431":4,"\u043c\u0435\u0436\u0434":[4,11,13,14,15],"\u043c\u0435\u043d":9,"\u043c\u0435\u043d\u044f":19,"\u043c\u0435\u0440":4,"\u043c\u0435\u0441\u0442":13,"\u043c\u0435\u0442\u043e\u0434":[4,9],"\u043c\u0435\u0445\u0430\u043d\u0438\u0437\u043c":[4,7],"\u043c\u0438\u043a\u0440\u043e\u043f\u0440\u0435\u0434\u043f\u0440\u0438\u044f\u0442":19,"\u043c\u0438\u043b":11,"\u043c\u0438\u043c":4,"\u043c\u0438\u0440":11,"\u043c\u043d\u043e\u0433":[9,11],"\u043c\u043d\u043e\u0433\u043e\u043f\u043e\u0442\u043e\u0447\u043d":4,"\u043c\u043d\u043e\u0433\u043e\u0443\u0440\u043e\u0432\u043d\u0435\u0432":3,"\u043c\u043e":11,"\u043c\u043e\u0433\u0443\u0442":[4,9],"\u043c\u043e\u0434\u0435\u043b":[3,4,19],"\u043c\u043e\u0434\u0435\u043b\u0438\u0440\u0443":11,"\u043c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440":11,"\u043c\u043e\u0434\u0443\u043b":[3,4,8,9,11,12,13,14,15,16],"\u043c\u043e\u0436\u0435\u0442":[1,3,4,6,7,8,9,11,13,14,15,16,19],"\u043c\u043e\u0436\u043d":[3,4,9,10,11,15,19],"\u043c\u043e\u043c\u0435\u043d\u0442":9,"\u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d":[13,14],"\u043c\u043e\u043d\u0438\u0442\u043e\u0440":4,"\u043c\u043e\u0441\u043a\u0432":1,"\u043c\u043e\u0449":0,"\u043c\u0443\u0440\u0430\u0432\u0441\u043a":1,"\u043c\u0443\u0441\u043e\u0440\u043d":3,"\u043c\u044b":[1,3,4,8,9,14,16,19],"\u043c\u044b\u0448":[8,9,10,13,14,15,19],"\u043c\u044f":15,"\u043c\u044f\u0433\u043a":4,"\u043d\u0430":[3,4,8,9,10,11,12,13,14,15,19],"\u043d\u0430\u0431\u043e\u0440":[4,19],"\u043d\u0430\u0432\u0435\u0434":17,"\u043d\u0430\u0432\u0435\u0434\u0435\u043d":[9,19],"\u043d\u0430\u0433\u0440\u0443\u0437\u043a":19,"\u043d\u0430\u0434":[9,10,17,19],"\u043d\u0430\u0434\u0435\u0436\u043d":[3,11],"\u043d\u0430\u0436\u0430":[11,13,14],"\u043d\u0430\u0436\u0430\u0442":[9,10,11,13,14,15],"\u043d\u0430\u0436\u0438\u043c\u0430":[9,11],"\u043d\u0430\u0436\u043c":9,"\u043d\u0430\u0437\u043d\u0430\u0447":4,"\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d":9,"\u043d\u0430\u0437\u044b\u0432\u0430":3,"\u043d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d":[4,9,10,15],"\u043d\u0430\u0439\u0434\u0435\u0442":[16,19],"\u043d\u0430\u043b\u0438\u0447":[4,14],"\u043d\u0430\u043b\u043e\u0436":14,"\u043d\u0430\u043b\u043e\u0436\u0435\u043d":14,"\u043d\u0430\u043c":19,"\u043d\u0430\u043f\u0435\u0447\u0430\u0442\u0430":11,"\u043d\u0430\u043f\u0438\u0441\u0430":1,"\u043d\u0430\u043f\u0440\u0430\u0432\u043b":3,"\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440":[4,7,9],"\u043d\u0430\u043f\u0440\u044f\u043c":3,"\u043d\u0430\u0440\u0438\u0441":9,"\u043d\u0430\u0440\u0438\u0441\u043e\u0432\u0430":8,"\u043d\u0430\u0440\u0443\u0448\u0435\u043d":[1,19],"\u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043a":19,"\u043d\u0430\u0441\u0442\u043e\u044f":11,"\u043d\u0430\u0441\u0442\u0440\u043e":4,"\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a":[4,5,19],"\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a":[3,7,9,13,14,19],"\u043d\u0430\u0445\u043e\u0434":[9,10,13,14,15],"\u043d\u0430\u0445\u043e\u0436\u0434\u0435\u043d":13,"\u043d\u0430\u0446\u0435\u043b\u0435\u043d":19,"\u043d\u0430\u0447\u0430":[0,4,11,15],"\u043d\u0430\u0447\u0430\u043b\u044c\u043d":9,"\u043d\u0430\u0447\u0438\u043d":[3,4,8,14,16],"\u043d\u0430\u0447\u0438\u043d\u0430":[0,9,10,11,12,13,14],"\u043d\u0430\u0448":[8,9,19],"\u043d\u0434\u0441":19,"\u043d\u0435":[1,3,4,7,9,10,11,13,14,15,19],"\u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d":[4,19],"\u043d\u0435\u0434\u0435\u043b":4,"\u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c":9,"\u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d":9,"\u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c":[9,11],"\u043d\u0435\u0437\u043d\u0430\u043d":1,"\u043d\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430":[4,9],"\u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a":[1,19],"\u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d":4,"\u043d\u0435\u043a\u043e\u0442\u043e\u0440":9,"\u043d\u0435\u043c":[9,15,17],"\u043d\u0435\u043c\u0435\u0434\u043b\u0435\u043d":[9,13,14],"\u043d\u0435\u043e\u0431\u0445\u043e\u0434":[4,11,14,19],"\u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c":[0,4,8,10,11,12,15,16,17,19],"\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d":[4,9,11,14],"\u043d\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d":9,"\u043d\u0435\u043f\u0440\u0430\u0432\u043e\u043c\u0435\u0440\u043d":[1,19],"\u043d\u0435\u043f\u0440\u043e\u0432\u0435\u0440":9,"\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a":[4,9,11,14,19],"\u043d\u0435\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432":14,"\u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d":4,"\u043d\u0435\u0441\u0442\u0438\u043b\u0435\u0432":10,"\u043d\u0435\u0442":[4,9],"\u043d\u0438":[4,9],"\u043d\u0438\u0433\u0434":4,"\u043d\u0438\u0436":[4,5,6,8,9,11,13,14,17,19],"\u043d\u0438\u0436\u043d":14,"\u043d\u0438\u043a\u043e\u0433\u0434":9,"\u043d\u0438\u0445":4,"\u043d\u0438\u0447":[7,11],"\u043d\u043e":[7,9],"\u043d\u043e\u0432":[3,4,19],"\u043d\u043e\u043c\u0435\u0440":[4,8,9,10,13,14],"\u043d\u043e\u0440\u043c\u0430\u043b\u0438\u0437\u043e\u0432\u0430":9,"\u043d\u043e\u0442\u0430\u0446":4,"\u043d\u0443\u0436":4,"\u043d\u0443\u0436\u0434":3,"\u043d\u0443\u0436\u043d":[4,7,9],"\u043e":[4,13,14],"\u043e\u0431":4,"\u043e\u0431\u0435\u0440\u043d\u0443\u0442":9,"\u043e\u0431\u0435\u0441\u043f\u0435\u0447":[4,9],"\u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430":[3,4,8,16,19],"\u043e\u0431\u043b\u0430\u0434\u0430":[4,7,9,11],"\u043e\u0431\u043b\u0430\u0441\u0442":[9,10,13,19],"\u043e\u0431\u043c":[0,4,8,11,12,15,19],"\u043e\u0431\u043c\u0435\u043d\u0438\u0432\u0430":4,"\u043e\u0431\u043d\u0430\u0440\u0443\u0436":[4,9,14],"\u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d":9,"\u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u043d":9,"\u043e\u0431\u043d\u043e\u0432":4,"\u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0430":14,"\u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d":[9,10,11,12,13,14],"\u043e\u0431\u043e\u0437\u0440\u0435\u0432\u0430\u0442\u0435\u043b":17,"\u043e\u0431\u043e\u043b\u043e\u0447\u043a":9,"\u043e\u0431\u043e\u0441\u043e\u0431\u043b\u0435\u043d":19,"\u043e\u0431\u0440\u0430\u0437":9,"\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d":14,"\u043e\u0431\u0440\u0430\u0442":[0,1,3,4,7,8,9,10,14,16,19],"\u043e\u0431\u0440\u0430\u0442\u043a":14,"\u043e\u0431\u0440\u0430\u0442\u043d":[4,9],"\u043e\u0431\u0440\u0430\u0449\u0430":11,"\u043e\u0431\u0443\u0447\u0435\u043d":19,"\u043e\u0431\u044a\u0435\u043a\u0442":[4,9,10,14,15,16,19],"\u043e\u0431\u044b\u0447\u043d":[9,10],"\u043e\u0431\u044c\u0435\u043a\u0442":4,"\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b":4,"\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d":[4,9,13,14],"\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d":[9,19],"\u043e\u0433\u0440\u043d":1,"\u043e\u0434\u0438\u043d":[4,9,14],"\u043e\u0434\u0438\u043d\u043e\u0447\u043d":9,"\u043e\u0434\u043d":[3,6,9,11,14,15,19],"\u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d":[9,11],"\u043e\u0434\u043d\u043e\u043f\u043e\u0442\u043e\u0447\u043d":4,"\u043e\u0436\u0438\u0434\u0430":[4,9,10,11,13,14,17],"\u043e\u0436\u0438\u0434\u0430\u043d":[9,10,11,13,14],"\u043e\u0437\u043d\u0430\u043a\u043e\u043c":[1,3,9,11,19],"\u043e\u0437\u043d\u0430\u0447\u0430":[4,9,10,11,12,13,14],"\u043e\u043a\u043d":[4,9,15,17],"\u043e\u043a\u043e\u043d\u0447\u0430\u043d":4,"\u043e\u043a\u0440\u0443\u0433\u043b\u0435\u043d":14,"\u043e\u043a\u0443\u043f\u0430":19,"\u043e\u043d":[4,7,9,10,15],"\u043e\u043e":19,"\u043e\u043f":19,"\u043e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d":4,"\u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440":[4,10],"\u043e\u043f\u0435\u0440\u0430\u0446":[4,11,13,14,15,19],"\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d":[4,11],"\u043e\u043f\u0438\u0441\u0430\u043d":[4,15,19],"\u043e\u043f\u0440\u0435\u0434\u0435\u043b":9,"\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d":[4,9,11],"\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f":[4,9,14],"\u043e\u043f\u0442\u0438\u043c\u0438\u0437\u0430\u0446":19,"\u043e\u043f\u0443\u0441\u0442":[11,13],"\u043e\u043f\u0443\u0449":11,"\u043e\u043f\u0446":14,"\u043e\u043f\u0446\u0438\u043e\u043d\u0430\u043b":4,"\u043e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d":[4,9,10,11,13,14],"\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446":[1,19],"\u043e\u0440\u043a\u0435\u0441\u0442\u0440\u0430\u0442\u043e\u0440":[3,4,6,7,9],"\u043e\u0441":[4,8,9,10,11,12,13,14,15,19],"\u043e\u0441\u0432\u043e\u0431\u043e\u0436\u0434\u0430":1,"\u043e\u0441\u043d\u043e\u0432":9,"\u043e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b":19,"\u043e\u0441\u043d\u043e\u0432\u043d":[3,4,19],"\u043e\u0441\u043e\u0431":9,"\u043e\u0441\u043e\u0431\u0435\u043d":[4,11],"\u043e\u0441\u043e\u0437\u043d\u0430":[1,19],"\u043e\u0441\u0442\u0430":1,"\u043e\u0441\u0442\u0430\u0432":9,"\u043e\u0441\u0442\u0430\u0432\u043b\u044f":3,"\u043e\u0441\u0442\u0430\u043b\u044c\u043d":[1,9,13,14,19],"\u043e\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430":4,"\u043e\u0441\u0442\u0430\u043d\u043e\u0432":[4,9],"\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a":[3,4,19],"\u043e\u0441\u0442\u0430\u043d\u0443\u0442":[3,7,8,14,16,19],"\u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d":11,"\u043e\u0442":[1,3,4,8,9,10,11,14,16,19],"\u043e\u0442\u0431\u043e\u0440":9,"\u043e\u0442\u0432\u0435\u0441\u0442":9,"\u043e\u0442\u0432\u0435\u0442":4,"\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d":[1,19],"\u043e\u0442\u0432\u0435\u0447\u0430":15,"\u043e\u0442\u0434\u0435\u043b\u044c\u043d":4,"\u043e\u0442\u043a\u0430\u0437":19,"\u043e\u0442\u043a\u0430\u0437\u0430":4,"\u043e\u0442\u043a\u043b\u044e\u0447":19,"\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d":[4,9],"\u043e\u0442\u043a\u0440":[4,8,10,15,19],"\u043e\u0442\u043a\u0440\u043e\u0435\u0442":17,"\u043e\u0442\u043a\u0440\u044b\u0442":[3,19],"\u043e\u0442\u043a\u0443\u0434":4,"\u043e\u0442\u043b\u0430\u0434\u043a":[3,4,19],"\u043e\u0442\u043b\u0438\u0447":11,"\u043e\u0442\u043b\u0438\u0447\u0430":9,"\u043e\u0442\u043b\u0438\u0447\u043d":7,"\u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d":[4,14],"\u043e\u0442\u043d\u043e\u0448\u0435\u043d":4,"\u043e\u0442\u043e\u0431\u0440\u0430\u0436":9,"\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430":[9,15],"\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d":11,"\u043e\u0442\u043f\u0440\u0430\u0432":[4,10,11],"\u043e\u0442\u043f\u0440\u0430\u0432\u043a":[4,19],"\u043e\u0442\u043f\u0440\u0430\u0432\u043b":4,"\u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f":[4,9,10,11],"\u043e\u0442\u043f\u0443\u0441\u043a\u0430":[13,14],"\u043e\u0442\u043f\u0443\u0441\u043a\u0430\u043d":11,"\u043e\u0442\u043f\u0443\u0441\u0442":[11,13,14],"\u043e\u0442\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430":19,"\u043e\u0442\u0440\u0430\u0431\u043e\u0442\u043a":[4,10],"\u043e\u0442\u0440\u0438\u0441\u043e\u0432\u043a":14,"\u043e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u044c\u043d":13,"\u043e\u0442\u0440\u044b\u0432\u0430":16,"\u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430":9,"\u043e\u0442\u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430":4,"\u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432":4,"\u043e\u0442\u0441\u0447\u0435\u0442":[13,14],"\u043e\u0442\u0442\u0435\u043d\u043a":14,"\u043e\u0447\u0435\u043d":[0,19],"\u043e\u0447\u0435\u0440\u0435\u0434":[3,4,19],"\u043e\u0447\u0438\u0441\u0442":9,"\u043e\u0448\u0438\u0431\u043a":[4,9],"\u043e\u0448\u0438\u0431\u043e\u043a":9,"\u043f\u0430\u043a\u0435\u0442":[0,12,14,19],"\u043f\u0430\u043a\u0435\u0442\u043d":14,"\u043f\u0430\u043c\u044f\u0442":4,"\u043f\u0430\u043d\u0435\u043b":[3,4,17,19],"\u043f\u0430\u043f\u043a":[0,4,6,19],"\u043f\u0430\u0440":4,"\u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d":4,"\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440":[2,4,9,10,11,12,13,14,18,19],"\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438\u0437\u0430\u0446":[13,14],"\u043f\u0430\u0440\u043e\u043b":4,"\u043f\u0430\u0443\u0437":[3,19],"\u043f\u0435\u0440\u0432":[9,10,19],"\u043f\u0435\u0440\u0435\u0434":[4,9,19],"\u043f\u0435\u0440\u0435\u0434\u0430":[4,10,11,13],"\u043f\u0435\u0440\u0435\u0434\u0430\u0432\u0430":[4,9],"\u043f\u0435\u0440\u0435\u0434\u0430\u0447":[4,8,9,10,11,14,19],"\u043f\u0435\u0440\u0435\u0434\u043e\u0432":19,"\u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437":4,"\u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a":4,"\u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a":4,"\u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442":4,"\u043f\u0435\u0440\u0435\u0439\u0442":8,"\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447":11,"\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0430\u0442\u0435\u043b":9,"\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d":11,"\u043f\u0435\u0440\u0435\u043c\u0435\u043d":[4,10,11],"\u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442":[9,13,14],"\u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0430":9,"\u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d":[9,13,14],"\u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b":9,"\u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f":9,"\u043f\u0435\u0440\u0435\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d":4,"\u043f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d":9,"\u043f\u0435\u0440\u0435\u0442\u0430\u0449":9,"\u043f\u0435\u0440\u0435\u0445\u043e\u0434":3,"\u043f\u0435\u0440\u0435\u0447\u0435\u043d":[4,9,11],"\u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d":10,"\u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a":4,"\u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d":14,"\u043f\u0435\u0440\u0441\u043f\u0435\u043a\u0442\u0438\u0432\u043d":[0,8,19],"\u043f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433":1,"\u043f\u0435\u0447\u0430":11,"\u043f\u0435\u0447\u0430\u0442":11,"\u043f\u0435\u0447\u0430\u0442\u0430":11,"\u043f\u0438\u043a\u0441\u0435\u043b":[4,10,14],"\u043f\u043b\u0430\u043d\u0438\u0440":[4,9],"\u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u043c":9,"\u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442":9,"\u043f\u043b\u0430\u0442\u0435\u0436":19,"\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c":[0,3,8,9,11,14,15,16,19],"\u043f\u043e":[0,1,3,4,6,7,9,10,11,13,14,16,19],"\u043f\u043e\u0432\u0442\u043e\u0440\u043d":[4,14],"\u043f\u043e\u0434":[3,4,9,19],"\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a":5,"\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430":[4,9,10,11,12,13,14,17],"\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a":[0,3,4,7,8,14,16,19],"\u043f\u043e\u0434\u043a\u043b\u044e\u0447":[4,9],"\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0430":15,"\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d":[4,9,19],"\u043f\u043e\u0434\u043d\u044f":[11,13,14],"\u043f\u043e\u0434\u043d\u044f\u0442":11,"\u043f\u043e\u0434\u043e\u0436\u0434":17,"\u043f\u043e\u0434\u043f\u0438\u0441\u043a":19,"\u043f\u043e\u0434\u0440\u043e\u0431\u043d":[4,9,14,19],"\u043f\u043e\u0434\u0441\u0432\u0435\u0442":[9,10],"\u043f\u043e\u0434\u0441\u0432\u0435\u0442\u043a":[9,14],"\u043f\u043e\u0434\u0441\u0432\u0435\u0447":9,"\u043f\u043e\u0434\u0441\u0432\u0435\u0447\u0430\u043d":10,"\u043f\u043e\u0434\u0441\u0432\u0435\u0447\u0438\u0432\u0430\u043d":10,"\u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a":10,"\u043f\u043e\u0434\u0445\u043e\u0434\u044f":[10,14],"\u043f\u043e\u0434\u0445\u044a\u043e\u0434":3,"\u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430":19,"\u043f\u043e\u0437\u0432\u043e\u043b":4,"\u043f\u043e\u0437\u0432\u043e\u043b\u044f":[3,4,8,9,11,15,19],"\u043f\u043e\u0437\u0438\u0446":[13,14],"\u043f\u043e\u0438\u0441\u043a":[4,9,10,14,19],"\u043f\u043e\u043a":[4,9,11],"\u043f\u043e\u043a\u0430\u0437\u0430":17,"\u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b":14,"\u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430":4,"\u043f\u043e\u043a\u043e\u043b\u0435\u043d":19,"\u043f\u043e\u043a\u0443\u043f\u0430\u0442\u0435\u043b":8,"\u043f\u043e\u043a\u0443\u043f\u043a":19,"\u043f\u043e\u043b":9,"\u043f\u043e\u043b\u0435\u0437\u043d":4,"\u043f\u043e\u043b\u043d":[4,9,14],"\u043f\u043e\u043b\u043d\u043e\u043c\u043e\u0447":4,"\u043f\u043e\u043b\u043d\u043e\u0441\u0442":4,"\u043f\u043e\u043b\u043e\u0436\u0435\u043d":[9,14,19],"\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u0435\u043b\u044c\u043d":13,"\u043f\u043e\u043b\u0443\u0447":[1,4,9,10,12,14],"\u043f\u043e\u043b\u0443\u0447\u0430":[4,11],"\u043f\u043e\u043b\u0443\u0447\u0435\u043d":[1,4,9,19],"\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b":[3,4,9,19],"\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a":[4,9,16,17],"\u043f\u043e\u043c\u0438\u043c":19,"\u043f\u043e\u043c\u043e\u0433\u0443\u0442":[1,3,7,8,14,16,19],"\u043f\u043e\u043c\u043e\u0436":1,"\u043f\u043e\u043c\u043e\u0449":[0,4,9,10,11,15],"\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a":4,"\u043f\u043e\u043f\u0430\u0441\u0442":9,"\u043f\u043e\u043f\u0440\u043e\u0431":11,"\u043f\u043e\u043f\u044b\u0442\u043a":[9,11],"\u043f\u043e\u0440\u043e\u0436\u0434":4,"\u043f\u043e\u0440\u0442":4,"\u043f\u043e\u0440\u0442\u0430":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"\u043f\u043e\u0440\u044f\u0434\u043a\u043e\u0432":10,"\u043f\u043e\u0441\u0435\u0440\u0435\u0434\u0438\u043d":9,"\u043f\u043e\u0441\u043a\u043e\u043b\u044c\u043a":9,"\u043f\u043e\u0441\u043b":[4,9,11,13,14,15,17],"\u043f\u043e\u0441\u043b\u0435\u0434":9,"\u043f\u043e\u0441\u043b\u0435\u0434\u043d":9,"\u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d":4,"\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d":4,"\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f":[8,19],"\u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a":19,"\u043f\u043e\u0441\u0442\u0444\u0438\u043a\u0441":4,"\u043f\u043e\u0441\u044b\u043b\u0430":11,"\u043f\u043e\u0442\u043e\u043a":[3,4,10],"\u043f\u043e\u0442\u043e\u043a\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d":4,"\u043f\u043e\u0442\u043e\u043c\u043a":9,"\u043f\u043e\u0442\u0440\u0435\u0431":[3,4,7],"\u043f\u043e\u0445\u043e\u0436":14,"\u043f\u043e\u0447\u0442":1,"\u043f\u043e\u044d\u0442":9,"\u043f\u043e\u044f\u0432":[9,10],"\u043f\u043e\u044f\u0432\u043b\u0435\u043d":[4,9,10,14],"\u043f\u0440\u0430\u0432":[4,9,13,14,19],"\u043f\u0440\u0430\u0432\u0438\u043b":14,"\u043f\u0440\u0430\u0432\u043e\u043e\u0431\u043b\u0430\u0434\u0430\u0442\u0435\u043b":19,"\u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a":[16,19],"\u043f\u0440\u0435\u0432\u044b\u0448":10,"\u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d":10,"\u043f\u0440\u0435\u0434\u0435\u043b\u044c\u043d":19,"\u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430":[3,19],"\u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d":4,"\u043f\u0440\u0435\u0434\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d":[4,19],"\u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432":4,"\u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f":4,"\u043f\u0440\u0435\u0434\u043f\u0440\u0438\u044f\u0442":[8,9],"\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b":[4,5,7,9,10,11,15,17,19],"\u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449":4,"\u043f\u0440\u0435\u0436\u0434":11,"\u043f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],"\u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d":4,"\u043f\u0440\u0435\u043a\u0440\u0430\u0442":4,"\u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d":10,"\u043f\u0440\u0435\u043c\u0438\u0430\u043b\u044c\u043d":19,"\u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437":4,"\u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430":4,"\u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d":4,"\u043f\u0440\u0435\u0440\u044b\u0432\u0430\u043d":4,"\u043f\u0440\u0435\u0441\u0442\u0430\u0432\u043b":8,"\u043f\u0440\u0435\u0444\u0438\u043a\u0441":4,"\u043f\u0440\u0438":[4,7,9,10,11,12,14],"\u043f\u0440\u0438\u0431\u043b\u0438\u0436":9,"\u043f\u0440\u0438\u0432\u0435\u0434":9,"\u043f\u0440\u0438\u0432\u0435\u0434\u0435\u0442":[4,14],"\u043f\u0440\u0438\u0432\u0435\u0441\u0442":4,"\u043f\u0440\u0438\u0432\u0435\u0442":11,"\u043f\u0440\u0438\u0437\u043d\u0430\u043a":9,"\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d":[4,8,9,10,15,16,19],"\u043f\u0440\u0438\u043c\u0435\u043d":4,"\u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c":9,"\u043f\u0440\u0438\u043c\u0435\u043d\u044f":[9,19],"\u043f\u0440\u0438\u043c\u0435\u0440":[4,6,9,14,19],"\u043f\u0440\u0438\u043d":4,"\u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436":9,"\u043f\u0440\u0438\u043d\u0438\u043c\u0430":[4,13,14],"\u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u044c\u043d":[3,4,19],"\u043f\u0440\u0438\u043d\u0446\u0438\u043f":9,"\u043f\u0440\u0438\u043d\u044f":4,"\u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d":1,"\u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432":[4,9],"\u043f\u0440\u0438\u0445\u043e\u0434":19,"\u043f\u0440\u0438\u0447\u0438\u043d":19,"\u043f\u0440\u0438\u0448\u0435\u043b":4,"\u043f\u0440\u043e":[4,19],"\u043f\u0440\u043e\u0431\u043b":[0,19],"\u043f\u0440\u043e\u0431\u043b\u0435\u043c":19,"\u043f\u0440\u043e\u0431\u043d":14,"\u043f\u0440\u043e\u0432\u0435\u0440":[1,4,9,11,14,19],"\u043f\u0440\u043e\u0432\u0435\u0440\u043a":[4,9,10,14,19],"\u043f\u0440\u043e\u0432\u0435\u0440\u044f":[4,9,14],"\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c":[4,11],"\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d":[3,8,11,14,15,16,19],"\u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0438\u0432\u043d":19,"\u043f\u0440\u043e\u0434\u043e\u043b\u0436":4,"\u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0432\u043d":15,"\u043f\u0440\u043e\u0435\u043a\u0442":[0,8,15,19],"\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u0443\u0435\u043c":19,"\u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d":19,"\u043f\u0440\u043e\u0438\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430":[4,9],"\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434":9,"\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442":3,"\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434":[4,9,10,13],"\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d":[14,19],"\u043f\u0440\u043e\u0438\u0437\u043e\u0439\u0434\u0435\u0442":11,"\u043f\u0440\u043e\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430":4,"\u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434":[4,13],"\u043f\u0440\u043e\u043a\u0440\u0443\u0442":[9,13],"\u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a":[10,13],"\u043f\u0440\u043e\u043f\u0438\u0441\u0430":15,"\u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430":4,"\u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u043d":4,"\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440":[3,4,19],"\u043f\u0440\u043e\u0441\u0442":[9,15],"\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432":4,"\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b":8,"\u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0438\u0440\u043e\u0432\u0430\u043d":19,"\u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d":[9,10,14],"\u043f\u0440\u043e\u0444\u0438\u043b":10,"\u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440":4,"\u043f\u0440\u043e\u0446\u0435\u0441\u0441":[4,9,10,15,19],"\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u043d":[3,4],"\u043f\u0440\u043e\u0447\u0438\u0442\u0430":4,"\u043f\u0440\u043e\u0448\u043b":[4,14],"\u043f\u0440\u044f\u043c":9,"\u043f\u0440\u044f\u043c\u043e\u0443\u0433\u043e\u043b\u044c\u043d":[9,14],"\u043f\u0440\u044f\u043c\u043e\u0443\u0433\u043e\u043b\u044c\u043d\u0438\u043a":9,"\u043f\u0441\u0435\u0432\u0434\u043e\u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d":4,"\u043f\u0443\u0441\u0442":[4,9],"\u043f\u0443\u0442":[4,9,10,14],"\u0440\u0430\u0431\u043e\u0442":[0,3,4,7,8,11,14,15,16,19],"\u0440\u0430\u0431\u043e\u0442\u0430":[3,4,9,11,19],"\u0440\u0430\u0431\u043e\u0447":[4,8,9,13,14,15],"\u0440\u0430\u0432":9,"\u0440\u0430\u0432\u043d":9,"\u0440\u0430\u0437":[4,19],"\u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430":9,"\u0440\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442":[9,19],"\u0440\u0430\u0437\u0432\u0435\u0440\u0442\u043d\u0443\u0442":4,"\u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d":[0,19],"\u0440\u0430\u0437\u0432\u0438\u0442":19,"\u0440\u0430\u0437\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d":[3,19],"\u0440\u0430\u0437\u0434\u0435\u043b":[4,7,9,11,15,16],"\u0440\u0430\u0437\u043b\u0438\u0447\u043d":[4,10,11,16],"\u0440\u0430\u0437\u043d":[4,11],"\u0440\u0430\u0437\u043d\u043e\u044f\u0437\u044b\u0447\u043d":11,"\u0440\u0430\u0437\u043e\u0432":19,"\u0440\u0430\u0437\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430":9,"\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430":19,"\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a":[3,8,14,16],"\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a":[3,19],"\u0440\u0430\u0437\u0440\u0435\u0448\u0430":[1,19],"\u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d":4,"\u0440\u0430\u0437\u0440\u044f\u0434\u043d":9,"\u0440\u0430\u043c\u043a":[9,19],"\u0440\u0430\u043d":[4,9,19],"\u0440\u0430\u0441\u043a\u043b\u0430\u0434\u043a":11,"\u0440\u0430\u0441\u043a\u043b\u0430\u0434\u043e\u043a":11,"\u0440\u0430\u0441\u043a\u0440":4,"\u0440\u0430\u0441\u043f\u0430\u043a\u043e\u0432\u0430":0,"\u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d":[3,4,19],"\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d":19,"\u0440\u0430\u0441\u043f\u043e\u043b\u0430\u0433\u0430":10,"\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436":[4,9,10],"\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d":[4,6,9,10,14],"\u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d":7,"\u0440\u0430\u0441\u0441\u0442\u043e\u044f\u043d":[9,14],"\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d":[4,10],"\u0440\u0435\u0430\u043a\u0446":11,"\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446":19,"\u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430":[4,19],"\u0440\u0435\u0430\u043b\u0438\u0441\u0442\u0438\u0447\u043d":9,"\u0440\u0435\u0430\u043b\u044c\u043d":11,"\u0440\u0435\u0433":9,"\u0440\u0435\u0433\u0438\u0441\u0442\u0440":[4,11],"\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u043d":4,"\u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d":9,"\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430":7,"\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d":[9,19],"\u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440":17,"\u0440\u0435\u0434\u0430\u043a\u0446":8,"\u0440\u0435\u0436":[9,17],"\u0440\u0435\u0436\u0438\u043c":[4,9,11,14],"\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442":[2,4,9,10,12,14,18,19],"\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443":[0,3,4,9],"\u0440\u0435\u043b\u0438\u0437":19,"\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"\u0440\u0435\u0441\u0443\u0440\u0441":19,"\u0440\u0435\u0447":19,"\u0440\u0435\u0448\u0430":19,"\u0440\u0435\u0448\u0435\u043d":[3,19],"\u0440\u0438\u0441\u043e\u0432\u0430\u043d":9,"\u0440\u043e\u0431\u043e\u0442":[1,3,4,7,8,9,11,14,16],"\u0440\u043e\u0431\u043e\u0442\u0438\u0437\u0430":15,"\u0440\u043e\u0431\u043e\u0442\u0438\u0437\u0430\u0446":[3,8,14,15,16,19],"\u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a":[9,17],"\u0440\u043e\u043b\u0435\u0432":[3,4,19],"\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a":19,"\u0440\u043f\u0430":19,"\u0440\u0443\u0431":[3,8,14,16,19],"\u0440\u0443\u0431\u043b":19,"\u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432":[16,19],"\u0440\u0443\u0441\u0441\u043a":[4,11],"\u0440\u044b\u043d\u043a":[3,19],"\u0440\u044b\u043d\u043e\u043a":19,"\u0440\u044f\u0434":[9,19],"\u0441":[0,1,3,4,7,8,9,10,11,12,13,14,15,16,19],"\u0441\u0430\u043c":[9,19],"\u0441\u0430\u043c\u043e\u0437\u0430\u043d\u044f\u0442":[1,19],"\u0441\u0430\u043d\u043a\u0442":1,"\u0441\u0430\u043d\u043a\u0446":19,"\u0441\u0431\u043e\u0440":3,"\u0441\u0432\u0435\u0434\u0435\u043d":4,"\u0441\u0432\u0435\u0440\u043d\u0443\u0442":9,"\u0441\u0432\u0435\u0440\u0445":[9,14],"\u0441\u0432\u0435\u0441\u0442":15,"\u0441\u0432\u043e":[1,3,4,6,9,14,19],"\u0441\u0432\u043e\u0439\u0441\u0442\u0432":[9,19],"\u0441\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u043d":9,"\u0441\u0432\u044f\u0437":[4,11,19],"\u0441\u0432\u044f\u0437\u0430":9,"\u0441\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430":4,"\u0441\u0435\u0433\u043c\u0435\u043d\u0442":19,"\u0441\u0435\u0433\u043e\u0434\u043d":19,"\u0441\u0435\u043a":[4,10,14],"\u0441\u0435\u043a\u0443\u043d\u0434":[4,9,11,13,14],"\u0441\u0435\u043b\u0435\u043a\u0442\u043e\u0440":[10,17,19],"\u0441\u0435\u043c\u0435\u0439\u0441\u0442\u0432":19,"\u0441\u0435\u0440":14,"\u0441\u0435\u0440\u0432\u0435\u0440":[3,4],"\u0441\u0435\u0440\u0435\u0434\u0438\u043d":4,"\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442":[1,4,19],"\u0441\u0435\u0441":9,"\u0441\u0435\u0441\u0438":4,"\u0441\u0435\u0441\u0441":[3,4,9,15,16,19],"\u0441\u0435\u0442\u0435\u0432":4,"\u0441\u0438\u0433\u043d\u0430":4,"\u0441\u0438\u043c\u0432\u043e\u043b":[4,9,11],"\u0441\u0438\u043c\u0432\u043e\u043b\u044c\u043d":19,"\u0441\u0438\u043c\u0443\u043b\u044f\u0446":9,"\u0441\u0438\u043d":9,"\u0441\u0438\u043d\u0433\u043b\u0442\u043e\u043d":4,"\u0441\u0438\u043d\u043e\u043d":4,"\u0441\u0438\u043d\u043e\u043d\u0438\u043c":4,"\u0441\u0438\u043d\u0445\u0440\u043e\u043d":4,"\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446":4,"\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430":4,"\u0441\u0438\u0441\u0442":11,"\u0441\u0438\u0441\u0442\u0435\u043c":[4,7,11],"\u0441\u0438\u0442\u0443\u0430\u0446":[4,9],"\u0441\u043a\u0430\u043d":11,"\u0441\u043a\u0430\u0447\u0430":[0,10],"\u0441\u043a\u043e\u043b\u044c\u043a":9,"\u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430":[4,11],"\u0441\u043a\u043e\u0440\u043e\u0441\u0442":19,"\u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430":14,"\u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442":[0,19],"\u0441\u043a\u0440\u0438\u043f\u0442":[6,19],"\u0441\u043a\u0440\u043e\u043b\u043b\u0438\u043d\u0433":13,"\u0441\u043a\u0440\u044b\u0442":9,"\u0441\u043b\u0435\u0432":[9,14],"\u0441\u043b\u0435\u0434":[0,3,4,6,9,11,13,14,15,17],"\u0441\u043b\u0435\u0434\u044e\u0449":4,"\u0441\u043b\u043e\u0432":10,"\u0441\u043b\u043e\u0432\u0430\u0440":[4,5,9,19],"\u0441\u043b\u043e\u0432\u0430\u0440\u0431":4,"\u0441\u043b\u043e\u0436\u0435\u043d":4,"\u0441\u043b\u043e\u0436\u043d":3,"\u0441\u043b\u0443\u0447\u0430":[1,4,9,13,14,19],"\u0441\u043b\u0443\u0448\u0430":4,"\u0441\u043c":[0,1,3,4,6,9,11,13,14,19],"\u0441\u043c\u0435\u043d":10,"\u0441\u043c\u0435\u0449\u0435\u043d":14,"\u0441\u043c\u043e\u0436\u0435\u0442":[3,8,14,16],"\u0441\u043c\u043e\u0442\u0440\u0435\u0442":19,"\u0441\u043d\u0430\u0447\u0430":4,"\u0441\u043d\u0438\u0437":[9,14],"\u0441\u043d\u044f\u0442":9,"\u0441\u043e":[3,4,7,9,11],"\u0441\u043e\u0431\u044b\u0442":11,"\u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d":[1,19],"\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c":[4,9],"\u0441\u043e\u0432\u043f\u0430\u0434\u0430":9,"\u0441\u043e\u0433\u043b\u0430\u0448\u0435\u043d":1,"\u0441\u043e\u0434\u0435\u0440\u0436":[4,8,11,19],"\u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442":9,"\u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c":[4,9,12],"\u0441\u043e\u0435\u0434\u0438\u043d":4,"\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d":4,"\u0441\u043e\u0437\u0434\u0430":[4,5,14,15,19],"\u0441\u043e\u0437\u0434\u0430\u0432\u0430":4,"\u0441\u043e\u0437\u0434\u0430\u043d":[4,8,19],"\u0441\u043e\u043e\u0431\u0449\u0430":4,"\u0441\u043e\u043e\u0431\u0449\u0435\u043d":[4,11],"\u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],"\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0432":[4,9,11,13,14,15],"\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432":[3,4,9,10,14],"\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d":11,"\u0441\u043e\u0441\u0442\u043e":[3,17],"\u0441\u043e\u0441\u0442\u043e\u044f":3,"\u0441\u043e\u0441\u0442\u043e\u044f\u043d":[3,4,9,19],"\u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a":[3,8,14,16,19],"\u0441\u043e\u0444\u0442":19,"\u0441\u043e\u0445\u0440\u0430\u043d":[4,14],"\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d":[4,10],"\u0441\u043e\u0445\u0440\u0430\u043d\u044f":[4,10],"\u0441\u043e\u0447\u0435\u0442\u0430":19,"\u0441\u043e\u0447\u0435\u0442\u0430\u043d":11,"\u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d":[3,4],"\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446":9,"\u0441\u043f\u0438\u0441\u043a":[4,9,14],"\u0441\u043f\u0438\u0441\u043e\u043a":[4,9,10,11,14,17],"\u0441\u043f\u043e\u0441\u043e\u0431":[4,9,10,15],"\u0441\u043f\u0440\u0430\u0432":[9,14],"\u0441\u043f\u0440\u0430\u0432\u043a":4,"\u0441\u0440\u0430\u0437":4,"\u0441\u0440\u0435\u0434":[3,4,9,19],"\u0441\u0440\u0435\u0434\u043d":19,"\u0441\u0440\u0435\u0434\u0441\u0442\u0432":15,"\u0441\u0440\u0438\u043f\u0442":15,"\u0441\u0441\u044b\u043b\u043a":[3,19],"\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d":[4,11],"\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442":19,"\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d":4,"\u0441\u0442\u0430\u043d\u0435\u0442":9,"\u0441\u0442\u0430\u043d\u043e\u0432":19,"\u0441\u0442\u0430\u0440":4,"\u0441\u0442\u0438\u043b":10,"\u0441\u0442\u0438\u043b\u0435\u0432":10,"\u0441\u0442\u043e\u043b":[8,9],"\u0441\u0442\u043e\u0440\u043e\u043d":[4,7,10,11,19],"\u0441\u0442\u0440\u0430\u043d\u0438\u0446":[0,4,10,11],"\u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a":19,"\u0441\u0442\u0440\u043e\u043a":[4,9,11,14,15],"\u0441\u0442\u0440\u043e\u043a\u043e\u0432":[4,14],"\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440":[3,4,9],"\u0441\u0442\u0443\u0434":[9,15,16],"\u0441\u0443\u043f\u0435\u0440":4,"\u0441\u0443\u043f\u0435\u0440\u0434\u043e\u0441\u0442\u0443\u043f":4,"\u0441\u0443\u043f\u0435\u0440\u0442\u043e\u043a":4,"\u0441\u0443\u043f\u0435\u0440\u0442\u043e\u043a\u0435\u043d":4,"\u0441\u0443\u0449\u0435\u0441\u0442\u0432":[0,4,9],"\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d":[3,8,11,14,16],"\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043e\u0432\u0430\u043d":9,"\u0441\u0445\u043e\u0436":9,"\u0441\u0447\u0435\u0442":11,"\u0441u":14,"\u0442":[10,11],"\u0442\u0430\u043a":[3,6,9,11,13,19],"\u0442\u0430\u043a\u0436":[0,1,4,6,7,9,11,15],"\u0442\u0430\u043a\u043e\u0432":[9,19],"\u0442\u0430\u043c":15,"\u0442\u0434":4,"\u0442\u0435":7,"\u0442\u0435\u043a\u0441\u0442":[1,9,10,11,17,19],"\u0442\u0435\u043a\u0441\u0442\u043e\u0432":[4,8,11,12,15,19],"\u0442\u0435\u043a\u0443\u0449":[4,9,11,13,19],"\u0442\u0435\u043b":4,"\u0442\u0435\u043b\u0435\u0433\u0440":1,"\u0442\u0435\u043b\u0435\u0444\u043e\u043d":1,"\u0442\u0435\u043c":[4,9,11,19],"\u0442\u0435\u043f\u0435\u0440":9,"\u0442\u0435\u0440\u043c\u0438\u043d":9,"\u0442\u0435\u0440\u043c\u0438\u043d\u0430\u043b":11,"\u0442\u0435\u0445":13,"\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a":9,"\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433":[0,8,9,19],"\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a":19,"\u0442\u0438\u043f":[4,9,10,12,14],"\u0442\u043e":[3,4,7,8,9,10,11,14,16,19],"\u0442\u043e\u0433":[3,4,9,11,19],"\u0442\u043e\u043a":4,"\u0442\u043e\u043b\u0441\u0442":1,"\u0442\u043e\u043b\u0449\u0438\u043d":[9,14],"\u0442\u043e\u043b\u044c\u043a":[1,3,4,8,9,10,11,14,16,19],"\u0442\u043e\u043c":[4,7],"\u0442\u043e\u043d\u043a":6,"\u0442\u043e\u0447\u043a":19,"\u0442\u043e\u0447\u043d":19,"\u0442\u043e\u0447\u043d\u043e\u0441\u0442":[11,14],"\u0442\u0440\u0435\u0431":[1,4,7,9,10,11,13,14,19],"\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d":9,"\u0442\u0440\u0443\u0434\u043d\u043e\u0441\u0442":0,"\u0442\u044b\u0441":[3,8,14,16,19],"\u0442\u044b\u0441\u044f\u0447":3,"\u0443":[1,3,7,8,9,10,11,14,16,19],"\u0443\u0431\u0435\u0434":4,"\u0443\u0432\u0435\u043b\u0438\u0447\u0438\u0432\u0430":3,"\u0443\u0433\u043b":9,"\u0443\u0433\u043e\u0434\u043d":0,"\u0443\u0434\u0430\u043b":10,"\u0443\u0434\u0430\u043b\u0435\u043d":[3,4,19],"\u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430":[9,17],"\u0443\u0434\u043e\u0431\u043d":7,"\u0443\u0434\u043e\u0431\u0441\u0442\u0432":9,"\u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u044f":[9,10,14],"\u0443\u0436":[0,4,7,9,11],"\u0443\u0437":4,"\u0443\u0437\u043b":19,"\u0443\u043a\u0430\u0436":9,"\u0443\u043a\u0430\u0437\u0430":[4,7,9,10,11,13],"\u0443\u043a\u0430\u0437\u0430\u043d":[4,19],"\u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b":[9,10,13,14],"\u0443\u043a\u0430\u0437\u043d":9,"\u0443\u043a\u0430\u0437\u044b\u0432\u0430":[4,9],"\u0443\u043b\u0438\u0446":1,"\u0443\u043b\u0443\u0447\u0448":[3,8,14,16],"\u0443\u043c\u043e\u043b\u0447\u0430\u043d":[4,7,9,10,11,13,14,17],"\u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d":[4,7,19],"\u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0430":4,"\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d":[3,4,8,9,10,11,19],"\u0443\u043f\u0440\u0430\u0432\u043b\u044f":[3,8,14,16,19],"\u0443\u043f\u0440\u043e\u0441\u0442":15,"\u0443\u043f\u0440\u043e\u0449\u0435\u043d":3,"\u0443\u0440\u043e\u0432\u0435\u043d":[8,9,19],"\u0443\u0440\u043e\u0432\u043d":[9,17],"\u0443\u0441\u043a\u043e\u0440\u044f":14,"\u0443\u0441\u043b\u043e\u0432":[9,14],"\u0443\u0441\u043b\u0443\u0433":19,"\u0443\u0441\u043f\u0435\u0448\u043d":[0,4],"\u0443\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430":[4,9,10],"\u0443\u0441\u0442\u0430\u043d\u043e\u0432":[4,9,10,12,15],"\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a":[4,9,10,12],"\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b":[4,9,11,13,14],"\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d":[9,17],"\u0443\u0441\u0442\u0443\u043f\u0430":19,"\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a":19,"\u0443\u0447\u0435\u0442":[4,14,19],"\u0443\u0447\u0435\u0442\u043d":[3,4],"\u0443\u0447\u0438\u0442\u044b\u0432\u0430":11,"\u0443\u044f\u0437\u0432":9,"\u0444":11,"\u0444\u0430\u0439\u043b":[4,5,6,17,19],"\u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a":[1,11,19],"\u0444\u0438\u043a\u0441\u0430\u0446":4,"\u0444\u0438\u043a\u0441\u0438\u0440":4,"\u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432":19,"\u0444\u0438\u0440\u043c":8,"\u0444\u043b\u0430\u0436\u043a":9,"\u0444\u043b\u0430\u0436\u043e\u043a":9,"\u0444\u043e\u043a\u0443\u0441":9,"\u0444\u043e\u0440\u043c\u0430\u0442":[4,9,14,19],"\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d":9,"\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430":9,"\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d":14,"\u0444\u0443\u043d\u043a\u0446":[3,7,8,19],"\u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d":[1,3,7,8,9,16,19],"\u0445":[4,9,14],"\u0445\u0430\u0440\u0430\u043a\u0435\u0442\u0440\u0438\u0437":9,"\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0437":14,"\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a":9,"\u0445\u043e\u0441\u0442":4,"\u0445\u043e\u0442":[3,6,9,14,17],"\u0445\u0440\u0430\u043d\u0435\u043d":[3,4],"\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449":[3,4,19],"\u0446\u0432\u0435\u0442":[4,9,10,14,17],"\u0446\u0435\u043b":[4,9],"\u0446\u0435\u043b\u0435\u0432":[9,13],"\u0446\u0435\u043b\u043e\u0441\u0442\u043d":11,"\u0446\u0435\u043d\u0442\u0440":[0,3,4,7,8,9,14,16,19],"\u0446\u0435\u043f\u043e\u0447\u043a":9,"\u0446\u0438\u043a\u043b":4,"\u0446\u0438\u0444\u0440\u043e\u0432":[1,19],"\u0447\u0430\u0441":9,"\u0447\u0430\u0441\u0442":[4,9],"\u0447\u0430\u0441\u0442\u043e\u0442":4,"\u0447\u0430\u0442":19,"\u0447\u0435\u0433":[11,13,14],"\u0447\u0435\u0440\u0435\u0437":[3,4,8,9,11,19],"\u0447\u0438\u0441\u043b":[9,11,14],"\u0447\u0438\u0441\u0442\u043e\u0442":19,"\u0447\u0442\u0435\u043d":[4,9,19],"\u0447\u0442\u043e":[3,7,8,9,10,11,12,13,14,15,16,19],"\u0447\u0442\u043e\u0431":[3,4,9,11,15,17],"\u0447\u0443\u0432\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d":4,"\u0448\u0430\u0431\u043b\u043e\u043d":[3,4,19],"\u0448\u0430\u043d\u0441":3,"\u0448\u0435\u0441\u0442\u043d\u0430\u0434\u0446\u0430\u0442\u0438\u0440\u0438\u0447\u043d":11,"\u0448\u0438\u0440\u0438\u043d":[4,14],"\u0448\u0438\u0440\u043e\u043a":3,"\u0449\u0435\u043b\u043a\u043d":9,"\u0449\u0435\u043b\u043a\u043d\u0443\u0442":[9,17],"\u0449\u0435\u043b\u0447\u043a":[9,13],"\u0449\u0435\u043b\u0447\u043e\u043a":[9,13],"\u044d\u0432\u043c":15,"\u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440":[4,9,14],"\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a":19,"\u044d\u043a\u0440\u0430":[4,8,9,13,14,19],"\u044d\u043a\u0440\u0430\u043d":[4,9,13,14],"\u044d\u043b\u0435\u043c\u0435\u043d\u0442":[4,8,9,10,14,19],"\u044d\u0440\u0430\u043d":8,"\u044d\u0442":[3,4,6,7,8,9,10,11,14,15,16,19],"\u044d\u0442\u043e\u0442":[3,9,15],"\u044d\u0444\u0444\u0435\u043a\u0442":[3,8,14,16,19],"\u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d":[10,19],"\u044f":8,"\u044f\u0432\u043b\u044f":[4,9,14,19],"\u044f\u0432\u043d":[11,19],"\u044f\u0434\u0440":4,"\u044f\u0437\u044b\u043a":[4,9,11],"case":[2,5],"catch":[2,5],"class":9,"continue":4,"debugger":18,"default":[2,4,5],"double":9,"else":[2,5],"false":[2,4,5,9,10,11,14],"float":[2,5,9,10,11,13,14],"for":[2,4,5,11,19],"function":5,"import":[4,5,6,8,9,10,11,12,13,14,15,18],"int":[9,10,11,13,14],"key_rus_\u0430":11,"key_rus_\u0431":11,"key_rus_\u0432":11,"key_rus_\u0433":11,"key_rus_\u0434":11,"key_rus_\u0435":11,"key_rus_\u0436":11,"key_rus_\u0437":11,"key_rus_\u0438":11,"key_rus_\u0439":11,"key_rus_\u043a":11,"key_rus_\u043b":11,"key_rus_\u043c":11,"key_rus_\u043d":11,"key_rus_\u043e":11,"key_rus_\u043f":11,"key_rus_\u0440":11,"key_rus_\u0441":11,"key_rus_\u0442":11,"key_rus_\u0443":11,"key_rus_\u0444":11,"key_rus_\u0445":11,"key_rus_\u0446":11,"key_rus_\u0447":11,"key_rus_\u0448":11,"key_rus_\u0449":11,"key_rus_\u044a":11,"key_rus_\u044b":11,"key_rus_\u044c":11,"key_rus_\u044d":11,"key_rus_\u044e":11,"key_rus_\u044f":11,"new":[5,6],"return":[2,4,5,8,10],"static":9,"switch":11,"this":[2,5],"true":[2,4,5,7,9,10,11,14,18],"try":[4,9],"var":4,"with":[4,5,6,8],__agent__:19,__agentactivityreturndictitemcreate__:5,__agentdictitemcreate__:5,__create__:5,__init__:4,__main__:6,__name__:6,__orchestrator__:4,__statisticsdict__:5,__uacclientadmincreate__:5,_cp:4,_sessionlast_gsettings:4,_sessionlast_rdplist:4,_sessionlast_storagedict:4,about:[5,18],abs:[2,5],absolute:[5,9],absolutely:2,abspath:4,access:[4,5,7],accessusers:5,activate:5,active:[4,5,7],active_only:9,activities:5,activity:[4,5,7],activitydict:[5,7],activityitem:[2,3,19],activityitemcreate:4,activityitemdefaliascreate:4,activityitemdefaliasmodulesload:4,activityitemdefaliasupdate:4,activityitemhelperdefautofill:4,activityitemhelperdeflist:4,activityitemnowdict:5,activitylist:5,activitylistappendprocessorqueuebool:[5,7],activitylistexecute:4,activitylistexecutebool:[5,7],activitytimelist:5,add:5,addhandler:5,address:5,addressstr:5,admindict:[5,7],administrator:4,after:[5,18],agent:[4,5,19],agentactivityitemadd:4,agentactivityitemexists:4,agentactivityitemreturnexists:4,agentactivityitemreturnget:4,agentactivitylifetimesecfloat:5,agentactivityreturndict:5,agentactivityreturnlifetimesecfloat:5,agentconnectionlifetimesecfloat:5,agentdict:5,agentfilechunkbytessizeint:5,agentfilechunkcheckintervalsecfloat:5,agentkeydict:[5,7],agentkeystr:[5,7],agentlimitlogsizebytesint:5,agentloopsleepsecfloat:5,agentoscmd:4,agentosfilebinarydatabase64strappend:4,agentosfilebinarydatabase64strcreate:4,agentosfilebinarydatabase64strreceive:4,agentosfilebinarydatabytescreate:4,agentosfilebinarydatareceive:4,agentosfilesend:4,agentosfiletextdatastrcreate:4,agentosfiletextdatastrreceive:4,agentoslogoff:4,agentprocesswoexeupperuserlistget:4,alert:10,algorythms:5,alias:[4,5],aliasdefdict:[4,5],all:[4,5,7],allow:6,allowed:5,already:4,alt:11,alt_shift_toggle:11,amd64:[0,4,9,15],amd64python:15,and:[2,4,5,7],another:4,apache:1,api:4,app:2,appear:18,append:[4,5,7,9,15],applicable:5,application:[4,9],apply:5,apt:[0,11,12,14],archive:5,argdict:[4,5],arggsettings:[4,5],arggsettingsstr:4,arglist:[4,5],arglogger:[4,5],argloggerstr:4,args:[4,5],arguments:10,argvaluestr:4,asctime:5,ask:5,astra:19,asweigart:1,attention:[2,4,5],attribute:[4,5],authentication:5,authtoken:5,authtokensdict:5,auto_id:9,autocleaner:5,automatically:5,automation:[8,19],automation_id:9,available:[5,6],b64decode:2,back:19,backend:[8,9],backendstr_gettoplevellist_uioinfo:9,base64:[2,4],basehttprequesthandler:4,basewrapper:9,basic:[5,6],beautiful:2,been:[4,5],before:5,beginwith:[4,5],below:4,best_match:9,between:5,bigdata:19,bin:0,binary:[2,4],bit:1,blob:1,blocked:5,blue:[9,10,14],body:[4,5],bool:[4,5,9,10,11,14],boppreh:1,borismoore:1,bottom:9,box:[6,19],boxanchorrulecheck:14,boxcreate:14,boxdraw:14,boxgetpoint:14,boxmodify:14,boxmoveto:14,boxoverlay:14,browser:5,browserchange:10,browserchromestart:10,browserclose:10,bs_null:9,bsd:1,bst_checked:9,bst_indeterminate:9,bst_unchecked:9,button:[5,7,9,14],button_down:9,button_up:9,cache:5,calcframe:9,call:[4,5,6],can:[2,4,5,6,18],cancel:9,car:4,catchperiodsecfloat:5,cclulds:14,certfilepempathstr:5,changed:5,chat:19,check:[4,5,9,18],checkbox:9,checkintervalsecfloat:5,child:10,chrome:[4,10],chunk:5,class_name:[8,9],class_name_re:9,clause:1,clear:5,click:[9,13],click_input:[8,9],clickdouble:13,client:5,clientrequesthandler:5,clipboard:[0,8,15,19],clipboardget:8,clipboardset:8,close:[4,5,18],cmd:[2,4,5,6,7,8,11,17],cmdinputbool:[5,7],code:[4,5,9],codepoint:11,codes:11,col:10,collecting:5,color:10,colour:9,com:[0,1,11,19],combobox:9,come:[2,18],command:[0,2,11,15],commands:5,completed:5,completion:5,complex:4,config:6,configuration:[4,5,6],configure:[5,9],connect:5,connection:5,connectioncountint:5,connectionfirstqueueitemcountint:5,console:5,contains:[4,5],content:[2,5],control:[4,5,7],control_id:9,control_type:[8,9],control_type_re:9,controlpanel:[4,5],controlpaneldict:5,controlpanelkeyallowedlist:5,controlpanelrefreshintervalsecfloat:5,controls:[5,7],cookie:5,coords:9,copy:15,cp1251:[2,4],cp866:2,cp_:4,cp_versioncheck:4,cpkey:5,cpkeydict:[5,7],cpkeystr:[5,7],cpu:19,create:[2,4,5,6,18],created:5,creating:5,crosscheck:4,css:10,ctrl:[8,9,11],ctrl_index:9,ctypes:8,current:[2,4,5,7],cus:14,daemonic:2,data:[2,5,11],datasetlast:5,datastorage:4,datetime:5,dbader:1,dear:11,debugging:[4,5],decode:2,def:[4,5,6,8,18],defaliastest:5,defhelper:4,defnamestr:5,defsettingsupdatepathlist:5,demo:[8,9],depth_end:[8,9],depth_start:[8,9],depth_stop:9,depthbit:[4,5],desktop:[5,19],desktopuser:4,detect:5,devhints:10,dict:[2,4,5,9,19],dictionary:[4,5],directory:[4,7,18],disconnect:[4,5],display_dashboard:4,div:10,dodict:5,domain:5,domainadstr:5,domainupperstr:4,domainuser:4,don:[2,5],dont:[5,7],dos:[2,4],double_click_input:[8,9],down:[11,13],dp0:15,drag_mouse_input:9,draw_outline:[8,9],drives:5,dropped_rect:9,dsd:5,dst:9,dump:5,dumploglist:5,dumploglistcountint:5,dumploglisthashstr:5,dumploglistrefreshintervalsecfloat:5,duration:5,each:5,early:2,echo:[8,11],edit:[8,9],element_info:9,elementinfo:9,empty:[5,7],enabled:9,enabled_only:9,encapsulated:2,encode:2,encoding:[2,4],end:9,eng:19,enter:8,env:5,equal:[4,5],equalcase:[4,5],equalnoparam:4,etc:4,every:[4,5],example:[2,4],examples:5,except:[4,9],exception:[4,9,10],exceptions:4,exe:[0,2,4,9,10,15,18],executable:4,execute:[2,5,7],executebool:5,executed:4,executing:5,execution:[2,5],exist:[2,5],exists:[4,5],explorer:[4,17],feature:5,field:5,file:[2,4,5,18],filebodybytes:4,filehandler:5,filemanager:5,filemode:5,filenamestr:4,files:5,fileurl:5,fileurlfilepathdict:5,fileurlfilepathdict_help:5,fill:[5,9],filled:5,fills:5,findwindows:9,flag:[2,5],flagaccess:5,flagaccessdefrequestglobalauthenticate:5,flagcredentialsask:5,flagdonotexpire:5,flagsessionisactive:5,flaguseallmonitors:[4,5],flase:[2,4],forget:5,format:2,formatter:5,found:[0,11],found_index:9,foundation:1,framework:9,framework_id:9,friday:4,friendly_class_name:9,friendly_class_name_re:9,friendlyclassname:9,from:[2,4,5,6,8,9,10,11,12,13,14,15,18],from_point:9,front:19,full:5,full_control_type:9,fullscreen:5,fullscreenbool:[5,7],fullscreenrdpsessionkeystr:5,functions:[2,4,9,10,11,12,13,14,18],general:5,get:[0,4,5,11,12,14],get_check_state:9,get_item_focus:9,get_line:9,get_osbitnessint:9,get_properties:9,getlogger:5,getscreenshot:4,giampaolo:1,git:[0,4,5,7],github:1,gitlab:19,give:[5,7],global:2,google:10,green:[4,9,10,14],grey:10,grid:10,grid__ccol:10,grid__main:10,grid_newscol:10,grid_newscol__more:10,groupbox:9,groupboxes:9,grp:11,gsettings:[4,6,19],gsettingsdict:4,gsettingsget:4,gsettingskeylistvalueappend:4,gsettingskeylistvalueget:4,gsettingskeylistvalueoperatorplus:4,gsettingskeylistvalueset:4,gui:2,guid:[4,5],guidstr:[4,5],gurbage:5,habr:19,handbk:11,handle:[5,9],handlebars:1,handler:5,handlers:5,hard:5,has:[5,18],have:4,hdd:19,headers:4,height:[4,5,9,14],hello:[4,10,11,12],help:[4,19],hex:[5,9],hiddenisorchestratorinitialized:5,hierarchy:17,host:[4,5],hostnameupperstr:5,hotkeycombination:11,hotkeyctrla_ctrlc:11,hotkeyctrlv:11,how:18,hpnd:1,href:10,html:[4,5,9,19],http:[1,4,5],https:[0,1,4,5,9,10,11,19],ignore:5,ignorebool:[5,7],image:[4,15],image_wait_interval_sec_float:14,image_wait_sec_float:14,imageclick:14,imageexists:14,imagelocateall:14,imagewaitappear:14,imagewaitdisappear:14,imported:4,inactionname:9,inactivityitemdict:4,inactivitylist:4,inaddressstr:4,inadisdefaultbool:4,inadloginstr:4,inadstr:4,inadstrinadloginstr:4,inagentfilepathstr:4,inaliasstr:4,inanchorbox:14,inanchorrule:14,inanchorrulestr:19,inarg1str:4,inargdict:4,inarggsettings:4,inarggsettingsstr:4,inarglist:[4,10],inargloggerstr:4,inargumentlist:9,inasyncinitbool:4,inattributestr:10,inbackend:9,inbox1:14,inbox2:14,inbox:14,inboxindexint:14,inbreaktriggerprocesswoexelist:4,inbrowser:10,inbuttonstr:[13,14],incapturebool:[2,4],incertfilepempathstr:4,incheckintervalsecfloat:4,inchromeexepathstr:10,inclickcountint:[13,14],incloseforcebool:4,included:8,incmdencodingstr:[2,4],incmdstr:[2,4],incolorstr:[10,14],inconfidencefloat:14,incontenttypestr:4,incontrolspecificationarray:9,incpkeystr:4,indef:4,indefargdict:4,indefarggsettingsnamestr:4,indefarglist:4,indefargloggernamestr:4,indefargnamegsettingsstr:4,indefnamestr:4,indefquerystr:4,indefstr:4,indelayfloat:11,indelaysecfloat:11,indepthbitint:4,index:[1,4,5,9],indheightint:14,indict:5,indomainstr:4,indopressbool:11,indoreleasebool:11,indriverexepathstr:10,indumprestorebool:4,indurationsecfloat:10,indwidthint:14,indxint:14,indyint:14,inelement:9,inelementinfo:9,inelementspecification:9,inencodingstr:[2,4],inexactbool:11,inexecuteinnewthreadbool:4,inextensionpathlist:10,infiledatabase64str:[2,4],infiledatabytes:4,infiledatastr:[2,4],infilepathstr:[2,4],inflagforceclosebool:4,inflaggetabspathbool:4,inflagraiseexception:9,inflagsetfocus:9,inflagwaitallinmoment:9,info:[4,5],infolderpathstr:4,inforcebool:4,inglobpatternstr:4,ingsettings:[2,4,6],ingsettingsclientdict:5,inguidstr:4,inhashkeystr:5,inheadersdict:4,inheightint:14,inheightpxint:4,inhierarchylist:9,inhorizontalpxint:10,inhostfilepathstr:4,inhostnamestr:4,inhoststr:[4,5],inhtmlrenderdef:4,inimgpathstr:14,inintervalasyncbool:4,inintervalsecfloat:[4,13,14],inisfirst:10,inisgraymodebool:14,init:[4,5,6,18],init_debug:18,initdatetime:5,inited:5,initialized:5,injsinitgeneratordef:4,injsongeneratordef:4,injsstr:10,inkeyfilepathstr:4,inkeyint:11,inkeylist:[4,11],inkeystr:5,inkwargs:18,inkwargumentobject:9,inleftint:14,inlogger:[4,5,18],inloggerlevel:5,inloginstr:[4,5],inmatchtypestr:4,inmessagestr:4,inmethodstr:4,inmodestr:[4,5,6],inmodulepathstr:4,inmovedurationsecfloat:[13,14],inoperationcodestr:4,inorchestratorfilepathstr:4,inpasswordstr:[4,5],inpathstr:4,inpoint:14,inpointrulestr:19,inportint:4,inportstr:[4,5],inprocessnamewexestr:4,inprocessnamewoexelist:[2,4],inprocessnamewoexestr:4,inprofilepathstr:10,inrdpfilepathstr:4,inrdpsessionkeystr:[4,5],inrdptemplatedict:4,inredirectclipboardbool:4,inrequest:4,inresponestr:4,inrestorestateafterbool:11,inreturn:5,inrobotnamestr:4,inrolehierarchyalloweddict:4,inrolekeylist:4,inrootelement:9,inrowcountint:5,inrunasadministratorbool:4,inrunasyncbool:[2,4],inscrollclickcountint:13,insendoutputtoorchestratorlogsbool:[2,4],insert:4,inserverkeystr:4,inshareddrivelist:4,inspecificationlist:9,inspecificationlistlist:9,install:[0,8,11,12,14],instance:5,instopprocessnamewoexestr:4,insupertokenstr:4,internet:17,interval:5,intervalsecfloat:5,intextstr:[11,12],inthicknessint:14,inthreadbool:4,intimehhmmstr:4,intopint:14,inuacbool:4,inuio:10,inuioselector:9,inuioselectorstr:10,inurlindexstr:4,inurllist:4,inurlstr:[4,10],inusebothmonitorbool:4,inusecachebool:4,inusernamestr:4,inuserstr:4,invalue:[4,10],inverticalpxint:10,inwaitaftersecfloat:[11,13,14],inwaitintervalsecfloat:[10,14],inwaitsecfloat:[10,14],inwaitsecs:9,inweekdaylist:4,inwidthint:14,inwidthpxint:4,inx:9,inxint:[13,14],iny:9,inyint:[13,14],is_checked:9,is_child:9,is_dialog:9,is_enabled:9,is_single_selection:9,is_visible:9,isdown:11,islistenbool:5,isresponsiblebool:4,issafestop:18,isstopsafe:18,item:[5,9],item_count:9,item_data:9,item_texts:9,iterations:5,ivan:[1,4],ivanmaslov:1,javascript:10,jinja2:[1,4],jinja:1,join:4,json:[2,4,5,9],jsrender:1,jupiternotebook:1,jupyter:1,kb2999226:19,key:[4,5],key_down:9,key_eng_a:11,key_eng_b:11,key_eng_c:11,key_eng_colon:11,key_eng_d:11,key_eng_e:11,key_eng_f:11,key_eng_g:11,key_eng_h:11,key_eng_i:11,key_eng_j:11,key_eng_k:11,key_eng_l:11,key_eng_layout:11,key_eng_m:11,key_eng_n:11,key_eng_o:11,key_eng_p:11,key_eng_q:11,key_eng_r:11,key_eng_s:11,key_eng_t:11,key_eng_u:11,key_eng_v:11,key_eng_w:11,key_eng_x:11,key_eng_y:11,key_eng_z:11,key_hot_0:11,key_hot_1:11,key_hot_2:11,key_hot_3:11,key_hot_4:11,key_hot_5:11,key_hot_6:11,key_hot_7:11,key_hot_8:11,key_hot_9:11,key_hot_alt_left:11,key_hot_alt_right:11,key_hot_apostrophe:11,key_hot_backspace:11,key_hot_caps_lock:11,key_hot_clear:11,key_hot_colon:11,key_hot_context_menu:11,key_hot_ctrl_left:11,key_hot_ctrl_right:11,key_hot_delete:11,key_hot_down:11,key_hot_end:11,key_hot_enter:11,key_hot_esc:11,key_hot_f10:11,key_hot_f11:11,key_hot_f12:11,key_hot_f13:11,key_hot_f14:11,key_hot_f15:11,key_hot_f16:11,key_hot_f17:11,key_hot_f18:11,key_hot_f19:11,key_hot_f1:11,key_hot_f20:11,key_hot_f21:11,key_hot_f22:11,key_hot_f23:11,key_hot_f24:11,key_hot_f2:11,key_hot_f3:11,key_hot_f4:11,key_hot_f5:11,key_hot_f6:11,key_hot_f7:11,key_hot_f8:11,key_hot_f9:11,key_hot_greater_than:11,key_hot_home:11,key_hot_insert:11,key_hot_left:11,key_hot_less_than:11,key_hot_minus:11,key_hot_num_lock:11,key_hot_numpad_0:11,key_hot_numpad_1:11,key_hot_numpad_2:11,key_hot_numpad_3:11,key_hot_numpad_4:11,key_hot_numpad_5:11,key_hot_numpad_6:11,key_hot_numpad_7:11,key_hot_numpad_8:11,key_hot_numpad_9:11,key_hot_numpad_asterisk:11,key_hot_numpad_delete:11,key_hot_numpad_enter:11,key_hot_numpad_minus:11,key_hot_numpad_plus:11,key_hot_numpad_solidus:11,key_hot_page_down:11,key_hot_page_up:11,key_hot_plus:11,key_hot_print_screen:11,key_hot_right:11,key_hot_scroll_lock:11,key_hot_shift_left:11,key_hot_shift_right:11,key_hot_solidus:11,key_hot_space:11,key_hot_square_bracket_left:11,key_hot_square_bracket_right:11,key_hot_tab:11,key_hot_tilde:11,key_hot_up:11,key_hot_vertical_line:11,key_hot_win_left:11,key_hot_win_right:11,key_rus_layout:11,key_up:9,keyboard:[1,8,9,15,19],keyfilepathstr:5,keys:[4,9],lactivityitem:4,lactivityitemdict:4,lactivitylist:9,lactivityresult:9,laliasstr:4,lang:1,lappearuiolist:10,lapplist:9,last:5,latest:9,layout:11,lbackendstr:9,lbox1:14,lbox2:14,lbox3:14,lbox:14,lboxlist:14,lbrowser1:10,lbrowser2:10,lclipstr:12,lcommentselector:8,ldemobase:8,ldemobasebitint:9,ldemobasebitstr:9,ldemobaseselector:8,ldemobaseuioexistbool:9,ldemobaseuioexistlist:9,ldemobaseuiolist:9,ldemobaseuioselector:9,ldemobaseuioselectorclean:9,ldemobaseuioselectorditry:9,left:[9,13,14],legacy:19,len:5,levelname:5,lib:4,library:8,license:1,licenses:1,life:5,lifetime:5,lifetimerequestsecfloat:5,lifetimesecfloat:5,line_count:9,line_index:9,line_length:9,link:[4,5],linux:[4,9,10,12,13,14,19],list:[2,4,5,9,10,14],listbox:9,listen:4,listendict:5,listread:5,livedebugcheckthread:18,lkeyaispressedbool:11,llc:19,llogger:4,lnotepadcancelselector:9,lnotepadokselector:9,loaded:5,localhost:5,log:[5,7,18],logger:[4,5,18],loggerdumploghandleradd:5,loggerhandlerdumploglist:5,logging:[4,5],login:[4,5],logoff:[4,5],logs:[2,5,7],logviewerbool:[5,7],look:[4,5,7],lookmachinescreenshots:5,loops:5,lordernumberselector:8,lotherbitnessprocess:9,lowercase:5,lpoint:14,lprocess:4,lprocessisstartedbool:4,lprocesslist:4,lpy64:0,lpyopenrpa_settingsdict:9,lrdpitemdict:4,lrequest:4,lresult:[5,14],lresultdict:[4,5],lresultstr:10,lrobotbitint:9,lrunbase:8,lrunbaseselector:8,ltextraw:8,ltextstr:10,ltimestr:8,luio:[9,10],luioelementinfodict:9,luiohierarchylist:9,luioindexint:9,luioinfolist:9,luiolist:[9,10],luioobject:9,luioprocessinfodict:9,luioselectorstr:10,lwebauditmessagestr:4,lwrapperobject:9,mabspathupperstr:5,machina:5,machine:[4,5],magenthostnamestr:5,magentusernamestr:5,magicmock:9,mail:10,main:[1,3,5,6],makedirs:5,managers:[4,5],managersgitdict:5,managersprocessdict:5,markdown:19,maslov:[1,4],master:1,matchtype:[4,5],max:5,mdefaultpywinautobackend:9,message:[4,5],messageboxw:8,messages:18,method:[4,5],methodmatchurl:5,methodmatchurlbeforelist:5,mhammond:1,mhandlerdumploglist:5,microsoft:19,middle:[10,13,14],mime:4,minutes:5,mit:1,mmstr:5,mock:9,modification:2,module:[4,5,6,18],modulenamestr:4,modules:4,moduletocall:4,monitoring:4,more:[5,6],mouse:[8,14,15,19],mousedown:8,mouseup:8,moveto:[8,13],mprocessnamewoexestr:5,mrobotlogger:5,mrobotloggerfh:5,mrobotloggerformatter:5,msg_box:8,must:5,name:[4,5,9],namewoexestr:4,namewoexeupperstr:4,need:[2,11],needed:5,ner:19,newkeydict:4,newkeylist:4,newvalue:4,nlp:19,none:[2,4,5,9,10,11,13,14,18],normpath:5,not:[0,2,4,5,11],notebook:1,notepad:[2,4,9],nothingbool:[5,7],now:[4,5],nth:10,nul:15,numpy:1,object:[5,9],ocr:19,octet:4,off:[5,7],old:5,one:5,only:[2,5],op_code_1:4,open:[5,19],opencv:[1,14,19],openrpa:[5,19],openrpaorchestrator:15,opensource:1,operation:4,option:[5,7,11],optional:[4,10,11,13,14],orc:[5,7],orch:5,orchestrator:[2,4,5,6,19],orchestrator_x64:6,orchestratorinitwait:4,orchestratorisadmin:4,orchestratorisinited:4,orchestratorloggerget:4,orchestratormain:15,orchestratorpyopenrpa:6,orchestratorpysearchinit:4,orchestratorrerunasadmin:4,orchestratorrestart:4,orchestratorscheduleget:4,orchestratorsessionrestore:4,orchestratorsessionsave:4,orchestratorstart:5,orchestratorthreadstart:4,org:1,oscmd:[2,4],oscredentialsverify:4,osfilebinarydatabase64strappend:2,osfilebinarydatabase64strcreate:2,osfilebinarydatabase64strreceive:2,osfilemtimeget:2,osfiletextdatastrcreate:2,osfiletextdatastrreceive:2,oslogoff:4,osremotepcrestart:[4,5],osrestart:4,output:[2,5],outstr:4,overwrite:5,own:6,packages:4,page:[5,7],pagejsexecute:10,pageopen:10,pagescrollto:10,pallets:1,pane:8,panel:5,panels:5,param:10,parent:9,pass:[4,5],password:[4,5],path:[2,4,5,15],pause:[9,15],pay:5,pdb:5,pdf:[1,19],pem:4,period:5,periodically:5,php:1,pickle:4,pid:4,pil:1,pillow:1,pip:[0,14],pixels:5,png:[4,14],point:19,pointclick:14,pointclickdouble:14,pointcreate:14,pointdown:14,pointmodify:14,pointmoveto:14,pointup:14,popupmenu:9,port:[4,5],portint:5,pos_end:9,pos_start:9,post:[4,5],powershell:5,predicate_func:9,press_mouse_input:9,pressed:9,print:14,process:[2,4,5,9],process_id:9,processbitness:9,processdefintervalcall:4,processdetaillist:4,processisstarted:4,processlistget:4,processor:[2,3,4,5,7],processoractivityitemappend:4,processoractivityitemcreate:4,processoraliasdefcreate:4,processoraliasdefupdate:4,processordict:5,processstart:4,processstop:4,processwoexelist:4,processwoexeupperlist:4,processwoexeupperuserlistget:2,program:[4,5],programs:5,prototype:5,psf:1,psutil:1,pull:[5,7],pulse:10,push:5,pwa:9,pwaspecification_get_pwaapplication:9,pwaspecification_get_uio:9,pyautogui:1,pyopenpra:[9,19],pyopenrpa:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],pyopenrpa_product_service:1,pyopenrpa_repo:4,pyopenrpa_support:1,pyopenrpa_uidesktopx32:9,pyopenrpa_uidesktopx64:9,pyopenrpadict:[5,7],pypathstr:4,pyscreeze:[1,14],python32fullpath:9,python32processname:9,python3:0,python64fullpath:9,python64processname:9,python:[0,1,4,8,9,14,17,19],pythonstart:4,pywin32:1,pywinauto:[1,9],queue:[4,5,7],queuelist:5,r01:5,r01_integrationorderout:5,r01_orchestratortorobot:5,radiobutton:9,radiobuttons:9,raised:4,ram:19,rdp:[3,4,5,7],rdpactive:5,rdpkey:4,rdpkeydict:[5,7],rdpkeystr:[5,7],rdplist:5,rdpsession:4,rdpsessioncmdrun:4,rdpsessionconnect:[4,5],rdpsessiondisconnect:[4,5],rdpsessionfilestoredrecieve:4,rdpsessionfilestoredsend:4,rdpsessionkey:5,rdpsessionkeystr:5,rdpsessionlogoff:4,rdpsessionmonitorstop:4,rdpsessionprocessstartifnotrunning:4,rdpsessionprocessstop:4,rdpsessionreconnect:[4,5],rdptemplatecreate:4,read:[2,5],readthedocs:[4,5,9],ready:9,recieve:5,recieved:5,reconnect:[4,5],reconnectbool:[5,7],recoverydict:5,rect:9,rectangle:9,red:[9,10,14],redirectclipboardbool:4,reestr_otgruzok:5,refresh:5,relative:[4,5],remember:[5,7],remote:5,replace:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19],report:5,reports:5,request:[4,5],requesting:5,requests:[1,5],requesttimeoutsecfloat:5,resolution:5,resources:[0,4,9,15,19],resourceswpy32:15,resourceswpy64:15,responsecontenttype:[4,5],responsedefrequestglobal:[4,5],responsefilepath:[4,5],responsefolderpath:[4,5],responsibility:5,responsibilitycheckintervalsec:5,responsible:5,restart:[5,7],restartorchestrator:5,restartorchestratorbool:[5,7],restartorchestratorgitpullbool:[5,7],restartpcbool:[5,7],result:[4,5,7],returnbool:5,returnedbydatetime:5,rich_text:9,rich_text_re:9,right:[9,13,14],right_click_input:9,rights:19,robot1:4,robot:[0,5,8,9,10,11,12,13,14,15,18,19],robot_r01:5,robot_r01_help:5,robotrdpactive:5,rolehierarchyalloweddict:5,root:[5,9],row:5,rpa:[3,4,5,8,11,14,15,16,19],rpatestdirtest:4,rst:1,rtype:10,ruledomainuserdict:5,rulemethodmatchurlbeforelist:5,run:[4,5,6],running:[2,4,17],runs:5,runtime_id:9,rus:19,safe:2,scan:11,schedule:[1,4,5],scheduler:4,scheduleractivitytimeaddweekly:4,schedulerdict:5,scopesrcul:5,screen:[0,4,5,8,19],screened:5,screenshots:[5,7],screenshotviewerbool:[5,7],scrollhorizontal:13,scrollvertical:13,scrot:[0,14],sec:5,seconds:[4,5],section:4,see:[4,5],select:9,selected_index:9,selected_indices:9,selected_text:9,selection_indices:9,selenium:[1,10],seleniumhq:1,self:9,semantic:1,send:[2,4,5,7,8,11],send_keys:9,sendinput:9,sent:5,server:[2,4,5,7,17,19],serverdict:5,serverinstance:5,serversettings:5,serverthread:5,sesion:5,session:[2,4,5],sessionguidstr:5,sessionhex:[4,5],sessionisignoredbool:[4,5],sessioniswindowexistbool:[4,5],sessioniswindowresponsiblebool:[4,5],set:[2,5,12],set_check_indeterminate:9,set_edit_text:[8,9],set_focus:9,set_foreground:9,set_item_focus:9,set_text:9,set_trace:5,set_window_text:9,setformatter:5,setlevel:5,settings:[2,5],settingsinit:9,settingstemplate:[5,6],settingsupdate:4,setup:5,setxkbmap:[0,11],shareddrivelist:[4,5],shell:15,shift:11,should:5,show:[5,7],side:[5,7,18],signal:18,simple:4,since:5,singleton:2,site:4,size:5,sleep:[5,8,10],snipp:11,software:1,some:[5,7],someprocess:18,sources:19,special:5,split:8,src:9,ssl:4,stable:5,standart:5,staragedict:4,start:[2,4,9],started:4,starts:5,statictext:9,status:4,statuscheckstart:4,stdout:5,stop:[4,18],stopsafe:19,storage:[4,5],storagedict:[4,5],storagerobotexists:4,storagerobotget:4,stored:5,str:[2,4,5,9,10,11,12,13,14],stream:4,streamhandler:5,strftime:5,strict:14,string:2,struct:5,structure:5,studio:19,studio_x64:17,studiopyopenrpa:17,style:8,success:4,successfully:5,sudo:[0,12,14],support:[1,19],svelte:10,sys:[4,5,15],tabcontrol:9,taskkill:18,technical:5,technicalsessionguidcache:5,telegram:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],tenchat:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],test2:5,test:[2,4,5],testdef:4,testdefalias:4,testdir:4,testdirtest:4,testrdp:5,text:[2,4,8,9],text_block:9,texts:9,than:5,that:18,the:[2,4,5,6,7,18],there:5,thickness:9,thread:[4,5,7,18],threadbool:4,threaded:5,threadidint:5,threading:4,thunderrt6textbox:9,thundertextbox:9,thursday:4,time:[2,5,8,10,11],timehh:5,times:5,timestamp:2,title:[8,9],title_re:9,tmemo:9,tokendatetime:5,too:5,tool:5,tools:18,top:[9,14],top_level_only:9,top_level_parent:9,tpanel:9,transmit:2,transmition:[2,5],trigger:5,triggercountint:5,trunk:1,ttt:5,turn:[5,7],turn_off_numlock:9,txt:[1,4],type:[5,10],type_keys:9,uac:[4,19],uacbool:[4,5],uackeylistcheck:4,uacsupertokenupdate:4,uacupdate:4,uacuserdictget:4,ubuntu:19,uia:[8,9],uidesktop:[8,15,19],uio:[10,17,19],uio_focushighlight:9,uio_getctrlindex_int:9,uio_highlight:9,uio_wait_interval_sec_float:10,uio_wait_sec_float:10,uioattributeget:10,uioattributeremove:10,uioattributeset:10,uioattributestyleget:10,uioattributestyleremove:10,uioattributestyleset:10,uioclick:10,uioei_convert_uioinfo:9,uioinfo:9,uiomousesearchinit:10,uiomousesearchreturn:10,uioselector:9,uioselector_exist_bool:9,uioselector_focushighlight:9,uioselector_get_bitnessint:9,uioselector_get_bitnessstr:9,uioselector_get_uio:[8,9],uioselector_get_uioactivitylist:9,uioselector_get_uioinfo:9,uioselector_get_uioinfolist:9,uioselector_get_uiolist:9,uioselector_getchildlist_uiolist:9,uioselector_highlight:9,uioselector_safeotherget_process:9,uioselector_searchchildbymouse_uio:9,uioselector_searchchildbymouse_uiotree:9,uioselector_searchprocessnormalize_uioselector:9,uioselector_searchuionormalize_uioselector:9,uioselector_tryrestore_dict:9,uioselector_uio_get:9,uioselectorclick:10,uioselectordetect:10,uioselectorfirst:10,uioselectorhighlight:10,uioselectorlist:10,uioselectorsecs_waitappear_bool:9,uioselectorsecs_waitdisappear_bool:9,uioselectorssecs_waitappear_list:9,uioselectorssecs_waitdisappear_list:9,uioselectoruioactivity_run_dict:9,uioselectorwaitappear:10,uioselectorwaitdisappear:10,uiotextget:10,uioxy_searchchild_listdict:9,uiweb:[8,15,19],uncheck:9,unicode:11,unicodelabs:19,updated:5,updates:5,upper:[2,5],url:[4,5,10],urlindexstr:5,urllist:5,urls:5,usage:4,use:[2,5,7,18],use_log:9,usecachebool:4,user32:8,user:[2,4,5,7],user_99:4,user_pass_here:4,useradstr:5,username:4,usernameupperstr:4,userupperstr:5,utf:[2,4],utils:[0,5,9,11,19],v228:1,v8toplevelframesdi:8,v8toplevelframetaxistarter:[8,9],value:5,valueerror:[13,14],variable:4,verification:1,verify:9,verify_actible:9,verify_enabled:9,verify_visible:9,version:4,versionstr:5,viewer:[5,7],virtual:5,visible:9,visible_only:9,vista:19,vk_packet:9,vms:4,voice:19,wait:[2,9,11,18],wait_not:9,want:[5,7],warning:5,warningexecutionmorethansecfloat:5,was:[2,5],was_maximized:9,way:6,web:[4,5,9,10,19],webaudit:4,webauditmessagecreate:4,webcpupdate:4,webdriver:10,webelement:10,weblistencreate:4,webrequestget:4,webrequestparsebodybytes:4,webrequestparsebodyjson:4,webrequestparsebodystr:4,webrequestparsefile:4,webrequestparsepath:4,webrequestresponsesend:4,weburlconnectdef:4,weburlconnectfile:4,weburlconnectfolder:4,weburlindexchange:4,webuserinfoget:4,webuserissupertoken:4,webuseruachierarchyget:4,wednesday:4,weekday:5,weekdaylist:5,wexe:4,whatsapp:1,wheel_dist:9,wheel_mouse_input:9,when:[4,5],where:2,which:5,who:5,width:[4,5,9,14],wiki:8,will:[2,4,5],win32:[8,9,19],win32api:1,win32defines:9,win32structures:9,win:8,windll:8,window:[2,5],window_text:9,windowclasses:9,windows:[2,4,9,10,11,12,13,14,19],windowsforms:9,winpython:1,with_newlines:9,with_spaces:9,with_tabs:9,without:[2,4,5],wm_close:18,wmi:1,working:[4,18],workingdirectorypathstr:5,works:5,world:[10,11,12],wpy32:[0,9,15],wpy64:[0,4,9],write:[2,8,11],www:1,x11:[0,11],x32:[0,9],x64:[0,9],xclip:[0,12],xkb:[0,11],xlsx:5,xpath:10,yellow:10,you:[2,4,5,6,7,18],your:[5,15]},titles:["1. \u041f\u0435\u0440\u0432\u044b\u0439 \u0437\u0430\u043f\u0443\u0441\u043a (Windows & Linux)","2. \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044f & \u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b","2. \u0424\u0443\u043d\u043a\u0446\u0438\u0438","1. \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435","2. \u0424\u0443\u043d\u043a\u0446\u0438\u0438","3. \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 GSettings (\u0448\u0430\u0431\u043b\u043e\u043d)","4. \u041a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c?","5. \u041f\u0440\u0430\u0432\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 UAC","1. \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435","2. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 UIDesktop","3. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 UIWeb","4. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 Keyboard","5. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 Clipboard","6. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 Mouse","7. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 Screen","8. \u041a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c?","1. \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435","2. \u041a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c?","2. \u0424\u0443\u043d\u043a\u0446\u0438\u0438 StopSafe","\u041f\u043e\u0440\u0442\u0430\u043b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 pyOpenRPA"],titleterms:{"\u0430\u0432\u0442\u043e\u0440":1,"\u0430\u0433\u0435\u043d\u0442":19,"\u0430\u043a\u0442\u0438\u0432\u043d":4,"\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440":3,"\u0431\u0443\u0434\u0435\u0442":17,"\u0431\u0443\u0434\u0443\u0442":17,"\u0431\u044b\u0441\u0442\u0440":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],"\u0432":[11,17],"\u0433\u0435\u043d\u0435\u0440\u0430\u043b\u044c\u043d":1,"\u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d":3,"\u0434\u0435\u0439\u0441\u0442\u0432":17,"\u0434\u0435\u0440\u0435\u0432":17,"\u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440":1,"\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446":19,"\u0434\u043e\u043f":11,"\u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d":11,"\u0434\u043e\u0440\u043e\u0433":19,"\u0434\u043e\u0441\u0442\u0443\u043f":7,"\u0435\u0434\u0438\u043d":3,"\u0437\u0430\u0436\u0430":17,"\u0437\u0430\u043f\u0443\u0441\u043a":0,"\u0437\u0430\u043f\u0443\u0441\u0442":[6,15,17],"\u0438":[17,19],"\u0438\u0432\u0430":1,"\u0438\u0437":[15,19],"\u0438\u0437\u0432\u043b\u0435\u0447":17,"\u0438\u043d\u0442\u0435\u0440\u0435\u0441":17,"\u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0442\u043e\u0440":15,"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430":[6,15,17],"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d":11,"\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c":1,"\u0438\u0442\u043e\u0433":17,"\u043a\u0430\u043a":[6,15,17],"\u043a\u043b\u0430\u0432\u0438\u0448":[11,17],"\u043a\u043b\u0430\u0441\u0441":14,"\u043a\u043b\u0438\u0435\u043d\u0442":1,"\u043a\u043d\u043e\u043f\u043a":17,"\u043a\u043e\u0434":11,"\u043a\u043e\u043b\u043b\u0435\u0433":19,"\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442":1,"\u043a\u043e\u043d\u0442\u0430\u043a\u0442":1,"\u043a\u043e\u043d\u0446\u0435\u043f\u0446":3,"\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d":0,"\u043a\u043e\u0442\u043e\u0440":17,"\u043a\u0443\u0440\u0441\u043e\u0440":17,"\u043b\u0438\u0446\u0435\u043d\u0437":[1,19],"\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u043e\u043d":1,"\u043c\u0430\u0441\u043b":1,"\u043c\u043e\u0434\u0443\u043b":19,"\u043c\u044b\u0448":17,"\u043d\u0430":17,"\u043d\u0430\u0432\u0435\u0434\u0435\u043d":17,"\u043d\u0430\u0432\u0435\u0441\u0442":17,"\u043d\u0430\u0432\u0438\u0433\u0430\u0446":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19],"\u043d\u0430\u0436\u0430":17,"\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a":3,"\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a":[5,6,11],"\u043e":19,"\u043e\u0431\u043b\u0430\u0441\u0442":14,"\u043e\u0431\u0449":[3,4,5,8,9,10,11,13,14,16,17,19],"\u043e\u0431\u044a\u0435\u043a\u0442":17,"\u043e\u0433\u043b\u0430\u0432\u043b\u0435\u043d":19,"\u043e\u043e":1,"\u043e\u043f":1,"\u043e\u043f\u0438\u0441\u0430\u043d":[3,7,8,9,10,11,12,13,14,16,17],"\u043e\u0440\u043a\u0435\u0441\u0442\u0440\u0430\u0442\u043e\u0440":19,"\u043e\u0442\u043e\u0431\u0440\u0430\u0436":17,"\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440":6,"\u043f\u0435\u0440\u0432":0,"\u043f\u043e":17,"\u043f\u043e\u0434":15,"\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a":1,"\u043f\u043e\u0438\u0441\u043a":17,"\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b":7,"\u043f\u043e\u0440\u0442\u0430":19,"\u043f\u043e\u0440\u0442\u0430\u043b":19,"\u043f\u0440\u0430\u0432":7,"\u043f\u0440\u0430\u0432\u043e\u043e\u0431\u043b\u0430\u0434\u0430\u0442\u0435\u043b":1,"\u043f\u0440\u0438\u043c\u0435\u0440":[8,11],"\u043f\u0440\u043e\u0432\u0435\u0440":0,"\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c":19,"\u0440\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442":0,"\u0440\u0430\u0437\u0434\u0435\u043b":19,"\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440":19,"\u0440\u043e\u0431\u043e\u0442":[15,19],"\u0440\u043f\u0430":1,"\u0441\u0432\u043e\u0439\u0441\u0442\u0432":17,"\u0441\u0435\u043a\u0443\u043d\u0434":17,"\u0441\u0435\u043b\u0435\u043a\u0442\u043e\u0440":9,"\u0441\u0438\u043c\u0432\u043e\u043b\u044c\u043d":14,"\u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442":17,"\u0441\u043a\u0440\u0438\u043f\u0442":15,"\u0441\u043b\u0435\u0434":19,"\u0441\u043b\u043e\u0432\u0430\u0440":3,"\u0441\u043e\u0441\u0442\u043e":19,"\u0441\u0442\u043e\u0440\u043e\u043d":1,"\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440":[5,19],"\u0441\u0442\u0443\u0434":[17,19],"\u0442\u0430\u043a":4,"\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a":19,"\u0442\u043e\u0447\u043a":14,"\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d":19,"\u0443\u043a\u0430\u0437\u0430\u043d":14,"\u0444\u0430\u0439\u043b":15,"\u0444\u0443\u043d\u043a\u0446":[2,4,9,10,11,12,13,14,18],"\u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d":11,"\u0446\u0435\u043d\u0442\u0440":1,"\u0447\u0438\u0441\u0442\u043e\u0442":1,"\u0447\u0442\u043e":[0,4],"\u0448\u0430\u0431\u043b\u043e\u043d":5,"for":7,__agent__:2,activityitem:4,agent:2,and:17,are:17,box:14,choose:17,click:17,clipboard:12,cmd:15,ctrl:17,dict:7,execute:15,expand:17,gsettings:[3,5],inanchorrulestr:14,inpointrulestr:14,interested:17,keyboard:11,linux:[0,11],list:17,mouse:[13,17],object:17,orchestrator:7,point:14,property:17,pyopenrpa:[0,2,19],python:15,rights:7,screen:14,script:15,search:17,selected:17,stopsafe:18,the:17,tree:17,uac:7,uidesktop:9,uio:9,uiweb:10,viewer:17,web:7,wiki:19,windows:0,x32:15,x64:15,you:17}}) \ No newline at end of file diff --git a/Wiki/RUS_Guide/markdown/Orchestrator/02_Defs.md b/Wiki/RUS_Guide/markdown/Orchestrator/02_Defs.md index 03d442c0..d1e76468 100644 --- a/Wiki/RUS_Guide/markdown/Orchestrator/02_Defs.md +++ b/Wiki/RUS_Guide/markdown/Orchestrator/02_Defs.md @@ -222,6 +222,11 @@ __Orchestrator__.OSCMD(inCMDStr = "git status", inRunAsyncBool=True) | Отправить сигнал на удаленную перезагрузку операционной системы. | +| `OSRestart`([inForceBool, inLogger]) + + | L+,W+: Отправить сигнал на перезагрузку операционной системы. + + | | `Orchestrator`([inGSettings, …]) | Инициализация ядра Оркестратора (всех потоков) @@ -1334,6 +1339,27 @@ Orchestrator.GSettingsKeyListValueOperatorPlus( +### pyOpenRPA.Orchestrator.__Orchestrator__.OSRestart(inForceBool=True, inLogger=None) +L+,W+: Отправить сигнал на перезагрузку операционной системы. + +!ВНИМАНИЕ! Перезапуск будет принят, если учетная запись имеет полномочия на перезапуск на соответсвующей машине. + + +* **Параметры** + + + * **inForceBool** – True - принудительная перезагрузка; False - мягкая перезагрузка (дождаться окончания выполнения всех операций). По умолчанию True + + + * **inLogger** – Логгер, в который отправлять информацию о результате выполнения команды + + + +* **Результат** + + + + ### pyOpenRPA.Orchestrator.__Orchestrator__.Orchestrator(inGSettings=None, inDumpRestoreBool=True, inRunAsAdministratorBool=True) Инициализация ядра Оркестратора (всех потоков) diff --git a/Wiki/RUS_Guide/markdown/Orchestrator/03_gSettingsTemplate.md b/Wiki/RUS_Guide/markdown/Orchestrator/03_gSettingsTemplate.md index 8f99101d..0e2e7373 100644 --- a/Wiki/RUS_Guide/markdown/Orchestrator/03_gSettingsTemplate.md +++ b/Wiki/RUS_Guide/markdown/Orchestrator/03_gSettingsTemplate.md @@ -349,7 +349,7 @@ def Create(inModeStr="BASIC", inLoggerLevel = None): lL.setLevel(logging.INFO) # create the logging file handler mRobotLoggerFH = logging.FileHandler( - "Reports\\" + datetime.datetime.now().strftime("%Y_%m_%d") + ".log") + os.path.normpath("Reports\\" + datetime.datetime.now().strftime("%Y_%m_%d") + ".log")) mRobotLoggerFormatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s') mRobotLoggerFH.setFormatter(mRobotLoggerFormatter) # add handler to logger object diff --git a/Wiki/RUS_Guide/markdown/Orchestrator/04_HowToUse.md b/Wiki/RUS_Guide/markdown/Orchestrator/04_HowToUse.md index 8c2e8492..eb3390a6 100644 --- a/Wiki/RUS_Guide/markdown/Orchestrator/04_HowToUse.md +++ b/Wiki/RUS_Guide/markdown/Orchestrator/04_HowToUse.md @@ -24,52 +24,6 @@ if __name__ == "__main__": # New init way - allow run as module -m PyOpenRPA.Orc Также вы можете выполнить более тонкую настройку параметров Оркестратора. Ниже пример такой настройки: -``` -import psutil, datetime, logging, os, sys - - -# Config settings -lPyOpenRPASourceFolderPathStr = (r"../Sources") # Path for test pyOpenRPA package - -# Operations -if lPyOpenRPASourceFolderPathStr != "": sys.path.insert(0,os.path.abspath(os.path.join(lPyOpenRPASourceFolderPathStr))) # Path for test pyOpenRPA package - - -# Start import after config the pyOpenRPA folder -from pyOpenRPA.Orchestrator import SettingsTemplate # Import functionallity -from pyOpenRPA.Tools import CrossOS -from pyOpenRPA import Orchestrator # Import orchestrator main -#Run as administrator -if not Orchestrator.OrchestratorIsAdmin(): - Orchestrator.OrchestratorRerunAsAdmin() - print(f"Orchestrator will be run as administrator!") -else: - gSettings = Orchestrator.GSettingsGet() - #gSettings = SettingsTemplate.Create(inModeStr="BASIC") # Create GSettings with basic configuration - no more config is available from the box - you can create own - Orchestrator.OrchestratorLoggerGet().setLevel(logging.INFO) - # TEST Add User ND - Add Login ND to superuser of the Orchestrator - lUACClientDict = SettingsTemplate.__UACClientAdminCreate__() - Orchestrator.UACUpdate(inGSettings=gSettings, inADLoginStr="ND", inADStr="", inADIsDefaultBool=True, inURLList=[], inRoleHierarchyAllowedDict=lUACClientDict) - # TEST Add User IMaslov - Add Login IMaslov to superuser of the Orchestrator - Orchestrator.UACUpdate(inGSettings=gSettings, inADLoginStr="IMaslov", inADStr="", inADIsDefaultBool=True, inURLList=[]) - # TEST Add Supertoken for the all access between robots - Orchestrator.UACSuperTokenUpdate(inGSettings=gSettings, inSuperTokenStr="1992-04-03-0643-ru-b4ff-openrpa52zzz") - # Add first interface! - if CrossOS.IS_WINDOWS_BOOL: - Orchestrator.WebListenCreate(inGSettings=gSettings) - if CrossOS.IS_LINUX_BOOL: - Orchestrator.WebListenCreate(inGSettings=gSettings, inPortInt=1024) - # Restore DUMP - Orchestrator.OrchestratorSessionRestore(inGSettings=gSettings) - # Autoinit control panels starts with CP_ - lPyModules = Orchestrator.OrchestratorPySearchInit(inGlobPatternStr="ControlPanel\\CP_*.py", inDefStr="SettingsUpdate", inDefArgNameGSettingsStr="inGSettings", inAsyncInitBool=True) - # Call the orchestrator def - Orchestrator.Orchestrator(inGSettings=gSettings, inDumpRestoreBool=False) - - - -``` - ## Быстрая навигация